@progress/kendo-vue-dropdowns 3.0.3-dev.202201280639 → 3.0.4
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/ComboBoxProps.d.ts +2 -2
- 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/ComboBoxProps.d.ts +2 -2
- 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
|
@@ -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
|
*/
|
|
@@ -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: 1643723380,
|
|
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
|
};
|
|
@@ -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
|
*/
|
|
@@ -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: 1643723380,
|
|
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",
|
|
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",
|
|
47
|
+
"@progress/kendo-vue-common": "3.0.4",
|
|
48
|
+
"@progress/kendo-vue-popup": "3.0.4"
|
|
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"
|
|
54
54
|
},
|
|
55
55
|
"author": "Progress",
|
|
56
56
|
"license": "SEE LICENSE IN LICENSE.md",
|