@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
|
@@ -59,7 +59,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
calendarValue: import("vue").Ref<number>;
|
|
60
60
|
onUpdateCalendarValue: (value: number) => void;
|
|
61
61
|
yearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
62
|
-
yearVlRef: import("vue").Ref<import("vueuc").
|
|
62
|
+
yearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
|
|
63
63
|
mergedTheme: import("vue").Ref<{
|
|
64
64
|
common: import("../../..").ThemeCommonVars;
|
|
65
65
|
self: {
|
|
@@ -247,16 +247,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
247
247
|
colorSecondary: string;
|
|
248
248
|
colorSecondaryHover: string;
|
|
249
249
|
colorSecondaryPressed: string;
|
|
250
|
+
colorSecondaryFocus: string;
|
|
251
|
+
colorSecondaryDisabled: string;
|
|
252
|
+
textColorSecondaryDisabled: string;
|
|
250
253
|
waveColorSecondary: string;
|
|
251
254
|
colorTertiary: string;
|
|
252
255
|
colorTertiaryHover: string;
|
|
253
256
|
colorTertiaryPressed: string;
|
|
257
|
+
colorTertiaryFocus: string;
|
|
254
258
|
colorTertiaryDisalbed: string;
|
|
255
259
|
waveColorTertiary: string;
|
|
256
260
|
textColorTextTertiary: string;
|
|
261
|
+
rippleColorTertiary: string;
|
|
257
262
|
colorQuaternary: string;
|
|
258
263
|
colorQuaternaryHover: string;
|
|
259
264
|
colorQuaternaryPressed: string;
|
|
265
|
+
colorQuaternaryFocus: string;
|
|
266
|
+
rippleColorQuaternary: string;
|
|
267
|
+
waveColorQuaternary: string;
|
|
260
268
|
color: string;
|
|
261
269
|
colorHover: string;
|
|
262
270
|
colorPressed: string;
|
|
@@ -456,8 +464,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
456
464
|
iconColorDisabled: string;
|
|
457
465
|
}, {
|
|
458
466
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
467
|
+
height: string;
|
|
468
|
+
width: string;
|
|
469
|
+
borderRadius: string;
|
|
459
470
|
color: string;
|
|
460
471
|
colorHover: string;
|
|
472
|
+
railInsetHorizontalBottom: string;
|
|
473
|
+
railInsetHorizontalTop: string;
|
|
474
|
+
railInsetVerticalRight: string;
|
|
475
|
+
railInsetVerticalLeft: string;
|
|
476
|
+
railColor: string;
|
|
461
477
|
}, any>;
|
|
462
478
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
463
479
|
heightTiny: string;
|
|
@@ -480,16 +496,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
480
496
|
colorSecondary: string;
|
|
481
497
|
colorSecondaryHover: string;
|
|
482
498
|
colorSecondaryPressed: string;
|
|
499
|
+
colorSecondaryFocus: string;
|
|
500
|
+
colorSecondaryDisabled: string;
|
|
501
|
+
textColorSecondaryDisabled: string;
|
|
483
502
|
waveColorSecondary: string;
|
|
484
503
|
colorTertiary: string;
|
|
485
504
|
colorTertiaryHover: string;
|
|
486
505
|
colorTertiaryPressed: string;
|
|
506
|
+
colorTertiaryFocus: string;
|
|
487
507
|
colorTertiaryDisalbed: string;
|
|
488
508
|
waveColorTertiary: string;
|
|
489
509
|
textColorTextTertiary: string;
|
|
510
|
+
rippleColorTertiary: string;
|
|
490
511
|
colorQuaternary: string;
|
|
491
512
|
colorQuaternaryHover: string;
|
|
492
513
|
colorQuaternaryPressed: string;
|
|
514
|
+
colorQuaternaryFocus: string;
|
|
515
|
+
rippleColorQuaternary: string;
|
|
516
|
+
waveColorQuaternary: string;
|
|
493
517
|
color: string;
|
|
494
518
|
colorHover: string;
|
|
495
519
|
colorPressed: string;
|
|
@@ -736,8 +760,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
736
760
|
}, any>;
|
|
737
761
|
}>;
|
|
738
762
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
763
|
+
height: string;
|
|
764
|
+
width: string;
|
|
765
|
+
borderRadius: string;
|
|
739
766
|
color: string;
|
|
740
767
|
colorHover: string;
|
|
768
|
+
railInsetHorizontalBottom: string;
|
|
769
|
+
railInsetHorizontalTop: string;
|
|
770
|
+
railInsetVerticalRight: string;
|
|
771
|
+
railInsetVerticalLeft: string;
|
|
772
|
+
railColor: string;
|
|
741
773
|
}, any>;
|
|
742
774
|
};
|
|
743
775
|
peerOverrides: {
|
|
@@ -754,8 +786,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
754
786
|
TimePicker?: {
|
|
755
787
|
peers?: {
|
|
756
788
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
789
|
+
height: string;
|
|
790
|
+
width: string;
|
|
791
|
+
borderRadius: string;
|
|
757
792
|
color: string;
|
|
758
793
|
colorHover: string;
|
|
794
|
+
railInsetHorizontalBottom: string;
|
|
795
|
+
railInsetHorizontalTop: string;
|
|
796
|
+
railInsetVerticalRight: string;
|
|
797
|
+
railInsetVerticalLeft: string;
|
|
798
|
+
railColor: string;
|
|
759
799
|
}, any>> | undefined;
|
|
760
800
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
761
801
|
heightTiny: string;
|
|
@@ -778,16 +818,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
778
818
|
colorSecondary: string;
|
|
779
819
|
colorSecondaryHover: string;
|
|
780
820
|
colorSecondaryPressed: string;
|
|
821
|
+
colorSecondaryFocus: string;
|
|
822
|
+
colorSecondaryDisabled: string;
|
|
823
|
+
textColorSecondaryDisabled: string;
|
|
781
824
|
waveColorSecondary: string;
|
|
782
825
|
colorTertiary: string;
|
|
783
826
|
colorTertiaryHover: string;
|
|
784
827
|
colorTertiaryPressed: string;
|
|
828
|
+
colorTertiaryFocus: string;
|
|
785
829
|
colorTertiaryDisalbed: string;
|
|
786
830
|
waveColorTertiary: string;
|
|
787
831
|
textColorTextTertiary: string;
|
|
832
|
+
rippleColorTertiary: string;
|
|
788
833
|
colorQuaternary: string;
|
|
789
834
|
colorQuaternaryHover: string;
|
|
790
835
|
colorQuaternaryPressed: string;
|
|
836
|
+
colorQuaternaryFocus: string;
|
|
837
|
+
rippleColorQuaternary: string;
|
|
838
|
+
waveColorQuaternary: string;
|
|
791
839
|
color: string;
|
|
792
840
|
colorHover: string;
|
|
793
841
|
colorPressed: string;
|
|
@@ -72,8 +72,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
72
72
|
endYearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
73
73
|
startMonthScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
74
74
|
endMonthScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
75
|
-
startYearVlRef: import("vue").Ref<import("vueuc").
|
|
76
|
-
endYearVlRef: import("vue").Ref<import("vueuc").
|
|
75
|
+
startYearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
|
|
76
|
+
endYearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
|
|
77
77
|
isDateDisabled: import("vue").Ref<import("../interface").IsDateDisabled | undefined>;
|
|
78
78
|
isStartHourDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsHourDisabled | undefined>;
|
|
79
79
|
isEndHourDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsHourDisabled | undefined>;
|
|
@@ -275,16 +275,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
275
275
|
colorSecondary: string;
|
|
276
276
|
colorSecondaryHover: string;
|
|
277
277
|
colorSecondaryPressed: string;
|
|
278
|
+
colorSecondaryFocus: string;
|
|
279
|
+
colorSecondaryDisabled: string;
|
|
280
|
+
textColorSecondaryDisabled: string;
|
|
278
281
|
waveColorSecondary: string;
|
|
279
282
|
colorTertiary: string;
|
|
280
283
|
colorTertiaryHover: string;
|
|
281
284
|
colorTertiaryPressed: string;
|
|
285
|
+
colorTertiaryFocus: string;
|
|
282
286
|
colorTertiaryDisalbed: string;
|
|
283
287
|
waveColorTertiary: string;
|
|
284
288
|
textColorTextTertiary: string;
|
|
289
|
+
rippleColorTertiary: string;
|
|
285
290
|
colorQuaternary: string;
|
|
286
291
|
colorQuaternaryHover: string;
|
|
287
292
|
colorQuaternaryPressed: string;
|
|
293
|
+
colorQuaternaryFocus: string;
|
|
294
|
+
rippleColorQuaternary: string;
|
|
295
|
+
waveColorQuaternary: string;
|
|
288
296
|
color: string;
|
|
289
297
|
colorHover: string;
|
|
290
298
|
colorPressed: string;
|
|
@@ -484,8 +492,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
484
492
|
iconColorDisabled: string;
|
|
485
493
|
}, {
|
|
486
494
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
495
|
+
height: string;
|
|
496
|
+
width: string;
|
|
497
|
+
borderRadius: string;
|
|
487
498
|
color: string;
|
|
488
499
|
colorHover: string;
|
|
500
|
+
railInsetHorizontalBottom: string;
|
|
501
|
+
railInsetHorizontalTop: string;
|
|
502
|
+
railInsetVerticalRight: string;
|
|
503
|
+
railInsetVerticalLeft: string;
|
|
504
|
+
railColor: string;
|
|
489
505
|
}, any>;
|
|
490
506
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
491
507
|
heightTiny: string;
|
|
@@ -508,16 +524,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
508
524
|
colorSecondary: string;
|
|
509
525
|
colorSecondaryHover: string;
|
|
510
526
|
colorSecondaryPressed: string;
|
|
527
|
+
colorSecondaryFocus: string;
|
|
528
|
+
colorSecondaryDisabled: string;
|
|
529
|
+
textColorSecondaryDisabled: string;
|
|
511
530
|
waveColorSecondary: string;
|
|
512
531
|
colorTertiary: string;
|
|
513
532
|
colorTertiaryHover: string;
|
|
514
533
|
colorTertiaryPressed: string;
|
|
534
|
+
colorTertiaryFocus: string;
|
|
515
535
|
colorTertiaryDisalbed: string;
|
|
516
536
|
waveColorTertiary: string;
|
|
517
537
|
textColorTextTertiary: string;
|
|
538
|
+
rippleColorTertiary: string;
|
|
518
539
|
colorQuaternary: string;
|
|
519
540
|
colorQuaternaryHover: string;
|
|
520
541
|
colorQuaternaryPressed: string;
|
|
542
|
+
colorQuaternaryFocus: string;
|
|
543
|
+
rippleColorQuaternary: string;
|
|
544
|
+
waveColorQuaternary: string;
|
|
521
545
|
color: string;
|
|
522
546
|
colorHover: string;
|
|
523
547
|
colorPressed: string;
|
|
@@ -764,8 +788,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
764
788
|
}, any>;
|
|
765
789
|
}>;
|
|
766
790
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
791
|
+
height: string;
|
|
792
|
+
width: string;
|
|
793
|
+
borderRadius: string;
|
|
767
794
|
color: string;
|
|
768
795
|
colorHover: string;
|
|
796
|
+
railInsetHorizontalBottom: string;
|
|
797
|
+
railInsetHorizontalTop: string;
|
|
798
|
+
railInsetVerticalRight: string;
|
|
799
|
+
railInsetVerticalLeft: string;
|
|
800
|
+
railColor: string;
|
|
769
801
|
}, any>;
|
|
770
802
|
};
|
|
771
803
|
peerOverrides: {
|
|
@@ -782,8 +814,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
782
814
|
TimePicker?: {
|
|
783
815
|
peers?: {
|
|
784
816
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
817
|
+
height: string;
|
|
818
|
+
width: string;
|
|
819
|
+
borderRadius: string;
|
|
785
820
|
color: string;
|
|
786
821
|
colorHover: string;
|
|
822
|
+
railInsetHorizontalBottom: string;
|
|
823
|
+
railInsetHorizontalTop: string;
|
|
824
|
+
railInsetVerticalRight: string;
|
|
825
|
+
railInsetVerticalLeft: string;
|
|
826
|
+
railColor: string;
|
|
787
827
|
}, any>> | undefined;
|
|
788
828
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
789
829
|
heightTiny: string;
|
|
@@ -806,16 +846,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
806
846
|
colorSecondary: string;
|
|
807
847
|
colorSecondaryHover: string;
|
|
808
848
|
colorSecondaryPressed: string;
|
|
849
|
+
colorSecondaryFocus: string;
|
|
850
|
+
colorSecondaryDisabled: string;
|
|
851
|
+
textColorSecondaryDisabled: string;
|
|
809
852
|
waveColorSecondary: string;
|
|
810
853
|
colorTertiary: string;
|
|
811
854
|
colorTertiaryHover: string;
|
|
812
855
|
colorTertiaryPressed: string;
|
|
856
|
+
colorTertiaryFocus: string;
|
|
813
857
|
colorTertiaryDisalbed: string;
|
|
814
858
|
waveColorTertiary: string;
|
|
815
859
|
textColorTextTertiary: string;
|
|
860
|
+
rippleColorTertiary: string;
|
|
816
861
|
colorQuaternary: string;
|
|
817
862
|
colorQuaternaryHover: string;
|
|
818
863
|
colorQuaternaryPressed: string;
|
|
864
|
+
colorQuaternaryFocus: string;
|
|
865
|
+
rippleColorQuaternary: string;
|
|
866
|
+
waveColorQuaternary: string;
|
|
819
867
|
color: string;
|
|
820
868
|
colorHover: string;
|
|
821
869
|
colorPressed: string;
|
|
@@ -52,7 +52,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
52
52
|
calendarValue: import("vue").Ref<number>;
|
|
53
53
|
onUpdateCalendarValue: (value: number) => void;
|
|
54
54
|
yearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
55
|
-
yearVlRef: import("vue").Ref<import("vueuc").
|
|
55
|
+
yearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
|
|
56
56
|
mergedTheme: import("vue").Ref<{
|
|
57
57
|
common: import("../../..").ThemeCommonVars;
|
|
58
58
|
self: {
|
|
@@ -240,16 +240,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
240
240
|
colorSecondary: string;
|
|
241
241
|
colorSecondaryHover: string;
|
|
242
242
|
colorSecondaryPressed: string;
|
|
243
|
+
colorSecondaryFocus: string;
|
|
244
|
+
colorSecondaryDisabled: string;
|
|
245
|
+
textColorSecondaryDisabled: string;
|
|
243
246
|
waveColorSecondary: string;
|
|
244
247
|
colorTertiary: string;
|
|
245
248
|
colorTertiaryHover: string;
|
|
246
249
|
colorTertiaryPressed: string;
|
|
250
|
+
colorTertiaryFocus: string;
|
|
247
251
|
colorTertiaryDisalbed: string;
|
|
248
252
|
waveColorTertiary: string;
|
|
249
253
|
textColorTextTertiary: string;
|
|
254
|
+
rippleColorTertiary: string;
|
|
250
255
|
colorQuaternary: string;
|
|
251
256
|
colorQuaternaryHover: string;
|
|
252
257
|
colorQuaternaryPressed: string;
|
|
258
|
+
colorQuaternaryFocus: string;
|
|
259
|
+
rippleColorQuaternary: string;
|
|
260
|
+
waveColorQuaternary: string;
|
|
253
261
|
color: string;
|
|
254
262
|
colorHover: string;
|
|
255
263
|
colorPressed: string;
|
|
@@ -449,8 +457,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
449
457
|
iconColorDisabled: string;
|
|
450
458
|
}, {
|
|
451
459
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
460
|
+
height: string;
|
|
461
|
+
width: string;
|
|
462
|
+
borderRadius: string;
|
|
452
463
|
color: string;
|
|
453
464
|
colorHover: string;
|
|
465
|
+
railInsetHorizontalBottom: string;
|
|
466
|
+
railInsetHorizontalTop: string;
|
|
467
|
+
railInsetVerticalRight: string;
|
|
468
|
+
railInsetVerticalLeft: string;
|
|
469
|
+
railColor: string;
|
|
454
470
|
}, any>;
|
|
455
471
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
456
472
|
heightTiny: string;
|
|
@@ -473,16 +489,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
473
489
|
colorSecondary: string;
|
|
474
490
|
colorSecondaryHover: string;
|
|
475
491
|
colorSecondaryPressed: string;
|
|
492
|
+
colorSecondaryFocus: string;
|
|
493
|
+
colorSecondaryDisabled: string;
|
|
494
|
+
textColorSecondaryDisabled: string;
|
|
476
495
|
waveColorSecondary: string;
|
|
477
496
|
colorTertiary: string;
|
|
478
497
|
colorTertiaryHover: string;
|
|
479
498
|
colorTertiaryPressed: string;
|
|
499
|
+
colorTertiaryFocus: string;
|
|
480
500
|
colorTertiaryDisalbed: string;
|
|
481
501
|
waveColorTertiary: string;
|
|
482
502
|
textColorTextTertiary: string;
|
|
503
|
+
rippleColorTertiary: string;
|
|
483
504
|
colorQuaternary: string;
|
|
484
505
|
colorQuaternaryHover: string;
|
|
485
506
|
colorQuaternaryPressed: string;
|
|
507
|
+
colorQuaternaryFocus: string;
|
|
508
|
+
rippleColorQuaternary: string;
|
|
509
|
+
waveColorQuaternary: string;
|
|
486
510
|
color: string;
|
|
487
511
|
colorHover: string;
|
|
488
512
|
colorPressed: string;
|
|
@@ -729,8 +753,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
729
753
|
}, any>;
|
|
730
754
|
}>;
|
|
731
755
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
756
|
+
height: string;
|
|
757
|
+
width: string;
|
|
758
|
+
borderRadius: string;
|
|
732
759
|
color: string;
|
|
733
760
|
colorHover: string;
|
|
761
|
+
railInsetHorizontalBottom: string;
|
|
762
|
+
railInsetHorizontalTop: string;
|
|
763
|
+
railInsetVerticalRight: string;
|
|
764
|
+
railInsetVerticalLeft: string;
|
|
765
|
+
railColor: string;
|
|
734
766
|
}, any>;
|
|
735
767
|
};
|
|
736
768
|
peerOverrides: {
|
|
@@ -747,8 +779,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
747
779
|
TimePicker?: {
|
|
748
780
|
peers?: {
|
|
749
781
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
782
|
+
height: string;
|
|
783
|
+
width: string;
|
|
784
|
+
borderRadius: string;
|
|
750
785
|
color: string;
|
|
751
786
|
colorHover: string;
|
|
787
|
+
railInsetHorizontalBottom: string;
|
|
788
|
+
railInsetHorizontalTop: string;
|
|
789
|
+
railInsetVerticalRight: string;
|
|
790
|
+
railInsetVerticalLeft: string;
|
|
791
|
+
railColor: string;
|
|
752
792
|
}, any>> | undefined;
|
|
753
793
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
754
794
|
heightTiny: string;
|
|
@@ -771,16 +811,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
771
811
|
colorSecondary: string;
|
|
772
812
|
colorSecondaryHover: string;
|
|
773
813
|
colorSecondaryPressed: string;
|
|
814
|
+
colorSecondaryFocus: string;
|
|
815
|
+
colorSecondaryDisabled: string;
|
|
816
|
+
textColorSecondaryDisabled: string;
|
|
774
817
|
waveColorSecondary: string;
|
|
775
818
|
colorTertiary: string;
|
|
776
819
|
colorTertiaryHover: string;
|
|
777
820
|
colorTertiaryPressed: string;
|
|
821
|
+
colorTertiaryFocus: string;
|
|
778
822
|
colorTertiaryDisalbed: string;
|
|
779
823
|
waveColorTertiary: string;
|
|
780
824
|
textColorTextTertiary: string;
|
|
825
|
+
rippleColorTertiary: string;
|
|
781
826
|
colorQuaternary: string;
|
|
782
827
|
colorQuaternaryHover: string;
|
|
783
828
|
colorQuaternaryPressed: string;
|
|
829
|
+
colorQuaternaryFocus: string;
|
|
830
|
+
rippleColorQuaternary: string;
|
|
831
|
+
waveColorQuaternary: string;
|
|
784
832
|
color: string;
|
|
785
833
|
colorHover: string;
|
|
786
834
|
colorPressed: string;
|
|
@@ -63,8 +63,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
63
63
|
endYearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
64
64
|
startMonthScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
65
65
|
endMonthScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
66
|
-
startYearVlRef: import("vue").Ref<import("vueuc").
|
|
67
|
-
endYearVlRef: import("vue").Ref<import("vueuc").
|
|
66
|
+
startYearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
|
|
67
|
+
endYearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
|
|
68
68
|
isDateDisabled: import("vue").Ref<import("../interface").IsDateDisabled | undefined>;
|
|
69
69
|
isStartHourDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsHourDisabled | undefined>;
|
|
70
70
|
isEndHourDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsHourDisabled | undefined>;
|
|
@@ -266,16 +266,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
266
266
|
colorSecondary: string;
|
|
267
267
|
colorSecondaryHover: string;
|
|
268
268
|
colorSecondaryPressed: string;
|
|
269
|
+
colorSecondaryFocus: string;
|
|
270
|
+
colorSecondaryDisabled: string;
|
|
271
|
+
textColorSecondaryDisabled: string;
|
|
269
272
|
waveColorSecondary: string;
|
|
270
273
|
colorTertiary: string;
|
|
271
274
|
colorTertiaryHover: string;
|
|
272
275
|
colorTertiaryPressed: string;
|
|
276
|
+
colorTertiaryFocus: string;
|
|
273
277
|
colorTertiaryDisalbed: string;
|
|
274
278
|
waveColorTertiary: string;
|
|
275
279
|
textColorTextTertiary: string;
|
|
280
|
+
rippleColorTertiary: string;
|
|
276
281
|
colorQuaternary: string;
|
|
277
282
|
colorQuaternaryHover: string;
|
|
278
283
|
colorQuaternaryPressed: string;
|
|
284
|
+
colorQuaternaryFocus: string;
|
|
285
|
+
rippleColorQuaternary: string;
|
|
286
|
+
waveColorQuaternary: string;
|
|
279
287
|
color: string;
|
|
280
288
|
colorHover: string;
|
|
281
289
|
colorPressed: string;
|
|
@@ -475,8 +483,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
475
483
|
iconColorDisabled: string;
|
|
476
484
|
}, {
|
|
477
485
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
486
|
+
height: string;
|
|
487
|
+
width: string;
|
|
488
|
+
borderRadius: string;
|
|
478
489
|
color: string;
|
|
479
490
|
colorHover: string;
|
|
491
|
+
railInsetHorizontalBottom: string;
|
|
492
|
+
railInsetHorizontalTop: string;
|
|
493
|
+
railInsetVerticalRight: string;
|
|
494
|
+
railInsetVerticalLeft: string;
|
|
495
|
+
railColor: string;
|
|
480
496
|
}, any>;
|
|
481
497
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
482
498
|
heightTiny: string;
|
|
@@ -499,16 +515,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
499
515
|
colorSecondary: string;
|
|
500
516
|
colorSecondaryHover: string;
|
|
501
517
|
colorSecondaryPressed: string;
|
|
518
|
+
colorSecondaryFocus: string;
|
|
519
|
+
colorSecondaryDisabled: string;
|
|
520
|
+
textColorSecondaryDisabled: string;
|
|
502
521
|
waveColorSecondary: string;
|
|
503
522
|
colorTertiary: string;
|
|
504
523
|
colorTertiaryHover: string;
|
|
505
524
|
colorTertiaryPressed: string;
|
|
525
|
+
colorTertiaryFocus: string;
|
|
506
526
|
colorTertiaryDisalbed: string;
|
|
507
527
|
waveColorTertiary: string;
|
|
508
528
|
textColorTextTertiary: string;
|
|
529
|
+
rippleColorTertiary: string;
|
|
509
530
|
colorQuaternary: string;
|
|
510
531
|
colorQuaternaryHover: string;
|
|
511
532
|
colorQuaternaryPressed: string;
|
|
533
|
+
colorQuaternaryFocus: string;
|
|
534
|
+
rippleColorQuaternary: string;
|
|
535
|
+
waveColorQuaternary: string;
|
|
512
536
|
color: string;
|
|
513
537
|
colorHover: string;
|
|
514
538
|
colorPressed: string;
|
|
@@ -755,8 +779,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
755
779
|
}, any>;
|
|
756
780
|
}>;
|
|
757
781
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
782
|
+
height: string;
|
|
783
|
+
width: string;
|
|
784
|
+
borderRadius: string;
|
|
758
785
|
color: string;
|
|
759
786
|
colorHover: string;
|
|
787
|
+
railInsetHorizontalBottom: string;
|
|
788
|
+
railInsetHorizontalTop: string;
|
|
789
|
+
railInsetVerticalRight: string;
|
|
790
|
+
railInsetVerticalLeft: string;
|
|
791
|
+
railColor: string;
|
|
760
792
|
}, any>;
|
|
761
793
|
};
|
|
762
794
|
peerOverrides: {
|
|
@@ -773,8 +805,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
773
805
|
TimePicker?: {
|
|
774
806
|
peers?: {
|
|
775
807
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
808
|
+
height: string;
|
|
809
|
+
width: string;
|
|
810
|
+
borderRadius: string;
|
|
776
811
|
color: string;
|
|
777
812
|
colorHover: string;
|
|
813
|
+
railInsetHorizontalBottom: string;
|
|
814
|
+
railInsetHorizontalTop: string;
|
|
815
|
+
railInsetVerticalRight: string;
|
|
816
|
+
railInsetVerticalLeft: string;
|
|
817
|
+
railColor: string;
|
|
778
818
|
}, any>> | undefined;
|
|
779
819
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
780
820
|
heightTiny: string;
|
|
@@ -797,16 +837,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
797
837
|
colorSecondary: string;
|
|
798
838
|
colorSecondaryHover: string;
|
|
799
839
|
colorSecondaryPressed: string;
|
|
840
|
+
colorSecondaryFocus: string;
|
|
841
|
+
colorSecondaryDisabled: string;
|
|
842
|
+
textColorSecondaryDisabled: string;
|
|
800
843
|
waveColorSecondary: string;
|
|
801
844
|
colorTertiary: string;
|
|
802
845
|
colorTertiaryHover: string;
|
|
803
846
|
colorTertiaryPressed: string;
|
|
847
|
+
colorTertiaryFocus: string;
|
|
804
848
|
colorTertiaryDisalbed: string;
|
|
805
849
|
waveColorTertiary: string;
|
|
806
850
|
textColorTextTertiary: string;
|
|
851
|
+
rippleColorTertiary: string;
|
|
807
852
|
colorQuaternary: string;
|
|
808
853
|
colorQuaternaryHover: string;
|
|
809
854
|
colorQuaternaryPressed: string;
|
|
855
|
+
colorQuaternaryFocus: string;
|
|
856
|
+
rippleColorQuaternary: string;
|
|
857
|
+
waveColorQuaternary: string;
|
|
810
858
|
color: string;
|
|
811
859
|
colorHover: string;
|
|
812
860
|
colorPressed: string;
|