@progress/kendo-vue-dropdowns 3.1.3 → 3.1.5-dev.202204110939
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/NOTICE.txt +49 -6
- package/dist/cdn/js/kendo-vue-dropdowns.js +1 -1
- package/dist/es/AutoComplete/AutoComplete.js +1 -1
- package/dist/es/ComboBox/ComboBox.js +3 -1
- package/dist/es/DropDownList/DropDownList.js +3 -1
- package/dist/es/MultiSelect/MultiSelect.js +1 -1
- package/dist/es/common/ListFilter.js +3 -3
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/AutoComplete/AutoComplete.js +1 -1
- package/dist/npm/ComboBox/ComboBox.js +3 -1
- package/dist/npm/DropDownList/DropDownList.js +3 -1
- package/dist/npm/MultiSelect/MultiSelect.js +1 -1
- package/dist/npm/common/ListFilter.js +3 -3
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +5 -5
|
@@ -717,7 +717,7 @@ var AutoCompleteVue2 = {
|
|
|
717
717
|
};
|
|
718
718
|
|
|
719
719
|
var autoComplete = h("span", {
|
|
720
|
-
"class": classNames('k-autocomplete k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-
|
|
720
|
+
"class": classNames('k-autocomplete k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-invalid'] = !isValid, _a['k-focus'] = focused && !disabled, _a['k-loading'] = loading, _a['k-required'] = this.required, _a['k-disabled'] = disabled, _a)),
|
|
721
721
|
ref: this.v3 ? function (el) {
|
|
722
722
|
_this.kendoAnchorRef = el;
|
|
723
723
|
} : this.anchor,
|
|
@@ -962,7 +962,7 @@ var ComboBoxVue2 = {
|
|
|
962
962
|
};
|
|
963
963
|
|
|
964
964
|
var combobox = h("span", {
|
|
965
|
-
"class": classNames('k-combobox k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-
|
|
965
|
+
"class": classNames('k-combobox k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-invalid'] = !isValid, _a['k-loading'] = loading, _a['k-required'] = this.required, _a['k-disabled'] = disabled, _a['k-focus'] = focused && !disabled, _a), className),
|
|
966
966
|
ref: this.v3 ? function (el) {
|
|
967
967
|
_this.kendoAnchorRef = el;
|
|
968
968
|
} : this.anchor,
|
|
@@ -991,11 +991,13 @@ var ComboBoxVue2 = {
|
|
|
991
991
|
tabIndex: -1,
|
|
992
992
|
size: size,
|
|
993
993
|
fillMode: fillMode,
|
|
994
|
+
rounded: null,
|
|
994
995
|
iconClass: classNames('k-icon k-i-arrow-s', iconClassName)
|
|
995
996
|
},
|
|
996
997
|
tabIndex: -1,
|
|
997
998
|
size: size,
|
|
998
999
|
fillMode: fillMode,
|
|
1000
|
+
rounded: null,
|
|
999
1001
|
"class": 'k-input-button',
|
|
1000
1002
|
iconClass: classNames('k-icon k-i-arrow-s', iconClassName),
|
|
1001
1003
|
onClick: this.toggleBtnClick,
|
|
@@ -994,7 +994,7 @@ var DropDownListVue2 = {
|
|
|
994
994
|
ref: this.v3 ? function (el) {
|
|
995
995
|
_this.kendoAnchorRef = el;
|
|
996
996
|
} : this.anchor,
|
|
997
|
-
"class": classNames('k-dropdownlist k-picker', className, (_a = {}, _a["k-picker-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-picker-" + fillMode] = fillMode, _a['k-focus'] = focused, _a['k-disabled'] = disabled, _a['k-invalid'] = !isValid, _a['k-
|
|
997
|
+
"class": classNames('k-dropdownlist k-picker', className, (_a = {}, _a["k-picker-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-picker-" + fillMode] = fillMode, _a['k-focus'] = focused, _a['k-disabled'] = disabled, _a['k-invalid'] = !isValid, _a['k-loading'] = loading, _a['k-required'] = this.required, _a)),
|
|
998
998
|
style: !label ? style : __assign(__assign({}, style), {
|
|
999
999
|
width: undefined
|
|
1000
1000
|
}),
|
|
@@ -1053,11 +1053,13 @@ var DropDownListVue2 = {
|
|
|
1053
1053
|
tabIndex: -1,
|
|
1054
1054
|
size: size,
|
|
1055
1055
|
fillMode: fillMode,
|
|
1056
|
+
rounded: null,
|
|
1056
1057
|
iconClass: classNames('k-icon k-i-arrow-s', iconClassName)
|
|
1057
1058
|
},
|
|
1058
1059
|
tabIndex: -1,
|
|
1059
1060
|
size: size,
|
|
1060
1061
|
fillMode: fillMode,
|
|
1062
|
+
rounded: null,
|
|
1061
1063
|
"class": 'k-input-button',
|
|
1062
1064
|
iconClass: classNames('k-icon k-i-arrow-s', iconClassName),
|
|
1063
1065
|
onMousedown: function onMousedown(e) {
|
|
@@ -1153,7 +1153,7 @@ var MultiSelectVue2 = {
|
|
|
1153
1153
|
ref: this.v3 ? function (el) {
|
|
1154
1154
|
_this.kendoAnchorRef = el;
|
|
1155
1155
|
} : this.anchor,
|
|
1156
|
-
"class": classNames('k-multiselect', 'k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-focus'] = focused && !disabled, _a['k-disabled'] = disabled, _a['k-invalid'] = !isValid, _a['k-
|
|
1156
|
+
"class": classNames('k-multiselect', 'k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-focus'] = focused && !disabled, _a['k-disabled'] = disabled, _a['k-invalid'] = !isValid, _a['k-loading'] = loading, _a['k-required'] = this.required, _a)),
|
|
1157
1157
|
style: !label ? style : __assign(__assign({}, style), {
|
|
1158
1158
|
width: undefined
|
|
1159
1159
|
}),
|
|
@@ -83,7 +83,9 @@ var ListFilterVue2 = {
|
|
|
83
83
|
"class": "k-list-filter"
|
|
84
84
|
}, [h("span", {
|
|
85
85
|
"class": this.spanClass
|
|
86
|
-
}, [h("
|
|
86
|
+
}, [h("span", {
|
|
87
|
+
"class": "k-input-icon k-icon k-i-search"
|
|
88
|
+
}), h("input", {
|
|
87
89
|
ref: this.v3 ? function (el) {
|
|
88
90
|
_this.inputRef = el;
|
|
89
91
|
} : 'input',
|
|
@@ -102,8 +104,6 @@ var ListFilterVue2 = {
|
|
|
102
104
|
"keydown": this.onKeyDown
|
|
103
105
|
},
|
|
104
106
|
onKeydown: this.onKeyDown
|
|
105
|
-
}), h("span", {
|
|
106
|
-
"class": "k-input-icon k-icon k-i-search"
|
|
107
107
|
})])]);
|
|
108
108
|
}
|
|
109
109
|
};
|
|
@@ -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: 1649669416,
|
|
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
|
};
|
|
@@ -732,7 +732,7 @@ var AutoCompleteVue2 = {
|
|
|
732
732
|
};
|
|
733
733
|
|
|
734
734
|
var autoComplete = h("span", {
|
|
735
|
-
"class": kendo_vue_common_1.classNames('k-autocomplete k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-
|
|
735
|
+
"class": kendo_vue_common_1.classNames('k-autocomplete k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-invalid'] = !isValid, _a['k-focus'] = focused && !disabled, _a['k-loading'] = loading, _a['k-required'] = this.required, _a['k-disabled'] = disabled, _a)),
|
|
736
736
|
ref: this.v3 ? function (el) {
|
|
737
737
|
_this.kendoAnchorRef = el;
|
|
738
738
|
} : this.anchor,
|
|
@@ -979,7 +979,7 @@ var ComboBoxVue2 = {
|
|
|
979
979
|
};
|
|
980
980
|
|
|
981
981
|
var combobox = h("span", {
|
|
982
|
-
"class": kendo_vue_common_1.classNames('k-combobox k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-
|
|
982
|
+
"class": kendo_vue_common_1.classNames('k-combobox k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-invalid'] = !isValid, _a['k-loading'] = loading, _a['k-required'] = this.required, _a['k-disabled'] = disabled, _a['k-focus'] = focused && !disabled, _a), className),
|
|
983
983
|
ref: this.v3 ? function (el) {
|
|
984
984
|
_this.kendoAnchorRef = el;
|
|
985
985
|
} : this.anchor,
|
|
@@ -1008,11 +1008,13 @@ var ComboBoxVue2 = {
|
|
|
1008
1008
|
tabIndex: -1,
|
|
1009
1009
|
size: size,
|
|
1010
1010
|
fillMode: fillMode,
|
|
1011
|
+
rounded: null,
|
|
1011
1012
|
iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName)
|
|
1012
1013
|
},
|
|
1013
1014
|
tabIndex: -1,
|
|
1014
1015
|
size: size,
|
|
1015
1016
|
fillMode: fillMode,
|
|
1017
|
+
rounded: null,
|
|
1016
1018
|
"class": 'k-input-button',
|
|
1017
1019
|
iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName),
|
|
1018
1020
|
onClick: this.toggleBtnClick,
|
|
@@ -1011,7 +1011,7 @@ var DropDownListVue2 = {
|
|
|
1011
1011
|
ref: this.v3 ? function (el) {
|
|
1012
1012
|
_this.kendoAnchorRef = el;
|
|
1013
1013
|
} : this.anchor,
|
|
1014
|
-
"class": kendo_vue_common_1.classNames('k-dropdownlist k-picker', className, (_a = {}, _a["k-picker-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-picker-" + fillMode] = fillMode, _a['k-focus'] = focused, _a['k-disabled'] = disabled, _a['k-invalid'] = !isValid, _a['k-
|
|
1014
|
+
"class": kendo_vue_common_1.classNames('k-dropdownlist k-picker', className, (_a = {}, _a["k-picker-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-picker-" + fillMode] = fillMode, _a['k-focus'] = focused, _a['k-disabled'] = disabled, _a['k-invalid'] = !isValid, _a['k-loading'] = loading, _a['k-required'] = this.required, _a)),
|
|
1015
1015
|
style: !label ? style : __assign(__assign({}, style), {
|
|
1016
1016
|
width: undefined
|
|
1017
1017
|
}),
|
|
@@ -1070,11 +1070,13 @@ var DropDownListVue2 = {
|
|
|
1070
1070
|
tabIndex: -1,
|
|
1071
1071
|
size: size,
|
|
1072
1072
|
fillMode: fillMode,
|
|
1073
|
+
rounded: null,
|
|
1073
1074
|
iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName)
|
|
1074
1075
|
},
|
|
1075
1076
|
tabIndex: -1,
|
|
1076
1077
|
size: size,
|
|
1077
1078
|
fillMode: fillMode,
|
|
1079
|
+
rounded: null,
|
|
1078
1080
|
"class": 'k-input-button',
|
|
1079
1081
|
iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName),
|
|
1080
1082
|
onMousedown: function onMousedown(e) {
|
|
@@ -1171,7 +1171,7 @@ var MultiSelectVue2 = {
|
|
|
1171
1171
|
ref: this.v3 ? function (el) {
|
|
1172
1172
|
_this.kendoAnchorRef = el;
|
|
1173
1173
|
} : this.anchor,
|
|
1174
|
-
"class": kendo_vue_common_1.classNames('k-multiselect', 'k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-focus'] = focused && !disabled, _a['k-disabled'] = disabled, _a['k-invalid'] = !isValid, _a['k-
|
|
1174
|
+
"class": kendo_vue_common_1.classNames('k-multiselect', 'k-input', (_a = {}, _a["k-input-" + (sizeMap[size] || size)] = size, _a["k-rounded-" + (roundedMap[rounded] || rounded)] = rounded, _a["k-input-" + fillMode] = fillMode, _a['k-focus'] = focused && !disabled, _a['k-disabled'] = disabled, _a['k-invalid'] = !isValid, _a['k-loading'] = loading, _a['k-required'] = this.required, _a)),
|
|
1175
1175
|
style: !label ? style : __assign(__assign({}, style), {
|
|
1176
1176
|
width: undefined
|
|
1177
1177
|
}),
|
|
@@ -92,7 +92,9 @@ var ListFilterVue2 = {
|
|
|
92
92
|
"class": "k-list-filter"
|
|
93
93
|
}, [h("span", {
|
|
94
94
|
"class": this.spanClass
|
|
95
|
-
}, [h("
|
|
95
|
+
}, [h("span", {
|
|
96
|
+
"class": "k-input-icon k-icon k-i-search"
|
|
97
|
+
}), h("input", {
|
|
96
98
|
ref: this.v3 ? function (el) {
|
|
97
99
|
_this.inputRef = el;
|
|
98
100
|
} : 'input',
|
|
@@ -111,8 +113,6 @@ var ListFilterVue2 = {
|
|
|
111
113
|
"keydown": this.onKeyDown
|
|
112
114
|
},
|
|
113
115
|
onKeydown: this.onKeyDown
|
|
114
|
-
}), h("span", {
|
|
115
|
-
"class": "k-input-icon k-icon k-i-search"
|
|
116
116
|
})])]);
|
|
117
117
|
}
|
|
118
118
|
};
|
|
@@ -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: 1649669416,
|
|
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.1.
|
|
4
|
+
"version": "3.1.5-dev.202204110939",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"vue": "^2.6.12 || ^3.0.2"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@progress/kendo-vue-buttons": "3.1.
|
|
47
|
-
"@progress/kendo-vue-common": "3.1.
|
|
48
|
-
"@progress/kendo-vue-popup": "3.1.
|
|
46
|
+
"@progress/kendo-vue-buttons": "3.1.5-dev.202204110939",
|
|
47
|
+
"@progress/kendo-vue-common": "3.1.5-dev.202204110939",
|
|
48
|
+
"@progress/kendo-vue-popup": "3.1.5-dev.202204110939"
|
|
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.1.
|
|
53
|
+
"@progress/kendo-vue-intl": "3.1.5-dev.202204110939"
|
|
54
54
|
},
|
|
55
55
|
"author": "Progress",
|
|
56
56
|
"license": "SEE LICENSE IN LICENSE.md",
|