@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
|
@@ -258,16 +258,24 @@ export declare const datePickerProps: {
|
|
|
258
258
|
colorSecondary: string;
|
|
259
259
|
colorSecondaryHover: string;
|
|
260
260
|
colorSecondaryPressed: string;
|
|
261
|
+
colorSecondaryFocus: string;
|
|
262
|
+
colorSecondaryDisabled: string;
|
|
263
|
+
textColorSecondaryDisabled: string;
|
|
261
264
|
waveColorSecondary: string;
|
|
262
265
|
colorTertiary: string;
|
|
263
266
|
colorTertiaryHover: string;
|
|
264
267
|
colorTertiaryPressed: string;
|
|
268
|
+
colorTertiaryFocus: string;
|
|
265
269
|
colorTertiaryDisalbed: string;
|
|
266
270
|
waveColorTertiary: string;
|
|
267
271
|
textColorTextTertiary: string;
|
|
272
|
+
rippleColorTertiary: string;
|
|
268
273
|
colorQuaternary: string;
|
|
269
274
|
colorQuaternaryHover: string;
|
|
270
275
|
colorQuaternaryPressed: string;
|
|
276
|
+
colorQuaternaryFocus: string;
|
|
277
|
+
rippleColorQuaternary: string;
|
|
278
|
+
waveColorQuaternary: string;
|
|
271
279
|
color: string;
|
|
272
280
|
colorHover: string;
|
|
273
281
|
colorPressed: string;
|
|
@@ -467,8 +475,16 @@ export declare const datePickerProps: {
|
|
|
467
475
|
iconColorDisabled: string;
|
|
468
476
|
}, {
|
|
469
477
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
478
|
+
height: string;
|
|
479
|
+
width: string;
|
|
480
|
+
borderRadius: string;
|
|
470
481
|
color: string;
|
|
471
482
|
colorHover: string;
|
|
483
|
+
railInsetHorizontalBottom: string;
|
|
484
|
+
railInsetHorizontalTop: string;
|
|
485
|
+
railInsetVerticalRight: string;
|
|
486
|
+
railInsetVerticalLeft: string;
|
|
487
|
+
railColor: string;
|
|
472
488
|
}, any>;
|
|
473
489
|
Button: import("../../_mixins").Theme<"Button", {
|
|
474
490
|
heightTiny: string;
|
|
@@ -491,16 +507,24 @@ export declare const datePickerProps: {
|
|
|
491
507
|
colorSecondary: string;
|
|
492
508
|
colorSecondaryHover: string;
|
|
493
509
|
colorSecondaryPressed: string;
|
|
510
|
+
colorSecondaryFocus: string;
|
|
511
|
+
colorSecondaryDisabled: string;
|
|
512
|
+
textColorSecondaryDisabled: string;
|
|
494
513
|
waveColorSecondary: string;
|
|
495
514
|
colorTertiary: string;
|
|
496
515
|
colorTertiaryHover: string;
|
|
497
516
|
colorTertiaryPressed: string;
|
|
517
|
+
colorTertiaryFocus: string;
|
|
498
518
|
colorTertiaryDisalbed: string;
|
|
499
519
|
waveColorTertiary: string;
|
|
500
520
|
textColorTextTertiary: string;
|
|
521
|
+
rippleColorTertiary: string;
|
|
501
522
|
colorQuaternary: string;
|
|
502
523
|
colorQuaternaryHover: string;
|
|
503
524
|
colorQuaternaryPressed: string;
|
|
525
|
+
colorQuaternaryFocus: string;
|
|
526
|
+
rippleColorQuaternary: string;
|
|
527
|
+
waveColorQuaternary: string;
|
|
504
528
|
color: string;
|
|
505
529
|
colorHover: string;
|
|
506
530
|
colorPressed: string;
|
|
@@ -747,8 +771,16 @@ export declare const datePickerProps: {
|
|
|
747
771
|
}, any>;
|
|
748
772
|
}>;
|
|
749
773
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
774
|
+
height: string;
|
|
775
|
+
width: string;
|
|
776
|
+
borderRadius: string;
|
|
750
777
|
color: string;
|
|
751
778
|
colorHover: string;
|
|
779
|
+
railInsetHorizontalBottom: string;
|
|
780
|
+
railInsetHorizontalTop: string;
|
|
781
|
+
railInsetVerticalRight: string;
|
|
782
|
+
railInsetVerticalLeft: string;
|
|
783
|
+
railColor: string;
|
|
752
784
|
}, any>;
|
|
753
785
|
}>>;
|
|
754
786
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
@@ -935,16 +967,24 @@ export declare const datePickerProps: {
|
|
|
935
967
|
colorSecondary: string;
|
|
936
968
|
colorSecondaryHover: string;
|
|
937
969
|
colorSecondaryPressed: string;
|
|
970
|
+
colorSecondaryFocus: string;
|
|
971
|
+
colorSecondaryDisabled: string;
|
|
972
|
+
textColorSecondaryDisabled: string;
|
|
938
973
|
waveColorSecondary: string;
|
|
939
974
|
colorTertiary: string;
|
|
940
975
|
colorTertiaryHover: string;
|
|
941
976
|
colorTertiaryPressed: string;
|
|
977
|
+
colorTertiaryFocus: string;
|
|
942
978
|
colorTertiaryDisalbed: string;
|
|
943
979
|
waveColorTertiary: string;
|
|
944
980
|
textColorTextTertiary: string;
|
|
981
|
+
rippleColorTertiary: string;
|
|
945
982
|
colorQuaternary: string;
|
|
946
983
|
colorQuaternaryHover: string;
|
|
947
984
|
colorQuaternaryPressed: string;
|
|
985
|
+
colorQuaternaryFocus: string;
|
|
986
|
+
rippleColorQuaternary: string;
|
|
987
|
+
waveColorQuaternary: string;
|
|
948
988
|
color: string;
|
|
949
989
|
colorHover: string;
|
|
950
990
|
colorPressed: string;
|
|
@@ -1144,8 +1184,16 @@ export declare const datePickerProps: {
|
|
|
1144
1184
|
iconColorDisabled: string;
|
|
1145
1185
|
}, {
|
|
1146
1186
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1187
|
+
height: string;
|
|
1188
|
+
width: string;
|
|
1189
|
+
borderRadius: string;
|
|
1147
1190
|
color: string;
|
|
1148
1191
|
colorHover: string;
|
|
1192
|
+
railInsetHorizontalBottom: string;
|
|
1193
|
+
railInsetHorizontalTop: string;
|
|
1194
|
+
railInsetVerticalRight: string;
|
|
1195
|
+
railInsetVerticalLeft: string;
|
|
1196
|
+
railColor: string;
|
|
1149
1197
|
}, any>;
|
|
1150
1198
|
Button: import("../../_mixins").Theme<"Button", {
|
|
1151
1199
|
heightTiny: string;
|
|
@@ -1168,16 +1216,24 @@ export declare const datePickerProps: {
|
|
|
1168
1216
|
colorSecondary: string;
|
|
1169
1217
|
colorSecondaryHover: string;
|
|
1170
1218
|
colorSecondaryPressed: string;
|
|
1219
|
+
colorSecondaryFocus: string;
|
|
1220
|
+
colorSecondaryDisabled: string;
|
|
1221
|
+
textColorSecondaryDisabled: string;
|
|
1171
1222
|
waveColorSecondary: string;
|
|
1172
1223
|
colorTertiary: string;
|
|
1173
1224
|
colorTertiaryHover: string;
|
|
1174
1225
|
colorTertiaryPressed: string;
|
|
1226
|
+
colorTertiaryFocus: string;
|
|
1175
1227
|
colorTertiaryDisalbed: string;
|
|
1176
1228
|
waveColorTertiary: string;
|
|
1177
1229
|
textColorTextTertiary: string;
|
|
1230
|
+
rippleColorTertiary: string;
|
|
1178
1231
|
colorQuaternary: string;
|
|
1179
1232
|
colorQuaternaryHover: string;
|
|
1180
1233
|
colorQuaternaryPressed: string;
|
|
1234
|
+
colorQuaternaryFocus: string;
|
|
1235
|
+
rippleColorQuaternary: string;
|
|
1236
|
+
waveColorQuaternary: string;
|
|
1181
1237
|
color: string;
|
|
1182
1238
|
colorHover: string;
|
|
1183
1239
|
colorPressed: string;
|
|
@@ -1424,8 +1480,16 @@ export declare const datePickerProps: {
|
|
|
1424
1480
|
}, any>;
|
|
1425
1481
|
}>;
|
|
1426
1482
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1483
|
+
height: string;
|
|
1484
|
+
width: string;
|
|
1485
|
+
borderRadius: string;
|
|
1427
1486
|
color: string;
|
|
1428
1487
|
colorHover: string;
|
|
1488
|
+
railInsetHorizontalBottom: string;
|
|
1489
|
+
railInsetHorizontalTop: string;
|
|
1490
|
+
railInsetVerticalRight: string;
|
|
1491
|
+
railInsetVerticalLeft: string;
|
|
1492
|
+
railColor: string;
|
|
1429
1493
|
}, any>;
|
|
1430
1494
|
}>>>;
|
|
1431
1495
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
@@ -1612,16 +1676,24 @@ export declare const datePickerProps: {
|
|
|
1612
1676
|
colorSecondary: string;
|
|
1613
1677
|
colorSecondaryHover: string;
|
|
1614
1678
|
colorSecondaryPressed: string;
|
|
1679
|
+
colorSecondaryFocus: string;
|
|
1680
|
+
colorSecondaryDisabled: string;
|
|
1681
|
+
textColorSecondaryDisabled: string;
|
|
1615
1682
|
waveColorSecondary: string;
|
|
1616
1683
|
colorTertiary: string;
|
|
1617
1684
|
colorTertiaryHover: string;
|
|
1618
1685
|
colorTertiaryPressed: string;
|
|
1686
|
+
colorTertiaryFocus: string;
|
|
1619
1687
|
colorTertiaryDisalbed: string;
|
|
1620
1688
|
waveColorTertiary: string;
|
|
1621
1689
|
textColorTextTertiary: string;
|
|
1690
|
+
rippleColorTertiary: string;
|
|
1622
1691
|
colorQuaternary: string;
|
|
1623
1692
|
colorQuaternaryHover: string;
|
|
1624
1693
|
colorQuaternaryPressed: string;
|
|
1694
|
+
colorQuaternaryFocus: string;
|
|
1695
|
+
rippleColorQuaternary: string;
|
|
1696
|
+
waveColorQuaternary: string;
|
|
1625
1697
|
color: string;
|
|
1626
1698
|
colorHover: string;
|
|
1627
1699
|
colorPressed: string;
|
|
@@ -1821,8 +1893,16 @@ export declare const datePickerProps: {
|
|
|
1821
1893
|
iconColorDisabled: string;
|
|
1822
1894
|
}, {
|
|
1823
1895
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1896
|
+
height: string;
|
|
1897
|
+
width: string;
|
|
1898
|
+
borderRadius: string;
|
|
1824
1899
|
color: string;
|
|
1825
1900
|
colorHover: string;
|
|
1901
|
+
railInsetHorizontalBottom: string;
|
|
1902
|
+
railInsetHorizontalTop: string;
|
|
1903
|
+
railInsetVerticalRight: string;
|
|
1904
|
+
railInsetVerticalLeft: string;
|
|
1905
|
+
railColor: string;
|
|
1826
1906
|
}, any>;
|
|
1827
1907
|
Button: import("../../_mixins").Theme<"Button", {
|
|
1828
1908
|
heightTiny: string;
|
|
@@ -1845,16 +1925,24 @@ export declare const datePickerProps: {
|
|
|
1845
1925
|
colorSecondary: string;
|
|
1846
1926
|
colorSecondaryHover: string;
|
|
1847
1927
|
colorSecondaryPressed: string;
|
|
1928
|
+
colorSecondaryFocus: string;
|
|
1929
|
+
colorSecondaryDisabled: string;
|
|
1930
|
+
textColorSecondaryDisabled: string;
|
|
1848
1931
|
waveColorSecondary: string;
|
|
1849
1932
|
colorTertiary: string;
|
|
1850
1933
|
colorTertiaryHover: string;
|
|
1851
1934
|
colorTertiaryPressed: string;
|
|
1935
|
+
colorTertiaryFocus: string;
|
|
1852
1936
|
colorTertiaryDisalbed: string;
|
|
1853
1937
|
waveColorTertiary: string;
|
|
1854
1938
|
textColorTextTertiary: string;
|
|
1939
|
+
rippleColorTertiary: string;
|
|
1855
1940
|
colorQuaternary: string;
|
|
1856
1941
|
colorQuaternaryHover: string;
|
|
1857
1942
|
colorQuaternaryPressed: string;
|
|
1943
|
+
colorQuaternaryFocus: string;
|
|
1944
|
+
rippleColorQuaternary: string;
|
|
1945
|
+
waveColorQuaternary: string;
|
|
1858
1946
|
color: string;
|
|
1859
1947
|
colorHover: string;
|
|
1860
1948
|
colorPressed: string;
|
|
@@ -2101,8 +2189,16 @@ export declare const datePickerProps: {
|
|
|
2101
2189
|
}, any>;
|
|
2102
2190
|
}>;
|
|
2103
2191
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2192
|
+
height: string;
|
|
2193
|
+
width: string;
|
|
2194
|
+
borderRadius: string;
|
|
2104
2195
|
color: string;
|
|
2105
2196
|
colorHover: string;
|
|
2197
|
+
railInsetHorizontalBottom: string;
|
|
2198
|
+
railInsetHorizontalTop: string;
|
|
2199
|
+
railInsetVerticalRight: string;
|
|
2200
|
+
railInsetVerticalLeft: string;
|
|
2201
|
+
railColor: string;
|
|
2106
2202
|
}, any>;
|
|
2107
2203
|
}>>>;
|
|
2108
2204
|
};
|
|
@@ -2360,16 +2456,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2360
2456
|
colorSecondary: string;
|
|
2361
2457
|
colorSecondaryHover: string;
|
|
2362
2458
|
colorSecondaryPressed: string;
|
|
2459
|
+
colorSecondaryFocus: string;
|
|
2460
|
+
colorSecondaryDisabled: string;
|
|
2461
|
+
textColorSecondaryDisabled: string;
|
|
2363
2462
|
waveColorSecondary: string;
|
|
2364
2463
|
colorTertiary: string;
|
|
2365
2464
|
colorTertiaryHover: string;
|
|
2366
2465
|
colorTertiaryPressed: string;
|
|
2466
|
+
colorTertiaryFocus: string;
|
|
2367
2467
|
colorTertiaryDisalbed: string;
|
|
2368
2468
|
waveColorTertiary: string;
|
|
2369
2469
|
textColorTextTertiary: string;
|
|
2470
|
+
rippleColorTertiary: string;
|
|
2370
2471
|
colorQuaternary: string;
|
|
2371
2472
|
colorQuaternaryHover: string;
|
|
2372
2473
|
colorQuaternaryPressed: string;
|
|
2474
|
+
colorQuaternaryFocus: string;
|
|
2475
|
+
rippleColorQuaternary: string;
|
|
2476
|
+
waveColorQuaternary: string;
|
|
2373
2477
|
color: string;
|
|
2374
2478
|
colorHover: string;
|
|
2375
2479
|
colorPressed: string;
|
|
@@ -2569,8 +2673,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2569
2673
|
iconColorDisabled: string;
|
|
2570
2674
|
}, {
|
|
2571
2675
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2676
|
+
height: string;
|
|
2677
|
+
width: string;
|
|
2678
|
+
borderRadius: string;
|
|
2572
2679
|
color: string;
|
|
2573
2680
|
colorHover: string;
|
|
2681
|
+
railInsetHorizontalBottom: string;
|
|
2682
|
+
railInsetHorizontalTop: string;
|
|
2683
|
+
railInsetVerticalRight: string;
|
|
2684
|
+
railInsetVerticalLeft: string;
|
|
2685
|
+
railColor: string;
|
|
2574
2686
|
}, any>;
|
|
2575
2687
|
Button: import("../../_mixins").Theme<"Button", {
|
|
2576
2688
|
heightTiny: string;
|
|
@@ -2593,16 +2705,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2593
2705
|
colorSecondary: string;
|
|
2594
2706
|
colorSecondaryHover: string;
|
|
2595
2707
|
colorSecondaryPressed: string;
|
|
2708
|
+
colorSecondaryFocus: string;
|
|
2709
|
+
colorSecondaryDisabled: string;
|
|
2710
|
+
textColorSecondaryDisabled: string;
|
|
2596
2711
|
waveColorSecondary: string;
|
|
2597
2712
|
colorTertiary: string;
|
|
2598
2713
|
colorTertiaryHover: string;
|
|
2599
2714
|
colorTertiaryPressed: string;
|
|
2715
|
+
colorTertiaryFocus: string;
|
|
2600
2716
|
colorTertiaryDisalbed: string;
|
|
2601
2717
|
waveColorTertiary: string;
|
|
2602
2718
|
textColorTextTertiary: string;
|
|
2719
|
+
rippleColorTertiary: string;
|
|
2603
2720
|
colorQuaternary: string;
|
|
2604
2721
|
colorQuaternaryHover: string;
|
|
2605
2722
|
colorQuaternaryPressed: string;
|
|
2723
|
+
colorQuaternaryFocus: string;
|
|
2724
|
+
rippleColorQuaternary: string;
|
|
2725
|
+
waveColorQuaternary: string;
|
|
2606
2726
|
color: string;
|
|
2607
2727
|
colorHover: string;
|
|
2608
2728
|
colorPressed: string;
|
|
@@ -2849,8 +2969,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2849
2969
|
}, any>;
|
|
2850
2970
|
}>;
|
|
2851
2971
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2972
|
+
height: string;
|
|
2973
|
+
width: string;
|
|
2974
|
+
borderRadius: string;
|
|
2852
2975
|
color: string;
|
|
2853
2976
|
colorHover: string;
|
|
2977
|
+
railInsetHorizontalBottom: string;
|
|
2978
|
+
railInsetHorizontalTop: string;
|
|
2979
|
+
railInsetVerticalRight: string;
|
|
2980
|
+
railInsetVerticalLeft: string;
|
|
2981
|
+
railColor: string;
|
|
2854
2982
|
}, any>;
|
|
2855
2983
|
}>>;
|
|
2856
2984
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
@@ -3037,16 +3165,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3037
3165
|
colorSecondary: string;
|
|
3038
3166
|
colorSecondaryHover: string;
|
|
3039
3167
|
colorSecondaryPressed: string;
|
|
3168
|
+
colorSecondaryFocus: string;
|
|
3169
|
+
colorSecondaryDisabled: string;
|
|
3170
|
+
textColorSecondaryDisabled: string;
|
|
3040
3171
|
waveColorSecondary: string;
|
|
3041
3172
|
colorTertiary: string;
|
|
3042
3173
|
colorTertiaryHover: string;
|
|
3043
3174
|
colorTertiaryPressed: string;
|
|
3175
|
+
colorTertiaryFocus: string;
|
|
3044
3176
|
colorTertiaryDisalbed: string;
|
|
3045
3177
|
waveColorTertiary: string;
|
|
3046
3178
|
textColorTextTertiary: string;
|
|
3179
|
+
rippleColorTertiary: string;
|
|
3047
3180
|
colorQuaternary: string;
|
|
3048
3181
|
colorQuaternaryHover: string;
|
|
3049
3182
|
colorQuaternaryPressed: string;
|
|
3183
|
+
colorQuaternaryFocus: string;
|
|
3184
|
+
rippleColorQuaternary: string;
|
|
3185
|
+
waveColorQuaternary: string;
|
|
3050
3186
|
color: string;
|
|
3051
3187
|
colorHover: string;
|
|
3052
3188
|
colorPressed: string;
|
|
@@ -3246,8 +3382,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3246
3382
|
iconColorDisabled: string;
|
|
3247
3383
|
}, {
|
|
3248
3384
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3385
|
+
height: string;
|
|
3386
|
+
width: string;
|
|
3387
|
+
borderRadius: string;
|
|
3249
3388
|
color: string;
|
|
3250
3389
|
colorHover: string;
|
|
3390
|
+
railInsetHorizontalBottom: string;
|
|
3391
|
+
railInsetHorizontalTop: string;
|
|
3392
|
+
railInsetVerticalRight: string;
|
|
3393
|
+
railInsetVerticalLeft: string;
|
|
3394
|
+
railColor: string;
|
|
3251
3395
|
}, any>;
|
|
3252
3396
|
Button: import("../../_mixins").Theme<"Button", {
|
|
3253
3397
|
heightTiny: string;
|
|
@@ -3270,16 +3414,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3270
3414
|
colorSecondary: string;
|
|
3271
3415
|
colorSecondaryHover: string;
|
|
3272
3416
|
colorSecondaryPressed: string;
|
|
3417
|
+
colorSecondaryFocus: string;
|
|
3418
|
+
colorSecondaryDisabled: string;
|
|
3419
|
+
textColorSecondaryDisabled: string;
|
|
3273
3420
|
waveColorSecondary: string;
|
|
3274
3421
|
colorTertiary: string;
|
|
3275
3422
|
colorTertiaryHover: string;
|
|
3276
3423
|
colorTertiaryPressed: string;
|
|
3424
|
+
colorTertiaryFocus: string;
|
|
3277
3425
|
colorTertiaryDisalbed: string;
|
|
3278
3426
|
waveColorTertiary: string;
|
|
3279
3427
|
textColorTextTertiary: string;
|
|
3428
|
+
rippleColorTertiary: string;
|
|
3280
3429
|
colorQuaternary: string;
|
|
3281
3430
|
colorQuaternaryHover: string;
|
|
3282
3431
|
colorQuaternaryPressed: string;
|
|
3432
|
+
colorQuaternaryFocus: string;
|
|
3433
|
+
rippleColorQuaternary: string;
|
|
3434
|
+
waveColorQuaternary: string;
|
|
3283
3435
|
color: string;
|
|
3284
3436
|
colorHover: string;
|
|
3285
3437
|
colorPressed: string;
|
|
@@ -3526,8 +3678,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3526
3678
|
}, any>;
|
|
3527
3679
|
}>;
|
|
3528
3680
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3681
|
+
height: string;
|
|
3682
|
+
width: string;
|
|
3683
|
+
borderRadius: string;
|
|
3529
3684
|
color: string;
|
|
3530
3685
|
colorHover: string;
|
|
3686
|
+
railInsetHorizontalBottom: string;
|
|
3687
|
+
railInsetHorizontalTop: string;
|
|
3688
|
+
railInsetVerticalRight: string;
|
|
3689
|
+
railInsetVerticalLeft: string;
|
|
3690
|
+
railColor: string;
|
|
3531
3691
|
}, any>;
|
|
3532
3692
|
}>>>;
|
|
3533
3693
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
@@ -3714,16 +3874,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3714
3874
|
colorSecondary: string;
|
|
3715
3875
|
colorSecondaryHover: string;
|
|
3716
3876
|
colorSecondaryPressed: string;
|
|
3877
|
+
colorSecondaryFocus: string;
|
|
3878
|
+
colorSecondaryDisabled: string;
|
|
3879
|
+
textColorSecondaryDisabled: string;
|
|
3717
3880
|
waveColorSecondary: string;
|
|
3718
3881
|
colorTertiary: string;
|
|
3719
3882
|
colorTertiaryHover: string;
|
|
3720
3883
|
colorTertiaryPressed: string;
|
|
3884
|
+
colorTertiaryFocus: string;
|
|
3721
3885
|
colorTertiaryDisalbed: string;
|
|
3722
3886
|
waveColorTertiary: string;
|
|
3723
3887
|
textColorTextTertiary: string;
|
|
3888
|
+
rippleColorTertiary: string;
|
|
3724
3889
|
colorQuaternary: string;
|
|
3725
3890
|
colorQuaternaryHover: string;
|
|
3726
3891
|
colorQuaternaryPressed: string;
|
|
3892
|
+
colorQuaternaryFocus: string;
|
|
3893
|
+
rippleColorQuaternary: string;
|
|
3894
|
+
waveColorQuaternary: string;
|
|
3727
3895
|
color: string;
|
|
3728
3896
|
colorHover: string;
|
|
3729
3897
|
colorPressed: string;
|
|
@@ -3923,8 +4091,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3923
4091
|
iconColorDisabled: string;
|
|
3924
4092
|
}, {
|
|
3925
4093
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
4094
|
+
height: string;
|
|
4095
|
+
width: string;
|
|
4096
|
+
borderRadius: string;
|
|
3926
4097
|
color: string;
|
|
3927
4098
|
colorHover: string;
|
|
4099
|
+
railInsetHorizontalBottom: string;
|
|
4100
|
+
railInsetHorizontalTop: string;
|
|
4101
|
+
railInsetVerticalRight: string;
|
|
4102
|
+
railInsetVerticalLeft: string;
|
|
4103
|
+
railColor: string;
|
|
3928
4104
|
}, any>;
|
|
3929
4105
|
Button: import("../../_mixins").Theme<"Button", {
|
|
3930
4106
|
heightTiny: string;
|
|
@@ -3947,16 +4123,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3947
4123
|
colorSecondary: string;
|
|
3948
4124
|
colorSecondaryHover: string;
|
|
3949
4125
|
colorSecondaryPressed: string;
|
|
4126
|
+
colorSecondaryFocus: string;
|
|
4127
|
+
colorSecondaryDisabled: string;
|
|
4128
|
+
textColorSecondaryDisabled: string;
|
|
3950
4129
|
waveColorSecondary: string;
|
|
3951
4130
|
colorTertiary: string;
|
|
3952
4131
|
colorTertiaryHover: string;
|
|
3953
4132
|
colorTertiaryPressed: string;
|
|
4133
|
+
colorTertiaryFocus: string;
|
|
3954
4134
|
colorTertiaryDisalbed: string;
|
|
3955
4135
|
waveColorTertiary: string;
|
|
3956
4136
|
textColorTextTertiary: string;
|
|
4137
|
+
rippleColorTertiary: string;
|
|
3957
4138
|
colorQuaternary: string;
|
|
3958
4139
|
colorQuaternaryHover: string;
|
|
3959
4140
|
colorQuaternaryPressed: string;
|
|
4141
|
+
colorQuaternaryFocus: string;
|
|
4142
|
+
rippleColorQuaternary: string;
|
|
4143
|
+
waveColorQuaternary: string;
|
|
3960
4144
|
color: string;
|
|
3961
4145
|
colorHover: string;
|
|
3962
4146
|
colorPressed: string;
|
|
@@ -4203,8 +4387,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4203
4387
|
}, any>;
|
|
4204
4388
|
}>;
|
|
4205
4389
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
4390
|
+
height: string;
|
|
4391
|
+
width: string;
|
|
4392
|
+
borderRadius: string;
|
|
4206
4393
|
color: string;
|
|
4207
4394
|
colorHover: string;
|
|
4395
|
+
railInsetHorizontalBottom: string;
|
|
4396
|
+
railInsetHorizontalTop: string;
|
|
4397
|
+
railInsetVerticalRight: string;
|
|
4398
|
+
railInsetVerticalLeft: string;
|
|
4399
|
+
railColor: string;
|
|
4208
4400
|
}, any>;
|
|
4209
4401
|
}>>>;
|
|
4210
4402
|
}, {
|
|
@@ -4232,7 +4424,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4232
4424
|
yearVlRef?: {
|
|
4233
4425
|
listElRef: HTMLElement;
|
|
4234
4426
|
itemsElRef: HTMLElement | null;
|
|
4235
|
-
scrollTo: import("vueuc
|
|
4427
|
+
scrollTo: import("vueuc").VVirtualListScrollTo;
|
|
4236
4428
|
} | null | undefined;
|
|
4237
4429
|
startYearScrollbarRef?: {
|
|
4238
4430
|
$el: HTMLElement;
|
|
@@ -4285,12 +4477,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4285
4477
|
startYearVlRef?: {
|
|
4286
4478
|
listElRef: HTMLElement;
|
|
4287
4479
|
itemsElRef: HTMLElement | null;
|
|
4288
|
-
scrollTo: import("vueuc
|
|
4480
|
+
scrollTo: import("vueuc").VVirtualListScrollTo;
|
|
4289
4481
|
} | null | undefined;
|
|
4290
4482
|
endYearVlRef?: {
|
|
4291
4483
|
listElRef: HTMLElement;
|
|
4292
4484
|
itemsElRef: HTMLElement | null;
|
|
4293
|
-
scrollTo: import("vueuc
|
|
4485
|
+
scrollTo: import("vueuc").VVirtualListScrollTo;
|
|
4294
4486
|
} | null | undefined;
|
|
4295
4487
|
} | null>;
|
|
4296
4488
|
triggerElRef: Ref<HTMLElement | null>;
|
|
@@ -4525,16 +4717,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4525
4717
|
colorSecondary: string;
|
|
4526
4718
|
colorSecondaryHover: string;
|
|
4527
4719
|
colorSecondaryPressed: string;
|
|
4720
|
+
colorSecondaryFocus: string;
|
|
4721
|
+
colorSecondaryDisabled: string;
|
|
4722
|
+
textColorSecondaryDisabled: string;
|
|
4528
4723
|
waveColorSecondary: string;
|
|
4529
4724
|
colorTertiary: string;
|
|
4530
4725
|
colorTertiaryHover: string;
|
|
4531
4726
|
colorTertiaryPressed: string;
|
|
4727
|
+
colorTertiaryFocus: string;
|
|
4532
4728
|
colorTertiaryDisalbed: string;
|
|
4533
4729
|
waveColorTertiary: string;
|
|
4534
4730
|
textColorTextTertiary: string;
|
|
4731
|
+
rippleColorTertiary: string;
|
|
4535
4732
|
colorQuaternary: string;
|
|
4536
4733
|
colorQuaternaryHover: string;
|
|
4537
4734
|
colorQuaternaryPressed: string;
|
|
4735
|
+
colorQuaternaryFocus: string;
|
|
4736
|
+
rippleColorQuaternary: string;
|
|
4737
|
+
waveColorQuaternary: string;
|
|
4538
4738
|
color: string;
|
|
4539
4739
|
colorHover: string;
|
|
4540
4740
|
colorPressed: string;
|
|
@@ -4734,8 +4934,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4734
4934
|
iconColorDisabled: string;
|
|
4735
4935
|
}, {
|
|
4736
4936
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
4937
|
+
height: string;
|
|
4938
|
+
width: string;
|
|
4939
|
+
borderRadius: string;
|
|
4737
4940
|
color: string;
|
|
4738
4941
|
colorHover: string;
|
|
4942
|
+
railInsetHorizontalBottom: string;
|
|
4943
|
+
railInsetHorizontalTop: string;
|
|
4944
|
+
railInsetVerticalRight: string;
|
|
4945
|
+
railInsetVerticalLeft: string;
|
|
4946
|
+
railColor: string;
|
|
4739
4947
|
}, any>;
|
|
4740
4948
|
Button: import("../../_mixins").Theme<"Button", {
|
|
4741
4949
|
heightTiny: string;
|
|
@@ -4758,16 +4966,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4758
4966
|
colorSecondary: string;
|
|
4759
4967
|
colorSecondaryHover: string;
|
|
4760
4968
|
colorSecondaryPressed: string;
|
|
4969
|
+
colorSecondaryFocus: string;
|
|
4970
|
+
colorSecondaryDisabled: string;
|
|
4971
|
+
textColorSecondaryDisabled: string;
|
|
4761
4972
|
waveColorSecondary: string;
|
|
4762
4973
|
colorTertiary: string;
|
|
4763
4974
|
colorTertiaryHover: string;
|
|
4764
4975
|
colorTertiaryPressed: string;
|
|
4976
|
+
colorTertiaryFocus: string;
|
|
4765
4977
|
colorTertiaryDisalbed: string;
|
|
4766
4978
|
waveColorTertiary: string;
|
|
4767
4979
|
textColorTextTertiary: string;
|
|
4980
|
+
rippleColorTertiary: string;
|
|
4768
4981
|
colorQuaternary: string;
|
|
4769
4982
|
colorQuaternaryHover: string;
|
|
4770
4983
|
colorQuaternaryPressed: string;
|
|
4984
|
+
colorQuaternaryFocus: string;
|
|
4985
|
+
rippleColorQuaternary: string;
|
|
4986
|
+
waveColorQuaternary: string;
|
|
4771
4987
|
color: string;
|
|
4772
4988
|
colorHover: string;
|
|
4773
4989
|
colorPressed: string;
|
|
@@ -5014,8 +5230,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5014
5230
|
}, any>;
|
|
5015
5231
|
}>;
|
|
5016
5232
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
5233
|
+
height: string;
|
|
5234
|
+
width: string;
|
|
5235
|
+
borderRadius: string;
|
|
5017
5236
|
color: string;
|
|
5018
5237
|
colorHover: string;
|
|
5238
|
+
railInsetHorizontalBottom: string;
|
|
5239
|
+
railInsetHorizontalTop: string;
|
|
5240
|
+
railInsetVerticalRight: string;
|
|
5241
|
+
railInsetVerticalLeft: string;
|
|
5242
|
+
railColor: string;
|
|
5019
5243
|
}, any>;
|
|
5020
5244
|
};
|
|
5021
5245
|
peerOverrides: {
|
|
@@ -5032,8 +5256,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5032
5256
|
TimePicker?: {
|
|
5033
5257
|
peers?: {
|
|
5034
5258
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
5259
|
+
height: string;
|
|
5260
|
+
width: string;
|
|
5261
|
+
borderRadius: string;
|
|
5035
5262
|
color: string;
|
|
5036
5263
|
colorHover: string;
|
|
5264
|
+
railInsetHorizontalBottom: string;
|
|
5265
|
+
railInsetHorizontalTop: string;
|
|
5266
|
+
railInsetVerticalRight: string;
|
|
5267
|
+
railInsetVerticalLeft: string;
|
|
5268
|
+
railColor: string;
|
|
5037
5269
|
}, any>> | undefined;
|
|
5038
5270
|
Button?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Button", {
|
|
5039
5271
|
heightTiny: string;
|
|
@@ -5056,16 +5288,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5056
5288
|
colorSecondary: string;
|
|
5057
5289
|
colorSecondaryHover: string;
|
|
5058
5290
|
colorSecondaryPressed: string;
|
|
5291
|
+
colorSecondaryFocus: string;
|
|
5292
|
+
colorSecondaryDisabled: string;
|
|
5293
|
+
textColorSecondaryDisabled: string;
|
|
5059
5294
|
waveColorSecondary: string;
|
|
5060
5295
|
colorTertiary: string;
|
|
5061
5296
|
colorTertiaryHover: string;
|
|
5062
5297
|
colorTertiaryPressed: string;
|
|
5298
|
+
colorTertiaryFocus: string;
|
|
5063
5299
|
colorTertiaryDisalbed: string;
|
|
5064
5300
|
waveColorTertiary: string;
|
|
5065
5301
|
textColorTextTertiary: string;
|
|
5302
|
+
rippleColorTertiary: string;
|
|
5066
5303
|
colorQuaternary: string;
|
|
5067
5304
|
colorQuaternaryHover: string;
|
|
5068
5305
|
colorQuaternaryPressed: string;
|
|
5306
|
+
colorQuaternaryFocus: string;
|
|
5307
|
+
rippleColorQuaternary: string;
|
|
5308
|
+
waveColorQuaternary: string;
|
|
5069
5309
|
color: string;
|
|
5070
5310
|
colorHover: string;
|
|
5071
5311
|
colorPressed: string;
|
|
@@ -5661,16 +5901,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5661
5901
|
colorSecondary: string;
|
|
5662
5902
|
colorSecondaryHover: string;
|
|
5663
5903
|
colorSecondaryPressed: string;
|
|
5904
|
+
colorSecondaryFocus: string;
|
|
5905
|
+
colorSecondaryDisabled: string;
|
|
5906
|
+
textColorSecondaryDisabled: string;
|
|
5664
5907
|
waveColorSecondary: string;
|
|
5665
5908
|
colorTertiary: string;
|
|
5666
5909
|
colorTertiaryHover: string;
|
|
5667
5910
|
colorTertiaryPressed: string;
|
|
5911
|
+
colorTertiaryFocus: string;
|
|
5668
5912
|
colorTertiaryDisalbed: string;
|
|
5669
5913
|
waveColorTertiary: string;
|
|
5670
5914
|
textColorTextTertiary: string;
|
|
5915
|
+
rippleColorTertiary: string;
|
|
5671
5916
|
colorQuaternary: string;
|
|
5672
5917
|
colorQuaternaryHover: string;
|
|
5673
5918
|
colorQuaternaryPressed: string;
|
|
5919
|
+
colorQuaternaryFocus: string;
|
|
5920
|
+
rippleColorQuaternary: string;
|
|
5921
|
+
waveColorQuaternary: string;
|
|
5674
5922
|
color: string;
|
|
5675
5923
|
colorHover: string;
|
|
5676
5924
|
colorPressed: string;
|
|
@@ -5870,8 +6118,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5870
6118
|
iconColorDisabled: string;
|
|
5871
6119
|
}, {
|
|
5872
6120
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
6121
|
+
height: string;
|
|
6122
|
+
width: string;
|
|
6123
|
+
borderRadius: string;
|
|
5873
6124
|
color: string;
|
|
5874
6125
|
colorHover: string;
|
|
6126
|
+
railInsetHorizontalBottom: string;
|
|
6127
|
+
railInsetHorizontalTop: string;
|
|
6128
|
+
railInsetVerticalRight: string;
|
|
6129
|
+
railInsetVerticalLeft: string;
|
|
6130
|
+
railColor: string;
|
|
5875
6131
|
}, any>;
|
|
5876
6132
|
Button: import("../../_mixins").Theme<"Button", {
|
|
5877
6133
|
heightTiny: string;
|
|
@@ -5894,16 +6150,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5894
6150
|
colorSecondary: string;
|
|
5895
6151
|
colorSecondaryHover: string;
|
|
5896
6152
|
colorSecondaryPressed: string;
|
|
6153
|
+
colorSecondaryFocus: string;
|
|
6154
|
+
colorSecondaryDisabled: string;
|
|
6155
|
+
textColorSecondaryDisabled: string;
|
|
5897
6156
|
waveColorSecondary: string;
|
|
5898
6157
|
colorTertiary: string;
|
|
5899
6158
|
colorTertiaryHover: string;
|
|
5900
6159
|
colorTertiaryPressed: string;
|
|
6160
|
+
colorTertiaryFocus: string;
|
|
5901
6161
|
colorTertiaryDisalbed: string;
|
|
5902
6162
|
waveColorTertiary: string;
|
|
5903
6163
|
textColorTextTertiary: string;
|
|
6164
|
+
rippleColorTertiary: string;
|
|
5904
6165
|
colorQuaternary: string;
|
|
5905
6166
|
colorQuaternaryHover: string;
|
|
5906
6167
|
colorQuaternaryPressed: string;
|
|
6168
|
+
colorQuaternaryFocus: string;
|
|
6169
|
+
rippleColorQuaternary: string;
|
|
6170
|
+
waveColorQuaternary: string;
|
|
5907
6171
|
color: string;
|
|
5908
6172
|
colorHover: string;
|
|
5909
6173
|
colorPressed: string;
|
|
@@ -6150,8 +6414,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6150
6414
|
}, any>;
|
|
6151
6415
|
}>;
|
|
6152
6416
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
6417
|
+
height: string;
|
|
6418
|
+
width: string;
|
|
6419
|
+
borderRadius: string;
|
|
6153
6420
|
color: string;
|
|
6154
6421
|
colorHover: string;
|
|
6422
|
+
railInsetHorizontalBottom: string;
|
|
6423
|
+
railInsetHorizontalTop: string;
|
|
6424
|
+
railInsetVerticalRight: string;
|
|
6425
|
+
railInsetVerticalLeft: string;
|
|
6426
|
+
railColor: string;
|
|
6155
6427
|
}, any>;
|
|
6156
6428
|
}>>;
|
|
6157
6429
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
@@ -6338,16 +6610,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6338
6610
|
colorSecondary: string;
|
|
6339
6611
|
colorSecondaryHover: string;
|
|
6340
6612
|
colorSecondaryPressed: string;
|
|
6613
|
+
colorSecondaryFocus: string;
|
|
6614
|
+
colorSecondaryDisabled: string;
|
|
6615
|
+
textColorSecondaryDisabled: string;
|
|
6341
6616
|
waveColorSecondary: string;
|
|
6342
6617
|
colorTertiary: string;
|
|
6343
6618
|
colorTertiaryHover: string;
|
|
6344
6619
|
colorTertiaryPressed: string;
|
|
6620
|
+
colorTertiaryFocus: string;
|
|
6345
6621
|
colorTertiaryDisalbed: string;
|
|
6346
6622
|
waveColorTertiary: string;
|
|
6347
6623
|
textColorTextTertiary: string;
|
|
6624
|
+
rippleColorTertiary: string;
|
|
6348
6625
|
colorQuaternary: string;
|
|
6349
6626
|
colorQuaternaryHover: string;
|
|
6350
6627
|
colorQuaternaryPressed: string;
|
|
6628
|
+
colorQuaternaryFocus: string;
|
|
6629
|
+
rippleColorQuaternary: string;
|
|
6630
|
+
waveColorQuaternary: string;
|
|
6351
6631
|
color: string;
|
|
6352
6632
|
colorHover: string;
|
|
6353
6633
|
colorPressed: string;
|
|
@@ -6547,8 +6827,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6547
6827
|
iconColorDisabled: string;
|
|
6548
6828
|
}, {
|
|
6549
6829
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
6830
|
+
height: string;
|
|
6831
|
+
width: string;
|
|
6832
|
+
borderRadius: string;
|
|
6550
6833
|
color: string;
|
|
6551
6834
|
colorHover: string;
|
|
6835
|
+
railInsetHorizontalBottom: string;
|
|
6836
|
+
railInsetHorizontalTop: string;
|
|
6837
|
+
railInsetVerticalRight: string;
|
|
6838
|
+
railInsetVerticalLeft: string;
|
|
6839
|
+
railColor: string;
|
|
6552
6840
|
}, any>;
|
|
6553
6841
|
Button: import("../../_mixins").Theme<"Button", {
|
|
6554
6842
|
heightTiny: string;
|
|
@@ -6571,16 +6859,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6571
6859
|
colorSecondary: string;
|
|
6572
6860
|
colorSecondaryHover: string;
|
|
6573
6861
|
colorSecondaryPressed: string;
|
|
6862
|
+
colorSecondaryFocus: string;
|
|
6863
|
+
colorSecondaryDisabled: string;
|
|
6864
|
+
textColorSecondaryDisabled: string;
|
|
6574
6865
|
waveColorSecondary: string;
|
|
6575
6866
|
colorTertiary: string;
|
|
6576
6867
|
colorTertiaryHover: string;
|
|
6577
6868
|
colorTertiaryPressed: string;
|
|
6869
|
+
colorTertiaryFocus: string;
|
|
6578
6870
|
colorTertiaryDisalbed: string;
|
|
6579
6871
|
waveColorTertiary: string;
|
|
6580
6872
|
textColorTextTertiary: string;
|
|
6873
|
+
rippleColorTertiary: string;
|
|
6581
6874
|
colorQuaternary: string;
|
|
6582
6875
|
colorQuaternaryHover: string;
|
|
6583
6876
|
colorQuaternaryPressed: string;
|
|
6877
|
+
colorQuaternaryFocus: string;
|
|
6878
|
+
rippleColorQuaternary: string;
|
|
6879
|
+
waveColorQuaternary: string;
|
|
6584
6880
|
color: string;
|
|
6585
6881
|
colorHover: string;
|
|
6586
6882
|
colorPressed: string;
|
|
@@ -6827,8 +7123,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6827
7123
|
}, any>;
|
|
6828
7124
|
}>;
|
|
6829
7125
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
7126
|
+
height: string;
|
|
7127
|
+
width: string;
|
|
7128
|
+
borderRadius: string;
|
|
6830
7129
|
color: string;
|
|
6831
7130
|
colorHover: string;
|
|
7131
|
+
railInsetHorizontalBottom: string;
|
|
7132
|
+
railInsetHorizontalTop: string;
|
|
7133
|
+
railInsetVerticalRight: string;
|
|
7134
|
+
railInsetVerticalLeft: string;
|
|
7135
|
+
railColor: string;
|
|
6832
7136
|
}, any>;
|
|
6833
7137
|
}>>>;
|
|
6834
7138
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
|
|
@@ -7015,16 +7319,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7015
7319
|
colorSecondary: string;
|
|
7016
7320
|
colorSecondaryHover: string;
|
|
7017
7321
|
colorSecondaryPressed: string;
|
|
7322
|
+
colorSecondaryFocus: string;
|
|
7323
|
+
colorSecondaryDisabled: string;
|
|
7324
|
+
textColorSecondaryDisabled: string;
|
|
7018
7325
|
waveColorSecondary: string;
|
|
7019
7326
|
colorTertiary: string;
|
|
7020
7327
|
colorTertiaryHover: string;
|
|
7021
7328
|
colorTertiaryPressed: string;
|
|
7329
|
+
colorTertiaryFocus: string;
|
|
7022
7330
|
colorTertiaryDisalbed: string;
|
|
7023
7331
|
waveColorTertiary: string;
|
|
7024
7332
|
textColorTextTertiary: string;
|
|
7333
|
+
rippleColorTertiary: string;
|
|
7025
7334
|
colorQuaternary: string;
|
|
7026
7335
|
colorQuaternaryHover: string;
|
|
7027
7336
|
colorQuaternaryPressed: string;
|
|
7337
|
+
colorQuaternaryFocus: string;
|
|
7338
|
+
rippleColorQuaternary: string;
|
|
7339
|
+
waveColorQuaternary: string;
|
|
7028
7340
|
color: string;
|
|
7029
7341
|
colorHover: string;
|
|
7030
7342
|
colorPressed: string;
|
|
@@ -7224,8 +7536,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7224
7536
|
iconColorDisabled: string;
|
|
7225
7537
|
}, {
|
|
7226
7538
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
7539
|
+
height: string;
|
|
7540
|
+
width: string;
|
|
7541
|
+
borderRadius: string;
|
|
7227
7542
|
color: string;
|
|
7228
7543
|
colorHover: string;
|
|
7544
|
+
railInsetHorizontalBottom: string;
|
|
7545
|
+
railInsetHorizontalTop: string;
|
|
7546
|
+
railInsetVerticalRight: string;
|
|
7547
|
+
railInsetVerticalLeft: string;
|
|
7548
|
+
railColor: string;
|
|
7229
7549
|
}, any>;
|
|
7230
7550
|
Button: import("../../_mixins").Theme<"Button", {
|
|
7231
7551
|
heightTiny: string;
|
|
@@ -7248,16 +7568,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7248
7568
|
colorSecondary: string;
|
|
7249
7569
|
colorSecondaryHover: string;
|
|
7250
7570
|
colorSecondaryPressed: string;
|
|
7571
|
+
colorSecondaryFocus: string;
|
|
7572
|
+
colorSecondaryDisabled: string;
|
|
7573
|
+
textColorSecondaryDisabled: string;
|
|
7251
7574
|
waveColorSecondary: string;
|
|
7252
7575
|
colorTertiary: string;
|
|
7253
7576
|
colorTertiaryHover: string;
|
|
7254
7577
|
colorTertiaryPressed: string;
|
|
7578
|
+
colorTertiaryFocus: string;
|
|
7255
7579
|
colorTertiaryDisalbed: string;
|
|
7256
7580
|
waveColorTertiary: string;
|
|
7257
7581
|
textColorTextTertiary: string;
|
|
7582
|
+
rippleColorTertiary: string;
|
|
7258
7583
|
colorQuaternary: string;
|
|
7259
7584
|
colorQuaternaryHover: string;
|
|
7260
7585
|
colorQuaternaryPressed: string;
|
|
7586
|
+
colorQuaternaryFocus: string;
|
|
7587
|
+
rippleColorQuaternary: string;
|
|
7588
|
+
waveColorQuaternary: string;
|
|
7261
7589
|
color: string;
|
|
7262
7590
|
colorHover: string;
|
|
7263
7591
|
colorPressed: string;
|
|
@@ -7504,8 +7832,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7504
7832
|
}, any>;
|
|
7505
7833
|
}>;
|
|
7506
7834
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
7835
|
+
height: string;
|
|
7836
|
+
width: string;
|
|
7837
|
+
borderRadius: string;
|
|
7507
7838
|
color: string;
|
|
7508
7839
|
colorHover: string;
|
|
7840
|
+
railInsetHorizontalBottom: string;
|
|
7841
|
+
railInsetHorizontalTop: string;
|
|
7842
|
+
railInsetVerticalRight: string;
|
|
7843
|
+
railInsetVerticalLeft: string;
|
|
7844
|
+
railColor: string;
|
|
7509
7845
|
}, any>;
|
|
7510
7846
|
}>>>;
|
|
7511
7847
|
}>>, {
|