mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Refactor #4511
This commit is contained in:
parent
d65bda79f0
commit
437818c7f2
32 changed files with 62 additions and 62 deletions
|
@ -455,11 +455,11 @@ export interface AutoCompleteProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying input element.
|
* Identifier of the underlying input element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {AutoCompletePassThroughOptions}
|
* @type {AutoCompletePassThroughOptions}
|
||||||
|
|
|
@ -157,11 +157,11 @@ export default {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 0
|
default: 0
|
||||||
},
|
},
|
||||||
'aria-label': {
|
ariaLabel: {
|
||||||
type: String,
|
type: String,
|
||||||
default: null
|
default: null
|
||||||
},
|
},
|
||||||
'aria-labelledby': {
|
ariaLabelledby: {
|
||||||
type: String,
|
type: String,
|
||||||
default: null
|
default: null
|
||||||
}
|
}
|
||||||
|
|
4
components/lib/avatar/Avatar.d.ts
vendored
4
components/lib/avatar/Avatar.d.ts
vendored
|
@ -101,11 +101,11 @@ export interface AvatarProps {
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {AvatarPassThroughOptions}
|
* @type {AvatarPassThroughOptions}
|
||||||
|
|
4
components/lib/breadcrumb/Breadcrumb.d.ts
vendored
4
components/lib/breadcrumb/Breadcrumb.d.ts
vendored
|
@ -141,11 +141,11 @@ export interface BreadcrumbProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying menu element.
|
* Identifier of the underlying menu element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {BreadcrumbPassThroughOptions}
|
* @type {BreadcrumbPassThroughOptions}
|
||||||
|
|
4
components/lib/calendar/Calendar.d.ts
vendored
4
components/lib/calendar/Calendar.d.ts
vendored
|
@ -713,11 +713,11 @@ export interface CalendarProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {CalendarPassThroughOptions}
|
* @type {CalendarPassThroughOptions}
|
||||||
|
|
|
@ -330,11 +330,11 @@ export interface CascadeSelectProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {CascadeSelectPassThroughOptions}
|
* @type {CascadeSelectPassThroughOptions}
|
||||||
|
|
4
components/lib/checkbox/Checkbox.d.ts
vendored
4
components/lib/checkbox/Checkbox.d.ts
vendored
|
@ -159,11 +159,11 @@ export interface CheckboxProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {CheckboxPassThroughOptions}
|
* @type {CheckboxPassThroughOptions}
|
||||||
|
|
4
components/lib/chips/Chips.d.ts
vendored
4
components/lib/chips/Chips.d.ts
vendored
|
@ -187,11 +187,11 @@ export interface ChipsProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {ChipsPassThroughOptions}
|
* @type {ChipsPassThroughOptions}
|
||||||
|
|
4
components/lib/contextmenu/ContextMenu.d.ts
vendored
4
components/lib/contextmenu/ContextMenu.d.ts
vendored
|
@ -252,11 +252,11 @@ export interface ContextMenuProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying menu element.
|
* Identifier of the underlying menu element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {ContextMenuPassThroughOptions}
|
* @type {ContextMenuPassThroughOptions}
|
||||||
|
|
4
components/lib/dock/Dock.d.ts
vendored
4
components/lib/dock/Dock.d.ts
vendored
|
@ -213,11 +213,11 @@ export interface DockProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {DockPassThroughOptions}
|
* @type {DockPassThroughOptions}
|
||||||
|
|
4
components/lib/dropdown/Dropdown.d.ts
vendored
4
components/lib/dropdown/Dropdown.d.ts
vendored
|
@ -436,11 +436,11 @@ export interface DropdownProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying input element.
|
* Identifier of the underlying input element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {DropdownPassThroughOptions}
|
* @type {DropdownPassThroughOptions}
|
||||||
|
|
4
components/lib/inputnumber/InputNumber.d.ts
vendored
4
components/lib/inputnumber/InputNumber.d.ts
vendored
|
@ -278,11 +278,11 @@ export interface InputNumberProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {InputNumberPassThroughOptions}
|
* @type {InputNumberPassThroughOptions}
|
||||||
|
|
4
components/lib/inputswitch/InputSwitch.d.ts
vendored
4
components/lib/inputswitch/InputSwitch.d.ts
vendored
|
@ -125,11 +125,11 @@ export interface InputSwitchProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {InputSwitchPassThroughOptions}
|
* @type {InputSwitchPassThroughOptions}
|
||||||
|
|
4
components/lib/knob/Knob.d.ts
vendored
4
components/lib/knob/Knob.d.ts
vendored
|
@ -179,11 +179,11 @@ export interface KnobProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to define a string that labels the element.
|
* Used to define a string that labels the element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {KnobPassThroughOptions}
|
* @type {KnobPassThroughOptions}
|
||||||
|
|
4
components/lib/listbox/Listbox.d.ts
vendored
4
components/lib/listbox/Listbox.d.ts
vendored
|
@ -330,11 +330,11 @@ export interface ListboxProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying input element.
|
* Identifier of the underlying input element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {ListboxPassThroughOptions}
|
* @type {ListboxPassThroughOptions}
|
||||||
|
|
4
components/lib/megamenu/MegaMenu.d.ts
vendored
4
components/lib/megamenu/MegaMenu.d.ts
vendored
|
@ -262,11 +262,11 @@ export interface MegaMenuProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying menu element.
|
* Identifier of the underlying menu element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {MegaMenuPassThroughOptions}
|
* @type {MegaMenuPassThroughOptions}
|
||||||
|
|
4
components/lib/menu/Menu.d.ts
vendored
4
components/lib/menu/Menu.d.ts
vendored
|
@ -221,11 +221,11 @@ export interface MenuProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying input element.
|
* Identifier of the underlying input element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {MenuPassThroughOptions}
|
* @type {MenuPassThroughOptions}
|
||||||
|
|
4
components/lib/menubar/Menubar.d.ts
vendored
4
components/lib/menubar/Menubar.d.ts
vendored
|
@ -245,11 +245,11 @@ export interface MenubarProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying input element.
|
* Identifier of the underlying input element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {MenubarPassThroughOptions}
|
* @type {MenubarPassThroughOptions}
|
||||||
|
|
4
components/lib/multiselect/MultiSelect.d.ts
vendored
4
components/lib/multiselect/MultiSelect.d.ts
vendored
|
@ -518,11 +518,11 @@ export interface MultiSelectProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying input element.
|
* Identifier of the underlying input element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {MultiSelectPassThroughOptions}
|
* @type {MultiSelectPassThroughOptions}
|
||||||
|
|
4
components/lib/orderlist/OrderList.d.ts
vendored
4
components/lib/orderlist/OrderList.d.ts
vendored
|
@ -248,11 +248,11 @@ export interface OrderListProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive list element.
|
* Defines a string value that labels an interactive list element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying list element.
|
* Identifier of the underlying list element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {OrderListPassThroughOptions}
|
* @type {OrderListPassThroughOptions}
|
||||||
|
|
4
components/lib/password/Password.d.ts
vendored
4
components/lib/password/Password.d.ts
vendored
|
@ -248,11 +248,11 @@ export interface PasswordProps extends InputHTMLAttributes {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {PasswordPassThroughOptions}
|
* @type {PasswordPassThroughOptions}
|
||||||
|
|
4
components/lib/radiobutton/RadioButton.d.ts
vendored
4
components/lib/radiobutton/RadioButton.d.ts
vendored
|
@ -126,11 +126,11 @@ export interface RadioButtonProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {RadioButtonPassThroughOptions}
|
* @type {RadioButtonPassThroughOptions}
|
||||||
|
|
|
@ -168,7 +168,7 @@ export interface SelectButtonProps {
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying element.
|
* Identifier of the underlying element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {SelectButtonPassThroughOptions}
|
* @type {SelectButtonPassThroughOptions}
|
||||||
|
|
4
components/lib/slider/Slider.d.ts
vendored
4
components/lib/slider/Slider.d.ts
vendored
|
@ -130,11 +130,11 @@ export interface SliderProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to define a string that labels the element.
|
* Used to define a string that labels the element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {SliderPassThroughOptions}
|
* @type {SliderPassThroughOptions}
|
||||||
|
|
4
components/lib/speeddial/SpeedDial.d.ts
vendored
4
components/lib/speeddial/SpeedDial.d.ts
vendored
|
@ -247,11 +247,11 @@ export interface SpeedDialProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive list element.
|
* Defines a string value that labels an interactive list element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying list element.
|
* Identifier of the underlying list element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {SpeedDialPassThroughOptions}
|
* @type {SpeedDialPassThroughOptions}
|
||||||
|
|
4
components/lib/tabmenu/TabMenu.d.ts
vendored
4
components/lib/tabmenu/TabMenu.d.ts
vendored
|
@ -168,11 +168,11 @@ export interface TabMenuProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying input element.
|
* Identifier of the underlying input element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {TabMenuPassThroughOptions}
|
* @type {TabMenuPassThroughOptions}
|
||||||
|
|
4
components/lib/tieredmenu/TieredMenu.d.ts
vendored
4
components/lib/tieredmenu/TieredMenu.d.ts
vendored
|
@ -251,11 +251,11 @@ export interface TieredMenuProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying menu element.
|
* Identifier of the underlying menu element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {TieredMenuPassThroughOptions}
|
* @type {TieredMenuPassThroughOptions}
|
||||||
|
|
|
@ -172,11 +172,11 @@ export interface ToggleButtonProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {ToggleButtonPassThroughOptions}
|
* @type {ToggleButtonPassThroughOptions}
|
||||||
|
|
2
components/lib/toolbar/Toolbar.d.ts
vendored
2
components/lib/toolbar/Toolbar.d.ts
vendored
|
@ -74,7 +74,7 @@ export interface ToolbarProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {ToolbarPassThroughOptions}
|
* @type {ToolbarPassThroughOptions}
|
||||||
|
|
4
components/lib/tree/Tree.d.ts
vendored
4
components/lib/tree/Tree.d.ts
vendored
|
@ -262,11 +262,11 @@ export interface TreeProps {
|
||||||
/**
|
/**
|
||||||
* Defines a string value that labels an interactive element.
|
* Defines a string value that labels an interactive element.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Identifier of the underlying menu element.
|
* Identifier of the underlying menu element.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {TreePassThroughOptions}
|
* @type {TreePassThroughOptions}
|
||||||
|
|
4
components/lib/treeselect/TreeSelect.d.ts
vendored
4
components/lib/treeselect/TreeSelect.d.ts
vendored
|
@ -214,11 +214,11 @@ export interface TreeSelectProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {TreeSelectPassThroughOptions}
|
* @type {TreeSelectPassThroughOptions}
|
||||||
|
|
|
@ -152,11 +152,11 @@ export interface TriStateCheckboxProps {
|
||||||
/**
|
/**
|
||||||
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
'aria-labelledby'?: string | undefined;
|
ariaLabelledby?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Establishes a string value that labels the component.
|
* Establishes a string value that labels the component.
|
||||||
*/
|
*/
|
||||||
'aria-label'?: string | undefined;
|
ariaLabel?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to DOM elements inside the component.
|
* Used to pass attributes to DOM elements inside the component.
|
||||||
* @type {TriStateCheckboxPassThroughOptions}
|
* @type {TriStateCheckboxPassThroughOptions}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue