@uzum-tech/ui 1.8.1 → 1.9.0
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/index.js +847 -249
- package/dist/index.prod.js +3 -3
- package/es/_internal/scrollbar/src/Scrollbar.d.ts +119 -17
- package/es/_internal/scrollbar/src/Scrollbar.js +121 -68
- package/es/_internal/scrollbar/src/styles/index.cssr.js +32 -15
- package/es/_internal/scrollbar/styles/common.d.ts +7 -0
- package/es/_internal/scrollbar/styles/common.js +7 -0
- package/es/_internal/scrollbar/styles/light.d.ts +8 -0
- package/es/_internal/scrollbar/styles/light.js +3 -5
- package/es/_internal/select-menu/src/SelectMenu.d.ts +57 -1
- package/es/_internal/select-menu/styles/light.d.ts +8 -0
- package/es/_internal/selection/src/Selection.d.ts +3 -1
- package/es/_internal/selection/src/Selection.js +3 -1
- package/es/_utils/css/index.d.ts +1 -0
- package/es/_utils/css/index.js +1 -0
- package/es/_utils/css/rtl-inset.d.ts +1 -0
- package/es/_utils/css/rtl-inset.js +5 -0
- package/es/_utils/index.d.ts +1 -1
- package/es/_utils/index.js +1 -1
- package/es/auto-complete/src/AutoComplete.d.ts +88 -0
- package/es/auto-complete/styles/light.d.ts +8 -0
- package/es/back-top/src/BackTop.d.ts +1 -1
- package/es/button/src/Button.d.ts +72 -0
- package/es/button/src/Button.js +13 -7
- package/es/button/src/styles/index.cssr.js +1 -2
- package/es/button/styles/light.d.ts +8 -0
- package/es/button/styles/light.js +7 -7
- package/es/calendar/src/Calendar.d.ts +80 -0
- package/es/calendar/styles/light.d.ts +8 -0
- package/es/cascader/src/Cascader.d.ts +168 -0
- package/es/cascader/src/CascaderMenu.d.ts +24 -0
- package/es/cascader/src/CascaderOption.d.ts +24 -0
- package/es/cascader/src/CascaderSelectMenu.d.ts +24 -0
- package/es/cascader/src/CascaderSubmenu.d.ts +25 -1
- package/es/cascader/styles/light.d.ts +16 -0
- package/es/chat/src/Chat.d.ts +175 -7
- package/es/chat/src/Chat.js +11 -12
- package/es/chat/src/ChatListItems.d.ts +192 -0
- package/es/chat/src/ChatListItems.js +4 -1
- package/es/chat/src/ChatMessages.d.ts +192 -0
- package/es/chat/src/styles/index.cssr.js +1 -3
- package/es/chat/styles/dark.d.ts +16 -0
- package/es/chat/styles/light.d.ts +16 -0
- package/es/color-picker/src/ColorInputUnit.d.ts +8 -0
- package/es/color-picker/src/ColorPicker.d.ts +72 -0
- package/es/color-picker/styles/light.d.ts +8 -0
- package/es/components.d.ts +2 -0
- package/es/components.js +2 -0
- package/es/data-table/src/DataTable.d.ts +240 -0
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +48 -0
- package/es/data-table/src/HeaderButton/FilterMenu.d.ts +48 -0
- package/es/data-table/src/TableParts/Body.d.ts +49 -1
- package/es/data-table/src/TableParts/Header.d.ts +48 -0
- package/es/data-table/src/interface.d.ts +96 -0
- package/es/data-table/styles/light.d.ts +32 -0
- package/es/date-picker/src/DatePicker.d.ts +339 -3
- package/es/date-picker/src/panel/date.d.ts +49 -1
- package/es/date-picker/src/panel/daterange.d.ts +50 -2
- package/es/date-picker/src/panel/datetime.d.ts +49 -1
- package/es/date-picker/src/panel/datetimerange.d.ts +50 -2
- package/es/date-picker/src/panel/panelMonth.d.ts +98 -2
- package/es/date-picker/src/panel/panelMonthContent.d.ts +49 -1
- package/es/date-picker/src/panel/panelYear.d.ts +98 -2
- package/es/date-picker/src/panel/panelYearContent.d.ts +49 -1
- package/es/date-picker/src/panel/use-calendar.d.ts +48 -0
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +48 -0
- package/es/date-picker/src/panel/use-panel-common.d.ts +48 -0
- package/es/date-picker/styles/light.d.ts +32 -0
- package/es/dialog/src/Dialog.d.ts +56 -0
- package/es/dialog/src/DialogProvider.d.ts +18 -2
- package/es/dialog/styles/light.d.ts +8 -0
- package/es/drawer/src/Drawer.d.ts +81 -1
- package/es/drawer/src/DrawerBodyWrapper.d.ts +9 -1
- package/es/drawer/src/DrawerContent.d.ts +8 -0
- package/es/drawer/styles/light.d.ts +8 -0
- package/es/dropdown/src/Dropdown.d.ts +1 -1
- package/es/dynamic-input/src/DynamicInput.d.ts +80 -0
- package/es/dynamic-input/src/InputPreset.d.ts +8 -0
- package/es/dynamic-input/src/PairPreset.d.ts +8 -0
- package/es/dynamic-input/styles/light.d.ts +8 -0
- package/es/dynamic-tags/src/DynamicTags.d.ts +80 -0
- package/es/dynamic-tags/styles/light.d.ts +8 -0
- package/es/infinite-scroll/index.d.ts +2 -0
- package/es/infinite-scroll/index.js +1 -0
- package/es/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
- package/es/infinite-scroll/src/InfiniteScroll.js +78 -0
- package/es/input-number/src/InputNumber.d.ts +80 -0
- package/es/input-number/styles/light.d.ts +8 -0
- package/es/layout/src/Layout.d.ts +112 -0
- package/es/layout/src/LayoutContent.d.ts +56 -0
- package/es/layout/src/LayoutFooter.d.ts +72 -0
- package/es/layout/src/LayoutHeader.d.ts +48 -0
- package/es/layout/src/LayoutSider.d.ts +56 -0
- package/es/layout/styles/light.d.ts +8 -0
- package/es/legacy-transfer/src/Transfer.d.ts +160 -0
- package/es/legacy-transfer/src/TransferFilter.d.ts +16 -0
- package/es/legacy-transfer/src/TransferList.d.ts +17 -1
- package/es/legacy-transfer/src/TransferListItem.d.ts +16 -0
- package/es/legacy-transfer/styles/light.d.ts +16 -0
- package/es/log/src/Log.d.ts +80 -0
- package/es/log/styles/light.d.ts +8 -0
- package/es/mention/src/Mention.d.ts +88 -0
- package/es/mention/styles/light.d.ts +8 -0
- package/es/menu/src/Menu.d.ts +1 -1
- package/es/modal/src/BodyWrapper.d.ts +25 -1
- package/es/modal/src/Modal.d.ts +145 -1
- package/es/modal/styles/light.d.ts +16 -0
- package/es/notification/src/Notification.d.ts +5 -0
- package/es/notification/src/Notification.js +16 -6
- package/es/notification/src/NotificationContainer.d.ts +20 -0
- package/es/notification/src/NotificationProvider.d.ts +180 -0
- package/es/notification/src/styles/index.cssr.js +12 -8
- package/es/notification/styles/light.d.ts +32 -0
- package/es/notification/styles/light.js +9 -8
- package/es/pagination/src/Pagination.d.ts +176 -0
- package/es/pagination/styles/light.d.ts +16 -0
- package/es/popconfirm/src/Popconfirm.d.ts +80 -0
- package/es/popconfirm/styles/light.d.ts +8 -0
- package/es/popselect/src/Popselect.d.ts +88 -0
- package/es/popselect/src/PopselectPanel.d.ts +16 -0
- package/es/popselect/styles/light.d.ts +8 -0
- package/es/scrollbar/src/Scrollbar.d.ts +72 -0
- package/es/select/src/Select.d.ts +88 -0
- package/es/select/styles/light.d.ts +8 -0
- package/es/time-picker/src/Panel.d.ts +16 -0
- package/es/time-picker/src/TimePicker.d.ts +160 -0
- package/es/time-picker/styles/light.d.ts +16 -0
- package/es/transfer/src/Transfer.d.ts +160 -0
- package/es/transfer/src/TransferFilter.d.ts +16 -0
- package/es/transfer/src/TransferList.d.ts +17 -1
- package/es/transfer/src/TransferListItem.d.ts +16 -0
- package/es/transfer/styles/light.d.ts +16 -0
- package/es/tree/src/Tree.d.ts +82 -2
- package/es/tree/src/TreeNodeCheckbox.d.ts +8 -0
- package/es/tree/styles/light.d.ts +8 -0
- package/es/tree-select/src/TreeSelect.d.ts +89 -1
- package/es/tree-select/styles/light.d.ts +8 -0
- package/es/upload/src/Upload.d.ts +90 -0
- package/es/upload/src/Upload.js +2 -1
- package/es/upload/src/UploadFile.d.ts +9 -0
- package/es/upload/src/UploadProgress.d.ts +9 -0
- package/es/upload/src/styles/index.cssr.js +1 -0
- package/es/upload/src/useUploadActionsRender.js +5 -1
- package/es/upload/styles/light.d.ts +10 -0
- package/es/upload/styles/light.js +6 -5
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/es/virtual-list/index.d.ts +2 -0
- package/es/virtual-list/index.js +1 -0
- package/es/virtual-list/src/VirtualList.d.ts +146 -0
- package/es/virtual-list/src/VirtualList.js +103 -0
- package/lib/_internal/scrollbar/src/Scrollbar.d.ts +119 -17
- package/lib/_internal/scrollbar/src/Scrollbar.js +118 -65
- package/lib/_internal/scrollbar/src/styles/index.cssr.js +32 -15
- package/lib/_internal/scrollbar/styles/common.d.ts +7 -0
- package/lib/_internal/scrollbar/styles/common.js +10 -0
- package/lib/_internal/scrollbar/styles/light.d.ts +8 -0
- package/lib/_internal/scrollbar/styles/light.js +3 -5
- package/lib/_internal/select-menu/src/SelectMenu.d.ts +57 -1
- package/lib/_internal/select-menu/styles/light.d.ts +8 -0
- package/lib/_internal/selection/src/Selection.d.ts +3 -1
- package/lib/_internal/selection/src/Selection.js +3 -1
- package/lib/_utils/css/index.d.ts +1 -0
- package/lib/_utils/css/index.js +3 -1
- package/lib/_utils/css/rtl-inset.d.ts +1 -0
- package/lib/_utils/css/rtl-inset.js +8 -0
- package/lib/_utils/index.d.ts +1 -1
- package/lib/_utils/index.js +2 -1
- package/lib/auto-complete/src/AutoComplete.d.ts +88 -0
- package/lib/auto-complete/styles/light.d.ts +8 -0
- package/lib/back-top/src/BackTop.d.ts +1 -1
- package/lib/button/src/Button.d.ts +72 -0
- package/lib/button/src/Button.js +13 -7
- package/lib/button/src/styles/index.cssr.js +1 -2
- package/lib/button/styles/light.d.ts +8 -0
- package/lib/button/styles/light.js +7 -7
- package/lib/calendar/src/Calendar.d.ts +80 -0
- package/lib/calendar/styles/light.d.ts +8 -0
- package/lib/cascader/src/Cascader.d.ts +168 -0
- package/lib/cascader/src/CascaderMenu.d.ts +24 -0
- package/lib/cascader/src/CascaderOption.d.ts +24 -0
- package/lib/cascader/src/CascaderSelectMenu.d.ts +24 -0
- package/lib/cascader/src/CascaderSubmenu.d.ts +25 -1
- package/lib/cascader/styles/light.d.ts +16 -0
- package/lib/chat/src/Chat.d.ts +175 -7
- package/lib/chat/src/Chat.js +11 -12
- package/lib/chat/src/ChatListItems.d.ts +192 -0
- package/lib/chat/src/ChatListItems.js +4 -1
- package/lib/chat/src/ChatMessages.d.ts +192 -0
- package/lib/chat/src/styles/index.cssr.js +1 -3
- package/lib/chat/styles/dark.d.ts +16 -0
- package/lib/chat/styles/light.d.ts +16 -0
- package/lib/color-picker/src/ColorInputUnit.d.ts +8 -0
- package/lib/color-picker/src/ColorPicker.d.ts +72 -0
- package/lib/color-picker/styles/light.d.ts +8 -0
- package/lib/components.d.ts +2 -0
- package/lib/components.js +2 -0
- package/lib/data-table/src/DataTable.d.ts +240 -0
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +48 -0
- package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +48 -0
- package/lib/data-table/src/TableParts/Body.d.ts +49 -1
- package/lib/data-table/src/TableParts/Header.d.ts +48 -0
- package/lib/data-table/src/interface.d.ts +96 -0
- package/lib/data-table/styles/light.d.ts +32 -0
- package/lib/date-picker/src/DatePicker.d.ts +339 -3
- package/lib/date-picker/src/panel/date.d.ts +49 -1
- package/lib/date-picker/src/panel/daterange.d.ts +50 -2
- package/lib/date-picker/src/panel/datetime.d.ts +49 -1
- package/lib/date-picker/src/panel/datetimerange.d.ts +50 -2
- package/lib/date-picker/src/panel/panelMonth.d.ts +98 -2
- package/lib/date-picker/src/panel/panelMonthContent.d.ts +49 -1
- package/lib/date-picker/src/panel/panelYear.d.ts +98 -2
- package/lib/date-picker/src/panel/panelYearContent.d.ts +49 -1
- package/lib/date-picker/src/panel/use-calendar.d.ts +48 -0
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +48 -0
- package/lib/date-picker/src/panel/use-panel-common.d.ts +48 -0
- package/lib/date-picker/styles/light.d.ts +32 -0
- package/lib/dialog/src/Dialog.d.ts +56 -0
- package/lib/dialog/src/DialogProvider.d.ts +18 -2
- package/lib/dialog/styles/light.d.ts +8 -0
- package/lib/drawer/src/Drawer.d.ts +81 -1
- package/lib/drawer/src/DrawerBodyWrapper.d.ts +9 -1
- package/lib/drawer/src/DrawerContent.d.ts +8 -0
- package/lib/drawer/styles/light.d.ts +8 -0
- package/lib/dropdown/src/Dropdown.d.ts +1 -1
- package/lib/dynamic-input/src/DynamicInput.d.ts +80 -0
- package/lib/dynamic-input/src/InputPreset.d.ts +8 -0
- package/lib/dynamic-input/src/PairPreset.d.ts +8 -0
- package/lib/dynamic-input/styles/light.d.ts +8 -0
- package/lib/dynamic-tags/src/DynamicTags.d.ts +80 -0
- package/lib/dynamic-tags/styles/light.d.ts +8 -0
- package/lib/infinite-scroll/index.d.ts +2 -0
- package/lib/infinite-scroll/index.js +9 -0
- package/lib/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
- package/lib/infinite-scroll/src/InfiniteScroll.js +81 -0
- package/lib/input-number/src/InputNumber.d.ts +80 -0
- package/lib/input-number/styles/light.d.ts +8 -0
- package/lib/layout/src/Layout.d.ts +112 -0
- package/lib/layout/src/LayoutContent.d.ts +56 -0
- package/lib/layout/src/LayoutFooter.d.ts +72 -0
- package/lib/layout/src/LayoutHeader.d.ts +48 -0
- package/lib/layout/src/LayoutSider.d.ts +56 -0
- package/lib/layout/styles/light.d.ts +8 -0
- package/lib/legacy-transfer/src/Transfer.d.ts +160 -0
- package/lib/legacy-transfer/src/TransferFilter.d.ts +16 -0
- package/lib/legacy-transfer/src/TransferList.d.ts +17 -1
- package/lib/legacy-transfer/src/TransferListItem.d.ts +16 -0
- package/lib/legacy-transfer/styles/light.d.ts +16 -0
- package/lib/log/src/Log.d.ts +80 -0
- package/lib/log/styles/light.d.ts +8 -0
- package/lib/mention/src/Mention.d.ts +88 -0
- package/lib/mention/styles/light.d.ts +8 -0
- package/lib/menu/src/Menu.d.ts +1 -1
- package/lib/modal/src/BodyWrapper.d.ts +25 -1
- package/lib/modal/src/Modal.d.ts +145 -1
- package/lib/modal/styles/light.d.ts +16 -0
- package/lib/notification/src/Notification.d.ts +5 -0
- package/lib/notification/src/Notification.js +14 -4
- package/lib/notification/src/NotificationContainer.d.ts +20 -0
- package/lib/notification/src/NotificationProvider.d.ts +180 -0
- package/lib/notification/src/styles/index.cssr.js +12 -8
- package/lib/notification/styles/light.d.ts +32 -0
- package/lib/notification/styles/light.js +9 -8
- package/lib/pagination/src/Pagination.d.ts +176 -0
- package/lib/pagination/styles/light.d.ts +16 -0
- package/lib/popconfirm/src/Popconfirm.d.ts +80 -0
- package/lib/popconfirm/styles/light.d.ts +8 -0
- package/lib/popselect/src/Popselect.d.ts +88 -0
- package/lib/popselect/src/PopselectPanel.d.ts +16 -0
- package/lib/popselect/styles/light.d.ts +8 -0
- package/lib/scrollbar/src/Scrollbar.d.ts +72 -0
- package/lib/select/src/Select.d.ts +88 -0
- package/lib/select/styles/light.d.ts +8 -0
- package/lib/time-picker/src/Panel.d.ts +16 -0
- package/lib/time-picker/src/TimePicker.d.ts +160 -0
- package/lib/time-picker/styles/light.d.ts +16 -0
- package/lib/transfer/src/Transfer.d.ts +160 -0
- package/lib/transfer/src/TransferFilter.d.ts +16 -0
- package/lib/transfer/src/TransferList.d.ts +17 -1
- package/lib/transfer/src/TransferListItem.d.ts +16 -0
- package/lib/transfer/styles/light.d.ts +16 -0
- package/lib/tree/src/Tree.d.ts +82 -2
- package/lib/tree/src/TreeNodeCheckbox.d.ts +8 -0
- package/lib/tree/styles/light.d.ts +8 -0
- package/lib/tree-select/src/TreeSelect.d.ts +89 -1
- package/lib/tree-select/styles/light.d.ts +8 -0
- package/lib/upload/src/Upload.d.ts +90 -0
- package/lib/upload/src/Upload.js +2 -1
- package/lib/upload/src/UploadFile.d.ts +9 -0
- package/lib/upload/src/UploadProgress.d.ts +9 -0
- package/lib/upload/src/styles/index.cssr.js +1 -0
- package/lib/upload/src/useUploadActionsRender.js +5 -1
- package/lib/upload/styles/light.d.ts +10 -0
- package/lib/upload/styles/light.js +6 -5
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/virtual-list/index.d.ts +2 -0
- package/lib/virtual-list/index.js +9 -0
- package/lib/virtual-list/src/VirtualList.d.ts +146 -0
- package/lib/virtual-list/src/VirtualList.js +106 -0
- package/package.json +2 -2
- package/volar.d.ts +1 -0
- package/web-types.json +33 -4
package/lib/tree/src/Tree.d.ts
CHANGED
|
@@ -277,8 +277,16 @@ export declare const treeProps: {
|
|
|
277
277
|
labelPadding: string;
|
|
278
278
|
}, any>;
|
|
279
279
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
280
|
+
height: string;
|
|
281
|
+
width: string;
|
|
282
|
+
borderRadius: string;
|
|
280
283
|
color: string;
|
|
281
284
|
colorHover: string;
|
|
285
|
+
railInsetHorizontalBottom: string;
|
|
286
|
+
railInsetHorizontalTop: string;
|
|
287
|
+
railInsetVerticalRight: string;
|
|
288
|
+
railInsetVerticalLeft: string;
|
|
289
|
+
railColor: string;
|
|
282
290
|
}, any>;
|
|
283
291
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
284
292
|
iconSizeSmall: string;
|
|
@@ -368,8 +376,16 @@ export declare const treeProps: {
|
|
|
368
376
|
labelPadding: string;
|
|
369
377
|
}, any>;
|
|
370
378
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
379
|
+
height: string;
|
|
380
|
+
width: string;
|
|
381
|
+
borderRadius: string;
|
|
371
382
|
color: string;
|
|
372
383
|
colorHover: string;
|
|
384
|
+
railInsetHorizontalBottom: string;
|
|
385
|
+
railInsetHorizontalTop: string;
|
|
386
|
+
railInsetVerticalRight: string;
|
|
387
|
+
railInsetVerticalLeft: string;
|
|
388
|
+
railColor: string;
|
|
373
389
|
}, any>;
|
|
374
390
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
375
391
|
iconSizeSmall: string;
|
|
@@ -459,8 +475,16 @@ export declare const treeProps: {
|
|
|
459
475
|
labelPadding: string;
|
|
460
476
|
}, any>;
|
|
461
477
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
478
|
+
height: string;
|
|
479
|
+
width: string;
|
|
480
|
+
borderRadius: string;
|
|
462
481
|
color: string;
|
|
463
482
|
colorHover: string;
|
|
483
|
+
railInsetHorizontalBottom: string;
|
|
484
|
+
railInsetHorizontalTop: string;
|
|
485
|
+
railInsetVerticalRight: string;
|
|
486
|
+
railInsetVerticalLeft: string;
|
|
487
|
+
railColor: string;
|
|
464
488
|
}, any>;
|
|
465
489
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
466
490
|
iconSizeSmall: string;
|
|
@@ -692,8 +716,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
692
716
|
labelPadding: string;
|
|
693
717
|
}, any>;
|
|
694
718
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
719
|
+
height: string;
|
|
720
|
+
width: string;
|
|
721
|
+
borderRadius: string;
|
|
695
722
|
color: string;
|
|
696
723
|
colorHover: string;
|
|
724
|
+
railInsetHorizontalBottom: string;
|
|
725
|
+
railInsetHorizontalTop: string;
|
|
726
|
+
railInsetVerticalRight: string;
|
|
727
|
+
railInsetVerticalLeft: string;
|
|
728
|
+
railColor: string;
|
|
697
729
|
}, any>;
|
|
698
730
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
699
731
|
iconSizeSmall: string;
|
|
@@ -783,8 +815,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
783
815
|
labelPadding: string;
|
|
784
816
|
}, any>;
|
|
785
817
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
818
|
+
height: string;
|
|
819
|
+
width: string;
|
|
820
|
+
borderRadius: string;
|
|
786
821
|
color: string;
|
|
787
822
|
colorHover: string;
|
|
823
|
+
railInsetHorizontalBottom: string;
|
|
824
|
+
railInsetHorizontalTop: string;
|
|
825
|
+
railInsetVerticalRight: string;
|
|
826
|
+
railInsetVerticalLeft: string;
|
|
827
|
+
railColor: string;
|
|
788
828
|
}, any>;
|
|
789
829
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
790
830
|
iconSizeSmall: string;
|
|
@@ -874,8 +914,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
874
914
|
labelPadding: string;
|
|
875
915
|
}, any>;
|
|
876
916
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
917
|
+
height: string;
|
|
918
|
+
width: string;
|
|
919
|
+
borderRadius: string;
|
|
877
920
|
color: string;
|
|
878
921
|
colorHover: string;
|
|
922
|
+
railInsetHorizontalBottom: string;
|
|
923
|
+
railInsetHorizontalTop: string;
|
|
924
|
+
railInsetVerticalRight: string;
|
|
925
|
+
railInsetVerticalLeft: string;
|
|
926
|
+
railColor: string;
|
|
879
927
|
}, any>;
|
|
880
928
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
881
929
|
iconSizeSmall: string;
|
|
@@ -970,8 +1018,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
970
1018
|
labelPadding: string;
|
|
971
1019
|
}, any>;
|
|
972
1020
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1021
|
+
height: string;
|
|
1022
|
+
width: string;
|
|
1023
|
+
borderRadius: string;
|
|
973
1024
|
color: string;
|
|
974
1025
|
colorHover: string;
|
|
1026
|
+
railInsetHorizontalBottom: string;
|
|
1027
|
+
railInsetHorizontalTop: string;
|
|
1028
|
+
railInsetVerticalRight: string;
|
|
1029
|
+
railInsetVerticalLeft: string;
|
|
1030
|
+
railColor: string;
|
|
975
1031
|
}, any>;
|
|
976
1032
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
977
1033
|
iconSizeSmall: string;
|
|
@@ -1263,7 +1319,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1263
1319
|
virtualListInstRef: import("vue").Ref<{
|
|
1264
1320
|
listElRef: HTMLElement;
|
|
1265
1321
|
itemsElRef: HTMLElement | null;
|
|
1266
|
-
scrollTo: import("vueuc
|
|
1322
|
+
scrollTo: import("vueuc").VVirtualListScrollTo;
|
|
1267
1323
|
} | null>;
|
|
1268
1324
|
scrollbarInstRef: import("vue").Ref<{
|
|
1269
1325
|
$el: HTMLElement;
|
|
@@ -1524,8 +1580,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1524
1580
|
labelPadding: string;
|
|
1525
1581
|
}, any>;
|
|
1526
1582
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1583
|
+
height: string;
|
|
1584
|
+
width: string;
|
|
1585
|
+
borderRadius: string;
|
|
1527
1586
|
color: string;
|
|
1528
1587
|
colorHover: string;
|
|
1588
|
+
railInsetHorizontalBottom: string;
|
|
1589
|
+
railInsetHorizontalTop: string;
|
|
1590
|
+
railInsetVerticalRight: string;
|
|
1591
|
+
railInsetVerticalLeft: string;
|
|
1592
|
+
railColor: string;
|
|
1529
1593
|
}, any>;
|
|
1530
1594
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1531
1595
|
iconSizeSmall: string;
|
|
@@ -1615,8 +1679,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1615
1679
|
labelPadding: string;
|
|
1616
1680
|
}, any>;
|
|
1617
1681
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1682
|
+
height: string;
|
|
1683
|
+
width: string;
|
|
1684
|
+
borderRadius: string;
|
|
1618
1685
|
color: string;
|
|
1619
1686
|
colorHover: string;
|
|
1687
|
+
railInsetHorizontalBottom: string;
|
|
1688
|
+
railInsetHorizontalTop: string;
|
|
1689
|
+
railInsetVerticalRight: string;
|
|
1690
|
+
railInsetVerticalLeft: string;
|
|
1691
|
+
railColor: string;
|
|
1620
1692
|
}, any>;
|
|
1621
1693
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1622
1694
|
iconSizeSmall: string;
|
|
@@ -1706,8 +1778,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1706
1778
|
labelPadding: string;
|
|
1707
1779
|
}, any>;
|
|
1708
1780
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1781
|
+
height: string;
|
|
1782
|
+
width: string;
|
|
1783
|
+
borderRadius: string;
|
|
1709
1784
|
color: string;
|
|
1710
1785
|
colorHover: string;
|
|
1786
|
+
railInsetHorizontalBottom: string;
|
|
1787
|
+
railInsetHorizontalTop: string;
|
|
1788
|
+
railInsetVerticalRight: string;
|
|
1789
|
+
railInsetVerticalLeft: string;
|
|
1790
|
+
railColor: string;
|
|
1711
1791
|
}, any>;
|
|
1712
1792
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1713
1793
|
iconSizeSmall: string;
|
|
@@ -1738,7 +1818,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1738
1818
|
readonly multiple: boolean;
|
|
1739
1819
|
readonly labelField: string;
|
|
1740
1820
|
readonly virtualScroll: boolean;
|
|
1741
|
-
readonly keyField: string;
|
|
1742
1821
|
readonly checkable: boolean;
|
|
1743
1822
|
readonly keyboard: boolean;
|
|
1744
1823
|
readonly cancelable: boolean;
|
|
@@ -1747,6 +1826,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1747
1826
|
readonly allowCheckingNotLoaded: boolean;
|
|
1748
1827
|
readonly cascade: boolean;
|
|
1749
1828
|
readonly indent: number;
|
|
1829
|
+
readonly keyField: string;
|
|
1750
1830
|
readonly internalScrollable: boolean;
|
|
1751
1831
|
readonly checkStrategy: CheckStrategy;
|
|
1752
1832
|
readonly disabledField: string;
|
|
@@ -87,8 +87,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
87
|
labelPadding: string;
|
|
88
88
|
}, any>;
|
|
89
89
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
90
|
+
height: string;
|
|
91
|
+
width: string;
|
|
92
|
+
borderRadius: string;
|
|
90
93
|
color: string;
|
|
91
94
|
colorHover: string;
|
|
95
|
+
railInsetHorizontalBottom: string;
|
|
96
|
+
railInsetHorizontalTop: string;
|
|
97
|
+
railInsetVerticalRight: string;
|
|
98
|
+
railInsetVerticalLeft: string;
|
|
99
|
+
railColor: string;
|
|
92
100
|
}, any>;
|
|
93
101
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
94
102
|
iconSizeSmall: string;
|
|
@@ -83,8 +83,16 @@ declare const treeLight: import("../../_mixins/use-theme").Theme<"Tree", {
|
|
|
83
83
|
labelPadding: string;
|
|
84
84
|
}, any>;
|
|
85
85
|
Scrollbar: import("../../_mixins/use-theme").Theme<"Scrollbar", {
|
|
86
|
+
height: string;
|
|
87
|
+
width: string;
|
|
88
|
+
borderRadius: string;
|
|
86
89
|
color: string;
|
|
87
90
|
colorHover: string;
|
|
91
|
+
railInsetHorizontalBottom: string;
|
|
92
|
+
railInsetHorizontalTop: string;
|
|
93
|
+
railInsetVerticalRight: string;
|
|
94
|
+
railInsetVerticalLeft: string;
|
|
95
|
+
railColor: string;
|
|
88
96
|
}, any>;
|
|
89
97
|
Empty: import("../../_mixins/use-theme").Theme<"Empty", {
|
|
90
98
|
iconSizeSmall: string;
|
|
@@ -195,8 +195,16 @@ export declare const treeSelectProps: {
|
|
|
195
195
|
labelPadding: string;
|
|
196
196
|
}, any>;
|
|
197
197
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
198
|
+
height: string;
|
|
199
|
+
width: string;
|
|
200
|
+
borderRadius: string;
|
|
198
201
|
color: string;
|
|
199
202
|
colorHover: string;
|
|
203
|
+
railInsetHorizontalBottom: string;
|
|
204
|
+
railInsetHorizontalTop: string;
|
|
205
|
+
railInsetVerticalRight: string;
|
|
206
|
+
railInsetVerticalLeft: string;
|
|
207
|
+
railColor: string;
|
|
200
208
|
}, any>;
|
|
201
209
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
202
210
|
iconSizeSmall: string;
|
|
@@ -439,8 +447,16 @@ export declare const treeSelectProps: {
|
|
|
439
447
|
labelPadding: string;
|
|
440
448
|
}, any>;
|
|
441
449
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
450
|
+
height: string;
|
|
451
|
+
width: string;
|
|
452
|
+
borderRadius: string;
|
|
442
453
|
color: string;
|
|
443
454
|
colorHover: string;
|
|
455
|
+
railInsetHorizontalBottom: string;
|
|
456
|
+
railInsetHorizontalTop: string;
|
|
457
|
+
railInsetVerticalRight: string;
|
|
458
|
+
railInsetVerticalLeft: string;
|
|
459
|
+
railColor: string;
|
|
444
460
|
}, any>;
|
|
445
461
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
446
462
|
iconSizeSmall: string;
|
|
@@ -683,8 +699,16 @@ export declare const treeSelectProps: {
|
|
|
683
699
|
labelPadding: string;
|
|
684
700
|
}, any>;
|
|
685
701
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
702
|
+
height: string;
|
|
703
|
+
width: string;
|
|
704
|
+
borderRadius: string;
|
|
686
705
|
color: string;
|
|
687
706
|
colorHover: string;
|
|
707
|
+
railInsetHorizontalBottom: string;
|
|
708
|
+
railInsetHorizontalTop: string;
|
|
709
|
+
railInsetVerticalRight: string;
|
|
710
|
+
railInsetVerticalLeft: string;
|
|
711
|
+
railColor: string;
|
|
688
712
|
}, any>;
|
|
689
713
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
690
714
|
iconSizeSmall: string;
|
|
@@ -1038,8 +1062,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1038
1062
|
labelPadding: string;
|
|
1039
1063
|
}, any>;
|
|
1040
1064
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1065
|
+
height: string;
|
|
1066
|
+
width: string;
|
|
1067
|
+
borderRadius: string;
|
|
1041
1068
|
color: string;
|
|
1042
1069
|
colorHover: string;
|
|
1070
|
+
railInsetHorizontalBottom: string;
|
|
1071
|
+
railInsetHorizontalTop: string;
|
|
1072
|
+
railInsetVerticalRight: string;
|
|
1073
|
+
railInsetVerticalLeft: string;
|
|
1074
|
+
railColor: string;
|
|
1043
1075
|
}, any>;
|
|
1044
1076
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1045
1077
|
iconSizeSmall: string;
|
|
@@ -1282,8 +1314,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1282
1314
|
labelPadding: string;
|
|
1283
1315
|
}, any>;
|
|
1284
1316
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1317
|
+
height: string;
|
|
1318
|
+
width: string;
|
|
1319
|
+
borderRadius: string;
|
|
1285
1320
|
color: string;
|
|
1286
1321
|
colorHover: string;
|
|
1322
|
+
railInsetHorizontalBottom: string;
|
|
1323
|
+
railInsetHorizontalTop: string;
|
|
1324
|
+
railInsetVerticalRight: string;
|
|
1325
|
+
railInsetVerticalLeft: string;
|
|
1326
|
+
railColor: string;
|
|
1287
1327
|
}, any>;
|
|
1288
1328
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1289
1329
|
iconSizeSmall: string;
|
|
@@ -1526,8 +1566,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1526
1566
|
labelPadding: string;
|
|
1527
1567
|
}, any>;
|
|
1528
1568
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1569
|
+
height: string;
|
|
1570
|
+
width: string;
|
|
1571
|
+
borderRadius: string;
|
|
1529
1572
|
color: string;
|
|
1530
1573
|
colorHover: string;
|
|
1574
|
+
railInsetHorizontalBottom: string;
|
|
1575
|
+
railInsetHorizontalTop: string;
|
|
1576
|
+
railInsetVerticalRight: string;
|
|
1577
|
+
railInsetVerticalLeft: string;
|
|
1578
|
+
railColor: string;
|
|
1531
1579
|
}, any>;
|
|
1532
1580
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1533
1581
|
iconSizeSmall: string;
|
|
@@ -1840,8 +1888,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1840
1888
|
labelPadding: string;
|
|
1841
1889
|
}, any>;
|
|
1842
1890
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1891
|
+
height: string;
|
|
1892
|
+
width: string;
|
|
1893
|
+
borderRadius: string;
|
|
1843
1894
|
color: string;
|
|
1844
1895
|
colorHover: string;
|
|
1896
|
+
railInsetHorizontalBottom: string;
|
|
1897
|
+
railInsetHorizontalTop: string;
|
|
1898
|
+
railInsetVerticalRight: string;
|
|
1899
|
+
railInsetVerticalLeft: string;
|
|
1900
|
+
railColor: string;
|
|
1845
1901
|
}, any>;
|
|
1846
1902
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1847
1903
|
iconSizeSmall: string;
|
|
@@ -2062,8 +2118,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2062
2118
|
labelPadding: string;
|
|
2063
2119
|
}, any>> | undefined;
|
|
2064
2120
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
2121
|
+
height: string;
|
|
2122
|
+
width: string;
|
|
2123
|
+
borderRadius: string;
|
|
2065
2124
|
color: string;
|
|
2066
2125
|
colorHover: string;
|
|
2126
|
+
railInsetHorizontalBottom: string;
|
|
2127
|
+
railInsetHorizontalTop: string;
|
|
2128
|
+
railInsetVerticalRight: string;
|
|
2129
|
+
railInsetVerticalLeft: string;
|
|
2130
|
+
railColor: string;
|
|
2067
2131
|
}, any>> | undefined;
|
|
2068
2132
|
Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
|
|
2069
2133
|
iconSizeSmall: string;
|
|
@@ -2322,8 +2386,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2322
2386
|
labelPadding: string;
|
|
2323
2387
|
}, any>;
|
|
2324
2388
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2389
|
+
height: string;
|
|
2390
|
+
width: string;
|
|
2391
|
+
borderRadius: string;
|
|
2325
2392
|
color: string;
|
|
2326
2393
|
colorHover: string;
|
|
2394
|
+
railInsetHorizontalBottom: string;
|
|
2395
|
+
railInsetHorizontalTop: string;
|
|
2396
|
+
railInsetVerticalRight: string;
|
|
2397
|
+
railInsetVerticalLeft: string;
|
|
2398
|
+
railColor: string;
|
|
2327
2399
|
}, any>;
|
|
2328
2400
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2329
2401
|
iconSizeSmall: string;
|
|
@@ -2566,8 +2638,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2566
2638
|
labelPadding: string;
|
|
2567
2639
|
}, any>;
|
|
2568
2640
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2641
|
+
height: string;
|
|
2642
|
+
width: string;
|
|
2643
|
+
borderRadius: string;
|
|
2569
2644
|
color: string;
|
|
2570
2645
|
colorHover: string;
|
|
2646
|
+
railInsetHorizontalBottom: string;
|
|
2647
|
+
railInsetHorizontalTop: string;
|
|
2648
|
+
railInsetVerticalRight: string;
|
|
2649
|
+
railInsetVerticalLeft: string;
|
|
2650
|
+
railColor: string;
|
|
2571
2651
|
}, any>;
|
|
2572
2652
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2573
2653
|
iconSizeSmall: string;
|
|
@@ -2810,8 +2890,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2810
2890
|
labelPadding: string;
|
|
2811
2891
|
}, any>;
|
|
2812
2892
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2893
|
+
height: string;
|
|
2894
|
+
width: string;
|
|
2895
|
+
borderRadius: string;
|
|
2813
2896
|
color: string;
|
|
2814
2897
|
colorHover: string;
|
|
2898
|
+
railInsetHorizontalBottom: string;
|
|
2899
|
+
railInsetHorizontalTop: string;
|
|
2900
|
+
railInsetVerticalRight: string;
|
|
2901
|
+
railInsetVerticalLeft: string;
|
|
2902
|
+
railColor: string;
|
|
2815
2903
|
}, any>;
|
|
2816
2904
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2817
2905
|
iconSizeSmall: string;
|
|
@@ -2986,7 +3074,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2986
3074
|
readonly multiple: boolean;
|
|
2987
3075
|
readonly labelField: string;
|
|
2988
3076
|
readonly virtualScroll: boolean;
|
|
2989
|
-
readonly keyField: string;
|
|
2990
3077
|
readonly checkable: boolean;
|
|
2991
3078
|
readonly placement: FollowerPlacement;
|
|
2992
3079
|
readonly defaultShow: boolean;
|
|
@@ -3000,6 +3087,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3000
3087
|
readonly defaultExpandAll: boolean;
|
|
3001
3088
|
readonly allowCheckingNotLoaded: boolean;
|
|
3002
3089
|
readonly cascade: boolean;
|
|
3090
|
+
readonly keyField: string;
|
|
3003
3091
|
readonly checkStrategy: CheckStrategy;
|
|
3004
3092
|
readonly disabledField: string;
|
|
3005
3093
|
readonly leafOnly: boolean;
|
|
@@ -88,8 +88,16 @@ declare const treeSelectLight: import("../../_mixins/use-theme").Theme<"TreeSele
|
|
|
88
88
|
labelPadding: string;
|
|
89
89
|
}, any>;
|
|
90
90
|
Scrollbar: import("../../_mixins/use-theme").Theme<"Scrollbar", {
|
|
91
|
+
height: string;
|
|
92
|
+
width: string;
|
|
93
|
+
borderRadius: string;
|
|
91
94
|
color: string;
|
|
92
95
|
colorHover: string;
|
|
96
|
+
railInsetHorizontalBottom: string;
|
|
97
|
+
railInsetHorizontalTop: string;
|
|
98
|
+
railInsetVerticalRight: string;
|
|
99
|
+
railInsetVerticalLeft: string;
|
|
100
|
+
railColor: string;
|
|
93
101
|
}, any>;
|
|
94
102
|
Empty: import("../../_mixins/use-theme").Theme<"Empty", {
|
|
95
103
|
iconSizeSmall: string;
|