@progress/kendo-vue-dropdowns 3.10.2 → 3.11.0-dev.202305230623

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.
Files changed (38) hide show
  1. package/dist/cdn/js/kendo-vue-dropdowns.js +1 -1
  2. package/dist/es/AutoComplete/AutoComplete.js +7 -3
  3. package/dist/es/DropDownTree/DropDownTree.d.ts +49 -1
  4. package/dist/es/DropDownTree/DropDownTree.js +863 -638
  5. package/dist/es/DropDownTree/DropDownTreeProps.d.ts +19 -8
  6. package/dist/es/MultiSelect/MultiSelect.js +6 -2
  7. package/dist/es/MultiSelectTree/MultiSelectTree.js +12 -12
  8. package/dist/es/common/ListFilter.js +47 -25
  9. package/dist/es/main.d.ts +2 -1
  10. package/dist/es/main.js +2 -1
  11. package/dist/es/package-metadata.js +1 -1
  12. package/dist/esm/AutoComplete/AutoComplete.js +7 -3
  13. package/dist/esm/DropDownTree/DropDownTree.d.ts +49 -1
  14. package/dist/esm/DropDownTree/DropDownTree.js +863 -638
  15. package/dist/esm/DropDownTree/DropDownTreeProps.d.ts +19 -8
  16. package/dist/esm/MultiSelect/MultiSelect.js +6 -2
  17. package/dist/esm/MultiSelectTree/MultiSelectTree.js +12 -12
  18. package/dist/esm/common/ListFilter.js +47 -25
  19. package/dist/esm/main.d.ts +2 -1
  20. package/dist/esm/main.js +2 -1
  21. package/dist/esm/package-metadata.js +1 -1
  22. package/dist/npm/AutoComplete/AutoComplete.js +6 -2
  23. package/dist/npm/DropDownTree/DropDownTree.d.ts +49 -1
  24. package/dist/npm/DropDownTree/DropDownTree.js +868 -639
  25. package/dist/npm/DropDownTree/DropDownTreeProps.d.ts +19 -8
  26. package/dist/npm/MultiSelect/MultiSelect.js +6 -2
  27. package/dist/npm/MultiSelectTree/MultiSelectTree.js +12 -12
  28. package/dist/npm/common/ListFilter.js +47 -25
  29. package/dist/npm/main.d.ts +2 -1
  30. package/dist/npm/main.js +3 -1
  31. package/dist/npm/package-metadata.js +1 -1
  32. package/package.json +10 -8
  33. package/dist/es/DropDownTree/useDropdownWidth.d.ts +0 -4
  34. package/dist/es/DropDownTree/useDropdownWidth.js +0 -10
  35. package/dist/esm/DropDownTree/useDropdownWidth.d.ts +0 -4
  36. package/dist/esm/DropDownTree/useDropdownWidth.js +0 -10
  37. package/dist/npm/DropDownTree/useDropdownWidth.d.ts +0 -4
  38. package/dist/npm/DropDownTree/useDropdownWidth.js +0 -17
@@ -81,7 +81,7 @@ export interface DropDownTreeProps extends FormComponentProps {
81
81
  /**
82
82
  * Sets the data of the DropDownTree ([see example]({% slug overview_dropdowntree %})).
83
83
  */
84
- data?: any[];
84
+ dataItems?: any[];
85
85
  /**
86
86
  * Sets the opened state of the DropDownTree.
87
87
  */
@@ -91,6 +91,7 @@ export interface DropDownTreeProps extends FormComponentProps {
91
91
  * It can be an object from the data-tree.
92
92
  */
93
93
  value?: any;
94
+ modelValue?: any;
94
95
  /**
95
96
  * The hint that is displayed when the DropDownTree is empty.
96
97
  */
@@ -224,17 +225,27 @@ export interface DropDownTreeProps extends FormComponentProps {
224
225
  */
225
226
  onExpandChange?: (event: any) => void;
226
227
  /**
227
- * Defines the component that will be used for rendering each of the DropDownTree items
228
+ * Defines the slot that will be used for rendering each of the DropDownTree items
228
229
  * ([see example]({% slug customrendering_dropdowntree %}#toc-items-and-value-element)).
229
230
  */
230
231
  item?: any;
231
232
  /**
232
- * Defines the component that will be used for rendering the selected value
233
+ * Defines the slot that will be used for rendering the selected value
233
234
  * ([see example]({% slug customrendering_dropdowntree %}#toc-items-and-value-element)).
234
235
  */
235
- valueHolder?: any;
236
+ valueRender?: any;
236
237
  /**
237
- * Defines the component that will be rendered in the DropDownTree popup when no data is available
238
+ * Defines the slot that will be used for header
239
+ * ([see example]({% slug customrendering_dropdowntree %}#toc-items-and-value-element)).
240
+ */
241
+ header?: any;
242
+ /**
243
+ * Defines the slot that will be used for footer
244
+ * ([see example]({% slug customrendering_dropdowntree %}#toc-items-and-value-element)).
245
+ */
246
+ footer?: any;
247
+ /**
248
+ * Defines the slot that will be rendered in the DropDownTree popup when no data is available
238
249
  * ([see example]({% slug customrendering_dropdowntree %}#toc-no-data)).
239
250
  */
240
251
  listNoData?: any;
@@ -249,7 +260,7 @@ export interface DropDownTreeProps extends FormComponentProps {
249
260
  *
250
261
  * @default `medium`
251
262
  */
252
- size?: null | 'small' | 'medium' | 'large';
263
+ size?: null | 'small' | 'medium' | 'large' | string;
253
264
  /**
254
265
  * Configures the `roundness` of the DropDownTree.
255
266
  *
@@ -262,7 +273,7 @@ export interface DropDownTreeProps extends FormComponentProps {
262
273
  *
263
274
  * @default `medium`
264
275
  */
265
- rounded?: null | 'small' | 'medium' | 'large' | 'full';
276
+ rounded?: null | 'small' | 'medium' | 'large' | 'full' | string;
266
277
  /**
267
278
  * Configures the `fillMode` of the DropDownTree.
268
279
  *
@@ -274,5 +285,5 @@ export interface DropDownTreeProps extends FormComponentProps {
274
285
  *
275
286
  * @default `solid`
276
287
  */
277
- fillMode?: null | 'solid' | 'flat' | 'outline';
288
+ fillMode?: null | 'solid' | 'flat' | 'outline' | string;
278
289
  }
@@ -1120,8 +1120,12 @@ var MultiSelectVue2 = {
1120
1120
  on: this.v3 ? undefined : {
1121
1121
  "clearclick": this.clearButtonClick
1122
1122
  }
1123
- }), h("span", {
1124
- "class": loading ? 'k-input-loading-icon k-icon k-i-loading' : undefined
1123
+ }), h(kendo_vue_common_1.Icon, {
1124
+ name: loading ? 'loading' : '',
1125
+ attrs: this.v3 ? undefined : {
1126
+ name: loading ? 'loading' : ''
1127
+ },
1128
+ "class": 'k-input-loading-icon'
1125
1129
  }), renderListContainer.call(this)]);
1126
1130
  return label ? h("span", {
1127
1131
  "class": this.spanClassNames,
@@ -76,8 +76,8 @@ var MultiSelectTreeVue2 = {
76
76
  focus: null,
77
77
  blur: null,
78
78
  change: null,
79
- filterChange: null,
80
- expandChange: null,
79
+ filterchange: null,
80
+ expandchange: null,
81
81
  'changemodel': null,
82
82
  'update:modelValue': null
83
83
  },
@@ -304,7 +304,7 @@ var MultiSelectTreeVue2 = {
304
304
  fillMode = _e.fillMode;
305
305
  var multiselecttree = h("span", {
306
306
  ref: (0, kendo_vue_common_1.setRef)(this, 'kendoAnchor', this.anchor),
307
- "class": (0, kendo_vue_common_1.classNames)('k-multiselect k-input', this.$props.className, (_a = {}, _a["k-input-".concat(sizeMap[size] || size)] = size, _a["k-rounded-".concat(roundedMap[rounded] || rounded)] = rounded, _a["k-input-".concat(fillMode)] = fillMode, _a['k-focus'] = this.focusedState && !disabled, _a['k-invalid'] = !isValid, _a['k-disabled'] = disabled, _a['k-loading'] = this.$props.loading, _a['k-required'] = required, _a)),
307
+ "class": (0, kendo_vue_common_1.classNames)('k-multiselecttree k-input', this.$props.className, (_a = {}, _a["k-input-".concat(sizeMap[size] || size)] = size, _a["k-rounded-".concat(roundedMap[rounded] || rounded)] = rounded, _a["k-input-".concat(fillMode)] = fillMode, _a['k-focus'] = this.focusedState && !disabled, _a['k-invalid'] = !isValid, _a['k-disabled'] = disabled, _a['k-loading'] = this.$props.loading, _a['k-required'] = required, _a)),
308
308
  tabIndex: tabIndex,
309
309
  attrs: this.v3 ? undefined : {
310
310
  tabIndex: tabIndex,
@@ -312,12 +312,12 @@ var MultiSelectTreeVue2 = {
312
312
  id: id,
313
313
  dir: dir,
314
314
  role: "combobox",
315
- "aria-haspopup": "true",
315
+ "aria-haspopup": "tree",
316
316
  "aria-expanded": this.isOpen,
317
317
  "aria-disabled": disabled,
318
318
  "aria-label": label,
319
319
  "aria-labelledby": this.$props.ariaLabelledBy,
320
- "aria-describedby": this.$props.ariaDescribedBy,
320
+ "aria-describedby": this.$props.ariaLabelledBy ? this.$props.ariaLabelledBy : 'tagslist-' + id,
321
321
  "aria-required": this.$props.required
322
322
  },
323
323
  accessKey: this.$props.accessKey,
@@ -335,12 +335,12 @@ var MultiSelectTreeVue2 = {
335
335
  onFocusin: this.onFocus,
336
336
  onFocusout: this.onBlur,
337
337
  role: "combobox",
338
- "aria-haspopup": "true",
338
+ "aria-haspopup": "tree",
339
339
  "aria-expanded": this.isOpen,
340
340
  "aria-disabled": disabled,
341
341
  "aria-label": label,
342
342
  "aria-labelledby": this.$props.ariaLabelledBy,
343
- "aria-describedby": this.$props.ariaDescribedBy,
343
+ "aria-describedby": this.$props.ariaLabelledBy ? this.$props.ariaLabelledBy : 'tagslist-' + id,
344
344
  "aria-required": this.$props.required,
345
345
  onClick: this.onWrapperClick
346
346
  }, [h("div", {
@@ -356,7 +356,7 @@ var MultiSelectTreeVue2 = {
356
356
  dataItems: this.tagsToRenderRef,
357
357
  guid: id,
358
358
  focused: this.focusedTagState ? this.tagsToRenderRef.find(function (t) {
359
- return (0, utils_1.matchTags)(t, _this.focusedTagState, dataItemKey);
359
+ return _this.focusedTagState && (0, utils_1.matchTags)(t, _this.focusedTagState, dataItemKey);
360
360
  }) : undefined,
361
361
  tagsRounded: rounded,
362
362
  size: size,
@@ -369,7 +369,7 @@ var MultiSelectTreeVue2 = {
369
369
  dataItems: this.tagsToRenderRef,
370
370
  guid: id,
371
371
  focused: this.focusedTagState ? this.tagsToRenderRef.find(function (t) {
372
- return (0, utils_1.matchTags)(t, _this.focusedTagState, dataItemKey);
372
+ return _this.focusedTagState && (0, utils_1.matchTags)(t, _this.focusedTagState, dataItemKey);
373
373
  }) : undefined,
374
374
  tagsRounded: rounded,
375
375
  size: size,
@@ -435,9 +435,9 @@ var MultiSelectTreeVue2 = {
435
435
  width: this.popupWidth,
436
436
  direction: dir
437
437
  },
438
- popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-list-container', 'k-multiselecttree-popup', 'popup-' + this.componentGuid),
438
+ popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-multiselecttree-popup', 'popup-' + this.componentGuid),
439
439
  attrs: this.v3 ? undefined : {
440
- popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-list-container', 'k-multiselecttree-popup', 'popup-' + this.componentGuid),
440
+ popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-multiselecttree-popup', 'popup-' + this.componentGuid),
441
441
  animate: popupSettings.animate,
442
442
  anchor: this.anchor,
443
443
  show: this.isOpen,
@@ -732,7 +732,7 @@ var MultiSelectTreeVue2 = {
732
732
  onPopupClosed: function onPopupClosed() {
733
733
  if (this.focusedState) {
734
734
  // Move the focus from treeview to dropdown without triggering Focus or Blur events.
735
- this.focusElement(this.$el);
735
+ this.focusElement(this.elementRef);
736
736
  }
737
737
  },
738
738
  onFocus: function onFocus(event) {
@@ -1,5 +1,17 @@
1
1
  "use strict";
2
2
 
3
+ var __assign = undefined && undefined.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) {
8
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
+ }
10
+ }
11
+ return t;
12
+ };
13
+ return __assign.apply(this, arguments);
14
+ };
3
15
  Object.defineProperty(exports, "__esModule", {
4
16
  value: true
5
17
  });
@@ -12,6 +24,7 @@ var isV3 = allVue.version && allVue.version[0] === '3';
12
24
  var ref = allVue.ref;
13
25
  var kendo_vue_common_1 = require("@progress/kendo-vue-common");
14
26
  var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
27
+ var kendo_vue_inputs_1 = require("@progress/kendo-vue-inputs");
15
28
  var sizeMap = kendo_vue_common_1.kendoThemeMaps.sizeMap,
16
29
  roundedMap = kendo_vue_common_1.kendoThemeMaps.roundedMap;
17
30
  /**
@@ -83,48 +96,57 @@ var ListFilterVue2 = {
83
96
  },
84
97
  handleBlur: function handleBlur(e) {
85
98
  this.$emit('blur', e);
99
+ },
100
+ prefixRender: function prefixRender(h) {
101
+ var iconProps = {
102
+ class: 'k-input-icon',
103
+ name: 'search',
104
+ icon: kendo_svg_icons_1.searchIcon
105
+ };
106
+ return h(kendo_vue_common_1.Icon, __assign({
107
+ props: this.v3 ? undefined : iconProps
108
+ }, iconProps));
86
109
  }
87
110
  },
88
111
  mounted: function mounted() {
89
- this.input = (0, kendo_vue_common_1.getRef)(this, 'input');
112
+ this.input = (0, kendo_vue_common_1.getRef)(this, 'input')._input;
90
113
  },
91
114
  // @ts-ignore
92
115
  render: function render(createElement) {
93
116
  var h = gh || createElement;
94
- return h("span", {
117
+ var _a = this.$props,
118
+ size = _a.size,
119
+ rounded = _a.rounded,
120
+ fillMode = _a.fillMode;
121
+ return h("div", {
95
122
  "class": "k-list-filter"
96
- }, [h("span", {
97
- "class": this.spanClass
98
- }, [h(kendo_vue_common_1.Icon, {
99
- name: "search",
100
- attrs: this.v3 ? undefined : {
101
- name: "search",
102
- icon: kendo_svg_icons_1.searchIcon
103
- },
104
- icon: kendo_svg_icons_1.searchIcon,
105
- "class": "k-input-icon"
106
- }), h("input", {
123
+ }, [
124
+ // @ts-ignore
125
+ h(kendo_vue_inputs_1.TextBox, {
107
126
  ref: (0, kendo_vue_common_1.setRef)(this, 'input'),
108
- type: "text",
127
+ value: this.$props.value,
109
128
  attrs: this.v3 ? undefined : {
110
- type: "text"
111
- },
112
- value: this.v3 ? this.$props.value || '' : null,
113
- domProps: this.v3 ? undefined : {
114
- "value": this.$props.value || ''
129
+ value: this.$props.value,
130
+ size: size,
131
+ fillMode: fillMode,
132
+ rounded: rounded,
133
+ inputPrefix: this.prefixRender
115
134
  },
116
- "class": "k-input-inner",
117
135
  onInput: this.onChange,
118
136
  on: this.v3 ? undefined : {
119
137
  "input": this.onChange,
120
138
  "keydown": this.onKeyDown,
121
- "focusin": this.handleFocus,
122
- "focusout": this.handleBlur
139
+ "focus": this.handleFocus,
140
+ "blur": this.handleBlur
123
141
  },
124
142
  onKeydown: this.onKeyDown,
125
- onFocusin: this.handleFocus,
126
- onFocusout: this.handleBlur
127
- })])]);
143
+ onFocus: this.handleFocus,
144
+ onBlur: this.handleBlur,
145
+ size: size,
146
+ fillMode: fillMode,
147
+ rounded: rounded,
148
+ inputPrefix: this.prefixRender
149
+ })]);
128
150
  }
129
151
  };
130
152
  exports.ListFilterVue2 = ListFilterVue2;
@@ -10,8 +10,9 @@ import { AutoCompleteProps, AutoCompleteChangeEvent, AutoCompleteOpenEvent, Auto
10
10
  import { MultiSelect, MultiSelectVue2 } from './MultiSelect/MultiSelect';
11
11
  import { MultiSelectProps, MultiSelectChangeEvent, MultiSelectPageChangeEvent, MultiSelectFilterChangeEvent, MultiSelectOpenEvent, MultiSelectCloseEvent, MultiSelectFocusEvent, MultiSelectBlurEvent } from './MultiSelect/MultiSelectProps';
12
12
  import { TagData as MultiSelectTagData } from './MultiSelect/TagList';
13
+ import { DropDownTree } from './DropDownTree/DropDownTree';
13
14
  export * from './DropDownTree/DropDownTreeProps';
14
15
  import { MultiSelectTree } from './MultiSelectTree/MultiSelectTree';
15
16
  export * from './MultiSelectTree/MultiSelectTreeProps';
16
17
  export * from './MultiSelectTree/utils';
17
- export { AutoComplete, AutoCompleteVue2, AutoCompleteProps, AutoCompleteChangeEvent, AutoCompleteOpenEvent, AutoCompleteCloseEvent, AutoCompleteFocusEvent, AutoCompleteBlurEvent, DropDownList, DropDownListVue2, DropDownListProps, DropDownListFilterChangeEvent, DropDownListChangeEvent, DropDownListOpenEvent, DropDownListCloseEvent, DropDownListFocusEvent, DropDownListBlurEvent, DropDownListPageChangeEvent, Page, VirtualizationSettings, DropDownsPopupSettings, ListItemProps, Suggestion, ComboBox, ComboBoxVue2, ComboBoxProps, ComboBoxFilterChangeEvent, ComboBoxChangeEvent, ComboBoxOpenEvent, ComboBoxCloseEvent, ComboBoxFocusEvent, ComboBoxBlurEvent, ComboBoxPageChangeEvent, MultiSelect, MultiSelectVue2, MultiSelectProps, MultiSelectChangeEvent, MultiSelectPageChangeEvent, MultiSelectFilterChangeEvent, MultiSelectOpenEvent, MultiSelectCloseEvent, MultiSelectFocusEvent, MultiSelectBlurEvent, MultiSelectTagData, FormComponentValidity, MultiSelectTree };
18
+ export { AutoComplete, AutoCompleteVue2, AutoCompleteProps, AutoCompleteChangeEvent, AutoCompleteOpenEvent, AutoCompleteCloseEvent, AutoCompleteFocusEvent, AutoCompleteBlurEvent, DropDownList, DropDownListVue2, DropDownListProps, DropDownListFilterChangeEvent, DropDownListChangeEvent, DropDownListOpenEvent, DropDownListCloseEvent, DropDownListFocusEvent, DropDownListBlurEvent, DropDownListPageChangeEvent, Page, VirtualizationSettings, DropDownsPopupSettings, ListItemProps, Suggestion, ComboBox, ComboBoxVue2, ComboBoxProps, ComboBoxFilterChangeEvent, ComboBoxChangeEvent, ComboBoxOpenEvent, ComboBoxCloseEvent, ComboBoxFocusEvent, ComboBoxBlurEvent, ComboBoxPageChangeEvent, MultiSelect, MultiSelectVue2, MultiSelectProps, MultiSelectChangeEvent, MultiSelectPageChangeEvent, MultiSelectFilterChangeEvent, MultiSelectOpenEvent, MultiSelectCloseEvent, MultiSelectFocusEvent, MultiSelectBlurEvent, MultiSelectTagData, FormComponentValidity, MultiSelectTree, DropDownTree };
package/dist/npm/main.js CHANGED
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.MultiSelectTree = exports.MultiSelectVue2 = exports.MultiSelect = exports.ComboBoxVue2 = exports.ComboBox = exports.DropDownListVue2 = exports.DropDownList = exports.AutoCompleteVue2 = exports.AutoComplete = void 0;
17
+ exports.DropDownTree = exports.MultiSelectTree = exports.MultiSelectVue2 = exports.MultiSelect = exports.ComboBoxVue2 = exports.ComboBox = exports.DropDownListVue2 = exports.DropDownList = exports.AutoCompleteVue2 = exports.AutoComplete = void 0;
18
18
  var DropDownList_1 = require("./DropDownList/DropDownList");
19
19
  Object.defineProperty(exports, "DropDownList", { enumerable: true, get: function () { return DropDownList_1.DropDownList; } });
20
20
  Object.defineProperty(exports, "DropDownListVue2", { enumerable: true, get: function () { return DropDownList_1.DropDownListVue2; } });
@@ -27,6 +27,8 @@ Object.defineProperty(exports, "AutoCompleteVue2", { enumerable: true, get: func
27
27
  var MultiSelect_1 = require("./MultiSelect/MultiSelect");
28
28
  Object.defineProperty(exports, "MultiSelect", { enumerable: true, get: function () { return MultiSelect_1.MultiSelect; } });
29
29
  Object.defineProperty(exports, "MultiSelectVue2", { enumerable: true, get: function () { return MultiSelect_1.MultiSelectVue2; } });
30
+ var DropDownTree_1 = require("./DropDownTree/DropDownTree");
31
+ Object.defineProperty(exports, "DropDownTree", { enumerable: true, get: function () { return DropDownTree_1.DropDownTree; } });
30
32
  __exportStar(require("./DropDownTree/DropDownTreeProps"), exports);
31
33
  var MultiSelectTree_1 = require("./MultiSelectTree/MultiSelectTree");
32
34
  Object.defineProperty(exports, "MultiSelectTree", { enumerable: true, get: function () { return MultiSelectTree_1.MultiSelectTree; } });
@@ -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: 1684762609,
11
+ publishDate: 1684822401,
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.10.2",
4
+ "version": "3.11.0-dev.202305230623",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -46,24 +46,26 @@
46
46
  "peerDependencies": {
47
47
  "@progress/kendo-licensing": "^1.3.0",
48
48
  "@progress/kendo-svg-icons": "^1.0.0",
49
+ "@progress/kendo-vue-inputs": "^3.10.0",
49
50
  "@progress/kendo-vue-intl": "^3.10.0",
50
51
  "@progress/kendo-vue-labels": "^3.10.0",
51
52
  "@progress/kendo-vue-treeview": "^3.10.0",
52
53
  "vue": "^2.6.12 || ^3.0.2"
53
54
  },
54
55
  "dependencies": {
55
- "@progress/kendo-vue-buttons": "3.10.2",
56
- "@progress/kendo-vue-common": "3.10.2",
57
- "@progress/kendo-vue-popup": "3.10.2"
56
+ "@progress/kendo-vue-buttons": "3.11.0-dev.202305230623",
57
+ "@progress/kendo-vue-common": "3.11.0-dev.202305230623",
58
+ "@progress/kendo-vue-popup": "3.11.0-dev.202305230623"
58
59
  },
59
60
  "devDependencies": {
60
61
  "@progress/kendo-data-query": "^1.5.4",
61
62
  "@progress/kendo-licensing": "^1.3.0",
62
63
  "@progress/kendo-svg-icons": "^1.0.0",
63
- "@progress/kendo-vue-data-tools": "3.10.2",
64
- "@progress/kendo-vue-intl": "3.10.2",
65
- "@progress/kendo-vue-labels": "3.10.2",
66
- "@progress/kendo-vue-treeview": "3.10.2"
64
+ "@progress/kendo-vue-data-tools": "3.11.0-dev.202305230623",
65
+ "@progress/kendo-vue-inputs": "3.11.0-dev.202305230623",
66
+ "@progress/kendo-vue-intl": "3.11.0-dev.202305230623",
67
+ "@progress/kendo-vue-labels": "3.11.0-dev.202305230623",
68
+ "@progress/kendo-vue-treeview": "3.11.0-dev.202305230623"
67
69
  },
68
70
  "author": "Progress",
69
71
  "license": "SEE LICENSE IN LICENSE.md",
@@ -1,4 +0,0 @@
1
- /**
2
- * @hidden
3
- */
4
- export declare function useDropdownWidth(_elementRef: any, _initialStyleWidth?: string | number, _args?: any): string | number | undefined;
@@ -1,10 +0,0 @@
1
- /**
2
- * @hidden
3
- */
4
- export function useDropdownWidth(_elementRef, _initialStyleWidth, _args) {
5
- var width = 0;
6
- // if (width !== undefined && elementRef.current) {
7
- // this.width = (elementRef.current.offsetWidth);
8
- // }
9
- return width;
10
- }
@@ -1,4 +0,0 @@
1
- /**
2
- * @hidden
3
- */
4
- export declare function useDropdownWidth(_elementRef: any, _initialStyleWidth?: string | number, _args?: any): string | number | undefined;
@@ -1,10 +0,0 @@
1
- /**
2
- * @hidden
3
- */
4
- export function useDropdownWidth(_elementRef, _initialStyleWidth, _args) {
5
- var width = 0;
6
- // if (width !== undefined && elementRef.current) {
7
- // this.width = (elementRef.current.offsetWidth);
8
- // }
9
- return width;
10
- }
@@ -1,4 +0,0 @@
1
- /**
2
- * @hidden
3
- */
4
- export declare function useDropdownWidth(_elementRef: any, _initialStyleWidth?: string | number, _args?: any): string | number | undefined;
@@ -1,17 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.useDropdownWidth = void 0;
7
- /**
8
- * @hidden
9
- */
10
- function useDropdownWidth(_elementRef, _initialStyleWidth, _args) {
11
- var width = 0;
12
- // if (width !== undefined && elementRef.current) {
13
- // this.width = (elementRef.current.offsetWidth);
14
- // }
15
- return width;
16
- }
17
- exports.useDropdownWidth = useDropdownWidth;