@progress/kendo-vue-dropdowns 3.7.4-dev.202212300853 → 3.7.4-dev.202301091431
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/DropDownList/DropDownList.js +12 -3
- package/dist/es/MultiSelect/MultiSelect.js +4 -1
- package/dist/es/MultiSelect/TagList.js +4 -3
- package/dist/es/common/ClearButton.js +5 -2
- package/dist/es/common/ListFilter.js +4 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/DropDownList/DropDownList.js +12 -3
- package/dist/esm/MultiSelect/MultiSelect.js +4 -1
- package/dist/esm/MultiSelect/TagList.js +4 -3
- package/dist/esm/common/ClearButton.js +5 -2
- package/dist/esm/common/ListFilter.js +4 -1
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/DropDownList/DropDownList.js +12 -3
- package/dist/npm/MultiSelect/MultiSelect.js +4 -1
- package/dist/npm/MultiSelect/TagList.js +4 -3
- package/dist/npm/common/ClearButton.js +5 -2
- package/dist/npm/common/ListFilter.js +4 -1
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +9 -7
|
@@ -325,6 +325,11 @@ var DropDownListVue2 = {
|
|
|
325
325
|
'k-rtl': this.$props.dir === 'rtl'
|
|
326
326
|
};
|
|
327
327
|
}
|
|
328
|
+
},
|
|
329
|
+
dropDownListId: {
|
|
330
|
+
get: function get() {
|
|
331
|
+
return "value-".concat(this.base.guid).concat(this.$props.ariaDescribedBy ? ' ' + this.$props.ariaDescribedBy : '');
|
|
332
|
+
}
|
|
328
333
|
}
|
|
329
334
|
},
|
|
330
335
|
methods: {
|
|
@@ -718,7 +723,11 @@ var DropDownListVue2 = {
|
|
|
718
723
|
return areSame(i, value, dataItemKey);
|
|
719
724
|
});
|
|
720
725
|
var valueDefaultRendering = h("span", {
|
|
721
|
-
"class": "k-input-inner"
|
|
726
|
+
"class": "k-input-inner",
|
|
727
|
+
id: this.dropDownListId,
|
|
728
|
+
attrs: this.v3 ? undefined : {
|
|
729
|
+
id: this.dropDownListId
|
|
730
|
+
}
|
|
722
731
|
}, [h("span", {
|
|
723
732
|
"class": "k-input-value-text"
|
|
724
733
|
}, [text])]);
|
|
@@ -961,7 +970,7 @@ var DropDownListVue2 = {
|
|
|
961
970
|
"aria-activedescendant": opened ? 'option-' + this.base.guid + '-' + (selectedIndex + (virtual ? virtual.skip : 0)) : undefined,
|
|
962
971
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
963
972
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
964
|
-
"aria-
|
|
973
|
+
"aria-describedBy": this.dropDownListId,
|
|
965
974
|
title: this.$props.title
|
|
966
975
|
},
|
|
967
976
|
onMousedown: opened ? preventDefaultNonInputs : noop,
|
|
@@ -988,7 +997,7 @@ var DropDownListVue2 = {
|
|
|
988
997
|
"aria-activedescendant": opened ? 'option-' + this.base.guid + '-' + (selectedIndex + (virtual ? virtual.skip : 0)) : undefined,
|
|
989
998
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
990
999
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
991
|
-
"aria-
|
|
1000
|
+
"aria-describedBy": this.dropDownListId,
|
|
992
1001
|
title: this.$props.title
|
|
993
1002
|
}, [valueElement, loading && h(Icon, {
|
|
994
1003
|
name: 'loading',
|
|
@@ -36,6 +36,7 @@ import DropDownBase from '../common/DropDownBase';
|
|
|
36
36
|
import { ClearButton } from '../common/ClearButton';
|
|
37
37
|
import { ActiveDescendant } from './../common/settings';
|
|
38
38
|
import { itemIndexStartsWith, getItemValue, areSame, matchDataCollections, removeDataItems, isPresent, preventDefaultNonInputs } from '../common/utils';
|
|
39
|
+
import { plusIcon } from '@progress/kendo-svg-icons';
|
|
39
40
|
var VALIDATION_MESSAGE = 'Please enter a valid value!';
|
|
40
41
|
var preventDefault = function preventDefault(event) {
|
|
41
42
|
return event.preventDefault();
|
|
@@ -1027,8 +1028,10 @@ var MultiSelectVue2 = {
|
|
|
1027
1028
|
}, [currentText, h(Icon, {
|
|
1028
1029
|
name: "plus",
|
|
1029
1030
|
attrs: this.v3 ? undefined : {
|
|
1030
|
-
name: "plus"
|
|
1031
|
+
name: "plus",
|
|
1032
|
+
icon: plusIcon
|
|
1031
1033
|
},
|
|
1034
|
+
icon: plusIcon,
|
|
1032
1035
|
style: {
|
|
1033
1036
|
float: 'right'
|
|
1034
1037
|
}
|
|
@@ -64,9 +64,8 @@ var TagListVue2 = {
|
|
|
64
64
|
size = _b.size,
|
|
65
65
|
disabled = _b.disabled;
|
|
66
66
|
return _a = {
|
|
67
|
-
'k-input-values': true,
|
|
68
67
|
'k-chip-list': true
|
|
69
|
-
}, _a["k-chip-list-".concat(kendoThemeMaps.sizeMap[size] || size)] = size, _a['k-
|
|
68
|
+
}, _a["k-chip-list-".concat(kendoThemeMaps.sizeMap[size] || size)] = size, _a['k-disabled'] = disabled, _a;
|
|
70
69
|
}
|
|
71
70
|
},
|
|
72
71
|
// @ts-ignore
|
|
@@ -92,6 +91,8 @@ var TagListVue2 = {
|
|
|
92
91
|
tagsRounded = _a.tagsRounded,
|
|
93
92
|
removeTagIcon = _a.removeTagIcon;
|
|
94
93
|
return h("div", {
|
|
94
|
+
"class": 'k-input-values'
|
|
95
|
+
}, [h("div", {
|
|
95
96
|
"class": this.wrapperClass,
|
|
96
97
|
role: "listbox",
|
|
97
98
|
attrs: this.v3 ? undefined : {
|
|
@@ -152,7 +153,7 @@ var TagListVue2 = {
|
|
|
152
153
|
tagdelete: this.onTagDelete
|
|
153
154
|
}
|
|
154
155
|
});
|
|
155
|
-
}, this), defaultSlot]);
|
|
156
|
+
}, this), defaultSlot])]);
|
|
156
157
|
}
|
|
157
158
|
};
|
|
158
159
|
/**
|
|
@@ -4,6 +4,7 @@ var allVue = Vue;
|
|
|
4
4
|
var gh = allVue.h;
|
|
5
5
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
6
6
|
var inject = allVue.inject;
|
|
7
|
+
import { xIcon } from '@progress/kendo-svg-icons';
|
|
7
8
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
8
9
|
import { messages, clear } from '../messages/main';
|
|
9
10
|
import { Icon } from '@progress/kendo-vue-common';
|
|
@@ -58,8 +59,10 @@ var ClearButtonVue2 = {
|
|
|
58
59
|
}, [h(Icon, {
|
|
59
60
|
name: "x",
|
|
60
61
|
attrs: this.v3 ? undefined : {
|
|
61
|
-
name: "x"
|
|
62
|
-
|
|
62
|
+
name: "x",
|
|
63
|
+
icon: xIcon
|
|
64
|
+
},
|
|
65
|
+
icon: xIcon
|
|
63
66
|
})]);
|
|
64
67
|
}
|
|
65
68
|
};
|
|
@@ -5,6 +5,7 @@ var gh = allVue.h;
|
|
|
5
5
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
6
6
|
var ref = allVue.ref;
|
|
7
7
|
import { getRef, Icon, kendoThemeMaps, setRef } from '@progress/kendo-vue-common';
|
|
8
|
+
import { searchIcon } from '@progress/kendo-svg-icons';
|
|
8
9
|
var sizeMap = kendoThemeMaps.sizeMap,
|
|
9
10
|
roundedMap = kendoThemeMaps.roundedMap;
|
|
10
11
|
/**
|
|
@@ -83,8 +84,10 @@ var ListFilterVue2 = {
|
|
|
83
84
|
}, [h(Icon, {
|
|
84
85
|
name: "search",
|
|
85
86
|
attrs: this.v3 ? undefined : {
|
|
86
|
-
name: "search"
|
|
87
|
+
name: "search",
|
|
88
|
+
icon: searchIcon
|
|
87
89
|
},
|
|
90
|
+
icon: searchIcon,
|
|
88
91
|
"class": "k-input-icon"
|
|
89
92
|
}), h("input", {
|
|
90
93
|
ref: setRef(this, 'input'),
|
|
@@ -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: 1673273441,
|
|
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
|
};
|
|
@@ -325,6 +325,11 @@ var DropDownListVue2 = {
|
|
|
325
325
|
'k-rtl': this.$props.dir === 'rtl'
|
|
326
326
|
};
|
|
327
327
|
}
|
|
328
|
+
},
|
|
329
|
+
dropDownListId: {
|
|
330
|
+
get: function get() {
|
|
331
|
+
return "value-".concat(this.base.guid).concat(this.$props.ariaDescribedBy ? ' ' + this.$props.ariaDescribedBy : '');
|
|
332
|
+
}
|
|
328
333
|
}
|
|
329
334
|
},
|
|
330
335
|
methods: {
|
|
@@ -718,7 +723,11 @@ var DropDownListVue2 = {
|
|
|
718
723
|
return areSame(i, value, dataItemKey);
|
|
719
724
|
});
|
|
720
725
|
var valueDefaultRendering = h("span", {
|
|
721
|
-
"class": "k-input-inner"
|
|
726
|
+
"class": "k-input-inner",
|
|
727
|
+
id: this.dropDownListId,
|
|
728
|
+
attrs: this.v3 ? undefined : {
|
|
729
|
+
id: this.dropDownListId
|
|
730
|
+
}
|
|
722
731
|
}, [h("span", {
|
|
723
732
|
"class": "k-input-value-text"
|
|
724
733
|
}, [text])]);
|
|
@@ -961,7 +970,7 @@ var DropDownListVue2 = {
|
|
|
961
970
|
"aria-activedescendant": opened ? 'option-' + this.base.guid + '-' + (selectedIndex + (virtual ? virtual.skip : 0)) : undefined,
|
|
962
971
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
963
972
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
964
|
-
"aria-
|
|
973
|
+
"aria-describedBy": this.dropDownListId,
|
|
965
974
|
title: this.$props.title
|
|
966
975
|
},
|
|
967
976
|
onMousedown: opened ? preventDefaultNonInputs : noop,
|
|
@@ -988,7 +997,7 @@ var DropDownListVue2 = {
|
|
|
988
997
|
"aria-activedescendant": opened ? 'option-' + this.base.guid + '-' + (selectedIndex + (virtual ? virtual.skip : 0)) : undefined,
|
|
989
998
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
990
999
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
991
|
-
"aria-
|
|
1000
|
+
"aria-describedBy": this.dropDownListId,
|
|
992
1001
|
title: this.$props.title
|
|
993
1002
|
}, [valueElement, loading && h(Icon, {
|
|
994
1003
|
name: 'loading',
|
|
@@ -36,6 +36,7 @@ import DropDownBase from '../common/DropDownBase.js';
|
|
|
36
36
|
import { ClearButton } from '../common/ClearButton.js';
|
|
37
37
|
import { ActiveDescendant } from './../common/settings.js';
|
|
38
38
|
import { itemIndexStartsWith, getItemValue, areSame, matchDataCollections, removeDataItems, isPresent, preventDefaultNonInputs } from '../common/utils.js';
|
|
39
|
+
import { plusIcon } from '@progress/kendo-svg-icons';
|
|
39
40
|
var VALIDATION_MESSAGE = 'Please enter a valid value!';
|
|
40
41
|
var preventDefault = function preventDefault(event) {
|
|
41
42
|
return event.preventDefault();
|
|
@@ -1027,8 +1028,10 @@ var MultiSelectVue2 = {
|
|
|
1027
1028
|
}, [currentText, h(Icon, {
|
|
1028
1029
|
name: "plus",
|
|
1029
1030
|
attrs: this.v3 ? undefined : {
|
|
1030
|
-
name: "plus"
|
|
1031
|
+
name: "plus",
|
|
1032
|
+
icon: plusIcon
|
|
1031
1033
|
},
|
|
1034
|
+
icon: plusIcon,
|
|
1032
1035
|
style: {
|
|
1033
1036
|
float: 'right'
|
|
1034
1037
|
}
|
|
@@ -64,9 +64,8 @@ var TagListVue2 = {
|
|
|
64
64
|
size = _b.size,
|
|
65
65
|
disabled = _b.disabled;
|
|
66
66
|
return _a = {
|
|
67
|
-
'k-input-values': true,
|
|
68
67
|
'k-chip-list': true
|
|
69
|
-
}, _a["k-chip-list-".concat(kendoThemeMaps.sizeMap[size] || size)] = size, _a['k-
|
|
68
|
+
}, _a["k-chip-list-".concat(kendoThemeMaps.sizeMap[size] || size)] = size, _a['k-disabled'] = disabled, _a;
|
|
70
69
|
}
|
|
71
70
|
},
|
|
72
71
|
// @ts-ignore
|
|
@@ -92,6 +91,8 @@ var TagListVue2 = {
|
|
|
92
91
|
tagsRounded = _a.tagsRounded,
|
|
93
92
|
removeTagIcon = _a.removeTagIcon;
|
|
94
93
|
return h("div", {
|
|
94
|
+
"class": 'k-input-values'
|
|
95
|
+
}, [h("div", {
|
|
95
96
|
"class": this.wrapperClass,
|
|
96
97
|
role: "listbox",
|
|
97
98
|
attrs: this.v3 ? undefined : {
|
|
@@ -152,7 +153,7 @@ var TagListVue2 = {
|
|
|
152
153
|
tagdelete: this.onTagDelete
|
|
153
154
|
}
|
|
154
155
|
});
|
|
155
|
-
}, this), defaultSlot]);
|
|
156
|
+
}, this), defaultSlot])]);
|
|
156
157
|
}
|
|
157
158
|
};
|
|
158
159
|
/**
|
|
@@ -4,6 +4,7 @@ var allVue = Vue;
|
|
|
4
4
|
var gh = allVue.h;
|
|
5
5
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
6
6
|
var inject = allVue.inject;
|
|
7
|
+
import { xIcon } from '@progress/kendo-svg-icons';
|
|
7
8
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
8
9
|
import { messages, clear } from '../messages/main.js';
|
|
9
10
|
import { Icon } from '@progress/kendo-vue-common';
|
|
@@ -58,8 +59,10 @@ var ClearButtonVue2 = {
|
|
|
58
59
|
}, [h(Icon, {
|
|
59
60
|
name: "x",
|
|
60
61
|
attrs: this.v3 ? undefined : {
|
|
61
|
-
name: "x"
|
|
62
|
-
|
|
62
|
+
name: "x",
|
|
63
|
+
icon: xIcon
|
|
64
|
+
},
|
|
65
|
+
icon: xIcon
|
|
63
66
|
})]);
|
|
64
67
|
}
|
|
65
68
|
};
|
|
@@ -5,6 +5,7 @@ var gh = allVue.h;
|
|
|
5
5
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
6
6
|
var ref = allVue.ref;
|
|
7
7
|
import { getRef, Icon, kendoThemeMaps, setRef } from '@progress/kendo-vue-common';
|
|
8
|
+
import { searchIcon } from '@progress/kendo-svg-icons';
|
|
8
9
|
var sizeMap = kendoThemeMaps.sizeMap,
|
|
9
10
|
roundedMap = kendoThemeMaps.roundedMap;
|
|
10
11
|
/**
|
|
@@ -83,8 +84,10 @@ var ListFilterVue2 = {
|
|
|
83
84
|
}, [h(Icon, {
|
|
84
85
|
name: "search",
|
|
85
86
|
attrs: this.v3 ? undefined : {
|
|
86
|
-
name: "search"
|
|
87
|
+
name: "search",
|
|
88
|
+
icon: searchIcon
|
|
87
89
|
},
|
|
90
|
+
icon: searchIcon,
|
|
88
91
|
"class": "k-input-icon"
|
|
89
92
|
}), h("input", {
|
|
90
93
|
ref: setRef(this, 'input'),
|
|
@@ -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: 1673273441,
|
|
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
|
};
|
|
@@ -331,6 +331,11 @@ var DropDownListVue2 = {
|
|
|
331
331
|
'k-rtl': this.$props.dir === 'rtl'
|
|
332
332
|
};
|
|
333
333
|
}
|
|
334
|
+
},
|
|
335
|
+
dropDownListId: {
|
|
336
|
+
get: function get() {
|
|
337
|
+
return "value-".concat(this.base.guid).concat(this.$props.ariaDescribedBy ? ' ' + this.$props.ariaDescribedBy : '');
|
|
338
|
+
}
|
|
334
339
|
}
|
|
335
340
|
},
|
|
336
341
|
methods: {
|
|
@@ -724,7 +729,11 @@ var DropDownListVue2 = {
|
|
|
724
729
|
return (0, utils_1.areSame)(i, value, dataItemKey);
|
|
725
730
|
});
|
|
726
731
|
var valueDefaultRendering = h("span", {
|
|
727
|
-
"class": "k-input-inner"
|
|
732
|
+
"class": "k-input-inner",
|
|
733
|
+
id: this.dropDownListId,
|
|
734
|
+
attrs: this.v3 ? undefined : {
|
|
735
|
+
id: this.dropDownListId
|
|
736
|
+
}
|
|
728
737
|
}, [h("span", {
|
|
729
738
|
"class": "k-input-value-text"
|
|
730
739
|
}, [text])]);
|
|
@@ -967,7 +976,7 @@ var DropDownListVue2 = {
|
|
|
967
976
|
"aria-activedescendant": opened ? 'option-' + this.base.guid + '-' + (selectedIndex + (virtual ? virtual.skip : 0)) : undefined,
|
|
968
977
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
969
978
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
970
|
-
"aria-
|
|
979
|
+
"aria-describedBy": this.dropDownListId,
|
|
971
980
|
title: this.$props.title
|
|
972
981
|
},
|
|
973
982
|
onMousedown: opened ? utils_1.preventDefaultNonInputs : kendo_vue_common_1.noop,
|
|
@@ -994,7 +1003,7 @@ var DropDownListVue2 = {
|
|
|
994
1003
|
"aria-activedescendant": opened ? 'option-' + this.base.guid + '-' + (selectedIndex + (virtual ? virtual.skip : 0)) : undefined,
|
|
995
1004
|
"aria-label": this.$props.ariaLabel || this.$props.label,
|
|
996
1005
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
997
|
-
"aria-
|
|
1006
|
+
"aria-describedBy": this.dropDownListId,
|
|
998
1007
|
title: this.$props.title
|
|
999
1008
|
}, [valueElement, loading && h(kendo_vue_common_1.Icon, {
|
|
1000
1009
|
name: 'loading',
|
|
@@ -42,6 +42,7 @@ var DropDownBase_1 = require("../common/DropDownBase");
|
|
|
42
42
|
var ClearButton_1 = require("../common/ClearButton");
|
|
43
43
|
var settings_1 = require("./../common/settings");
|
|
44
44
|
var utils_1 = require("../common/utils");
|
|
45
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
45
46
|
var VALIDATION_MESSAGE = 'Please enter a valid value!';
|
|
46
47
|
var preventDefault = function preventDefault(event) {
|
|
47
48
|
return event.preventDefault();
|
|
@@ -1033,8 +1034,10 @@ var MultiSelectVue2 = {
|
|
|
1033
1034
|
}, [currentText, h(kendo_vue_common_1.Icon, {
|
|
1034
1035
|
name: "plus",
|
|
1035
1036
|
attrs: this.v3 ? undefined : {
|
|
1036
|
-
name: "plus"
|
|
1037
|
+
name: "plus",
|
|
1038
|
+
icon: kendo_svg_icons_1.plusIcon
|
|
1037
1039
|
},
|
|
1040
|
+
icon: kendo_svg_icons_1.plusIcon,
|
|
1038
1041
|
style: {
|
|
1039
1042
|
float: 'right'
|
|
1040
1043
|
}
|
|
@@ -70,9 +70,8 @@ var TagListVue2 = {
|
|
|
70
70
|
size = _b.size,
|
|
71
71
|
disabled = _b.disabled;
|
|
72
72
|
return _a = {
|
|
73
|
-
'k-input-values': true,
|
|
74
73
|
'k-chip-list': true
|
|
75
|
-
}, _a["k-chip-list-".concat(kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a['k-
|
|
74
|
+
}, _a["k-chip-list-".concat(kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a['k-disabled'] = disabled, _a;
|
|
76
75
|
}
|
|
77
76
|
},
|
|
78
77
|
// @ts-ignore
|
|
@@ -98,6 +97,8 @@ var TagListVue2 = {
|
|
|
98
97
|
tagsRounded = _a.tagsRounded,
|
|
99
98
|
removeTagIcon = _a.removeTagIcon;
|
|
100
99
|
return h("div", {
|
|
100
|
+
"class": 'k-input-values'
|
|
101
|
+
}, [h("div", {
|
|
101
102
|
"class": this.wrapperClass,
|
|
102
103
|
role: "listbox",
|
|
103
104
|
attrs: this.v3 ? undefined : {
|
|
@@ -158,7 +159,7 @@ var TagListVue2 = {
|
|
|
158
159
|
tagdelete: this.onTagDelete
|
|
159
160
|
}
|
|
160
161
|
});
|
|
161
|
-
}, this), defaultSlot]);
|
|
162
|
+
}, this), defaultSlot])]);
|
|
162
163
|
}
|
|
163
164
|
};
|
|
164
165
|
exports.TagListVue2 = TagListVue2;
|
|
@@ -10,6 +10,7 @@ var allVue = Vue;
|
|
|
10
10
|
var gh = allVue.h;
|
|
11
11
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
12
12
|
var inject = allVue.inject;
|
|
13
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
13
14
|
var kendo_vue_intl_1 = require("@progress/kendo-vue-intl");
|
|
14
15
|
var main_1 = require("../messages/main");
|
|
15
16
|
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
@@ -64,8 +65,10 @@ var ClearButtonVue2 = {
|
|
|
64
65
|
}, [h(kendo_vue_common_1.Icon, {
|
|
65
66
|
name: "x",
|
|
66
67
|
attrs: this.v3 ? undefined : {
|
|
67
|
-
name: "x"
|
|
68
|
-
|
|
68
|
+
name: "x",
|
|
69
|
+
icon: kendo_svg_icons_1.xIcon
|
|
70
|
+
},
|
|
71
|
+
icon: kendo_svg_icons_1.xIcon
|
|
69
72
|
})]);
|
|
70
73
|
}
|
|
71
74
|
};
|
|
@@ -11,6 +11,7 @@ var gh = allVue.h;
|
|
|
11
11
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
12
12
|
var ref = allVue.ref;
|
|
13
13
|
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
14
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
14
15
|
var sizeMap = kendo_vue_common_1.kendoThemeMaps.sizeMap,
|
|
15
16
|
roundedMap = kendo_vue_common_1.kendoThemeMaps.roundedMap;
|
|
16
17
|
/**
|
|
@@ -89,8 +90,10 @@ var ListFilterVue2 = {
|
|
|
89
90
|
}, [h(kendo_vue_common_1.Icon, {
|
|
90
91
|
name: "search",
|
|
91
92
|
attrs: this.v3 ? undefined : {
|
|
92
|
-
name: "search"
|
|
93
|
+
name: "search",
|
|
94
|
+
icon: kendo_svg_icons_1.searchIcon
|
|
93
95
|
},
|
|
96
|
+
icon: kendo_svg_icons_1.searchIcon,
|
|
94
97
|
"class": "k-input-icon"
|
|
95
98
|
}), h("input", {
|
|
96
99
|
ref: (0, kendo_vue_common_1.setRef)(this, 'input'),
|
|
@@ -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: 1673273441,
|
|
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.7.4-dev.
|
|
4
|
+
"version": "3.7.4-dev.202301091431",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -44,19 +44,21 @@
|
|
|
44
44
|
"framework": "Kendo UI for Vue"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@progress/kendo-licensing": "^1.
|
|
47
|
+
"@progress/kendo-licensing": "^1.3.0",
|
|
48
|
+
"@progress/kendo-svg-icons": "^1.0.0",
|
|
48
49
|
"@progress/kendo-vue-intl": "^3.6.0",
|
|
49
50
|
"vue": "^2.6.12 || ^3.0.2"
|
|
50
51
|
},
|
|
51
52
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-vue-buttons": "3.7.4-dev.
|
|
53
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
54
|
-
"@progress/kendo-vue-popup": "3.7.4-dev.
|
|
53
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202301091431",
|
|
54
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202301091431",
|
|
55
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202301091431"
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
|
57
58
|
"@progress/kendo-data-query": "^1.5.4",
|
|
58
|
-
"@progress/kendo-licensing": "^1.
|
|
59
|
-
"@progress/kendo-
|
|
59
|
+
"@progress/kendo-licensing": "^1.3.0",
|
|
60
|
+
"@progress/kendo-svg-icons": "^1.0.0",
|
|
61
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202301091431"
|
|
60
62
|
},
|
|
61
63
|
"author": "Progress",
|
|
62
64
|
"license": "SEE LICENSE IN LICENSE.md",
|