@progress/kendo-vue-dropdowns 5.2.0-dev.202406271321 → 5.2.0-dev.202408061007
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/DropDownTree/DropDownTree.js +195 -189
- package/dist/es/MultiSelectTree/MultiSelectTree.js +224 -221
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/DropDownTree/DropDownTree.js +195 -189
- package/dist/esm/MultiSelectTree/MultiSelectTree.js +224 -221
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/DropDownTree/DropDownTree.js +195 -189
- package/dist/npm/MultiSelectTree/MultiSelectTree.js +224 -221
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +11 -11
|
@@ -320,7 +320,6 @@ var DropDownTreeVue2 = {
|
|
|
320
320
|
},
|
|
321
321
|
// @ts-ignore
|
|
322
322
|
render: function render(createElement) {
|
|
323
|
-
var _this2 = this;
|
|
324
323
|
var _this = this;
|
|
325
324
|
var h = gh || createElement;
|
|
326
325
|
var id = this.$props.id || this.componentGuid;
|
|
@@ -527,14 +526,41 @@ var DropDownTreeVue2 = {
|
|
|
527
526
|
size = _b.size,
|
|
528
527
|
rounded = _b.rounded,
|
|
529
528
|
fillMode = _b.fillMode;
|
|
530
|
-
var component =
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
529
|
+
var component = function component() {
|
|
530
|
+
var _this2 = this;
|
|
531
|
+
return h("span", {
|
|
532
|
+
"class": this.wrapperClass,
|
|
534
533
|
tabIndex: tabIndex,
|
|
534
|
+
attrs: this.v3 ? undefined : {
|
|
535
|
+
tabIndex: tabIndex,
|
|
536
|
+
accessKey: this.$props.accessKey,
|
|
537
|
+
id: id,
|
|
538
|
+
dir: dir,
|
|
539
|
+
role: "combobox",
|
|
540
|
+
"aria-haspopup": "tree",
|
|
541
|
+
"aria-expanded": this.isOpen,
|
|
542
|
+
"aria-disabled": disabled,
|
|
543
|
+
"aria-label": label || this.$props.ariaLabel,
|
|
544
|
+
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
545
|
+
"aria-describedby": this.$props.ariaDescribedBy,
|
|
546
|
+
"aria-required": required
|
|
547
|
+
},
|
|
535
548
|
accessKey: this.$props.accessKey,
|
|
536
549
|
id: id,
|
|
537
550
|
dir: dir,
|
|
551
|
+
ref: setRef(this, 'kendoAnchor', this.anchor),
|
|
552
|
+
onKeydown: this.onWrapperKeyDown,
|
|
553
|
+
on: this.v3 ? undefined : {
|
|
554
|
+
"keydown": this.onWrapperKeyDown,
|
|
555
|
+
"click": this.onWrapperClick,
|
|
556
|
+
"mousedown": this.onWrapperMouseDown,
|
|
557
|
+
"focusin": this.onFocus,
|
|
558
|
+
"focusout": this.onBlur
|
|
559
|
+
},
|
|
560
|
+
onClick: this.onWrapperClick,
|
|
561
|
+
onMousedown: this.onWrapperMouseDown,
|
|
562
|
+
onFocusin: this.onFocus,
|
|
563
|
+
onFocusout: this.onBlur,
|
|
538
564
|
role: "combobox",
|
|
539
565
|
"aria-haspopup": "tree",
|
|
540
566
|
"aria-expanded": this.isOpen,
|
|
@@ -543,146 +569,184 @@ var DropDownTreeVue2 = {
|
|
|
543
569
|
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
544
570
|
"aria-describedby": this.$props.ariaDescribedBy,
|
|
545
571
|
"aria-required": required
|
|
546
|
-
},
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
"keydown": this.onWrapperKeyDown,
|
|
554
|
-
"click": this.onWrapperClick,
|
|
555
|
-
"mousedown": this.onWrapperMouseDown,
|
|
556
|
-
"focusin": this.onFocus,
|
|
557
|
-
"focusout": this.onBlur
|
|
558
|
-
},
|
|
559
|
-
onClick: this.onWrapperClick,
|
|
560
|
-
onMousedown: this.onWrapperMouseDown,
|
|
561
|
-
onFocusin: this.onFocus,
|
|
562
|
-
onFocusout: this.onBlur,
|
|
563
|
-
role: "combobox",
|
|
564
|
-
"aria-haspopup": "tree",
|
|
565
|
-
"aria-expanded": this.isOpen,
|
|
566
|
-
"aria-disabled": disabled,
|
|
567
|
-
"aria-label": label || this.$props.ariaLabel,
|
|
568
|
-
"aria-labelledby": this.$props.ariaLabelledBy,
|
|
569
|
-
"aria-describedby": this.$props.ariaDescribedBy,
|
|
570
|
-
"aria-required": required
|
|
571
|
-
}, [h("span", {
|
|
572
|
-
"class": "k-input-inner"
|
|
573
|
-
}, [valueToRender]), this.$props.loading && h(Icon, {
|
|
574
|
-
"class": "k-input-loading-icon",
|
|
575
|
-
name: "loading",
|
|
576
|
-
attrs: this.v3 ? undefined : {
|
|
577
|
-
name: "loading"
|
|
578
|
-
}
|
|
579
|
-
}), this.hasValue && !disabled && h("span", {
|
|
580
|
-
onClick: this.onClear,
|
|
581
|
-
on: this.v3 ? undefined : {
|
|
582
|
-
"click": this.onClear,
|
|
583
|
-
"mousedown": function mousedown(e) {
|
|
584
|
-
return e.preventDefault();
|
|
572
|
+
}, [h("span", {
|
|
573
|
+
"class": "k-input-inner"
|
|
574
|
+
}, [valueToRender]), this.$props.loading && h(Icon, {
|
|
575
|
+
"class": "k-input-loading-icon",
|
|
576
|
+
name: "loading",
|
|
577
|
+
attrs: this.v3 ? undefined : {
|
|
578
|
+
name: "loading"
|
|
585
579
|
}
|
|
586
|
-
},
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
580
|
+
}), this.hasValue && !disabled && h("span", {
|
|
581
|
+
onClick: this.onClear,
|
|
582
|
+
on: this.v3 ? undefined : {
|
|
583
|
+
"click": this.onClear,
|
|
584
|
+
"mousedown": function mousedown(e) {
|
|
585
|
+
return e.preventDefault();
|
|
586
|
+
}
|
|
587
|
+
},
|
|
588
|
+
"class": "k-clear-value",
|
|
590
589
|
title: localization.toLanguageString(clear, messages[clear]),
|
|
590
|
+
attrs: this.v3 ? undefined : {
|
|
591
|
+
title: localization.toLanguageString(clear, messages[clear]),
|
|
592
|
+
role: "button",
|
|
593
|
+
tabIndex: -1
|
|
594
|
+
},
|
|
591
595
|
role: "button",
|
|
592
|
-
tabIndex: -1
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
return e.preventDefault();
|
|
598
|
-
}
|
|
599
|
-
}, [h(Icon, {
|
|
600
|
-
name: "x",
|
|
601
|
-
attrs: this.v3 ? undefined : {
|
|
596
|
+
tabIndex: -1,
|
|
597
|
+
onMousedown: function mousedown(e) {
|
|
598
|
+
return e.preventDefault();
|
|
599
|
+
}
|
|
600
|
+
}, [h(Icon, {
|
|
602
601
|
name: "x",
|
|
602
|
+
attrs: this.v3 ? undefined : {
|
|
603
|
+
name: "x",
|
|
604
|
+
icon: xIcon
|
|
605
|
+
},
|
|
603
606
|
icon: xIcon
|
|
604
|
-
},
|
|
605
|
-
icon: xIcon
|
|
606
|
-
})]), h(KButton, {
|
|
607
|
-
tabIndex: -1,
|
|
608
|
-
attrs: this.v3 ? undefined : {
|
|
607
|
+
})]), h(KButton, {
|
|
609
608
|
tabIndex: -1,
|
|
609
|
+
attrs: this.v3 ? undefined : {
|
|
610
|
+
tabIndex: -1,
|
|
611
|
+
type: "button",
|
|
612
|
+
"aria-label": "select",
|
|
613
|
+
size: size,
|
|
614
|
+
fillMode: fillMode,
|
|
615
|
+
themeColor: "base",
|
|
616
|
+
rounded: null,
|
|
617
|
+
icon: "caret-alt-down",
|
|
618
|
+
svgIcon: caretAltDownIcon
|
|
619
|
+
},
|
|
610
620
|
type: "button",
|
|
611
621
|
"aria-label": "select",
|
|
622
|
+
"class": "k-input-button",
|
|
612
623
|
size: size,
|
|
613
624
|
fillMode: fillMode,
|
|
614
625
|
themeColor: "base",
|
|
615
626
|
rounded: null,
|
|
616
627
|
icon: "caret-alt-down",
|
|
617
628
|
svgIcon: caretAltDownIcon
|
|
618
|
-
},
|
|
619
|
-
type: "button",
|
|
620
|
-
"aria-label": "select",
|
|
621
|
-
"class": "k-input-button",
|
|
622
|
-
size: size,
|
|
623
|
-
fillMode: fillMode,
|
|
624
|
-
themeColor: "base",
|
|
625
|
-
rounded: null,
|
|
626
|
-
icon: "caret-alt-down",
|
|
627
|
-
svgIcon: caretAltDownIcon
|
|
628
|
-
}), /* Dummy component to support forms */h("select", {
|
|
629
|
-
name: name,
|
|
630
|
-
attrs: this.v3 ? undefined : {
|
|
629
|
+
}), /* Dummy component to support forms */h("select", {
|
|
631
630
|
name: name,
|
|
631
|
+
attrs: this.v3 ? undefined : {
|
|
632
|
+
name: name,
|
|
633
|
+
tabIndex: -1,
|
|
634
|
+
"aria-hidden": true,
|
|
635
|
+
title: label
|
|
636
|
+
},
|
|
637
|
+
ref: setRef(this, 'select'),
|
|
632
638
|
tabIndex: -1,
|
|
633
639
|
"aria-hidden": true,
|
|
634
|
-
title: label
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
},
|
|
660
|
-
ref: setRef(this, 'popup'),
|
|
661
|
-
"class": classNames(popupSettings.className, {
|
|
662
|
-
'k-rtl': dir === 'rtl'
|
|
663
|
-
}),
|
|
664
|
-
popupClass: classNames(popupSettings.popupClass, 'k-dropdowntree-popup', 'popup-' + this.componentGuid),
|
|
665
|
-
attrs: this.v3 ? undefined : {
|
|
640
|
+
title: label,
|
|
641
|
+
style: {
|
|
642
|
+
opacity: 0,
|
|
643
|
+
width: 1,
|
|
644
|
+
border: 0,
|
|
645
|
+
zIndex: -1,
|
|
646
|
+
position: 'absolute',
|
|
647
|
+
left: '50%'
|
|
648
|
+
}
|
|
649
|
+
}, [h("option", {
|
|
650
|
+
value: this.v3 ? this.$props.valueMap ? this.$props.valueMap.call(undefined, this.computedValue) : this.computedValue : null,
|
|
651
|
+
domProps: this.v3 ? undefined : {
|
|
652
|
+
"value": this.$props.valueMap ? this.$props.valueMap.call(undefined, this.computedValue) : this.computedValue
|
|
653
|
+
}
|
|
654
|
+
})]), !renderAdaptive &&
|
|
655
|
+
// @ts-ignore function children
|
|
656
|
+
h(Popup, {
|
|
657
|
+
style: {
|
|
658
|
+
width: this.popupWidth,
|
|
659
|
+
direction: dir
|
|
660
|
+
},
|
|
661
|
+
ref: setRef(this, 'popup'),
|
|
662
|
+
"class": classNames(popupSettings.className, {
|
|
663
|
+
'k-rtl': dir === 'rtl'
|
|
664
|
+
}),
|
|
666
665
|
popupClass: classNames(popupSettings.popupClass, 'k-dropdowntree-popup', 'popup-' + this.componentGuid),
|
|
666
|
+
attrs: this.v3 ? undefined : {
|
|
667
|
+
popupClass: classNames(popupSettings.popupClass, 'k-dropdowntree-popup', 'popup-' + this.componentGuid),
|
|
668
|
+
animate: popupSettings.animate,
|
|
669
|
+
anchor: this.anchor,
|
|
670
|
+
show: this.isOpen,
|
|
671
|
+
appendTo: popupSettings.appendTo
|
|
672
|
+
},
|
|
667
673
|
animate: popupSettings.animate,
|
|
668
674
|
anchor: this.anchor,
|
|
669
675
|
show: this.isOpen,
|
|
676
|
+
onOpen: this.onPopupOpened,
|
|
677
|
+
on: this.v3 ? undefined : {
|
|
678
|
+
"open": this.onPopupOpened,
|
|
679
|
+
"close": this.onPopupClosed
|
|
680
|
+
},
|
|
681
|
+
onClose: this.onPopupClosed,
|
|
670
682
|
appendTo: popupSettings.appendTo
|
|
671
|
-
},
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
683
|
+
}, this.v3 ? function () {
|
|
684
|
+
return [_this2.$props.filterable &&
|
|
685
|
+
// @ts-ignore
|
|
686
|
+
h(ListFilter, {
|
|
687
|
+
value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
|
|
688
|
+
attrs: _this2.v3 ? undefined : {
|
|
689
|
+
value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
|
|
690
|
+
size: size,
|
|
691
|
+
rounded: rounded,
|
|
692
|
+
fillMode: fillMode
|
|
693
|
+
},
|
|
694
|
+
ref: setRef(_this2, 'input'),
|
|
695
|
+
onChange: _this2.onFilterChange,
|
|
696
|
+
on: _this2.v3 ? undefined : {
|
|
697
|
+
"change": _this2.onFilterChange,
|
|
698
|
+
"keydown": _this2.onInputKeyDown,
|
|
699
|
+
"blur": _this2.onBlur
|
|
700
|
+
},
|
|
701
|
+
onKeydown: _this2.onInputKeyDown,
|
|
702
|
+
onBlur: _this2.onBlur,
|
|
703
|
+
size: size,
|
|
704
|
+
rounded: rounded,
|
|
705
|
+
fillMode: fillMode
|
|
706
|
+
}), header && h("div", {
|
|
707
|
+
"class": "k-list-header"
|
|
708
|
+
}, [header]), dataItems.length > 0 ?
|
|
709
|
+
// @ts-ignore
|
|
710
|
+
h(TreeView, {
|
|
711
|
+
ref: setRef(_this2, 'treeView'),
|
|
712
|
+
tabIndex: tabIndex,
|
|
713
|
+
attrs: _this2.v3 ? undefined : {
|
|
714
|
+
tabIndex: tabIndex,
|
|
715
|
+
dataItems: dataItems,
|
|
716
|
+
focusIdField: dataItemKey,
|
|
717
|
+
textField: _this2.$props.textField,
|
|
718
|
+
selectField: selectField,
|
|
719
|
+
expandField: _this2.$props.expandField,
|
|
720
|
+
childrenField: subItemsField,
|
|
721
|
+
expandIcons: true,
|
|
722
|
+
size: size,
|
|
723
|
+
item: itemTemplate
|
|
724
|
+
},
|
|
725
|
+
dataItems: dataItems,
|
|
726
|
+
focusIdField: dataItemKey,
|
|
727
|
+
textField: _this2.$props.textField,
|
|
728
|
+
selectField: selectField,
|
|
729
|
+
expandField: _this2.$props.expandField,
|
|
730
|
+
childrenField: subItemsField,
|
|
731
|
+
expandIcons: true,
|
|
732
|
+
onItemclick: _this2.onChange,
|
|
733
|
+
on: _this2.v3 ? undefined : {
|
|
734
|
+
"itemclick": _this2.onChange,
|
|
735
|
+
"expandchange": _this2.onExpand,
|
|
736
|
+
"focus": _this2.onFocus,
|
|
737
|
+
"blur": _this2.onBlur,
|
|
738
|
+
"keydown": _this2.onWrapperKeyDown
|
|
739
|
+
},
|
|
740
|
+
onExpandchange: _this2.onExpand,
|
|
741
|
+
onFocus: _this2.onFocus,
|
|
742
|
+
onBlur: _this2.onBlur,
|
|
743
|
+
onKeydown: _this2.onWrapperKeyDown,
|
|
744
|
+
size: size,
|
|
745
|
+
item: itemTemplate
|
|
746
|
+
}) : noDataTemplate, footer && h("div", {
|
|
747
|
+
"class": "k-list-footer"
|
|
748
|
+
}, [footer])];
|
|
749
|
+
} : [_this2.$props.filterable && h(ListFilter, {
|
|
686
750
|
value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
|
|
687
751
|
attrs: _this2.v3 ? undefined : {
|
|
688
752
|
value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
|
|
@@ -694,17 +758,17 @@ var DropDownTreeVue2 = {
|
|
|
694
758
|
onChange: _this2.onFilterChange,
|
|
695
759
|
on: _this2.v3 ? undefined : {
|
|
696
760
|
"change": _this2.onFilterChange,
|
|
697
|
-
"keydown": _this2.onInputKeyDown
|
|
761
|
+
"keydown": _this2.onInputKeyDown,
|
|
762
|
+
"blur": _this2.onBlur
|
|
698
763
|
},
|
|
699
764
|
onKeydown: _this2.onInputKeyDown,
|
|
765
|
+
onBlur: _this2.onBlur,
|
|
700
766
|
size: size,
|
|
701
767
|
rounded: rounded,
|
|
702
768
|
fillMode: fillMode
|
|
703
769
|
}), header && h("div", {
|
|
704
770
|
"class": "k-list-header"
|
|
705
|
-
}, [header]), dataItems.length > 0 ?
|
|
706
|
-
// @ts-ignore
|
|
707
|
-
h(TreeView, {
|
|
771
|
+
}, [header]), dataItems.length > 0 ? h(TreeView, {
|
|
708
772
|
ref: setRef(_this2, 'treeView'),
|
|
709
773
|
tabIndex: tabIndex,
|
|
710
774
|
attrs: _this2.v3 ? undefined : {
|
|
@@ -742,70 +806,12 @@ var DropDownTreeVue2 = {
|
|
|
742
806
|
item: itemTemplate
|
|
743
807
|
}) : noDataTemplate, footer && h("div", {
|
|
744
808
|
"class": "k-list-footer"
|
|
745
|
-
}, [footer])];
|
|
746
|
-
}
|
|
747
|
-
value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
|
|
748
|
-
attrs: _this2.v3 ? undefined : {
|
|
749
|
-
value: _this2.$props.filter === undefined ? _this2.filterState : _this2.$props.filter,
|
|
750
|
-
size: size,
|
|
751
|
-
rounded: rounded,
|
|
752
|
-
fillMode: fillMode
|
|
753
|
-
},
|
|
754
|
-
ref: setRef(_this2, 'input'),
|
|
755
|
-
onChange: _this2.onFilterChange,
|
|
756
|
-
on: _this2.v3 ? undefined : {
|
|
757
|
-
"change": _this2.onFilterChange,
|
|
758
|
-
"keydown": _this2.onInputKeyDown
|
|
759
|
-
},
|
|
760
|
-
onKeydown: _this2.onInputKeyDown,
|
|
761
|
-
size: size,
|
|
762
|
-
rounded: rounded,
|
|
763
|
-
fillMode: fillMode
|
|
764
|
-
}), header && h("div", {
|
|
765
|
-
"class": "k-list-header"
|
|
766
|
-
}, [header]), dataItems.length > 0 ? h(TreeView, {
|
|
767
|
-
ref: setRef(_this2, 'treeView'),
|
|
768
|
-
tabIndex: tabIndex,
|
|
769
|
-
attrs: _this2.v3 ? undefined : {
|
|
770
|
-
tabIndex: tabIndex,
|
|
771
|
-
dataItems: dataItems,
|
|
772
|
-
focusIdField: dataItemKey,
|
|
773
|
-
textField: _this2.$props.textField,
|
|
774
|
-
selectField: selectField,
|
|
775
|
-
expandField: _this2.$props.expandField,
|
|
776
|
-
childrenField: subItemsField,
|
|
777
|
-
expandIcons: true,
|
|
778
|
-
size: size,
|
|
779
|
-
item: itemTemplate
|
|
780
|
-
},
|
|
781
|
-
dataItems: dataItems,
|
|
782
|
-
focusIdField: dataItemKey,
|
|
783
|
-
textField: _this2.$props.textField,
|
|
784
|
-
selectField: selectField,
|
|
785
|
-
expandField: _this2.$props.expandField,
|
|
786
|
-
childrenField: subItemsField,
|
|
787
|
-
expandIcons: true,
|
|
788
|
-
onItemclick: _this2.onChange,
|
|
789
|
-
on: _this2.v3 ? undefined : {
|
|
790
|
-
"itemclick": _this2.onChange,
|
|
791
|
-
"expandchange": _this2.onExpand,
|
|
792
|
-
"focus": _this2.onFocus,
|
|
793
|
-
"blur": _this2.onBlur,
|
|
794
|
-
"keydown": _this2.onWrapperKeyDown
|
|
795
|
-
},
|
|
796
|
-
onExpandchange: _this2.onExpand,
|
|
797
|
-
onFocus: _this2.onFocus,
|
|
798
|
-
onBlur: _this2.onBlur,
|
|
799
|
-
onKeydown: _this2.onWrapperKeyDown,
|
|
800
|
-
size: size,
|
|
801
|
-
item: itemTemplate
|
|
802
|
-
}) : noDataTemplate, footer && h("div", {
|
|
803
|
-
"class": "k-list-footer"
|
|
804
|
-
}, [footer])])]);
|
|
809
|
+
}, [footer])])]);
|
|
810
|
+
};
|
|
805
811
|
// The following one combines the default rendering of the MultiSelect and the Adaptive rendering.
|
|
806
812
|
// This is needed because of Vue 2 specifics
|
|
807
|
-
var dropdowntree = [component, renderAdaptive && renderAdaptiveListContainer.call(this)];
|
|
808
|
-
var dropdowntreeToRender = isV3 ? dropdowntree : this.$props.adaptive ? h("span", [dropdowntree]) : component;
|
|
813
|
+
var dropdowntree = [isV3 ? h(component.call(this), __assign({}, this.$attrs)) : component.call(this), renderAdaptive && renderAdaptiveListContainer.call(this)];
|
|
814
|
+
var dropdowntreeToRender = isV3 ? dropdowntree : this.$props.adaptive ? h("span", [dropdowntree]) : component.call(this);
|
|
809
815
|
return label ?
|
|
810
816
|
// @ts-ignore function children
|
|
811
817
|
h(FloatingLabel, {
|