@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
|
@@ -26,6 +26,8 @@ export declare const self: (vars: ThemeCommonVars) => {
|
|
|
26
26
|
titleTextColor: string;
|
|
27
27
|
descriptionTextColor: string;
|
|
28
28
|
actionTextColor: string;
|
|
29
|
+
iconWrapperColor: string;
|
|
30
|
+
iconWrapperPulseColor: string;
|
|
29
31
|
colorSuccess: string;
|
|
30
32
|
iconColorSuccess: string;
|
|
31
33
|
textColorSuccess: string;
|
|
@@ -37,6 +39,8 @@ export declare const self: (vars: ThemeCommonVars) => {
|
|
|
37
39
|
titleTextColorSuccess: string;
|
|
38
40
|
descriptionTextColorSuccess: string;
|
|
39
41
|
actionTextColorSuccess: string;
|
|
42
|
+
iconWrapperColorSuccess: string;
|
|
43
|
+
iconWrapperPulseColorSuccess: string;
|
|
40
44
|
colorInfo: string;
|
|
41
45
|
iconColorInfo: string;
|
|
42
46
|
textColorInfo: string;
|
|
@@ -48,6 +52,8 @@ export declare const self: (vars: ThemeCommonVars) => {
|
|
|
48
52
|
titleTextColorInfo: string;
|
|
49
53
|
descriptionTextColorInfo: string;
|
|
50
54
|
actionTextColorInfo: string;
|
|
55
|
+
iconWrapperColorInfo: string;
|
|
56
|
+
iconWrapperPulseColorInfo: string;
|
|
51
57
|
colorWarning: string;
|
|
52
58
|
iconColorWarning: string;
|
|
53
59
|
textColorWarning: string;
|
|
@@ -59,6 +65,8 @@ export declare const self: (vars: ThemeCommonVars) => {
|
|
|
59
65
|
titleTextColorWarning: string;
|
|
60
66
|
descriptionTextColorWarning: string;
|
|
61
67
|
actionTextColorWarning: string;
|
|
68
|
+
iconWrapperColorWarning: string;
|
|
69
|
+
iconWrapperPulseColorWarning: string;
|
|
62
70
|
colorError: string;
|
|
63
71
|
iconColorError: string;
|
|
64
72
|
textColorError: string;
|
|
@@ -70,6 +78,8 @@ export declare const self: (vars: ThemeCommonVars) => {
|
|
|
70
78
|
titleTextColorError: string;
|
|
71
79
|
descriptionTextColorError: string;
|
|
72
80
|
actionTextColorError: string;
|
|
81
|
+
iconWrapperColorError: string;
|
|
82
|
+
iconWrapperPulseColorError: string;
|
|
73
83
|
colorPrimary: string;
|
|
74
84
|
iconColorPrimary: string;
|
|
75
85
|
textColorPrimary: string;
|
|
@@ -81,6 +91,8 @@ export declare const self: (vars: ThemeCommonVars) => {
|
|
|
81
91
|
titleTextColorPrimary: string;
|
|
82
92
|
descriptionTextColorPrimary: string;
|
|
83
93
|
actionTextColorPrimary: string;
|
|
94
|
+
iconWrapperColorPrimary: string;
|
|
95
|
+
iconWrapperPulseColorPrimary: string;
|
|
84
96
|
width: string;
|
|
85
97
|
padding: string;
|
|
86
98
|
closeBorderRadius: string;
|
|
@@ -113,6 +125,8 @@ declare const notificationLight: import("../../_mixins").Theme<"Notification", {
|
|
|
113
125
|
titleTextColor: string;
|
|
114
126
|
descriptionTextColor: string;
|
|
115
127
|
actionTextColor: string;
|
|
128
|
+
iconWrapperColor: string;
|
|
129
|
+
iconWrapperPulseColor: string;
|
|
116
130
|
colorSuccess: string;
|
|
117
131
|
iconColorSuccess: string;
|
|
118
132
|
textColorSuccess: string;
|
|
@@ -124,6 +138,8 @@ declare const notificationLight: import("../../_mixins").Theme<"Notification", {
|
|
|
124
138
|
titleTextColorSuccess: string;
|
|
125
139
|
descriptionTextColorSuccess: string;
|
|
126
140
|
actionTextColorSuccess: string;
|
|
141
|
+
iconWrapperColorSuccess: string;
|
|
142
|
+
iconWrapperPulseColorSuccess: string;
|
|
127
143
|
colorInfo: string;
|
|
128
144
|
iconColorInfo: string;
|
|
129
145
|
textColorInfo: string;
|
|
@@ -135,6 +151,8 @@ declare const notificationLight: import("../../_mixins").Theme<"Notification", {
|
|
|
135
151
|
titleTextColorInfo: string;
|
|
136
152
|
descriptionTextColorInfo: string;
|
|
137
153
|
actionTextColorInfo: string;
|
|
154
|
+
iconWrapperColorInfo: string;
|
|
155
|
+
iconWrapperPulseColorInfo: string;
|
|
138
156
|
colorWarning: string;
|
|
139
157
|
iconColorWarning: string;
|
|
140
158
|
textColorWarning: string;
|
|
@@ -146,6 +164,8 @@ declare const notificationLight: import("../../_mixins").Theme<"Notification", {
|
|
|
146
164
|
titleTextColorWarning: string;
|
|
147
165
|
descriptionTextColorWarning: string;
|
|
148
166
|
actionTextColorWarning: string;
|
|
167
|
+
iconWrapperColorWarning: string;
|
|
168
|
+
iconWrapperPulseColorWarning: string;
|
|
149
169
|
colorError: string;
|
|
150
170
|
iconColorError: string;
|
|
151
171
|
textColorError: string;
|
|
@@ -157,6 +177,8 @@ declare const notificationLight: import("../../_mixins").Theme<"Notification", {
|
|
|
157
177
|
titleTextColorError: string;
|
|
158
178
|
descriptionTextColorError: string;
|
|
159
179
|
actionTextColorError: string;
|
|
180
|
+
iconWrapperColorError: string;
|
|
181
|
+
iconWrapperPulseColorError: string;
|
|
160
182
|
colorPrimary: string;
|
|
161
183
|
iconColorPrimary: string;
|
|
162
184
|
textColorPrimary: string;
|
|
@@ -168,13 +190,23 @@ declare const notificationLight: import("../../_mixins").Theme<"Notification", {
|
|
|
168
190
|
titleTextColorPrimary: string;
|
|
169
191
|
descriptionTextColorPrimary: string;
|
|
170
192
|
actionTextColorPrimary: string;
|
|
193
|
+
iconWrapperColorPrimary: string;
|
|
194
|
+
iconWrapperPulseColorPrimary: string;
|
|
171
195
|
width: string;
|
|
172
196
|
padding: string;
|
|
173
197
|
closeBorderRadius: string;
|
|
174
198
|
}, {
|
|
175
199
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
200
|
+
height: string;
|
|
201
|
+
width: string;
|
|
202
|
+
borderRadius: string;
|
|
176
203
|
color: string;
|
|
177
204
|
colorHover: string;
|
|
205
|
+
railInsetHorizontalBottom: string;
|
|
206
|
+
railInsetHorizontalTop: string;
|
|
207
|
+
railInsetVerticalRight: string;
|
|
208
|
+
railInsetVerticalLeft: string;
|
|
209
|
+
railColor: string;
|
|
178
210
|
}, any>;
|
|
179
211
|
}>;
|
|
180
212
|
export default notificationLight;
|
|
@@ -8,21 +8,22 @@ const styles_1 = require("../../_internal/scrollbar/styles");
|
|
|
8
8
|
const common_1 = require("../../_styles/common");
|
|
9
9
|
const _mixins_1 = require("../../_mixins");
|
|
10
10
|
const _common_1 = __importDefault(require("./_common"));
|
|
11
|
+
const light_1 = __importDefault(require("../../_styles/common/light"));
|
|
11
12
|
const self = (vars) => {
|
|
12
|
-
const { fontWeightStrong, lineHeightBodyMedium, fontBodyLarge, fontBodyMedium, borderRadiusLarge, closeMedium, iconMedium, fontWeight, staticBlack, staticWhite, transparencyTertiary, transparencyQuinary, staticGreen, brandPrimary500, brandSecondary600, staticRed,
|
|
13
|
-
return Object.assign(Object.assign({}, _common_1.default), { lineHeight: lineHeightBodyMedium, fontSize: fontBodyMedium, fontWeight, descriptionFontWeight: fontWeight, descriptionLineHeight: lineHeightBodyMedium, descriptionFontSize: fontBodyMedium, titleFontSize: fontBodyLarge, titleLineHeight: lineHeightBodyMedium, titleFontWeight: fontWeightStrong, metaFontSize: fontBodyMedium, borderRadius: borderRadiusLarge, closeSize: closeMedium, closeIconSize: iconMedium, avatarSize:
|
|
13
|
+
const { fontWeightStrong, lineHeightBodyMedium, fontBodyLarge, fontBodyMedium, borderRadiusLarge, closeMedium, iconMedium, iconLarge, fontWeight, staticBlack, staticWhite, transparencyTertiary, transparencyQuinary, staticGreen, brandPrimary500, brandSecondary600, staticRed, elementsQuinary, transparencySecondary, transparencyPrimary, elementsDarkQuinary } = vars;
|
|
14
|
+
return Object.assign(Object.assign({}, _common_1.default), { lineHeight: lineHeightBodyMedium, fontSize: fontBodyMedium, fontWeight, descriptionFontWeight: fontWeight, descriptionLineHeight: lineHeightBodyMedium, descriptionFontSize: fontBodyMedium, titleFontSize: fontBodyLarge, titleLineHeight: lineHeightBodyMedium, titleFontWeight: fontWeightStrong, metaFontSize: fontBodyMedium, borderRadius: borderRadiusLarge, closeSize: closeMedium, closeIconSize: iconMedium, avatarSize: iconLarge, closeMargin: '12px',
|
|
14
15
|
// Default
|
|
15
|
-
color:
|
|
16
|
+
color: staticWhite, iconColor: elementsDarkQuinary, textColor: staticBlack, closeIconColor: staticBlack, closeIconColorHover: staticBlack, closeIconColorPressed: staticBlack, closeColorHover: transparencyTertiary, closeColorPressed: transparencyQuinary, titleTextColor: staticBlack, descriptionTextColor: staticBlack, actionTextColor: staticBlack, iconWrapperColor: 'rgb(16 16 16 / 8%)', iconWrapperPulseColor: 'rgb(16 16 16 / 4%)',
|
|
16
17
|
// Success
|
|
17
|
-
colorSuccess:
|
|
18
|
+
colorSuccess: staticWhite, iconColorSuccess: staticGreen, textColorSuccess: staticBlack, closeIconColorSuccess: staticBlack, closeIconColorHoverSuccess: staticBlack, closeIconColorPressedSuccess: staticBlack, closeColorHoverSuccess: transparencyTertiary, closeColorPressedSuccess: transparencyQuinary, titleTextColorSuccess: staticBlack, descriptionTextColorSuccess: staticBlack, actionTextColorSuccess: staticBlack, iconWrapperColorSuccess: light_1.default.brandTertiary300, iconWrapperPulseColorSuccess: light_1.default.brand350,
|
|
18
19
|
// Info
|
|
19
|
-
colorInfo:
|
|
20
|
+
colorInfo: staticWhite, iconColorInfo: elementsQuinary, textColorInfo: staticBlack, closeIconColorInfo: staticBlack, closeIconColorHoverInfo: staticBlack, closeIconColorPressedInfo: staticBlack, closeColorHoverInfo: transparencySecondary, closeColorPressedInfo: transparencyPrimary, titleTextColorInfo: staticBlack, descriptionTextColorInfo: staticBlack, actionTextColorInfo: staticBlack, iconWrapperColorInfo: 'rgb(197 199 202 / 36%)', iconWrapperPulseColorInfo: 'rgb(197 199 202 / 14%)',
|
|
20
21
|
// Warning
|
|
21
|
-
colorWarning:
|
|
22
|
+
colorWarning: staticWhite, iconColorWarning: brandSecondary600, textColorWarning: staticBlack, closeIconColorWarning: staticBlack, closeIconColorHoverWarning: staticBlack, closeIconColorPressedWarning: staticBlack, closeColorHoverWarning: transparencyTertiary, closeColorPressedWarning: transparencyQuinary, titleTextColorWarning: staticBlack, descriptionTextColorWarning: staticBlack, actionTextColorWarning: staticBlack, iconWrapperColorWarning: 'rgb(249 222 109 / 28%)', iconWrapperPulseColorWarning: 'rgb(249 222 109 / 18%)',
|
|
22
23
|
// Error
|
|
23
|
-
colorError:
|
|
24
|
+
colorError: staticWhite, iconColorError: staticRed, textColorError: staticBlack, closeIconColorError: staticBlack, closeIconColorHoverError: staticBlack, closeIconColorPressedError: staticBlack, closeColorHoverError: transparencyTertiary, closeColorPressedError: transparencyQuinary, titleTextColorError: staticBlack, descriptionTextColorError: staticBlack, actionTextColorError: staticBlack, iconWrapperColorError: light_1.default.brandQuinary100, iconWrapperPulseColorError: light_1.default.brand550,
|
|
24
25
|
// Primary
|
|
25
|
-
colorPrimary:
|
|
26
|
+
colorPrimary: staticWhite, iconColorPrimary: brandPrimary500, textColorPrimary: staticBlack, closeIconColorPrimary: staticBlack, closeIconColorHoverPrimary: staticBlack, closeIconColorPressedPrimary: staticBlack, closeColorHoverPrimary: transparencyTertiary, closeColorPressedPrimary: transparencyQuinary, titleTextColorPrimary: staticBlack, descriptionTextColorPrimary: staticBlack, actionTextColorPrimary: staticBlack, iconWrapperColorPrimary: light_1.default.brandPrimary100, iconWrapperPulseColorPrimary: light_1.default.brandPrimary50 });
|
|
26
27
|
};
|
|
27
28
|
exports.self = self;
|
|
28
29
|
const notificationLight = (0, _mixins_1.createTheme)({
|
|
@@ -293,8 +293,16 @@ export declare const paginationProps: {
|
|
|
293
293
|
loadingColor: string;
|
|
294
294
|
}, {
|
|
295
295
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
296
|
+
height: string;
|
|
297
|
+
width: string;
|
|
298
|
+
borderRadius: string;
|
|
296
299
|
color: string;
|
|
297
300
|
colorHover: string;
|
|
301
|
+
railInsetHorizontalBottom: string;
|
|
302
|
+
railInsetHorizontalTop: string;
|
|
303
|
+
railInsetVerticalRight: string;
|
|
304
|
+
railInsetVerticalLeft: string;
|
|
305
|
+
railColor: string;
|
|
298
306
|
}, any>;
|
|
299
307
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
300
308
|
iconSizeSmall: string;
|
|
@@ -432,8 +440,16 @@ export declare const paginationProps: {
|
|
|
432
440
|
loadingColor: string;
|
|
433
441
|
}, {
|
|
434
442
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
443
|
+
height: string;
|
|
444
|
+
width: string;
|
|
445
|
+
borderRadius: string;
|
|
435
446
|
color: string;
|
|
436
447
|
colorHover: string;
|
|
448
|
+
railInsetHorizontalBottom: string;
|
|
449
|
+
railInsetHorizontalTop: string;
|
|
450
|
+
railInsetVerticalRight: string;
|
|
451
|
+
railInsetVerticalLeft: string;
|
|
452
|
+
railColor: string;
|
|
437
453
|
}, any>;
|
|
438
454
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
439
455
|
iconSizeSmall: string;
|
|
@@ -691,8 +707,16 @@ export declare const paginationProps: {
|
|
|
691
707
|
loadingColor: string;
|
|
692
708
|
}, {
|
|
693
709
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
710
|
+
height: string;
|
|
711
|
+
width: string;
|
|
712
|
+
borderRadius: string;
|
|
694
713
|
color: string;
|
|
695
714
|
colorHover: string;
|
|
715
|
+
railInsetHorizontalBottom: string;
|
|
716
|
+
railInsetHorizontalTop: string;
|
|
717
|
+
railInsetVerticalRight: string;
|
|
718
|
+
railInsetVerticalLeft: string;
|
|
719
|
+
railColor: string;
|
|
696
720
|
}, any>;
|
|
697
721
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
698
722
|
iconSizeSmall: string;
|
|
@@ -830,8 +854,16 @@ export declare const paginationProps: {
|
|
|
830
854
|
loadingColor: string;
|
|
831
855
|
}, {
|
|
832
856
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
857
|
+
height: string;
|
|
858
|
+
width: string;
|
|
859
|
+
borderRadius: string;
|
|
833
860
|
color: string;
|
|
834
861
|
colorHover: string;
|
|
862
|
+
railInsetHorizontalBottom: string;
|
|
863
|
+
railInsetHorizontalTop: string;
|
|
864
|
+
railInsetVerticalRight: string;
|
|
865
|
+
railInsetVerticalLeft: string;
|
|
866
|
+
railColor: string;
|
|
835
867
|
}, any>;
|
|
836
868
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
837
869
|
iconSizeSmall: string;
|
|
@@ -1089,8 +1121,16 @@ export declare const paginationProps: {
|
|
|
1089
1121
|
loadingColor: string;
|
|
1090
1122
|
}, {
|
|
1091
1123
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1124
|
+
height: string;
|
|
1125
|
+
width: string;
|
|
1126
|
+
borderRadius: string;
|
|
1092
1127
|
color: string;
|
|
1093
1128
|
colorHover: string;
|
|
1129
|
+
railInsetHorizontalBottom: string;
|
|
1130
|
+
railInsetHorizontalTop: string;
|
|
1131
|
+
railInsetVerticalRight: string;
|
|
1132
|
+
railInsetVerticalLeft: string;
|
|
1133
|
+
railColor: string;
|
|
1094
1134
|
}, any>;
|
|
1095
1135
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1096
1136
|
iconSizeSmall: string;
|
|
@@ -1228,8 +1268,16 @@ export declare const paginationProps: {
|
|
|
1228
1268
|
loadingColor: string;
|
|
1229
1269
|
}, {
|
|
1230
1270
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1271
|
+
height: string;
|
|
1272
|
+
width: string;
|
|
1273
|
+
borderRadius: string;
|
|
1231
1274
|
color: string;
|
|
1232
1275
|
colorHover: string;
|
|
1276
|
+
railInsetHorizontalBottom: string;
|
|
1277
|
+
railInsetHorizontalTop: string;
|
|
1278
|
+
railInsetVerticalRight: string;
|
|
1279
|
+
railInsetVerticalLeft: string;
|
|
1280
|
+
railColor: string;
|
|
1233
1281
|
}, any>;
|
|
1234
1282
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1235
1283
|
iconSizeSmall: string;
|
|
@@ -1543,8 +1591,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1543
1591
|
loadingColor: string;
|
|
1544
1592
|
}, {
|
|
1545
1593
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1594
|
+
height: string;
|
|
1595
|
+
width: string;
|
|
1596
|
+
borderRadius: string;
|
|
1546
1597
|
color: string;
|
|
1547
1598
|
colorHover: string;
|
|
1599
|
+
railInsetHorizontalBottom: string;
|
|
1600
|
+
railInsetHorizontalTop: string;
|
|
1601
|
+
railInsetVerticalRight: string;
|
|
1602
|
+
railInsetVerticalLeft: string;
|
|
1603
|
+
railColor: string;
|
|
1548
1604
|
}, any>;
|
|
1549
1605
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1550
1606
|
iconSizeSmall: string;
|
|
@@ -1682,8 +1738,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1682
1738
|
loadingColor: string;
|
|
1683
1739
|
}, {
|
|
1684
1740
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1741
|
+
height: string;
|
|
1742
|
+
width: string;
|
|
1743
|
+
borderRadius: string;
|
|
1685
1744
|
color: string;
|
|
1686
1745
|
colorHover: string;
|
|
1746
|
+
railInsetHorizontalBottom: string;
|
|
1747
|
+
railInsetHorizontalTop: string;
|
|
1748
|
+
railInsetVerticalRight: string;
|
|
1749
|
+
railInsetVerticalLeft: string;
|
|
1750
|
+
railColor: string;
|
|
1687
1751
|
}, any>;
|
|
1688
1752
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1689
1753
|
iconSizeSmall: string;
|
|
@@ -1941,8 +2005,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1941
2005
|
loadingColor: string;
|
|
1942
2006
|
}, {
|
|
1943
2007
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2008
|
+
height: string;
|
|
2009
|
+
width: string;
|
|
2010
|
+
borderRadius: string;
|
|
1944
2011
|
color: string;
|
|
1945
2012
|
colorHover: string;
|
|
2013
|
+
railInsetHorizontalBottom: string;
|
|
2014
|
+
railInsetHorizontalTop: string;
|
|
2015
|
+
railInsetVerticalRight: string;
|
|
2016
|
+
railInsetVerticalLeft: string;
|
|
2017
|
+
railColor: string;
|
|
1946
2018
|
}, any>;
|
|
1947
2019
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1948
2020
|
iconSizeSmall: string;
|
|
@@ -2080,8 +2152,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2080
2152
|
loadingColor: string;
|
|
2081
2153
|
}, {
|
|
2082
2154
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2155
|
+
height: string;
|
|
2156
|
+
width: string;
|
|
2157
|
+
borderRadius: string;
|
|
2083
2158
|
color: string;
|
|
2084
2159
|
colorHover: string;
|
|
2160
|
+
railInsetHorizontalBottom: string;
|
|
2161
|
+
railInsetHorizontalTop: string;
|
|
2162
|
+
railInsetVerticalRight: string;
|
|
2163
|
+
railInsetVerticalLeft: string;
|
|
2164
|
+
railColor: string;
|
|
2085
2165
|
}, any>;
|
|
2086
2166
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2087
2167
|
iconSizeSmall: string;
|
|
@@ -2339,8 +2419,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2339
2419
|
loadingColor: string;
|
|
2340
2420
|
}, {
|
|
2341
2421
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2422
|
+
height: string;
|
|
2423
|
+
width: string;
|
|
2424
|
+
borderRadius: string;
|
|
2342
2425
|
color: string;
|
|
2343
2426
|
colorHover: string;
|
|
2427
|
+
railInsetHorizontalBottom: string;
|
|
2428
|
+
railInsetHorizontalTop: string;
|
|
2429
|
+
railInsetVerticalRight: string;
|
|
2430
|
+
railInsetVerticalLeft: string;
|
|
2431
|
+
railColor: string;
|
|
2344
2432
|
}, any>;
|
|
2345
2433
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2346
2434
|
iconSizeSmall: string;
|
|
@@ -2478,8 +2566,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2478
2566
|
loadingColor: string;
|
|
2479
2567
|
}, {
|
|
2480
2568
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2569
|
+
height: string;
|
|
2570
|
+
width: string;
|
|
2571
|
+
borderRadius: string;
|
|
2481
2572
|
color: string;
|
|
2482
2573
|
colorHover: string;
|
|
2574
|
+
railInsetHorizontalBottom: string;
|
|
2575
|
+
railInsetHorizontalTop: string;
|
|
2576
|
+
railInsetVerticalRight: string;
|
|
2577
|
+
railInsetVerticalLeft: string;
|
|
2578
|
+
railColor: string;
|
|
2483
2579
|
}, any>;
|
|
2484
2580
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2485
2581
|
iconSizeSmall: string;
|
|
@@ -2756,8 +2852,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2756
2852
|
loadingColor: string;
|
|
2757
2853
|
}, {
|
|
2758
2854
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2855
|
+
height: string;
|
|
2856
|
+
width: string;
|
|
2857
|
+
borderRadius: string;
|
|
2759
2858
|
color: string;
|
|
2760
2859
|
colorHover: string;
|
|
2860
|
+
railInsetHorizontalBottom: string;
|
|
2861
|
+
railInsetHorizontalTop: string;
|
|
2862
|
+
railInsetVerticalRight: string;
|
|
2863
|
+
railInsetVerticalLeft: string;
|
|
2864
|
+
railColor: string;
|
|
2761
2865
|
}, any>;
|
|
2762
2866
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2763
2867
|
iconSizeSmall: string;
|
|
@@ -2895,8 +2999,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2895
2999
|
loadingColor: string;
|
|
2896
3000
|
}, {
|
|
2897
3001
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3002
|
+
height: string;
|
|
3003
|
+
width: string;
|
|
3004
|
+
borderRadius: string;
|
|
2898
3005
|
color: string;
|
|
2899
3006
|
colorHover: string;
|
|
3007
|
+
railInsetHorizontalBottom: string;
|
|
3008
|
+
railInsetHorizontalTop: string;
|
|
3009
|
+
railInsetVerticalRight: string;
|
|
3010
|
+
railInsetVerticalLeft: string;
|
|
3011
|
+
railColor: string;
|
|
2900
3012
|
}, any>;
|
|
2901
3013
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2902
3014
|
iconSizeSmall: string;
|
|
@@ -3080,8 +3192,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3080
3192
|
loadingColor: string;
|
|
3081
3193
|
}, {
|
|
3082
3194
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3195
|
+
height: string;
|
|
3196
|
+
width: string;
|
|
3197
|
+
borderRadius: string;
|
|
3083
3198
|
color: string;
|
|
3084
3199
|
colorHover: string;
|
|
3200
|
+
railInsetHorizontalBottom: string;
|
|
3201
|
+
railInsetHorizontalTop: string;
|
|
3202
|
+
railInsetVerticalRight: string;
|
|
3203
|
+
railInsetVerticalLeft: string;
|
|
3204
|
+
railColor: string;
|
|
3085
3205
|
}, any>;
|
|
3086
3206
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
3087
3207
|
iconSizeSmall: string;
|
|
@@ -3160,8 +3280,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3160
3280
|
loadingColor: string;
|
|
3161
3281
|
}, {
|
|
3162
3282
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3283
|
+
height: string;
|
|
3284
|
+
width: string;
|
|
3285
|
+
borderRadius: string;
|
|
3163
3286
|
color: string;
|
|
3164
3287
|
colorHover: string;
|
|
3288
|
+
railInsetHorizontalBottom: string;
|
|
3289
|
+
railInsetHorizontalTop: string;
|
|
3290
|
+
railInsetVerticalRight: string;
|
|
3291
|
+
railInsetVerticalLeft: string;
|
|
3292
|
+
railColor: string;
|
|
3165
3293
|
}, any>;
|
|
3166
3294
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
3167
3295
|
iconSizeSmall: string;
|
|
@@ -3542,8 +3670,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3542
3670
|
loadingColor: string;
|
|
3543
3671
|
}, {
|
|
3544
3672
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3673
|
+
height: string;
|
|
3674
|
+
width: string;
|
|
3675
|
+
borderRadius: string;
|
|
3545
3676
|
color: string;
|
|
3546
3677
|
colorHover: string;
|
|
3678
|
+
railInsetHorizontalBottom: string;
|
|
3679
|
+
railInsetHorizontalTop: string;
|
|
3680
|
+
railInsetVerticalRight: string;
|
|
3681
|
+
railInsetVerticalLeft: string;
|
|
3682
|
+
railColor: string;
|
|
3547
3683
|
}, any>;
|
|
3548
3684
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
3549
3685
|
iconSizeSmall: string;
|
|
@@ -3681,8 +3817,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3681
3817
|
loadingColor: string;
|
|
3682
3818
|
}, {
|
|
3683
3819
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3820
|
+
height: string;
|
|
3821
|
+
width: string;
|
|
3822
|
+
borderRadius: string;
|
|
3684
3823
|
color: string;
|
|
3685
3824
|
colorHover: string;
|
|
3825
|
+
railInsetHorizontalBottom: string;
|
|
3826
|
+
railInsetHorizontalTop: string;
|
|
3827
|
+
railInsetVerticalRight: string;
|
|
3828
|
+
railInsetVerticalLeft: string;
|
|
3829
|
+
railColor: string;
|
|
3686
3830
|
}, any>;
|
|
3687
3831
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
3688
3832
|
iconSizeSmall: string;
|
|
@@ -3940,8 +4084,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3940
4084
|
loadingColor: string;
|
|
3941
4085
|
}, {
|
|
3942
4086
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
4087
|
+
height: string;
|
|
4088
|
+
width: string;
|
|
4089
|
+
borderRadius: string;
|
|
3943
4090
|
color: string;
|
|
3944
4091
|
colorHover: string;
|
|
4092
|
+
railInsetHorizontalBottom: string;
|
|
4093
|
+
railInsetHorizontalTop: string;
|
|
4094
|
+
railInsetVerticalRight: string;
|
|
4095
|
+
railInsetVerticalLeft: string;
|
|
4096
|
+
railColor: string;
|
|
3945
4097
|
}, any>;
|
|
3946
4098
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
3947
4099
|
iconSizeSmall: string;
|
|
@@ -4079,8 +4231,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4079
4231
|
loadingColor: string;
|
|
4080
4232
|
}, {
|
|
4081
4233
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
4234
|
+
height: string;
|
|
4235
|
+
width: string;
|
|
4236
|
+
borderRadius: string;
|
|
4082
4237
|
color: string;
|
|
4083
4238
|
colorHover: string;
|
|
4239
|
+
railInsetHorizontalBottom: string;
|
|
4240
|
+
railInsetHorizontalTop: string;
|
|
4241
|
+
railInsetVerticalRight: string;
|
|
4242
|
+
railInsetVerticalLeft: string;
|
|
4243
|
+
railColor: string;
|
|
4084
4244
|
}, any>;
|
|
4085
4245
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
4086
4246
|
iconSizeSmall: string;
|
|
@@ -4338,8 +4498,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4338
4498
|
loadingColor: string;
|
|
4339
4499
|
}, {
|
|
4340
4500
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
4501
|
+
height: string;
|
|
4502
|
+
width: string;
|
|
4503
|
+
borderRadius: string;
|
|
4341
4504
|
color: string;
|
|
4342
4505
|
colorHover: string;
|
|
4506
|
+
railInsetHorizontalBottom: string;
|
|
4507
|
+
railInsetHorizontalTop: string;
|
|
4508
|
+
railInsetVerticalRight: string;
|
|
4509
|
+
railInsetVerticalLeft: string;
|
|
4510
|
+
railColor: string;
|
|
4343
4511
|
}, any>;
|
|
4344
4512
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
4345
4513
|
iconSizeSmall: string;
|
|
@@ -4477,8 +4645,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4477
4645
|
loadingColor: string;
|
|
4478
4646
|
}, {
|
|
4479
4647
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
4648
|
+
height: string;
|
|
4649
|
+
width: string;
|
|
4650
|
+
borderRadius: string;
|
|
4480
4651
|
color: string;
|
|
4481
4652
|
colorHover: string;
|
|
4653
|
+
railInsetHorizontalBottom: string;
|
|
4654
|
+
railInsetHorizontalTop: string;
|
|
4655
|
+
railInsetVerticalRight: string;
|
|
4656
|
+
railInsetVerticalLeft: string;
|
|
4657
|
+
railColor: string;
|
|
4482
4658
|
}, any>;
|
|
4483
4659
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
4484
4660
|
iconSizeSmall: string;
|
|
@@ -308,8 +308,16 @@ declare const paginationLight: import("../../_mixins").Theme<"Pagination", {
|
|
|
308
308
|
loadingColor: string;
|
|
309
309
|
}, {
|
|
310
310
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
311
|
+
height: string;
|
|
312
|
+
width: string;
|
|
313
|
+
borderRadius: string;
|
|
311
314
|
color: string;
|
|
312
315
|
colorHover: string;
|
|
316
|
+
railInsetHorizontalBottom: string;
|
|
317
|
+
railInsetHorizontalTop: string;
|
|
318
|
+
railInsetVerticalRight: string;
|
|
319
|
+
railInsetVerticalLeft: string;
|
|
320
|
+
railColor: string;
|
|
313
321
|
}, any>;
|
|
314
322
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
315
323
|
iconSizeSmall: string;
|
|
@@ -447,8 +455,16 @@ declare const paginationLight: import("../../_mixins").Theme<"Pagination", {
|
|
|
447
455
|
loadingColor: string;
|
|
448
456
|
}, {
|
|
449
457
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
458
|
+
height: string;
|
|
459
|
+
width: string;
|
|
460
|
+
borderRadius: string;
|
|
450
461
|
color: string;
|
|
451
462
|
colorHover: string;
|
|
463
|
+
railInsetHorizontalBottom: string;
|
|
464
|
+
railInsetHorizontalTop: string;
|
|
465
|
+
railInsetVerticalRight: string;
|
|
466
|
+
railInsetVerticalLeft: string;
|
|
467
|
+
railColor: string;
|
|
452
468
|
}, any>;
|
|
453
469
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
454
470
|
iconSizeSmall: string;
|