@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
|
@@ -73,16 +73,24 @@ export declare const buttonProps: {
|
|
|
73
73
|
colorSecondary: string;
|
|
74
74
|
colorSecondaryHover: string;
|
|
75
75
|
colorSecondaryPressed: string;
|
|
76
|
+
colorSecondaryFocus: string;
|
|
77
|
+
colorSecondaryDisabled: string;
|
|
78
|
+
textColorSecondaryDisabled: string;
|
|
76
79
|
waveColorSecondary: string;
|
|
77
80
|
colorTertiary: string;
|
|
78
81
|
colorTertiaryHover: string;
|
|
79
82
|
colorTertiaryPressed: string;
|
|
83
|
+
colorTertiaryFocus: string;
|
|
80
84
|
colorTertiaryDisalbed: string;
|
|
81
85
|
waveColorTertiary: string;
|
|
82
86
|
textColorTextTertiary: string;
|
|
87
|
+
rippleColorTertiary: string;
|
|
83
88
|
colorQuaternary: string;
|
|
84
89
|
colorQuaternaryHover: string;
|
|
85
90
|
colorQuaternaryPressed: string;
|
|
91
|
+
colorQuaternaryFocus: string;
|
|
92
|
+
rippleColorQuaternary: string;
|
|
93
|
+
waveColorQuaternary: string;
|
|
86
94
|
color: string;
|
|
87
95
|
colorHover: string;
|
|
88
96
|
colorPressed: string;
|
|
@@ -284,16 +292,24 @@ export declare const buttonProps: {
|
|
|
284
292
|
colorSecondary: string;
|
|
285
293
|
colorSecondaryHover: string;
|
|
286
294
|
colorSecondaryPressed: string;
|
|
295
|
+
colorSecondaryFocus: string;
|
|
296
|
+
colorSecondaryDisabled: string;
|
|
297
|
+
textColorSecondaryDisabled: string;
|
|
287
298
|
waveColorSecondary: string;
|
|
288
299
|
colorTertiary: string;
|
|
289
300
|
colorTertiaryHover: string;
|
|
290
301
|
colorTertiaryPressed: string;
|
|
302
|
+
colorTertiaryFocus: string;
|
|
291
303
|
colorTertiaryDisalbed: string;
|
|
292
304
|
waveColorTertiary: string;
|
|
293
305
|
textColorTextTertiary: string;
|
|
306
|
+
rippleColorTertiary: string;
|
|
294
307
|
colorQuaternary: string;
|
|
295
308
|
colorQuaternaryHover: string;
|
|
296
309
|
colorQuaternaryPressed: string;
|
|
310
|
+
colorQuaternaryFocus: string;
|
|
311
|
+
rippleColorQuaternary: string;
|
|
312
|
+
waveColorQuaternary: string;
|
|
297
313
|
color: string;
|
|
298
314
|
colorHover: string;
|
|
299
315
|
colorPressed: string;
|
|
@@ -495,16 +511,24 @@ export declare const buttonProps: {
|
|
|
495
511
|
colorSecondary: string;
|
|
496
512
|
colorSecondaryHover: string;
|
|
497
513
|
colorSecondaryPressed: string;
|
|
514
|
+
colorSecondaryFocus: string;
|
|
515
|
+
colorSecondaryDisabled: string;
|
|
516
|
+
textColorSecondaryDisabled: string;
|
|
498
517
|
waveColorSecondary: string;
|
|
499
518
|
colorTertiary: string;
|
|
500
519
|
colorTertiaryHover: string;
|
|
501
520
|
colorTertiaryPressed: string;
|
|
521
|
+
colorTertiaryFocus: string;
|
|
502
522
|
colorTertiaryDisalbed: string;
|
|
503
523
|
waveColorTertiary: string;
|
|
504
524
|
textColorTextTertiary: string;
|
|
525
|
+
rippleColorTertiary: string;
|
|
505
526
|
colorQuaternary: string;
|
|
506
527
|
colorQuaternaryHover: string;
|
|
507
528
|
colorQuaternaryPressed: string;
|
|
529
|
+
colorQuaternaryFocus: string;
|
|
530
|
+
rippleColorQuaternary: string;
|
|
531
|
+
waveColorQuaternary: string;
|
|
508
532
|
color: string;
|
|
509
533
|
colorHover: string;
|
|
510
534
|
colorPressed: string;
|
|
@@ -759,16 +783,24 @@ declare const Button: import("vue").DefineComponent<{
|
|
|
759
783
|
colorSecondary: string;
|
|
760
784
|
colorSecondaryHover: string;
|
|
761
785
|
colorSecondaryPressed: string;
|
|
786
|
+
colorSecondaryFocus: string;
|
|
787
|
+
colorSecondaryDisabled: string;
|
|
788
|
+
textColorSecondaryDisabled: string;
|
|
762
789
|
waveColorSecondary: string;
|
|
763
790
|
colorTertiary: string;
|
|
764
791
|
colorTertiaryHover: string;
|
|
765
792
|
colorTertiaryPressed: string;
|
|
793
|
+
colorTertiaryFocus: string;
|
|
766
794
|
colorTertiaryDisalbed: string;
|
|
767
795
|
waveColorTertiary: string;
|
|
768
796
|
textColorTextTertiary: string;
|
|
797
|
+
rippleColorTertiary: string;
|
|
769
798
|
colorQuaternary: string;
|
|
770
799
|
colorQuaternaryHover: string;
|
|
771
800
|
colorQuaternaryPressed: string;
|
|
801
|
+
colorQuaternaryFocus: string;
|
|
802
|
+
rippleColorQuaternary: string;
|
|
803
|
+
waveColorQuaternary: string;
|
|
772
804
|
color: string;
|
|
773
805
|
colorHover: string;
|
|
774
806
|
colorPressed: string;
|
|
@@ -970,16 +1002,24 @@ declare const Button: import("vue").DefineComponent<{
|
|
|
970
1002
|
colorSecondary: string;
|
|
971
1003
|
colorSecondaryHover: string;
|
|
972
1004
|
colorSecondaryPressed: string;
|
|
1005
|
+
colorSecondaryFocus: string;
|
|
1006
|
+
colorSecondaryDisabled: string;
|
|
1007
|
+
textColorSecondaryDisabled: string;
|
|
973
1008
|
waveColorSecondary: string;
|
|
974
1009
|
colorTertiary: string;
|
|
975
1010
|
colorTertiaryHover: string;
|
|
976
1011
|
colorTertiaryPressed: string;
|
|
1012
|
+
colorTertiaryFocus: string;
|
|
977
1013
|
colorTertiaryDisalbed: string;
|
|
978
1014
|
waveColorTertiary: string;
|
|
979
1015
|
textColorTextTertiary: string;
|
|
1016
|
+
rippleColorTertiary: string;
|
|
980
1017
|
colorQuaternary: string;
|
|
981
1018
|
colorQuaternaryHover: string;
|
|
982
1019
|
colorQuaternaryPressed: string;
|
|
1020
|
+
colorQuaternaryFocus: string;
|
|
1021
|
+
rippleColorQuaternary: string;
|
|
1022
|
+
waveColorQuaternary: string;
|
|
983
1023
|
color: string;
|
|
984
1024
|
colorHover: string;
|
|
985
1025
|
colorPressed: string;
|
|
@@ -1181,16 +1221,24 @@ declare const Button: import("vue").DefineComponent<{
|
|
|
1181
1221
|
colorSecondary: string;
|
|
1182
1222
|
colorSecondaryHover: string;
|
|
1183
1223
|
colorSecondaryPressed: string;
|
|
1224
|
+
colorSecondaryFocus: string;
|
|
1225
|
+
colorSecondaryDisabled: string;
|
|
1226
|
+
textColorSecondaryDisabled: string;
|
|
1184
1227
|
waveColorSecondary: string;
|
|
1185
1228
|
colorTertiary: string;
|
|
1186
1229
|
colorTertiaryHover: string;
|
|
1187
1230
|
colorTertiaryPressed: string;
|
|
1231
|
+
colorTertiaryFocus: string;
|
|
1188
1232
|
colorTertiaryDisalbed: string;
|
|
1189
1233
|
waveColorTertiary: string;
|
|
1190
1234
|
textColorTextTertiary: string;
|
|
1235
|
+
rippleColorTertiary: string;
|
|
1191
1236
|
colorQuaternary: string;
|
|
1192
1237
|
colorQuaternaryHover: string;
|
|
1193
1238
|
colorQuaternaryPressed: string;
|
|
1239
|
+
colorQuaternaryFocus: string;
|
|
1240
|
+
rippleColorQuaternary: string;
|
|
1241
|
+
waveColorQuaternary: string;
|
|
1194
1242
|
color: string;
|
|
1195
1243
|
colorHover: string;
|
|
1196
1244
|
colorPressed: string;
|
|
@@ -1503,16 +1551,24 @@ declare const Button: import("vue").DefineComponent<{
|
|
|
1503
1551
|
colorSecondary: string;
|
|
1504
1552
|
colorSecondaryHover: string;
|
|
1505
1553
|
colorSecondaryPressed: string;
|
|
1554
|
+
colorSecondaryFocus: string;
|
|
1555
|
+
colorSecondaryDisabled: string;
|
|
1556
|
+
textColorSecondaryDisabled: string;
|
|
1506
1557
|
waveColorSecondary: string;
|
|
1507
1558
|
colorTertiary: string;
|
|
1508
1559
|
colorTertiaryHover: string;
|
|
1509
1560
|
colorTertiaryPressed: string;
|
|
1561
|
+
colorTertiaryFocus: string;
|
|
1510
1562
|
colorTertiaryDisalbed: string;
|
|
1511
1563
|
waveColorTertiary: string;
|
|
1512
1564
|
textColorTextTertiary: string;
|
|
1565
|
+
rippleColorTertiary: string;
|
|
1513
1566
|
colorQuaternary: string;
|
|
1514
1567
|
colorQuaternaryHover: string;
|
|
1515
1568
|
colorQuaternaryPressed: string;
|
|
1569
|
+
colorQuaternaryFocus: string;
|
|
1570
|
+
rippleColorQuaternary: string;
|
|
1571
|
+
waveColorQuaternary: string;
|
|
1516
1572
|
color: string;
|
|
1517
1573
|
colorHover: string;
|
|
1518
1574
|
colorPressed: string;
|
|
@@ -1714,16 +1770,24 @@ declare const Button: import("vue").DefineComponent<{
|
|
|
1714
1770
|
colorSecondary: string;
|
|
1715
1771
|
colorSecondaryHover: string;
|
|
1716
1772
|
colorSecondaryPressed: string;
|
|
1773
|
+
colorSecondaryFocus: string;
|
|
1774
|
+
colorSecondaryDisabled: string;
|
|
1775
|
+
textColorSecondaryDisabled: string;
|
|
1717
1776
|
waveColorSecondary: string;
|
|
1718
1777
|
colorTertiary: string;
|
|
1719
1778
|
colorTertiaryHover: string;
|
|
1720
1779
|
colorTertiaryPressed: string;
|
|
1780
|
+
colorTertiaryFocus: string;
|
|
1721
1781
|
colorTertiaryDisalbed: string;
|
|
1722
1782
|
waveColorTertiary: string;
|
|
1723
1783
|
textColorTextTertiary: string;
|
|
1784
|
+
rippleColorTertiary: string;
|
|
1724
1785
|
colorQuaternary: string;
|
|
1725
1786
|
colorQuaternaryHover: string;
|
|
1726
1787
|
colorQuaternaryPressed: string;
|
|
1788
|
+
colorQuaternaryFocus: string;
|
|
1789
|
+
rippleColorQuaternary: string;
|
|
1790
|
+
waveColorQuaternary: string;
|
|
1727
1791
|
color: string;
|
|
1728
1792
|
colorHover: string;
|
|
1729
1793
|
colorPressed: string;
|
|
@@ -1925,16 +1989,24 @@ declare const Button: import("vue").DefineComponent<{
|
|
|
1925
1989
|
colorSecondary: string;
|
|
1926
1990
|
colorSecondaryHover: string;
|
|
1927
1991
|
colorSecondaryPressed: string;
|
|
1992
|
+
colorSecondaryFocus: string;
|
|
1993
|
+
colorSecondaryDisabled: string;
|
|
1994
|
+
textColorSecondaryDisabled: string;
|
|
1928
1995
|
waveColorSecondary: string;
|
|
1929
1996
|
colorTertiary: string;
|
|
1930
1997
|
colorTertiaryHover: string;
|
|
1931
1998
|
colorTertiaryPressed: string;
|
|
1999
|
+
colorTertiaryFocus: string;
|
|
1932
2000
|
colorTertiaryDisalbed: string;
|
|
1933
2001
|
waveColorTertiary: string;
|
|
1934
2002
|
textColorTextTertiary: string;
|
|
2003
|
+
rippleColorTertiary: string;
|
|
1935
2004
|
colorQuaternary: string;
|
|
1936
2005
|
colorQuaternaryHover: string;
|
|
1937
2006
|
colorQuaternaryPressed: string;
|
|
2007
|
+
colorQuaternaryFocus: string;
|
|
2008
|
+
rippleColorQuaternary: string;
|
|
2009
|
+
waveColorQuaternary: string;
|
|
1938
2010
|
color: string;
|
|
1939
2011
|
colorHover: string;
|
|
1940
2012
|
colorPressed: string;
|
package/es/button/src/Button.js
CHANGED
|
@@ -133,6 +133,7 @@ const Button = defineComponent({
|
|
|
133
133
|
const { inlineThemeDisabled, mergedClsPrefixRef, mergedRtlRef } = useConfig(props);
|
|
134
134
|
const themeRef = useTheme('Button', '-button', style, buttonLight, props, mergedClsPrefixRef);
|
|
135
135
|
const rtlEnabledRef = useRtl('Button', mergedRtlRef, mergedClsPrefixRef);
|
|
136
|
+
// eslint-disable-next-line complexity
|
|
136
137
|
const cssVarsRef = computed(() => {
|
|
137
138
|
const theme = themeRef.value;
|
|
138
139
|
const { common: { cubicBezierEaseInOut, cubicBezierEaseOut }, self } = theme;
|
|
@@ -181,7 +182,7 @@ const Button = defineComponent({
|
|
|
181
182
|
: self[createKey('textColorTextPressed', mergedType)],
|
|
182
183
|
'--u-text-color-focus': propTextColor
|
|
183
184
|
? createHoverColor(propTextColor)
|
|
184
|
-
: self[createKey('
|
|
185
|
+
: self[createKey('textColorTextFocus', mergedType)],
|
|
185
186
|
'--u-text-color-disabled': propTextColor ||
|
|
186
187
|
self[createKey('textColorTextDisabled', mergedType)]
|
|
187
188
|
};
|
|
@@ -205,7 +206,7 @@ const Button = defineComponent({
|
|
|
205
206
|
: self[createKey('textColorGhostPressed', mergedType)],
|
|
206
207
|
'--u-text-color-focus': mergedTextColor
|
|
207
208
|
? createHoverColor(mergedTextColor)
|
|
208
|
-
: self[createKey('
|
|
209
|
+
: self[createKey('textColorGhostFocus', mergedType)],
|
|
209
210
|
'--u-text-color-disabled': mergedTextColor ||
|
|
210
211
|
self[createKey('textColorGhostDisabled', mergedType)]
|
|
211
212
|
};
|
|
@@ -238,7 +239,7 @@ const Button = defineComponent({
|
|
|
238
239
|
? changeColor(mergedTextColor, {
|
|
239
240
|
alpha: Number(self.colorOpacitySecondaryHover)
|
|
240
241
|
})
|
|
241
|
-
: self.
|
|
242
|
+
: self.colorSecondaryFocus,
|
|
242
243
|
'--u-color-focus-visible': isColoredType
|
|
243
244
|
? changeColor(mergedTextColor, {
|
|
244
245
|
alpha: +self.colorOpacitySecondaryFocus
|
|
@@ -250,7 +251,9 @@ const Button = defineComponent({
|
|
|
250
251
|
'--u-text-color-hover': mergedTextColor,
|
|
251
252
|
'--u-text-color-pressed': mergedTextColor,
|
|
252
253
|
'--u-text-color-focus': mergedTextColor,
|
|
253
|
-
'--u-text-color-disabled':
|
|
254
|
+
'--u-text-color-disabled': isColoredType
|
|
255
|
+
? mergedTextColor
|
|
256
|
+
: self.textColorSecondaryDisabled
|
|
254
257
|
};
|
|
255
258
|
}
|
|
256
259
|
else if (tertiary || quaternary) {
|
|
@@ -260,7 +263,7 @@ const Button = defineComponent({
|
|
|
260
263
|
? self.textColorTertiary
|
|
261
264
|
: self[createKey('color', mergedType)];
|
|
262
265
|
const mergedColor = color || typeColor;
|
|
263
|
-
colorProps['--u-
|
|
266
|
+
colorProps['--u-text-color'] = mergedColor;
|
|
264
267
|
colorProps['--u-text-color'] = mergedColor;
|
|
265
268
|
colorProps['--u-text-color-hover'] = mergedColor;
|
|
266
269
|
colorProps['--u-text-color-pressed'] = mergedColor;
|
|
@@ -270,7 +273,7 @@ const Button = defineComponent({
|
|
|
270
273
|
colorProps['--u-color'] = self.colorTertiary;
|
|
271
274
|
colorProps['--u-color-hover'] = self.colorTertiaryHover;
|
|
272
275
|
colorProps['--u-color-pressed'] = self.colorTertiaryPressed;
|
|
273
|
-
colorProps['--u-color-focus'] = self.
|
|
276
|
+
colorProps['--u-color-focus'] = self.colorTertiaryFocus;
|
|
274
277
|
colorProps['--u-color-disabled'] = self.colorTertiaryDisalbed;
|
|
275
278
|
colorProps['--u-ripple-color'] = self.colorTertiary;
|
|
276
279
|
colorProps['--u-text-color'] = self.textColorTextTertiary;
|
|
@@ -279,13 +282,16 @@ const Button = defineComponent({
|
|
|
279
282
|
colorProps['--u-text-color-focus'] = self.textColorTextTertiary;
|
|
280
283
|
colorProps['--u-text-color-disabled'] = self.textColorTextTertiary;
|
|
281
284
|
colorProps['--u-color-focus-visible'] = self.waveColorTertiary;
|
|
285
|
+
colorProps['--u-ripple-color'] = self.rippleColorTertiary;
|
|
282
286
|
}
|
|
283
287
|
else {
|
|
284
288
|
colorProps['--u-color'] = self.colorQuaternary;
|
|
285
289
|
colorProps['--u-color-hover'] = self.colorQuaternaryHover;
|
|
286
290
|
colorProps['--u-color-pressed'] = self.colorQuaternaryPressed;
|
|
287
|
-
colorProps['--u-color-focus'] = self.
|
|
291
|
+
colorProps['--u-color-focus'] = self.colorQuaternaryFocus;
|
|
288
292
|
colorProps['--u-color-disabled'] = self.colorQuaternary;
|
|
293
|
+
colorProps['--u-ripple-color'] = self.rippleColorQuaternary;
|
|
294
|
+
colorProps['--u-color-focus-visible'] = self.waveColorQuaternary;
|
|
289
295
|
}
|
|
290
296
|
}
|
|
291
297
|
else {
|
|
@@ -183,8 +183,7 @@ export default c([cB('button', `
|
|
|
183
183
|
`), cM('dashed', [cE('border, state-border', {
|
|
184
184
|
borderStyle: 'dashed !important'
|
|
185
185
|
})]), cM('disabled', {
|
|
186
|
-
cursor: 'not-allowed'
|
|
187
|
-
opacity: 'var(--u-opacity-disabled)'
|
|
186
|
+
cursor: 'not-allowed'
|
|
188
187
|
})]), c('@keyframes button-wave-spread', {
|
|
189
188
|
from: {
|
|
190
189
|
boxShadow: '0 0 0.5px 0 var(--u-ripple-color)'
|
|
@@ -21,16 +21,24 @@ export declare const self: (vars: ThemeCommonVars) => {
|
|
|
21
21
|
colorSecondary: string;
|
|
22
22
|
colorSecondaryHover: string;
|
|
23
23
|
colorSecondaryPressed: string;
|
|
24
|
+
colorSecondaryFocus: string;
|
|
25
|
+
colorSecondaryDisabled: string;
|
|
26
|
+
textColorSecondaryDisabled: string;
|
|
24
27
|
waveColorSecondary: string;
|
|
25
28
|
colorTertiary: string;
|
|
26
29
|
colorTertiaryHover: string;
|
|
27
30
|
colorTertiaryPressed: string;
|
|
31
|
+
colorTertiaryFocus: string;
|
|
28
32
|
colorTertiaryDisalbed: string;
|
|
29
33
|
waveColorTertiary: string;
|
|
30
34
|
textColorTextTertiary: string;
|
|
35
|
+
rippleColorTertiary: string;
|
|
31
36
|
colorQuaternary: string;
|
|
32
37
|
colorQuaternaryHover: string;
|
|
33
38
|
colorQuaternaryPressed: string;
|
|
39
|
+
colorQuaternaryFocus: string;
|
|
40
|
+
rippleColorQuaternary: string;
|
|
41
|
+
waveColorQuaternary: string;
|
|
34
42
|
color: string;
|
|
35
43
|
colorHover: string;
|
|
36
44
|
colorPressed: string;
|
|
@@ -7,19 +7,19 @@ export const self = (vars) => {
|
|
|
7
7
|
const successPress = '#0f9b42';
|
|
8
8
|
const warningHover = '#f79942';
|
|
9
9
|
const warningPress = '#df7a1d';
|
|
10
|
-
const errorHover = '#
|
|
11
|
-
const
|
|
10
|
+
const errorHover = '#cb0000';
|
|
11
|
+
const errorDisable = '#f8a39a';
|
|
12
12
|
return Object.assign(Object.assign({}, commonVariables), { heightTiny: heightMini, heightSmall: heightTiny, heightMedium: heightSmall, heightLarge: heightMedium, borderRadiusTiny: borderRadiusMedium, borderRadiusSmall: borderRadiusMedium, borderRadiusMedium: borderRadius, borderRadiusLarge: borderRadius, fontSizeTiny: fontBodyMedium, fontSizeSmall: fontBodyMedium, fontSizeMedium: fontBodyMedium, fontSizeLarge: fontBodyLarge, opacityDisabled,
|
|
13
13
|
// secondary
|
|
14
|
-
colorOpacitySecondary: '0.16', colorOpacitySecondaryHover: '0.22', colorOpacitySecondaryPressed: '0.28', colorOpacitySecondaryFocus: '0.27', colorSecondary: elementsTertiary, colorSecondaryHover:
|
|
14
|
+
colorOpacitySecondary: '0.16', colorOpacitySecondaryHover: '0.22', colorOpacitySecondaryPressed: '0.28', colorOpacitySecondaryFocus: '0.27', colorSecondary: elementsTertiary, colorSecondaryHover: elementsQuaternary, colorSecondaryPressed: elementsTertiary, colorSecondaryFocus: elementsTertiary, colorSecondaryDisabled: elementsTertiary, textColorSecondaryDisabled: elementsQuinary, waveColorSecondary: elementsQuinary,
|
|
15
15
|
// tertiary
|
|
16
|
-
colorTertiary: elementsPrimary, colorTertiaryHover: elementsSenary, colorTertiaryPressed: elementsPrimary, colorTertiaryDisalbed:
|
|
16
|
+
colorTertiary: elementsPrimary, colorTertiaryHover: elementsSenary, colorTertiaryPressed: elementsPrimary, colorTertiaryFocus: elementsPrimary, colorTertiaryDisalbed: elementsQuinary, waveColorTertiary: elementsQuinary, textColorTextTertiary: textQuaternary, rippleColorTertiary: elementsQuinary,
|
|
17
17
|
// quaternary
|
|
18
|
-
colorQuaternary: '#0000', colorQuaternaryHover:
|
|
18
|
+
colorQuaternary: '#0000', colorQuaternaryHover: elementsQuaternary, colorQuaternaryPressed: '#0000', colorQuaternaryFocus: '#0000', rippleColorQuaternary: elementsQuinary, waveColorQuaternary: elementsQuinary,
|
|
19
19
|
// default type
|
|
20
20
|
color: '#0000', colorHover: '#0000', colorPressed: '#0000', colorFocus: '#0000', colorDisabled: '#0000', textColor: textPrimary, textTertiary, textColorTertiary: textTertiary, textColorHover: brandPrimary400, textColorPressed: brandPrimary500, textColorFocus: brandPrimary400, textColorDisabled: textTertiary, textColorText: textPrimary, textColorTextHover: brandPrimary400, textColorTextPressed: brandPrimary500, textColorTextFocus: brandPrimary400, textColorTextDisabled: textTertiary, textColorGhost: textTertiary, textColorGhostHover: brandPrimary400, textColorGhostPressed: brandPrimary500, textColorGhostFocus: brandPrimary400, textColorGhostDisabled: textTertiary, border: `2px solid ${elementsQuaternary}`, borderHover: `2px solid ${brandPrimary400}`, borderPressed: `2px solid ${brandPrimary500}`, borderFocus: `2px solid ${brandPrimary400}`, borderDisabled: `2px solid ${elementsQuaternary}`, rippleColor: brandPrimary500,
|
|
21
21
|
// primary
|
|
22
|
-
colorPrimary: brandPrimary500, colorHoverPrimary:
|
|
22
|
+
colorPrimary: brandPrimary500, colorHoverPrimary: brandPrimary600, colorPressedPrimary: brandPrimary500, colorFocusPrimary: brandPrimary500, colorDisabledPrimary: brandPrimary300, waveColorPrimary: brandPrimary300, textColorPrimary: staticWhite, textColorHoverPrimary: staticWhite, textColorPressedPrimary: staticWhite, textColorFocusPrimary: staticWhite, textColorDisabledPrimary: staticWhite, textColorTextPrimary: brandPrimary500, textColorTextHoverPrimary: brandPrimary600, textColorTextPressedPrimary: brandPrimary300, textColorTextFocusPrimary: brandPrimary300, textColorTextDisabledPrimary: brandPrimary300, textColorGhostPrimary: brandPrimary500, textColorGhostHoverPrimary: brandPrimary600, textColorGhostPressedPrimary: brandPrimary500, textColorGhostFocusPrimary: brandPrimary500, textColorGhostDisabledPrimary: brandPrimary300, borderPrimary: `2px solid ${brandPrimary500}`, borderHoverPrimary: `2px solid ${brandPrimary600}`, borderPressedPrimary: `2px solid ${brandPrimary500}`, borderFocusPrimary: `2px solid ${brandPrimary500}`, borderDisabledPrimary: `2px solid ${brandPrimary300}`, rippleColorPrimary: brandPrimary300,
|
|
23
23
|
// info
|
|
24
24
|
colorInfo: brandQuaternary500, colorHoverInfo: brandQuaternary300, colorPressedInfo: brandQuaternary600, colorFocusInfo: brandQuaternary300, colorDisabledInfo: brandQuaternary500, textColorInfo: staticBlack, textColorHoverInfo: staticBlack, textColorPressedInfo: staticBlack, textColorFocusInfo: staticBlack, textColorDisabledInfo: staticBlack, textColorTextInfo: brandQuaternary500, textColorTextHoverInfo: brandQuaternary300, textColorTextPressedInfo: brandQuaternary600, textColorTextFocusInfo: brandQuaternary300, textColorTextDisabledInfo: textTertiary, textColorGhostInfo: brandQuaternary500, textColorGhostHoverInfo: brandQuaternary300, textColorGhostPressedInfo: brandQuaternary600, textColorGhostFocusInfo: brandQuaternary300, textColorGhostDisabledInfo: brandQuaternary500, borderInfo: `2px solid ${brandQuaternary500}`, borderHoverInfo: `2px solid ${brandQuaternary300}`, borderPressedInfo: `2px solid ${brandQuaternary600}`, borderFocusInfo: `2px solid ${brandQuaternary300}`, borderDisabledInfo: `2px solid ${brandQuaternary500}`, rippleColorInfo: brandQuaternary500,
|
|
25
25
|
// success
|
|
@@ -27,7 +27,7 @@ export const self = (vars) => {
|
|
|
27
27
|
// warning
|
|
28
28
|
colorWarning: staticOrange, colorHoverWarning: warningHover, colorPressedWarning: warningPress, colorFocusWarning: warningHover, colorDisabledWarning: staticOrange, textColorWarning: staticWhite, textColorHoverWarning: staticWhite, textColorPressedWarning: staticWhite, textColorFocusWarning: staticWhite, textColorDisabledWarning: staticWhite, textColorTextWarning: staticOrange, textColorTextHoverWarning: warningHover, textColorTextPressedWarning: warningPress, textColorTextFocusWarning: warningHover, textColorTextDisabledWarning: textTertiary, textColorGhostWarning: staticOrange, textColorGhostHoverWarning: warningHover, textColorGhostPressedWarning: warningPress, textColorGhostFocusWarning: warningHover, textColorGhostDisabledWarning: staticOrange, borderWarning: `2px solid ${staticOrange}`, borderHoverWarning: `2px solid ${warningHover}`, borderPressedWarning: `2px solid ${warningPress}`, borderFocusWarning: `2px solid ${warningHover}`, borderDisabledWarning: `2px solid ${staticOrange}`, rippleColorWarning: staticOrange,
|
|
29
29
|
// error
|
|
30
|
-
colorError: staticRed, colorHoverError: errorHover, colorPressedError:
|
|
30
|
+
colorError: staticRed, colorHoverError: errorHover, colorPressedError: staticRed, colorFocusError: staticRed, colorDisabledError: errorDisable, textColorError: staticWhite, textColorHoverError: staticWhite, textColorPressedError: staticWhite, textColorFocusError: staticWhite, textColorDisabledError: staticWhite, textColorTextError: staticRed, textColorTextHoverError: errorHover, textColorTextPressedError: staticRed, textColorTextFocusError: staticRed, textColorTextDisabledError: errorDisable, textColorGhostError: staticRed, textColorGhostHoverError: errorHover, textColorGhostPressedError: staticRed, textColorGhostFocusError: staticRed, textColorGhostDisabledError: errorDisable, borderError: `2px solid ${staticRed}`, borderHoverError: `2px solid ${errorHover}`, borderPressedError: `2px solid ${staticRed}`, borderFocusError: `2px solid ${staticRed}`, borderDisabledError: `2px solid ${errorDisable}`, rippleColorError: errorDisable, waveOpacity: '0.6', fontWeight,
|
|
31
31
|
fontWeightStrong });
|
|
32
32
|
};
|
|
33
33
|
const buttonLight = {
|
|
@@ -54,16 +54,24 @@ export declare const calendarProps: {
|
|
|
54
54
|
colorSecondary: string;
|
|
55
55
|
colorSecondaryHover: string;
|
|
56
56
|
colorSecondaryPressed: string;
|
|
57
|
+
colorSecondaryFocus: string;
|
|
58
|
+
colorSecondaryDisabled: string;
|
|
59
|
+
textColorSecondaryDisabled: string;
|
|
57
60
|
waveColorSecondary: string;
|
|
58
61
|
colorTertiary: string;
|
|
59
62
|
colorTertiaryHover: string;
|
|
60
63
|
colorTertiaryPressed: string;
|
|
64
|
+
colorTertiaryFocus: string;
|
|
61
65
|
colorTertiaryDisalbed: string;
|
|
62
66
|
waveColorTertiary: string;
|
|
63
67
|
textColorTextTertiary: string;
|
|
68
|
+
rippleColorTertiary: string;
|
|
64
69
|
colorQuaternary: string;
|
|
65
70
|
colorQuaternaryHover: string;
|
|
66
71
|
colorQuaternaryPressed: string;
|
|
72
|
+
colorQuaternaryFocus: string;
|
|
73
|
+
rippleColorQuaternary: string;
|
|
74
|
+
waveColorQuaternary: string;
|
|
67
75
|
color: string;
|
|
68
76
|
colorHover: string;
|
|
69
77
|
colorPressed: string;
|
|
@@ -288,16 +296,24 @@ export declare const calendarProps: {
|
|
|
288
296
|
colorSecondary: string;
|
|
289
297
|
colorSecondaryHover: string;
|
|
290
298
|
colorSecondaryPressed: string;
|
|
299
|
+
colorSecondaryFocus: string;
|
|
300
|
+
colorSecondaryDisabled: string;
|
|
301
|
+
textColorSecondaryDisabled: string;
|
|
291
302
|
waveColorSecondary: string;
|
|
292
303
|
colorTertiary: string;
|
|
293
304
|
colorTertiaryHover: string;
|
|
294
305
|
colorTertiaryPressed: string;
|
|
306
|
+
colorTertiaryFocus: string;
|
|
295
307
|
colorTertiaryDisalbed: string;
|
|
296
308
|
waveColorTertiary: string;
|
|
297
309
|
textColorTextTertiary: string;
|
|
310
|
+
rippleColorTertiary: string;
|
|
298
311
|
colorQuaternary: string;
|
|
299
312
|
colorQuaternaryHover: string;
|
|
300
313
|
colorQuaternaryPressed: string;
|
|
314
|
+
colorQuaternaryFocus: string;
|
|
315
|
+
rippleColorQuaternary: string;
|
|
316
|
+
waveColorQuaternary: string;
|
|
301
317
|
color: string;
|
|
302
318
|
colorHover: string;
|
|
303
319
|
colorPressed: string;
|
|
@@ -522,16 +538,24 @@ export declare const calendarProps: {
|
|
|
522
538
|
colorSecondary: string;
|
|
523
539
|
colorSecondaryHover: string;
|
|
524
540
|
colorSecondaryPressed: string;
|
|
541
|
+
colorSecondaryFocus: string;
|
|
542
|
+
colorSecondaryDisabled: string;
|
|
543
|
+
textColorSecondaryDisabled: string;
|
|
525
544
|
waveColorSecondary: string;
|
|
526
545
|
colorTertiary: string;
|
|
527
546
|
colorTertiaryHover: string;
|
|
528
547
|
colorTertiaryPressed: string;
|
|
548
|
+
colorTertiaryFocus: string;
|
|
529
549
|
colorTertiaryDisalbed: string;
|
|
530
550
|
waveColorTertiary: string;
|
|
531
551
|
textColorTextTertiary: string;
|
|
552
|
+
rippleColorTertiary: string;
|
|
532
553
|
colorQuaternary: string;
|
|
533
554
|
colorQuaternaryHover: string;
|
|
534
555
|
colorQuaternaryPressed: string;
|
|
556
|
+
colorQuaternaryFocus: string;
|
|
557
|
+
rippleColorQuaternary: string;
|
|
558
|
+
waveColorQuaternary: string;
|
|
535
559
|
color: string;
|
|
536
560
|
colorHover: string;
|
|
537
561
|
colorPressed: string;
|
|
@@ -768,16 +792,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
768
792
|
colorSecondary: string;
|
|
769
793
|
colorSecondaryHover: string;
|
|
770
794
|
colorSecondaryPressed: string;
|
|
795
|
+
colorSecondaryFocus: string;
|
|
796
|
+
colorSecondaryDisabled: string;
|
|
797
|
+
textColorSecondaryDisabled: string;
|
|
771
798
|
waveColorSecondary: string;
|
|
772
799
|
colorTertiary: string;
|
|
773
800
|
colorTertiaryHover: string;
|
|
774
801
|
colorTertiaryPressed: string;
|
|
802
|
+
colorTertiaryFocus: string;
|
|
775
803
|
colorTertiaryDisalbed: string;
|
|
776
804
|
waveColorTertiary: string;
|
|
777
805
|
textColorTextTertiary: string;
|
|
806
|
+
rippleColorTertiary: string;
|
|
778
807
|
colorQuaternary: string;
|
|
779
808
|
colorQuaternaryHover: string;
|
|
780
809
|
colorQuaternaryPressed: string;
|
|
810
|
+
colorQuaternaryFocus: string;
|
|
811
|
+
rippleColorQuaternary: string;
|
|
812
|
+
waveColorQuaternary: string;
|
|
781
813
|
color: string;
|
|
782
814
|
colorHover: string;
|
|
783
815
|
colorPressed: string;
|
|
@@ -1002,16 +1034,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1002
1034
|
colorSecondary: string;
|
|
1003
1035
|
colorSecondaryHover: string;
|
|
1004
1036
|
colorSecondaryPressed: string;
|
|
1037
|
+
colorSecondaryFocus: string;
|
|
1038
|
+
colorSecondaryDisabled: string;
|
|
1039
|
+
textColorSecondaryDisabled: string;
|
|
1005
1040
|
waveColorSecondary: string;
|
|
1006
1041
|
colorTertiary: string;
|
|
1007
1042
|
colorTertiaryHover: string;
|
|
1008
1043
|
colorTertiaryPressed: string;
|
|
1044
|
+
colorTertiaryFocus: string;
|
|
1009
1045
|
colorTertiaryDisalbed: string;
|
|
1010
1046
|
waveColorTertiary: string;
|
|
1011
1047
|
textColorTextTertiary: string;
|
|
1048
|
+
rippleColorTertiary: string;
|
|
1012
1049
|
colorQuaternary: string;
|
|
1013
1050
|
colorQuaternaryHover: string;
|
|
1014
1051
|
colorQuaternaryPressed: string;
|
|
1052
|
+
colorQuaternaryFocus: string;
|
|
1053
|
+
rippleColorQuaternary: string;
|
|
1054
|
+
waveColorQuaternary: string;
|
|
1015
1055
|
color: string;
|
|
1016
1056
|
colorHover: string;
|
|
1017
1057
|
colorPressed: string;
|
|
@@ -1236,16 +1276,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1236
1276
|
colorSecondary: string;
|
|
1237
1277
|
colorSecondaryHover: string;
|
|
1238
1278
|
colorSecondaryPressed: string;
|
|
1279
|
+
colorSecondaryFocus: string;
|
|
1280
|
+
colorSecondaryDisabled: string;
|
|
1281
|
+
textColorSecondaryDisabled: string;
|
|
1239
1282
|
waveColorSecondary: string;
|
|
1240
1283
|
colorTertiary: string;
|
|
1241
1284
|
colorTertiaryHover: string;
|
|
1242
1285
|
colorTertiaryPressed: string;
|
|
1286
|
+
colorTertiaryFocus: string;
|
|
1243
1287
|
colorTertiaryDisalbed: string;
|
|
1244
1288
|
waveColorTertiary: string;
|
|
1245
1289
|
textColorTextTertiary: string;
|
|
1290
|
+
rippleColorTertiary: string;
|
|
1246
1291
|
colorQuaternary: string;
|
|
1247
1292
|
colorQuaternaryHover: string;
|
|
1248
1293
|
colorQuaternaryPressed: string;
|
|
1294
|
+
colorQuaternaryFocus: string;
|
|
1295
|
+
rippleColorQuaternary: string;
|
|
1296
|
+
waveColorQuaternary: string;
|
|
1249
1297
|
color: string;
|
|
1250
1298
|
colorHover: string;
|
|
1251
1299
|
colorPressed: string;
|
|
@@ -1513,16 +1561,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1513
1561
|
colorSecondary: string;
|
|
1514
1562
|
colorSecondaryHover: string;
|
|
1515
1563
|
colorSecondaryPressed: string;
|
|
1564
|
+
colorSecondaryFocus: string;
|
|
1565
|
+
colorSecondaryDisabled: string;
|
|
1566
|
+
textColorSecondaryDisabled: string;
|
|
1516
1567
|
waveColorSecondary: string;
|
|
1517
1568
|
colorTertiary: string;
|
|
1518
1569
|
colorTertiaryHover: string;
|
|
1519
1570
|
colorTertiaryPressed: string;
|
|
1571
|
+
colorTertiaryFocus: string;
|
|
1520
1572
|
colorTertiaryDisalbed: string;
|
|
1521
1573
|
waveColorTertiary: string;
|
|
1522
1574
|
textColorTextTertiary: string;
|
|
1575
|
+
rippleColorTertiary: string;
|
|
1523
1576
|
colorQuaternary: string;
|
|
1524
1577
|
colorQuaternaryHover: string;
|
|
1525
1578
|
colorQuaternaryPressed: string;
|
|
1579
|
+
colorQuaternaryFocus: string;
|
|
1580
|
+
rippleColorQuaternary: string;
|
|
1581
|
+
waveColorQuaternary: string;
|
|
1526
1582
|
color: string;
|
|
1527
1583
|
colorHover: string;
|
|
1528
1584
|
colorPressed: string;
|
|
@@ -1790,16 +1846,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1790
1846
|
colorSecondary: string;
|
|
1791
1847
|
colorSecondaryHover: string;
|
|
1792
1848
|
colorSecondaryPressed: string;
|
|
1849
|
+
colorSecondaryFocus: string;
|
|
1850
|
+
colorSecondaryDisabled: string;
|
|
1851
|
+
textColorSecondaryDisabled: string;
|
|
1793
1852
|
waveColorSecondary: string;
|
|
1794
1853
|
colorTertiary: string;
|
|
1795
1854
|
colorTertiaryHover: string;
|
|
1796
1855
|
colorTertiaryPressed: string;
|
|
1856
|
+
colorTertiaryFocus: string;
|
|
1797
1857
|
colorTertiaryDisalbed: string;
|
|
1798
1858
|
waveColorTertiary: string;
|
|
1799
1859
|
textColorTextTertiary: string;
|
|
1860
|
+
rippleColorTertiary: string;
|
|
1800
1861
|
colorQuaternary: string;
|
|
1801
1862
|
colorQuaternaryHover: string;
|
|
1802
1863
|
colorQuaternaryPressed: string;
|
|
1864
|
+
colorQuaternaryFocus: string;
|
|
1865
|
+
rippleColorQuaternary: string;
|
|
1866
|
+
waveColorQuaternary: string;
|
|
1803
1867
|
color: string;
|
|
1804
1868
|
colorHover: string;
|
|
1805
1869
|
colorPressed: string;
|
|
@@ -2024,16 +2088,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2024
2088
|
colorSecondary: string;
|
|
2025
2089
|
colorSecondaryHover: string;
|
|
2026
2090
|
colorSecondaryPressed: string;
|
|
2091
|
+
colorSecondaryFocus: string;
|
|
2092
|
+
colorSecondaryDisabled: string;
|
|
2093
|
+
textColorSecondaryDisabled: string;
|
|
2027
2094
|
waveColorSecondary: string;
|
|
2028
2095
|
colorTertiary: string;
|
|
2029
2096
|
colorTertiaryHover: string;
|
|
2030
2097
|
colorTertiaryPressed: string;
|
|
2098
|
+
colorTertiaryFocus: string;
|
|
2031
2099
|
colorTertiaryDisalbed: string;
|
|
2032
2100
|
waveColorTertiary: string;
|
|
2033
2101
|
textColorTextTertiary: string;
|
|
2102
|
+
rippleColorTertiary: string;
|
|
2034
2103
|
colorQuaternary: string;
|
|
2035
2104
|
colorQuaternaryHover: string;
|
|
2036
2105
|
colorQuaternaryPressed: string;
|
|
2106
|
+
colorQuaternaryFocus: string;
|
|
2107
|
+
rippleColorQuaternary: string;
|
|
2108
|
+
waveColorQuaternary: string;
|
|
2037
2109
|
color: string;
|
|
2038
2110
|
colorHover: string;
|
|
2039
2111
|
colorPressed: string;
|
|
@@ -2258,16 +2330,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2258
2330
|
colorSecondary: string;
|
|
2259
2331
|
colorSecondaryHover: string;
|
|
2260
2332
|
colorSecondaryPressed: string;
|
|
2333
|
+
colorSecondaryFocus: string;
|
|
2334
|
+
colorSecondaryDisabled: string;
|
|
2335
|
+
textColorSecondaryDisabled: string;
|
|
2261
2336
|
waveColorSecondary: string;
|
|
2262
2337
|
colorTertiary: string;
|
|
2263
2338
|
colorTertiaryHover: string;
|
|
2264
2339
|
colorTertiaryPressed: string;
|
|
2340
|
+
colorTertiaryFocus: string;
|
|
2265
2341
|
colorTertiaryDisalbed: string;
|
|
2266
2342
|
waveColorTertiary: string;
|
|
2267
2343
|
textColorTextTertiary: string;
|
|
2344
|
+
rippleColorTertiary: string;
|
|
2268
2345
|
colorQuaternary: string;
|
|
2269
2346
|
colorQuaternaryHover: string;
|
|
2270
2347
|
colorQuaternaryPressed: string;
|
|
2348
|
+
colorQuaternaryFocus: string;
|
|
2349
|
+
rippleColorQuaternary: string;
|
|
2350
|
+
waveColorQuaternary: string;
|
|
2271
2351
|
color: string;
|
|
2272
2352
|
colorHover: string;
|
|
2273
2353
|
colorPressed: string;
|
|
@@ -65,16 +65,24 @@ declare const calendarLight: import("../../_mixins").Theme<"Calendar", {
|
|
|
65
65
|
colorSecondary: string;
|
|
66
66
|
colorSecondaryHover: string;
|
|
67
67
|
colorSecondaryPressed: string;
|
|
68
|
+
colorSecondaryFocus: string;
|
|
69
|
+
colorSecondaryDisabled: string;
|
|
70
|
+
textColorSecondaryDisabled: string;
|
|
68
71
|
waveColorSecondary: string;
|
|
69
72
|
colorTertiary: string;
|
|
70
73
|
colorTertiaryHover: string;
|
|
71
74
|
colorTertiaryPressed: string;
|
|
75
|
+
colorTertiaryFocus: string;
|
|
72
76
|
colorTertiaryDisalbed: string;
|
|
73
77
|
waveColorTertiary: string;
|
|
74
78
|
textColorTextTertiary: string;
|
|
79
|
+
rippleColorTertiary: string;
|
|
75
80
|
colorQuaternary: string;
|
|
76
81
|
colorQuaternaryHover: string;
|
|
77
82
|
colorQuaternaryPressed: string;
|
|
83
|
+
colorQuaternaryFocus: string;
|
|
84
|
+
rippleColorQuaternary: string;
|
|
85
|
+
waveColorQuaternary: string;
|
|
78
86
|
color: string;
|
|
79
87
|
colorHover: string;
|
|
80
88
|
colorPressed: string;
|