@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
|
@@ -77,6 +77,8 @@ export declare const notificationProviderProps: {
|
|
|
77
77
|
titleTextColor: string;
|
|
78
78
|
descriptionTextColor: string;
|
|
79
79
|
actionTextColor: string;
|
|
80
|
+
iconWrapperColor: string;
|
|
81
|
+
iconWrapperPulseColor: string;
|
|
80
82
|
colorSuccess: string;
|
|
81
83
|
iconColorSuccess: string;
|
|
82
84
|
textColorSuccess: string;
|
|
@@ -88,6 +90,8 @@ export declare const notificationProviderProps: {
|
|
|
88
90
|
titleTextColorSuccess: string;
|
|
89
91
|
descriptionTextColorSuccess: string;
|
|
90
92
|
actionTextColorSuccess: string;
|
|
93
|
+
iconWrapperColorSuccess: string;
|
|
94
|
+
iconWrapperPulseColorSuccess: string;
|
|
91
95
|
colorInfo: string;
|
|
92
96
|
iconColorInfo: string;
|
|
93
97
|
textColorInfo: string;
|
|
@@ -99,6 +103,8 @@ export declare const notificationProviderProps: {
|
|
|
99
103
|
titleTextColorInfo: string;
|
|
100
104
|
descriptionTextColorInfo: string;
|
|
101
105
|
actionTextColorInfo: string;
|
|
106
|
+
iconWrapperColorInfo: string;
|
|
107
|
+
iconWrapperPulseColorInfo: string;
|
|
102
108
|
colorWarning: string;
|
|
103
109
|
iconColorWarning: string;
|
|
104
110
|
textColorWarning: string;
|
|
@@ -110,6 +116,8 @@ export declare const notificationProviderProps: {
|
|
|
110
116
|
titleTextColorWarning: string;
|
|
111
117
|
descriptionTextColorWarning: string;
|
|
112
118
|
actionTextColorWarning: string;
|
|
119
|
+
iconWrapperColorWarning: string;
|
|
120
|
+
iconWrapperPulseColorWarning: string;
|
|
113
121
|
colorError: string;
|
|
114
122
|
iconColorError: string;
|
|
115
123
|
textColorError: string;
|
|
@@ -121,6 +129,8 @@ export declare const notificationProviderProps: {
|
|
|
121
129
|
titleTextColorError: string;
|
|
122
130
|
descriptionTextColorError: string;
|
|
123
131
|
actionTextColorError: string;
|
|
132
|
+
iconWrapperColorError: string;
|
|
133
|
+
iconWrapperPulseColorError: string;
|
|
124
134
|
colorPrimary: string;
|
|
125
135
|
iconColorPrimary: string;
|
|
126
136
|
textColorPrimary: string;
|
|
@@ -132,13 +142,23 @@ export declare const notificationProviderProps: {
|
|
|
132
142
|
titleTextColorPrimary: string;
|
|
133
143
|
descriptionTextColorPrimary: string;
|
|
134
144
|
actionTextColorPrimary: string;
|
|
145
|
+
iconWrapperColorPrimary: string;
|
|
146
|
+
iconWrapperPulseColorPrimary: string;
|
|
135
147
|
width: string;
|
|
136
148
|
padding: string;
|
|
137
149
|
closeBorderRadius: string;
|
|
138
150
|
}, {
|
|
139
151
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
152
|
+
height: string;
|
|
153
|
+
width: string;
|
|
154
|
+
borderRadius: string;
|
|
140
155
|
color: string;
|
|
141
156
|
colorHover: string;
|
|
157
|
+
railInsetHorizontalBottom: string;
|
|
158
|
+
railInsetHorizontalTop: string;
|
|
159
|
+
railInsetVerticalRight: string;
|
|
160
|
+
railInsetVerticalLeft: string;
|
|
161
|
+
railColor: string;
|
|
142
162
|
}, any>;
|
|
143
163
|
}>>;
|
|
144
164
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Notification", {
|
|
@@ -168,6 +188,8 @@ export declare const notificationProviderProps: {
|
|
|
168
188
|
titleTextColor: string;
|
|
169
189
|
descriptionTextColor: string;
|
|
170
190
|
actionTextColor: string;
|
|
191
|
+
iconWrapperColor: string;
|
|
192
|
+
iconWrapperPulseColor: string;
|
|
171
193
|
colorSuccess: string;
|
|
172
194
|
iconColorSuccess: string;
|
|
173
195
|
textColorSuccess: string;
|
|
@@ -179,6 +201,8 @@ export declare const notificationProviderProps: {
|
|
|
179
201
|
titleTextColorSuccess: string;
|
|
180
202
|
descriptionTextColorSuccess: string;
|
|
181
203
|
actionTextColorSuccess: string;
|
|
204
|
+
iconWrapperColorSuccess: string;
|
|
205
|
+
iconWrapperPulseColorSuccess: string;
|
|
182
206
|
colorInfo: string;
|
|
183
207
|
iconColorInfo: string;
|
|
184
208
|
textColorInfo: string;
|
|
@@ -190,6 +214,8 @@ export declare const notificationProviderProps: {
|
|
|
190
214
|
titleTextColorInfo: string;
|
|
191
215
|
descriptionTextColorInfo: string;
|
|
192
216
|
actionTextColorInfo: string;
|
|
217
|
+
iconWrapperColorInfo: string;
|
|
218
|
+
iconWrapperPulseColorInfo: string;
|
|
193
219
|
colorWarning: string;
|
|
194
220
|
iconColorWarning: string;
|
|
195
221
|
textColorWarning: string;
|
|
@@ -201,6 +227,8 @@ export declare const notificationProviderProps: {
|
|
|
201
227
|
titleTextColorWarning: string;
|
|
202
228
|
descriptionTextColorWarning: string;
|
|
203
229
|
actionTextColorWarning: string;
|
|
230
|
+
iconWrapperColorWarning: string;
|
|
231
|
+
iconWrapperPulseColorWarning: string;
|
|
204
232
|
colorError: string;
|
|
205
233
|
iconColorError: string;
|
|
206
234
|
textColorError: string;
|
|
@@ -212,6 +240,8 @@ export declare const notificationProviderProps: {
|
|
|
212
240
|
titleTextColorError: string;
|
|
213
241
|
descriptionTextColorError: string;
|
|
214
242
|
actionTextColorError: string;
|
|
243
|
+
iconWrapperColorError: string;
|
|
244
|
+
iconWrapperPulseColorError: string;
|
|
215
245
|
colorPrimary: string;
|
|
216
246
|
iconColorPrimary: string;
|
|
217
247
|
textColorPrimary: string;
|
|
@@ -223,13 +253,23 @@ export declare const notificationProviderProps: {
|
|
|
223
253
|
titleTextColorPrimary: string;
|
|
224
254
|
descriptionTextColorPrimary: string;
|
|
225
255
|
actionTextColorPrimary: string;
|
|
256
|
+
iconWrapperColorPrimary: string;
|
|
257
|
+
iconWrapperPulseColorPrimary: string;
|
|
226
258
|
width: string;
|
|
227
259
|
padding: string;
|
|
228
260
|
closeBorderRadius: string;
|
|
229
261
|
}, {
|
|
230
262
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
263
|
+
height: string;
|
|
264
|
+
width: string;
|
|
265
|
+
borderRadius: string;
|
|
231
266
|
color: string;
|
|
232
267
|
colorHover: string;
|
|
268
|
+
railInsetHorizontalBottom: string;
|
|
269
|
+
railInsetHorizontalTop: string;
|
|
270
|
+
railInsetVerticalRight: string;
|
|
271
|
+
railInsetVerticalLeft: string;
|
|
272
|
+
railColor: string;
|
|
233
273
|
}, any>;
|
|
234
274
|
}>>>;
|
|
235
275
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Notification", {
|
|
@@ -259,6 +299,8 @@ export declare const notificationProviderProps: {
|
|
|
259
299
|
titleTextColor: string;
|
|
260
300
|
descriptionTextColor: string;
|
|
261
301
|
actionTextColor: string;
|
|
302
|
+
iconWrapperColor: string;
|
|
303
|
+
iconWrapperPulseColor: string;
|
|
262
304
|
colorSuccess: string;
|
|
263
305
|
iconColorSuccess: string;
|
|
264
306
|
textColorSuccess: string;
|
|
@@ -270,6 +312,8 @@ export declare const notificationProviderProps: {
|
|
|
270
312
|
titleTextColorSuccess: string;
|
|
271
313
|
descriptionTextColorSuccess: string;
|
|
272
314
|
actionTextColorSuccess: string;
|
|
315
|
+
iconWrapperColorSuccess: string;
|
|
316
|
+
iconWrapperPulseColorSuccess: string;
|
|
273
317
|
colorInfo: string;
|
|
274
318
|
iconColorInfo: string;
|
|
275
319
|
textColorInfo: string;
|
|
@@ -281,6 +325,8 @@ export declare const notificationProviderProps: {
|
|
|
281
325
|
titleTextColorInfo: string;
|
|
282
326
|
descriptionTextColorInfo: string;
|
|
283
327
|
actionTextColorInfo: string;
|
|
328
|
+
iconWrapperColorInfo: string;
|
|
329
|
+
iconWrapperPulseColorInfo: string;
|
|
284
330
|
colorWarning: string;
|
|
285
331
|
iconColorWarning: string;
|
|
286
332
|
textColorWarning: string;
|
|
@@ -292,6 +338,8 @@ export declare const notificationProviderProps: {
|
|
|
292
338
|
titleTextColorWarning: string;
|
|
293
339
|
descriptionTextColorWarning: string;
|
|
294
340
|
actionTextColorWarning: string;
|
|
341
|
+
iconWrapperColorWarning: string;
|
|
342
|
+
iconWrapperPulseColorWarning: string;
|
|
295
343
|
colorError: string;
|
|
296
344
|
iconColorError: string;
|
|
297
345
|
textColorError: string;
|
|
@@ -303,6 +351,8 @@ export declare const notificationProviderProps: {
|
|
|
303
351
|
titleTextColorError: string;
|
|
304
352
|
descriptionTextColorError: string;
|
|
305
353
|
actionTextColorError: string;
|
|
354
|
+
iconWrapperColorError: string;
|
|
355
|
+
iconWrapperPulseColorError: string;
|
|
306
356
|
colorPrimary: string;
|
|
307
357
|
iconColorPrimary: string;
|
|
308
358
|
textColorPrimary: string;
|
|
@@ -314,13 +364,23 @@ export declare const notificationProviderProps: {
|
|
|
314
364
|
titleTextColorPrimary: string;
|
|
315
365
|
descriptionTextColorPrimary: string;
|
|
316
366
|
actionTextColorPrimary: string;
|
|
367
|
+
iconWrapperColorPrimary: string;
|
|
368
|
+
iconWrapperPulseColorPrimary: string;
|
|
317
369
|
width: string;
|
|
318
370
|
padding: string;
|
|
319
371
|
closeBorderRadius: string;
|
|
320
372
|
}, {
|
|
321
373
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
374
|
+
height: string;
|
|
375
|
+
width: string;
|
|
376
|
+
borderRadius: string;
|
|
322
377
|
color: string;
|
|
323
378
|
colorHover: string;
|
|
379
|
+
railInsetHorizontalBottom: string;
|
|
380
|
+
railInsetHorizontalTop: string;
|
|
381
|
+
railInsetVerticalRight: string;
|
|
382
|
+
railInsetVerticalLeft: string;
|
|
383
|
+
railColor: string;
|
|
324
384
|
}, any>;
|
|
325
385
|
}>>>;
|
|
326
386
|
};
|
|
@@ -365,6 +425,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
365
425
|
titleTextColor: string;
|
|
366
426
|
descriptionTextColor: string;
|
|
367
427
|
actionTextColor: string;
|
|
428
|
+
iconWrapperColor: string;
|
|
429
|
+
iconWrapperPulseColor: string;
|
|
368
430
|
colorSuccess: string;
|
|
369
431
|
iconColorSuccess: string;
|
|
370
432
|
textColorSuccess: string;
|
|
@@ -376,6 +438,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
376
438
|
titleTextColorSuccess: string;
|
|
377
439
|
descriptionTextColorSuccess: string;
|
|
378
440
|
actionTextColorSuccess: string;
|
|
441
|
+
iconWrapperColorSuccess: string;
|
|
442
|
+
iconWrapperPulseColorSuccess: string;
|
|
379
443
|
colorInfo: string;
|
|
380
444
|
iconColorInfo: string;
|
|
381
445
|
textColorInfo: string;
|
|
@@ -387,6 +451,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
387
451
|
titleTextColorInfo: string;
|
|
388
452
|
descriptionTextColorInfo: string;
|
|
389
453
|
actionTextColorInfo: string;
|
|
454
|
+
iconWrapperColorInfo: string;
|
|
455
|
+
iconWrapperPulseColorInfo: string;
|
|
390
456
|
colorWarning: string;
|
|
391
457
|
iconColorWarning: string;
|
|
392
458
|
textColorWarning: string;
|
|
@@ -398,6 +464,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
398
464
|
titleTextColorWarning: string;
|
|
399
465
|
descriptionTextColorWarning: string;
|
|
400
466
|
actionTextColorWarning: string;
|
|
467
|
+
iconWrapperColorWarning: string;
|
|
468
|
+
iconWrapperPulseColorWarning: string;
|
|
401
469
|
colorError: string;
|
|
402
470
|
iconColorError: string;
|
|
403
471
|
textColorError: string;
|
|
@@ -409,6 +477,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
409
477
|
titleTextColorError: string;
|
|
410
478
|
descriptionTextColorError: string;
|
|
411
479
|
actionTextColorError: string;
|
|
480
|
+
iconWrapperColorError: string;
|
|
481
|
+
iconWrapperPulseColorError: string;
|
|
412
482
|
colorPrimary: string;
|
|
413
483
|
iconColorPrimary: string;
|
|
414
484
|
textColorPrimary: string;
|
|
@@ -420,13 +490,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
420
490
|
titleTextColorPrimary: string;
|
|
421
491
|
descriptionTextColorPrimary: string;
|
|
422
492
|
actionTextColorPrimary: string;
|
|
493
|
+
iconWrapperColorPrimary: string;
|
|
494
|
+
iconWrapperPulseColorPrimary: string;
|
|
423
495
|
width: string;
|
|
424
496
|
padding: string;
|
|
425
497
|
closeBorderRadius: string;
|
|
426
498
|
}, {
|
|
427
499
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
500
|
+
height: string;
|
|
501
|
+
width: string;
|
|
502
|
+
borderRadius: string;
|
|
428
503
|
color: string;
|
|
429
504
|
colorHover: string;
|
|
505
|
+
railInsetHorizontalBottom: string;
|
|
506
|
+
railInsetHorizontalTop: string;
|
|
507
|
+
railInsetVerticalRight: string;
|
|
508
|
+
railInsetVerticalLeft: string;
|
|
509
|
+
railColor: string;
|
|
430
510
|
}, any>;
|
|
431
511
|
}>>;
|
|
432
512
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Notification", {
|
|
@@ -456,6 +536,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
456
536
|
titleTextColor: string;
|
|
457
537
|
descriptionTextColor: string;
|
|
458
538
|
actionTextColor: string;
|
|
539
|
+
iconWrapperColor: string;
|
|
540
|
+
iconWrapperPulseColor: string;
|
|
459
541
|
colorSuccess: string;
|
|
460
542
|
iconColorSuccess: string;
|
|
461
543
|
textColorSuccess: string;
|
|
@@ -467,6 +549,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
467
549
|
titleTextColorSuccess: string;
|
|
468
550
|
descriptionTextColorSuccess: string;
|
|
469
551
|
actionTextColorSuccess: string;
|
|
552
|
+
iconWrapperColorSuccess: string;
|
|
553
|
+
iconWrapperPulseColorSuccess: string;
|
|
470
554
|
colorInfo: string;
|
|
471
555
|
iconColorInfo: string;
|
|
472
556
|
textColorInfo: string;
|
|
@@ -478,6 +562,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
478
562
|
titleTextColorInfo: string;
|
|
479
563
|
descriptionTextColorInfo: string;
|
|
480
564
|
actionTextColorInfo: string;
|
|
565
|
+
iconWrapperColorInfo: string;
|
|
566
|
+
iconWrapperPulseColorInfo: string;
|
|
481
567
|
colorWarning: string;
|
|
482
568
|
iconColorWarning: string;
|
|
483
569
|
textColorWarning: string;
|
|
@@ -489,6 +575,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
489
575
|
titleTextColorWarning: string;
|
|
490
576
|
descriptionTextColorWarning: string;
|
|
491
577
|
actionTextColorWarning: string;
|
|
578
|
+
iconWrapperColorWarning: string;
|
|
579
|
+
iconWrapperPulseColorWarning: string;
|
|
492
580
|
colorError: string;
|
|
493
581
|
iconColorError: string;
|
|
494
582
|
textColorError: string;
|
|
@@ -500,6 +588,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
500
588
|
titleTextColorError: string;
|
|
501
589
|
descriptionTextColorError: string;
|
|
502
590
|
actionTextColorError: string;
|
|
591
|
+
iconWrapperColorError: string;
|
|
592
|
+
iconWrapperPulseColorError: string;
|
|
503
593
|
colorPrimary: string;
|
|
504
594
|
iconColorPrimary: string;
|
|
505
595
|
textColorPrimary: string;
|
|
@@ -511,13 +601,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
511
601
|
titleTextColorPrimary: string;
|
|
512
602
|
descriptionTextColorPrimary: string;
|
|
513
603
|
actionTextColorPrimary: string;
|
|
604
|
+
iconWrapperColorPrimary: string;
|
|
605
|
+
iconWrapperPulseColorPrimary: string;
|
|
514
606
|
width: string;
|
|
515
607
|
padding: string;
|
|
516
608
|
closeBorderRadius: string;
|
|
517
609
|
}, {
|
|
518
610
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
611
|
+
height: string;
|
|
612
|
+
width: string;
|
|
613
|
+
borderRadius: string;
|
|
519
614
|
color: string;
|
|
520
615
|
colorHover: string;
|
|
616
|
+
railInsetHorizontalBottom: string;
|
|
617
|
+
railInsetHorizontalTop: string;
|
|
618
|
+
railInsetVerticalRight: string;
|
|
619
|
+
railInsetVerticalLeft: string;
|
|
620
|
+
railColor: string;
|
|
521
621
|
}, any>;
|
|
522
622
|
}>>>;
|
|
523
623
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Notification", {
|
|
@@ -547,6 +647,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
547
647
|
titleTextColor: string;
|
|
548
648
|
descriptionTextColor: string;
|
|
549
649
|
actionTextColor: string;
|
|
650
|
+
iconWrapperColor: string;
|
|
651
|
+
iconWrapperPulseColor: string;
|
|
550
652
|
colorSuccess: string;
|
|
551
653
|
iconColorSuccess: string;
|
|
552
654
|
textColorSuccess: string;
|
|
@@ -558,6 +660,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
558
660
|
titleTextColorSuccess: string;
|
|
559
661
|
descriptionTextColorSuccess: string;
|
|
560
662
|
actionTextColorSuccess: string;
|
|
663
|
+
iconWrapperColorSuccess: string;
|
|
664
|
+
iconWrapperPulseColorSuccess: string;
|
|
561
665
|
colorInfo: string;
|
|
562
666
|
iconColorInfo: string;
|
|
563
667
|
textColorInfo: string;
|
|
@@ -569,6 +673,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
569
673
|
titleTextColorInfo: string;
|
|
570
674
|
descriptionTextColorInfo: string;
|
|
571
675
|
actionTextColorInfo: string;
|
|
676
|
+
iconWrapperColorInfo: string;
|
|
677
|
+
iconWrapperPulseColorInfo: string;
|
|
572
678
|
colorWarning: string;
|
|
573
679
|
iconColorWarning: string;
|
|
574
680
|
textColorWarning: string;
|
|
@@ -580,6 +686,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
580
686
|
titleTextColorWarning: string;
|
|
581
687
|
descriptionTextColorWarning: string;
|
|
582
688
|
actionTextColorWarning: string;
|
|
689
|
+
iconWrapperColorWarning: string;
|
|
690
|
+
iconWrapperPulseColorWarning: string;
|
|
583
691
|
colorError: string;
|
|
584
692
|
iconColorError: string;
|
|
585
693
|
textColorError: string;
|
|
@@ -591,6 +699,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
591
699
|
titleTextColorError: string;
|
|
592
700
|
descriptionTextColorError: string;
|
|
593
701
|
actionTextColorError: string;
|
|
702
|
+
iconWrapperColorError: string;
|
|
703
|
+
iconWrapperPulseColorError: string;
|
|
594
704
|
colorPrimary: string;
|
|
595
705
|
iconColorPrimary: string;
|
|
596
706
|
textColorPrimary: string;
|
|
@@ -602,13 +712,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
602
712
|
titleTextColorPrimary: string;
|
|
603
713
|
descriptionTextColorPrimary: string;
|
|
604
714
|
actionTextColorPrimary: string;
|
|
715
|
+
iconWrapperColorPrimary: string;
|
|
716
|
+
iconWrapperPulseColorPrimary: string;
|
|
605
717
|
width: string;
|
|
606
718
|
padding: string;
|
|
607
719
|
closeBorderRadius: string;
|
|
608
720
|
}, {
|
|
609
721
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
722
|
+
height: string;
|
|
723
|
+
width: string;
|
|
724
|
+
borderRadius: string;
|
|
610
725
|
color: string;
|
|
611
726
|
colorHover: string;
|
|
727
|
+
railInsetHorizontalBottom: string;
|
|
728
|
+
railInsetHorizontalTop: string;
|
|
729
|
+
railInsetVerticalRight: string;
|
|
730
|
+
railInsetVerticalLeft: string;
|
|
731
|
+
railColor: string;
|
|
612
732
|
}, any>;
|
|
613
733
|
}>>>;
|
|
614
734
|
}, {
|
|
@@ -690,6 +810,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
690
810
|
titleTextColor: string;
|
|
691
811
|
descriptionTextColor: string;
|
|
692
812
|
actionTextColor: string;
|
|
813
|
+
iconWrapperColor: string;
|
|
814
|
+
iconWrapperPulseColor: string;
|
|
693
815
|
colorSuccess: string;
|
|
694
816
|
iconColorSuccess: string;
|
|
695
817
|
textColorSuccess: string;
|
|
@@ -701,6 +823,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
701
823
|
titleTextColorSuccess: string;
|
|
702
824
|
descriptionTextColorSuccess: string;
|
|
703
825
|
actionTextColorSuccess: string;
|
|
826
|
+
iconWrapperColorSuccess: string;
|
|
827
|
+
iconWrapperPulseColorSuccess: string;
|
|
704
828
|
colorInfo: string;
|
|
705
829
|
iconColorInfo: string;
|
|
706
830
|
textColorInfo: string;
|
|
@@ -712,6 +836,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
712
836
|
titleTextColorInfo: string;
|
|
713
837
|
descriptionTextColorInfo: string;
|
|
714
838
|
actionTextColorInfo: string;
|
|
839
|
+
iconWrapperColorInfo: string;
|
|
840
|
+
iconWrapperPulseColorInfo: string;
|
|
715
841
|
colorWarning: string;
|
|
716
842
|
iconColorWarning: string;
|
|
717
843
|
textColorWarning: string;
|
|
@@ -723,6 +849,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
723
849
|
titleTextColorWarning: string;
|
|
724
850
|
descriptionTextColorWarning: string;
|
|
725
851
|
actionTextColorWarning: string;
|
|
852
|
+
iconWrapperColorWarning: string;
|
|
853
|
+
iconWrapperPulseColorWarning: string;
|
|
726
854
|
colorError: string;
|
|
727
855
|
iconColorError: string;
|
|
728
856
|
textColorError: string;
|
|
@@ -734,6 +862,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
734
862
|
titleTextColorError: string;
|
|
735
863
|
descriptionTextColorError: string;
|
|
736
864
|
actionTextColorError: string;
|
|
865
|
+
iconWrapperColorError: string;
|
|
866
|
+
iconWrapperPulseColorError: string;
|
|
737
867
|
colorPrimary: string;
|
|
738
868
|
iconColorPrimary: string;
|
|
739
869
|
textColorPrimary: string;
|
|
@@ -745,13 +875,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
745
875
|
titleTextColorPrimary: string;
|
|
746
876
|
descriptionTextColorPrimary: string;
|
|
747
877
|
actionTextColorPrimary: string;
|
|
878
|
+
iconWrapperColorPrimary: string;
|
|
879
|
+
iconWrapperPulseColorPrimary: string;
|
|
748
880
|
width: string;
|
|
749
881
|
padding: string;
|
|
750
882
|
closeBorderRadius: string;
|
|
751
883
|
}, {
|
|
752
884
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
885
|
+
height: string;
|
|
886
|
+
width: string;
|
|
887
|
+
borderRadius: string;
|
|
753
888
|
color: string;
|
|
754
889
|
colorHover: string;
|
|
890
|
+
railInsetHorizontalBottom: string;
|
|
891
|
+
railInsetHorizontalTop: string;
|
|
892
|
+
railInsetVerticalRight: string;
|
|
893
|
+
railInsetVerticalLeft: string;
|
|
894
|
+
railColor: string;
|
|
755
895
|
}, any>;
|
|
756
896
|
}>>;
|
|
757
897
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Notification", {
|
|
@@ -781,6 +921,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
781
921
|
titleTextColor: string;
|
|
782
922
|
descriptionTextColor: string;
|
|
783
923
|
actionTextColor: string;
|
|
924
|
+
iconWrapperColor: string;
|
|
925
|
+
iconWrapperPulseColor: string;
|
|
784
926
|
colorSuccess: string;
|
|
785
927
|
iconColorSuccess: string;
|
|
786
928
|
textColorSuccess: string;
|
|
@@ -792,6 +934,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
792
934
|
titleTextColorSuccess: string;
|
|
793
935
|
descriptionTextColorSuccess: string;
|
|
794
936
|
actionTextColorSuccess: string;
|
|
937
|
+
iconWrapperColorSuccess: string;
|
|
938
|
+
iconWrapperPulseColorSuccess: string;
|
|
795
939
|
colorInfo: string;
|
|
796
940
|
iconColorInfo: string;
|
|
797
941
|
textColorInfo: string;
|
|
@@ -803,6 +947,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
803
947
|
titleTextColorInfo: string;
|
|
804
948
|
descriptionTextColorInfo: string;
|
|
805
949
|
actionTextColorInfo: string;
|
|
950
|
+
iconWrapperColorInfo: string;
|
|
951
|
+
iconWrapperPulseColorInfo: string;
|
|
806
952
|
colorWarning: string;
|
|
807
953
|
iconColorWarning: string;
|
|
808
954
|
textColorWarning: string;
|
|
@@ -814,6 +960,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
814
960
|
titleTextColorWarning: string;
|
|
815
961
|
descriptionTextColorWarning: string;
|
|
816
962
|
actionTextColorWarning: string;
|
|
963
|
+
iconWrapperColorWarning: string;
|
|
964
|
+
iconWrapperPulseColorWarning: string;
|
|
817
965
|
colorError: string;
|
|
818
966
|
iconColorError: string;
|
|
819
967
|
textColorError: string;
|
|
@@ -825,6 +973,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
825
973
|
titleTextColorError: string;
|
|
826
974
|
descriptionTextColorError: string;
|
|
827
975
|
actionTextColorError: string;
|
|
976
|
+
iconWrapperColorError: string;
|
|
977
|
+
iconWrapperPulseColorError: string;
|
|
828
978
|
colorPrimary: string;
|
|
829
979
|
iconColorPrimary: string;
|
|
830
980
|
textColorPrimary: string;
|
|
@@ -836,13 +986,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
836
986
|
titleTextColorPrimary: string;
|
|
837
987
|
descriptionTextColorPrimary: string;
|
|
838
988
|
actionTextColorPrimary: string;
|
|
989
|
+
iconWrapperColorPrimary: string;
|
|
990
|
+
iconWrapperPulseColorPrimary: string;
|
|
839
991
|
width: string;
|
|
840
992
|
padding: string;
|
|
841
993
|
closeBorderRadius: string;
|
|
842
994
|
}, {
|
|
843
995
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
996
|
+
height: string;
|
|
997
|
+
width: string;
|
|
998
|
+
borderRadius: string;
|
|
844
999
|
color: string;
|
|
845
1000
|
colorHover: string;
|
|
1001
|
+
railInsetHorizontalBottom: string;
|
|
1002
|
+
railInsetHorizontalTop: string;
|
|
1003
|
+
railInsetVerticalRight: string;
|
|
1004
|
+
railInsetVerticalLeft: string;
|
|
1005
|
+
railColor: string;
|
|
846
1006
|
}, any>;
|
|
847
1007
|
}>>>;
|
|
848
1008
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Notification", {
|
|
@@ -872,6 +1032,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
872
1032
|
titleTextColor: string;
|
|
873
1033
|
descriptionTextColor: string;
|
|
874
1034
|
actionTextColor: string;
|
|
1035
|
+
iconWrapperColor: string;
|
|
1036
|
+
iconWrapperPulseColor: string;
|
|
875
1037
|
colorSuccess: string;
|
|
876
1038
|
iconColorSuccess: string;
|
|
877
1039
|
textColorSuccess: string;
|
|
@@ -883,6 +1045,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
883
1045
|
titleTextColorSuccess: string;
|
|
884
1046
|
descriptionTextColorSuccess: string;
|
|
885
1047
|
actionTextColorSuccess: string;
|
|
1048
|
+
iconWrapperColorSuccess: string;
|
|
1049
|
+
iconWrapperPulseColorSuccess: string;
|
|
886
1050
|
colorInfo: string;
|
|
887
1051
|
iconColorInfo: string;
|
|
888
1052
|
textColorInfo: string;
|
|
@@ -894,6 +1058,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
894
1058
|
titleTextColorInfo: string;
|
|
895
1059
|
descriptionTextColorInfo: string;
|
|
896
1060
|
actionTextColorInfo: string;
|
|
1061
|
+
iconWrapperColorInfo: string;
|
|
1062
|
+
iconWrapperPulseColorInfo: string;
|
|
897
1063
|
colorWarning: string;
|
|
898
1064
|
iconColorWarning: string;
|
|
899
1065
|
textColorWarning: string;
|
|
@@ -905,6 +1071,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
905
1071
|
titleTextColorWarning: string;
|
|
906
1072
|
descriptionTextColorWarning: string;
|
|
907
1073
|
actionTextColorWarning: string;
|
|
1074
|
+
iconWrapperColorWarning: string;
|
|
1075
|
+
iconWrapperPulseColorWarning: string;
|
|
908
1076
|
colorError: string;
|
|
909
1077
|
iconColorError: string;
|
|
910
1078
|
textColorError: string;
|
|
@@ -916,6 +1084,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
916
1084
|
titleTextColorError: string;
|
|
917
1085
|
descriptionTextColorError: string;
|
|
918
1086
|
actionTextColorError: string;
|
|
1087
|
+
iconWrapperColorError: string;
|
|
1088
|
+
iconWrapperPulseColorError: string;
|
|
919
1089
|
colorPrimary: string;
|
|
920
1090
|
iconColorPrimary: string;
|
|
921
1091
|
textColorPrimary: string;
|
|
@@ -927,13 +1097,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
927
1097
|
titleTextColorPrimary: string;
|
|
928
1098
|
descriptionTextColorPrimary: string;
|
|
929
1099
|
actionTextColorPrimary: string;
|
|
1100
|
+
iconWrapperColorPrimary: string;
|
|
1101
|
+
iconWrapperPulseColorPrimary: string;
|
|
930
1102
|
width: string;
|
|
931
1103
|
padding: string;
|
|
932
1104
|
closeBorderRadius: string;
|
|
933
1105
|
}, {
|
|
934
1106
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1107
|
+
height: string;
|
|
1108
|
+
width: string;
|
|
1109
|
+
borderRadius: string;
|
|
935
1110
|
color: string;
|
|
936
1111
|
colorHover: string;
|
|
1112
|
+
railInsetHorizontalBottom: string;
|
|
1113
|
+
railInsetHorizontalTop: string;
|
|
1114
|
+
railInsetVerticalRight: string;
|
|
1115
|
+
railInsetVerticalLeft: string;
|
|
1116
|
+
railColor: string;
|
|
937
1117
|
}, any>;
|
|
938
1118
|
}>>>;
|
|
939
1119
|
}>>, {
|
|
@@ -134,6 +134,8 @@ exports.default = (0, cssr_1.c)([(0, cssr_1.cB)('notification-container', `
|
|
|
134
134
|
display: flex;
|
|
135
135
|
overflow: hidden;
|
|
136
136
|
flex-shrink: 0;
|
|
137
|
+
padding-top: var(--u-padding-top);
|
|
138
|
+
padding-bottom: var(--u-padding-bottom);
|
|
137
139
|
padding-left: var(--u-padding-left);
|
|
138
140
|
padding-right: var(--u-padding-right);
|
|
139
141
|
width: var(--u-width);
|
|
@@ -143,12 +145,14 @@ exports.default = (0, cssr_1.c)([(0, cssr_1.cB)('notification-container', `
|
|
|
143
145
|
border-radius: var(--u-border-radius);
|
|
144
146
|
box-sizing: border-box;
|
|
145
147
|
opacity: 1;
|
|
146
|
-
|
|
148
|
+
box-shadow: 0 0 20px 0 rgba(68, 83, 113, 0.10), 0 12px 20px 0 rgba(68, 83, 113, 0.05);
|
|
149
|
+
`, [(0, cssr_1.cE)('avatar', [(0, cssr_1.cB)('icon-wrapper', `
|
|
150
|
+
`), (0, cssr_1.cB)('icon', {
|
|
147
151
|
color: 'var(--u-icon-color)'
|
|
148
152
|
}), (0, cssr_1.cB)('base-icon', {
|
|
149
153
|
color: 'var(--u-icon-color)'
|
|
150
154
|
})]), (0, cssr_1.cM)('show-avatar', [(0, cssr_1.cB)('notification-main', `
|
|
151
|
-
margin-left:
|
|
155
|
+
margin-left: 16px;
|
|
152
156
|
width: calc(100% - var(--u-avatar-size) + 16px);
|
|
153
157
|
`)]), (0, cssr_1.cM)('closable', [(0, cssr_1.cB)('notification-main', [(0, cssr_1.c)('> *:first-child', `
|
|
154
158
|
padding-right: var(--u-close-size);
|
|
@@ -161,9 +165,7 @@ exports.default = (0, cssr_1.c)([(0, cssr_1.cB)('notification-container', `
|
|
|
161
165
|
background-color .3s var(--u-bezier),
|
|
162
166
|
color .3s var(--u-bezier);
|
|
163
167
|
`)]), (0, cssr_1.cE)('avatar', `
|
|
164
|
-
position:
|
|
165
|
-
top: var(--u-padding-top);
|
|
166
|
-
left: var(--u-padding-left);
|
|
168
|
+
position: relative;
|
|
167
169
|
width: var(--u-avatar-size);
|
|
168
170
|
height: var(--u-avatar-size);
|
|
169
171
|
font-size: var(--u-avatar-size);
|
|
@@ -171,18 +173,18 @@ exports.default = (0, cssr_1.c)([(0, cssr_1.cB)('notification-container', `
|
|
|
171
173
|
align-items: center;
|
|
172
174
|
justify-content: center;
|
|
173
175
|
`, [(0, cssr_1.cB)('icon', 'transition: color .3s var(--u-bezier);')]), (0, cssr_1.cB)('notification-main', `
|
|
174
|
-
padding-top:
|
|
175
|
-
padding-bottom: var(--u-padding-bottom);
|
|
176
|
+
padding-top: 2px;
|
|
176
177
|
box-sizing: border-box;
|
|
177
178
|
display: flex;
|
|
178
179
|
flex-direction: column;
|
|
179
180
|
margin-left: 8px;
|
|
180
181
|
width: calc(100% - 8px);
|
|
182
|
+
justify-content: center;
|
|
181
183
|
`, [(0, cssr_1.cB)('notification-main-footer', `
|
|
182
184
|
display: flex;
|
|
183
185
|
align-items: center;
|
|
184
186
|
justify-content: space-between;
|
|
185
|
-
margin-top:
|
|
187
|
+
margin-top: 8px;
|
|
186
188
|
`, [(0, cssr_1.cE)('meta', `
|
|
187
189
|
font-size: var(--u-meta-font-size);
|
|
188
190
|
transition: color .3s var(--u-bezier-ease-out);
|
|
@@ -191,6 +193,8 @@ exports.default = (0, cssr_1.c)([(0, cssr_1.cB)('notification-container', `
|
|
|
191
193
|
cursor: pointer;
|
|
192
194
|
transition: color .3s var(--u-bezier-ease-out);
|
|
193
195
|
color: var(--u-action-text-color);
|
|
196
|
+
width: 100%;
|
|
197
|
+
margin-top: 16px;
|
|
194
198
|
`)]), (0, cssr_1.cE)('header', `
|
|
195
199
|
font-weight: var(--u-title-font-weight);
|
|
196
200
|
font-size: var(--u-title-font-size);
|