@progress/kendo-vue-dropdowns 3.0.2 → 3.0.4-dev.202202011210
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/ComboBox/ComboBox.js +3 -1
- package/dist/es/ComboBox/ComboBoxProps.d.ts +2 -2
- package/dist/es/DropDownList/DropDownList.js +3 -1
- package/dist/es/DropDownList/DropDownListProps.d.ts +2 -2
- package/dist/es/MultiSelect/MultiSelectProps.d.ts +7 -7
- package/dist/es/common/DropDownBase.d.ts +2 -2
- package/dist/es/common/SearchBar.d.ts +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/ComboBox/ComboBox.js +3 -1
- package/dist/npm/ComboBox/ComboBoxProps.d.ts +2 -2
- package/dist/npm/DropDownList/DropDownList.js +3 -1
- package/dist/npm/DropDownList/DropDownListProps.d.ts +2 -2
- package/dist/npm/MultiSelect/MultiSelectProps.d.ts +7 -7
- package/dist/npm/common/DropDownBase.d.ts +2 -2
- package/dist/npm/common/SearchBar.d.ts +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +5 -5
|
@@ -985,13 +985,15 @@ var ComboBoxVue2 = {
|
|
|
985
985
|
key: "loading"
|
|
986
986
|
}), // @ts-ignore
|
|
987
987
|
h(KButton, {
|
|
988
|
-
|
|
988
|
+
type: "button",
|
|
989
989
|
attrs: this.v3 ? undefined : {
|
|
990
|
+
type: "button",
|
|
990
991
|
tabIndex: -1,
|
|
991
992
|
size: size,
|
|
992
993
|
fillMode: fillMode,
|
|
993
994
|
iconClass: classNames('k-icon k-i-arrow-s', iconClassName)
|
|
994
995
|
},
|
|
996
|
+
tabIndex: -1,
|
|
995
997
|
size: size,
|
|
996
998
|
fillMode: fillMode,
|
|
997
999
|
"class": 'k-input-button',
|
|
@@ -174,11 +174,11 @@ export interface ComboBoxProps extends FormComponentProps {
|
|
|
174
174
|
/**
|
|
175
175
|
* Fires each time the user types in the filter input ([see examples]({% slug filtering_combobox %}#toc-basic-configuration)). You can filter the source based on the passed filtration value.
|
|
176
176
|
*/
|
|
177
|
-
|
|
177
|
+
onFilterchange?: (event: ComboBoxFilterChangeEvent) => void;
|
|
178
178
|
/**
|
|
179
179
|
* Fires when both the virtual scrolling of the ComboBox is enabled and the component requires data for another page ([more information and examples]({% slug virtualization_combobox %})).
|
|
180
180
|
*/
|
|
181
|
-
|
|
181
|
+
onPagechange?: (event: ComboBoxPageChangeEvent) => void;
|
|
182
182
|
/**
|
|
183
183
|
* Fires when a ComboBox list item is about to be rendered ([see example]({% slug customrendering_combobox %}#toc-items)). Used to override the default appearance of the list items.
|
|
184
184
|
*/
|
|
@@ -1047,13 +1047,15 @@ var DropDownListVue2 = {
|
|
|
1047
1047
|
key: "loading"
|
|
1048
1048
|
}), // @ts-ignore
|
|
1049
1049
|
h(KButton, {
|
|
1050
|
-
|
|
1050
|
+
type: "button",
|
|
1051
1051
|
attrs: this.v3 ? undefined : {
|
|
1052
|
+
type: "button",
|
|
1052
1053
|
tabIndex: -1,
|
|
1053
1054
|
size: size,
|
|
1054
1055
|
fillMode: fillMode,
|
|
1055
1056
|
iconClass: classNames('k-icon k-i-arrow-s', iconClassName)
|
|
1056
1057
|
},
|
|
1058
|
+
tabIndex: -1,
|
|
1057
1059
|
size: size,
|
|
1058
1060
|
fillMode: fillMode,
|
|
1059
1061
|
"class": 'k-input-button',
|
|
@@ -191,11 +191,11 @@ export interface DropDownListProps extends FormComponentProps {
|
|
|
191
191
|
/**
|
|
192
192
|
* Fires each time the user types in the filter input. You can filter the source based on the passed filtration value.
|
|
193
193
|
*/
|
|
194
|
-
|
|
194
|
+
onFilterchange?: (event: DropDownListFilterChangeEvent) => void;
|
|
195
195
|
/**
|
|
196
196
|
* Fires when both the virtual scrolling of the DropDownList is enabled and the component requires data for another page ([see example]({% slug virtualization_dropdownlist_native %})).
|
|
197
197
|
*/
|
|
198
|
-
|
|
198
|
+
onPagechange?: (event: DropDownListPageChangeEvent) => void;
|
|
199
199
|
/**
|
|
200
200
|
* Fires when a DropDownList item is about to be rendered ([see example]({% slug customrendering_dropdownlist_native %}#toc-items)). Used to override the default appearance of the list items.
|
|
201
201
|
*/
|
|
@@ -154,31 +154,31 @@ export interface MultiSelectProps extends FormComponentProps {
|
|
|
154
154
|
/**
|
|
155
155
|
* Fires each time the popup of the MultiSelect is about to open.
|
|
156
156
|
*/
|
|
157
|
-
|
|
157
|
+
onOpen?: (event: MultiSelectOpenEvent) => void;
|
|
158
158
|
/**
|
|
159
159
|
* Fires each time the popup of the MultiSelect is about to close.
|
|
160
160
|
*/
|
|
161
|
-
|
|
161
|
+
onClose?: (event: MultiSelectCloseEvent) => void;
|
|
162
162
|
/**
|
|
163
163
|
* Fires each time the user focuses the MultiSelect.
|
|
164
164
|
*/
|
|
165
|
-
|
|
165
|
+
onFocus?: (event: MultiSelectFocusEvent) => void;
|
|
166
166
|
/**
|
|
167
167
|
* Fires each time the MultiSelect gets blurred.
|
|
168
168
|
*/
|
|
169
|
-
|
|
169
|
+
onBlur?: (event: MultiSelectBlurEvent) => void;
|
|
170
170
|
/**
|
|
171
171
|
* Fires each time the value of the MultiSelect is about to change ([see examples]({% slug binding_multiselect %})).
|
|
172
172
|
*/
|
|
173
|
-
|
|
173
|
+
onChange?: (event: MultiSelectChangeEvent) => void;
|
|
174
174
|
/**
|
|
175
175
|
* Fires each time the user types in the filter input ([see example]({% slug filtering_multiselect %}#toc-basic-configuration)). You can filter the source based on the passed filtration value.
|
|
176
176
|
*/
|
|
177
|
-
|
|
177
|
+
onFilterchange?: (event: MultiSelectFilterChangeEvent) => void;
|
|
178
178
|
/**
|
|
179
179
|
* Fires when both the virtual scrolling of the MultiSelect is enabled and when the component requires data for another page ([see example]({% slug virtualization_multiselect %})).
|
|
180
180
|
*/
|
|
181
|
-
|
|
181
|
+
onPagechange?: (event: MultiSelectPageChangeEvent) => void;
|
|
182
182
|
/**
|
|
183
183
|
* Fires when a MultiSelect item is about to be rendered ([see example]({% slug customrendering_multiselect %}#toc-items)). Used to override the default appearance of the list items.
|
|
184
184
|
*/
|
|
@@ -25,8 +25,8 @@ export interface DropDownComponentProps {
|
|
|
25
25
|
onFocus?: (event: any) => void;
|
|
26
26
|
onBlur?: (event: any) => void;
|
|
27
27
|
onChange?: (event: any) => void;
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
onFilterchange?: (event: any) => void;
|
|
29
|
+
onPagechange?: (event: any) => void;
|
|
30
30
|
itemRender?: (li: Element, itemProps: ListItemProps) => any;
|
|
31
31
|
listNoDataRender?: (element: any) => any;
|
|
32
32
|
header?: any;
|
|
@@ -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: 1643716730,
|
|
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
|
};
|
|
@@ -1002,13 +1002,15 @@ var ComboBoxVue2 = {
|
|
|
1002
1002
|
key: "loading"
|
|
1003
1003
|
}), // @ts-ignore
|
|
1004
1004
|
h(kendo_vue_buttons_1.Button, {
|
|
1005
|
-
|
|
1005
|
+
type: "button",
|
|
1006
1006
|
attrs: this.v3 ? undefined : {
|
|
1007
|
+
type: "button",
|
|
1007
1008
|
tabIndex: -1,
|
|
1008
1009
|
size: size,
|
|
1009
1010
|
fillMode: fillMode,
|
|
1010
1011
|
iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName)
|
|
1011
1012
|
},
|
|
1013
|
+
tabIndex: -1,
|
|
1012
1014
|
size: size,
|
|
1013
1015
|
fillMode: fillMode,
|
|
1014
1016
|
"class": 'k-input-button',
|
|
@@ -174,11 +174,11 @@ export interface ComboBoxProps extends FormComponentProps {
|
|
|
174
174
|
/**
|
|
175
175
|
* Fires each time the user types in the filter input ([see examples]({% slug filtering_combobox %}#toc-basic-configuration)). You can filter the source based on the passed filtration value.
|
|
176
176
|
*/
|
|
177
|
-
|
|
177
|
+
onFilterchange?: (event: ComboBoxFilterChangeEvent) => void;
|
|
178
178
|
/**
|
|
179
179
|
* Fires when both the virtual scrolling of the ComboBox is enabled and the component requires data for another page ([more information and examples]({% slug virtualization_combobox %})).
|
|
180
180
|
*/
|
|
181
|
-
|
|
181
|
+
onPagechange?: (event: ComboBoxPageChangeEvent) => void;
|
|
182
182
|
/**
|
|
183
183
|
* Fires when a ComboBox list item is about to be rendered ([see example]({% slug customrendering_combobox %}#toc-items)). Used to override the default appearance of the list items.
|
|
184
184
|
*/
|
|
@@ -1064,13 +1064,15 @@ var DropDownListVue2 = {
|
|
|
1064
1064
|
key: "loading"
|
|
1065
1065
|
}), // @ts-ignore
|
|
1066
1066
|
h(kendo_vue_buttons_1.Button, {
|
|
1067
|
-
|
|
1067
|
+
type: "button",
|
|
1068
1068
|
attrs: this.v3 ? undefined : {
|
|
1069
|
+
type: "button",
|
|
1069
1070
|
tabIndex: -1,
|
|
1070
1071
|
size: size,
|
|
1071
1072
|
fillMode: fillMode,
|
|
1072
1073
|
iconClass: kendo_vue_common_1.classNames('k-icon k-i-arrow-s', iconClassName)
|
|
1073
1074
|
},
|
|
1075
|
+
tabIndex: -1,
|
|
1074
1076
|
size: size,
|
|
1075
1077
|
fillMode: fillMode,
|
|
1076
1078
|
"class": 'k-input-button',
|
|
@@ -191,11 +191,11 @@ export interface DropDownListProps extends FormComponentProps {
|
|
|
191
191
|
/**
|
|
192
192
|
* Fires each time the user types in the filter input. You can filter the source based on the passed filtration value.
|
|
193
193
|
*/
|
|
194
|
-
|
|
194
|
+
onFilterchange?: (event: DropDownListFilterChangeEvent) => void;
|
|
195
195
|
/**
|
|
196
196
|
* Fires when both the virtual scrolling of the DropDownList is enabled and the component requires data for another page ([see example]({% slug virtualization_dropdownlist_native %})).
|
|
197
197
|
*/
|
|
198
|
-
|
|
198
|
+
onPagechange?: (event: DropDownListPageChangeEvent) => void;
|
|
199
199
|
/**
|
|
200
200
|
* Fires when a DropDownList item is about to be rendered ([see example]({% slug customrendering_dropdownlist_native %}#toc-items)). Used to override the default appearance of the list items.
|
|
201
201
|
*/
|
|
@@ -154,31 +154,31 @@ export interface MultiSelectProps extends FormComponentProps {
|
|
|
154
154
|
/**
|
|
155
155
|
* Fires each time the popup of the MultiSelect is about to open.
|
|
156
156
|
*/
|
|
157
|
-
|
|
157
|
+
onOpen?: (event: MultiSelectOpenEvent) => void;
|
|
158
158
|
/**
|
|
159
159
|
* Fires each time the popup of the MultiSelect is about to close.
|
|
160
160
|
*/
|
|
161
|
-
|
|
161
|
+
onClose?: (event: MultiSelectCloseEvent) => void;
|
|
162
162
|
/**
|
|
163
163
|
* Fires each time the user focuses the MultiSelect.
|
|
164
164
|
*/
|
|
165
|
-
|
|
165
|
+
onFocus?: (event: MultiSelectFocusEvent) => void;
|
|
166
166
|
/**
|
|
167
167
|
* Fires each time the MultiSelect gets blurred.
|
|
168
168
|
*/
|
|
169
|
-
|
|
169
|
+
onBlur?: (event: MultiSelectBlurEvent) => void;
|
|
170
170
|
/**
|
|
171
171
|
* Fires each time the value of the MultiSelect is about to change ([see examples]({% slug binding_multiselect %})).
|
|
172
172
|
*/
|
|
173
|
-
|
|
173
|
+
onChange?: (event: MultiSelectChangeEvent) => void;
|
|
174
174
|
/**
|
|
175
175
|
* Fires each time the user types in the filter input ([see example]({% slug filtering_multiselect %}#toc-basic-configuration)). You can filter the source based on the passed filtration value.
|
|
176
176
|
*/
|
|
177
|
-
|
|
177
|
+
onFilterchange?: (event: MultiSelectFilterChangeEvent) => void;
|
|
178
178
|
/**
|
|
179
179
|
* Fires when both the virtual scrolling of the MultiSelect is enabled and when the component requires data for another page ([see example]({% slug virtualization_multiselect %})).
|
|
180
180
|
*/
|
|
181
|
-
|
|
181
|
+
onPagechange?: (event: MultiSelectPageChangeEvent) => void;
|
|
182
182
|
/**
|
|
183
183
|
* Fires when a MultiSelect item is about to be rendered ([see example]({% slug customrendering_multiselect %}#toc-items)). Used to override the default appearance of the list items.
|
|
184
184
|
*/
|
|
@@ -25,8 +25,8 @@ export interface DropDownComponentProps {
|
|
|
25
25
|
onFocus?: (event: any) => void;
|
|
26
26
|
onBlur?: (event: any) => void;
|
|
27
27
|
onChange?: (event: any) => void;
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
onFilterchange?: (event: any) => void;
|
|
29
|
+
onPagechange?: (event: any) => void;
|
|
30
30
|
itemRender?: (li: Element, itemProps: ListItemProps) => any;
|
|
31
31
|
listNoDataRender?: (element: any) => any;
|
|
32
32
|
header?: any;
|
|
@@ -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: 1643716730,
|
|
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.
|
|
4
|
+
"version": "3.0.4-dev.202202011210",
|
|
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.0.
|
|
47
|
-
"@progress/kendo-vue-common": "3.0.
|
|
48
|
-
"@progress/kendo-vue-popup": "3.0.
|
|
46
|
+
"@progress/kendo-vue-buttons": "3.0.4-dev.202202011210",
|
|
47
|
+
"@progress/kendo-vue-common": "3.0.4-dev.202202011210",
|
|
48
|
+
"@progress/kendo-vue-popup": "3.0.4-dev.202202011210"
|
|
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.
|
|
53
|
+
"@progress/kendo-vue-intl": "3.0.4-dev.202202011210"
|
|
54
54
|
},
|
|
55
55
|
"author": "Progress",
|
|
56
56
|
"license": "SEE LICENSE IN LICENSE.md",
|