@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
|
@@ -121,7 +121,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
121
121
|
calendarValue: import("vue").Ref<number>;
|
|
122
122
|
onUpdateCalendarValue: (value: number) => void;
|
|
123
123
|
yearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
124
|
-
yearVlRef: import("vue").Ref<import("vueuc").
|
|
124
|
+
yearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
|
|
125
125
|
mergedTheme: import("vue").Ref<{
|
|
126
126
|
common: import("../../..").ThemeCommonVars;
|
|
127
127
|
self: {
|
|
@@ -309,16 +309,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
309
309
|
colorSecondary: string;
|
|
310
310
|
colorSecondaryHover: string;
|
|
311
311
|
colorSecondaryPressed: string;
|
|
312
|
+
colorSecondaryFocus: string;
|
|
313
|
+
colorSecondaryDisabled: string;
|
|
314
|
+
textColorSecondaryDisabled: string;
|
|
312
315
|
waveColorSecondary: string;
|
|
313
316
|
colorTertiary: string;
|
|
314
317
|
colorTertiaryHover: string;
|
|
315
318
|
colorTertiaryPressed: string;
|
|
319
|
+
colorTertiaryFocus: string;
|
|
316
320
|
colorTertiaryDisalbed: string;
|
|
317
321
|
waveColorTertiary: string;
|
|
318
322
|
textColorTextTertiary: string;
|
|
323
|
+
rippleColorTertiary: string;
|
|
319
324
|
colorQuaternary: string;
|
|
320
325
|
colorQuaternaryHover: string;
|
|
321
326
|
colorQuaternaryPressed: string;
|
|
327
|
+
colorQuaternaryFocus: string;
|
|
328
|
+
rippleColorQuaternary: string;
|
|
329
|
+
waveColorQuaternary: string;
|
|
322
330
|
color: string;
|
|
323
331
|
colorHover: string;
|
|
324
332
|
colorPressed: string;
|
|
@@ -518,8 +526,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
518
526
|
iconColorDisabled: string;
|
|
519
527
|
}, {
|
|
520
528
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
529
|
+
height: string;
|
|
530
|
+
width: string;
|
|
531
|
+
borderRadius: string;
|
|
521
532
|
color: string;
|
|
522
533
|
colorHover: string;
|
|
534
|
+
railInsetHorizontalBottom: string;
|
|
535
|
+
railInsetHorizontalTop: string;
|
|
536
|
+
railInsetVerticalRight: string;
|
|
537
|
+
railInsetVerticalLeft: string;
|
|
538
|
+
railColor: string;
|
|
523
539
|
}, any>;
|
|
524
540
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
525
541
|
heightTiny: string;
|
|
@@ -542,16 +558,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
542
558
|
colorSecondary: string;
|
|
543
559
|
colorSecondaryHover: string;
|
|
544
560
|
colorSecondaryPressed: string;
|
|
561
|
+
colorSecondaryFocus: string;
|
|
562
|
+
colorSecondaryDisabled: string;
|
|
563
|
+
textColorSecondaryDisabled: string;
|
|
545
564
|
waveColorSecondary: string;
|
|
546
565
|
colorTertiary: string;
|
|
547
566
|
colorTertiaryHover: string;
|
|
548
567
|
colorTertiaryPressed: string;
|
|
568
|
+
colorTertiaryFocus: string;
|
|
549
569
|
colorTertiaryDisalbed: string;
|
|
550
570
|
waveColorTertiary: string;
|
|
551
571
|
textColorTextTertiary: string;
|
|
572
|
+
rippleColorTertiary: string;
|
|
552
573
|
colorQuaternary: string;
|
|
553
574
|
colorQuaternaryHover: string;
|
|
554
575
|
colorQuaternaryPressed: string;
|
|
576
|
+
colorQuaternaryFocus: string;
|
|
577
|
+
rippleColorQuaternary: string;
|
|
578
|
+
waveColorQuaternary: string;
|
|
555
579
|
color: string;
|
|
556
580
|
colorHover: string;
|
|
557
581
|
colorPressed: string;
|
|
@@ -798,8 +822,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
798
822
|
}, any>;
|
|
799
823
|
}>;
|
|
800
824
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
825
|
+
height: string;
|
|
826
|
+
width: string;
|
|
827
|
+
borderRadius: string;
|
|
801
828
|
color: string;
|
|
802
829
|
colorHover: string;
|
|
830
|
+
railInsetHorizontalBottom: string;
|
|
831
|
+
railInsetHorizontalTop: string;
|
|
832
|
+
railInsetVerticalRight: string;
|
|
833
|
+
railInsetVerticalLeft: string;
|
|
834
|
+
railColor: string;
|
|
803
835
|
}, any>;
|
|
804
836
|
};
|
|
805
837
|
peerOverrides: {
|
|
@@ -816,8 +848,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
816
848
|
TimePicker?: {
|
|
817
849
|
peers?: {
|
|
818
850
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
851
|
+
height: string;
|
|
852
|
+
width: string;
|
|
853
|
+
borderRadius: string;
|
|
819
854
|
color: string;
|
|
820
855
|
colorHover: string;
|
|
856
|
+
railInsetHorizontalBottom: string;
|
|
857
|
+
railInsetHorizontalTop: string;
|
|
858
|
+
railInsetVerticalRight: string;
|
|
859
|
+
railInsetVerticalLeft: string;
|
|
860
|
+
railColor: string;
|
|
821
861
|
}, any>> | undefined;
|
|
822
862
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
823
863
|
heightTiny: string;
|
|
@@ -840,16 +880,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
840
880
|
colorSecondary: string;
|
|
841
881
|
colorSecondaryHover: string;
|
|
842
882
|
colorSecondaryPressed: string;
|
|
883
|
+
colorSecondaryFocus: string;
|
|
884
|
+
colorSecondaryDisabled: string;
|
|
885
|
+
textColorSecondaryDisabled: string;
|
|
843
886
|
waveColorSecondary: string;
|
|
844
887
|
colorTertiary: string;
|
|
845
888
|
colorTertiaryHover: string;
|
|
846
889
|
colorTertiaryPressed: string;
|
|
890
|
+
colorTertiaryFocus: string;
|
|
847
891
|
colorTertiaryDisalbed: string;
|
|
848
892
|
waveColorTertiary: string;
|
|
849
893
|
textColorTextTertiary: string;
|
|
894
|
+
rippleColorTertiary: string;
|
|
850
895
|
colorQuaternary: string;
|
|
851
896
|
colorQuaternaryHover: string;
|
|
852
897
|
colorQuaternaryPressed: string;
|
|
898
|
+
colorQuaternaryFocus: string;
|
|
899
|
+
rippleColorQuaternary: string;
|
|
900
|
+
waveColorQuaternary: string;
|
|
853
901
|
color: string;
|
|
854
902
|
colorHover: string;
|
|
855
903
|
colorPressed: string;
|
|
@@ -1254,7 +1302,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1254
1302
|
calendarValue: import("vue").Ref<number>;
|
|
1255
1303
|
onUpdateCalendarValue: (value: number) => void;
|
|
1256
1304
|
yearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
1257
|
-
yearVlRef: import("vue").Ref<import("vueuc").
|
|
1305
|
+
yearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
|
|
1258
1306
|
mergedTheme: import("vue").Ref<{
|
|
1259
1307
|
common: import("../../..").ThemeCommonVars;
|
|
1260
1308
|
self: {
|
|
@@ -1442,16 +1490,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1442
1490
|
colorSecondary: string;
|
|
1443
1491
|
colorSecondaryHover: string;
|
|
1444
1492
|
colorSecondaryPressed: string;
|
|
1493
|
+
colorSecondaryFocus: string;
|
|
1494
|
+
colorSecondaryDisabled: string;
|
|
1495
|
+
textColorSecondaryDisabled: string;
|
|
1445
1496
|
waveColorSecondary: string;
|
|
1446
1497
|
colorTertiary: string;
|
|
1447
1498
|
colorTertiaryHover: string;
|
|
1448
1499
|
colorTertiaryPressed: string;
|
|
1500
|
+
colorTertiaryFocus: string;
|
|
1449
1501
|
colorTertiaryDisalbed: string;
|
|
1450
1502
|
waveColorTertiary: string;
|
|
1451
1503
|
textColorTextTertiary: string;
|
|
1504
|
+
rippleColorTertiary: string;
|
|
1452
1505
|
colorQuaternary: string;
|
|
1453
1506
|
colorQuaternaryHover: string;
|
|
1454
1507
|
colorQuaternaryPressed: string;
|
|
1508
|
+
colorQuaternaryFocus: string;
|
|
1509
|
+
rippleColorQuaternary: string;
|
|
1510
|
+
waveColorQuaternary: string;
|
|
1455
1511
|
color: string;
|
|
1456
1512
|
colorHover: string;
|
|
1457
1513
|
colorPressed: string;
|
|
@@ -1651,8 +1707,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1651
1707
|
iconColorDisabled: string;
|
|
1652
1708
|
}, {
|
|
1653
1709
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
1710
|
+
height: string;
|
|
1711
|
+
width: string;
|
|
1712
|
+
borderRadius: string;
|
|
1654
1713
|
color: string;
|
|
1655
1714
|
colorHover: string;
|
|
1715
|
+
railInsetHorizontalBottom: string;
|
|
1716
|
+
railInsetHorizontalTop: string;
|
|
1717
|
+
railInsetVerticalRight: string;
|
|
1718
|
+
railInsetVerticalLeft: string;
|
|
1719
|
+
railColor: string;
|
|
1656
1720
|
}, any>;
|
|
1657
1721
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
1658
1722
|
heightTiny: string;
|
|
@@ -1675,16 +1739,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1675
1739
|
colorSecondary: string;
|
|
1676
1740
|
colorSecondaryHover: string;
|
|
1677
1741
|
colorSecondaryPressed: string;
|
|
1742
|
+
colorSecondaryFocus: string;
|
|
1743
|
+
colorSecondaryDisabled: string;
|
|
1744
|
+
textColorSecondaryDisabled: string;
|
|
1678
1745
|
waveColorSecondary: string;
|
|
1679
1746
|
colorTertiary: string;
|
|
1680
1747
|
colorTertiaryHover: string;
|
|
1681
1748
|
colorTertiaryPressed: string;
|
|
1749
|
+
colorTertiaryFocus: string;
|
|
1682
1750
|
colorTertiaryDisalbed: string;
|
|
1683
1751
|
waveColorTertiary: string;
|
|
1684
1752
|
textColorTextTertiary: string;
|
|
1753
|
+
rippleColorTertiary: string;
|
|
1685
1754
|
colorQuaternary: string;
|
|
1686
1755
|
colorQuaternaryHover: string;
|
|
1687
1756
|
colorQuaternaryPressed: string;
|
|
1757
|
+
colorQuaternaryFocus: string;
|
|
1758
|
+
rippleColorQuaternary: string;
|
|
1759
|
+
waveColorQuaternary: string;
|
|
1688
1760
|
color: string;
|
|
1689
1761
|
colorHover: string;
|
|
1690
1762
|
colorPressed: string;
|
|
@@ -1931,8 +2003,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1931
2003
|
}, any>;
|
|
1932
2004
|
}>;
|
|
1933
2005
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
2006
|
+
height: string;
|
|
2007
|
+
width: string;
|
|
2008
|
+
borderRadius: string;
|
|
1934
2009
|
color: string;
|
|
1935
2010
|
colorHover: string;
|
|
2011
|
+
railInsetHorizontalBottom: string;
|
|
2012
|
+
railInsetHorizontalTop: string;
|
|
2013
|
+
railInsetVerticalRight: string;
|
|
2014
|
+
railInsetVerticalLeft: string;
|
|
2015
|
+
railColor: string;
|
|
1936
2016
|
}, any>;
|
|
1937
2017
|
};
|
|
1938
2018
|
peerOverrides: {
|
|
@@ -1949,8 +2029,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1949
2029
|
TimePicker?: {
|
|
1950
2030
|
peers?: {
|
|
1951
2031
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
2032
|
+
height: string;
|
|
2033
|
+
width: string;
|
|
2034
|
+
borderRadius: string;
|
|
1952
2035
|
color: string;
|
|
1953
2036
|
colorHover: string;
|
|
2037
|
+
railInsetHorizontalBottom: string;
|
|
2038
|
+
railInsetHorizontalTop: string;
|
|
2039
|
+
railInsetVerticalRight: string;
|
|
2040
|
+
railInsetVerticalLeft: string;
|
|
2041
|
+
railColor: string;
|
|
1954
2042
|
}, any>> | undefined;
|
|
1955
2043
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
1956
2044
|
heightTiny: string;
|
|
@@ -1973,16 +2061,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1973
2061
|
colorSecondary: string;
|
|
1974
2062
|
colorSecondaryHover: string;
|
|
1975
2063
|
colorSecondaryPressed: string;
|
|
2064
|
+
colorSecondaryFocus: string;
|
|
2065
|
+
colorSecondaryDisabled: string;
|
|
2066
|
+
textColorSecondaryDisabled: string;
|
|
1976
2067
|
waveColorSecondary: string;
|
|
1977
2068
|
colorTertiary: string;
|
|
1978
2069
|
colorTertiaryHover: string;
|
|
1979
2070
|
colorTertiaryPressed: string;
|
|
2071
|
+
colorTertiaryFocus: string;
|
|
1980
2072
|
colorTertiaryDisalbed: string;
|
|
1981
2073
|
waveColorTertiary: string;
|
|
1982
2074
|
textColorTextTertiary: string;
|
|
2075
|
+
rippleColorTertiary: string;
|
|
1983
2076
|
colorQuaternary: string;
|
|
1984
2077
|
colorQuaternaryHover: string;
|
|
1985
2078
|
colorQuaternaryPressed: string;
|
|
2079
|
+
colorQuaternaryFocus: string;
|
|
2080
|
+
rippleColorQuaternary: string;
|
|
2081
|
+
waveColorQuaternary: string;
|
|
1986
2082
|
color: string;
|
|
1987
2083
|
colorHover: string;
|
|
1988
2084
|
colorPressed: string;
|
|
@@ -56,7 +56,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
56
|
calendarValue: import("vue").Ref<number>;
|
|
57
57
|
onUpdateCalendarValue: (value: number) => void;
|
|
58
58
|
yearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
59
|
-
yearVlRef: import("vue").Ref<import("vueuc").
|
|
59
|
+
yearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
|
|
60
60
|
mergedTheme: import("vue").Ref<{
|
|
61
61
|
common: import("../../..").ThemeCommonVars;
|
|
62
62
|
self: {
|
|
@@ -244,16 +244,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
244
244
|
colorSecondary: string;
|
|
245
245
|
colorSecondaryHover: string;
|
|
246
246
|
colorSecondaryPressed: string;
|
|
247
|
+
colorSecondaryFocus: string;
|
|
248
|
+
colorSecondaryDisabled: string;
|
|
249
|
+
textColorSecondaryDisabled: string;
|
|
247
250
|
waveColorSecondary: string;
|
|
248
251
|
colorTertiary: string;
|
|
249
252
|
colorTertiaryHover: string;
|
|
250
253
|
colorTertiaryPressed: string;
|
|
254
|
+
colorTertiaryFocus: string;
|
|
251
255
|
colorTertiaryDisalbed: string;
|
|
252
256
|
waveColorTertiary: string;
|
|
253
257
|
textColorTextTertiary: string;
|
|
258
|
+
rippleColorTertiary: string;
|
|
254
259
|
colorQuaternary: string;
|
|
255
260
|
colorQuaternaryHover: string;
|
|
256
261
|
colorQuaternaryPressed: string;
|
|
262
|
+
colorQuaternaryFocus: string;
|
|
263
|
+
rippleColorQuaternary: string;
|
|
264
|
+
waveColorQuaternary: string;
|
|
257
265
|
color: string;
|
|
258
266
|
colorHover: string;
|
|
259
267
|
colorPressed: string;
|
|
@@ -453,8 +461,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
453
461
|
iconColorDisabled: string;
|
|
454
462
|
}, {
|
|
455
463
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
464
|
+
height: string;
|
|
465
|
+
width: string;
|
|
466
|
+
borderRadius: string;
|
|
456
467
|
color: string;
|
|
457
468
|
colorHover: string;
|
|
469
|
+
railInsetHorizontalBottom: string;
|
|
470
|
+
railInsetHorizontalTop: string;
|
|
471
|
+
railInsetVerticalRight: string;
|
|
472
|
+
railInsetVerticalLeft: string;
|
|
473
|
+
railColor: string;
|
|
458
474
|
}, any>;
|
|
459
475
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
460
476
|
heightTiny: string;
|
|
@@ -477,16 +493,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
477
493
|
colorSecondary: string;
|
|
478
494
|
colorSecondaryHover: string;
|
|
479
495
|
colorSecondaryPressed: string;
|
|
496
|
+
colorSecondaryFocus: string;
|
|
497
|
+
colorSecondaryDisabled: string;
|
|
498
|
+
textColorSecondaryDisabled: string;
|
|
480
499
|
waveColorSecondary: string;
|
|
481
500
|
colorTertiary: string;
|
|
482
501
|
colorTertiaryHover: string;
|
|
483
502
|
colorTertiaryPressed: string;
|
|
503
|
+
colorTertiaryFocus: string;
|
|
484
504
|
colorTertiaryDisalbed: string;
|
|
485
505
|
waveColorTertiary: string;
|
|
486
506
|
textColorTextTertiary: string;
|
|
507
|
+
rippleColorTertiary: string;
|
|
487
508
|
colorQuaternary: string;
|
|
488
509
|
colorQuaternaryHover: string;
|
|
489
510
|
colorQuaternaryPressed: string;
|
|
511
|
+
colorQuaternaryFocus: string;
|
|
512
|
+
rippleColorQuaternary: string;
|
|
513
|
+
waveColorQuaternary: string;
|
|
490
514
|
color: string;
|
|
491
515
|
colorHover: string;
|
|
492
516
|
colorPressed: string;
|
|
@@ -733,8 +757,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
733
757
|
}, any>;
|
|
734
758
|
}>;
|
|
735
759
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
760
|
+
height: string;
|
|
761
|
+
width: string;
|
|
762
|
+
borderRadius: string;
|
|
736
763
|
color: string;
|
|
737
764
|
colorHover: string;
|
|
765
|
+
railInsetHorizontalBottom: string;
|
|
766
|
+
railInsetHorizontalTop: string;
|
|
767
|
+
railInsetVerticalRight: string;
|
|
768
|
+
railInsetVerticalLeft: string;
|
|
769
|
+
railColor: string;
|
|
738
770
|
}, any>;
|
|
739
771
|
};
|
|
740
772
|
peerOverrides: {
|
|
@@ -751,8 +783,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
751
783
|
TimePicker?: {
|
|
752
784
|
peers?: {
|
|
753
785
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
786
|
+
height: string;
|
|
787
|
+
width: string;
|
|
788
|
+
borderRadius: string;
|
|
754
789
|
color: string;
|
|
755
790
|
colorHover: string;
|
|
791
|
+
railInsetHorizontalBottom: string;
|
|
792
|
+
railInsetHorizontalTop: string;
|
|
793
|
+
railInsetVerticalRight: string;
|
|
794
|
+
railInsetVerticalLeft: string;
|
|
795
|
+
railColor: string;
|
|
756
796
|
}, any>> | undefined;
|
|
757
797
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
758
798
|
heightTiny: string;
|
|
@@ -775,16 +815,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
775
815
|
colorSecondary: string;
|
|
776
816
|
colorSecondaryHover: string;
|
|
777
817
|
colorSecondaryPressed: string;
|
|
818
|
+
colorSecondaryFocus: string;
|
|
819
|
+
colorSecondaryDisabled: string;
|
|
820
|
+
textColorSecondaryDisabled: string;
|
|
778
821
|
waveColorSecondary: string;
|
|
779
822
|
colorTertiary: string;
|
|
780
823
|
colorTertiaryHover: string;
|
|
781
824
|
colorTertiaryPressed: string;
|
|
825
|
+
colorTertiaryFocus: string;
|
|
782
826
|
colorTertiaryDisalbed: string;
|
|
783
827
|
waveColorTertiary: string;
|
|
784
828
|
textColorTextTertiary: string;
|
|
829
|
+
rippleColorTertiary: string;
|
|
785
830
|
colorQuaternary: string;
|
|
786
831
|
colorQuaternaryHover: string;
|
|
787
832
|
colorQuaternaryPressed: string;
|
|
833
|
+
colorQuaternaryFocus: string;
|
|
834
|
+
rippleColorQuaternary: string;
|
|
835
|
+
waveColorQuaternary: string;
|
|
788
836
|
color: string;
|
|
789
837
|
colorHover: string;
|
|
790
838
|
colorPressed: string;
|
|
@@ -121,7 +121,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
121
121
|
calendarValue: import("vue").Ref<number>;
|
|
122
122
|
onUpdateCalendarValue: (value: number) => void;
|
|
123
123
|
yearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
124
|
-
yearVlRef: import("vue").Ref<import("vueuc").
|
|
124
|
+
yearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
|
|
125
125
|
mergedTheme: import("vue").Ref<{
|
|
126
126
|
common: import("../../..").ThemeCommonVars;
|
|
127
127
|
self: {
|
|
@@ -309,16 +309,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
309
309
|
colorSecondary: string;
|
|
310
310
|
colorSecondaryHover: string;
|
|
311
311
|
colorSecondaryPressed: string;
|
|
312
|
+
colorSecondaryFocus: string;
|
|
313
|
+
colorSecondaryDisabled: string;
|
|
314
|
+
textColorSecondaryDisabled: string;
|
|
312
315
|
waveColorSecondary: string;
|
|
313
316
|
colorTertiary: string;
|
|
314
317
|
colorTertiaryHover: string;
|
|
315
318
|
colorTertiaryPressed: string;
|
|
319
|
+
colorTertiaryFocus: string;
|
|
316
320
|
colorTertiaryDisalbed: string;
|
|
317
321
|
waveColorTertiary: string;
|
|
318
322
|
textColorTextTertiary: string;
|
|
323
|
+
rippleColorTertiary: string;
|
|
319
324
|
colorQuaternary: string;
|
|
320
325
|
colorQuaternaryHover: string;
|
|
321
326
|
colorQuaternaryPressed: string;
|
|
327
|
+
colorQuaternaryFocus: string;
|
|
328
|
+
rippleColorQuaternary: string;
|
|
329
|
+
waveColorQuaternary: string;
|
|
322
330
|
color: string;
|
|
323
331
|
colorHover: string;
|
|
324
332
|
colorPressed: string;
|
|
@@ -518,8 +526,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
518
526
|
iconColorDisabled: string;
|
|
519
527
|
}, {
|
|
520
528
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
529
|
+
height: string;
|
|
530
|
+
width: string;
|
|
531
|
+
borderRadius: string;
|
|
521
532
|
color: string;
|
|
522
533
|
colorHover: string;
|
|
534
|
+
railInsetHorizontalBottom: string;
|
|
535
|
+
railInsetHorizontalTop: string;
|
|
536
|
+
railInsetVerticalRight: string;
|
|
537
|
+
railInsetVerticalLeft: string;
|
|
538
|
+
railColor: string;
|
|
523
539
|
}, any>;
|
|
524
540
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
525
541
|
heightTiny: string;
|
|
@@ -542,16 +558,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
542
558
|
colorSecondary: string;
|
|
543
559
|
colorSecondaryHover: string;
|
|
544
560
|
colorSecondaryPressed: string;
|
|
561
|
+
colorSecondaryFocus: string;
|
|
562
|
+
colorSecondaryDisabled: string;
|
|
563
|
+
textColorSecondaryDisabled: string;
|
|
545
564
|
waveColorSecondary: string;
|
|
546
565
|
colorTertiary: string;
|
|
547
566
|
colorTertiaryHover: string;
|
|
548
567
|
colorTertiaryPressed: string;
|
|
568
|
+
colorTertiaryFocus: string;
|
|
549
569
|
colorTertiaryDisalbed: string;
|
|
550
570
|
waveColorTertiary: string;
|
|
551
571
|
textColorTextTertiary: string;
|
|
572
|
+
rippleColorTertiary: string;
|
|
552
573
|
colorQuaternary: string;
|
|
553
574
|
colorQuaternaryHover: string;
|
|
554
575
|
colorQuaternaryPressed: string;
|
|
576
|
+
colorQuaternaryFocus: string;
|
|
577
|
+
rippleColorQuaternary: string;
|
|
578
|
+
waveColorQuaternary: string;
|
|
555
579
|
color: string;
|
|
556
580
|
colorHover: string;
|
|
557
581
|
colorPressed: string;
|
|
@@ -798,8 +822,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
798
822
|
}, any>;
|
|
799
823
|
}>;
|
|
800
824
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
825
|
+
height: string;
|
|
826
|
+
width: string;
|
|
827
|
+
borderRadius: string;
|
|
801
828
|
color: string;
|
|
802
829
|
colorHover: string;
|
|
830
|
+
railInsetHorizontalBottom: string;
|
|
831
|
+
railInsetHorizontalTop: string;
|
|
832
|
+
railInsetVerticalRight: string;
|
|
833
|
+
railInsetVerticalLeft: string;
|
|
834
|
+
railColor: string;
|
|
803
835
|
}, any>;
|
|
804
836
|
};
|
|
805
837
|
peerOverrides: {
|
|
@@ -816,8 +848,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
816
848
|
TimePicker?: {
|
|
817
849
|
peers?: {
|
|
818
850
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
851
|
+
height: string;
|
|
852
|
+
width: string;
|
|
853
|
+
borderRadius: string;
|
|
819
854
|
color: string;
|
|
820
855
|
colorHover: string;
|
|
856
|
+
railInsetHorizontalBottom: string;
|
|
857
|
+
railInsetHorizontalTop: string;
|
|
858
|
+
railInsetVerticalRight: string;
|
|
859
|
+
railInsetVerticalLeft: string;
|
|
860
|
+
railColor: string;
|
|
821
861
|
}, any>> | undefined;
|
|
822
862
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
823
863
|
heightTiny: string;
|
|
@@ -840,16 +880,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
840
880
|
colorSecondary: string;
|
|
841
881
|
colorSecondaryHover: string;
|
|
842
882
|
colorSecondaryPressed: string;
|
|
883
|
+
colorSecondaryFocus: string;
|
|
884
|
+
colorSecondaryDisabled: string;
|
|
885
|
+
textColorSecondaryDisabled: string;
|
|
843
886
|
waveColorSecondary: string;
|
|
844
887
|
colorTertiary: string;
|
|
845
888
|
colorTertiaryHover: string;
|
|
846
889
|
colorTertiaryPressed: string;
|
|
890
|
+
colorTertiaryFocus: string;
|
|
847
891
|
colorTertiaryDisalbed: string;
|
|
848
892
|
waveColorTertiary: string;
|
|
849
893
|
textColorTextTertiary: string;
|
|
894
|
+
rippleColorTertiary: string;
|
|
850
895
|
colorQuaternary: string;
|
|
851
896
|
colorQuaternaryHover: string;
|
|
852
897
|
colorQuaternaryPressed: string;
|
|
898
|
+
colorQuaternaryFocus: string;
|
|
899
|
+
rippleColorQuaternary: string;
|
|
900
|
+
waveColorQuaternary: string;
|
|
853
901
|
color: string;
|
|
854
902
|
colorHover: string;
|
|
855
903
|
colorPressed: string;
|
|
@@ -1254,7 +1302,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1254
1302
|
calendarValue: import("vue").Ref<number>;
|
|
1255
1303
|
onUpdateCalendarValue: (value: number) => void;
|
|
1256
1304
|
yearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
1257
|
-
yearVlRef: import("vue").Ref<import("vueuc").
|
|
1305
|
+
yearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
|
|
1258
1306
|
mergedTheme: import("vue").Ref<{
|
|
1259
1307
|
common: import("../../..").ThemeCommonVars;
|
|
1260
1308
|
self: {
|
|
@@ -1442,16 +1490,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1442
1490
|
colorSecondary: string;
|
|
1443
1491
|
colorSecondaryHover: string;
|
|
1444
1492
|
colorSecondaryPressed: string;
|
|
1493
|
+
colorSecondaryFocus: string;
|
|
1494
|
+
colorSecondaryDisabled: string;
|
|
1495
|
+
textColorSecondaryDisabled: string;
|
|
1445
1496
|
waveColorSecondary: string;
|
|
1446
1497
|
colorTertiary: string;
|
|
1447
1498
|
colorTertiaryHover: string;
|
|
1448
1499
|
colorTertiaryPressed: string;
|
|
1500
|
+
colorTertiaryFocus: string;
|
|
1449
1501
|
colorTertiaryDisalbed: string;
|
|
1450
1502
|
waveColorTertiary: string;
|
|
1451
1503
|
textColorTextTertiary: string;
|
|
1504
|
+
rippleColorTertiary: string;
|
|
1452
1505
|
colorQuaternary: string;
|
|
1453
1506
|
colorQuaternaryHover: string;
|
|
1454
1507
|
colorQuaternaryPressed: string;
|
|
1508
|
+
colorQuaternaryFocus: string;
|
|
1509
|
+
rippleColorQuaternary: string;
|
|
1510
|
+
waveColorQuaternary: string;
|
|
1455
1511
|
color: string;
|
|
1456
1512
|
colorHover: string;
|
|
1457
1513
|
colorPressed: string;
|
|
@@ -1651,8 +1707,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1651
1707
|
iconColorDisabled: string;
|
|
1652
1708
|
}, {
|
|
1653
1709
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
1710
|
+
height: string;
|
|
1711
|
+
width: string;
|
|
1712
|
+
borderRadius: string;
|
|
1654
1713
|
color: string;
|
|
1655
1714
|
colorHover: string;
|
|
1715
|
+
railInsetHorizontalBottom: string;
|
|
1716
|
+
railInsetHorizontalTop: string;
|
|
1717
|
+
railInsetVerticalRight: string;
|
|
1718
|
+
railInsetVerticalLeft: string;
|
|
1719
|
+
railColor: string;
|
|
1656
1720
|
}, any>;
|
|
1657
1721
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
1658
1722
|
heightTiny: string;
|
|
@@ -1675,16 +1739,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1675
1739
|
colorSecondary: string;
|
|
1676
1740
|
colorSecondaryHover: string;
|
|
1677
1741
|
colorSecondaryPressed: string;
|
|
1742
|
+
colorSecondaryFocus: string;
|
|
1743
|
+
colorSecondaryDisabled: string;
|
|
1744
|
+
textColorSecondaryDisabled: string;
|
|
1678
1745
|
waveColorSecondary: string;
|
|
1679
1746
|
colorTertiary: string;
|
|
1680
1747
|
colorTertiaryHover: string;
|
|
1681
1748
|
colorTertiaryPressed: string;
|
|
1749
|
+
colorTertiaryFocus: string;
|
|
1682
1750
|
colorTertiaryDisalbed: string;
|
|
1683
1751
|
waveColorTertiary: string;
|
|
1684
1752
|
textColorTextTertiary: string;
|
|
1753
|
+
rippleColorTertiary: string;
|
|
1685
1754
|
colorQuaternary: string;
|
|
1686
1755
|
colorQuaternaryHover: string;
|
|
1687
1756
|
colorQuaternaryPressed: string;
|
|
1757
|
+
colorQuaternaryFocus: string;
|
|
1758
|
+
rippleColorQuaternary: string;
|
|
1759
|
+
waveColorQuaternary: string;
|
|
1688
1760
|
color: string;
|
|
1689
1761
|
colorHover: string;
|
|
1690
1762
|
colorPressed: string;
|
|
@@ -1931,8 +2003,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1931
2003
|
}, any>;
|
|
1932
2004
|
}>;
|
|
1933
2005
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
2006
|
+
height: string;
|
|
2007
|
+
width: string;
|
|
2008
|
+
borderRadius: string;
|
|
1934
2009
|
color: string;
|
|
1935
2010
|
colorHover: string;
|
|
2011
|
+
railInsetHorizontalBottom: string;
|
|
2012
|
+
railInsetHorizontalTop: string;
|
|
2013
|
+
railInsetVerticalRight: string;
|
|
2014
|
+
railInsetVerticalLeft: string;
|
|
2015
|
+
railColor: string;
|
|
1936
2016
|
}, any>;
|
|
1937
2017
|
};
|
|
1938
2018
|
peerOverrides: {
|
|
@@ -1949,8 +2029,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1949
2029
|
TimePicker?: {
|
|
1950
2030
|
peers?: {
|
|
1951
2031
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
2032
|
+
height: string;
|
|
2033
|
+
width: string;
|
|
2034
|
+
borderRadius: string;
|
|
1952
2035
|
color: string;
|
|
1953
2036
|
colorHover: string;
|
|
2037
|
+
railInsetHorizontalBottom: string;
|
|
2038
|
+
railInsetHorizontalTop: string;
|
|
2039
|
+
railInsetVerticalRight: string;
|
|
2040
|
+
railInsetVerticalLeft: string;
|
|
2041
|
+
railColor: string;
|
|
1954
2042
|
}, any>> | undefined;
|
|
1955
2043
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
1956
2044
|
heightTiny: string;
|
|
@@ -1973,16 +2061,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1973
2061
|
colorSecondary: string;
|
|
1974
2062
|
colorSecondaryHover: string;
|
|
1975
2063
|
colorSecondaryPressed: string;
|
|
2064
|
+
colorSecondaryFocus: string;
|
|
2065
|
+
colorSecondaryDisabled: string;
|
|
2066
|
+
textColorSecondaryDisabled: string;
|
|
1976
2067
|
waveColorSecondary: string;
|
|
1977
2068
|
colorTertiary: string;
|
|
1978
2069
|
colorTertiaryHover: string;
|
|
1979
2070
|
colorTertiaryPressed: string;
|
|
2071
|
+
colorTertiaryFocus: string;
|
|
1980
2072
|
colorTertiaryDisalbed: string;
|
|
1981
2073
|
waveColorTertiary: string;
|
|
1982
2074
|
textColorTextTertiary: string;
|
|
2075
|
+
rippleColorTertiary: string;
|
|
1983
2076
|
colorQuaternary: string;
|
|
1984
2077
|
colorQuaternaryHover: string;
|
|
1985
2078
|
colorQuaternaryPressed: string;
|
|
2079
|
+
colorQuaternaryFocus: string;
|
|
2080
|
+
rippleColorQuaternary: string;
|
|
2081
|
+
waveColorQuaternary: string;
|
|
1986
2082
|
color: string;
|
|
1987
2083
|
colorHover: string;
|
|
1988
2084
|
colorPressed: string;
|