@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
|
@@ -129,16 +129,24 @@ export declare const dynamicInputProps: {
|
|
|
129
129
|
colorSecondary: string;
|
|
130
130
|
colorSecondaryHover: string;
|
|
131
131
|
colorSecondaryPressed: string;
|
|
132
|
+
colorSecondaryFocus: string;
|
|
133
|
+
colorSecondaryDisabled: string;
|
|
134
|
+
textColorSecondaryDisabled: string;
|
|
132
135
|
waveColorSecondary: string;
|
|
133
136
|
colorTertiary: string;
|
|
134
137
|
colorTertiaryHover: string;
|
|
135
138
|
colorTertiaryPressed: string;
|
|
139
|
+
colorTertiaryFocus: string;
|
|
136
140
|
colorTertiaryDisalbed: string;
|
|
137
141
|
waveColorTertiary: string;
|
|
138
142
|
textColorTextTertiary: string;
|
|
143
|
+
rippleColorTertiary: string;
|
|
139
144
|
colorQuaternary: string;
|
|
140
145
|
colorQuaternaryHover: string;
|
|
141
146
|
colorQuaternaryPressed: string;
|
|
147
|
+
colorQuaternaryFocus: string;
|
|
148
|
+
rippleColorQuaternary: string;
|
|
149
|
+
waveColorQuaternary: string;
|
|
142
150
|
color: string;
|
|
143
151
|
colorHover: string;
|
|
144
152
|
colorPressed: string;
|
|
@@ -409,16 +417,24 @@ export declare const dynamicInputProps: {
|
|
|
409
417
|
colorSecondary: string;
|
|
410
418
|
colorSecondaryHover: string;
|
|
411
419
|
colorSecondaryPressed: string;
|
|
420
|
+
colorSecondaryFocus: string;
|
|
421
|
+
colorSecondaryDisabled: string;
|
|
422
|
+
textColorSecondaryDisabled: string;
|
|
412
423
|
waveColorSecondary: string;
|
|
413
424
|
colorTertiary: string;
|
|
414
425
|
colorTertiaryHover: string;
|
|
415
426
|
colorTertiaryPressed: string;
|
|
427
|
+
colorTertiaryFocus: string;
|
|
416
428
|
colorTertiaryDisalbed: string;
|
|
417
429
|
waveColorTertiary: string;
|
|
418
430
|
textColorTextTertiary: string;
|
|
431
|
+
rippleColorTertiary: string;
|
|
419
432
|
colorQuaternary: string;
|
|
420
433
|
colorQuaternaryHover: string;
|
|
421
434
|
colorQuaternaryPressed: string;
|
|
435
|
+
colorQuaternaryFocus: string;
|
|
436
|
+
rippleColorQuaternary: string;
|
|
437
|
+
waveColorQuaternary: string;
|
|
422
438
|
color: string;
|
|
423
439
|
colorHover: string;
|
|
424
440
|
colorPressed: string;
|
|
@@ -689,16 +705,24 @@ export declare const dynamicInputProps: {
|
|
|
689
705
|
colorSecondary: string;
|
|
690
706
|
colorSecondaryHover: string;
|
|
691
707
|
colorSecondaryPressed: string;
|
|
708
|
+
colorSecondaryFocus: string;
|
|
709
|
+
colorSecondaryDisabled: string;
|
|
710
|
+
textColorSecondaryDisabled: string;
|
|
692
711
|
waveColorSecondary: string;
|
|
693
712
|
colorTertiary: string;
|
|
694
713
|
colorTertiaryHover: string;
|
|
695
714
|
colorTertiaryPressed: string;
|
|
715
|
+
colorTertiaryFocus: string;
|
|
696
716
|
colorTertiaryDisalbed: string;
|
|
697
717
|
waveColorTertiary: string;
|
|
698
718
|
textColorTextTertiary: string;
|
|
719
|
+
rippleColorTertiary: string;
|
|
699
720
|
colorQuaternary: string;
|
|
700
721
|
colorQuaternaryHover: string;
|
|
701
722
|
colorQuaternaryPressed: string;
|
|
723
|
+
colorQuaternaryFocus: string;
|
|
724
|
+
rippleColorQuaternary: string;
|
|
725
|
+
waveColorQuaternary: string;
|
|
702
726
|
color: string;
|
|
703
727
|
colorHover: string;
|
|
704
728
|
colorPressed: string;
|
|
@@ -1009,16 +1033,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1009
1033
|
colorSecondary: string;
|
|
1010
1034
|
colorSecondaryHover: string;
|
|
1011
1035
|
colorSecondaryPressed: string;
|
|
1036
|
+
colorSecondaryFocus: string;
|
|
1037
|
+
colorSecondaryDisabled: string;
|
|
1038
|
+
textColorSecondaryDisabled: string;
|
|
1012
1039
|
waveColorSecondary: string;
|
|
1013
1040
|
colorTertiary: string;
|
|
1014
1041
|
colorTertiaryHover: string;
|
|
1015
1042
|
colorTertiaryPressed: string;
|
|
1043
|
+
colorTertiaryFocus: string;
|
|
1016
1044
|
colorTertiaryDisalbed: string;
|
|
1017
1045
|
waveColorTertiary: string;
|
|
1018
1046
|
textColorTextTertiary: string;
|
|
1047
|
+
rippleColorTertiary: string;
|
|
1019
1048
|
colorQuaternary: string;
|
|
1020
1049
|
colorQuaternaryHover: string;
|
|
1021
1050
|
colorQuaternaryPressed: string;
|
|
1051
|
+
colorQuaternaryFocus: string;
|
|
1052
|
+
rippleColorQuaternary: string;
|
|
1053
|
+
waveColorQuaternary: string;
|
|
1022
1054
|
color: string;
|
|
1023
1055
|
colorHover: string;
|
|
1024
1056
|
colorPressed: string;
|
|
@@ -1289,16 +1321,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1289
1321
|
colorSecondary: string;
|
|
1290
1322
|
colorSecondaryHover: string;
|
|
1291
1323
|
colorSecondaryPressed: string;
|
|
1324
|
+
colorSecondaryFocus: string;
|
|
1325
|
+
colorSecondaryDisabled: string;
|
|
1326
|
+
textColorSecondaryDisabled: string;
|
|
1292
1327
|
waveColorSecondary: string;
|
|
1293
1328
|
colorTertiary: string;
|
|
1294
1329
|
colorTertiaryHover: string;
|
|
1295
1330
|
colorTertiaryPressed: string;
|
|
1331
|
+
colorTertiaryFocus: string;
|
|
1296
1332
|
colorTertiaryDisalbed: string;
|
|
1297
1333
|
waveColorTertiary: string;
|
|
1298
1334
|
textColorTextTertiary: string;
|
|
1335
|
+
rippleColorTertiary: string;
|
|
1299
1336
|
colorQuaternary: string;
|
|
1300
1337
|
colorQuaternaryHover: string;
|
|
1301
1338
|
colorQuaternaryPressed: string;
|
|
1339
|
+
colorQuaternaryFocus: string;
|
|
1340
|
+
rippleColorQuaternary: string;
|
|
1341
|
+
waveColorQuaternary: string;
|
|
1302
1342
|
color: string;
|
|
1303
1343
|
colorHover: string;
|
|
1304
1344
|
colorPressed: string;
|
|
@@ -1569,16 +1609,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1569
1609
|
colorSecondary: string;
|
|
1570
1610
|
colorSecondaryHover: string;
|
|
1571
1611
|
colorSecondaryPressed: string;
|
|
1612
|
+
colorSecondaryFocus: string;
|
|
1613
|
+
colorSecondaryDisabled: string;
|
|
1614
|
+
textColorSecondaryDisabled: string;
|
|
1572
1615
|
waveColorSecondary: string;
|
|
1573
1616
|
colorTertiary: string;
|
|
1574
1617
|
colorTertiaryHover: string;
|
|
1575
1618
|
colorTertiaryPressed: string;
|
|
1619
|
+
colorTertiaryFocus: string;
|
|
1576
1620
|
colorTertiaryDisalbed: string;
|
|
1577
1621
|
waveColorTertiary: string;
|
|
1578
1622
|
textColorTextTertiary: string;
|
|
1623
|
+
rippleColorTertiary: string;
|
|
1579
1624
|
colorQuaternary: string;
|
|
1580
1625
|
colorQuaternaryHover: string;
|
|
1581
1626
|
colorQuaternaryPressed: string;
|
|
1627
|
+
colorQuaternaryFocus: string;
|
|
1628
|
+
rippleColorQuaternary: string;
|
|
1629
|
+
waveColorQuaternary: string;
|
|
1582
1630
|
color: string;
|
|
1583
1631
|
colorHover: string;
|
|
1584
1632
|
colorPressed: string;
|
|
@@ -1870,16 +1918,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1870
1918
|
colorSecondary: string;
|
|
1871
1919
|
colorSecondaryHover: string;
|
|
1872
1920
|
colorSecondaryPressed: string;
|
|
1921
|
+
colorSecondaryFocus: string;
|
|
1922
|
+
colorSecondaryDisabled: string;
|
|
1923
|
+
textColorSecondaryDisabled: string;
|
|
1873
1924
|
waveColorSecondary: string;
|
|
1874
1925
|
colorTertiary: string;
|
|
1875
1926
|
colorTertiaryHover: string;
|
|
1876
1927
|
colorTertiaryPressed: string;
|
|
1928
|
+
colorTertiaryFocus: string;
|
|
1877
1929
|
colorTertiaryDisalbed: string;
|
|
1878
1930
|
waveColorTertiary: string;
|
|
1879
1931
|
textColorTextTertiary: string;
|
|
1932
|
+
rippleColorTertiary: string;
|
|
1880
1933
|
colorQuaternary: string;
|
|
1881
1934
|
colorQuaternaryHover: string;
|
|
1882
1935
|
colorQuaternaryPressed: string;
|
|
1936
|
+
colorQuaternaryFocus: string;
|
|
1937
|
+
rippleColorQuaternary: string;
|
|
1938
|
+
waveColorQuaternary: string;
|
|
1883
1939
|
color: string;
|
|
1884
1940
|
colorHover: string;
|
|
1885
1941
|
colorPressed: string;
|
|
@@ -2207,16 +2263,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2207
2263
|
colorSecondary: string;
|
|
2208
2264
|
colorSecondaryHover: string;
|
|
2209
2265
|
colorSecondaryPressed: string;
|
|
2266
|
+
colorSecondaryFocus: string;
|
|
2267
|
+
colorSecondaryDisabled: string;
|
|
2268
|
+
textColorSecondaryDisabled: string;
|
|
2210
2269
|
waveColorSecondary: string;
|
|
2211
2270
|
colorTertiary: string;
|
|
2212
2271
|
colorTertiaryHover: string;
|
|
2213
2272
|
colorTertiaryPressed: string;
|
|
2273
|
+
colorTertiaryFocus: string;
|
|
2214
2274
|
colorTertiaryDisalbed: string;
|
|
2215
2275
|
waveColorTertiary: string;
|
|
2216
2276
|
textColorTextTertiary: string;
|
|
2277
|
+
rippleColorTertiary: string;
|
|
2217
2278
|
colorQuaternary: string;
|
|
2218
2279
|
colorQuaternaryHover: string;
|
|
2219
2280
|
colorQuaternaryPressed: string;
|
|
2281
|
+
colorQuaternaryFocus: string;
|
|
2282
|
+
rippleColorQuaternary: string;
|
|
2283
|
+
waveColorQuaternary: string;
|
|
2220
2284
|
color: string;
|
|
2221
2285
|
colorHover: string;
|
|
2222
2286
|
colorPressed: string;
|
|
@@ -2487,16 +2551,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2487
2551
|
colorSecondary: string;
|
|
2488
2552
|
colorSecondaryHover: string;
|
|
2489
2553
|
colorSecondaryPressed: string;
|
|
2554
|
+
colorSecondaryFocus: string;
|
|
2555
|
+
colorSecondaryDisabled: string;
|
|
2556
|
+
textColorSecondaryDisabled: string;
|
|
2490
2557
|
waveColorSecondary: string;
|
|
2491
2558
|
colorTertiary: string;
|
|
2492
2559
|
colorTertiaryHover: string;
|
|
2493
2560
|
colorTertiaryPressed: string;
|
|
2561
|
+
colorTertiaryFocus: string;
|
|
2494
2562
|
colorTertiaryDisalbed: string;
|
|
2495
2563
|
waveColorTertiary: string;
|
|
2496
2564
|
textColorTextTertiary: string;
|
|
2565
|
+
rippleColorTertiary: string;
|
|
2497
2566
|
colorQuaternary: string;
|
|
2498
2567
|
colorQuaternaryHover: string;
|
|
2499
2568
|
colorQuaternaryPressed: string;
|
|
2569
|
+
colorQuaternaryFocus: string;
|
|
2570
|
+
rippleColorQuaternary: string;
|
|
2571
|
+
waveColorQuaternary: string;
|
|
2500
2572
|
color: string;
|
|
2501
2573
|
colorHover: string;
|
|
2502
2574
|
colorPressed: string;
|
|
@@ -2767,16 +2839,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2767
2839
|
colorSecondary: string;
|
|
2768
2840
|
colorSecondaryHover: string;
|
|
2769
2841
|
colorSecondaryPressed: string;
|
|
2842
|
+
colorSecondaryFocus: string;
|
|
2843
|
+
colorSecondaryDisabled: string;
|
|
2844
|
+
textColorSecondaryDisabled: string;
|
|
2770
2845
|
waveColorSecondary: string;
|
|
2771
2846
|
colorTertiary: string;
|
|
2772
2847
|
colorTertiaryHover: string;
|
|
2773
2848
|
colorTertiaryPressed: string;
|
|
2849
|
+
colorTertiaryFocus: string;
|
|
2774
2850
|
colorTertiaryDisalbed: string;
|
|
2775
2851
|
waveColorTertiary: string;
|
|
2776
2852
|
textColorTextTertiary: string;
|
|
2853
|
+
rippleColorTertiary: string;
|
|
2777
2854
|
colorQuaternary: string;
|
|
2778
2855
|
colorQuaternaryHover: string;
|
|
2779
2856
|
colorQuaternaryPressed: string;
|
|
2857
|
+
colorQuaternaryFocus: string;
|
|
2858
|
+
rippleColorQuaternary: string;
|
|
2859
|
+
waveColorQuaternary: string;
|
|
2780
2860
|
color: string;
|
|
2781
2861
|
colorHover: string;
|
|
2782
2862
|
colorPressed: string;
|
|
@@ -108,16 +108,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
108
108
|
colorSecondary: string;
|
|
109
109
|
colorSecondaryHover: string;
|
|
110
110
|
colorSecondaryPressed: string;
|
|
111
|
+
colorSecondaryFocus: string;
|
|
112
|
+
colorSecondaryDisabled: string;
|
|
113
|
+
textColorSecondaryDisabled: string;
|
|
111
114
|
waveColorSecondary: string;
|
|
112
115
|
colorTertiary: string;
|
|
113
116
|
colorTertiaryHover: string;
|
|
114
117
|
colorTertiaryPressed: string;
|
|
118
|
+
colorTertiaryFocus: string;
|
|
115
119
|
colorTertiaryDisalbed: string;
|
|
116
120
|
waveColorTertiary: string;
|
|
117
121
|
textColorTextTertiary: string;
|
|
122
|
+
rippleColorTertiary: string;
|
|
118
123
|
colorQuaternary: string;
|
|
119
124
|
colorQuaternaryHover: string;
|
|
120
125
|
colorQuaternaryPressed: string;
|
|
126
|
+
colorQuaternaryFocus: string;
|
|
127
|
+
rippleColorQuaternary: string;
|
|
128
|
+
waveColorQuaternary: string;
|
|
121
129
|
color: string;
|
|
122
130
|
colorHover: string;
|
|
123
131
|
colorPressed: string;
|
|
@@ -117,16 +117,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
117
117
|
colorSecondary: string;
|
|
118
118
|
colorSecondaryHover: string;
|
|
119
119
|
colorSecondaryPressed: string;
|
|
120
|
+
colorSecondaryFocus: string;
|
|
121
|
+
colorSecondaryDisabled: string;
|
|
122
|
+
textColorSecondaryDisabled: string;
|
|
120
123
|
waveColorSecondary: string;
|
|
121
124
|
colorTertiary: string;
|
|
122
125
|
colorTertiaryHover: string;
|
|
123
126
|
colorTertiaryPressed: string;
|
|
127
|
+
colorTertiaryFocus: string;
|
|
124
128
|
colorTertiaryDisalbed: string;
|
|
125
129
|
waveColorTertiary: string;
|
|
126
130
|
textColorTextTertiary: string;
|
|
131
|
+
rippleColorTertiary: string;
|
|
127
132
|
colorQuaternary: string;
|
|
128
133
|
colorQuaternaryHover: string;
|
|
129
134
|
colorQuaternaryPressed: string;
|
|
135
|
+
colorQuaternaryFocus: string;
|
|
136
|
+
rippleColorQuaternary: string;
|
|
137
|
+
waveColorQuaternary: string;
|
|
130
138
|
color: string;
|
|
131
139
|
colorHover: string;
|
|
132
140
|
colorPressed: string;
|
|
@@ -92,16 +92,24 @@ declare const dynamicInputLight: import("../../_mixins").Theme<"DynamicInput", {
|
|
|
92
92
|
colorSecondary: string;
|
|
93
93
|
colorSecondaryHover: string;
|
|
94
94
|
colorSecondaryPressed: string;
|
|
95
|
+
colorSecondaryFocus: string;
|
|
96
|
+
colorSecondaryDisabled: string;
|
|
97
|
+
textColorSecondaryDisabled: string;
|
|
95
98
|
waveColorSecondary: string;
|
|
96
99
|
colorTertiary: string;
|
|
97
100
|
colorTertiaryHover: string;
|
|
98
101
|
colorTertiaryPressed: string;
|
|
102
|
+
colorTertiaryFocus: string;
|
|
99
103
|
colorTertiaryDisalbed: string;
|
|
100
104
|
waveColorTertiary: string;
|
|
101
105
|
textColorTextTertiary: string;
|
|
106
|
+
rippleColorTertiary: string;
|
|
102
107
|
colorQuaternary: string;
|
|
103
108
|
colorQuaternaryHover: string;
|
|
104
109
|
colorQuaternaryPressed: string;
|
|
110
|
+
colorQuaternaryFocus: string;
|
|
111
|
+
rippleColorQuaternary: string;
|
|
112
|
+
waveColorQuaternary: string;
|
|
105
113
|
color: string;
|
|
106
114
|
colorHover: string;
|
|
107
115
|
colorPressed: string;
|
|
@@ -126,16 +126,24 @@ export declare const dynamicTagsProps: {
|
|
|
126
126
|
colorSecondary: string;
|
|
127
127
|
colorSecondaryHover: string;
|
|
128
128
|
colorSecondaryPressed: string;
|
|
129
|
+
colorSecondaryFocus: string;
|
|
130
|
+
colorSecondaryDisabled: string;
|
|
131
|
+
textColorSecondaryDisabled: string;
|
|
129
132
|
waveColorSecondary: string;
|
|
130
133
|
colorTertiary: string;
|
|
131
134
|
colorTertiaryHover: string;
|
|
132
135
|
colorTertiaryPressed: string;
|
|
136
|
+
colorTertiaryFocus: string;
|
|
133
137
|
colorTertiaryDisalbed: string;
|
|
134
138
|
waveColorTertiary: string;
|
|
135
139
|
textColorTextTertiary: string;
|
|
140
|
+
rippleColorTertiary: string;
|
|
136
141
|
colorQuaternary: string;
|
|
137
142
|
colorQuaternaryHover: string;
|
|
138
143
|
colorQuaternaryPressed: string;
|
|
144
|
+
colorQuaternaryFocus: string;
|
|
145
|
+
rippleColorQuaternary: string;
|
|
146
|
+
waveColorQuaternary: string;
|
|
139
147
|
color: string;
|
|
140
148
|
colorHover: string;
|
|
141
149
|
colorPressed: string;
|
|
@@ -469,16 +477,24 @@ export declare const dynamicTagsProps: {
|
|
|
469
477
|
colorSecondary: string;
|
|
470
478
|
colorSecondaryHover: string;
|
|
471
479
|
colorSecondaryPressed: string;
|
|
480
|
+
colorSecondaryFocus: string;
|
|
481
|
+
colorSecondaryDisabled: string;
|
|
482
|
+
textColorSecondaryDisabled: string;
|
|
472
483
|
waveColorSecondary: string;
|
|
473
484
|
colorTertiary: string;
|
|
474
485
|
colorTertiaryHover: string;
|
|
475
486
|
colorTertiaryPressed: string;
|
|
487
|
+
colorTertiaryFocus: string;
|
|
476
488
|
colorTertiaryDisalbed: string;
|
|
477
489
|
waveColorTertiary: string;
|
|
478
490
|
textColorTextTertiary: string;
|
|
491
|
+
rippleColorTertiary: string;
|
|
479
492
|
colorQuaternary: string;
|
|
480
493
|
colorQuaternaryHover: string;
|
|
481
494
|
colorQuaternaryPressed: string;
|
|
495
|
+
colorQuaternaryFocus: string;
|
|
496
|
+
rippleColorQuaternary: string;
|
|
497
|
+
waveColorQuaternary: string;
|
|
482
498
|
color: string;
|
|
483
499
|
colorHover: string;
|
|
484
500
|
colorPressed: string;
|
|
@@ -812,16 +828,24 @@ export declare const dynamicTagsProps: {
|
|
|
812
828
|
colorSecondary: string;
|
|
813
829
|
colorSecondaryHover: string;
|
|
814
830
|
colorSecondaryPressed: string;
|
|
831
|
+
colorSecondaryFocus: string;
|
|
832
|
+
colorSecondaryDisabled: string;
|
|
833
|
+
textColorSecondaryDisabled: string;
|
|
815
834
|
waveColorSecondary: string;
|
|
816
835
|
colorTertiary: string;
|
|
817
836
|
colorTertiaryHover: string;
|
|
818
837
|
colorTertiaryPressed: string;
|
|
838
|
+
colorTertiaryFocus: string;
|
|
819
839
|
colorTertiaryDisalbed: string;
|
|
820
840
|
waveColorTertiary: string;
|
|
821
841
|
textColorTextTertiary: string;
|
|
842
|
+
rippleColorTertiary: string;
|
|
822
843
|
colorQuaternary: string;
|
|
823
844
|
colorQuaternaryHover: string;
|
|
824
845
|
colorQuaternaryPressed: string;
|
|
846
|
+
colorQuaternaryFocus: string;
|
|
847
|
+
rippleColorQuaternary: string;
|
|
848
|
+
waveColorQuaternary: string;
|
|
825
849
|
color: string;
|
|
826
850
|
colorHover: string;
|
|
827
851
|
colorPressed: string;
|
|
@@ -1193,16 +1217,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1193
1217
|
colorSecondary: string;
|
|
1194
1218
|
colorSecondaryHover: string;
|
|
1195
1219
|
colorSecondaryPressed: string;
|
|
1220
|
+
colorSecondaryFocus: string;
|
|
1221
|
+
colorSecondaryDisabled: string;
|
|
1222
|
+
textColorSecondaryDisabled: string;
|
|
1196
1223
|
waveColorSecondary: string;
|
|
1197
1224
|
colorTertiary: string;
|
|
1198
1225
|
colorTertiaryHover: string;
|
|
1199
1226
|
colorTertiaryPressed: string;
|
|
1227
|
+
colorTertiaryFocus: string;
|
|
1200
1228
|
colorTertiaryDisalbed: string;
|
|
1201
1229
|
waveColorTertiary: string;
|
|
1202
1230
|
textColorTextTertiary: string;
|
|
1231
|
+
rippleColorTertiary: string;
|
|
1203
1232
|
colorQuaternary: string;
|
|
1204
1233
|
colorQuaternaryHover: string;
|
|
1205
1234
|
colorQuaternaryPressed: string;
|
|
1235
|
+
colorQuaternaryFocus: string;
|
|
1236
|
+
rippleColorQuaternary: string;
|
|
1237
|
+
waveColorQuaternary: string;
|
|
1206
1238
|
color: string;
|
|
1207
1239
|
colorHover: string;
|
|
1208
1240
|
colorPressed: string;
|
|
@@ -1536,16 +1568,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1536
1568
|
colorSecondary: string;
|
|
1537
1569
|
colorSecondaryHover: string;
|
|
1538
1570
|
colorSecondaryPressed: string;
|
|
1571
|
+
colorSecondaryFocus: string;
|
|
1572
|
+
colorSecondaryDisabled: string;
|
|
1573
|
+
textColorSecondaryDisabled: string;
|
|
1539
1574
|
waveColorSecondary: string;
|
|
1540
1575
|
colorTertiary: string;
|
|
1541
1576
|
colorTertiaryHover: string;
|
|
1542
1577
|
colorTertiaryPressed: string;
|
|
1578
|
+
colorTertiaryFocus: string;
|
|
1543
1579
|
colorTertiaryDisalbed: string;
|
|
1544
1580
|
waveColorTertiary: string;
|
|
1545
1581
|
textColorTextTertiary: string;
|
|
1582
|
+
rippleColorTertiary: string;
|
|
1546
1583
|
colorQuaternary: string;
|
|
1547
1584
|
colorQuaternaryHover: string;
|
|
1548
1585
|
colorQuaternaryPressed: string;
|
|
1586
|
+
colorQuaternaryFocus: string;
|
|
1587
|
+
rippleColorQuaternary: string;
|
|
1588
|
+
waveColorQuaternary: string;
|
|
1549
1589
|
color: string;
|
|
1550
1590
|
colorHover: string;
|
|
1551
1591
|
colorPressed: string;
|
|
@@ -1879,16 +1919,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1879
1919
|
colorSecondary: string;
|
|
1880
1920
|
colorSecondaryHover: string;
|
|
1881
1921
|
colorSecondaryPressed: string;
|
|
1922
|
+
colorSecondaryFocus: string;
|
|
1923
|
+
colorSecondaryDisabled: string;
|
|
1924
|
+
textColorSecondaryDisabled: string;
|
|
1882
1925
|
waveColorSecondary: string;
|
|
1883
1926
|
colorTertiary: string;
|
|
1884
1927
|
colorTertiaryHover: string;
|
|
1885
1928
|
colorTertiaryPressed: string;
|
|
1929
|
+
colorTertiaryFocus: string;
|
|
1886
1930
|
colorTertiaryDisalbed: string;
|
|
1887
1931
|
waveColorTertiary: string;
|
|
1888
1932
|
textColorTextTertiary: string;
|
|
1933
|
+
rippleColorTertiary: string;
|
|
1889
1934
|
colorQuaternary: string;
|
|
1890
1935
|
colorQuaternaryHover: string;
|
|
1891
1936
|
colorQuaternaryPressed: string;
|
|
1937
|
+
colorQuaternaryFocus: string;
|
|
1938
|
+
rippleColorQuaternary: string;
|
|
1939
|
+
waveColorQuaternary: string;
|
|
1892
1940
|
color: string;
|
|
1893
1941
|
colorHover: string;
|
|
1894
1942
|
colorPressed: string;
|
|
@@ -2255,16 +2303,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2255
2303
|
colorSecondary: string;
|
|
2256
2304
|
colorSecondaryHover: string;
|
|
2257
2305
|
colorSecondaryPressed: string;
|
|
2306
|
+
colorSecondaryFocus: string;
|
|
2307
|
+
colorSecondaryDisabled: string;
|
|
2308
|
+
textColorSecondaryDisabled: string;
|
|
2258
2309
|
waveColorSecondary: string;
|
|
2259
2310
|
colorTertiary: string;
|
|
2260
2311
|
colorTertiaryHover: string;
|
|
2261
2312
|
colorTertiaryPressed: string;
|
|
2313
|
+
colorTertiaryFocus: string;
|
|
2262
2314
|
colorTertiaryDisalbed: string;
|
|
2263
2315
|
waveColorTertiary: string;
|
|
2264
2316
|
textColorTextTertiary: string;
|
|
2317
|
+
rippleColorTertiary: string;
|
|
2265
2318
|
colorQuaternary: string;
|
|
2266
2319
|
colorQuaternaryHover: string;
|
|
2267
2320
|
colorQuaternaryPressed: string;
|
|
2321
|
+
colorQuaternaryFocus: string;
|
|
2322
|
+
rippleColorQuaternary: string;
|
|
2323
|
+
waveColorQuaternary: string;
|
|
2268
2324
|
color: string;
|
|
2269
2325
|
colorHover: string;
|
|
2270
2326
|
colorPressed: string;
|
|
@@ -2663,16 +2719,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2663
2719
|
colorSecondary: string;
|
|
2664
2720
|
colorSecondaryHover: string;
|
|
2665
2721
|
colorSecondaryPressed: string;
|
|
2722
|
+
colorSecondaryFocus: string;
|
|
2723
|
+
colorSecondaryDisabled: string;
|
|
2724
|
+
textColorSecondaryDisabled: string;
|
|
2666
2725
|
waveColorSecondary: string;
|
|
2667
2726
|
colorTertiary: string;
|
|
2668
2727
|
colorTertiaryHover: string;
|
|
2669
2728
|
colorTertiaryPressed: string;
|
|
2729
|
+
colorTertiaryFocus: string;
|
|
2670
2730
|
colorTertiaryDisalbed: string;
|
|
2671
2731
|
waveColorTertiary: string;
|
|
2672
2732
|
textColorTextTertiary: string;
|
|
2733
|
+
rippleColorTertiary: string;
|
|
2673
2734
|
colorQuaternary: string;
|
|
2674
2735
|
colorQuaternaryHover: string;
|
|
2675
2736
|
colorQuaternaryPressed: string;
|
|
2737
|
+
colorQuaternaryFocus: string;
|
|
2738
|
+
rippleColorQuaternary: string;
|
|
2739
|
+
waveColorQuaternary: string;
|
|
2676
2740
|
color: string;
|
|
2677
2741
|
colorHover: string;
|
|
2678
2742
|
colorPressed: string;
|
|
@@ -3006,16 +3070,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3006
3070
|
colorSecondary: string;
|
|
3007
3071
|
colorSecondaryHover: string;
|
|
3008
3072
|
colorSecondaryPressed: string;
|
|
3073
|
+
colorSecondaryFocus: string;
|
|
3074
|
+
colorSecondaryDisabled: string;
|
|
3075
|
+
textColorSecondaryDisabled: string;
|
|
3009
3076
|
waveColorSecondary: string;
|
|
3010
3077
|
colorTertiary: string;
|
|
3011
3078
|
colorTertiaryHover: string;
|
|
3012
3079
|
colorTertiaryPressed: string;
|
|
3080
|
+
colorTertiaryFocus: string;
|
|
3013
3081
|
colorTertiaryDisalbed: string;
|
|
3014
3082
|
waveColorTertiary: string;
|
|
3015
3083
|
textColorTextTertiary: string;
|
|
3084
|
+
rippleColorTertiary: string;
|
|
3016
3085
|
colorQuaternary: string;
|
|
3017
3086
|
colorQuaternaryHover: string;
|
|
3018
3087
|
colorQuaternaryPressed: string;
|
|
3088
|
+
colorQuaternaryFocus: string;
|
|
3089
|
+
rippleColorQuaternary: string;
|
|
3090
|
+
waveColorQuaternary: string;
|
|
3019
3091
|
color: string;
|
|
3020
3092
|
colorHover: string;
|
|
3021
3093
|
colorPressed: string;
|
|
@@ -3349,16 +3421,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3349
3421
|
colorSecondary: string;
|
|
3350
3422
|
colorSecondaryHover: string;
|
|
3351
3423
|
colorSecondaryPressed: string;
|
|
3424
|
+
colorSecondaryFocus: string;
|
|
3425
|
+
colorSecondaryDisabled: string;
|
|
3426
|
+
textColorSecondaryDisabled: string;
|
|
3352
3427
|
waveColorSecondary: string;
|
|
3353
3428
|
colorTertiary: string;
|
|
3354
3429
|
colorTertiaryHover: string;
|
|
3355
3430
|
colorTertiaryPressed: string;
|
|
3431
|
+
colorTertiaryFocus: string;
|
|
3356
3432
|
colorTertiaryDisalbed: string;
|
|
3357
3433
|
waveColorTertiary: string;
|
|
3358
3434
|
textColorTextTertiary: string;
|
|
3435
|
+
rippleColorTertiary: string;
|
|
3359
3436
|
colorQuaternary: string;
|
|
3360
3437
|
colorQuaternaryHover: string;
|
|
3361
3438
|
colorQuaternaryPressed: string;
|
|
3439
|
+
colorQuaternaryFocus: string;
|
|
3440
|
+
rippleColorQuaternary: string;
|
|
3441
|
+
waveColorQuaternary: string;
|
|
3362
3442
|
color: string;
|
|
3363
3443
|
colorHover: string;
|
|
3364
3444
|
colorPressed: string;
|
|
@@ -86,16 +86,24 @@ declare const dynamicTagsLight: import("../../_mixins").Theme<"DynamicTags", {
|
|
|
86
86
|
colorSecondary: string;
|
|
87
87
|
colorSecondaryHover: string;
|
|
88
88
|
colorSecondaryPressed: string;
|
|
89
|
+
colorSecondaryFocus: string;
|
|
90
|
+
colorSecondaryDisabled: string;
|
|
91
|
+
textColorSecondaryDisabled: string;
|
|
89
92
|
waveColorSecondary: string;
|
|
90
93
|
colorTertiary: string;
|
|
91
94
|
colorTertiaryHover: string;
|
|
92
95
|
colorTertiaryPressed: string;
|
|
96
|
+
colorTertiaryFocus: string;
|
|
93
97
|
colorTertiaryDisalbed: string;
|
|
94
98
|
waveColorTertiary: string;
|
|
95
99
|
textColorTextTertiary: string;
|
|
100
|
+
rippleColorTertiary: string;
|
|
96
101
|
colorQuaternary: string;
|
|
97
102
|
colorQuaternaryHover: string;
|
|
98
103
|
colorQuaternaryPressed: string;
|
|
104
|
+
colorQuaternaryFocus: string;
|
|
105
|
+
rippleColorQuaternary: string;
|
|
106
|
+
waveColorQuaternary: string;
|
|
99
107
|
color: string;
|
|
100
108
|
colorHover: string;
|
|
101
109
|
colorPressed: string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.UInfiniteScroll = exports.infiniteScrollProps = void 0;
|
|
7
|
+
var InfiniteScroll_1 = require("./src/InfiniteScroll");
|
|
8
|
+
Object.defineProperty(exports, "infiniteScrollProps", { enumerable: true, get: function () { return InfiniteScroll_1.infiniteScrollProps; } });
|
|
9
|
+
Object.defineProperty(exports, "UInfiniteScroll", { enumerable: true, get: function () { return __importDefault(InfiniteScroll_1).default; } });
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { ExtractPublicPropTypes } from '../../_utils';
|
|
3
|
+
import type { ScrollbarProps } from '../../scrollbar/src/Scrollbar';
|
|
4
|
+
export declare const infiniteScrollProps: {
|
|
5
|
+
readonly distance: {
|
|
6
|
+
readonly type: NumberConstructor;
|
|
7
|
+
readonly default: 0;
|
|
8
|
+
};
|
|
9
|
+
readonly onLoad: PropType<() => Promise<void> | void>;
|
|
10
|
+
readonly scrollbarProps: PropType<ScrollbarProps>;
|
|
11
|
+
};
|
|
12
|
+
export type InfiniteScrollProps = ExtractPublicPropTypes<typeof infiniteScrollProps>;
|
|
13
|
+
declare const _default: import("vue").DefineComponent<{
|
|
14
|
+
readonly distance: {
|
|
15
|
+
readonly type: NumberConstructor;
|
|
16
|
+
readonly default: 0;
|
|
17
|
+
};
|
|
18
|
+
readonly onLoad: PropType<() => Promise<void> | void>;
|
|
19
|
+
readonly scrollbarProps: PropType<ScrollbarProps>;
|
|
20
|
+
}, {
|
|
21
|
+
scrollbarInstRef: import("vue").Ref<{
|
|
22
|
+
$el: HTMLElement;
|
|
23
|
+
containerRef: HTMLElement | null;
|
|
24
|
+
contentRef: HTMLElement | null;
|
|
25
|
+
containerScrollTop: number;
|
|
26
|
+
syncUnifiedContainer: () => void;
|
|
27
|
+
scrollTo: import("../../_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
28
|
+
scrollBy: import("../../_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
29
|
+
sync: () => void;
|
|
30
|
+
handleMouseEnterWrapper: () => void;
|
|
31
|
+
handleMouseLeaveWrapper: () => void;
|
|
32
|
+
} | null>;
|
|
33
|
+
handleScroll: () => void;
|
|
34
|
+
handleWheel: (e: WheelEvent) => void;
|
|
35
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
|
+
readonly distance: {
|
|
37
|
+
readonly type: NumberConstructor;
|
|
38
|
+
readonly default: 0;
|
|
39
|
+
};
|
|
40
|
+
readonly onLoad: PropType<() => Promise<void> | void>;
|
|
41
|
+
readonly scrollbarProps: PropType<ScrollbarProps>;
|
|
42
|
+
}>>, {
|
|
43
|
+
readonly distance: number;
|
|
44
|
+
}, {}>;
|
|
45
|
+
export default _default;
|