@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
|
@@ -152,16 +152,24 @@ export declare const colorPickerProps: {
|
|
|
152
152
|
colorSecondary: string;
|
|
153
153
|
colorSecondaryHover: string;
|
|
154
154
|
colorSecondaryPressed: string;
|
|
155
|
+
colorSecondaryFocus: string;
|
|
156
|
+
colorSecondaryDisabled: string;
|
|
157
|
+
textColorSecondaryDisabled: string;
|
|
155
158
|
waveColorSecondary: string;
|
|
156
159
|
colorTertiary: string;
|
|
157
160
|
colorTertiaryHover: string;
|
|
158
161
|
colorTertiaryPressed: string;
|
|
162
|
+
colorTertiaryFocus: string;
|
|
159
163
|
colorTertiaryDisalbed: string;
|
|
160
164
|
waveColorTertiary: string;
|
|
161
165
|
textColorTextTertiary: string;
|
|
166
|
+
rippleColorTertiary: string;
|
|
162
167
|
colorQuaternary: string;
|
|
163
168
|
colorQuaternaryHover: string;
|
|
164
169
|
colorQuaternaryPressed: string;
|
|
170
|
+
colorQuaternaryFocus: string;
|
|
171
|
+
rippleColorQuaternary: string;
|
|
172
|
+
waveColorQuaternary: string;
|
|
165
173
|
color: string;
|
|
166
174
|
colorHover: string;
|
|
167
175
|
colorPressed: string;
|
|
@@ -448,16 +456,24 @@ export declare const colorPickerProps: {
|
|
|
448
456
|
colorSecondary: string;
|
|
449
457
|
colorSecondaryHover: string;
|
|
450
458
|
colorSecondaryPressed: string;
|
|
459
|
+
colorSecondaryFocus: string;
|
|
460
|
+
colorSecondaryDisabled: string;
|
|
461
|
+
textColorSecondaryDisabled: string;
|
|
451
462
|
waveColorSecondary: string;
|
|
452
463
|
colorTertiary: string;
|
|
453
464
|
colorTertiaryHover: string;
|
|
454
465
|
colorTertiaryPressed: string;
|
|
466
|
+
colorTertiaryFocus: string;
|
|
455
467
|
colorTertiaryDisalbed: string;
|
|
456
468
|
waveColorTertiary: string;
|
|
457
469
|
textColorTextTertiary: string;
|
|
470
|
+
rippleColorTertiary: string;
|
|
458
471
|
colorQuaternary: string;
|
|
459
472
|
colorQuaternaryHover: string;
|
|
460
473
|
colorQuaternaryPressed: string;
|
|
474
|
+
colorQuaternaryFocus: string;
|
|
475
|
+
rippleColorQuaternary: string;
|
|
476
|
+
waveColorQuaternary: string;
|
|
461
477
|
color: string;
|
|
462
478
|
colorHover: string;
|
|
463
479
|
colorPressed: string;
|
|
@@ -744,16 +760,24 @@ export declare const colorPickerProps: {
|
|
|
744
760
|
colorSecondary: string;
|
|
745
761
|
colorSecondaryHover: string;
|
|
746
762
|
colorSecondaryPressed: string;
|
|
763
|
+
colorSecondaryFocus: string;
|
|
764
|
+
colorSecondaryDisabled: string;
|
|
765
|
+
textColorSecondaryDisabled: string;
|
|
747
766
|
waveColorSecondary: string;
|
|
748
767
|
colorTertiary: string;
|
|
749
768
|
colorTertiaryHover: string;
|
|
750
769
|
colorTertiaryPressed: string;
|
|
770
|
+
colorTertiaryFocus: string;
|
|
751
771
|
colorTertiaryDisalbed: string;
|
|
752
772
|
waveColorTertiary: string;
|
|
753
773
|
textColorTextTertiary: string;
|
|
774
|
+
rippleColorTertiary: string;
|
|
754
775
|
colorQuaternary: string;
|
|
755
776
|
colorQuaternaryHover: string;
|
|
756
777
|
colorQuaternaryPressed: string;
|
|
778
|
+
colorQuaternaryFocus: string;
|
|
779
|
+
rippleColorQuaternary: string;
|
|
780
|
+
waveColorQuaternary: string;
|
|
757
781
|
color: string;
|
|
758
782
|
colorHover: string;
|
|
759
783
|
colorPressed: string;
|
|
@@ -1085,16 +1109,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1085
1109
|
colorSecondary: string;
|
|
1086
1110
|
colorSecondaryHover: string;
|
|
1087
1111
|
colorSecondaryPressed: string;
|
|
1112
|
+
colorSecondaryFocus: string;
|
|
1113
|
+
colorSecondaryDisabled: string;
|
|
1114
|
+
textColorSecondaryDisabled: string;
|
|
1088
1115
|
waveColorSecondary: string;
|
|
1089
1116
|
colorTertiary: string;
|
|
1090
1117
|
colorTertiaryHover: string;
|
|
1091
1118
|
colorTertiaryPressed: string;
|
|
1119
|
+
colorTertiaryFocus: string;
|
|
1092
1120
|
colorTertiaryDisalbed: string;
|
|
1093
1121
|
waveColorTertiary: string;
|
|
1094
1122
|
textColorTextTertiary: string;
|
|
1123
|
+
rippleColorTertiary: string;
|
|
1095
1124
|
colorQuaternary: string;
|
|
1096
1125
|
colorQuaternaryHover: string;
|
|
1097
1126
|
colorQuaternaryPressed: string;
|
|
1127
|
+
colorQuaternaryFocus: string;
|
|
1128
|
+
rippleColorQuaternary: string;
|
|
1129
|
+
waveColorQuaternary: string;
|
|
1098
1130
|
color: string;
|
|
1099
1131
|
colorHover: string;
|
|
1100
1132
|
colorPressed: string;
|
|
@@ -1381,16 +1413,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1381
1413
|
colorSecondary: string;
|
|
1382
1414
|
colorSecondaryHover: string;
|
|
1383
1415
|
colorSecondaryPressed: string;
|
|
1416
|
+
colorSecondaryFocus: string;
|
|
1417
|
+
colorSecondaryDisabled: string;
|
|
1418
|
+
textColorSecondaryDisabled: string;
|
|
1384
1419
|
waveColorSecondary: string;
|
|
1385
1420
|
colorTertiary: string;
|
|
1386
1421
|
colorTertiaryHover: string;
|
|
1387
1422
|
colorTertiaryPressed: string;
|
|
1423
|
+
colorTertiaryFocus: string;
|
|
1388
1424
|
colorTertiaryDisalbed: string;
|
|
1389
1425
|
waveColorTertiary: string;
|
|
1390
1426
|
textColorTextTertiary: string;
|
|
1427
|
+
rippleColorTertiary: string;
|
|
1391
1428
|
colorQuaternary: string;
|
|
1392
1429
|
colorQuaternaryHover: string;
|
|
1393
1430
|
colorQuaternaryPressed: string;
|
|
1431
|
+
colorQuaternaryFocus: string;
|
|
1432
|
+
rippleColorQuaternary: string;
|
|
1433
|
+
waveColorQuaternary: string;
|
|
1394
1434
|
color: string;
|
|
1395
1435
|
colorHover: string;
|
|
1396
1436
|
colorPressed: string;
|
|
@@ -1677,16 +1717,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1677
1717
|
colorSecondary: string;
|
|
1678
1718
|
colorSecondaryHover: string;
|
|
1679
1719
|
colorSecondaryPressed: string;
|
|
1720
|
+
colorSecondaryFocus: string;
|
|
1721
|
+
colorSecondaryDisabled: string;
|
|
1722
|
+
textColorSecondaryDisabled: string;
|
|
1680
1723
|
waveColorSecondary: string;
|
|
1681
1724
|
colorTertiary: string;
|
|
1682
1725
|
colorTertiaryHover: string;
|
|
1683
1726
|
colorTertiaryPressed: string;
|
|
1727
|
+
colorTertiaryFocus: string;
|
|
1684
1728
|
colorTertiaryDisalbed: string;
|
|
1685
1729
|
waveColorTertiary: string;
|
|
1686
1730
|
textColorTextTertiary: string;
|
|
1731
|
+
rippleColorTertiary: string;
|
|
1687
1732
|
colorQuaternary: string;
|
|
1688
1733
|
colorQuaternaryHover: string;
|
|
1689
1734
|
colorQuaternaryPressed: string;
|
|
1735
|
+
colorQuaternaryFocus: string;
|
|
1736
|
+
rippleColorQuaternary: string;
|
|
1737
|
+
waveColorQuaternary: string;
|
|
1690
1738
|
color: string;
|
|
1691
1739
|
colorHover: string;
|
|
1692
1740
|
colorPressed: string;
|
|
@@ -2047,16 +2095,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2047
2095
|
colorSecondary: string;
|
|
2048
2096
|
colorSecondaryHover: string;
|
|
2049
2097
|
colorSecondaryPressed: string;
|
|
2098
|
+
colorSecondaryFocus: string;
|
|
2099
|
+
colorSecondaryDisabled: string;
|
|
2100
|
+
textColorSecondaryDisabled: string;
|
|
2050
2101
|
waveColorSecondary: string;
|
|
2051
2102
|
colorTertiary: string;
|
|
2052
2103
|
colorTertiaryHover: string;
|
|
2053
2104
|
colorTertiaryPressed: string;
|
|
2105
|
+
colorTertiaryFocus: string;
|
|
2054
2106
|
colorTertiaryDisalbed: string;
|
|
2055
2107
|
waveColorTertiary: string;
|
|
2056
2108
|
textColorTextTertiary: string;
|
|
2109
|
+
rippleColorTertiary: string;
|
|
2057
2110
|
colorQuaternary: string;
|
|
2058
2111
|
colorQuaternaryHover: string;
|
|
2059
2112
|
colorQuaternaryPressed: string;
|
|
2113
|
+
colorQuaternaryFocus: string;
|
|
2114
|
+
rippleColorQuaternary: string;
|
|
2115
|
+
waveColorQuaternary: string;
|
|
2060
2116
|
color: string;
|
|
2061
2117
|
colorHover: string;
|
|
2062
2118
|
colorPressed: string;
|
|
@@ -2343,16 +2399,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2343
2399
|
colorSecondary: string;
|
|
2344
2400
|
colorSecondaryHover: string;
|
|
2345
2401
|
colorSecondaryPressed: string;
|
|
2402
|
+
colorSecondaryFocus: string;
|
|
2403
|
+
colorSecondaryDisabled: string;
|
|
2404
|
+
textColorSecondaryDisabled: string;
|
|
2346
2405
|
waveColorSecondary: string;
|
|
2347
2406
|
colorTertiary: string;
|
|
2348
2407
|
colorTertiaryHover: string;
|
|
2349
2408
|
colorTertiaryPressed: string;
|
|
2409
|
+
colorTertiaryFocus: string;
|
|
2350
2410
|
colorTertiaryDisalbed: string;
|
|
2351
2411
|
waveColorTertiary: string;
|
|
2352
2412
|
textColorTextTertiary: string;
|
|
2413
|
+
rippleColorTertiary: string;
|
|
2353
2414
|
colorQuaternary: string;
|
|
2354
2415
|
colorQuaternaryHover: string;
|
|
2355
2416
|
colorQuaternaryPressed: string;
|
|
2417
|
+
colorQuaternaryFocus: string;
|
|
2418
|
+
rippleColorQuaternary: string;
|
|
2419
|
+
waveColorQuaternary: string;
|
|
2356
2420
|
color: string;
|
|
2357
2421
|
colorHover: string;
|
|
2358
2422
|
colorPressed: string;
|
|
@@ -2639,16 +2703,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2639
2703
|
colorSecondary: string;
|
|
2640
2704
|
colorSecondaryHover: string;
|
|
2641
2705
|
colorSecondaryPressed: string;
|
|
2706
|
+
colorSecondaryFocus: string;
|
|
2707
|
+
colorSecondaryDisabled: string;
|
|
2708
|
+
textColorSecondaryDisabled: string;
|
|
2642
2709
|
waveColorSecondary: string;
|
|
2643
2710
|
colorTertiary: string;
|
|
2644
2711
|
colorTertiaryHover: string;
|
|
2645
2712
|
colorTertiaryPressed: string;
|
|
2713
|
+
colorTertiaryFocus: string;
|
|
2646
2714
|
colorTertiaryDisalbed: string;
|
|
2647
2715
|
waveColorTertiary: string;
|
|
2648
2716
|
textColorTextTertiary: string;
|
|
2717
|
+
rippleColorTertiary: string;
|
|
2649
2718
|
colorQuaternary: string;
|
|
2650
2719
|
colorQuaternaryHover: string;
|
|
2651
2720
|
colorQuaternaryPressed: string;
|
|
2721
|
+
colorQuaternaryFocus: string;
|
|
2722
|
+
rippleColorQuaternary: string;
|
|
2723
|
+
waveColorQuaternary: string;
|
|
2652
2724
|
color: string;
|
|
2653
2725
|
colorHover: string;
|
|
2654
2726
|
colorPressed: string;
|
|
@@ -125,16 +125,24 @@ declare const colorPickerLight: import("../../_mixins/use-theme").Theme<"ColorPi
|
|
|
125
125
|
colorSecondary: string;
|
|
126
126
|
colorSecondaryHover: string;
|
|
127
127
|
colorSecondaryPressed: string;
|
|
128
|
+
colorSecondaryFocus: string;
|
|
129
|
+
colorSecondaryDisabled: string;
|
|
130
|
+
textColorSecondaryDisabled: string;
|
|
128
131
|
waveColorSecondary: string;
|
|
129
132
|
colorTertiary: string;
|
|
130
133
|
colorTertiaryHover: string;
|
|
131
134
|
colorTertiaryPressed: string;
|
|
135
|
+
colorTertiaryFocus: string;
|
|
132
136
|
colorTertiaryDisalbed: string;
|
|
133
137
|
waveColorTertiary: string;
|
|
134
138
|
textColorTextTertiary: string;
|
|
139
|
+
rippleColorTertiary: string;
|
|
135
140
|
colorQuaternary: string;
|
|
136
141
|
colorQuaternaryHover: string;
|
|
137
142
|
colorQuaternaryPressed: string;
|
|
143
|
+
colorQuaternaryFocus: string;
|
|
144
|
+
rippleColorQuaternary: string;
|
|
145
|
+
waveColorQuaternary: string;
|
|
138
146
|
color: string;
|
|
139
147
|
colorHover: string;
|
|
140
148
|
colorPressed: string;
|
package/es/components.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export * from './grid';
|
|
|
43
43
|
export * from './icon';
|
|
44
44
|
export * from './icon-wrapper';
|
|
45
45
|
export * from './image';
|
|
46
|
+
export * from './infinite-scroll';
|
|
46
47
|
export * from './input';
|
|
47
48
|
export * from './input-number';
|
|
48
49
|
export * from './input-otp';
|
|
@@ -89,6 +90,7 @@ export * from './tree';
|
|
|
89
90
|
export * from './tree-select';
|
|
90
91
|
export * from './typography';
|
|
91
92
|
export * from './upload';
|
|
93
|
+
export * from './virtual-list';
|
|
92
94
|
export * from './watermark';
|
|
93
95
|
export * from './discrete';
|
|
94
96
|
export * from './equation';
|
package/es/components.js
CHANGED
|
@@ -43,6 +43,7 @@ export * from './grid';
|
|
|
43
43
|
export * from './icon';
|
|
44
44
|
export * from './icon-wrapper';
|
|
45
45
|
export * from './image';
|
|
46
|
+
export * from './infinite-scroll';
|
|
46
47
|
export * from './input';
|
|
47
48
|
export * from './input-number';
|
|
48
49
|
export * from './input-otp';
|
|
@@ -89,6 +90,7 @@ export * from './tree';
|
|
|
89
90
|
export * from './tree-select';
|
|
90
91
|
export * from './typography';
|
|
91
92
|
export * from './upload';
|
|
93
|
+
export * from './virtual-list';
|
|
92
94
|
export * from './watermark';
|
|
93
95
|
export * from './discrete';
|
|
94
96
|
export * from './equation';
|