@progress/kendo-vue-dropdowns 3.5.1-dev.202208100944 → 3.5.1
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 +6 -10
- package/dist/es/ComboBox/ComboBox.js +7 -10
- package/dist/es/DropDownList/DropDownList.js +7 -17
- package/dist/es/MultiSelect/MultiSelect.js +7 -10
- package/dist/es/common/ListContainer.js +8 -5
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/AutoComplete/AutoComplete.js +6 -10
- package/dist/esm/ComboBox/ComboBox.js +7 -10
- package/dist/esm/DropDownList/DropDownList.js +7 -17
- package/dist/esm/MultiSelect/MultiSelect.js +7 -10
- package/dist/esm/common/ListContainer.js +8 -5
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/AutoComplete/AutoComplete.js +6 -10
- package/dist/npm/ComboBox/ComboBox.js +7 -10
- package/dist/npm/DropDownList/DropDownList.js +7 -17
- package/dist/npm/MultiSelect/MultiSelect.js +7 -10
- package/dist/npm/common/ListContainer.js +8 -5
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +11 -5
|
@@ -666,25 +666,21 @@ var AutoCompleteVue2 = {
|
|
|
666
666
|
width: popupWidth,
|
|
667
667
|
attrs: this.v3 ? undefined : {
|
|
668
668
|
width: popupWidth,
|
|
669
|
-
popupSettings: {
|
|
670
|
-
animate: popupSettings.animate,
|
|
669
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
671
670
|
anchor: this.anchor,
|
|
672
671
|
show: opened,
|
|
673
672
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a)),
|
|
674
|
-
className: popupSettings.className
|
|
675
|
-
|
|
676
|
-
},
|
|
673
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
674
|
+
}),
|
|
677
675
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
678
676
|
},
|
|
679
677
|
ref: 'container',
|
|
680
|
-
popupSettings: {
|
|
681
|
-
animate: popupSettings.animate,
|
|
678
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
682
679
|
anchor: this.anchor,
|
|
683
680
|
show: opened,
|
|
684
681
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a)),
|
|
685
|
-
className: popupSettings.className
|
|
686
|
-
|
|
687
|
-
},
|
|
682
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
683
|
+
}),
|
|
688
684
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
689
685
|
}, this.v3 ? function () {
|
|
690
686
|
return [header && h("div", {
|
|
@@ -48,6 +48,7 @@ var ComboBoxVue2 = {
|
|
|
48
48
|
'changemodel': null,
|
|
49
49
|
'update:modelValue': null,
|
|
50
50
|
'filterchange': null,
|
|
51
|
+
pagechange: null,
|
|
51
52
|
change: null,
|
|
52
53
|
focus: null,
|
|
53
54
|
blur: null,
|
|
@@ -880,24 +881,20 @@ var ComboBoxVue2 = {
|
|
|
880
881
|
width: popupWidth,
|
|
881
882
|
attrs: this.v3 ? undefined : {
|
|
882
883
|
width: popupWidth,
|
|
883
|
-
popupSettings: {
|
|
884
|
-
animate: popupSettings.animate,
|
|
884
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
885
885
|
anchor: this.anchor,
|
|
886
886
|
show: opened,
|
|
887
887
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
888
|
-
className: popupSettings.className
|
|
889
|
-
|
|
890
|
-
},
|
|
888
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
889
|
+
}),
|
|
891
890
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
892
891
|
},
|
|
893
|
-
popupSettings: {
|
|
894
|
-
animate: popupSettings.animate,
|
|
892
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
895
893
|
anchor: this.anchor,
|
|
896
894
|
show: opened,
|
|
897
895
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
898
|
-
className: popupSettings.className
|
|
899
|
-
|
|
900
|
-
},
|
|
896
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
897
|
+
}),
|
|
901
898
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
902
899
|
}, this.v3 ? function () {
|
|
903
900
|
return [header && h("div", {
|
|
@@ -945,22 +945,20 @@ var DropDownListVue2 = {
|
|
|
945
945
|
dir: dir !== undefined ? dir : base.dirCalculated,
|
|
946
946
|
width: popupWidth // @ts-ignore
|
|
947
947
|
,
|
|
948
|
-
popupSettings: {
|
|
948
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
949
949
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
950
|
-
className: popupSettings.className,
|
|
951
|
-
animate: popupSettings.animate,
|
|
950
|
+
className: classNames('k-list-container', popupSettings.className),
|
|
952
951
|
anchor: this.anchor,
|
|
953
952
|
show: opened
|
|
954
|
-
}
|
|
953
|
+
})
|
|
955
954
|
},
|
|
956
955
|
width: popupWidth,
|
|
957
|
-
popupSettings: {
|
|
956
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
958
957
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
959
|
-
className: popupSettings.className,
|
|
960
|
-
animate: popupSettings.animate,
|
|
958
|
+
className: classNames('k-list-container', popupSettings.className),
|
|
961
959
|
anchor: this.anchor,
|
|
962
960
|
show: opened
|
|
963
|
-
},
|
|
961
|
+
}),
|
|
964
962
|
onOpen: this.onPopupOpened,
|
|
965
963
|
onClose: this.onPopupClosed,
|
|
966
964
|
onBlur: this.handleBlur
|
|
@@ -1055,15 +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-arrow-s', iconClassName)
|
|
1059
|
-
onMousedown: function onMousedown(e) {
|
|
1060
|
-
return e.preventDefault();
|
|
1061
|
-
},
|
|
1062
|
-
on: this.v3 ? undefined : {
|
|
1063
|
-
"mousedown": function onMousedown(e) {
|
|
1064
|
-
return e.preventDefault();
|
|
1065
|
-
}
|
|
1066
|
-
}
|
|
1056
|
+
iconClass: classNames('k-icon k-i-arrow-s', iconClassName)
|
|
1067
1057
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
1068
1058
|
return label ? h("span", {
|
|
1069
1059
|
"class": this.spanClassNames,
|
|
@@ -79,6 +79,7 @@ var MultiSelectVue2 = {
|
|
|
79
79
|
'update:modelValue': null,
|
|
80
80
|
'filterchange': null,
|
|
81
81
|
change: null,
|
|
82
|
+
pagechange: null,
|
|
82
83
|
focus: null,
|
|
83
84
|
blur: null,
|
|
84
85
|
open: null,
|
|
@@ -1140,30 +1141,26 @@ var MultiSelectVue2 = {
|
|
|
1140
1141
|
attrs: this.v3 ? undefined : {
|
|
1141
1142
|
dir: dir !== undefined ? dir : base.dirCalculated,
|
|
1142
1143
|
width: popupWidth,
|
|
1143
|
-
popupSettings: {
|
|
1144
|
-
animate: popupSettings.animate,
|
|
1144
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
1145
1145
|
anchor: this.anchor,
|
|
1146
1146
|
show: opened,
|
|
1147
1147
|
onOpen: this.onPopupOpened,
|
|
1148
1148
|
onClose: this.onPopupClosed,
|
|
1149
1149
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
1150
|
-
className: popupSettings.className
|
|
1151
|
-
|
|
1152
|
-
},
|
|
1150
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
1151
|
+
}),
|
|
1153
1152
|
itemsCount: dataItems.length
|
|
1154
1153
|
},
|
|
1155
1154
|
onBlur: this.handleBlur,
|
|
1156
1155
|
width: popupWidth,
|
|
1157
|
-
popupSettings: {
|
|
1158
|
-
animate: popupSettings.animate,
|
|
1156
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
1159
1157
|
anchor: this.anchor,
|
|
1160
1158
|
show: opened,
|
|
1161
1159
|
onOpen: this.onPopupOpened,
|
|
1162
1160
|
onClose: this.onPopupClosed,
|
|
1163
1161
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
1164
|
-
className: popupSettings.className
|
|
1165
|
-
|
|
1166
|
-
},
|
|
1162
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
1163
|
+
}),
|
|
1167
1164
|
itemsCount: dataItems.length
|
|
1168
1165
|
}, this.v3 ? function () {
|
|
1169
1166
|
return [header && h("div", {
|
|
@@ -76,20 +76,22 @@ var ListContainerVue2 = {
|
|
|
76
76
|
show = popupSettings.show,
|
|
77
77
|
open = popupSettings.open,
|
|
78
78
|
close = popupSettings.close,
|
|
79
|
-
itemsCount = popupSettings.itemsCount
|
|
79
|
+
itemsCount = popupSettings.itemsCount,
|
|
80
|
+
appendTo = popupSettings.appendTo;
|
|
80
81
|
return (// @ts-ignore function children
|
|
81
82
|
h(Popup, {
|
|
82
83
|
style: {
|
|
83
84
|
width: width,
|
|
84
85
|
direction: dir
|
|
85
86
|
},
|
|
86
|
-
|
|
87
|
+
popupClass: className,
|
|
87
88
|
attrs: this.v3 ? undefined : {
|
|
88
|
-
|
|
89
|
+
popupClass: className,
|
|
89
90
|
animate: animate,
|
|
90
91
|
anchor: anchor,
|
|
91
92
|
show: show,
|
|
92
|
-
contentKey: itemsCount
|
|
93
|
+
contentKey: itemsCount,
|
|
94
|
+
appendTo: appendTo
|
|
93
95
|
},
|
|
94
96
|
animate: animate,
|
|
95
97
|
anchor: anchor,
|
|
@@ -100,7 +102,8 @@ var ListContainerVue2 = {
|
|
|
100
102
|
"open": this.onOpen,
|
|
101
103
|
"close": this.onClose
|
|
102
104
|
},
|
|
103
|
-
onClose: this.onClose
|
|
105
|
+
onClose: this.onClose,
|
|
106
|
+
appendTo: appendTo
|
|
104
107
|
}, this.v3 ? function () {
|
|
105
108
|
return [h("div", {
|
|
106
109
|
"class": popupClass,
|
|
@@ -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: 1660633011,
|
|
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
|
};
|
|
@@ -666,25 +666,21 @@ var AutoCompleteVue2 = {
|
|
|
666
666
|
width: popupWidth,
|
|
667
667
|
attrs: this.v3 ? undefined : {
|
|
668
668
|
width: popupWidth,
|
|
669
|
-
popupSettings: {
|
|
670
|
-
animate: popupSettings.animate,
|
|
669
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
671
670
|
anchor: this.anchor,
|
|
672
671
|
show: opened,
|
|
673
672
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a)),
|
|
674
|
-
className: popupSettings.className
|
|
675
|
-
|
|
676
|
-
},
|
|
673
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
674
|
+
}),
|
|
677
675
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
678
676
|
},
|
|
679
677
|
ref: 'container',
|
|
680
|
-
popupSettings: {
|
|
681
|
-
animate: popupSettings.animate,
|
|
678
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
682
679
|
anchor: this.anchor,
|
|
683
680
|
show: opened,
|
|
684
681
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a)),
|
|
685
|
-
className: popupSettings.className
|
|
686
|
-
|
|
687
|
-
},
|
|
682
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
683
|
+
}),
|
|
688
684
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
689
685
|
}, this.v3 ? function () {
|
|
690
686
|
return [header && h("div", {
|
|
@@ -48,6 +48,7 @@ var ComboBoxVue2 = {
|
|
|
48
48
|
'changemodel': null,
|
|
49
49
|
'update:modelValue': null,
|
|
50
50
|
'filterchange': null,
|
|
51
|
+
pagechange: null,
|
|
51
52
|
change: null,
|
|
52
53
|
focus: null,
|
|
53
54
|
blur: null,
|
|
@@ -880,24 +881,20 @@ var ComboBoxVue2 = {
|
|
|
880
881
|
width: popupWidth,
|
|
881
882
|
attrs: this.v3 ? undefined : {
|
|
882
883
|
width: popupWidth,
|
|
883
|
-
popupSettings: {
|
|
884
|
-
animate: popupSettings.animate,
|
|
884
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
885
885
|
anchor: this.anchor,
|
|
886
886
|
show: opened,
|
|
887
887
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
888
|
-
className: popupSettings.className
|
|
889
|
-
|
|
890
|
-
},
|
|
888
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
889
|
+
}),
|
|
891
890
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
892
891
|
},
|
|
893
|
-
popupSettings: {
|
|
894
|
-
animate: popupSettings.animate,
|
|
892
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
895
893
|
anchor: this.anchor,
|
|
896
894
|
show: opened,
|
|
897
895
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
898
|
-
className: popupSettings.className
|
|
899
|
-
|
|
900
|
-
},
|
|
896
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
897
|
+
}),
|
|
901
898
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
902
899
|
}, this.v3 ? function () {
|
|
903
900
|
return [header && h("div", {
|
|
@@ -945,22 +945,20 @@ var DropDownListVue2 = {
|
|
|
945
945
|
dir: dir !== undefined ? dir : base.dirCalculated,
|
|
946
946
|
width: popupWidth // @ts-ignore
|
|
947
947
|
,
|
|
948
|
-
popupSettings: {
|
|
948
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
949
949
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
950
|
-
className: popupSettings.className,
|
|
951
|
-
animate: popupSettings.animate,
|
|
950
|
+
className: classNames('k-list-container', popupSettings.className),
|
|
952
951
|
anchor: this.anchor,
|
|
953
952
|
show: opened
|
|
954
|
-
}
|
|
953
|
+
})
|
|
955
954
|
},
|
|
956
955
|
width: popupWidth,
|
|
957
|
-
popupSettings: {
|
|
956
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
958
957
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
959
|
-
className: popupSettings.className,
|
|
960
|
-
animate: popupSettings.animate,
|
|
958
|
+
className: classNames('k-list-container', popupSettings.className),
|
|
961
959
|
anchor: this.anchor,
|
|
962
960
|
show: opened
|
|
963
|
-
},
|
|
961
|
+
}),
|
|
964
962
|
onOpen: this.onPopupOpened,
|
|
965
963
|
onClose: this.onPopupClosed,
|
|
966
964
|
onBlur: this.handleBlur
|
|
@@ -1055,15 +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-arrow-s', iconClassName)
|
|
1059
|
-
onMousedown: function onMousedown(e) {
|
|
1060
|
-
return e.preventDefault();
|
|
1061
|
-
},
|
|
1062
|
-
on: this.v3 ? undefined : {
|
|
1063
|
-
"mousedown": function onMousedown(e) {
|
|
1064
|
-
return e.preventDefault();
|
|
1065
|
-
}
|
|
1066
|
-
}
|
|
1056
|
+
iconClass: classNames('k-icon k-i-arrow-s', iconClassName)
|
|
1067
1057
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
1068
1058
|
return label ? h("span", {
|
|
1069
1059
|
"class": this.spanClassNames,
|
|
@@ -79,6 +79,7 @@ var MultiSelectVue2 = {
|
|
|
79
79
|
'update:modelValue': null,
|
|
80
80
|
'filterchange': null,
|
|
81
81
|
change: null,
|
|
82
|
+
pagechange: null,
|
|
82
83
|
focus: null,
|
|
83
84
|
blur: null,
|
|
84
85
|
open: null,
|
|
@@ -1140,30 +1141,26 @@ var MultiSelectVue2 = {
|
|
|
1140
1141
|
attrs: this.v3 ? undefined : {
|
|
1141
1142
|
dir: dir !== undefined ? dir : base.dirCalculated,
|
|
1142
1143
|
width: popupWidth,
|
|
1143
|
-
popupSettings: {
|
|
1144
|
-
animate: popupSettings.animate,
|
|
1144
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
1145
1145
|
anchor: this.anchor,
|
|
1146
1146
|
show: opened,
|
|
1147
1147
|
onOpen: this.onPopupOpened,
|
|
1148
1148
|
onClose: this.onPopupClosed,
|
|
1149
1149
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
1150
|
-
className: popupSettings.className
|
|
1151
|
-
|
|
1152
|
-
},
|
|
1150
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
1151
|
+
}),
|
|
1153
1152
|
itemsCount: dataItems.length
|
|
1154
1153
|
},
|
|
1155
1154
|
onBlur: this.handleBlur,
|
|
1156
1155
|
width: popupWidth,
|
|
1157
|
-
popupSettings: {
|
|
1158
|
-
animate: popupSettings.animate,
|
|
1156
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
1159
1157
|
anchor: this.anchor,
|
|
1160
1158
|
show: opened,
|
|
1161
1159
|
onOpen: this.onPopupOpened,
|
|
1162
1160
|
onClose: this.onPopupClosed,
|
|
1163
1161
|
popupClass: classNames(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
1164
|
-
className: popupSettings.className
|
|
1165
|
-
|
|
1166
|
-
},
|
|
1162
|
+
className: classNames('k-list-container', popupSettings.className)
|
|
1163
|
+
}),
|
|
1167
1164
|
itemsCount: dataItems.length
|
|
1168
1165
|
}, this.v3 ? function () {
|
|
1169
1166
|
return [header && h("div", {
|
|
@@ -76,20 +76,22 @@ var ListContainerVue2 = {
|
|
|
76
76
|
show = popupSettings.show,
|
|
77
77
|
open = popupSettings.open,
|
|
78
78
|
close = popupSettings.close,
|
|
79
|
-
itemsCount = popupSettings.itemsCount
|
|
79
|
+
itemsCount = popupSettings.itemsCount,
|
|
80
|
+
appendTo = popupSettings.appendTo;
|
|
80
81
|
return (// @ts-ignore function children
|
|
81
82
|
h(Popup, {
|
|
82
83
|
style: {
|
|
83
84
|
width: width,
|
|
84
85
|
direction: dir
|
|
85
86
|
},
|
|
86
|
-
|
|
87
|
+
popupClass: className,
|
|
87
88
|
attrs: this.v3 ? undefined : {
|
|
88
|
-
|
|
89
|
+
popupClass: className,
|
|
89
90
|
animate: animate,
|
|
90
91
|
anchor: anchor,
|
|
91
92
|
show: show,
|
|
92
|
-
contentKey: itemsCount
|
|
93
|
+
contentKey: itemsCount,
|
|
94
|
+
appendTo: appendTo
|
|
93
95
|
},
|
|
94
96
|
animate: animate,
|
|
95
97
|
anchor: anchor,
|
|
@@ -100,7 +102,8 @@ var ListContainerVue2 = {
|
|
|
100
102
|
"open": this.onOpen,
|
|
101
103
|
"close": this.onClose
|
|
102
104
|
},
|
|
103
|
-
onClose: this.onClose
|
|
105
|
+
onClose: this.onClose,
|
|
106
|
+
appendTo: appendTo
|
|
104
107
|
}, this.v3 ? function () {
|
|
105
108
|
return [h("div", {
|
|
106
109
|
"class": popupClass,
|
|
@@ -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: 1660633011,
|
|
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
|
};
|
|
@@ -681,25 +681,21 @@ var AutoCompleteVue2 = {
|
|
|
681
681
|
width: popupWidth,
|
|
682
682
|
attrs: this.v3 ? undefined : {
|
|
683
683
|
width: popupWidth,
|
|
684
|
-
popupSettings: {
|
|
685
|
-
animate: popupSettings.animate,
|
|
684
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
686
685
|
anchor: this.anchor,
|
|
687
686
|
show: opened,
|
|
688
687
|
popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a)),
|
|
689
|
-
className: popupSettings.className
|
|
690
|
-
|
|
691
|
-
},
|
|
688
|
+
className: (0, kendo_vue_common_1.classNames)('k-list-container', popupSettings.className)
|
|
689
|
+
}),
|
|
692
690
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
693
691
|
},
|
|
694
692
|
ref: 'container',
|
|
695
|
-
popupSettings: {
|
|
696
|
-
animate: popupSettings.animate,
|
|
693
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
697
694
|
anchor: this.anchor,
|
|
698
695
|
show: opened,
|
|
699
696
|
popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a)),
|
|
700
|
-
className: popupSettings.className
|
|
701
|
-
|
|
702
|
-
},
|
|
697
|
+
className: (0, kendo_vue_common_1.classNames)('k-list-container', popupSettings.className)
|
|
698
|
+
}),
|
|
703
699
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
704
700
|
}, this.v3 ? function () {
|
|
705
701
|
return [header && h("div", {
|
|
@@ -67,6 +67,7 @@ var ComboBoxVue2 = {
|
|
|
67
67
|
'changemodel': null,
|
|
68
68
|
'update:modelValue': null,
|
|
69
69
|
'filterchange': null,
|
|
70
|
+
pagechange: null,
|
|
70
71
|
change: null,
|
|
71
72
|
focus: null,
|
|
72
73
|
blur: null,
|
|
@@ -899,24 +900,20 @@ var ComboBoxVue2 = {
|
|
|
899
900
|
width: popupWidth,
|
|
900
901
|
attrs: this.v3 ? undefined : {
|
|
901
902
|
width: popupWidth,
|
|
902
|
-
popupSettings: {
|
|
903
|
-
animate: popupSettings.animate,
|
|
903
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
904
904
|
anchor: this.anchor,
|
|
905
905
|
show: opened,
|
|
906
906
|
popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
907
|
-
className: popupSettings.className
|
|
908
|
-
|
|
909
|
-
},
|
|
907
|
+
className: (0, kendo_vue_common_1.classNames)('k-list-container', popupSettings.className)
|
|
908
|
+
}),
|
|
910
909
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
911
910
|
},
|
|
912
|
-
popupSettings: {
|
|
913
|
-
animate: popupSettings.animate,
|
|
911
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
914
912
|
anchor: this.anchor,
|
|
915
913
|
show: opened,
|
|
916
914
|
popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
917
|
-
className: popupSettings.className
|
|
918
|
-
|
|
919
|
-
},
|
|
915
|
+
className: (0, kendo_vue_common_1.classNames)('k-list-container', popupSettings.className)
|
|
916
|
+
}),
|
|
920
917
|
dir: dir !== undefined ? dir : this.base.dirCalculated
|
|
921
918
|
}, this.v3 ? function () {
|
|
922
919
|
return [header && h("div", {
|
|
@@ -962,22 +962,20 @@ var DropDownListVue2 = {
|
|
|
962
962
|
dir: dir !== undefined ? dir : base.dirCalculated,
|
|
963
963
|
width: popupWidth // @ts-ignore
|
|
964
964
|
,
|
|
965
|
-
popupSettings: {
|
|
965
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
966
966
|
popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
967
|
-
className: popupSettings.className,
|
|
968
|
-
animate: popupSettings.animate,
|
|
967
|
+
className: (0, kendo_vue_common_1.classNames)('k-list-container', popupSettings.className),
|
|
969
968
|
anchor: this.anchor,
|
|
970
969
|
show: opened
|
|
971
|
-
}
|
|
970
|
+
})
|
|
972
971
|
},
|
|
973
972
|
width: popupWidth,
|
|
974
|
-
popupSettings: {
|
|
973
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
975
974
|
popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
976
|
-
className: popupSettings.className,
|
|
977
|
-
animate: popupSettings.animate,
|
|
975
|
+
className: (0, kendo_vue_common_1.classNames)('k-list-container', popupSettings.className),
|
|
978
976
|
anchor: this.anchor,
|
|
979
977
|
show: opened
|
|
980
|
-
},
|
|
978
|
+
}),
|
|
981
979
|
onOpen: this.onPopupOpened,
|
|
982
980
|
onClose: this.onPopupClosed,
|
|
983
981
|
onBlur: this.handleBlur
|
|
@@ -1072,15 +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-arrow-s', iconClassName)
|
|
1076
|
-
onMousedown: function onMousedown(e) {
|
|
1077
|
-
return e.preventDefault();
|
|
1078
|
-
},
|
|
1079
|
-
on: this.v3 ? undefined : {
|
|
1080
|
-
"mousedown": function onMousedown(e) {
|
|
1081
|
-
return e.preventDefault();
|
|
1082
|
-
}
|
|
1083
|
-
}
|
|
1073
|
+
iconClass: (0, kendo_vue_common_1.classNames)('k-icon k-i-arrow-s', iconClassName)
|
|
1084
1074
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
1085
1075
|
return label ? h("span", {
|
|
1086
1076
|
"class": this.spanClassNames,
|
|
@@ -97,6 +97,7 @@ var MultiSelectVue2 = {
|
|
|
97
97
|
'update:modelValue': null,
|
|
98
98
|
'filterchange': null,
|
|
99
99
|
change: null,
|
|
100
|
+
pagechange: null,
|
|
100
101
|
focus: null,
|
|
101
102
|
blur: null,
|
|
102
103
|
open: null,
|
|
@@ -1158,30 +1159,26 @@ var MultiSelectVue2 = {
|
|
|
1158
1159
|
attrs: this.v3 ? undefined : {
|
|
1159
1160
|
dir: dir !== undefined ? dir : base.dirCalculated,
|
|
1160
1161
|
width: popupWidth,
|
|
1161
|
-
popupSettings: {
|
|
1162
|
-
animate: popupSettings.animate,
|
|
1162
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
1163
1163
|
anchor: this.anchor,
|
|
1164
1164
|
show: opened,
|
|
1165
1165
|
onOpen: this.onPopupOpened,
|
|
1166
1166
|
onClose: this.onPopupClosed,
|
|
1167
1167
|
popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
1168
|
-
className: popupSettings.className
|
|
1169
|
-
|
|
1170
|
-
},
|
|
1168
|
+
className: (0, kendo_vue_common_1.classNames)('k-list-container', popupSettings.className)
|
|
1169
|
+
}),
|
|
1171
1170
|
itemsCount: dataItems.length
|
|
1172
1171
|
},
|
|
1173
1172
|
onBlur: this.handleBlur,
|
|
1174
1173
|
width: popupWidth,
|
|
1175
|
-
popupSettings: {
|
|
1176
|
-
animate: popupSettings.animate,
|
|
1174
|
+
popupSettings: __assign(__assign({}, popupSettings), {
|
|
1177
1175
|
anchor: this.anchor,
|
|
1178
1176
|
show: opened,
|
|
1179
1177
|
onOpen: this.onPopupOpened,
|
|
1180
1178
|
onClose: this.onPopupClosed,
|
|
1181
1179
|
popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-list', (_a = {}, _a["k-list-".concat(sizeMap[size] || size)] = size, _a['k-virtual-list'] = this.base.vs.enabled, _a)),
|
|
1182
|
-
className: popupSettings.className
|
|
1183
|
-
|
|
1184
|
-
},
|
|
1180
|
+
className: (0, kendo_vue_common_1.classNames)('k-list-container', popupSettings.className)
|
|
1181
|
+
}),
|
|
1185
1182
|
itemsCount: dataItems.length
|
|
1186
1183
|
}, this.v3 ? function () {
|
|
1187
1184
|
return [header && h("div", {
|
|
@@ -86,20 +86,22 @@ var ListContainerVue2 = {
|
|
|
86
86
|
show = popupSettings.show,
|
|
87
87
|
open = popupSettings.open,
|
|
88
88
|
close = popupSettings.close,
|
|
89
|
-
itemsCount = popupSettings.itemsCount
|
|
89
|
+
itemsCount = popupSettings.itemsCount,
|
|
90
|
+
appendTo = popupSettings.appendTo;
|
|
90
91
|
return (// @ts-ignore function children
|
|
91
92
|
h(kendo_vue_popup_1.Popup, {
|
|
92
93
|
style: {
|
|
93
94
|
width: width,
|
|
94
95
|
direction: dir
|
|
95
96
|
},
|
|
96
|
-
|
|
97
|
+
popupClass: className,
|
|
97
98
|
attrs: this.v3 ? undefined : {
|
|
98
|
-
|
|
99
|
+
popupClass: className,
|
|
99
100
|
animate: animate,
|
|
100
101
|
anchor: anchor,
|
|
101
102
|
show: show,
|
|
102
|
-
contentKey: itemsCount
|
|
103
|
+
contentKey: itemsCount,
|
|
104
|
+
appendTo: appendTo
|
|
103
105
|
},
|
|
104
106
|
animate: animate,
|
|
105
107
|
anchor: anchor,
|
|
@@ -110,7 +112,8 @@ var ListContainerVue2 = {
|
|
|
110
112
|
"open": this.onOpen,
|
|
111
113
|
"close": this.onClose
|
|
112
114
|
},
|
|
113
|
-
onClose: this.onClose
|
|
115
|
+
onClose: this.onClose,
|
|
116
|
+
appendTo: appendTo
|
|
114
117
|
}, this.v3 ? function () {
|
|
115
118
|
return [h("div", {
|
|
116
119
|
"class": popupClass,
|
|
@@ -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: 1660633011,
|
|
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
|
};
|