@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
|
@@ -292,8 +292,16 @@ export declare const selectProps: {
|
|
|
292
292
|
loadingColor: string;
|
|
293
293
|
}, {
|
|
294
294
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
295
|
+
height: string;
|
|
296
|
+
width: string;
|
|
297
|
+
borderRadius: string;
|
|
295
298
|
color: string;
|
|
296
299
|
colorHover: string;
|
|
300
|
+
railInsetHorizontalBottom: string;
|
|
301
|
+
railInsetHorizontalTop: string;
|
|
302
|
+
railInsetVerticalRight: string;
|
|
303
|
+
railInsetVerticalLeft: string;
|
|
304
|
+
railColor: string;
|
|
297
305
|
}, any>;
|
|
298
306
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
299
307
|
iconSizeSmall: string;
|
|
@@ -476,8 +484,16 @@ export declare const selectProps: {
|
|
|
476
484
|
loadingColor: string;
|
|
477
485
|
}, {
|
|
478
486
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
487
|
+
height: string;
|
|
488
|
+
width: string;
|
|
489
|
+
borderRadius: string;
|
|
479
490
|
color: string;
|
|
480
491
|
colorHover: string;
|
|
492
|
+
railInsetHorizontalBottom: string;
|
|
493
|
+
railInsetHorizontalTop: string;
|
|
494
|
+
railInsetVerticalRight: string;
|
|
495
|
+
railInsetVerticalLeft: string;
|
|
496
|
+
railColor: string;
|
|
481
497
|
}, any>;
|
|
482
498
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
483
499
|
iconSizeSmall: string;
|
|
@@ -660,8 +676,16 @@ export declare const selectProps: {
|
|
|
660
676
|
loadingColor: string;
|
|
661
677
|
}, {
|
|
662
678
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
679
|
+
height: string;
|
|
680
|
+
width: string;
|
|
681
|
+
borderRadius: string;
|
|
663
682
|
color: string;
|
|
664
683
|
colorHover: string;
|
|
684
|
+
railInsetHorizontalBottom: string;
|
|
685
|
+
railInsetHorizontalTop: string;
|
|
686
|
+
railInsetVerticalRight: string;
|
|
687
|
+
railInsetVerticalLeft: string;
|
|
688
|
+
railColor: string;
|
|
665
689
|
}, any>;
|
|
666
690
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
667
691
|
iconSizeSmall: string;
|
|
@@ -971,8 +995,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
971
995
|
loadingColor: string;
|
|
972
996
|
}, {
|
|
973
997
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
998
|
+
height: string;
|
|
999
|
+
width: string;
|
|
1000
|
+
borderRadius: string;
|
|
974
1001
|
color: string;
|
|
975
1002
|
colorHover: string;
|
|
1003
|
+
railInsetHorizontalBottom: string;
|
|
1004
|
+
railInsetHorizontalTop: string;
|
|
1005
|
+
railInsetVerticalRight: string;
|
|
1006
|
+
railInsetVerticalLeft: string;
|
|
1007
|
+
railColor: string;
|
|
976
1008
|
}, any>;
|
|
977
1009
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
978
1010
|
iconSizeSmall: string;
|
|
@@ -1155,8 +1187,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1155
1187
|
loadingColor: string;
|
|
1156
1188
|
}, {
|
|
1157
1189
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1190
|
+
height: string;
|
|
1191
|
+
width: string;
|
|
1192
|
+
borderRadius: string;
|
|
1158
1193
|
color: string;
|
|
1159
1194
|
colorHover: string;
|
|
1195
|
+
railInsetHorizontalBottom: string;
|
|
1196
|
+
railInsetHorizontalTop: string;
|
|
1197
|
+
railInsetVerticalRight: string;
|
|
1198
|
+
railInsetVerticalLeft: string;
|
|
1199
|
+
railColor: string;
|
|
1160
1200
|
}, any>;
|
|
1161
1201
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1162
1202
|
iconSizeSmall: string;
|
|
@@ -1339,8 +1379,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1339
1379
|
loadingColor: string;
|
|
1340
1380
|
}, {
|
|
1341
1381
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1382
|
+
height: string;
|
|
1383
|
+
width: string;
|
|
1384
|
+
borderRadius: string;
|
|
1342
1385
|
color: string;
|
|
1343
1386
|
colorHover: string;
|
|
1387
|
+
railInsetHorizontalBottom: string;
|
|
1388
|
+
railInsetHorizontalTop: string;
|
|
1389
|
+
railInsetVerticalRight: string;
|
|
1390
|
+
railInsetVerticalLeft: string;
|
|
1391
|
+
railColor: string;
|
|
1344
1392
|
}, any>;
|
|
1345
1393
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1346
1394
|
iconSizeSmall: string;
|
|
@@ -1583,8 +1631,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1583
1631
|
loadingColor: string;
|
|
1584
1632
|
}, {
|
|
1585
1633
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1634
|
+
height: string;
|
|
1635
|
+
width: string;
|
|
1636
|
+
borderRadius: string;
|
|
1586
1637
|
color: string;
|
|
1587
1638
|
colorHover: string;
|
|
1639
|
+
railInsetHorizontalBottom: string;
|
|
1640
|
+
railInsetHorizontalTop: string;
|
|
1641
|
+
railInsetVerticalRight: string;
|
|
1642
|
+
railInsetVerticalLeft: string;
|
|
1643
|
+
railColor: string;
|
|
1588
1644
|
}, any>;
|
|
1589
1645
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1590
1646
|
iconSizeSmall: string;
|
|
@@ -1629,8 +1685,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1629
1685
|
InternalSelectMenu?: {
|
|
1630
1686
|
peers?: {
|
|
1631
1687
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
1688
|
+
height: string;
|
|
1689
|
+
width: string;
|
|
1690
|
+
borderRadius: string;
|
|
1632
1691
|
color: string;
|
|
1633
1692
|
colorHover: string;
|
|
1693
|
+
railInsetHorizontalBottom: string;
|
|
1694
|
+
railInsetHorizontalTop: string;
|
|
1695
|
+
railInsetVerticalRight: string;
|
|
1696
|
+
railInsetVerticalLeft: string;
|
|
1697
|
+
railColor: string;
|
|
1634
1698
|
}, any>> | undefined;
|
|
1635
1699
|
Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
|
|
1636
1700
|
iconSizeSmall: string;
|
|
@@ -1949,8 +2013,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1949
2013
|
loadingColor: string;
|
|
1950
2014
|
}, {
|
|
1951
2015
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2016
|
+
height: string;
|
|
2017
|
+
width: string;
|
|
2018
|
+
borderRadius: string;
|
|
1952
2019
|
color: string;
|
|
1953
2020
|
colorHover: string;
|
|
2021
|
+
railInsetHorizontalBottom: string;
|
|
2022
|
+
railInsetHorizontalTop: string;
|
|
2023
|
+
railInsetVerticalRight: string;
|
|
2024
|
+
railInsetVerticalLeft: string;
|
|
2025
|
+
railColor: string;
|
|
1954
2026
|
}, any>;
|
|
1955
2027
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1956
2028
|
iconSizeSmall: string;
|
|
@@ -2133,8 +2205,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2133
2205
|
loadingColor: string;
|
|
2134
2206
|
}, {
|
|
2135
2207
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2208
|
+
height: string;
|
|
2209
|
+
width: string;
|
|
2210
|
+
borderRadius: string;
|
|
2136
2211
|
color: string;
|
|
2137
2212
|
colorHover: string;
|
|
2213
|
+
railInsetHorizontalBottom: string;
|
|
2214
|
+
railInsetHorizontalTop: string;
|
|
2215
|
+
railInsetVerticalRight: string;
|
|
2216
|
+
railInsetVerticalLeft: string;
|
|
2217
|
+
railColor: string;
|
|
2138
2218
|
}, any>;
|
|
2139
2219
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2140
2220
|
iconSizeSmall: string;
|
|
@@ -2317,8 +2397,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2317
2397
|
loadingColor: string;
|
|
2318
2398
|
}, {
|
|
2319
2399
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2400
|
+
height: string;
|
|
2401
|
+
width: string;
|
|
2402
|
+
borderRadius: string;
|
|
2320
2403
|
color: string;
|
|
2321
2404
|
colorHover: string;
|
|
2405
|
+
railInsetHorizontalBottom: string;
|
|
2406
|
+
railInsetHorizontalTop: string;
|
|
2407
|
+
railInsetVerticalRight: string;
|
|
2408
|
+
railInsetVerticalLeft: string;
|
|
2409
|
+
railColor: string;
|
|
2322
2410
|
}, any>;
|
|
2323
2411
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2324
2412
|
iconSizeSmall: string;
|
|
@@ -162,8 +162,16 @@ declare const selectLight: import("../../_mixins").Theme<"Select", {
|
|
|
162
162
|
loadingColor: string;
|
|
163
163
|
}, {
|
|
164
164
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
165
|
+
height: string;
|
|
166
|
+
width: string;
|
|
167
|
+
borderRadius: string;
|
|
165
168
|
color: string;
|
|
166
169
|
colorHover: string;
|
|
170
|
+
railInsetHorizontalBottom: string;
|
|
171
|
+
railInsetHorizontalTop: string;
|
|
172
|
+
railInsetVerticalRight: string;
|
|
173
|
+
railInsetVerticalLeft: string;
|
|
174
|
+
railColor: string;
|
|
167
175
|
}, any>;
|
|
168
176
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
169
177
|
iconSizeSmall: string;
|
|
@@ -98,8 +98,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
98
98
|
};
|
|
99
99
|
peers: {
|
|
100
100
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
101
|
+
height: string;
|
|
102
|
+
width: string;
|
|
103
|
+
borderRadius: string;
|
|
101
104
|
color: string;
|
|
102
105
|
colorHover: string;
|
|
106
|
+
railInsetHorizontalBottom: string;
|
|
107
|
+
railInsetHorizontalTop: string;
|
|
108
|
+
railInsetVerticalRight: string;
|
|
109
|
+
railInsetVerticalLeft: string;
|
|
110
|
+
railColor: string;
|
|
103
111
|
}, any>;
|
|
104
112
|
Button: import("../../_mixins").Theme<"Button", {
|
|
105
113
|
heightTiny: string;
|
|
@@ -122,16 +130,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
122
130
|
colorSecondary: string;
|
|
123
131
|
colorSecondaryHover: string;
|
|
124
132
|
colorSecondaryPressed: string;
|
|
133
|
+
colorSecondaryFocus: string;
|
|
134
|
+
colorSecondaryDisabled: string;
|
|
135
|
+
textColorSecondaryDisabled: string;
|
|
125
136
|
waveColorSecondary: string;
|
|
126
137
|
colorTertiary: string;
|
|
127
138
|
colorTertiaryHover: string;
|
|
128
139
|
colorTertiaryPressed: string;
|
|
140
|
+
colorTertiaryFocus: string;
|
|
129
141
|
colorTertiaryDisalbed: string;
|
|
130
142
|
waveColorTertiary: string;
|
|
131
143
|
textColorTextTertiary: string;
|
|
144
|
+
rippleColorTertiary: string;
|
|
132
145
|
colorQuaternary: string;
|
|
133
146
|
colorQuaternaryHover: string;
|
|
134
147
|
colorQuaternaryPressed: string;
|
|
148
|
+
colorQuaternaryFocus: string;
|
|
149
|
+
rippleColorQuaternary: string;
|
|
150
|
+
waveColorQuaternary: string;
|
|
135
151
|
color: string;
|
|
136
152
|
colorHover: string;
|
|
137
153
|
colorPressed: string;
|
|
@@ -97,8 +97,16 @@ export declare const timePickerProps: {
|
|
|
97
97
|
iconColorDisabled: 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
|
Button: import("../../_mixins").Theme<"Button", {
|
|
104
112
|
heightTiny: string;
|
|
@@ -121,16 +129,24 @@ export declare const timePickerProps: {
|
|
|
121
129
|
colorSecondary: string;
|
|
122
130
|
colorSecondaryHover: string;
|
|
123
131
|
colorSecondaryPressed: string;
|
|
132
|
+
colorSecondaryFocus: string;
|
|
133
|
+
colorSecondaryDisabled: string;
|
|
134
|
+
textColorSecondaryDisabled: string;
|
|
124
135
|
waveColorSecondary: string;
|
|
125
136
|
colorTertiary: string;
|
|
126
137
|
colorTertiaryHover: string;
|
|
127
138
|
colorTertiaryPressed: string;
|
|
139
|
+
colorTertiaryFocus: string;
|
|
128
140
|
colorTertiaryDisalbed: string;
|
|
129
141
|
waveColorTertiary: string;
|
|
130
142
|
textColorTextTertiary: string;
|
|
143
|
+
rippleColorTertiary: string;
|
|
131
144
|
colorQuaternary: string;
|
|
132
145
|
colorQuaternaryHover: string;
|
|
133
146
|
colorQuaternaryPressed: string;
|
|
147
|
+
colorQuaternaryFocus: string;
|
|
148
|
+
rippleColorQuaternary: string;
|
|
149
|
+
waveColorQuaternary: string;
|
|
134
150
|
color: string;
|
|
135
151
|
colorHover: string;
|
|
136
152
|
colorPressed: string;
|
|
@@ -395,8 +411,16 @@ export declare const timePickerProps: {
|
|
|
395
411
|
iconColorDisabled: string;
|
|
396
412
|
}, {
|
|
397
413
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
414
|
+
height: string;
|
|
415
|
+
width: string;
|
|
416
|
+
borderRadius: string;
|
|
398
417
|
color: string;
|
|
399
418
|
colorHover: string;
|
|
419
|
+
railInsetHorizontalBottom: string;
|
|
420
|
+
railInsetHorizontalTop: string;
|
|
421
|
+
railInsetVerticalRight: string;
|
|
422
|
+
railInsetVerticalLeft: string;
|
|
423
|
+
railColor: string;
|
|
400
424
|
}, any>;
|
|
401
425
|
Button: import("../../_mixins").Theme<"Button", {
|
|
402
426
|
heightTiny: string;
|
|
@@ -419,16 +443,24 @@ export declare const timePickerProps: {
|
|
|
419
443
|
colorSecondary: string;
|
|
420
444
|
colorSecondaryHover: string;
|
|
421
445
|
colorSecondaryPressed: string;
|
|
446
|
+
colorSecondaryFocus: string;
|
|
447
|
+
colorSecondaryDisabled: string;
|
|
448
|
+
textColorSecondaryDisabled: string;
|
|
422
449
|
waveColorSecondary: string;
|
|
423
450
|
colorTertiary: string;
|
|
424
451
|
colorTertiaryHover: string;
|
|
425
452
|
colorTertiaryPressed: string;
|
|
453
|
+
colorTertiaryFocus: string;
|
|
426
454
|
colorTertiaryDisalbed: string;
|
|
427
455
|
waveColorTertiary: string;
|
|
428
456
|
textColorTextTertiary: string;
|
|
457
|
+
rippleColorTertiary: string;
|
|
429
458
|
colorQuaternary: string;
|
|
430
459
|
colorQuaternaryHover: string;
|
|
431
460
|
colorQuaternaryPressed: string;
|
|
461
|
+
colorQuaternaryFocus: string;
|
|
462
|
+
rippleColorQuaternary: string;
|
|
463
|
+
waveColorQuaternary: string;
|
|
432
464
|
color: string;
|
|
433
465
|
colorHover: string;
|
|
434
466
|
colorPressed: string;
|
|
@@ -693,8 +725,16 @@ export declare const timePickerProps: {
|
|
|
693
725
|
iconColorDisabled: string;
|
|
694
726
|
}, {
|
|
695
727
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
728
|
+
height: string;
|
|
729
|
+
width: string;
|
|
730
|
+
borderRadius: string;
|
|
696
731
|
color: string;
|
|
697
732
|
colorHover: string;
|
|
733
|
+
railInsetHorizontalBottom: string;
|
|
734
|
+
railInsetHorizontalTop: string;
|
|
735
|
+
railInsetVerticalRight: string;
|
|
736
|
+
railInsetVerticalLeft: string;
|
|
737
|
+
railColor: string;
|
|
698
738
|
}, any>;
|
|
699
739
|
Button: import("../../_mixins").Theme<"Button", {
|
|
700
740
|
heightTiny: string;
|
|
@@ -717,16 +757,24 @@ export declare const timePickerProps: {
|
|
|
717
757
|
colorSecondary: string;
|
|
718
758
|
colorSecondaryHover: string;
|
|
719
759
|
colorSecondaryPressed: string;
|
|
760
|
+
colorSecondaryFocus: string;
|
|
761
|
+
colorSecondaryDisabled: string;
|
|
762
|
+
textColorSecondaryDisabled: string;
|
|
720
763
|
waveColorSecondary: string;
|
|
721
764
|
colorTertiary: string;
|
|
722
765
|
colorTertiaryHover: string;
|
|
723
766
|
colorTertiaryPressed: string;
|
|
767
|
+
colorTertiaryFocus: string;
|
|
724
768
|
colorTertiaryDisalbed: string;
|
|
725
769
|
waveColorTertiary: string;
|
|
726
770
|
textColorTextTertiary: string;
|
|
771
|
+
rippleColorTertiary: string;
|
|
727
772
|
colorQuaternary: string;
|
|
728
773
|
colorQuaternaryHover: string;
|
|
729
774
|
colorQuaternaryPressed: string;
|
|
775
|
+
colorQuaternaryFocus: string;
|
|
776
|
+
rippleColorQuaternary: string;
|
|
777
|
+
waveColorQuaternary: string;
|
|
730
778
|
color: string;
|
|
731
779
|
colorHover: string;
|
|
732
780
|
colorPressed: string;
|
|
@@ -1068,8 +1116,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1068
1116
|
iconColorDisabled: string;
|
|
1069
1117
|
}, {
|
|
1070
1118
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1119
|
+
height: string;
|
|
1120
|
+
width: string;
|
|
1121
|
+
borderRadius: string;
|
|
1071
1122
|
color: string;
|
|
1072
1123
|
colorHover: string;
|
|
1124
|
+
railInsetHorizontalBottom: string;
|
|
1125
|
+
railInsetHorizontalTop: string;
|
|
1126
|
+
railInsetVerticalRight: string;
|
|
1127
|
+
railInsetVerticalLeft: string;
|
|
1128
|
+
railColor: string;
|
|
1073
1129
|
}, any>;
|
|
1074
1130
|
Button: import("../../_mixins").Theme<"Button", {
|
|
1075
1131
|
heightTiny: string;
|
|
@@ -1092,16 +1148,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1092
1148
|
colorSecondary: string;
|
|
1093
1149
|
colorSecondaryHover: string;
|
|
1094
1150
|
colorSecondaryPressed: string;
|
|
1151
|
+
colorSecondaryFocus: string;
|
|
1152
|
+
colorSecondaryDisabled: string;
|
|
1153
|
+
textColorSecondaryDisabled: string;
|
|
1095
1154
|
waveColorSecondary: string;
|
|
1096
1155
|
colorTertiary: string;
|
|
1097
1156
|
colorTertiaryHover: string;
|
|
1098
1157
|
colorTertiaryPressed: string;
|
|
1158
|
+
colorTertiaryFocus: string;
|
|
1099
1159
|
colorTertiaryDisalbed: string;
|
|
1100
1160
|
waveColorTertiary: string;
|
|
1101
1161
|
textColorTextTertiary: string;
|
|
1162
|
+
rippleColorTertiary: string;
|
|
1102
1163
|
colorQuaternary: string;
|
|
1103
1164
|
colorQuaternaryHover: string;
|
|
1104
1165
|
colorQuaternaryPressed: string;
|
|
1166
|
+
colorQuaternaryFocus: string;
|
|
1167
|
+
rippleColorQuaternary: string;
|
|
1168
|
+
waveColorQuaternary: string;
|
|
1105
1169
|
color: string;
|
|
1106
1170
|
colorHover: string;
|
|
1107
1171
|
colorPressed: string;
|
|
@@ -1366,8 +1430,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1366
1430
|
iconColorDisabled: string;
|
|
1367
1431
|
}, {
|
|
1368
1432
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1433
|
+
height: string;
|
|
1434
|
+
width: string;
|
|
1435
|
+
borderRadius: string;
|
|
1369
1436
|
color: string;
|
|
1370
1437
|
colorHover: string;
|
|
1438
|
+
railInsetHorizontalBottom: string;
|
|
1439
|
+
railInsetHorizontalTop: string;
|
|
1440
|
+
railInsetVerticalRight: string;
|
|
1441
|
+
railInsetVerticalLeft: string;
|
|
1442
|
+
railColor: string;
|
|
1371
1443
|
}, any>;
|
|
1372
1444
|
Button: import("../../_mixins").Theme<"Button", {
|
|
1373
1445
|
heightTiny: string;
|
|
@@ -1390,16 +1462,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1390
1462
|
colorSecondary: string;
|
|
1391
1463
|
colorSecondaryHover: string;
|
|
1392
1464
|
colorSecondaryPressed: string;
|
|
1465
|
+
colorSecondaryFocus: string;
|
|
1466
|
+
colorSecondaryDisabled: string;
|
|
1467
|
+
textColorSecondaryDisabled: string;
|
|
1393
1468
|
waveColorSecondary: string;
|
|
1394
1469
|
colorTertiary: string;
|
|
1395
1470
|
colorTertiaryHover: string;
|
|
1396
1471
|
colorTertiaryPressed: string;
|
|
1472
|
+
colorTertiaryFocus: string;
|
|
1397
1473
|
colorTertiaryDisalbed: string;
|
|
1398
1474
|
waveColorTertiary: string;
|
|
1399
1475
|
textColorTextTertiary: string;
|
|
1476
|
+
rippleColorTertiary: string;
|
|
1400
1477
|
colorQuaternary: string;
|
|
1401
1478
|
colorQuaternaryHover: string;
|
|
1402
1479
|
colorQuaternaryPressed: string;
|
|
1480
|
+
colorQuaternaryFocus: string;
|
|
1481
|
+
rippleColorQuaternary: string;
|
|
1482
|
+
waveColorQuaternary: string;
|
|
1403
1483
|
color: string;
|
|
1404
1484
|
colorHover: string;
|
|
1405
1485
|
colorPressed: string;
|
|
@@ -1664,8 +1744,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1664
1744
|
iconColorDisabled: string;
|
|
1665
1745
|
}, {
|
|
1666
1746
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1747
|
+
height: string;
|
|
1748
|
+
width: string;
|
|
1749
|
+
borderRadius: string;
|
|
1667
1750
|
color: string;
|
|
1668
1751
|
colorHover: string;
|
|
1752
|
+
railInsetHorizontalBottom: string;
|
|
1753
|
+
railInsetHorizontalTop: string;
|
|
1754
|
+
railInsetVerticalRight: string;
|
|
1755
|
+
railInsetVerticalLeft: string;
|
|
1756
|
+
railColor: string;
|
|
1669
1757
|
}, any>;
|
|
1670
1758
|
Button: import("../../_mixins").Theme<"Button", {
|
|
1671
1759
|
heightTiny: string;
|
|
@@ -1688,16 +1776,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1688
1776
|
colorSecondary: string;
|
|
1689
1777
|
colorSecondaryHover: string;
|
|
1690
1778
|
colorSecondaryPressed: string;
|
|
1779
|
+
colorSecondaryFocus: string;
|
|
1780
|
+
colorSecondaryDisabled: string;
|
|
1781
|
+
textColorSecondaryDisabled: string;
|
|
1691
1782
|
waveColorSecondary: string;
|
|
1692
1783
|
colorTertiary: string;
|
|
1693
1784
|
colorTertiaryHover: string;
|
|
1694
1785
|
colorTertiaryPressed: string;
|
|
1786
|
+
colorTertiaryFocus: string;
|
|
1695
1787
|
colorTertiaryDisalbed: string;
|
|
1696
1788
|
waveColorTertiary: string;
|
|
1697
1789
|
textColorTextTertiary: string;
|
|
1790
|
+
rippleColorTertiary: string;
|
|
1698
1791
|
colorQuaternary: string;
|
|
1699
1792
|
colorQuaternaryHover: string;
|
|
1700
1793
|
colorQuaternaryPressed: string;
|
|
1794
|
+
colorQuaternaryFocus: string;
|
|
1795
|
+
rippleColorQuaternary: string;
|
|
1796
|
+
waveColorQuaternary: string;
|
|
1701
1797
|
color: string;
|
|
1702
1798
|
colorHover: string;
|
|
1703
1799
|
colorPressed: string;
|
|
@@ -2079,8 +2175,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2079
2175
|
};
|
|
2080
2176
|
peers: {
|
|
2081
2177
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2178
|
+
height: string;
|
|
2179
|
+
width: string;
|
|
2180
|
+
borderRadius: string;
|
|
2082
2181
|
color: string;
|
|
2083
2182
|
colorHover: string;
|
|
2183
|
+
railInsetHorizontalBottom: string;
|
|
2184
|
+
railInsetHorizontalTop: string;
|
|
2185
|
+
railInsetVerticalRight: string;
|
|
2186
|
+
railInsetVerticalLeft: string;
|
|
2187
|
+
railColor: string;
|
|
2084
2188
|
}, any>;
|
|
2085
2189
|
Button: import("../../_mixins").Theme<"Button", {
|
|
2086
2190
|
heightTiny: string;
|
|
@@ -2103,16 +2207,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2103
2207
|
colorSecondary: string;
|
|
2104
2208
|
colorSecondaryHover: string;
|
|
2105
2209
|
colorSecondaryPressed: string;
|
|
2210
|
+
colorSecondaryFocus: string;
|
|
2211
|
+
colorSecondaryDisabled: string;
|
|
2212
|
+
textColorSecondaryDisabled: string;
|
|
2106
2213
|
waveColorSecondary: string;
|
|
2107
2214
|
colorTertiary: string;
|
|
2108
2215
|
colorTertiaryHover: string;
|
|
2109
2216
|
colorTertiaryPressed: string;
|
|
2217
|
+
colorTertiaryFocus: string;
|
|
2110
2218
|
colorTertiaryDisalbed: string;
|
|
2111
2219
|
waveColorTertiary: string;
|
|
2112
2220
|
textColorTextTertiary: string;
|
|
2221
|
+
rippleColorTertiary: string;
|
|
2113
2222
|
colorQuaternary: string;
|
|
2114
2223
|
colorQuaternaryHover: string;
|
|
2115
2224
|
colorQuaternaryPressed: string;
|
|
2225
|
+
colorQuaternaryFocus: string;
|
|
2226
|
+
rippleColorQuaternary: string;
|
|
2227
|
+
waveColorQuaternary: string;
|
|
2116
2228
|
color: string;
|
|
2117
2229
|
colorHover: string;
|
|
2118
2230
|
colorPressed: string;
|
|
@@ -2496,8 +2608,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2496
2608
|
iconColorDisabled: string;
|
|
2497
2609
|
}, {
|
|
2498
2610
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2611
|
+
height: string;
|
|
2612
|
+
width: string;
|
|
2613
|
+
borderRadius: string;
|
|
2499
2614
|
color: string;
|
|
2500
2615
|
colorHover: string;
|
|
2616
|
+
railInsetHorizontalBottom: string;
|
|
2617
|
+
railInsetHorizontalTop: string;
|
|
2618
|
+
railInsetVerticalRight: string;
|
|
2619
|
+
railInsetVerticalLeft: string;
|
|
2620
|
+
railColor: string;
|
|
2501
2621
|
}, any>;
|
|
2502
2622
|
Button: import("../../_mixins").Theme<"Button", {
|
|
2503
2623
|
heightTiny: string;
|
|
@@ -2520,16 +2640,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2520
2640
|
colorSecondary: string;
|
|
2521
2641
|
colorSecondaryHover: string;
|
|
2522
2642
|
colorSecondaryPressed: string;
|
|
2643
|
+
colorSecondaryFocus: string;
|
|
2644
|
+
colorSecondaryDisabled: string;
|
|
2645
|
+
textColorSecondaryDisabled: string;
|
|
2523
2646
|
waveColorSecondary: string;
|
|
2524
2647
|
colorTertiary: string;
|
|
2525
2648
|
colorTertiaryHover: string;
|
|
2526
2649
|
colorTertiaryPressed: string;
|
|
2650
|
+
colorTertiaryFocus: string;
|
|
2527
2651
|
colorTertiaryDisalbed: string;
|
|
2528
2652
|
waveColorTertiary: string;
|
|
2529
2653
|
textColorTextTertiary: string;
|
|
2654
|
+
rippleColorTertiary: string;
|
|
2530
2655
|
colorQuaternary: string;
|
|
2531
2656
|
colorQuaternaryHover: string;
|
|
2532
2657
|
colorQuaternaryPressed: string;
|
|
2658
|
+
colorQuaternaryFocus: string;
|
|
2659
|
+
rippleColorQuaternary: string;
|
|
2660
|
+
waveColorQuaternary: string;
|
|
2533
2661
|
color: string;
|
|
2534
2662
|
colorHover: string;
|
|
2535
2663
|
colorPressed: string;
|
|
@@ -2794,8 +2922,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2794
2922
|
iconColorDisabled: string;
|
|
2795
2923
|
}, {
|
|
2796
2924
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2925
|
+
height: string;
|
|
2926
|
+
width: string;
|
|
2927
|
+
borderRadius: string;
|
|
2797
2928
|
color: string;
|
|
2798
2929
|
colorHover: string;
|
|
2930
|
+
railInsetHorizontalBottom: string;
|
|
2931
|
+
railInsetHorizontalTop: string;
|
|
2932
|
+
railInsetVerticalRight: string;
|
|
2933
|
+
railInsetVerticalLeft: string;
|
|
2934
|
+
railColor: string;
|
|
2799
2935
|
}, any>;
|
|
2800
2936
|
Button: import("../../_mixins").Theme<"Button", {
|
|
2801
2937
|
heightTiny: string;
|
|
@@ -2818,16 +2954,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2818
2954
|
colorSecondary: string;
|
|
2819
2955
|
colorSecondaryHover: string;
|
|
2820
2956
|
colorSecondaryPressed: string;
|
|
2957
|
+
colorSecondaryFocus: string;
|
|
2958
|
+
colorSecondaryDisabled: string;
|
|
2959
|
+
textColorSecondaryDisabled: string;
|
|
2821
2960
|
waveColorSecondary: string;
|
|
2822
2961
|
colorTertiary: string;
|
|
2823
2962
|
colorTertiaryHover: string;
|
|
2824
2963
|
colorTertiaryPressed: string;
|
|
2964
|
+
colorTertiaryFocus: string;
|
|
2825
2965
|
colorTertiaryDisalbed: string;
|
|
2826
2966
|
waveColorTertiary: string;
|
|
2827
2967
|
textColorTextTertiary: string;
|
|
2968
|
+
rippleColorTertiary: string;
|
|
2828
2969
|
colorQuaternary: string;
|
|
2829
2970
|
colorQuaternaryHover: string;
|
|
2830
2971
|
colorQuaternaryPressed: string;
|
|
2972
|
+
colorQuaternaryFocus: string;
|
|
2973
|
+
rippleColorQuaternary: string;
|
|
2974
|
+
waveColorQuaternary: string;
|
|
2831
2975
|
color: string;
|
|
2832
2976
|
colorHover: string;
|
|
2833
2977
|
colorPressed: string;
|
|
@@ -3092,8 +3236,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3092
3236
|
iconColorDisabled: string;
|
|
3093
3237
|
}, {
|
|
3094
3238
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3239
|
+
height: string;
|
|
3240
|
+
width: string;
|
|
3241
|
+
borderRadius: string;
|
|
3095
3242
|
color: string;
|
|
3096
3243
|
colorHover: string;
|
|
3244
|
+
railInsetHorizontalBottom: string;
|
|
3245
|
+
railInsetHorizontalTop: string;
|
|
3246
|
+
railInsetVerticalRight: string;
|
|
3247
|
+
railInsetVerticalLeft: string;
|
|
3248
|
+
railColor: string;
|
|
3097
3249
|
}, any>;
|
|
3098
3250
|
Button: import("../../_mixins").Theme<"Button", {
|
|
3099
3251
|
heightTiny: string;
|
|
@@ -3116,16 +3268,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3116
3268
|
colorSecondary: string;
|
|
3117
3269
|
colorSecondaryHover: string;
|
|
3118
3270
|
colorSecondaryPressed: string;
|
|
3271
|
+
colorSecondaryFocus: string;
|
|
3272
|
+
colorSecondaryDisabled: string;
|
|
3273
|
+
textColorSecondaryDisabled: string;
|
|
3119
3274
|
waveColorSecondary: string;
|
|
3120
3275
|
colorTertiary: string;
|
|
3121
3276
|
colorTertiaryHover: string;
|
|
3122
3277
|
colorTertiaryPressed: string;
|
|
3278
|
+
colorTertiaryFocus: string;
|
|
3123
3279
|
colorTertiaryDisalbed: string;
|
|
3124
3280
|
waveColorTertiary: string;
|
|
3125
3281
|
textColorTextTertiary: string;
|
|
3282
|
+
rippleColorTertiary: string;
|
|
3126
3283
|
colorQuaternary: string;
|
|
3127
3284
|
colorQuaternaryHover: string;
|
|
3128
3285
|
colorQuaternaryPressed: string;
|
|
3286
|
+
colorQuaternaryFocus: string;
|
|
3287
|
+
rippleColorQuaternary: string;
|
|
3288
|
+
waveColorQuaternary: string;
|
|
3129
3289
|
color: string;
|
|
3130
3290
|
colorHover: string;
|
|
3131
3291
|
colorPressed: string;
|