@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
|
@@ -153,8 +153,16 @@ export declare const cascaderProps: {
|
|
|
153
153
|
loadingColor: string;
|
|
154
154
|
}, {
|
|
155
155
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
156
|
+
height: string;
|
|
157
|
+
width: string;
|
|
158
|
+
borderRadius: string;
|
|
156
159
|
color: string;
|
|
157
160
|
colorHover: string;
|
|
161
|
+
railInsetHorizontalBottom: string;
|
|
162
|
+
railInsetHorizontalTop: string;
|
|
163
|
+
railInsetVerticalRight: string;
|
|
164
|
+
railInsetVerticalLeft: string;
|
|
165
|
+
railColor: string;
|
|
158
166
|
}, any>;
|
|
159
167
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
160
168
|
iconSizeSmall: string;
|
|
@@ -300,8 +308,16 @@ export declare const cascaderProps: {
|
|
|
300
308
|
}, any>;
|
|
301
309
|
}>;
|
|
302
310
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
311
|
+
height: string;
|
|
312
|
+
width: string;
|
|
313
|
+
borderRadius: string;
|
|
303
314
|
color: string;
|
|
304
315
|
colorHover: string;
|
|
316
|
+
railInsetHorizontalBottom: string;
|
|
317
|
+
railInsetHorizontalTop: string;
|
|
318
|
+
railInsetVerticalRight: string;
|
|
319
|
+
railInsetVerticalLeft: string;
|
|
320
|
+
railColor: string;
|
|
305
321
|
}, any>;
|
|
306
322
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
307
323
|
fontWeight: string;
|
|
@@ -426,8 +442,16 @@ export declare const cascaderProps: {
|
|
|
426
442
|
loadingColor: string;
|
|
427
443
|
}, {
|
|
428
444
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
445
|
+
height: string;
|
|
446
|
+
width: string;
|
|
447
|
+
borderRadius: string;
|
|
429
448
|
color: string;
|
|
430
449
|
colorHover: string;
|
|
450
|
+
railInsetHorizontalBottom: string;
|
|
451
|
+
railInsetHorizontalTop: string;
|
|
452
|
+
railInsetVerticalRight: string;
|
|
453
|
+
railInsetVerticalLeft: string;
|
|
454
|
+
railColor: string;
|
|
431
455
|
}, any>;
|
|
432
456
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
433
457
|
iconSizeSmall: string;
|
|
@@ -573,8 +597,16 @@ export declare const cascaderProps: {
|
|
|
573
597
|
}, any>;
|
|
574
598
|
}>;
|
|
575
599
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
600
|
+
height: string;
|
|
601
|
+
width: string;
|
|
602
|
+
borderRadius: string;
|
|
576
603
|
color: string;
|
|
577
604
|
colorHover: string;
|
|
605
|
+
railInsetHorizontalBottom: string;
|
|
606
|
+
railInsetHorizontalTop: string;
|
|
607
|
+
railInsetVerticalRight: string;
|
|
608
|
+
railInsetVerticalLeft: string;
|
|
609
|
+
railColor: string;
|
|
578
610
|
}, any>;
|
|
579
611
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
580
612
|
fontWeight: string;
|
|
@@ -699,8 +731,16 @@ export declare const cascaderProps: {
|
|
|
699
731
|
loadingColor: string;
|
|
700
732
|
}, {
|
|
701
733
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
734
|
+
height: string;
|
|
735
|
+
width: string;
|
|
736
|
+
borderRadius: string;
|
|
702
737
|
color: string;
|
|
703
738
|
colorHover: string;
|
|
739
|
+
railInsetHorizontalBottom: string;
|
|
740
|
+
railInsetHorizontalTop: string;
|
|
741
|
+
railInsetVerticalRight: string;
|
|
742
|
+
railInsetVerticalLeft: string;
|
|
743
|
+
railColor: string;
|
|
704
744
|
}, any>;
|
|
705
745
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
706
746
|
iconSizeSmall: string;
|
|
@@ -846,8 +886,16 @@ export declare const cascaderProps: {
|
|
|
846
886
|
}, any>;
|
|
847
887
|
}>;
|
|
848
888
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
889
|
+
height: string;
|
|
890
|
+
width: string;
|
|
891
|
+
borderRadius: string;
|
|
849
892
|
color: string;
|
|
850
893
|
colorHover: string;
|
|
894
|
+
railInsetHorizontalBottom: string;
|
|
895
|
+
railInsetHorizontalTop: string;
|
|
896
|
+
railInsetVerticalRight: string;
|
|
897
|
+
railInsetVerticalLeft: string;
|
|
898
|
+
railColor: string;
|
|
851
899
|
}, any>;
|
|
852
900
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
853
901
|
fontWeight: string;
|
|
@@ -1070,8 +1118,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1070
1118
|
loadingColor: string;
|
|
1071
1119
|
}, {
|
|
1072
1120
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1121
|
+
height: string;
|
|
1122
|
+
width: string;
|
|
1123
|
+
borderRadius: string;
|
|
1073
1124
|
color: string;
|
|
1074
1125
|
colorHover: string;
|
|
1126
|
+
railInsetHorizontalBottom: string;
|
|
1127
|
+
railInsetHorizontalTop: string;
|
|
1128
|
+
railInsetVerticalRight: string;
|
|
1129
|
+
railInsetVerticalLeft: string;
|
|
1130
|
+
railColor: string;
|
|
1075
1131
|
}, any>;
|
|
1076
1132
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1077
1133
|
iconSizeSmall: string;
|
|
@@ -1217,8 +1273,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1217
1273
|
}, any>;
|
|
1218
1274
|
}>;
|
|
1219
1275
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1276
|
+
height: string;
|
|
1277
|
+
width: string;
|
|
1278
|
+
borderRadius: string;
|
|
1220
1279
|
color: string;
|
|
1221
1280
|
colorHover: string;
|
|
1281
|
+
railInsetHorizontalBottom: string;
|
|
1282
|
+
railInsetHorizontalTop: string;
|
|
1283
|
+
railInsetVerticalRight: string;
|
|
1284
|
+
railInsetVerticalLeft: string;
|
|
1285
|
+
railColor: string;
|
|
1222
1286
|
}, any>;
|
|
1223
1287
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
1224
1288
|
fontWeight: string;
|
|
@@ -1343,8 +1407,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1343
1407
|
loadingColor: string;
|
|
1344
1408
|
}, {
|
|
1345
1409
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1410
|
+
height: string;
|
|
1411
|
+
width: string;
|
|
1412
|
+
borderRadius: string;
|
|
1346
1413
|
color: string;
|
|
1347
1414
|
colorHover: string;
|
|
1415
|
+
railInsetHorizontalBottom: string;
|
|
1416
|
+
railInsetHorizontalTop: string;
|
|
1417
|
+
railInsetVerticalRight: string;
|
|
1418
|
+
railInsetVerticalLeft: string;
|
|
1419
|
+
railColor: string;
|
|
1348
1420
|
}, any>;
|
|
1349
1421
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1350
1422
|
iconSizeSmall: string;
|
|
@@ -1490,8 +1562,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1490
1562
|
}, any>;
|
|
1491
1563
|
}>;
|
|
1492
1564
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1565
|
+
height: string;
|
|
1566
|
+
width: string;
|
|
1567
|
+
borderRadius: string;
|
|
1493
1568
|
color: string;
|
|
1494
1569
|
colorHover: string;
|
|
1570
|
+
railInsetHorizontalBottom: string;
|
|
1571
|
+
railInsetHorizontalTop: string;
|
|
1572
|
+
railInsetVerticalRight: string;
|
|
1573
|
+
railInsetVerticalLeft: string;
|
|
1574
|
+
railColor: string;
|
|
1495
1575
|
}, any>;
|
|
1496
1576
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
1497
1577
|
fontWeight: string;
|
|
@@ -1616,8 +1696,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1616
1696
|
loadingColor: string;
|
|
1617
1697
|
}, {
|
|
1618
1698
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1699
|
+
height: string;
|
|
1700
|
+
width: string;
|
|
1701
|
+
borderRadius: string;
|
|
1619
1702
|
color: string;
|
|
1620
1703
|
colorHover: string;
|
|
1704
|
+
railInsetHorizontalBottom: string;
|
|
1705
|
+
railInsetHorizontalTop: string;
|
|
1706
|
+
railInsetVerticalRight: string;
|
|
1707
|
+
railInsetVerticalLeft: string;
|
|
1708
|
+
railColor: string;
|
|
1621
1709
|
}, any>;
|
|
1622
1710
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1623
1711
|
iconSizeSmall: string;
|
|
@@ -1763,8 +1851,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1763
1851
|
}, any>;
|
|
1764
1852
|
}>;
|
|
1765
1853
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1854
|
+
height: string;
|
|
1855
|
+
width: string;
|
|
1856
|
+
borderRadius: string;
|
|
1766
1857
|
color: string;
|
|
1767
1858
|
colorHover: string;
|
|
1859
|
+
railInsetHorizontalBottom: string;
|
|
1860
|
+
railInsetHorizontalTop: string;
|
|
1861
|
+
railInsetVerticalRight: string;
|
|
1862
|
+
railInsetVerticalLeft: string;
|
|
1863
|
+
railColor: string;
|
|
1768
1864
|
}, any>;
|
|
1769
1865
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
1770
1866
|
fontWeight: string;
|
|
@@ -1954,8 +2050,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1954
2050
|
loadingColor: string;
|
|
1955
2051
|
}, {
|
|
1956
2052
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2053
|
+
height: string;
|
|
2054
|
+
width: string;
|
|
2055
|
+
borderRadius: string;
|
|
1957
2056
|
color: string;
|
|
1958
2057
|
colorHover: string;
|
|
2058
|
+
railInsetHorizontalBottom: string;
|
|
2059
|
+
railInsetHorizontalTop: string;
|
|
2060
|
+
railInsetVerticalRight: string;
|
|
2061
|
+
railInsetVerticalLeft: string;
|
|
2062
|
+
railColor: string;
|
|
1959
2063
|
}, any>;
|
|
1960
2064
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1961
2065
|
iconSizeSmall: string;
|
|
@@ -2101,8 +2205,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2101
2205
|
}, any>;
|
|
2102
2206
|
}>;
|
|
2103
2207
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2208
|
+
height: string;
|
|
2209
|
+
width: string;
|
|
2210
|
+
borderRadius: string;
|
|
2104
2211
|
color: string;
|
|
2105
2212
|
colorHover: string;
|
|
2213
|
+
railInsetHorizontalBottom: string;
|
|
2214
|
+
railInsetHorizontalTop: string;
|
|
2215
|
+
railInsetVerticalRight: string;
|
|
2216
|
+
railInsetVerticalLeft: string;
|
|
2217
|
+
railColor: string;
|
|
2106
2218
|
}, any>;
|
|
2107
2219
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
2108
2220
|
fontWeight: string;
|
|
@@ -2180,8 +2292,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2180
2292
|
InternalSelectMenu?: {
|
|
2181
2293
|
peers?: {
|
|
2182
2294
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
2295
|
+
height: string;
|
|
2296
|
+
width: string;
|
|
2297
|
+
borderRadius: string;
|
|
2183
2298
|
color: string;
|
|
2184
2299
|
colorHover: string;
|
|
2300
|
+
railInsetHorizontalBottom: string;
|
|
2301
|
+
railInsetHorizontalTop: string;
|
|
2302
|
+
railInsetVerticalRight: string;
|
|
2303
|
+
railInsetVerticalLeft: string;
|
|
2304
|
+
railColor: string;
|
|
2185
2305
|
}, any>> | undefined;
|
|
2186
2306
|
Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
|
|
2187
2307
|
iconSizeSmall: string;
|
|
@@ -2417,8 +2537,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2417
2537
|
loadingColor: string;
|
|
2418
2538
|
}, {
|
|
2419
2539
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2540
|
+
height: string;
|
|
2541
|
+
width: string;
|
|
2542
|
+
borderRadius: string;
|
|
2420
2543
|
color: string;
|
|
2421
2544
|
colorHover: string;
|
|
2545
|
+
railInsetHorizontalBottom: string;
|
|
2546
|
+
railInsetHorizontalTop: string;
|
|
2547
|
+
railInsetVerticalRight: string;
|
|
2548
|
+
railInsetVerticalLeft: string;
|
|
2549
|
+
railColor: string;
|
|
2422
2550
|
}, any>;
|
|
2423
2551
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2424
2552
|
iconSizeSmall: string;
|
|
@@ -2564,8 +2692,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2564
2692
|
}, any>;
|
|
2565
2693
|
}>;
|
|
2566
2694
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2695
|
+
height: string;
|
|
2696
|
+
width: string;
|
|
2697
|
+
borderRadius: string;
|
|
2567
2698
|
color: string;
|
|
2568
2699
|
colorHover: string;
|
|
2700
|
+
railInsetHorizontalBottom: string;
|
|
2701
|
+
railInsetHorizontalTop: string;
|
|
2702
|
+
railInsetVerticalRight: string;
|
|
2703
|
+
railInsetVerticalLeft: string;
|
|
2704
|
+
railColor: string;
|
|
2569
2705
|
}, any>;
|
|
2570
2706
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
2571
2707
|
fontWeight: string;
|
|
@@ -2690,8 +2826,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2690
2826
|
loadingColor: string;
|
|
2691
2827
|
}, {
|
|
2692
2828
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2829
|
+
height: string;
|
|
2830
|
+
width: string;
|
|
2831
|
+
borderRadius: string;
|
|
2693
2832
|
color: string;
|
|
2694
2833
|
colorHover: string;
|
|
2834
|
+
railInsetHorizontalBottom: string;
|
|
2835
|
+
railInsetHorizontalTop: string;
|
|
2836
|
+
railInsetVerticalRight: string;
|
|
2837
|
+
railInsetVerticalLeft: string;
|
|
2838
|
+
railColor: string;
|
|
2695
2839
|
}, any>;
|
|
2696
2840
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2697
2841
|
iconSizeSmall: string;
|
|
@@ -2837,8 +2981,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2837
2981
|
}, any>;
|
|
2838
2982
|
}>;
|
|
2839
2983
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2984
|
+
height: string;
|
|
2985
|
+
width: string;
|
|
2986
|
+
borderRadius: string;
|
|
2840
2987
|
color: string;
|
|
2841
2988
|
colorHover: string;
|
|
2989
|
+
railInsetHorizontalBottom: string;
|
|
2990
|
+
railInsetHorizontalTop: string;
|
|
2991
|
+
railInsetVerticalRight: string;
|
|
2992
|
+
railInsetVerticalLeft: string;
|
|
2993
|
+
railColor: string;
|
|
2842
2994
|
}, any>;
|
|
2843
2995
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
2844
2996
|
fontWeight: string;
|
|
@@ -2963,8 +3115,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2963
3115
|
loadingColor: string;
|
|
2964
3116
|
}, {
|
|
2965
3117
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3118
|
+
height: string;
|
|
3119
|
+
width: string;
|
|
3120
|
+
borderRadius: string;
|
|
2966
3121
|
color: string;
|
|
2967
3122
|
colorHover: string;
|
|
3123
|
+
railInsetHorizontalBottom: string;
|
|
3124
|
+
railInsetHorizontalTop: string;
|
|
3125
|
+
railInsetVerticalRight: string;
|
|
3126
|
+
railInsetVerticalLeft: string;
|
|
3127
|
+
railColor: string;
|
|
2968
3128
|
}, any>;
|
|
2969
3129
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2970
3130
|
iconSizeSmall: string;
|
|
@@ -3110,8 +3270,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3110
3270
|
}, any>;
|
|
3111
3271
|
}>;
|
|
3112
3272
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3273
|
+
height: string;
|
|
3274
|
+
width: string;
|
|
3275
|
+
borderRadius: string;
|
|
3113
3276
|
color: string;
|
|
3114
3277
|
colorHover: string;
|
|
3278
|
+
railInsetHorizontalBottom: string;
|
|
3279
|
+
railInsetHorizontalTop: string;
|
|
3280
|
+
railInsetVerticalRight: string;
|
|
3281
|
+
railInsetVerticalLeft: string;
|
|
3282
|
+
railColor: string;
|
|
3115
3283
|
}, any>;
|
|
3116
3284
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
3117
3285
|
fontWeight: string;
|
|
@@ -97,8 +97,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
97
97
|
loadingColor: string;
|
|
98
98
|
}, {
|
|
99
99
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
100
|
+
height: string;
|
|
101
|
+
width: string;
|
|
102
|
+
borderRadius: string;
|
|
100
103
|
color: string;
|
|
101
104
|
colorHover: string;
|
|
105
|
+
railInsetHorizontalBottom: string;
|
|
106
|
+
railInsetHorizontalTop: string;
|
|
107
|
+
railInsetVerticalRight: string;
|
|
108
|
+
railInsetVerticalLeft: string;
|
|
109
|
+
railColor: string;
|
|
102
110
|
}, any>;
|
|
103
111
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
104
112
|
iconSizeSmall: string;
|
|
@@ -244,8 +252,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
244
252
|
}, any>;
|
|
245
253
|
}>;
|
|
246
254
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
255
|
+
height: string;
|
|
256
|
+
width: string;
|
|
257
|
+
borderRadius: string;
|
|
247
258
|
color: string;
|
|
248
259
|
colorHover: string;
|
|
260
|
+
railInsetHorizontalBottom: string;
|
|
261
|
+
railInsetHorizontalTop: string;
|
|
262
|
+
railInsetVerticalRight: string;
|
|
263
|
+
railInsetVerticalLeft: string;
|
|
264
|
+
railColor: string;
|
|
249
265
|
}, any>;
|
|
250
266
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
251
267
|
fontWeight: string;
|
|
@@ -323,8 +339,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
323
339
|
InternalSelectMenu?: {
|
|
324
340
|
peers?: {
|
|
325
341
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
342
|
+
height: string;
|
|
343
|
+
width: string;
|
|
344
|
+
borderRadius: string;
|
|
326
345
|
color: string;
|
|
327
346
|
colorHover: string;
|
|
347
|
+
railInsetHorizontalBottom: string;
|
|
348
|
+
railInsetHorizontalTop: string;
|
|
349
|
+
railInsetVerticalRight: string;
|
|
350
|
+
railInsetVerticalLeft: string;
|
|
351
|
+
railColor: string;
|
|
328
352
|
}, any>> | undefined;
|
|
329
353
|
Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
|
|
330
354
|
iconSizeSmall: string;
|
|
@@ -73,8 +73,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
73
73
|
loadingColor: string;
|
|
74
74
|
}, {
|
|
75
75
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
76
|
+
height: string;
|
|
77
|
+
width: string;
|
|
78
|
+
borderRadius: string;
|
|
76
79
|
color: string;
|
|
77
80
|
colorHover: string;
|
|
81
|
+
railInsetHorizontalBottom: string;
|
|
82
|
+
railInsetHorizontalTop: string;
|
|
83
|
+
railInsetVerticalRight: string;
|
|
84
|
+
railInsetVerticalLeft: string;
|
|
85
|
+
railColor: string;
|
|
78
86
|
}, any>;
|
|
79
87
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
80
88
|
iconSizeSmall: string;
|
|
@@ -220,8 +228,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
220
228
|
}, any>;
|
|
221
229
|
}>;
|
|
222
230
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
231
|
+
height: string;
|
|
232
|
+
width: string;
|
|
233
|
+
borderRadius: string;
|
|
223
234
|
color: string;
|
|
224
235
|
colorHover: string;
|
|
236
|
+
railInsetHorizontalBottom: string;
|
|
237
|
+
railInsetHorizontalTop: string;
|
|
238
|
+
railInsetVerticalRight: string;
|
|
239
|
+
railInsetVerticalLeft: string;
|
|
240
|
+
railColor: string;
|
|
225
241
|
}, any>;
|
|
226
242
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
227
243
|
fontWeight: string;
|
|
@@ -299,8 +315,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
299
315
|
InternalSelectMenu?: {
|
|
300
316
|
peers?: {
|
|
301
317
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
318
|
+
height: string;
|
|
319
|
+
width: string;
|
|
320
|
+
borderRadius: string;
|
|
302
321
|
color: string;
|
|
303
322
|
colorHover: string;
|
|
323
|
+
railInsetHorizontalBottom: string;
|
|
324
|
+
railInsetHorizontalTop: string;
|
|
325
|
+
railInsetVerticalRight: string;
|
|
326
|
+
railInsetVerticalLeft: string;
|
|
327
|
+
railColor: string;
|
|
304
328
|
}, any>> | undefined;
|
|
305
329
|
Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
|
|
306
330
|
iconSizeSmall: string;
|
|
@@ -85,8 +85,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
85
85
|
loadingColor: string;
|
|
86
86
|
}, {
|
|
87
87
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
88
|
+
height: string;
|
|
89
|
+
width: string;
|
|
90
|
+
borderRadius: string;
|
|
88
91
|
color: string;
|
|
89
92
|
colorHover: string;
|
|
93
|
+
railInsetHorizontalBottom: string;
|
|
94
|
+
railInsetHorizontalTop: string;
|
|
95
|
+
railInsetVerticalRight: string;
|
|
96
|
+
railInsetVerticalLeft: string;
|
|
97
|
+
railColor: string;
|
|
90
98
|
}, any>;
|
|
91
99
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
92
100
|
iconSizeSmall: string;
|
|
@@ -232,8 +240,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
232
240
|
}, any>;
|
|
233
241
|
}>;
|
|
234
242
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
243
|
+
height: string;
|
|
244
|
+
width: string;
|
|
245
|
+
borderRadius: string;
|
|
235
246
|
color: string;
|
|
236
247
|
colorHover: string;
|
|
248
|
+
railInsetHorizontalBottom: string;
|
|
249
|
+
railInsetHorizontalTop: string;
|
|
250
|
+
railInsetVerticalRight: string;
|
|
251
|
+
railInsetVerticalLeft: string;
|
|
252
|
+
railColor: string;
|
|
237
253
|
}, any>;
|
|
238
254
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
239
255
|
fontWeight: string;
|
|
@@ -311,8 +327,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
311
327
|
InternalSelectMenu?: {
|
|
312
328
|
peers?: {
|
|
313
329
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
330
|
+
height: string;
|
|
331
|
+
width: string;
|
|
332
|
+
borderRadius: string;
|
|
314
333
|
color: string;
|
|
315
334
|
colorHover: string;
|
|
335
|
+
railInsetHorizontalBottom: string;
|
|
336
|
+
railInsetHorizontalTop: string;
|
|
337
|
+
railInsetVerticalRight: string;
|
|
338
|
+
railInsetVerticalLeft: string;
|
|
339
|
+
railColor: string;
|
|
316
340
|
}, any>> | undefined;
|
|
317
341
|
Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
|
|
318
342
|
iconSizeSmall: string;
|
|
@@ -66,8 +66,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
66
66
|
loadingColor: string;
|
|
67
67
|
}, {
|
|
68
68
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
69
|
+
height: string;
|
|
70
|
+
width: string;
|
|
71
|
+
borderRadius: string;
|
|
69
72
|
color: string;
|
|
70
73
|
colorHover: string;
|
|
74
|
+
railInsetHorizontalBottom: string;
|
|
75
|
+
railInsetHorizontalTop: string;
|
|
76
|
+
railInsetVerticalRight: string;
|
|
77
|
+
railInsetVerticalLeft: string;
|
|
78
|
+
railColor: string;
|
|
71
79
|
}, any>;
|
|
72
80
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
73
81
|
iconSizeSmall: string;
|
|
@@ -213,8 +221,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
213
221
|
}, any>;
|
|
214
222
|
}>;
|
|
215
223
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
224
|
+
height: string;
|
|
225
|
+
width: string;
|
|
226
|
+
borderRadius: string;
|
|
216
227
|
color: string;
|
|
217
228
|
colorHover: string;
|
|
229
|
+
railInsetHorizontalBottom: string;
|
|
230
|
+
railInsetHorizontalTop: string;
|
|
231
|
+
railInsetVerticalRight: string;
|
|
232
|
+
railInsetVerticalLeft: string;
|
|
233
|
+
railColor: string;
|
|
218
234
|
}, any>;
|
|
219
235
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
220
236
|
fontWeight: string;
|
|
@@ -292,8 +308,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
292
308
|
InternalSelectMenu?: {
|
|
293
309
|
peers?: {
|
|
294
310
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
311
|
+
height: string;
|
|
312
|
+
width: string;
|
|
313
|
+
borderRadius: string;
|
|
295
314
|
color: string;
|
|
296
315
|
colorHover: string;
|
|
316
|
+
railInsetHorizontalBottom: string;
|
|
317
|
+
railInsetHorizontalTop: string;
|
|
318
|
+
railInsetVerticalRight: string;
|
|
319
|
+
railInsetVerticalLeft: string;
|
|
320
|
+
railColor: string;
|
|
297
321
|
}, any>> | undefined;
|
|
298
322
|
Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
|
|
299
323
|
iconSizeSmall: string;
|
|
@@ -366,7 +390,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
366
390
|
vlInstRef: import("vue").Ref<{
|
|
367
391
|
listElRef: HTMLElement;
|
|
368
392
|
itemsElRef: HTMLElement | null;
|
|
369
|
-
scrollTo: import("vueuc
|
|
393
|
+
scrollTo: import("vueuc").VVirtualListScrollTo;
|
|
370
394
|
} | null>;
|
|
371
395
|
virtualScroll: import("vue").Ref<boolean>;
|
|
372
396
|
itemSize: import("vue").ComputedRef<number>;
|
|
@@ -68,8 +68,16 @@ declare const cascaderLight: import("../../_mixins").Theme<"Cascader", {
|
|
|
68
68
|
loadingColor: string;
|
|
69
69
|
}, {
|
|
70
70
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
71
|
+
height: string;
|
|
72
|
+
width: string;
|
|
73
|
+
borderRadius: string;
|
|
71
74
|
color: string;
|
|
72
75
|
colorHover: string;
|
|
76
|
+
railInsetHorizontalBottom: string;
|
|
77
|
+
railInsetHorizontalTop: string;
|
|
78
|
+
railInsetVerticalRight: string;
|
|
79
|
+
railInsetVerticalLeft: string;
|
|
80
|
+
railColor: string;
|
|
73
81
|
}, any>;
|
|
74
82
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
75
83
|
iconSizeSmall: string;
|
|
@@ -215,8 +223,16 @@ declare const cascaderLight: import("../../_mixins").Theme<"Cascader", {
|
|
|
215
223
|
}, any>;
|
|
216
224
|
}>;
|
|
217
225
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
226
|
+
height: string;
|
|
227
|
+
width: string;
|
|
228
|
+
borderRadius: string;
|
|
218
229
|
color: string;
|
|
219
230
|
colorHover: string;
|
|
231
|
+
railInsetHorizontalBottom: string;
|
|
232
|
+
railInsetHorizontalTop: string;
|
|
233
|
+
railInsetVerticalRight: string;
|
|
234
|
+
railInsetVerticalLeft: string;
|
|
235
|
+
railColor: string;
|
|
220
236
|
}, any>;
|
|
221
237
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
222
238
|
fontWeight: string;
|