@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
|
@@ -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;
|
|
@@ -240,16 +240,24 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
240
240
|
colorSecondary: string;
|
|
241
241
|
colorSecondaryHover: string;
|
|
242
242
|
colorSecondaryPressed: string;
|
|
243
|
+
colorSecondaryFocus: string;
|
|
244
|
+
colorSecondaryDisabled: string;
|
|
245
|
+
textColorSecondaryDisabled: string;
|
|
243
246
|
waveColorSecondary: string;
|
|
244
247
|
colorTertiary: string;
|
|
245
248
|
colorTertiaryHover: string;
|
|
246
249
|
colorTertiaryPressed: string;
|
|
250
|
+
colorTertiaryFocus: string;
|
|
247
251
|
colorTertiaryDisalbed: string;
|
|
248
252
|
waveColorTertiary: string;
|
|
249
253
|
textColorTextTertiary: string;
|
|
254
|
+
rippleColorTertiary: string;
|
|
250
255
|
colorQuaternary: string;
|
|
251
256
|
colorQuaternaryHover: string;
|
|
252
257
|
colorQuaternaryPressed: string;
|
|
258
|
+
colorQuaternaryFocus: string;
|
|
259
|
+
rippleColorQuaternary: string;
|
|
260
|
+
waveColorQuaternary: string;
|
|
253
261
|
color: string;
|
|
254
262
|
colorHover: string;
|
|
255
263
|
colorPressed: string;
|
|
@@ -449,8 +457,16 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
449
457
|
iconColorDisabled: string;
|
|
450
458
|
}, {
|
|
451
459
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
460
|
+
height: string;
|
|
461
|
+
width: string;
|
|
462
|
+
borderRadius: string;
|
|
452
463
|
color: string;
|
|
453
464
|
colorHover: string;
|
|
465
|
+
railInsetHorizontalBottom: string;
|
|
466
|
+
railInsetHorizontalTop: string;
|
|
467
|
+
railInsetVerticalRight: string;
|
|
468
|
+
railInsetVerticalLeft: string;
|
|
469
|
+
railColor: string;
|
|
454
470
|
}, any>;
|
|
455
471
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
456
472
|
heightTiny: string;
|
|
@@ -473,16 +489,24 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
473
489
|
colorSecondary: string;
|
|
474
490
|
colorSecondaryHover: string;
|
|
475
491
|
colorSecondaryPressed: string;
|
|
492
|
+
colorSecondaryFocus: string;
|
|
493
|
+
colorSecondaryDisabled: string;
|
|
494
|
+
textColorSecondaryDisabled: string;
|
|
476
495
|
waveColorSecondary: string;
|
|
477
496
|
colorTertiary: string;
|
|
478
497
|
colorTertiaryHover: string;
|
|
479
498
|
colorTertiaryPressed: string;
|
|
499
|
+
colorTertiaryFocus: string;
|
|
480
500
|
colorTertiaryDisalbed: string;
|
|
481
501
|
waveColorTertiary: string;
|
|
482
502
|
textColorTextTertiary: string;
|
|
503
|
+
rippleColorTertiary: string;
|
|
483
504
|
colorQuaternary: string;
|
|
484
505
|
colorQuaternaryHover: string;
|
|
485
506
|
colorQuaternaryPressed: string;
|
|
507
|
+
colorQuaternaryFocus: string;
|
|
508
|
+
rippleColorQuaternary: string;
|
|
509
|
+
waveColorQuaternary: string;
|
|
486
510
|
color: string;
|
|
487
511
|
colorHover: string;
|
|
488
512
|
colorPressed: string;
|
|
@@ -729,8 +753,16 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
729
753
|
}, any>;
|
|
730
754
|
}>;
|
|
731
755
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
756
|
+
height: string;
|
|
757
|
+
width: string;
|
|
758
|
+
borderRadius: string;
|
|
732
759
|
color: string;
|
|
733
760
|
colorHover: string;
|
|
761
|
+
railInsetHorizontalBottom: string;
|
|
762
|
+
railInsetHorizontalTop: string;
|
|
763
|
+
railInsetVerticalRight: string;
|
|
764
|
+
railInsetVerticalLeft: string;
|
|
765
|
+
railColor: string;
|
|
734
766
|
}, any>;
|
|
735
767
|
};
|
|
736
768
|
peerOverrides: {
|
|
@@ -747,8 +779,16 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
747
779
|
TimePicker?: {
|
|
748
780
|
peers?: {
|
|
749
781
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
782
|
+
height: string;
|
|
783
|
+
width: string;
|
|
784
|
+
borderRadius: string;
|
|
750
785
|
color: string;
|
|
751
786
|
colorHover: string;
|
|
787
|
+
railInsetHorizontalBottom: string;
|
|
788
|
+
railInsetHorizontalTop: string;
|
|
789
|
+
railInsetVerticalRight: string;
|
|
790
|
+
railInsetVerticalLeft: string;
|
|
791
|
+
railColor: string;
|
|
752
792
|
}, any>> | undefined;
|
|
753
793
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
754
794
|
heightTiny: string;
|
|
@@ -771,16 +811,24 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
771
811
|
colorSecondary: string;
|
|
772
812
|
colorSecondaryHover: string;
|
|
773
813
|
colorSecondaryPressed: string;
|
|
814
|
+
colorSecondaryFocus: string;
|
|
815
|
+
colorSecondaryDisabled: string;
|
|
816
|
+
textColorSecondaryDisabled: string;
|
|
774
817
|
waveColorSecondary: string;
|
|
775
818
|
colorTertiary: string;
|
|
776
819
|
colorTertiaryHover: string;
|
|
777
820
|
colorTertiaryPressed: string;
|
|
821
|
+
colorTertiaryFocus: string;
|
|
778
822
|
colorTertiaryDisalbed: string;
|
|
779
823
|
waveColorTertiary: string;
|
|
780
824
|
textColorTextTertiary: string;
|
|
825
|
+
rippleColorTertiary: string;
|
|
781
826
|
colorQuaternary: string;
|
|
782
827
|
colorQuaternaryHover: string;
|
|
783
828
|
colorQuaternaryPressed: string;
|
|
829
|
+
colorQuaternaryFocus: string;
|
|
830
|
+
rippleColorQuaternary: string;
|
|
831
|
+
waveColorQuaternary: string;
|
|
784
832
|
color: string;
|
|
785
833
|
colorHover: string;
|
|
786
834
|
colorPressed: string;
|
|
@@ -272,16 +272,24 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
272
272
|
colorSecondary: string;
|
|
273
273
|
colorSecondaryHover: string;
|
|
274
274
|
colorSecondaryPressed: string;
|
|
275
|
+
colorSecondaryFocus: string;
|
|
276
|
+
colorSecondaryDisabled: string;
|
|
277
|
+
textColorSecondaryDisabled: string;
|
|
275
278
|
waveColorSecondary: string;
|
|
276
279
|
colorTertiary: string;
|
|
277
280
|
colorTertiaryHover: string;
|
|
278
281
|
colorTertiaryPressed: string;
|
|
282
|
+
colorTertiaryFocus: string;
|
|
279
283
|
colorTertiaryDisalbed: string;
|
|
280
284
|
waveColorTertiary: string;
|
|
281
285
|
textColorTextTertiary: string;
|
|
286
|
+
rippleColorTertiary: string;
|
|
282
287
|
colorQuaternary: string;
|
|
283
288
|
colorQuaternaryHover: string;
|
|
284
289
|
colorQuaternaryPressed: string;
|
|
290
|
+
colorQuaternaryFocus: string;
|
|
291
|
+
rippleColorQuaternary: string;
|
|
292
|
+
waveColorQuaternary: string;
|
|
285
293
|
color: string;
|
|
286
294
|
colorHover: string;
|
|
287
295
|
colorPressed: string;
|
|
@@ -481,8 +489,16 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
481
489
|
iconColorDisabled: string;
|
|
482
490
|
}, {
|
|
483
491
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
492
|
+
height: string;
|
|
493
|
+
width: string;
|
|
494
|
+
borderRadius: string;
|
|
484
495
|
color: string;
|
|
485
496
|
colorHover: string;
|
|
497
|
+
railInsetHorizontalBottom: string;
|
|
498
|
+
railInsetHorizontalTop: string;
|
|
499
|
+
railInsetVerticalRight: string;
|
|
500
|
+
railInsetVerticalLeft: string;
|
|
501
|
+
railColor: string;
|
|
486
502
|
}, any>;
|
|
487
503
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
488
504
|
heightTiny: string;
|
|
@@ -505,16 +521,24 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
505
521
|
colorSecondary: string;
|
|
506
522
|
colorSecondaryHover: string;
|
|
507
523
|
colorSecondaryPressed: string;
|
|
524
|
+
colorSecondaryFocus: string;
|
|
525
|
+
colorSecondaryDisabled: string;
|
|
526
|
+
textColorSecondaryDisabled: string;
|
|
508
527
|
waveColorSecondary: string;
|
|
509
528
|
colorTertiary: string;
|
|
510
529
|
colorTertiaryHover: string;
|
|
511
530
|
colorTertiaryPressed: string;
|
|
531
|
+
colorTertiaryFocus: string;
|
|
512
532
|
colorTertiaryDisalbed: string;
|
|
513
533
|
waveColorTertiary: string;
|
|
514
534
|
textColorTextTertiary: string;
|
|
535
|
+
rippleColorTertiary: string;
|
|
515
536
|
colorQuaternary: string;
|
|
516
537
|
colorQuaternaryHover: string;
|
|
517
538
|
colorQuaternaryPressed: string;
|
|
539
|
+
colorQuaternaryFocus: string;
|
|
540
|
+
rippleColorQuaternary: string;
|
|
541
|
+
waveColorQuaternary: string;
|
|
518
542
|
color: string;
|
|
519
543
|
colorHover: string;
|
|
520
544
|
colorPressed: string;
|
|
@@ -761,8 +785,16 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
761
785
|
}, any>;
|
|
762
786
|
}>;
|
|
763
787
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
788
|
+
height: string;
|
|
789
|
+
width: string;
|
|
790
|
+
borderRadius: string;
|
|
764
791
|
color: string;
|
|
765
792
|
colorHover: string;
|
|
793
|
+
railInsetHorizontalBottom: string;
|
|
794
|
+
railInsetHorizontalTop: string;
|
|
795
|
+
railInsetVerticalRight: string;
|
|
796
|
+
railInsetVerticalLeft: string;
|
|
797
|
+
railColor: string;
|
|
766
798
|
}, any>;
|
|
767
799
|
};
|
|
768
800
|
peerOverrides: {
|
|
@@ -779,8 +811,16 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
779
811
|
TimePicker?: {
|
|
780
812
|
peers?: {
|
|
781
813
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
814
|
+
height: string;
|
|
815
|
+
width: string;
|
|
816
|
+
borderRadius: string;
|
|
782
817
|
color: string;
|
|
783
818
|
colorHover: string;
|
|
819
|
+
railInsetHorizontalBottom: string;
|
|
820
|
+
railInsetHorizontalTop: string;
|
|
821
|
+
railInsetVerticalRight: string;
|
|
822
|
+
railInsetVerticalLeft: string;
|
|
823
|
+
railColor: string;
|
|
784
824
|
}, any>> | undefined;
|
|
785
825
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
786
826
|
heightTiny: string;
|
|
@@ -803,16 +843,24 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
803
843
|
colorSecondary: string;
|
|
804
844
|
colorSecondaryHover: string;
|
|
805
845
|
colorSecondaryPressed: string;
|
|
846
|
+
colorSecondaryFocus: string;
|
|
847
|
+
colorSecondaryDisabled: string;
|
|
848
|
+
textColorSecondaryDisabled: string;
|
|
806
849
|
waveColorSecondary: string;
|
|
807
850
|
colorTertiary: string;
|
|
808
851
|
colorTertiaryHover: string;
|
|
809
852
|
colorTertiaryPressed: string;
|
|
853
|
+
colorTertiaryFocus: string;
|
|
810
854
|
colorTertiaryDisalbed: string;
|
|
811
855
|
waveColorTertiary: string;
|
|
812
856
|
textColorTextTertiary: string;
|
|
857
|
+
rippleColorTertiary: string;
|
|
813
858
|
colorQuaternary: string;
|
|
814
859
|
colorQuaternaryHover: string;
|
|
815
860
|
colorQuaternaryPressed: string;
|
|
861
|
+
colorQuaternaryFocus: string;
|
|
862
|
+
rippleColorQuaternary: string;
|
|
863
|
+
waveColorQuaternary: string;
|
|
816
864
|
color: string;
|
|
817
865
|
colorHover: string;
|
|
818
866
|
colorPressed: string;
|
|
@@ -216,16 +216,24 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
216
216
|
colorSecondary: string;
|
|
217
217
|
colorSecondaryHover: string;
|
|
218
218
|
colorSecondaryPressed: string;
|
|
219
|
+
colorSecondaryFocus: string;
|
|
220
|
+
colorSecondaryDisabled: string;
|
|
221
|
+
textColorSecondaryDisabled: string;
|
|
219
222
|
waveColorSecondary: string;
|
|
220
223
|
colorTertiary: string;
|
|
221
224
|
colorTertiaryHover: string;
|
|
222
225
|
colorTertiaryPressed: string;
|
|
226
|
+
colorTertiaryFocus: string;
|
|
223
227
|
colorTertiaryDisalbed: string;
|
|
224
228
|
waveColorTertiary: string;
|
|
225
229
|
textColorTextTertiary: string;
|
|
230
|
+
rippleColorTertiary: string;
|
|
226
231
|
colorQuaternary: string;
|
|
227
232
|
colorQuaternaryHover: string;
|
|
228
233
|
colorQuaternaryPressed: string;
|
|
234
|
+
colorQuaternaryFocus: string;
|
|
235
|
+
rippleColorQuaternary: string;
|
|
236
|
+
waveColorQuaternary: string;
|
|
229
237
|
color: string;
|
|
230
238
|
colorHover: string;
|
|
231
239
|
colorPressed: string;
|
|
@@ -425,8 +433,16 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
425
433
|
iconColorDisabled: string;
|
|
426
434
|
}, {
|
|
427
435
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
436
|
+
height: string;
|
|
437
|
+
width: string;
|
|
438
|
+
borderRadius: string;
|
|
428
439
|
color: string;
|
|
429
440
|
colorHover: string;
|
|
441
|
+
railInsetHorizontalBottom: string;
|
|
442
|
+
railInsetHorizontalTop: string;
|
|
443
|
+
railInsetVerticalRight: string;
|
|
444
|
+
railInsetVerticalLeft: string;
|
|
445
|
+
railColor: string;
|
|
430
446
|
}, any>;
|
|
431
447
|
Button: import("../../../_mixins").Theme<"Button", {
|
|
432
448
|
heightTiny: string;
|
|
@@ -449,16 +465,24 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
449
465
|
colorSecondary: string;
|
|
450
466
|
colorSecondaryHover: string;
|
|
451
467
|
colorSecondaryPressed: string;
|
|
468
|
+
colorSecondaryFocus: string;
|
|
469
|
+
colorSecondaryDisabled: string;
|
|
470
|
+
textColorSecondaryDisabled: string;
|
|
452
471
|
waveColorSecondary: string;
|
|
453
472
|
colorTertiary: string;
|
|
454
473
|
colorTertiaryHover: string;
|
|
455
474
|
colorTertiaryPressed: string;
|
|
475
|
+
colorTertiaryFocus: string;
|
|
456
476
|
colorTertiaryDisalbed: string;
|
|
457
477
|
waveColorTertiary: string;
|
|
458
478
|
textColorTextTertiary: string;
|
|
479
|
+
rippleColorTertiary: string;
|
|
459
480
|
colorQuaternary: string;
|
|
460
481
|
colorQuaternaryHover: string;
|
|
461
482
|
colorQuaternaryPressed: string;
|
|
483
|
+
colorQuaternaryFocus: string;
|
|
484
|
+
rippleColorQuaternary: string;
|
|
485
|
+
waveColorQuaternary: string;
|
|
462
486
|
color: string;
|
|
463
487
|
colorHover: string;
|
|
464
488
|
colorPressed: string;
|
|
@@ -705,8 +729,16 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
705
729
|
}, any>;
|
|
706
730
|
}>;
|
|
707
731
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
732
|
+
height: string;
|
|
733
|
+
width: string;
|
|
734
|
+
borderRadius: string;
|
|
708
735
|
color: string;
|
|
709
736
|
colorHover: string;
|
|
737
|
+
railInsetHorizontalBottom: string;
|
|
738
|
+
railInsetHorizontalTop: string;
|
|
739
|
+
railInsetVerticalRight: string;
|
|
740
|
+
railInsetVerticalLeft: string;
|
|
741
|
+
railColor: string;
|
|
710
742
|
}, any>;
|
|
711
743
|
};
|
|
712
744
|
peerOverrides: {
|
|
@@ -723,8 +755,16 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
723
755
|
TimePicker?: {
|
|
724
756
|
peers?: {
|
|
725
757
|
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
758
|
+
height: string;
|
|
759
|
+
width: string;
|
|
760
|
+
borderRadius: string;
|
|
726
761
|
color: string;
|
|
727
762
|
colorHover: string;
|
|
763
|
+
railInsetHorizontalBottom: string;
|
|
764
|
+
railInsetHorizontalTop: string;
|
|
765
|
+
railInsetVerticalRight: string;
|
|
766
|
+
railInsetVerticalLeft: string;
|
|
767
|
+
railColor: string;
|
|
728
768
|
}, any>> | undefined;
|
|
729
769
|
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
730
770
|
heightTiny: string;
|
|
@@ -747,16 +787,24 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
747
787
|
colorSecondary: string;
|
|
748
788
|
colorSecondaryHover: string;
|
|
749
789
|
colorSecondaryPressed: string;
|
|
790
|
+
colorSecondaryFocus: string;
|
|
791
|
+
colorSecondaryDisabled: string;
|
|
792
|
+
textColorSecondaryDisabled: string;
|
|
750
793
|
waveColorSecondary: string;
|
|
751
794
|
colorTertiary: string;
|
|
752
795
|
colorTertiaryHover: string;
|
|
753
796
|
colorTertiaryPressed: string;
|
|
797
|
+
colorTertiaryFocus: string;
|
|
754
798
|
colorTertiaryDisalbed: string;
|
|
755
799
|
waveColorTertiary: string;
|
|
756
800
|
textColorTextTertiary: string;
|
|
801
|
+
rippleColorTertiary: string;
|
|
757
802
|
colorQuaternary: string;
|
|
758
803
|
colorQuaternaryHover: string;
|
|
759
804
|
colorQuaternaryPressed: string;
|
|
805
|
+
colorQuaternaryFocus: string;
|
|
806
|
+
rippleColorQuaternary: string;
|
|
807
|
+
waveColorQuaternary: string;
|
|
760
808
|
color: string;
|
|
761
809
|
colorHover: string;
|
|
762
810
|
colorPressed: string;
|
|
@@ -283,16 +283,24 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
|
|
|
283
283
|
colorSecondary: string;
|
|
284
284
|
colorSecondaryHover: string;
|
|
285
285
|
colorSecondaryPressed: string;
|
|
286
|
+
colorSecondaryFocus: string;
|
|
287
|
+
colorSecondaryDisabled: string;
|
|
288
|
+
textColorSecondaryDisabled: string;
|
|
286
289
|
waveColorSecondary: string;
|
|
287
290
|
colorTertiary: string;
|
|
288
291
|
colorTertiaryHover: string;
|
|
289
292
|
colorTertiaryPressed: string;
|
|
293
|
+
colorTertiaryFocus: string;
|
|
290
294
|
colorTertiaryDisalbed: string;
|
|
291
295
|
waveColorTertiary: string;
|
|
292
296
|
textColorTextTertiary: string;
|
|
297
|
+
rippleColorTertiary: string;
|
|
293
298
|
colorQuaternary: string;
|
|
294
299
|
colorQuaternaryHover: string;
|
|
295
300
|
colorQuaternaryPressed: string;
|
|
301
|
+
colorQuaternaryFocus: string;
|
|
302
|
+
rippleColorQuaternary: string;
|
|
303
|
+
waveColorQuaternary: string;
|
|
296
304
|
color: string;
|
|
297
305
|
colorHover: string;
|
|
298
306
|
colorPressed: string;
|
|
@@ -492,8 +500,16 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
|
|
|
492
500
|
iconColorDisabled: string;
|
|
493
501
|
}, {
|
|
494
502
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
503
|
+
height: string;
|
|
504
|
+
width: string;
|
|
505
|
+
borderRadius: string;
|
|
495
506
|
color: string;
|
|
496
507
|
colorHover: string;
|
|
508
|
+
railInsetHorizontalBottom: string;
|
|
509
|
+
railInsetHorizontalTop: string;
|
|
510
|
+
railInsetVerticalRight: string;
|
|
511
|
+
railInsetVerticalLeft: string;
|
|
512
|
+
railColor: string;
|
|
497
513
|
}, any>;
|
|
498
514
|
Button: import("../../_mixins").Theme<"Button", {
|
|
499
515
|
heightTiny: string;
|
|
@@ -516,16 +532,24 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
|
|
|
516
532
|
colorSecondary: string;
|
|
517
533
|
colorSecondaryHover: string;
|
|
518
534
|
colorSecondaryPressed: string;
|
|
535
|
+
colorSecondaryFocus: string;
|
|
536
|
+
colorSecondaryDisabled: string;
|
|
537
|
+
textColorSecondaryDisabled: string;
|
|
519
538
|
waveColorSecondary: string;
|
|
520
539
|
colorTertiary: string;
|
|
521
540
|
colorTertiaryHover: string;
|
|
522
541
|
colorTertiaryPressed: string;
|
|
542
|
+
colorTertiaryFocus: string;
|
|
523
543
|
colorTertiaryDisalbed: string;
|
|
524
544
|
waveColorTertiary: string;
|
|
525
545
|
textColorTextTertiary: string;
|
|
546
|
+
rippleColorTertiary: string;
|
|
526
547
|
colorQuaternary: string;
|
|
527
548
|
colorQuaternaryHover: string;
|
|
528
549
|
colorQuaternaryPressed: string;
|
|
550
|
+
colorQuaternaryFocus: string;
|
|
551
|
+
rippleColorQuaternary: string;
|
|
552
|
+
waveColorQuaternary: string;
|
|
529
553
|
color: string;
|
|
530
554
|
colorHover: string;
|
|
531
555
|
colorPressed: string;
|
|
@@ -772,8 +796,16 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
|
|
|
772
796
|
}, any>;
|
|
773
797
|
}>;
|
|
774
798
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
799
|
+
height: string;
|
|
800
|
+
width: string;
|
|
801
|
+
borderRadius: string;
|
|
775
802
|
color: string;
|
|
776
803
|
colorHover: string;
|
|
804
|
+
railInsetHorizontalBottom: string;
|
|
805
|
+
railInsetHorizontalTop: string;
|
|
806
|
+
railInsetVerticalRight: string;
|
|
807
|
+
railInsetVerticalLeft: string;
|
|
808
|
+
railColor: string;
|
|
777
809
|
}, any>;
|
|
778
810
|
}>;
|
|
779
811
|
export default datePickerLight;
|