@progress/kendo-vue-dropdowns 3.5.4 → 3.6.0
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/LICENSE.md +1 -1
- package/dist/cdn/js/kendo-vue-dropdowns.js +1 -1
- package/dist/es/DropDownList/DropDownList.js +2 -4
- package/dist/es/common/SearchBar.js +2 -2
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/DropDownList/DropDownList.js +2 -4
- package/dist/esm/common/SearchBar.js +2 -2
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/DropDownList/DropDownList.js +2 -4
- package/dist/npm/common/SearchBar.js +2 -2
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +6 -6
|
@@ -1005,7 +1005,6 @@ var DropDownListVue2 = {
|
|
|
1005
1005
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
1006
1006
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
1007
1007
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
1008
|
-
id: this.$props.id,
|
|
1009
1008
|
title: this.$props.title
|
|
1010
1009
|
},
|
|
1011
1010
|
onMousedown: opened ? preventDefaultNonInputs : noop,
|
|
@@ -1033,7 +1032,6 @@ var DropDownListVue2 = {
|
|
|
1033
1032
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
1034
1033
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
1035
1034
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
1036
|
-
id: this.$props.id,
|
|
1037
1035
|
title: this.$props.title
|
|
1038
1036
|
}, [valueElement, loading && h("span", {
|
|
1039
1037
|
"class": "k-icon k-input-loading-icon k-i-loading",
|
|
@@ -1047,7 +1045,7 @@ var DropDownListVue2 = {
|
|
|
1047
1045
|
size: size,
|
|
1048
1046
|
fillMode: fillMode,
|
|
1049
1047
|
rounded: null,
|
|
1050
|
-
iconClass: classNames('k-icon k-i-caret-alt-down'
|
|
1048
|
+
iconClass: classNames('k-icon', iconClassName ? iconClassName : 'k-i-caret-alt-down'),
|
|
1051
1049
|
"aria-hidden": true
|
|
1052
1050
|
},
|
|
1053
1051
|
tabIndex: -1,
|
|
@@ -1055,7 +1053,7 @@ var DropDownListVue2 = {
|
|
|
1055
1053
|
fillMode: fillMode,
|
|
1056
1054
|
rounded: null,
|
|
1057
1055
|
"class": 'k-input-button',
|
|
1058
|
-
iconClass: classNames('k-icon k-i-caret-alt-down'
|
|
1056
|
+
iconClass: classNames('k-icon', iconClassName ? iconClassName : 'k-i-caret-alt-down'),
|
|
1059
1057
|
"aria-hidden": true
|
|
1060
1058
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
1061
1059
|
return label ? h("span", {
|
|
@@ -127,7 +127,7 @@ var SearchBarVue2 = {
|
|
|
127
127
|
"aria-haspopup": "listbox",
|
|
128
128
|
"aria-expanded": this.$props.expanded || false,
|
|
129
129
|
"aria-controls": this.$props.owns,
|
|
130
|
-
"aria-activedescendant": this.$props.activedescendant,
|
|
130
|
+
"aria-activedescendant": this.$props.expanded ? this.$props.activedescendant : undefined,
|
|
131
131
|
"aria-describedby": this.$props.describedby,
|
|
132
132
|
"aria-labelledby": this.$props.ariaLabelledBy
|
|
133
133
|
},
|
|
@@ -163,7 +163,7 @@ var SearchBarVue2 = {
|
|
|
163
163
|
"aria-haspopup": "listbox",
|
|
164
164
|
"aria-expanded": this.$props.expanded || false,
|
|
165
165
|
"aria-controls": this.$props.owns,
|
|
166
|
-
"aria-activedescendant": this.$props.activedescendant,
|
|
166
|
+
"aria-activedescendant": this.$props.expanded ? this.$props.activedescendant : undefined,
|
|
167
167
|
"aria-describedby": this.$props.describedby,
|
|
168
168
|
"aria-labelledby": this.$props.ariaLabelledBy
|
|
169
169
|
});
|
|
@@ -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: 1663077989,
|
|
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
|
};
|
|
@@ -1005,7 +1005,6 @@ var DropDownListVue2 = {
|
|
|
1005
1005
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
1006
1006
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
1007
1007
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
1008
|
-
id: this.$props.id,
|
|
1009
1008
|
title: this.$props.title
|
|
1010
1009
|
},
|
|
1011
1010
|
onMousedown: opened ? preventDefaultNonInputs : noop,
|
|
@@ -1033,7 +1032,6 @@ var DropDownListVue2 = {
|
|
|
1033
1032
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
1034
1033
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
1035
1034
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
1036
|
-
id: this.$props.id,
|
|
1037
1035
|
title: this.$props.title
|
|
1038
1036
|
}, [valueElement, loading && h("span", {
|
|
1039
1037
|
"class": "k-icon k-input-loading-icon k-i-loading",
|
|
@@ -1047,7 +1045,7 @@ var DropDownListVue2 = {
|
|
|
1047
1045
|
size: size,
|
|
1048
1046
|
fillMode: fillMode,
|
|
1049
1047
|
rounded: null,
|
|
1050
|
-
iconClass: classNames('k-icon k-i-caret-alt-down'
|
|
1048
|
+
iconClass: classNames('k-icon', iconClassName ? iconClassName : 'k-i-caret-alt-down'),
|
|
1051
1049
|
"aria-hidden": true
|
|
1052
1050
|
},
|
|
1053
1051
|
tabIndex: -1,
|
|
@@ -1055,7 +1053,7 @@ var DropDownListVue2 = {
|
|
|
1055
1053
|
fillMode: fillMode,
|
|
1056
1054
|
rounded: null,
|
|
1057
1055
|
"class": 'k-input-button',
|
|
1058
|
-
iconClass: classNames('k-icon k-i-caret-alt-down'
|
|
1056
|
+
iconClass: classNames('k-icon', iconClassName ? iconClassName : 'k-i-caret-alt-down'),
|
|
1059
1057
|
"aria-hidden": true
|
|
1060
1058
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
1061
1059
|
return label ? h("span", {
|
|
@@ -127,7 +127,7 @@ var SearchBarVue2 = {
|
|
|
127
127
|
"aria-haspopup": "listbox",
|
|
128
128
|
"aria-expanded": this.$props.expanded || false,
|
|
129
129
|
"aria-controls": this.$props.owns,
|
|
130
|
-
"aria-activedescendant": this.$props.activedescendant,
|
|
130
|
+
"aria-activedescendant": this.$props.expanded ? this.$props.activedescendant : undefined,
|
|
131
131
|
"aria-describedby": this.$props.describedby,
|
|
132
132
|
"aria-labelledby": this.$props.ariaLabelledBy
|
|
133
133
|
},
|
|
@@ -163,7 +163,7 @@ var SearchBarVue2 = {
|
|
|
163
163
|
"aria-haspopup": "listbox",
|
|
164
164
|
"aria-expanded": this.$props.expanded || false,
|
|
165
165
|
"aria-controls": this.$props.owns,
|
|
166
|
-
"aria-activedescendant": this.$props.activedescendant,
|
|
166
|
+
"aria-activedescendant": this.$props.expanded ? this.$props.activedescendant : undefined,
|
|
167
167
|
"aria-describedby": this.$props.describedby,
|
|
168
168
|
"aria-labelledby": this.$props.ariaLabelledBy
|
|
169
169
|
});
|
|
@@ -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: 1663077989,
|
|
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
|
};
|
|
@@ -1022,7 +1022,6 @@ var DropDownListVue2 = {
|
|
|
1022
1022
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
1023
1023
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
1024
1024
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
1025
|
-
id: this.$props.id,
|
|
1026
1025
|
title: this.$props.title
|
|
1027
1026
|
},
|
|
1028
1027
|
onMousedown: opened ? utils_1.preventDefaultNonInputs : kendo_vue_common_1.noop,
|
|
@@ -1050,7 +1049,6 @@ var DropDownListVue2 = {
|
|
|
1050
1049
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
1051
1050
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
1052
1051
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
1053
|
-
id: this.$props.id,
|
|
1054
1052
|
title: this.$props.title
|
|
1055
1053
|
}, [valueElement, loading && h("span", {
|
|
1056
1054
|
"class": "k-icon k-input-loading-icon k-i-loading",
|
|
@@ -1064,7 +1062,7 @@ var DropDownListVue2 = {
|
|
|
1064
1062
|
size: size,
|
|
1065
1063
|
fillMode: fillMode,
|
|
1066
1064
|
rounded: null,
|
|
1067
|
-
iconClass: (0, kendo_vue_common_1.classNames)('k-icon k-i-caret-alt-down'
|
|
1065
|
+
iconClass: (0, kendo_vue_common_1.classNames)('k-icon', iconClassName ? iconClassName : 'k-i-caret-alt-down'),
|
|
1068
1066
|
"aria-hidden": true
|
|
1069
1067
|
},
|
|
1070
1068
|
tabIndex: -1,
|
|
@@ -1072,7 +1070,7 @@ var DropDownListVue2 = {
|
|
|
1072
1070
|
fillMode: fillMode,
|
|
1073
1071
|
rounded: null,
|
|
1074
1072
|
"class": 'k-input-button',
|
|
1075
|
-
iconClass: (0, kendo_vue_common_1.classNames)('k-icon k-i-caret-alt-down'
|
|
1073
|
+
iconClass: (0, kendo_vue_common_1.classNames)('k-icon', iconClassName ? iconClassName : 'k-i-caret-alt-down'),
|
|
1076
1074
|
"aria-hidden": true
|
|
1077
1075
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
1078
1076
|
return label ? h("span", {
|
|
@@ -136,7 +136,7 @@ var SearchBarVue2 = {
|
|
|
136
136
|
"aria-haspopup": "listbox",
|
|
137
137
|
"aria-expanded": this.$props.expanded || false,
|
|
138
138
|
"aria-controls": this.$props.owns,
|
|
139
|
-
"aria-activedescendant": this.$props.activedescendant,
|
|
139
|
+
"aria-activedescendant": this.$props.expanded ? this.$props.activedescendant : undefined,
|
|
140
140
|
"aria-describedby": this.$props.describedby,
|
|
141
141
|
"aria-labelledby": this.$props.ariaLabelledBy
|
|
142
142
|
},
|
|
@@ -172,7 +172,7 @@ var SearchBarVue2 = {
|
|
|
172
172
|
"aria-haspopup": "listbox",
|
|
173
173
|
"aria-expanded": this.$props.expanded || false,
|
|
174
174
|
"aria-controls": this.$props.owns,
|
|
175
|
-
"aria-activedescendant": this.$props.activedescendant,
|
|
175
|
+
"aria-activedescendant": this.$props.expanded ? this.$props.activedescendant : undefined,
|
|
176
176
|
"aria-describedby": this.$props.describedby,
|
|
177
177
|
"aria-labelledby": this.$props.ariaLabelledBy
|
|
178
178
|
});
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-dropdowns',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1663077989,
|
|
12
12
|
version: '',
|
|
13
13
|
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'
|
|
14
14
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-dropdowns",
|
|
3
3
|
"description": "Kendo UI for Vue Dropdowns package",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.6.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -45,18 +45,18 @@
|
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@progress/kendo-licensing": "^1.1.0",
|
|
48
|
-
"@progress/kendo-vue-intl": "^3.
|
|
48
|
+
"@progress/kendo-vue-intl": "^3.6.0",
|
|
49
49
|
"vue": "^2.6.12 || ^3.0.2"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-vue-buttons": "3.
|
|
53
|
-
"@progress/kendo-vue-common": "3.
|
|
54
|
-
"@progress/kendo-vue-popup": "3.
|
|
52
|
+
"@progress/kendo-vue-buttons": "3.6.0",
|
|
53
|
+
"@progress/kendo-vue-common": "3.6.0",
|
|
54
|
+
"@progress/kendo-vue-popup": "3.6.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@progress/kendo-data-query": "^1.5.4",
|
|
58
58
|
"@progress/kendo-licensing": "^1.1.0",
|
|
59
|
-
"@progress/kendo-vue-intl": "3.
|
|
59
|
+
"@progress/kendo-vue-intl": "3.6.0"
|
|
60
60
|
},
|
|
61
61
|
"author": "Progress",
|
|
62
62
|
"license": "SEE LICENSE IN LICENSE.md",
|