@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
package/lib/log/src/Log.d.ts
CHANGED
|
@@ -57,8 +57,16 @@ export declare const logProps: {
|
|
|
57
57
|
loadingColor: string;
|
|
58
58
|
}, {
|
|
59
59
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
60
|
+
height: string;
|
|
61
|
+
width: string;
|
|
62
|
+
borderRadius: string;
|
|
60
63
|
color: string;
|
|
61
64
|
colorHover: string;
|
|
65
|
+
railInsetHorizontalBottom: string;
|
|
66
|
+
railInsetHorizontalTop: string;
|
|
67
|
+
railInsetVerticalRight: string;
|
|
68
|
+
railInsetVerticalLeft: string;
|
|
69
|
+
railColor: string;
|
|
62
70
|
}, any>;
|
|
63
71
|
Code: import("../../_mixins").Theme<"Code", {
|
|
64
72
|
textColor: string;
|
|
@@ -84,8 +92,16 @@ export declare const logProps: {
|
|
|
84
92
|
loadingColor: string;
|
|
85
93
|
}, {
|
|
86
94
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
95
|
+
height: string;
|
|
96
|
+
width: string;
|
|
97
|
+
borderRadius: string;
|
|
87
98
|
color: string;
|
|
88
99
|
colorHover: string;
|
|
100
|
+
railInsetHorizontalBottom: string;
|
|
101
|
+
railInsetHorizontalTop: string;
|
|
102
|
+
railInsetVerticalRight: string;
|
|
103
|
+
railInsetVerticalLeft: string;
|
|
104
|
+
railColor: string;
|
|
89
105
|
}, any>;
|
|
90
106
|
Code: import("../../_mixins").Theme<"Code", {
|
|
91
107
|
textColor: string;
|
|
@@ -111,8 +127,16 @@ export declare const logProps: {
|
|
|
111
127
|
loadingColor: string;
|
|
112
128
|
}, {
|
|
113
129
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
130
|
+
height: string;
|
|
131
|
+
width: string;
|
|
132
|
+
borderRadius: string;
|
|
114
133
|
color: string;
|
|
115
134
|
colorHover: string;
|
|
135
|
+
railInsetHorizontalBottom: string;
|
|
136
|
+
railInsetHorizontalTop: string;
|
|
137
|
+
railInsetVerticalRight: string;
|
|
138
|
+
railInsetVerticalLeft: string;
|
|
139
|
+
railColor: string;
|
|
116
140
|
}, any>;
|
|
117
141
|
Code: import("../../_mixins").Theme<"Code", {
|
|
118
142
|
textColor: string;
|
|
@@ -173,8 +197,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
173
197
|
loadingColor: 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
|
Code: import("../../_mixins").Theme<"Code", {
|
|
180
212
|
textColor: string;
|
|
@@ -200,8 +232,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
200
232
|
loadingColor: string;
|
|
201
233
|
}, {
|
|
202
234
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
235
|
+
height: string;
|
|
236
|
+
width: string;
|
|
237
|
+
borderRadius: string;
|
|
203
238
|
color: string;
|
|
204
239
|
colorHover: string;
|
|
240
|
+
railInsetHorizontalBottom: string;
|
|
241
|
+
railInsetHorizontalTop: string;
|
|
242
|
+
railInsetVerticalRight: string;
|
|
243
|
+
railInsetVerticalLeft: string;
|
|
244
|
+
railColor: string;
|
|
205
245
|
}, any>;
|
|
206
246
|
Code: import("../../_mixins").Theme<"Code", {
|
|
207
247
|
textColor: string;
|
|
@@ -227,8 +267,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
227
267
|
loadingColor: string;
|
|
228
268
|
}, {
|
|
229
269
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
270
|
+
height: string;
|
|
271
|
+
width: string;
|
|
272
|
+
borderRadius: string;
|
|
230
273
|
color: string;
|
|
231
274
|
colorHover: string;
|
|
275
|
+
railInsetHorizontalBottom: string;
|
|
276
|
+
railInsetHorizontalTop: string;
|
|
277
|
+
railInsetVerticalRight: string;
|
|
278
|
+
railInsetVerticalLeft: string;
|
|
279
|
+
railColor: string;
|
|
232
280
|
}, any>;
|
|
233
281
|
Code: import("../../_mixins").Theme<"Code", {
|
|
234
282
|
textColor: string;
|
|
@@ -271,8 +319,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
271
319
|
};
|
|
272
320
|
peers: {
|
|
273
321
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
322
|
+
height: string;
|
|
323
|
+
width: string;
|
|
324
|
+
borderRadius: string;
|
|
274
325
|
color: string;
|
|
275
326
|
colorHover: string;
|
|
327
|
+
railInsetHorizontalBottom: string;
|
|
328
|
+
railInsetHorizontalTop: string;
|
|
329
|
+
railInsetVerticalRight: string;
|
|
330
|
+
railInsetVerticalLeft: string;
|
|
331
|
+
railColor: string;
|
|
276
332
|
}, any>;
|
|
277
333
|
Code: import("../../_mixins").Theme<"Code", {
|
|
278
334
|
textColor: string;
|
|
@@ -367,8 +423,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
367
423
|
loadingColor: string;
|
|
368
424
|
}, {
|
|
369
425
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
426
|
+
height: string;
|
|
427
|
+
width: string;
|
|
428
|
+
borderRadius: string;
|
|
370
429
|
color: string;
|
|
371
430
|
colorHover: string;
|
|
431
|
+
railInsetHorizontalBottom: string;
|
|
432
|
+
railInsetHorizontalTop: string;
|
|
433
|
+
railInsetVerticalRight: string;
|
|
434
|
+
railInsetVerticalLeft: string;
|
|
435
|
+
railColor: string;
|
|
372
436
|
}, any>;
|
|
373
437
|
Code: import("../../_mixins").Theme<"Code", {
|
|
374
438
|
textColor: string;
|
|
@@ -394,8 +458,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
394
458
|
loadingColor: string;
|
|
395
459
|
}, {
|
|
396
460
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
461
|
+
height: string;
|
|
462
|
+
width: string;
|
|
463
|
+
borderRadius: string;
|
|
397
464
|
color: string;
|
|
398
465
|
colorHover: string;
|
|
466
|
+
railInsetHorizontalBottom: string;
|
|
467
|
+
railInsetHorizontalTop: string;
|
|
468
|
+
railInsetVerticalRight: string;
|
|
469
|
+
railInsetVerticalLeft: string;
|
|
470
|
+
railColor: string;
|
|
399
471
|
}, any>;
|
|
400
472
|
Code: import("../../_mixins").Theme<"Code", {
|
|
401
473
|
textColor: string;
|
|
@@ -421,8 +493,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
421
493
|
loadingColor: string;
|
|
422
494
|
}, {
|
|
423
495
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
496
|
+
height: string;
|
|
497
|
+
width: string;
|
|
498
|
+
borderRadius: string;
|
|
424
499
|
color: string;
|
|
425
500
|
colorHover: string;
|
|
501
|
+
railInsetHorizontalBottom: string;
|
|
502
|
+
railInsetHorizontalTop: string;
|
|
503
|
+
railInsetVerticalRight: string;
|
|
504
|
+
railInsetVerticalLeft: string;
|
|
505
|
+
railColor: string;
|
|
426
506
|
}, any>;
|
|
427
507
|
Code: import("../../_mixins").Theme<"Code", {
|
|
428
508
|
textColor: string;
|
|
@@ -15,8 +15,16 @@ declare const logLight: import("../../_mixins").Theme<"Log", {
|
|
|
15
15
|
loadingColor: string;
|
|
16
16
|
}, {
|
|
17
17
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
18
|
+
height: string;
|
|
19
|
+
width: string;
|
|
20
|
+
borderRadius: string;
|
|
18
21
|
color: string;
|
|
19
22
|
colorHover: string;
|
|
23
|
+
railInsetHorizontalBottom: string;
|
|
24
|
+
railInsetHorizontalTop: string;
|
|
25
|
+
railInsetVerticalRight: string;
|
|
26
|
+
railInsetVerticalLeft: string;
|
|
27
|
+
railColor: string;
|
|
20
28
|
}, any>;
|
|
21
29
|
Code: import("../../_mixins").Theme<"Code", {
|
|
22
30
|
textColor: string;
|
|
@@ -101,8 +101,16 @@ export declare const mentionProps: {
|
|
|
101
101
|
loadingColor: string;
|
|
102
102
|
}, {
|
|
103
103
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
104
|
+
height: string;
|
|
105
|
+
width: string;
|
|
106
|
+
borderRadius: string;
|
|
104
107
|
color: string;
|
|
105
108
|
colorHover: string;
|
|
109
|
+
railInsetHorizontalBottom: string;
|
|
110
|
+
railInsetHorizontalTop: string;
|
|
111
|
+
railInsetVerticalRight: string;
|
|
112
|
+
railInsetVerticalLeft: string;
|
|
113
|
+
railColor: string;
|
|
106
114
|
}, any>;
|
|
107
115
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
108
116
|
iconSizeSmall: string;
|
|
@@ -226,8 +234,16 @@ export declare const mentionProps: {
|
|
|
226
234
|
loadingColor: string;
|
|
227
235
|
}, {
|
|
228
236
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
237
|
+
height: string;
|
|
238
|
+
width: string;
|
|
239
|
+
borderRadius: string;
|
|
229
240
|
color: string;
|
|
230
241
|
colorHover: string;
|
|
242
|
+
railInsetHorizontalBottom: string;
|
|
243
|
+
railInsetHorizontalTop: string;
|
|
244
|
+
railInsetVerticalRight: string;
|
|
245
|
+
railInsetVerticalLeft: string;
|
|
246
|
+
railColor: string;
|
|
231
247
|
}, any>;
|
|
232
248
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
233
249
|
iconSizeSmall: string;
|
|
@@ -351,8 +367,16 @@ export declare const mentionProps: {
|
|
|
351
367
|
loadingColor: string;
|
|
352
368
|
}, {
|
|
353
369
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
370
|
+
height: string;
|
|
371
|
+
width: string;
|
|
372
|
+
borderRadius: string;
|
|
354
373
|
color: string;
|
|
355
374
|
colorHover: string;
|
|
375
|
+
railInsetHorizontalBottom: string;
|
|
376
|
+
railInsetHorizontalTop: string;
|
|
377
|
+
railInsetVerticalRight: string;
|
|
378
|
+
railInsetVerticalLeft: string;
|
|
379
|
+
railColor: string;
|
|
356
380
|
}, any>;
|
|
357
381
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
358
382
|
iconSizeSmall: string;
|
|
@@ -535,8 +559,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
535
559
|
loadingColor: string;
|
|
536
560
|
}, {
|
|
537
561
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
562
|
+
height: string;
|
|
563
|
+
width: string;
|
|
564
|
+
borderRadius: string;
|
|
538
565
|
color: string;
|
|
539
566
|
colorHover: string;
|
|
567
|
+
railInsetHorizontalBottom: string;
|
|
568
|
+
railInsetHorizontalTop: string;
|
|
569
|
+
railInsetVerticalRight: string;
|
|
570
|
+
railInsetVerticalLeft: string;
|
|
571
|
+
railColor: string;
|
|
540
572
|
}, any>;
|
|
541
573
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
542
574
|
iconSizeSmall: string;
|
|
@@ -660,8 +692,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
660
692
|
loadingColor: string;
|
|
661
693
|
}, {
|
|
662
694
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
695
|
+
height: string;
|
|
696
|
+
width: string;
|
|
697
|
+
borderRadius: string;
|
|
663
698
|
color: string;
|
|
664
699
|
colorHover: string;
|
|
700
|
+
railInsetHorizontalBottom: string;
|
|
701
|
+
railInsetHorizontalTop: string;
|
|
702
|
+
railInsetVerticalRight: string;
|
|
703
|
+
railInsetVerticalLeft: string;
|
|
704
|
+
railColor: string;
|
|
665
705
|
}, any>;
|
|
666
706
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
667
707
|
iconSizeSmall: string;
|
|
@@ -785,8 +825,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
785
825
|
loadingColor: string;
|
|
786
826
|
}, {
|
|
787
827
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
828
|
+
height: string;
|
|
829
|
+
width: string;
|
|
830
|
+
borderRadius: string;
|
|
788
831
|
color: string;
|
|
789
832
|
colorHover: string;
|
|
833
|
+
railInsetHorizontalBottom: string;
|
|
834
|
+
railInsetHorizontalTop: string;
|
|
835
|
+
railInsetVerticalRight: string;
|
|
836
|
+
railInsetVerticalLeft: string;
|
|
837
|
+
railColor: string;
|
|
790
838
|
}, any>;
|
|
791
839
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
792
840
|
iconSizeSmall: string;
|
|
@@ -919,8 +967,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
919
967
|
loadingColor: string;
|
|
920
968
|
}, {
|
|
921
969
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
970
|
+
height: string;
|
|
971
|
+
width: string;
|
|
972
|
+
borderRadius: string;
|
|
922
973
|
color: string;
|
|
923
974
|
colorHover: string;
|
|
975
|
+
railInsetHorizontalBottom: string;
|
|
976
|
+
railInsetHorizontalTop: string;
|
|
977
|
+
railInsetVerticalRight: string;
|
|
978
|
+
railInsetVerticalLeft: string;
|
|
979
|
+
railColor: string;
|
|
924
980
|
}, any>;
|
|
925
981
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
926
982
|
iconSizeSmall: string;
|
|
@@ -1011,8 +1067,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1011
1067
|
InternalSelectMenu?: {
|
|
1012
1068
|
peers?: {
|
|
1013
1069
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
1070
|
+
height: string;
|
|
1071
|
+
width: string;
|
|
1072
|
+
borderRadius: string;
|
|
1014
1073
|
color: string;
|
|
1015
1074
|
colorHover: string;
|
|
1075
|
+
railInsetHorizontalBottom: string;
|
|
1076
|
+
railInsetHorizontalTop: string;
|
|
1077
|
+
railInsetVerticalRight: string;
|
|
1078
|
+
railInsetVerticalLeft: string;
|
|
1079
|
+
railColor: string;
|
|
1016
1080
|
}, any>> | undefined;
|
|
1017
1081
|
Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
|
|
1018
1082
|
iconSizeSmall: string;
|
|
@@ -1176,8 +1240,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1176
1240
|
loadingColor: string;
|
|
1177
1241
|
}, {
|
|
1178
1242
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1243
|
+
height: string;
|
|
1244
|
+
width: string;
|
|
1245
|
+
borderRadius: string;
|
|
1179
1246
|
color: string;
|
|
1180
1247
|
colorHover: string;
|
|
1248
|
+
railInsetHorizontalBottom: string;
|
|
1249
|
+
railInsetHorizontalTop: string;
|
|
1250
|
+
railInsetVerticalRight: string;
|
|
1251
|
+
railInsetVerticalLeft: string;
|
|
1252
|
+
railColor: string;
|
|
1181
1253
|
}, any>;
|
|
1182
1254
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1183
1255
|
iconSizeSmall: string;
|
|
@@ -1301,8 +1373,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1301
1373
|
loadingColor: string;
|
|
1302
1374
|
}, {
|
|
1303
1375
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1376
|
+
height: string;
|
|
1377
|
+
width: string;
|
|
1378
|
+
borderRadius: string;
|
|
1304
1379
|
color: string;
|
|
1305
1380
|
colorHover: string;
|
|
1381
|
+
railInsetHorizontalBottom: string;
|
|
1382
|
+
railInsetHorizontalTop: string;
|
|
1383
|
+
railInsetVerticalRight: string;
|
|
1384
|
+
railInsetVerticalLeft: string;
|
|
1385
|
+
railColor: string;
|
|
1306
1386
|
}, any>;
|
|
1307
1387
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1308
1388
|
iconSizeSmall: string;
|
|
@@ -1426,8 +1506,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1426
1506
|
loadingColor: string;
|
|
1427
1507
|
}, {
|
|
1428
1508
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1509
|
+
height: string;
|
|
1510
|
+
width: string;
|
|
1511
|
+
borderRadius: string;
|
|
1429
1512
|
color: string;
|
|
1430
1513
|
colorHover: string;
|
|
1514
|
+
railInsetHorizontalBottom: string;
|
|
1515
|
+
railInsetHorizontalTop: string;
|
|
1516
|
+
railInsetVerticalRight: string;
|
|
1517
|
+
railInsetVerticalLeft: string;
|
|
1518
|
+
railColor: string;
|
|
1431
1519
|
}, any>;
|
|
1432
1520
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1433
1521
|
iconSizeSmall: string;
|
|
@@ -39,8 +39,16 @@ declare const mentionLight: import("../../_mixins").Theme<"Mention", {
|
|
|
39
39
|
loadingColor: string;
|
|
40
40
|
}, {
|
|
41
41
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
42
|
+
height: string;
|
|
43
|
+
width: string;
|
|
44
|
+
borderRadius: string;
|
|
42
45
|
color: string;
|
|
43
46
|
colorHover: string;
|
|
47
|
+
railInsetHorizontalBottom: string;
|
|
48
|
+
railInsetHorizontalTop: string;
|
|
49
|
+
railInsetVerticalRight: string;
|
|
50
|
+
railInsetVerticalLeft: string;
|
|
51
|
+
railColor: string;
|
|
44
52
|
}, any>;
|
|
45
53
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
46
54
|
iconSizeSmall: string;
|
package/lib/menu/src/Menu.d.ts
CHANGED
|
@@ -2174,13 +2174,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2174
2174
|
readonly iconSize: number;
|
|
2175
2175
|
readonly show: boolean;
|
|
2176
2176
|
readonly labelField: string;
|
|
2177
|
-
readonly keyField: string;
|
|
2178
2177
|
readonly defaultValue: Key | null;
|
|
2179
2178
|
readonly options: MenuMixedOption[];
|
|
2180
2179
|
readonly childrenField: string;
|
|
2181
2180
|
readonly defaultExpandAll: boolean;
|
|
2182
2181
|
readonly indent: number;
|
|
2183
2182
|
readonly inverted: boolean;
|
|
2183
|
+
readonly keyField: string;
|
|
2184
2184
|
readonly collapsed: boolean | undefined;
|
|
2185
2185
|
readonly disabledField: string;
|
|
2186
2186
|
readonly accordion: boolean;
|
|
@@ -84,8 +84,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
84
84
|
};
|
|
85
85
|
peers: {
|
|
86
86
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
87
|
+
height: string;
|
|
88
|
+
width: string;
|
|
89
|
+
borderRadius: string;
|
|
87
90
|
color: string;
|
|
88
91
|
colorHover: string;
|
|
92
|
+
railInsetHorizontalBottom: string;
|
|
93
|
+
railInsetHorizontalTop: string;
|
|
94
|
+
railInsetVerticalRight: string;
|
|
95
|
+
railInsetVerticalLeft: string;
|
|
96
|
+
railColor: string;
|
|
89
97
|
}, any>;
|
|
90
98
|
Dialog: import("../../_mixins").Theme<"Dialog", {
|
|
91
99
|
border: string;
|
|
@@ -142,16 +150,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
142
150
|
colorSecondary: string;
|
|
143
151
|
colorSecondaryHover: string;
|
|
144
152
|
colorSecondaryPressed: string;
|
|
153
|
+
colorSecondaryFocus: string;
|
|
154
|
+
colorSecondaryDisabled: string;
|
|
155
|
+
textColorSecondaryDisabled: string;
|
|
145
156
|
waveColorSecondary: string;
|
|
146
157
|
colorTertiary: string;
|
|
147
158
|
colorTertiaryHover: string;
|
|
148
159
|
colorTertiaryPressed: string;
|
|
160
|
+
colorTertiaryFocus: string;
|
|
149
161
|
colorTertiaryDisalbed: string;
|
|
150
162
|
waveColorTertiary: string;
|
|
151
163
|
textColorTextTertiary: string;
|
|
164
|
+
rippleColorTertiary: string;
|
|
152
165
|
colorQuaternary: string;
|
|
153
166
|
colorQuaternaryHover: string;
|
|
154
167
|
colorQuaternaryPressed: string;
|
|
168
|
+
colorQuaternaryFocus: string;
|
|
169
|
+
rippleColorQuaternary: string;
|
|
170
|
+
waveColorQuaternary: string;
|
|
155
171
|
color: string;
|
|
156
172
|
colorHover: string;
|
|
157
173
|
colorPressed: string;
|
|
@@ -404,16 +420,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
404
420
|
colorSecondary: string;
|
|
405
421
|
colorSecondaryHover: string;
|
|
406
422
|
colorSecondaryPressed: string;
|
|
423
|
+
colorSecondaryFocus: string;
|
|
424
|
+
colorSecondaryDisabled: string;
|
|
425
|
+
textColorSecondaryDisabled: string;
|
|
407
426
|
waveColorSecondary: string;
|
|
408
427
|
colorTertiary: string;
|
|
409
428
|
colorTertiaryHover: string;
|
|
410
429
|
colorTertiaryPressed: string;
|
|
430
|
+
colorTertiaryFocus: string;
|
|
411
431
|
colorTertiaryDisalbed: string;
|
|
412
432
|
waveColorTertiary: string;
|
|
413
433
|
textColorTextTertiary: string;
|
|
434
|
+
rippleColorTertiary: string;
|
|
414
435
|
colorQuaternary: string;
|
|
415
436
|
colorQuaternaryHover: string;
|
|
416
437
|
colorQuaternaryPressed: string;
|
|
438
|
+
colorQuaternaryFocus: string;
|
|
439
|
+
rippleColorQuaternary: string;
|
|
440
|
+
waveColorQuaternary: string;
|
|
417
441
|
color: string;
|
|
418
442
|
colorHover: string;
|
|
419
443
|
colorPressed: string;
|
|
@@ -707,9 +731,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
707
731
|
showIcon: boolean;
|
|
708
732
|
size: "small" | "medium" | "large";
|
|
709
733
|
closable: boolean;
|
|
710
|
-
autoFocus: boolean;
|
|
711
734
|
presetDisabled: boolean;
|
|
712
735
|
trapFocus: boolean;
|
|
736
|
+
autoFocus: boolean;
|
|
713
737
|
blockScroll: boolean;
|
|
714
738
|
}, {}>;
|
|
715
739
|
export default _default;
|