-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: adapt changes out of release 3.0.0 by DB UI core #2710
base: main
Are you sure you want to change the base?
Changes from all commits
0e4aaff
5005fec
cab0794
fe51496
f1b5b98
bc477ff
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Unchanged files with check annotations Beta
/** | ||
* an optional [`aria-label`-attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) | ||
*/ | ||
@Prop({ reflect: true }) arialabel: string; | ||
Check warning on line 27 in packages/db-ui-elements-stencil/src/components/db-breadcrumb/db-breadcrumb.tsx
|
||
private compData: DbLinkType[]; | ||
private hasItemsWrapper: boolean; |
/** | ||
* If the button controls a grouping of other elements, the ariaexpanded state indicates whether the controlled grouping is currently expanded or collapsed. | ||
*/ | ||
@Prop({ reflect: true }) ariaexpanded?: 'true' | 'false' = null; | ||
Check warning on line 11 in packages/db-ui-elements-stencil/src/components/db-button/db-button.tsx
|
||
/** | ||
* Defines the button as a toggle button. The value of aria-pressed describes the state of the button. | ||
*/ | ||
@Prop({ reflect: true }) ariapressed?: 'true' | 'false' = null; | ||
Check warning on line 16 in packages/db-ui-elements-stencil/src/components/db-button/db-button.tsx
|
||
/** | ||
* The disabled attribute can be set to keep a user from clicking on the button. |
/** | ||
* The autofocus content attribute allows the author to indicate that a control is to be focused as soon as the page is loaded, allowing the user to just start typing without having to manually focus the main control. | ||
*/ | ||
@Prop({ reflect: true }) autofocus: boolean; | ||
Check warning on line 17 in packages/db-ui-elements-stencil/src/components/db-checkbox/db-checkbox.tsx
|
||
/** | ||
* The checked content attribute is a boolean attribute that gives the default checkedness of the input element. |
/** | ||
* The ariainvalid attribute is used to indicate that the value entered into an input field does not conform to the format expected by the application. | ||
*/ | ||
@Prop({ reflect: true }) ariainvalid?: | ||
Check warning on line 15 in packages/db-ui-elements-stencil/src/components/db-input/db-input.tsx
|
||
| 'false' | ||
| 'grammar' | ||
| 'spelling' | ||
/** | ||
* The ariarequired attribute can be applied to a form element, to indicate to an AT that it is required to complete the form. | ||
*/ | ||
@Prop({ reflect: true }) ariarequired?: 'false' | 'true' = null; | ||
Check warning on line 24 in packages/db-ui-elements-stencil/src/components/db-input/db-input.tsx
|
||
/** | ||
* User agents sometimes have features for helping users fill forms in, for example prefilling the user's address based on earlier user input. | ||
/** | ||
* The autofocus content attribute allows the author to indicate that a control is to be focused as soon as the page is loaded, allowing the user to just start typing without having to manually focus the main control. | ||
*/ | ||
@Prop({ reflect: true }) autofocus = false; | ||
Check warning on line 34 in packages/db-ui-elements-stencil/src/components/db-input/db-input.tsx
|
||
/** | ||
* The description attribute specifies the description/hint of the input. |
* out the notification if set to "assertive", while it will wait for the | ||
* user's idleness when set to "polite" | ||
*/ | ||
@Prop({ reflect: true }) arialive: 'assertive' | 'polite' = 'polite'; | ||
Check warning on line 14 in packages/db-ui-elements-stencil/src/components/db-notification/db-notifications.tsx
|
||
/** | ||
* Notifications have two variants ("hovering" and "alert") which change the styling. |
* The arialabel attribute is a string attribute and defines the text | ||
* content of the aria-label in the pagination. | ||
*/ | ||
@Prop({ reflect: true }) arialabel = 'Pagination'; | ||
Check warning on line 86 in packages/db-ui-elements-stencil/src/components/db-pagination/db-pagination.tsx
|
||
/** | ||
* Optional id for the caption aria label - otherwise random id will be set |
/** | ||
* The autofocus content attribute allows the author to indicate that a control is to be focused as soon as the page is loaded, allowing the user to just start typing without having to manually focus the main control. | ||
*/ | ||
@Prop({ reflect: true }) autofocus: boolean; | ||
Check warning on line 13 in packages/db-ui-elements-stencil/src/components/db-radio/db-radio.tsx
|
||
/** | ||
* The checked content attribute is a boolean attribute that gives the default checkedness of the input element. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The clickable sitename doesn't look correct.