@progress/kendo-vue-dropdowns 3.0.0-dev.202201171427 → 3.0.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/README.md +1 -1
- package/dist/cdn/js/kendo-vue-dropdowns.js +1 -1
- package/dist/es/AutoComplete/AutoComplete.js +1 -1
- package/dist/es/ComboBox/ComboBox.js +4 -2
- package/dist/es/DropDownList/DropDownList.js +4 -2
- package/dist/es/MultiSelect/MultiSelect.js +1 -1
- package/dist/es/MultiSelect/TagList.js +4 -3
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/AutoComplete/AutoComplete.js +1 -1
- package/dist/npm/ComboBox/ComboBox.js +4 -2
- package/dist/npm/DropDownList/DropDownList.js +4 -2
- package/dist/npm/MultiSelect/MultiSelect.js +1 -1
- package/dist/npm/MultiSelect/TagList.js +4 -3
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +6 -6
|
@@ -981,16 +981,18 @@ var ComboBoxVue2 = {
|
|
|
981
981
|
},
|
|
982
982
|
key: "clearbutton"
|
|
983
983
|
}), loading && h("span", {
|
|
984
|
-
"class": "k-icon k-i-loading",
|
|
984
|
+
"class": "k-icon k-input-loading-icon k-i-loading",
|
|
985
985
|
key: "loading"
|
|
986
986
|
}), // @ts-ignore
|
|
987
987
|
h(KButton, {
|
|
988
|
-
|
|
988
|
+
tabIndex: -1,
|
|
989
989
|
attrs: this.v3 ? undefined : {
|
|
990
|
+
tabIndex: -1,
|
|
990
991
|
size: size,
|
|
991
992
|
fillMode: fillMode,
|
|
992
993
|
iconClass: classNames('k-icon k-i-arrow-s', iconClassName)
|
|
993
994
|
},
|
|
995
|
+
size: size,
|
|
994
996
|
fillMode: fillMode,
|
|
995
997
|
"class": 'k-input-button',
|
|
996
998
|
iconClass: classNames('k-icon k-i-arrow-s', iconClassName),
|
|
@@ -1043,16 +1043,18 @@ var DropDownListVue2 = {
|
|
|
1043
1043
|
id: this.$props.id,
|
|
1044
1044
|
title: this.$props.title
|
|
1045
1045
|
}, [valueElement, loading && h("span", {
|
|
1046
|
-
"class": "k-icon k-i-loading",
|
|
1046
|
+
"class": "k-icon k-input-loading-icon k-i-loading",
|
|
1047
1047
|
key: "loading"
|
|
1048
1048
|
}), // @ts-ignore
|
|
1049
1049
|
h(KButton, {
|
|
1050
|
-
|
|
1050
|
+
tabIndex: -1,
|
|
1051
1051
|
attrs: this.v3 ? undefined : {
|
|
1052
|
+
tabIndex: -1,
|
|
1052
1053
|
size: size,
|
|
1053
1054
|
fillMode: fillMode,
|
|
1054
1055
|
iconClass: classNames('k-icon k-i-arrow-s', iconClassName)
|
|
1055
1056
|
},
|
|
1057
|
+
size: size,
|
|
1056
1058
|
fillMode: fillMode,
|
|
1057
1059
|
"class": 'k-input-button',
|
|
1058
1060
|
iconClass: classNames('k-icon k-i-arrow-s', iconClassName),
|
|
@@ -115,14 +115,15 @@ var TagListVue2 = {
|
|
|
115
115
|
}, [dataItems.map(function (tagData, index) {
|
|
116
116
|
var _this = this;
|
|
117
117
|
|
|
118
|
+
var uniqueId = "tag-" + guid + "-" + tagData.text.toString().replace(/\s+/g, '-');
|
|
118
119
|
var defaultRendering = h("div", {
|
|
119
120
|
"class": __assign(__assign({}, this.chipClass), {
|
|
120
121
|
'k-focus': tagData === this.$props.focused
|
|
121
122
|
}),
|
|
122
|
-
key:
|
|
123
|
-
id:
|
|
123
|
+
key: uniqueId,
|
|
124
|
+
id: uniqueId,
|
|
124
125
|
attrs: this.v3 ? undefined : {
|
|
125
|
-
id:
|
|
126
|
+
id: uniqueId,
|
|
126
127
|
"aria-selected": true,
|
|
127
128
|
role: "option",
|
|
128
129
|
"aria-setsize": dataItems.length
|
|
@@ -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: 1642569610,
|
|
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
|
};
|
|
@@ -998,16 +998,18 @@ var ComboBoxVue2 = {
|
|
|
998
998
|
},
|
|
999
999
|
key: "clearbutton"
|
|
1000
1000
|
}), loading && h("span", {
|
|
1001
|
-
"class": "k-icon k-i-loading",
|
|
1001
|
+
"class": "k-icon k-input-loading-icon k-i-loading",
|
|
1002
1002
|
key: "loading"
|
|
1003
1003
|
}), // @ts-ignore
|
|
1004
1004
|
h(kendo_vue_buttons_1.Button, {
|
|
1005
|
-
|
|
1005
|
+
tabIndex: -1,
|
|
1006
1006
|
attrs: this.v3 ? undefined : {
|
|
1007
|
+
tabIndex: -1,
|
|
1007
1008
|
size: size,
|
|
1008
1009
|
fillMode: fillMode,
|
|
1009
1010
|
iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName)
|
|
1010
1011
|
},
|
|
1012
|
+
size: size,
|
|
1011
1013
|
fillMode: fillMode,
|
|
1012
1014
|
"class": 'k-input-button',
|
|
1013
1015
|
iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName),
|
|
@@ -1060,16 +1060,18 @@ var DropDownListVue2 = {
|
|
|
1060
1060
|
id: this.$props.id,
|
|
1061
1061
|
title: this.$props.title
|
|
1062
1062
|
}, [valueElement, loading && h("span", {
|
|
1063
|
-
"class": "k-icon k-i-loading",
|
|
1063
|
+
"class": "k-icon k-input-loading-icon k-i-loading",
|
|
1064
1064
|
key: "loading"
|
|
1065
1065
|
}), // @ts-ignore
|
|
1066
1066
|
h(kendo_vue_buttons_1.Button, {
|
|
1067
|
-
|
|
1067
|
+
tabIndex: -1,
|
|
1068
1068
|
attrs: this.v3 ? undefined : {
|
|
1069
|
+
tabIndex: -1,
|
|
1069
1070
|
size: size,
|
|
1070
1071
|
fillMode: fillMode,
|
|
1071
1072
|
iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName)
|
|
1072
1073
|
},
|
|
1074
|
+
size: size,
|
|
1073
1075
|
fillMode: fillMode,
|
|
1074
1076
|
"class": 'k-input-button',
|
|
1075
1077
|
iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName),
|
|
@@ -123,14 +123,15 @@ var TagListVue2 = {
|
|
|
123
123
|
}, [dataItems.map(function (tagData, index) {
|
|
124
124
|
var _this = this;
|
|
125
125
|
|
|
126
|
+
var uniqueId = "tag-" + guid + "-" + tagData.text.toString().replace(/\s+/g, '-');
|
|
126
127
|
var defaultRendering = h("div", {
|
|
127
128
|
"class": __assign(__assign({}, this.chipClass), {
|
|
128
129
|
'k-focus': tagData === this.$props.focused
|
|
129
130
|
}),
|
|
130
|
-
key:
|
|
131
|
-
id:
|
|
131
|
+
key: uniqueId,
|
|
132
|
+
id: uniqueId,
|
|
132
133
|
attrs: this.v3 ? undefined : {
|
|
133
|
-
id:
|
|
134
|
+
id: uniqueId,
|
|
134
135
|
"aria-selected": true,
|
|
135
136
|
role: "option",
|
|
136
137
|
"aria-setsize": dataItems.length
|
|
@@ -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: 1642569610,
|
|
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.0.0
|
|
4
|
+
"version": "3.0.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -39,18 +39,18 @@
|
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@progress/kendo-licensing": "^1.1.0",
|
|
42
|
-
"@progress/kendo-vue-intl": "^
|
|
42
|
+
"@progress/kendo-vue-intl": "^3.0.0",
|
|
43
43
|
"vue": "^2.6.12 || ^3.0.2"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@progress/kendo-vue-buttons": "3.0.0
|
|
47
|
-
"@progress/kendo-vue-common": "3.0.0
|
|
48
|
-
"@progress/kendo-vue-popup": "3.0.0
|
|
46
|
+
"@progress/kendo-vue-buttons": "3.0.0",
|
|
47
|
+
"@progress/kendo-vue-common": "3.0.0",
|
|
48
|
+
"@progress/kendo-vue-popup": "3.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@progress/kendo-data-query": "^1.5.4",
|
|
52
52
|
"@progress/kendo-licensing": "^1.1.0",
|
|
53
|
-
"@progress/kendo-vue-intl": "3.0.0
|
|
53
|
+
"@progress/kendo-vue-intl": "3.0.0"
|
|
54
54
|
},
|
|
55
55
|
"author": "Progress",
|
|
56
56
|
"license": "SEE LICENSE IN LICENSE.md",
|