@progress/kendo-vue-dropdowns 5.2.0-dev.202406271321 → 5.2.0-dev.202407150706

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.
@@ -310,29 +310,27 @@ var MultiSelectTreeVue2 = {
310
310
  },
311
311
  // @ts-ignore
312
312
  render: function render(createElement) {
313
- var _this2 = this;
314
- var _a, _b;
315
313
  var _this = this;
316
314
  var h = gh || createElement;
317
315
  var id = this.$props.id || this.componentGuid;
318
- var _c = this.$props,
319
- dataItems = _c.dataItems,
320
- dataItemKey = _c.dataItemKey,
321
- _d = _c.popupSettings,
322
- popupSettings = _d === void 0 ? {} : _d,
323
- disabled = _c.disabled,
324
- placeholder = _c.placeholder,
325
- label = _c.label,
326
- name = _c.name,
327
- checkField = _c.checkField,
328
- checkIndeterminateField = _c.checkIndeterminateField,
329
- subItemsField = _c.subItemsField,
330
- validationMessage = _c.validationMessage,
331
- valid = _c.valid,
332
- value = _c.value,
333
- required = _c.required,
334
- validityStyles = _c.validityStyles,
335
- adaptiveTitle = _c.adaptiveTitle;
316
+ var _a = this.$props,
317
+ dataItems = _a.dataItems,
318
+ dataItemKey = _a.dataItemKey,
319
+ _b = _a.popupSettings,
320
+ popupSettings = _b === void 0 ? {} : _b,
321
+ disabled = _a.disabled,
322
+ placeholder = _a.placeholder,
323
+ label = _a.label,
324
+ name = _a.name,
325
+ checkField = _a.checkField,
326
+ checkIndeterminateField = _a.checkIndeterminateField,
327
+ subItemsField = _a.subItemsField,
328
+ validationMessage = _a.validationMessage,
329
+ valid = _a.valid,
330
+ value = _a.value,
331
+ required = _a.required,
332
+ validityStyles = _a.validityStyles,
333
+ adaptiveTitle = _a.adaptiveTitle;
336
334
  var tabIndex = (0, kendo_vue_common_1.getTabIndex)(this.$props.tabIndex, disabled);
337
335
  var localization = (0, kendo_vue_intl_1.provideLocalizationService)(this);
338
336
  var validity = getValidity({
@@ -366,10 +364,10 @@ var MultiSelectTreeVue2 = {
366
364
  template: listNoDataRender
367
365
  });
368
366
  var isValid = !validityStyles || validity.valid;
369
- var _e = this.$props,
370
- size = _e.size,
371
- rounded = _e.rounded,
372
- fillMode = _e.fillMode;
367
+ var _c = this.$props,
368
+ size = _c.size,
369
+ rounded = _c.rounded,
370
+ fillMode = _c.fillMode;
373
371
  var adaptiveActionSheetHeaderTemplateDef = function adaptiveActionSheetHeaderTemplateDef() {
374
372
  return [h("div", {
375
373
  "class": "k-actionsheet-titlebar-group k-hbox"
@@ -556,15 +554,42 @@ var MultiSelectTreeVue2 = {
556
554
  navigatableElements: ['input.k-input-inner', '.k-actionsheet-actions > button']
557
555
  });
558
556
  };
559
- var component = h("span", {
560
- ref: (0, kendo_vue_common_1.setRef)(this, 'kendoAnchor', this.anchor),
561
- "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)),
562
- tabIndex: tabIndex,
563
- attrs: this.v3 ? undefined : {
557
+ var component = function component() {
558
+ var _this2 = this;
559
+ var _a, _b;
560
+ var _this = this;
561
+ return h("span", {
562
+ ref: (0, kendo_vue_common_1.setRef)(this, 'kendoAnchor', this.anchor),
563
+ "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)),
564
564
  tabIndex: tabIndex,
565
+ attrs: this.v3 ? undefined : {
566
+ tabIndex: tabIndex,
567
+ accessKey: this.$props.accessKey,
568
+ id: id,
569
+ dir: dir,
570
+ role: "combobox",
571
+ "aria-haspopup": "tree",
572
+ "aria-expanded": this.isOpen,
573
+ "aria-disabled": disabled,
574
+ "aria-label": label,
575
+ "aria-labelledby": this.$props.ariaLabelledBy,
576
+ "aria-describedby": this.$props.ariaLabelledBy ? this.$props.ariaLabelledBy : 'tagslist-' + id,
577
+ "aria-required": this.$props.required
578
+ },
565
579
  accessKey: this.$props.accessKey,
566
580
  id: id,
567
581
  dir: dir,
582
+ onKeydown: this.onWrapperKeyDown,
583
+ on: this.v3 ? undefined : {
584
+ "keydown": this.onWrapperKeyDown,
585
+ "mousedown": this.onWrapperMouseDown,
586
+ "focusin": this.onFocus,
587
+ "focusout": this.onBlur,
588
+ "click": this.onWrapperClick
589
+ },
590
+ onMousedown: this.onWrapperMouseDown,
591
+ onFocusin: this.onFocus,
592
+ onFocusout: this.onBlur,
568
593
  role: "combobox",
569
594
  "aria-haspopup": "tree",
570
595
  "aria-expanded": this.isOpen,
@@ -572,36 +597,28 @@ var MultiSelectTreeVue2 = {
572
597
  "aria-label": label,
573
598
  "aria-labelledby": this.$props.ariaLabelledBy,
574
599
  "aria-describedby": this.$props.ariaLabelledBy ? this.$props.ariaLabelledBy : 'tagslist-' + id,
575
- "aria-required": this.$props.required
576
- },
577
- accessKey: this.$props.accessKey,
578
- id: id,
579
- dir: dir,
580
- onKeydown: this.onWrapperKeyDown,
581
- on: this.v3 ? undefined : {
582
- "keydown": this.onWrapperKeyDown,
583
- "mousedown": this.onWrapperMouseDown,
584
- "focusin": this.onFocus,
585
- "focusout": this.onBlur,
586
- "click": this.onWrapperClick
587
- },
588
- onMousedown: this.onWrapperMouseDown,
589
- onFocusin: this.onFocus,
590
- onFocusout: this.onBlur,
591
- role: "combobox",
592
- "aria-haspopup": "tree",
593
- "aria-expanded": this.isOpen,
594
- "aria-disabled": disabled,
595
- "aria-label": label,
596
- "aria-labelledby": this.$props.ariaLabelledBy,
597
- "aria-describedby": this.$props.ariaLabelledBy ? this.$props.ariaLabelledBy : 'tagslist-' + id,
598
- "aria-required": this.$props.required,
599
- onClick: this.onWrapperClick
600
- }, [this.tagsToRenderRef.length > 0 && h(TagList_1.TagList, {
601
- id: 'tagslist-' + id,
602
- attrs: this.v3 ? undefined : {
600
+ "aria-required": this.$props.required,
601
+ onClick: this.onWrapperClick
602
+ }, [this.tagsToRenderRef.length > 0 && h(TagList_1.TagList, {
603
603
  id: 'tagslist-' + id,
604
+ attrs: this.v3 ? undefined : {
605
+ id: 'tagslist-' + id,
606
+ tagRender: tagTemplate,
607
+ dataItems: this.tagsToRenderRef,
608
+ guid: id,
609
+ focused: this.focusedTagState ? this.tagsToRenderRef.find(function (t) {
610
+ return _this.focusedTagState && (0, utils_1.matchTags)(t, _this.focusedTagState, dataItemKey);
611
+ }) : undefined,
612
+ tagsRounded: rounded,
613
+ size: size,
614
+ fillMode: fillMode
615
+ },
616
+ "class": (0, kendo_vue_common_1.classNames)('k-input-values k-chip-list k-selection-multiple', (_b = {}, _b["k-chip-list-".concat(sizeMap[size] || size)] = size, _b['k-readonly'] = this.hasValue, _b)),
604
617
  tagRender: tagTemplate,
618
+ onTagdelete: this.onTagDelete,
619
+ on: this.v3 ? undefined : {
620
+ "tagdelete": this.onTagDelete
621
+ },
605
622
  dataItems: this.tagsToRenderRef,
606
623
  guid: id,
607
624
  focused: this.focusedTagState ? this.tagsToRenderRef.find(function (t) {
@@ -610,108 +627,164 @@ var MultiSelectTreeVue2 = {
610
627
  tagsRounded: rounded,
611
628
  size: size,
612
629
  fillMode: fillMode
613
- },
614
- "class": (0, kendo_vue_common_1.classNames)('k-input-values k-chip-list k-selection-multiple', (_b = {}, _b["k-chip-list-".concat(sizeMap[size] || size)] = size, _b['k-readonly'] = this.hasValue, _b)),
615
- tagRender: tagTemplate,
616
- onTagdelete: this.onTagDelete,
617
- on: this.v3 ? undefined : {
618
- "tagdelete": this.onTagDelete
619
- },
620
- dataItems: this.tagsToRenderRef,
621
- guid: id,
622
- focused: this.focusedTagState ? this.tagsToRenderRef.find(function (t) {
623
- return _this.focusedTagState && (0, utils_1.matchTags)(t, _this.focusedTagState, dataItemKey);
624
- }) : undefined,
625
- tagsRounded: rounded,
626
- size: size,
627
- fillMode: fillMode
628
- }), h("span", {
629
- "class": "k-input-inner",
630
- role: 'combobox',
631
- attrs: this.v3 ? undefined : {
630
+ }), h("span", {
631
+ "class": "k-input-inner",
632
632
  role: 'combobox',
633
+ attrs: this.v3 ? undefined : {
634
+ role: 'combobox',
635
+ tabIndex: tabIndex,
636
+ "aria-expanded": this.isOpen,
637
+ "aria-describedby": 'tagslist-' + id,
638
+ "aria-label": this.$props.ariaLabelledBy
639
+ },
633
640
  tabIndex: tabIndex,
634
641
  "aria-expanded": this.isOpen,
635
642
  "aria-describedby": 'tagslist-' + id,
636
643
  "aria-label": this.$props.ariaLabelledBy
637
- },
638
- tabIndex: tabIndex,
639
- "aria-expanded": this.isOpen,
640
- "aria-describedby": 'tagslist-' + id,
641
- "aria-label": this.$props.ariaLabelledBy
642
- }, [this.tagsToRenderRef.length === 0 && h("span", {
643
- "class": "k-input-value-text"
644
- }, [placeholder])]), this.$props.loading && h(kendo_vue_common_1.Icon, {
645
- "class": "k-input-loading-icon",
646
- name: "loading",
647
- attrs: this.v3 ? undefined : {
648
- name: "loading"
649
- }
650
- }), this.hasValue && !disabled && h(ClearButton_1.ClearButton, {
651
- onClearclick: this.onClear,
652
- on: this.v3 ? undefined : {
653
- "clearclick": this.onClear
654
- }
655
- }), /* Dummy component to support forms */h("select", {
656
- name: name,
657
- attrs: this.v3 ? undefined : {
644
+ }, [this.tagsToRenderRef.length === 0 && h("span", {
645
+ "class": "k-input-value-text"
646
+ }, [placeholder])]), this.$props.loading && h(kendo_vue_common_1.Icon, {
647
+ "class": "k-input-loading-icon",
648
+ name: "loading",
649
+ attrs: this.v3 ? undefined : {
650
+ name: "loading"
651
+ }
652
+ }), this.hasValue && !disabled && h(ClearButton_1.ClearButton, {
653
+ onClearclick: this.onClear,
654
+ on: this.v3 ? undefined : {
655
+ "clearclick": this.onClear
656
+ }
657
+ }), /* Dummy component to support forms */h("select", {
658
658
  name: name,
659
+ attrs: this.v3 ? undefined : {
660
+ name: name,
661
+ tabIndex: -1,
662
+ "aria-hidden": true,
663
+ required: required,
664
+ title: label
665
+ },
666
+ ref: (0, kendo_vue_common_1.setRef)(this, 'select'),
659
667
  tabIndex: -1,
660
668
  "aria-hidden": true,
661
669
  required: required,
662
- title: label
663
- },
664
- ref: (0, kendo_vue_common_1.setRef)(this, 'select'),
665
- tabIndex: -1,
666
- "aria-hidden": true,
667
- required: required,
668
- title: label,
669
- style: {
670
- opacity: 0,
671
- width: 1,
672
- border: 0,
673
- zIndex: -1,
674
- position: 'absolute',
675
- left: '50%'
676
- }
677
- }, [h("option", {
678
- value: this.v3 ? this.$props.valueMap ? this.$props.valueMap.call(undefined, value) : value : null,
679
- domProps: this.v3 ? undefined : {
680
- "value": this.$props.valueMap ? this.$props.valueMap.call(undefined, value) : value
681
- }
682
- })]), !renderAdaptive &&
683
- // @ts-ignore function children
684
- h(kendo_vue_popup_1.Popup, {
685
- style: {
686
- width: this.popupWidth,
687
- direction: dir
688
- },
689
- popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-multiselecttree-popup', 'popup-' + this.componentGuid),
690
- attrs: this.v3 ? undefined : {
670
+ title: label,
671
+ style: {
672
+ opacity: 0,
673
+ width: 1,
674
+ border: 0,
675
+ zIndex: -1,
676
+ position: 'absolute',
677
+ left: '50%'
678
+ }
679
+ }, [h("option", {
680
+ value: this.v3 ? this.$props.valueMap ? this.$props.valueMap.call(undefined, value) : value : null,
681
+ domProps: this.v3 ? undefined : {
682
+ "value": this.$props.valueMap ? this.$props.valueMap.call(undefined, value) : value
683
+ }
684
+ })]), !renderAdaptive &&
685
+ // @ts-ignore function children
686
+ h(kendo_vue_popup_1.Popup, {
687
+ style: {
688
+ width: this.popupWidth,
689
+ direction: dir
690
+ },
691
691
  popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-multiselecttree-popup', 'popup-' + this.componentGuid),
692
+ attrs: this.v3 ? undefined : {
693
+ popupClass: (0, kendo_vue_common_1.classNames)(popupSettings.popupClass, 'k-multiselecttree-popup', 'popup-' + this.componentGuid),
694
+ animate: popupSettings.animate,
695
+ anchor: this.anchor,
696
+ show: this.isOpen,
697
+ appendTo: popupSettings.appendTo
698
+ },
699
+ "class": (0, kendo_vue_common_1.classNames)(popupSettings.className, {
700
+ 'k-rtl': dir === 'rtl'
701
+ }),
692
702
  animate: popupSettings.animate,
693
703
  anchor: this.anchor,
694
704
  show: this.isOpen,
695
- appendTo: popupSettings.appendTo
696
- },
697
- "class": (0, kendo_vue_common_1.classNames)(popupSettings.className, {
698
- 'k-rtl': dir === 'rtl'
699
- }),
700
- animate: popupSettings.animate,
701
- anchor: this.anchor,
702
- show: this.isOpen,
703
- onOpen: this.onPopupOpened,
704
- on: this.v3 ? undefined : {
705
- "open": this.onPopupOpened,
706
- "close": this.onPopupClosed
707
- },
708
- onClose: this.onPopupClosed,
709
- appendTo: popupSettings.appendTo,
710
- ref: (0, kendo_vue_common_1.setRef)(this, 'popup')
711
- }, this.v3 ? function () {
712
- return [_this2.$props.filterable &&
713
- // @ts-ignore
714
- h(ListFilter_1.ListFilter, {
705
+ onOpen: this.onPopupOpened,
706
+ on: this.v3 ? undefined : {
707
+ "open": this.onPopupOpened,
708
+ "close": this.onPopupClosed
709
+ },
710
+ onClose: this.onPopupClosed,
711
+ appendTo: popupSettings.appendTo,
712
+ ref: (0, kendo_vue_common_1.setRef)(this, 'popup')
713
+ }, this.v3 ? function () {
714
+ return [_this2.$props.filterable &&
715
+ // @ts-ignore
716
+ h(ListFilter_1.ListFilter, {
717
+ value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
718
+ attrs: _this2.v3 ? undefined : {
719
+ value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
720
+ size: size,
721
+ rounded: rounded,
722
+ fillMode: fillMode
723
+ },
724
+ ref: (0, kendo_vue_common_1.setRef)(_this2, 'input'),
725
+ onChange: _this2.onFilterChange,
726
+ on: _this2.v3 ? undefined : {
727
+ "change": _this2.onFilterChange,
728
+ "keydown": _this2.onInputKeyDown,
729
+ "focus": _this2.onFocus,
730
+ "blur": _this2.onBlur
731
+ },
732
+ onKeydown: _this2.onInputKeyDown,
733
+ size: size,
734
+ rounded: rounded,
735
+ fillMode: fillMode,
736
+ onFocus: _this2.onFocus,
737
+ onBlur: _this2.onBlur
738
+ }), header && h("div", {
739
+ "class": "k-list-header"
740
+ }, [header]), dataItems.length > 0 ?
741
+ // @ts-ignore
742
+ h(kendo_vue_treeview_1.TreeView, {
743
+ ref: (0, kendo_vue_common_1.setRef)(_this2, 'treeView'),
744
+ tabIndex: tabIndex,
745
+ attrs: _this2.v3 ? undefined : {
746
+ tabIndex: tabIndex,
747
+ dataItems: dataItems,
748
+ focusIdField: dataItemKey,
749
+ textField: _this2.$props.textField,
750
+ checkField: checkField,
751
+ checkIndeterminateField: checkIndeterminateField,
752
+ expandField: _this2.$props.expandField,
753
+ childrenField: subItemsField,
754
+ expandIcons: true,
755
+ checkboxes: true,
756
+ size: size,
757
+ item: itemTemplate
758
+ },
759
+ dataItems: dataItems,
760
+ focusIdField: dataItemKey,
761
+ textField: _this2.$props.textField,
762
+ checkField: checkField,
763
+ checkIndeterminateField: checkIndeterminateField,
764
+ expandField: _this2.$props.expandField,
765
+ childrenField: subItemsField,
766
+ expandIcons: true,
767
+ onItemclick: _this2.onChange,
768
+ on: _this2.v3 ? undefined : {
769
+ "itemclick": _this2.onChange,
770
+ "checkchange": _this2.onChange,
771
+ "expandchange": _this2.onExpand,
772
+ "focus": _this2.onFocus,
773
+ "blur": _this2.onBlur,
774
+ "keydown": _this2.onWrapperKeyDown
775
+ },
776
+ onCheckchange: _this2.onChange,
777
+ onExpandchange: _this2.onExpand,
778
+ onFocus: _this2.onFocus,
779
+ onBlur: _this2.onBlur,
780
+ onKeydown: _this2.onWrapperKeyDown,
781
+ checkboxes: true,
782
+ size: size,
783
+ item: itemTemplate
784
+ }) : noDataTemplate, footer && h("div", {
785
+ "class": "k-list-footer"
786
+ }, [footer])];
787
+ } : [_this2.$props.filterable && h(ListFilter_1.ListFilter, {
715
788
  value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
716
789
  attrs: _this2.v3 ? undefined : {
717
790
  value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
@@ -735,9 +808,7 @@ var MultiSelectTreeVue2 = {
735
808
  onBlur: _this2.onBlur
736
809
  }), header && h("div", {
737
810
  "class": "k-list-header"
738
- }, [header]), dataItems.length > 0 ?
739
- // @ts-ignore
740
- h(kendo_vue_treeview_1.TreeView, {
811
+ }, [header]), dataItems.length > 0 ? h(kendo_vue_treeview_1.TreeView, {
741
812
  ref: (0, kendo_vue_common_1.setRef)(_this2, 'treeView'),
742
813
  tabIndex: tabIndex,
743
814
  attrs: _this2.v3 ? undefined : {
@@ -781,80 +852,12 @@ var MultiSelectTreeVue2 = {
781
852
  item: itemTemplate
782
853
  }) : noDataTemplate, footer && h("div", {
783
854
  "class": "k-list-footer"
784
- }, [footer])];
785
- } : [_this2.$props.filterable && h(ListFilter_1.ListFilter, {
786
- value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
787
- attrs: _this2.v3 ? undefined : {
788
- value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
789
- size: size,
790
- rounded: rounded,
791
- fillMode: fillMode
792
- },
793
- ref: (0, kendo_vue_common_1.setRef)(_this2, 'input'),
794
- onChange: _this2.onFilterChange,
795
- on: _this2.v3 ? undefined : {
796
- "change": _this2.onFilterChange,
797
- "keydown": _this2.onInputKeyDown,
798
- "focus": _this2.onFocus,
799
- "blur": _this2.onBlur
800
- },
801
- onKeydown: _this2.onInputKeyDown,
802
- size: size,
803
- rounded: rounded,
804
- fillMode: fillMode,
805
- onFocus: _this2.onFocus,
806
- onBlur: _this2.onBlur
807
- }), header && h("div", {
808
- "class": "k-list-header"
809
- }, [header]), dataItems.length > 0 ? h(kendo_vue_treeview_1.TreeView, {
810
- ref: (0, kendo_vue_common_1.setRef)(_this2, 'treeView'),
811
- tabIndex: tabIndex,
812
- attrs: _this2.v3 ? undefined : {
813
- tabIndex: tabIndex,
814
- dataItems: dataItems,
815
- focusIdField: dataItemKey,
816
- textField: _this2.$props.textField,
817
- checkField: checkField,
818
- checkIndeterminateField: checkIndeterminateField,
819
- expandField: _this2.$props.expandField,
820
- childrenField: subItemsField,
821
- expandIcons: true,
822
- checkboxes: true,
823
- size: size,
824
- item: itemTemplate
825
- },
826
- dataItems: dataItems,
827
- focusIdField: dataItemKey,
828
- textField: _this2.$props.textField,
829
- checkField: checkField,
830
- checkIndeterminateField: checkIndeterminateField,
831
- expandField: _this2.$props.expandField,
832
- childrenField: subItemsField,
833
- expandIcons: true,
834
- onItemclick: _this2.onChange,
835
- on: _this2.v3 ? undefined : {
836
- "itemclick": _this2.onChange,
837
- "checkchange": _this2.onChange,
838
- "expandchange": _this2.onExpand,
839
- "focus": _this2.onFocus,
840
- "blur": _this2.onBlur,
841
- "keydown": _this2.onWrapperKeyDown
842
- },
843
- onCheckchange: _this2.onChange,
844
- onExpandchange: _this2.onExpand,
845
- onFocus: _this2.onFocus,
846
- onBlur: _this2.onBlur,
847
- onKeydown: _this2.onWrapperKeyDown,
848
- checkboxes: true,
849
- size: size,
850
- item: itemTemplate
851
- }) : noDataTemplate, footer && h("div", {
852
- "class": "k-list-footer"
853
- }, [footer])])]);
855
+ }, [footer])])]);
856
+ };
854
857
  // The following one combines the default rendering of the MultiSelect and the Adaptive rendering.
855
858
  // This is needed because of Vue 2 specifics
856
- var multiselecttree = [component, renderAdaptive && renderAdaptiveListContainer.call(this)];
857
- var multiselecttreeToRender = isV3 ? multiselecttree : this.$props.adaptive ? h("span", [multiselecttree]) : component;
859
+ var multiselecttree = [isV3 ? h(component.call(this), __assign({}, this.$attrs)) : component.call(this), renderAdaptive && renderAdaptiveListContainer.call(this)];
860
+ var multiselecttreeToRender = isV3 ? multiselecttree : this.$props.adaptive ? h("span", [multiselecttree]) : component.call(this);
858
861
  return label ?
859
862
  // @ts-ignore function children
860
863
  h(kendo_vue_labels_1.FloatingLabel, {
@@ -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: 1719493949,
11
+ publishDate: 1721026677,
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": "5.2.0-dev.202406271321",
4
+ "version": "5.2.0-dev.202407150706",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -54,21 +54,21 @@
54
54
  "vue": "^2.6.12 || ^3.0.2"
55
55
  },
56
56
  "dependencies": {
57
- "@progress/kendo-vue-buttons": "5.2.0-dev.202406271321",
58
- "@progress/kendo-vue-common": "5.2.0-dev.202406271321",
59
- "@progress/kendo-vue-layout": "5.2.0-dev.202406271321",
60
- "@progress/kendo-vue-popup": "5.2.0-dev.202406271321"
57
+ "@progress/kendo-vue-buttons": "5.2.0-dev.202407150706",
58
+ "@progress/kendo-vue-common": "5.2.0-dev.202407150706",
59
+ "@progress/kendo-vue-layout": "5.2.0-dev.202407150706",
60
+ "@progress/kendo-vue-popup": "5.2.0-dev.202407150706"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@progress/kendo-data-query": "^1.7.0",
64
64
  "@progress/kendo-licensing": "^1.3.0",
65
65
  "@progress/kendo-svg-icons": "^3.0.0",
66
- "@progress/kendo-vue-data-tools": "5.2.0-dev.202406271321",
67
- "@progress/kendo-vue-inputs": "5.2.0-dev.202406271321",
68
- "@progress/kendo-vue-intl": "5.2.0-dev.202406271321",
69
- "@progress/kendo-vue-labels": "5.2.0-dev.202406271321",
70
- "@progress/kendo-vue-layout": "5.2.0-dev.202406271321",
71
- "@progress/kendo-vue-treeview": "5.2.0-dev.202406271321"
66
+ "@progress/kendo-vue-data-tools": "5.2.0-dev.202407150706",
67
+ "@progress/kendo-vue-inputs": "5.2.0-dev.202407150706",
68
+ "@progress/kendo-vue-intl": "5.2.0-dev.202407150706",
69
+ "@progress/kendo-vue-labels": "5.2.0-dev.202407150706",
70
+ "@progress/kendo-vue-layout": "5.2.0-dev.202407150706",
71
+ "@progress/kendo-vue-treeview": "5.2.0-dev.202407150706"
72
72
  },
73
73
  "author": "Progress",
74
74
  "license": "SEE LICENSE IN LICENSE.md",