@progress/kendo-vue-dropdowns 3.12.1-dev.202308170413 → 3.13.0-dev.202308240911
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cdn/js/kendo-vue-dropdowns.js +1 -1
- package/dist/es/AutoComplete/AutoComplete.js +8 -2
- package/dist/es/AutoComplete/AutoCompleteProps.d.ts +4 -0
- package/dist/es/ComboBox/ComboBox.js +8 -2
- package/dist/es/ComboBox/ComboBoxProps.d.ts +4 -0
- package/dist/es/DropDownList/DropDownListProps.d.ts +1 -1
- package/dist/es/DropDownTree/DropDownTree.js +6 -2
- package/dist/es/DropDownTree/DropDownTreeProps.d.ts +4 -0
- package/dist/es/MultiSelect/MultiSelect.js +8 -2
- package/dist/es/MultiSelect/MultiSelectProps.d.ts +4 -0
- package/dist/es/common/SearchBar.d.ts +1 -0
- package/dist/es/common/SearchBar.js +9 -3
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/AutoComplete/AutoComplete.js +8 -2
- package/dist/esm/AutoComplete/AutoCompleteProps.d.ts +4 -0
- package/dist/esm/ComboBox/ComboBox.js +8 -2
- package/dist/esm/ComboBox/ComboBoxProps.d.ts +4 -0
- package/dist/esm/DropDownList/DropDownListProps.d.ts +1 -1
- package/dist/esm/DropDownTree/DropDownTree.js +6 -2
- package/dist/esm/DropDownTree/DropDownTreeProps.d.ts +4 -0
- package/dist/esm/MultiSelect/MultiSelect.js +8 -2
- package/dist/esm/MultiSelect/MultiSelectProps.d.ts +4 -0
- package/dist/esm/common/SearchBar.d.ts +1 -0
- package/dist/esm/common/SearchBar.js +9 -3
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/AutoComplete/AutoComplete.js +8 -2
- package/dist/npm/AutoComplete/AutoCompleteProps.d.ts +4 -0
- package/dist/npm/ComboBox/ComboBox.js +8 -2
- package/dist/npm/ComboBox/ComboBoxProps.d.ts +4 -0
- package/dist/npm/DropDownList/DropDownListProps.d.ts +1 -1
- package/dist/npm/DropDownTree/DropDownTree.js +6 -2
- package/dist/npm/DropDownTree/DropDownTreeProps.d.ts +4 -0
- package/dist/npm/MultiSelect/MultiSelect.js +8 -2
- package/dist/npm/MultiSelect/MultiSelectProps.d.ts +4 -0
- package/dist/npm/common/SearchBar.d.ts +1 -0
- package/dist/npm/common/SearchBar.js +9 -3
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +9 -9
|
@@ -108,6 +108,10 @@ var AutoCompleteVue2 = {
|
|
|
108
108
|
type: [Boolean, String],
|
|
109
109
|
default: false
|
|
110
110
|
},
|
|
111
|
+
ariaLabel: {
|
|
112
|
+
type: String,
|
|
113
|
+
default: undefined
|
|
114
|
+
},
|
|
111
115
|
ariaLabelledBy: String,
|
|
112
116
|
ariaDescribedBy: String,
|
|
113
117
|
rounded: {
|
|
@@ -602,7 +606,8 @@ var AutoCompleteVue2 = {
|
|
|
602
606
|
owns: base.listBoxId,
|
|
603
607
|
activedescendant: 'option-' + base.guid + '-' + this.focusedIndex(),
|
|
604
608
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
605
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
609
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
610
|
+
ariaLabel: this.$props.ariaLabel
|
|
606
611
|
},
|
|
607
612
|
placeholder: placeholder,
|
|
608
613
|
tabIndex: tabIndex || undefined,
|
|
@@ -632,7 +637,8 @@ var AutoCompleteVue2 = {
|
|
|
632
637
|
activedescendant: 'option-' + base.guid + '-' + this.focusedIndex(),
|
|
633
638
|
onClearbuttonclick: this.clearButtonClick,
|
|
634
639
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
635
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
640
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
641
|
+
ariaLabel: this.$props.ariaLabel
|
|
636
642
|
})
|
|
637
643
|
);
|
|
638
644
|
};
|
|
@@ -124,6 +124,10 @@ export interface AutoCompleteProps extends FormComponentProps {
|
|
|
124
124
|
* Identifies the element(s) which will label the component.
|
|
125
125
|
*/
|
|
126
126
|
ariaLabelledBy?: string;
|
|
127
|
+
/**
|
|
128
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
129
|
+
*/
|
|
130
|
+
ariaLabel?: string;
|
|
127
131
|
/**
|
|
128
132
|
* If set, the AutoComplete will use it to get the focused item index.
|
|
129
133
|
*
|
|
@@ -147,6 +147,10 @@ var ComboBoxVue2 = {
|
|
|
147
147
|
type: Boolean,
|
|
148
148
|
default: true
|
|
149
149
|
},
|
|
150
|
+
ariaLabel: {
|
|
151
|
+
type: String,
|
|
152
|
+
default: undefined
|
|
153
|
+
},
|
|
150
154
|
ariaLabelledBy: String,
|
|
151
155
|
ariaDescribedBy: String,
|
|
152
156
|
valueField: String,
|
|
@@ -987,7 +991,8 @@ var ComboBoxVue2 = {
|
|
|
987
991
|
owns: this.base.listBoxId,
|
|
988
992
|
activedescendant: this.base.guid + '-' + (selectedIndex + virtual.skip),
|
|
989
993
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
990
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
994
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
995
|
+
ariaLabel: this.$props.ariaLabel
|
|
991
996
|
},
|
|
992
997
|
placeholder: placeholder,
|
|
993
998
|
tabIndex: tabIndex || undefined,
|
|
@@ -1012,7 +1017,8 @@ var ComboBoxVue2 = {
|
|
|
1012
1017
|
owns: this.base.listBoxId,
|
|
1013
1018
|
activedescendant: this.base.guid + '-' + (selectedIndex + virtual.skip),
|
|
1014
1019
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
1015
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
1020
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
1021
|
+
ariaLabel: this.$props.ariaLabel
|
|
1016
1022
|
})
|
|
1017
1023
|
);
|
|
1018
1024
|
};
|
|
@@ -162,6 +162,10 @@ export interface ComboBoxProps extends FormComponentProps {
|
|
|
162
162
|
* Identifies the element(s) which will label the component.
|
|
163
163
|
*/
|
|
164
164
|
ariaLabelledBy?: string;
|
|
165
|
+
/**
|
|
166
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
167
|
+
*/
|
|
168
|
+
ariaLabel?: string;
|
|
165
169
|
/**
|
|
166
170
|
* If set, the ComboBox will use it to get the focused item index.
|
|
167
171
|
*
|
|
@@ -59,7 +59,7 @@ export interface DropDownListProps extends FormComponentProps {
|
|
|
59
59
|
*/
|
|
60
60
|
ariaLabelledBy?: string;
|
|
61
61
|
/**
|
|
62
|
-
*
|
|
62
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
63
63
|
*/
|
|
64
64
|
ariaLabel?: string;
|
|
65
65
|
/**
|
|
@@ -139,6 +139,10 @@ var DropDownTreeVue2 = {
|
|
|
139
139
|
required: Boolean,
|
|
140
140
|
name: String,
|
|
141
141
|
id: String,
|
|
142
|
+
ariaLabel: {
|
|
143
|
+
type: String,
|
|
144
|
+
default: undefined
|
|
145
|
+
},
|
|
142
146
|
ariaLabelledBy: String,
|
|
143
147
|
ariaDescribedBy: String,
|
|
144
148
|
filterable: Boolean,
|
|
@@ -338,7 +342,7 @@ var DropDownTreeVue2 = {
|
|
|
338
342
|
"aria-haspopup": "tree",
|
|
339
343
|
"aria-expanded": this.isOpen,
|
|
340
344
|
"aria-disabled": disabled,
|
|
341
|
-
"aria-label": label,
|
|
345
|
+
"aria-label": label || this.$props.ariaLabel,
|
|
342
346
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
343
347
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
344
348
|
"aria-required": required
|
|
@@ -363,7 +367,7 @@ var DropDownTreeVue2 = {
|
|
|
363
367
|
"aria-haspopup": "tree",
|
|
364
368
|
"aria-expanded": this.isOpen,
|
|
365
369
|
"aria-disabled": disabled,
|
|
366
|
-
"aria-label": label,
|
|
370
|
+
"aria-label": label || this.$props.ariaLabel,
|
|
367
371
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
368
372
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
369
373
|
"aria-required": required
|
|
@@ -130,6 +130,10 @@ export interface DropDownTreeProps extends FormComponentProps {
|
|
|
130
130
|
* Identifies the element(s) which will label the component.
|
|
131
131
|
*/
|
|
132
132
|
ariaLabelledBy?: string;
|
|
133
|
+
/**
|
|
134
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
135
|
+
*/
|
|
136
|
+
ariaLabel?: string;
|
|
133
137
|
/**
|
|
134
138
|
* Enables the filtering functionality of the DropDownTree ([more information and examples]({% slug filtering_dropdowntree %})).
|
|
135
139
|
*/
|
|
@@ -155,6 +155,10 @@ var MultiSelectVue2 = {
|
|
|
155
155
|
type: String,
|
|
156
156
|
default: undefined
|
|
157
157
|
},
|
|
158
|
+
ariaLabel: {
|
|
159
|
+
type: String,
|
|
160
|
+
default: undefined
|
|
161
|
+
},
|
|
158
162
|
ariaLabelledBy: String,
|
|
159
163
|
ariaDescribedBy: String,
|
|
160
164
|
rounded: {
|
|
@@ -934,7 +938,8 @@ var MultiSelectVue2 = {
|
|
|
934
938
|
owns: this.base.listBoxId,
|
|
935
939
|
activedescendant: ariaActivedescendant,
|
|
936
940
|
"aria-describedBy": "tagslist-".concat(this.base.guid).concat(this.$props.ariaDescribedBy ? ' ' + this.$props.ariaDescribedBy : ''),
|
|
937
|
-
"aria-labelledBy": this.$props.ariaLabelledBy
|
|
941
|
+
"aria-labelledBy": this.$props.ariaLabelledBy,
|
|
942
|
+
"aria-label": this.$props.ariaLabel
|
|
938
943
|
},
|
|
939
944
|
size: Math.max((placeholderToShow || '').length, searchText.length, 1),
|
|
940
945
|
tabIndex: this.$props.tabIndex,
|
|
@@ -957,7 +962,8 @@ var MultiSelectVue2 = {
|
|
|
957
962
|
owns: this.base.listBoxId,
|
|
958
963
|
activedescendant: ariaActivedescendant,
|
|
959
964
|
"aria-describedBy": "tagslist-".concat(this.base.guid).concat(this.$props.ariaDescribedBy ? ' ' + this.$props.ariaDescribedBy : ''),
|
|
960
|
-
"aria-labelledBy": this.$props.ariaLabelledBy
|
|
965
|
+
"aria-labelledBy": this.$props.ariaLabelledBy,
|
|
966
|
+
"aria-label": this.$props.ariaLabel
|
|
961
967
|
})
|
|
962
968
|
);
|
|
963
969
|
};
|
|
@@ -124,6 +124,10 @@ export interface MultiSelectProps extends FormComponentProps {
|
|
|
124
124
|
* Identifies the element(s) which will label the component.
|
|
125
125
|
*/
|
|
126
126
|
ariaLabelledBy?: string;
|
|
127
|
+
/**
|
|
128
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
129
|
+
*/
|
|
130
|
+
ariaLabel?: string;
|
|
127
131
|
/**
|
|
128
132
|
* If set, the MultiSelect will use it to get the focused item index.
|
|
129
133
|
*
|
|
@@ -37,7 +37,11 @@ var SearchBarVue2 = {
|
|
|
37
37
|
describedby: String,
|
|
38
38
|
clearButton: Boolean,
|
|
39
39
|
accessKey: String,
|
|
40
|
-
ariaLabelledBy: String
|
|
40
|
+
ariaLabelledBy: String,
|
|
41
|
+
ariaLabel: {
|
|
42
|
+
type: String,
|
|
43
|
+
default: undefined
|
|
44
|
+
}
|
|
41
45
|
},
|
|
42
46
|
data: function data() {
|
|
43
47
|
return {
|
|
@@ -124,7 +128,8 @@ var SearchBarVue2 = {
|
|
|
124
128
|
"aria-controls": this.$props.owns,
|
|
125
129
|
"aria-activedescendant": this.$props.expanded ? this.$props.activedescendant : undefined,
|
|
126
130
|
"aria-describedby": this.$props.describedby,
|
|
127
|
-
"aria-labelledby": this.$props.ariaLabelledBy
|
|
131
|
+
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
132
|
+
"aria-label": this.$props.ariaLabel
|
|
128
133
|
},
|
|
129
134
|
id: this.$props.id,
|
|
130
135
|
type: "text",
|
|
@@ -160,7 +165,8 @@ var SearchBarVue2 = {
|
|
|
160
165
|
"aria-controls": this.$props.owns,
|
|
161
166
|
"aria-activedescendant": this.$props.expanded ? this.$props.activedescendant : undefined,
|
|
162
167
|
"aria-describedby": this.$props.describedby,
|
|
163
|
-
"aria-labelledby": this.$props.ariaLabelledBy
|
|
168
|
+
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
169
|
+
"aria-label": this.$props.ariaLabel
|
|
164
170
|
});
|
|
165
171
|
}
|
|
166
172
|
};
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-dropdowns',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1692867641,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -108,6 +108,10 @@ var AutoCompleteVue2 = {
|
|
|
108
108
|
type: [Boolean, String],
|
|
109
109
|
default: false
|
|
110
110
|
},
|
|
111
|
+
ariaLabel: {
|
|
112
|
+
type: String,
|
|
113
|
+
default: undefined
|
|
114
|
+
},
|
|
111
115
|
ariaLabelledBy: String,
|
|
112
116
|
ariaDescribedBy: String,
|
|
113
117
|
rounded: {
|
|
@@ -602,7 +606,8 @@ var AutoCompleteVue2 = {
|
|
|
602
606
|
owns: base.listBoxId,
|
|
603
607
|
activedescendant: 'option-' + base.guid + '-' + this.focusedIndex(),
|
|
604
608
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
605
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
609
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
610
|
+
ariaLabel: this.$props.ariaLabel
|
|
606
611
|
},
|
|
607
612
|
placeholder: placeholder,
|
|
608
613
|
tabIndex: tabIndex || undefined,
|
|
@@ -632,7 +637,8 @@ var AutoCompleteVue2 = {
|
|
|
632
637
|
activedescendant: 'option-' + base.guid + '-' + this.focusedIndex(),
|
|
633
638
|
onClearbuttonclick: this.clearButtonClick,
|
|
634
639
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
635
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
640
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
641
|
+
ariaLabel: this.$props.ariaLabel
|
|
636
642
|
})
|
|
637
643
|
);
|
|
638
644
|
};
|
|
@@ -124,6 +124,10 @@ export interface AutoCompleteProps extends FormComponentProps {
|
|
|
124
124
|
* Identifies the element(s) which will label the component.
|
|
125
125
|
*/
|
|
126
126
|
ariaLabelledBy?: string;
|
|
127
|
+
/**
|
|
128
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
129
|
+
*/
|
|
130
|
+
ariaLabel?: string;
|
|
127
131
|
/**
|
|
128
132
|
* If set, the AutoComplete will use it to get the focused item index.
|
|
129
133
|
*
|
|
@@ -147,6 +147,10 @@ var ComboBoxVue2 = {
|
|
|
147
147
|
type: Boolean,
|
|
148
148
|
default: true
|
|
149
149
|
},
|
|
150
|
+
ariaLabel: {
|
|
151
|
+
type: String,
|
|
152
|
+
default: undefined
|
|
153
|
+
},
|
|
150
154
|
ariaLabelledBy: String,
|
|
151
155
|
ariaDescribedBy: String,
|
|
152
156
|
valueField: String,
|
|
@@ -987,7 +991,8 @@ var ComboBoxVue2 = {
|
|
|
987
991
|
owns: this.base.listBoxId,
|
|
988
992
|
activedescendant: this.base.guid + '-' + (selectedIndex + virtual.skip),
|
|
989
993
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
990
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
994
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
995
|
+
ariaLabel: this.$props.ariaLabel
|
|
991
996
|
},
|
|
992
997
|
placeholder: placeholder,
|
|
993
998
|
tabIndex: tabIndex || undefined,
|
|
@@ -1012,7 +1017,8 @@ var ComboBoxVue2 = {
|
|
|
1012
1017
|
owns: this.base.listBoxId,
|
|
1013
1018
|
activedescendant: this.base.guid + '-' + (selectedIndex + virtual.skip),
|
|
1014
1019
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
1015
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
1020
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
1021
|
+
ariaLabel: this.$props.ariaLabel
|
|
1016
1022
|
})
|
|
1017
1023
|
);
|
|
1018
1024
|
};
|
|
@@ -162,6 +162,10 @@ export interface ComboBoxProps extends FormComponentProps {
|
|
|
162
162
|
* Identifies the element(s) which will label the component.
|
|
163
163
|
*/
|
|
164
164
|
ariaLabelledBy?: string;
|
|
165
|
+
/**
|
|
166
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
167
|
+
*/
|
|
168
|
+
ariaLabel?: string;
|
|
165
169
|
/**
|
|
166
170
|
* If set, the ComboBox will use it to get the focused item index.
|
|
167
171
|
*
|
|
@@ -59,7 +59,7 @@ export interface DropDownListProps extends FormComponentProps {
|
|
|
59
59
|
*/
|
|
60
60
|
ariaLabelledBy?: string;
|
|
61
61
|
/**
|
|
62
|
-
*
|
|
62
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
63
63
|
*/
|
|
64
64
|
ariaLabel?: string;
|
|
65
65
|
/**
|
|
@@ -139,6 +139,10 @@ var DropDownTreeVue2 = {
|
|
|
139
139
|
required: Boolean,
|
|
140
140
|
name: String,
|
|
141
141
|
id: String,
|
|
142
|
+
ariaLabel: {
|
|
143
|
+
type: String,
|
|
144
|
+
default: undefined
|
|
145
|
+
},
|
|
142
146
|
ariaLabelledBy: String,
|
|
143
147
|
ariaDescribedBy: String,
|
|
144
148
|
filterable: Boolean,
|
|
@@ -338,7 +342,7 @@ var DropDownTreeVue2 = {
|
|
|
338
342
|
"aria-haspopup": "tree",
|
|
339
343
|
"aria-expanded": this.isOpen,
|
|
340
344
|
"aria-disabled": disabled,
|
|
341
|
-
"aria-label": label,
|
|
345
|
+
"aria-label": label || this.$props.ariaLabel,
|
|
342
346
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
343
347
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
344
348
|
"aria-required": required
|
|
@@ -363,7 +367,7 @@ var DropDownTreeVue2 = {
|
|
|
363
367
|
"aria-haspopup": "tree",
|
|
364
368
|
"aria-expanded": this.isOpen,
|
|
365
369
|
"aria-disabled": disabled,
|
|
366
|
-
"aria-label": label,
|
|
370
|
+
"aria-label": label || this.$props.ariaLabel,
|
|
367
371
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
368
372
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
369
373
|
"aria-required": required
|
|
@@ -130,6 +130,10 @@ export interface DropDownTreeProps extends FormComponentProps {
|
|
|
130
130
|
* Identifies the element(s) which will label the component.
|
|
131
131
|
*/
|
|
132
132
|
ariaLabelledBy?: string;
|
|
133
|
+
/**
|
|
134
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
135
|
+
*/
|
|
136
|
+
ariaLabel?: string;
|
|
133
137
|
/**
|
|
134
138
|
* Enables the filtering functionality of the DropDownTree ([more information and examples]({% slug filtering_dropdowntree %})).
|
|
135
139
|
*/
|
|
@@ -155,6 +155,10 @@ var MultiSelectVue2 = {
|
|
|
155
155
|
type: String,
|
|
156
156
|
default: undefined
|
|
157
157
|
},
|
|
158
|
+
ariaLabel: {
|
|
159
|
+
type: String,
|
|
160
|
+
default: undefined
|
|
161
|
+
},
|
|
158
162
|
ariaLabelledBy: String,
|
|
159
163
|
ariaDescribedBy: String,
|
|
160
164
|
rounded: {
|
|
@@ -934,7 +938,8 @@ var MultiSelectVue2 = {
|
|
|
934
938
|
owns: this.base.listBoxId,
|
|
935
939
|
activedescendant: ariaActivedescendant,
|
|
936
940
|
"aria-describedBy": "tagslist-".concat(this.base.guid).concat(this.$props.ariaDescribedBy ? ' ' + this.$props.ariaDescribedBy : ''),
|
|
937
|
-
"aria-labelledBy": this.$props.ariaLabelledBy
|
|
941
|
+
"aria-labelledBy": this.$props.ariaLabelledBy,
|
|
942
|
+
"aria-label": this.$props.ariaLabel
|
|
938
943
|
},
|
|
939
944
|
size: Math.max((placeholderToShow || '').length, searchText.length, 1),
|
|
940
945
|
tabIndex: this.$props.tabIndex,
|
|
@@ -957,7 +962,8 @@ var MultiSelectVue2 = {
|
|
|
957
962
|
owns: this.base.listBoxId,
|
|
958
963
|
activedescendant: ariaActivedescendant,
|
|
959
964
|
"aria-describedBy": "tagslist-".concat(this.base.guid).concat(this.$props.ariaDescribedBy ? ' ' + this.$props.ariaDescribedBy : ''),
|
|
960
|
-
"aria-labelledBy": this.$props.ariaLabelledBy
|
|
965
|
+
"aria-labelledBy": this.$props.ariaLabelledBy,
|
|
966
|
+
"aria-label": this.$props.ariaLabel
|
|
961
967
|
})
|
|
962
968
|
);
|
|
963
969
|
};
|
|
@@ -124,6 +124,10 @@ export interface MultiSelectProps extends FormComponentProps {
|
|
|
124
124
|
* Identifies the element(s) which will label the component.
|
|
125
125
|
*/
|
|
126
126
|
ariaLabelledBy?: string;
|
|
127
|
+
/**
|
|
128
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
129
|
+
*/
|
|
130
|
+
ariaLabel?: string;
|
|
127
131
|
/**
|
|
128
132
|
* If set, the MultiSelect will use it to get the focused item index.
|
|
129
133
|
*
|
|
@@ -37,7 +37,11 @@ var SearchBarVue2 = {
|
|
|
37
37
|
describedby: String,
|
|
38
38
|
clearButton: Boolean,
|
|
39
39
|
accessKey: String,
|
|
40
|
-
ariaLabelledBy: String
|
|
40
|
+
ariaLabelledBy: String,
|
|
41
|
+
ariaLabel: {
|
|
42
|
+
type: String,
|
|
43
|
+
default: undefined
|
|
44
|
+
}
|
|
41
45
|
},
|
|
42
46
|
data: function data() {
|
|
43
47
|
return {
|
|
@@ -124,7 +128,8 @@ var SearchBarVue2 = {
|
|
|
124
128
|
"aria-controls": this.$props.owns,
|
|
125
129
|
"aria-activedescendant": this.$props.expanded ? this.$props.activedescendant : undefined,
|
|
126
130
|
"aria-describedby": this.$props.describedby,
|
|
127
|
-
"aria-labelledby": this.$props.ariaLabelledBy
|
|
131
|
+
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
132
|
+
"aria-label": this.$props.ariaLabel
|
|
128
133
|
},
|
|
129
134
|
id: this.$props.id,
|
|
130
135
|
type: "text",
|
|
@@ -160,7 +165,8 @@ var SearchBarVue2 = {
|
|
|
160
165
|
"aria-controls": this.$props.owns,
|
|
161
166
|
"aria-activedescendant": this.$props.expanded ? this.$props.activedescendant : undefined,
|
|
162
167
|
"aria-describedby": this.$props.describedby,
|
|
163
|
-
"aria-labelledby": this.$props.ariaLabelledBy
|
|
168
|
+
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
169
|
+
"aria-label": this.$props.ariaLabel
|
|
164
170
|
});
|
|
165
171
|
}
|
|
166
172
|
};
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-dropdowns',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1692867641,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -114,6 +114,10 @@ var AutoCompleteVue2 = {
|
|
|
114
114
|
type: [Boolean, String],
|
|
115
115
|
default: false
|
|
116
116
|
},
|
|
117
|
+
ariaLabel: {
|
|
118
|
+
type: String,
|
|
119
|
+
default: undefined
|
|
120
|
+
},
|
|
117
121
|
ariaLabelledBy: String,
|
|
118
122
|
ariaDescribedBy: String,
|
|
119
123
|
rounded: {
|
|
@@ -608,7 +612,8 @@ var AutoCompleteVue2 = {
|
|
|
608
612
|
owns: base.listBoxId,
|
|
609
613
|
activedescendant: 'option-' + base.guid + '-' + this.focusedIndex(),
|
|
610
614
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
611
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
615
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
616
|
+
ariaLabel: this.$props.ariaLabel
|
|
612
617
|
},
|
|
613
618
|
placeholder: placeholder,
|
|
614
619
|
tabIndex: tabIndex || undefined,
|
|
@@ -638,7 +643,8 @@ var AutoCompleteVue2 = {
|
|
|
638
643
|
activedescendant: 'option-' + base.guid + '-' + this.focusedIndex(),
|
|
639
644
|
onClearbuttonclick: this.clearButtonClick,
|
|
640
645
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
641
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
646
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
647
|
+
ariaLabel: this.$props.ariaLabel
|
|
642
648
|
})
|
|
643
649
|
);
|
|
644
650
|
};
|
|
@@ -124,6 +124,10 @@ export interface AutoCompleteProps extends FormComponentProps {
|
|
|
124
124
|
* Identifies the element(s) which will label the component.
|
|
125
125
|
*/
|
|
126
126
|
ariaLabelledBy?: string;
|
|
127
|
+
/**
|
|
128
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
129
|
+
*/
|
|
130
|
+
ariaLabel?: string;
|
|
127
131
|
/**
|
|
128
132
|
* If set, the AutoComplete will use it to get the focused item index.
|
|
129
133
|
*
|
|
@@ -153,6 +153,10 @@ var ComboBoxVue2 = {
|
|
|
153
153
|
type: Boolean,
|
|
154
154
|
default: true
|
|
155
155
|
},
|
|
156
|
+
ariaLabel: {
|
|
157
|
+
type: String,
|
|
158
|
+
default: undefined
|
|
159
|
+
},
|
|
156
160
|
ariaLabelledBy: String,
|
|
157
161
|
ariaDescribedBy: String,
|
|
158
162
|
valueField: String,
|
|
@@ -993,7 +997,8 @@ var ComboBoxVue2 = {
|
|
|
993
997
|
owns: this.base.listBoxId,
|
|
994
998
|
activedescendant: this.base.guid + '-' + (selectedIndex + virtual.skip),
|
|
995
999
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
996
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
1000
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
1001
|
+
ariaLabel: this.$props.ariaLabel
|
|
997
1002
|
},
|
|
998
1003
|
placeholder: placeholder,
|
|
999
1004
|
tabIndex: tabIndex || undefined,
|
|
@@ -1018,7 +1023,8 @@ var ComboBoxVue2 = {
|
|
|
1018
1023
|
owns: this.base.listBoxId,
|
|
1019
1024
|
activedescendant: this.base.guid + '-' + (selectedIndex + virtual.skip),
|
|
1020
1025
|
ariaLabelledBy: this.$props.ariaLabelledBy,
|
|
1021
|
-
ariaDescribedBy: this.$props.ariaDescribedBy
|
|
1026
|
+
ariaDescribedBy: this.$props.ariaDescribedBy,
|
|
1027
|
+
ariaLabel: this.$props.ariaLabel
|
|
1022
1028
|
})
|
|
1023
1029
|
);
|
|
1024
1030
|
};
|
|
@@ -162,6 +162,10 @@ export interface ComboBoxProps extends FormComponentProps {
|
|
|
162
162
|
* Identifies the element(s) which will label the component.
|
|
163
163
|
*/
|
|
164
164
|
ariaLabelledBy?: string;
|
|
165
|
+
/**
|
|
166
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
167
|
+
*/
|
|
168
|
+
ariaLabel?: string;
|
|
165
169
|
/**
|
|
166
170
|
* If set, the ComboBox will use it to get the focused item index.
|
|
167
171
|
*
|
|
@@ -59,7 +59,7 @@ export interface DropDownListProps extends FormComponentProps {
|
|
|
59
59
|
*/
|
|
60
60
|
ariaLabelledBy?: string;
|
|
61
61
|
/**
|
|
62
|
-
*
|
|
62
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
63
63
|
*/
|
|
64
64
|
ariaLabel?: string;
|
|
65
65
|
/**
|
|
@@ -143,6 +143,10 @@ var DropDownTreeVue2 = {
|
|
|
143
143
|
required: Boolean,
|
|
144
144
|
name: String,
|
|
145
145
|
id: String,
|
|
146
|
+
ariaLabel: {
|
|
147
|
+
type: String,
|
|
148
|
+
default: undefined
|
|
149
|
+
},
|
|
146
150
|
ariaLabelledBy: String,
|
|
147
151
|
ariaDescribedBy: String,
|
|
148
152
|
filterable: Boolean,
|
|
@@ -342,7 +346,7 @@ var DropDownTreeVue2 = {
|
|
|
342
346
|
"aria-haspopup": "tree",
|
|
343
347
|
"aria-expanded": this.isOpen,
|
|
344
348
|
"aria-disabled": disabled,
|
|
345
|
-
"aria-label": label,
|
|
349
|
+
"aria-label": label || this.$props.ariaLabel,
|
|
346
350
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
347
351
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
348
352
|
"aria-required": required
|
|
@@ -367,7 +371,7 @@ var DropDownTreeVue2 = {
|
|
|
367
371
|
"aria-haspopup": "tree",
|
|
368
372
|
"aria-expanded": this.isOpen,
|
|
369
373
|
"aria-disabled": disabled,
|
|
370
|
-
"aria-label": label,
|
|
374
|
+
"aria-label": label || this.$props.ariaLabel,
|
|
371
375
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
372
376
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
373
377
|
"aria-required": required
|
|
@@ -130,6 +130,10 @@ export interface DropDownTreeProps extends FormComponentProps {
|
|
|
130
130
|
* Identifies the element(s) which will label the component.
|
|
131
131
|
*/
|
|
132
132
|
ariaLabelledBy?: string;
|
|
133
|
+
/**
|
|
134
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
135
|
+
*/
|
|
136
|
+
ariaLabel?: string;
|
|
133
137
|
/**
|
|
134
138
|
* Enables the filtering functionality of the DropDownTree ([more information and examples]({% slug filtering_dropdowntree %})).
|
|
135
139
|
*/
|
|
@@ -161,6 +161,10 @@ var MultiSelectVue2 = {
|
|
|
161
161
|
type: String,
|
|
162
162
|
default: undefined
|
|
163
163
|
},
|
|
164
|
+
ariaLabel: {
|
|
165
|
+
type: String,
|
|
166
|
+
default: undefined
|
|
167
|
+
},
|
|
164
168
|
ariaLabelledBy: String,
|
|
165
169
|
ariaDescribedBy: String,
|
|
166
170
|
rounded: {
|
|
@@ -940,7 +944,8 @@ var MultiSelectVue2 = {
|
|
|
940
944
|
owns: this.base.listBoxId,
|
|
941
945
|
activedescendant: ariaActivedescendant,
|
|
942
946
|
"aria-describedBy": "tagslist-".concat(this.base.guid).concat(this.$props.ariaDescribedBy ? ' ' + this.$props.ariaDescribedBy : ''),
|
|
943
|
-
"aria-labelledBy": this.$props.ariaLabelledBy
|
|
947
|
+
"aria-labelledBy": this.$props.ariaLabelledBy,
|
|
948
|
+
"aria-label": this.$props.ariaLabel
|
|
944
949
|
},
|
|
945
950
|
size: Math.max((placeholderToShow || '').length, searchText.length, 1),
|
|
946
951
|
tabIndex: this.$props.tabIndex,
|
|
@@ -963,7 +968,8 @@ var MultiSelectVue2 = {
|
|
|
963
968
|
owns: this.base.listBoxId,
|
|
964
969
|
activedescendant: ariaActivedescendant,
|
|
965
970
|
"aria-describedBy": "tagslist-".concat(this.base.guid).concat(this.$props.ariaDescribedBy ? ' ' + this.$props.ariaDescribedBy : ''),
|
|
966
|
-
"aria-labelledBy": this.$props.ariaLabelledBy
|
|
971
|
+
"aria-labelledBy": this.$props.ariaLabelledBy,
|
|
972
|
+
"aria-label": this.$props.ariaLabel
|
|
967
973
|
})
|
|
968
974
|
);
|
|
969
975
|
};
|
|
@@ -124,6 +124,10 @@ export interface MultiSelectProps extends FormComponentProps {
|
|
|
124
124
|
* Identifies the element(s) which will label the component.
|
|
125
125
|
*/
|
|
126
126
|
ariaLabelledBy?: string;
|
|
127
|
+
/**
|
|
128
|
+
* Defines the [aria-label](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) attribute of the component.
|
|
129
|
+
*/
|
|
130
|
+
ariaLabel?: string;
|
|
127
131
|
/**
|
|
128
132
|
* If set, the MultiSelect will use it to get the focused item index.
|
|
129
133
|
*
|