@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
|
@@ -119,16 +119,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
119
119
|
colorSecondary: string;
|
|
120
120
|
colorSecondaryHover: string;
|
|
121
121
|
colorSecondaryPressed: string;
|
|
122
|
+
colorSecondaryFocus: string;
|
|
123
|
+
colorSecondaryDisabled: string;
|
|
124
|
+
textColorSecondaryDisabled: string;
|
|
122
125
|
waveColorSecondary: string;
|
|
123
126
|
colorTertiary: string;
|
|
124
127
|
colorTertiaryHover: string;
|
|
125
128
|
colorTertiaryPressed: string;
|
|
129
|
+
colorTertiaryFocus: string;
|
|
126
130
|
colorTertiaryDisalbed: string;
|
|
127
131
|
waveColorTertiary: string;
|
|
128
132
|
textColorTextTertiary: string;
|
|
133
|
+
rippleColorTertiary: string;
|
|
129
134
|
colorQuaternary: string;
|
|
130
135
|
colorQuaternaryHover: string;
|
|
131
136
|
colorQuaternaryPressed: string;
|
|
137
|
+
colorQuaternaryFocus: string;
|
|
138
|
+
rippleColorQuaternary: string;
|
|
139
|
+
waveColorQuaternary: string;
|
|
132
140
|
color: string;
|
|
133
141
|
colorHover: string;
|
|
134
142
|
colorPressed: string;
|
|
@@ -647,8 +655,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
647
655
|
loadingColor: string;
|
|
648
656
|
}, {
|
|
649
657
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
658
|
+
height: string;
|
|
659
|
+
width: string;
|
|
660
|
+
borderRadius: string;
|
|
650
661
|
color: string;
|
|
651
662
|
colorHover: string;
|
|
663
|
+
railInsetHorizontalBottom: string;
|
|
664
|
+
railInsetHorizontalTop: string;
|
|
665
|
+
railInsetVerticalRight: string;
|
|
666
|
+
railInsetVerticalLeft: string;
|
|
667
|
+
railColor: string;
|
|
652
668
|
}, any>;
|
|
653
669
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
654
670
|
iconSizeSmall: string;
|
|
@@ -786,8 +802,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
786
802
|
loadingColor: string;
|
|
787
803
|
}, {
|
|
788
804
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
805
|
+
height: string;
|
|
806
|
+
width: string;
|
|
807
|
+
borderRadius: string;
|
|
789
808
|
color: string;
|
|
790
809
|
colorHover: string;
|
|
810
|
+
railInsetHorizontalBottom: string;
|
|
811
|
+
railInsetHorizontalTop: string;
|
|
812
|
+
railInsetVerticalRight: string;
|
|
813
|
+
railInsetVerticalLeft: string;
|
|
814
|
+
railColor: string;
|
|
791
815
|
}, any>;
|
|
792
816
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
793
817
|
iconSizeSmall: string;
|
|
@@ -812,8 +836,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
812
836
|
}>;
|
|
813
837
|
}>;
|
|
814
838
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
839
|
+
height: string;
|
|
840
|
+
width: string;
|
|
841
|
+
borderRadius: string;
|
|
815
842
|
color: string;
|
|
816
843
|
colorHover: string;
|
|
844
|
+
railInsetHorizontalBottom: string;
|
|
845
|
+
railInsetHorizontalTop: string;
|
|
846
|
+
railInsetVerticalRight: string;
|
|
847
|
+
railInsetVerticalLeft: string;
|
|
848
|
+
railColor: string;
|
|
817
849
|
}, any>;
|
|
818
850
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
819
851
|
iconSizeSmall: string;
|
|
@@ -1132,8 +1164,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1132
1164
|
loadingColor: string;
|
|
1133
1165
|
}, {
|
|
1134
1166
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
1167
|
+
height: string;
|
|
1168
|
+
width: string;
|
|
1169
|
+
borderRadius: string;
|
|
1135
1170
|
color: string;
|
|
1136
1171
|
colorHover: string;
|
|
1172
|
+
railInsetHorizontalBottom: string;
|
|
1173
|
+
railInsetHorizontalTop: string;
|
|
1174
|
+
railInsetVerticalRight: string;
|
|
1175
|
+
railInsetVerticalLeft: string;
|
|
1176
|
+
railColor: string;
|
|
1137
1177
|
}, any>;
|
|
1138
1178
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
1139
1179
|
iconSizeSmall: string;
|
|
@@ -1271,8 +1311,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1271
1311
|
loadingColor: string;
|
|
1272
1312
|
}, {
|
|
1273
1313
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
1314
|
+
height: string;
|
|
1315
|
+
width: string;
|
|
1316
|
+
borderRadius: string;
|
|
1274
1317
|
color: string;
|
|
1275
1318
|
colorHover: string;
|
|
1319
|
+
railInsetHorizontalBottom: string;
|
|
1320
|
+
railInsetHorizontalTop: string;
|
|
1321
|
+
railInsetVerticalRight: string;
|
|
1322
|
+
railInsetVerticalLeft: string;
|
|
1323
|
+
railColor: string;
|
|
1276
1324
|
}, any>;
|
|
1277
1325
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
1278
1326
|
iconSizeSmall: string;
|
|
@@ -31,7 +31,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
31
|
virtualListRef: import("vue").Ref<{
|
|
32
32
|
listElRef: HTMLElement;
|
|
33
33
|
itemsElRef: HTMLElement | null;
|
|
34
|
-
scrollTo: import("vueuc
|
|
34
|
+
scrollTo: import("vueuc").VVirtualListScrollTo;
|
|
35
35
|
} | null>;
|
|
36
36
|
emptyElRef: import("vue").Ref<HTMLElement | null>;
|
|
37
37
|
summary: import("vue").Ref<import("../interface").CreateSummary<import("../interface").InternalRowData> | undefined>;
|
|
@@ -120,16 +120,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
120
120
|
colorSecondary: string;
|
|
121
121
|
colorSecondaryHover: string;
|
|
122
122
|
colorSecondaryPressed: string;
|
|
123
|
+
colorSecondaryFocus: string;
|
|
124
|
+
colorSecondaryDisabled: string;
|
|
125
|
+
textColorSecondaryDisabled: string;
|
|
123
126
|
waveColorSecondary: string;
|
|
124
127
|
colorTertiary: string;
|
|
125
128
|
colorTertiaryHover: string;
|
|
126
129
|
colorTertiaryPressed: string;
|
|
130
|
+
colorTertiaryFocus: string;
|
|
127
131
|
colorTertiaryDisalbed: string;
|
|
128
132
|
waveColorTertiary: string;
|
|
129
133
|
textColorTextTertiary: string;
|
|
134
|
+
rippleColorTertiary: string;
|
|
130
135
|
colorQuaternary: string;
|
|
131
136
|
colorQuaternaryHover: string;
|
|
132
137
|
colorQuaternaryPressed: string;
|
|
138
|
+
colorQuaternaryFocus: string;
|
|
139
|
+
rippleColorQuaternary: string;
|
|
140
|
+
waveColorQuaternary: string;
|
|
133
141
|
color: string;
|
|
134
142
|
colorHover: string;
|
|
135
143
|
colorPressed: string;
|
|
@@ -648,8 +656,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
648
656
|
loadingColor: string;
|
|
649
657
|
}, {
|
|
650
658
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
659
|
+
height: string;
|
|
660
|
+
width: string;
|
|
661
|
+
borderRadius: string;
|
|
651
662
|
color: string;
|
|
652
663
|
colorHover: string;
|
|
664
|
+
railInsetHorizontalBottom: string;
|
|
665
|
+
railInsetHorizontalTop: string;
|
|
666
|
+
railInsetVerticalRight: string;
|
|
667
|
+
railInsetVerticalLeft: string;
|
|
668
|
+
railColor: string;
|
|
653
669
|
}, any>;
|
|
654
670
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
655
671
|
iconSizeSmall: string;
|
|
@@ -787,8 +803,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
787
803
|
loadingColor: string;
|
|
788
804
|
}, {
|
|
789
805
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
806
|
+
height: string;
|
|
807
|
+
width: string;
|
|
808
|
+
borderRadius: string;
|
|
790
809
|
color: string;
|
|
791
810
|
colorHover: string;
|
|
811
|
+
railInsetHorizontalBottom: string;
|
|
812
|
+
railInsetHorizontalTop: string;
|
|
813
|
+
railInsetVerticalRight: string;
|
|
814
|
+
railInsetVerticalLeft: string;
|
|
815
|
+
railColor: string;
|
|
792
816
|
}, any>;
|
|
793
817
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
794
818
|
iconSizeSmall: string;
|
|
@@ -813,8 +837,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
813
837
|
}>;
|
|
814
838
|
}>;
|
|
815
839
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
840
|
+
height: string;
|
|
841
|
+
width: string;
|
|
842
|
+
borderRadius: string;
|
|
816
843
|
color: string;
|
|
817
844
|
colorHover: string;
|
|
845
|
+
railInsetHorizontalBottom: string;
|
|
846
|
+
railInsetHorizontalTop: string;
|
|
847
|
+
railInsetVerticalRight: string;
|
|
848
|
+
railInsetVerticalLeft: string;
|
|
849
|
+
railColor: string;
|
|
818
850
|
}, any>;
|
|
819
851
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
820
852
|
iconSizeSmall: string;
|
|
@@ -1133,8 +1165,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1133
1165
|
loadingColor: string;
|
|
1134
1166
|
}, {
|
|
1135
1167
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
1168
|
+
height: string;
|
|
1169
|
+
width: string;
|
|
1170
|
+
borderRadius: string;
|
|
1136
1171
|
color: string;
|
|
1137
1172
|
colorHover: string;
|
|
1173
|
+
railInsetHorizontalBottom: string;
|
|
1174
|
+
railInsetHorizontalTop: string;
|
|
1175
|
+
railInsetVerticalRight: string;
|
|
1176
|
+
railInsetVerticalLeft: string;
|
|
1177
|
+
railColor: string;
|
|
1138
1178
|
}, any>;
|
|
1139
1179
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
1140
1180
|
iconSizeSmall: string;
|
|
@@ -1272,8 +1312,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1272
1312
|
loadingColor: string;
|
|
1273
1313
|
}, {
|
|
1274
1314
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
1315
|
+
height: string;
|
|
1316
|
+
width: string;
|
|
1317
|
+
borderRadius: string;
|
|
1275
1318
|
color: string;
|
|
1276
1319
|
colorHover: string;
|
|
1320
|
+
railInsetHorizontalBottom: string;
|
|
1321
|
+
railInsetHorizontalTop: string;
|
|
1322
|
+
railInsetVerticalRight: string;
|
|
1323
|
+
railInsetVerticalLeft: string;
|
|
1324
|
+
railColor: string;
|
|
1277
1325
|
}, any>;
|
|
1278
1326
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
1279
1327
|
iconSizeSmall: string;
|
|
@@ -107,16 +107,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
107
107
|
colorSecondary: string;
|
|
108
108
|
colorSecondaryHover: string;
|
|
109
109
|
colorSecondaryPressed: string;
|
|
110
|
+
colorSecondaryFocus: string;
|
|
111
|
+
colorSecondaryDisabled: string;
|
|
112
|
+
textColorSecondaryDisabled: string;
|
|
110
113
|
waveColorSecondary: string;
|
|
111
114
|
colorTertiary: string;
|
|
112
115
|
colorTertiaryHover: string;
|
|
113
116
|
colorTertiaryPressed: string;
|
|
117
|
+
colorTertiaryFocus: string;
|
|
114
118
|
colorTertiaryDisalbed: string;
|
|
115
119
|
waveColorTertiary: string;
|
|
116
120
|
textColorTextTertiary: string;
|
|
121
|
+
rippleColorTertiary: string;
|
|
117
122
|
colorQuaternary: string;
|
|
118
123
|
colorQuaternaryHover: string;
|
|
119
124
|
colorQuaternaryPressed: string;
|
|
125
|
+
colorQuaternaryFocus: string;
|
|
126
|
+
rippleColorQuaternary: string;
|
|
127
|
+
waveColorQuaternary: string;
|
|
120
128
|
color: string;
|
|
121
129
|
colorHover: string;
|
|
122
130
|
colorPressed: string;
|
|
@@ -635,8 +643,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
635
643
|
loadingColor: string;
|
|
636
644
|
}, {
|
|
637
645
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
646
|
+
height: string;
|
|
647
|
+
width: string;
|
|
648
|
+
borderRadius: string;
|
|
638
649
|
color: string;
|
|
639
650
|
colorHover: string;
|
|
651
|
+
railInsetHorizontalBottom: string;
|
|
652
|
+
railInsetHorizontalTop: string;
|
|
653
|
+
railInsetVerticalRight: string;
|
|
654
|
+
railInsetVerticalLeft: string;
|
|
655
|
+
railColor: string;
|
|
640
656
|
}, any>;
|
|
641
657
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
642
658
|
iconSizeSmall: string;
|
|
@@ -774,8 +790,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
774
790
|
loadingColor: string;
|
|
775
791
|
}, {
|
|
776
792
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
793
|
+
height: string;
|
|
794
|
+
width: string;
|
|
795
|
+
borderRadius: string;
|
|
777
796
|
color: string;
|
|
778
797
|
colorHover: string;
|
|
798
|
+
railInsetHorizontalBottom: string;
|
|
799
|
+
railInsetHorizontalTop: string;
|
|
800
|
+
railInsetVerticalRight: string;
|
|
801
|
+
railInsetVerticalLeft: string;
|
|
802
|
+
railColor: string;
|
|
779
803
|
}, any>;
|
|
780
804
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
781
805
|
iconSizeSmall: string;
|
|
@@ -800,8 +824,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
800
824
|
}>;
|
|
801
825
|
}>;
|
|
802
826
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
827
|
+
height: string;
|
|
828
|
+
width: string;
|
|
829
|
+
borderRadius: string;
|
|
803
830
|
color: string;
|
|
804
831
|
colorHover: string;
|
|
832
|
+
railInsetHorizontalBottom: string;
|
|
833
|
+
railInsetHorizontalTop: string;
|
|
834
|
+
railInsetVerticalRight: string;
|
|
835
|
+
railInsetVerticalLeft: string;
|
|
836
|
+
railColor: string;
|
|
805
837
|
}, any>;
|
|
806
838
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
807
839
|
iconSizeSmall: string;
|
|
@@ -1120,8 +1152,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1120
1152
|
loadingColor: string;
|
|
1121
1153
|
}, {
|
|
1122
1154
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
1155
|
+
height: string;
|
|
1156
|
+
width: string;
|
|
1157
|
+
borderRadius: string;
|
|
1123
1158
|
color: string;
|
|
1124
1159
|
colorHover: string;
|
|
1160
|
+
railInsetHorizontalBottom: string;
|
|
1161
|
+
railInsetHorizontalTop: string;
|
|
1162
|
+
railInsetVerticalRight: string;
|
|
1163
|
+
railInsetVerticalLeft: string;
|
|
1164
|
+
railColor: string;
|
|
1125
1165
|
}, any>;
|
|
1126
1166
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
1127
1167
|
iconSizeSmall: string;
|
|
@@ -1259,8 +1299,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1259
1299
|
loadingColor: string;
|
|
1260
1300
|
}, {
|
|
1261
1301
|
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
1302
|
+
height: string;
|
|
1303
|
+
width: string;
|
|
1304
|
+
borderRadius: string;
|
|
1262
1305
|
color: string;
|
|
1263
1306
|
colorHover: string;
|
|
1307
|
+
railInsetHorizontalBottom: string;
|
|
1308
|
+
railInsetHorizontalTop: string;
|
|
1309
|
+
railInsetVerticalRight: string;
|
|
1310
|
+
railInsetVerticalLeft: string;
|
|
1311
|
+
railColor: string;
|
|
1264
1312
|
}, any>;
|
|
1265
1313
|
Empty: import("../../../_mixins").Theme<"Empty", {
|
|
1266
1314
|
iconSizeSmall: string;
|
|
@@ -203,16 +203,24 @@ export declare const dataTableProps: {
|
|
|
203
203
|
colorSecondary: string;
|
|
204
204
|
colorSecondaryHover: string;
|
|
205
205
|
colorSecondaryPressed: string;
|
|
206
|
+
colorSecondaryFocus: string;
|
|
207
|
+
colorSecondaryDisabled: string;
|
|
208
|
+
textColorSecondaryDisabled: string;
|
|
206
209
|
waveColorSecondary: string;
|
|
207
210
|
colorTertiary: string;
|
|
208
211
|
colorTertiaryHover: string;
|
|
209
212
|
colorTertiaryPressed: string;
|
|
213
|
+
colorTertiaryFocus: string;
|
|
210
214
|
colorTertiaryDisalbed: string;
|
|
211
215
|
waveColorTertiary: string;
|
|
212
216
|
textColorTextTertiary: string;
|
|
217
|
+
rippleColorTertiary: string;
|
|
213
218
|
colorQuaternary: string;
|
|
214
219
|
colorQuaternaryHover: string;
|
|
215
220
|
colorQuaternaryPressed: string;
|
|
221
|
+
colorQuaternaryFocus: string;
|
|
222
|
+
rippleColorQuaternary: string;
|
|
223
|
+
waveColorQuaternary: string;
|
|
216
224
|
color: string;
|
|
217
225
|
colorHover: string;
|
|
218
226
|
colorPressed: string;
|
|
@@ -731,8 +739,16 @@ export declare const dataTableProps: {
|
|
|
731
739
|
loadingColor: string;
|
|
732
740
|
}, {
|
|
733
741
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
742
|
+
height: string;
|
|
743
|
+
width: string;
|
|
744
|
+
borderRadius: string;
|
|
734
745
|
color: string;
|
|
735
746
|
colorHover: string;
|
|
747
|
+
railInsetHorizontalBottom: string;
|
|
748
|
+
railInsetHorizontalTop: string;
|
|
749
|
+
railInsetVerticalRight: string;
|
|
750
|
+
railInsetVerticalLeft: string;
|
|
751
|
+
railColor: string;
|
|
736
752
|
}, any>;
|
|
737
753
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
738
754
|
iconSizeSmall: string;
|
|
@@ -870,8 +886,16 @@ export declare const dataTableProps: {
|
|
|
870
886
|
loadingColor: string;
|
|
871
887
|
}, {
|
|
872
888
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
889
|
+
height: string;
|
|
890
|
+
width: string;
|
|
891
|
+
borderRadius: string;
|
|
873
892
|
color: string;
|
|
874
893
|
colorHover: string;
|
|
894
|
+
railInsetHorizontalBottom: string;
|
|
895
|
+
railInsetHorizontalTop: string;
|
|
896
|
+
railInsetVerticalRight: string;
|
|
897
|
+
railInsetVerticalLeft: string;
|
|
898
|
+
railColor: string;
|
|
875
899
|
}, any>;
|
|
876
900
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
877
901
|
iconSizeSmall: string;
|
|
@@ -896,8 +920,16 @@ export declare const dataTableProps: {
|
|
|
896
920
|
}>;
|
|
897
921
|
}>;
|
|
898
922
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
923
|
+
height: string;
|
|
924
|
+
width: string;
|
|
925
|
+
borderRadius: string;
|
|
899
926
|
color: string;
|
|
900
927
|
colorHover: string;
|
|
928
|
+
railInsetHorizontalBottom: string;
|
|
929
|
+
railInsetHorizontalTop: string;
|
|
930
|
+
railInsetVerticalRight: string;
|
|
931
|
+
railInsetVerticalLeft: string;
|
|
932
|
+
railColor: string;
|
|
901
933
|
}, any>;
|
|
902
934
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
903
935
|
iconSizeSmall: string;
|
|
@@ -1119,16 +1151,24 @@ export declare const dataTableProps: {
|
|
|
1119
1151
|
colorSecondary: string;
|
|
1120
1152
|
colorSecondaryHover: string;
|
|
1121
1153
|
colorSecondaryPressed: string;
|
|
1154
|
+
colorSecondaryFocus: string;
|
|
1155
|
+
colorSecondaryDisabled: string;
|
|
1156
|
+
textColorSecondaryDisabled: string;
|
|
1122
1157
|
waveColorSecondary: string;
|
|
1123
1158
|
colorTertiary: string;
|
|
1124
1159
|
colorTertiaryHover: string;
|
|
1125
1160
|
colorTertiaryPressed: string;
|
|
1161
|
+
colorTertiaryFocus: string;
|
|
1126
1162
|
colorTertiaryDisalbed: string;
|
|
1127
1163
|
waveColorTertiary: string;
|
|
1128
1164
|
textColorTextTertiary: string;
|
|
1165
|
+
rippleColorTertiary: string;
|
|
1129
1166
|
colorQuaternary: string;
|
|
1130
1167
|
colorQuaternaryHover: string;
|
|
1131
1168
|
colorQuaternaryPressed: string;
|
|
1169
|
+
colorQuaternaryFocus: string;
|
|
1170
|
+
rippleColorQuaternary: string;
|
|
1171
|
+
waveColorQuaternary: string;
|
|
1132
1172
|
color: string;
|
|
1133
1173
|
colorHover: string;
|
|
1134
1174
|
colorPressed: string;
|
|
@@ -1647,8 +1687,16 @@ export declare const dataTableProps: {
|
|
|
1647
1687
|
loadingColor: string;
|
|
1648
1688
|
}, {
|
|
1649
1689
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1690
|
+
height: string;
|
|
1691
|
+
width: string;
|
|
1692
|
+
borderRadius: string;
|
|
1650
1693
|
color: string;
|
|
1651
1694
|
colorHover: string;
|
|
1695
|
+
railInsetHorizontalBottom: string;
|
|
1696
|
+
railInsetHorizontalTop: string;
|
|
1697
|
+
railInsetVerticalRight: string;
|
|
1698
|
+
railInsetVerticalLeft: string;
|
|
1699
|
+
railColor: string;
|
|
1652
1700
|
}, any>;
|
|
1653
1701
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1654
1702
|
iconSizeSmall: string;
|
|
@@ -1786,8 +1834,16 @@ export declare const dataTableProps: {
|
|
|
1786
1834
|
loadingColor: string;
|
|
1787
1835
|
}, {
|
|
1788
1836
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1837
|
+
height: string;
|
|
1838
|
+
width: string;
|
|
1839
|
+
borderRadius: string;
|
|
1789
1840
|
color: string;
|
|
1790
1841
|
colorHover: string;
|
|
1842
|
+
railInsetHorizontalBottom: string;
|
|
1843
|
+
railInsetHorizontalTop: string;
|
|
1844
|
+
railInsetVerticalRight: string;
|
|
1845
|
+
railInsetVerticalLeft: string;
|
|
1846
|
+
railColor: string;
|
|
1791
1847
|
}, any>;
|
|
1792
1848
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1793
1849
|
iconSizeSmall: string;
|
|
@@ -1812,8 +1868,16 @@ export declare const dataTableProps: {
|
|
|
1812
1868
|
}>;
|
|
1813
1869
|
}>;
|
|
1814
1870
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1871
|
+
height: string;
|
|
1872
|
+
width: string;
|
|
1873
|
+
borderRadius: string;
|
|
1815
1874
|
color: string;
|
|
1816
1875
|
colorHover: string;
|
|
1876
|
+
railInsetHorizontalBottom: string;
|
|
1877
|
+
railInsetHorizontalTop: string;
|
|
1878
|
+
railInsetVerticalRight: string;
|
|
1879
|
+
railInsetVerticalLeft: string;
|
|
1880
|
+
railColor: string;
|
|
1817
1881
|
}, any>;
|
|
1818
1882
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1819
1883
|
iconSizeSmall: string;
|
|
@@ -2035,16 +2099,24 @@ export declare const dataTableProps: {
|
|
|
2035
2099
|
colorSecondary: string;
|
|
2036
2100
|
colorSecondaryHover: string;
|
|
2037
2101
|
colorSecondaryPressed: string;
|
|
2102
|
+
colorSecondaryFocus: string;
|
|
2103
|
+
colorSecondaryDisabled: string;
|
|
2104
|
+
textColorSecondaryDisabled: string;
|
|
2038
2105
|
waveColorSecondary: string;
|
|
2039
2106
|
colorTertiary: string;
|
|
2040
2107
|
colorTertiaryHover: string;
|
|
2041
2108
|
colorTertiaryPressed: string;
|
|
2109
|
+
colorTertiaryFocus: string;
|
|
2042
2110
|
colorTertiaryDisalbed: string;
|
|
2043
2111
|
waveColorTertiary: string;
|
|
2044
2112
|
textColorTextTertiary: string;
|
|
2113
|
+
rippleColorTertiary: string;
|
|
2045
2114
|
colorQuaternary: string;
|
|
2046
2115
|
colorQuaternaryHover: string;
|
|
2047
2116
|
colorQuaternaryPressed: string;
|
|
2117
|
+
colorQuaternaryFocus: string;
|
|
2118
|
+
rippleColorQuaternary: string;
|
|
2119
|
+
waveColorQuaternary: string;
|
|
2048
2120
|
color: string;
|
|
2049
2121
|
colorHover: string;
|
|
2050
2122
|
colorPressed: string;
|
|
@@ -2563,8 +2635,16 @@ export declare const dataTableProps: {
|
|
|
2563
2635
|
loadingColor: string;
|
|
2564
2636
|
}, {
|
|
2565
2637
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2638
|
+
height: string;
|
|
2639
|
+
width: string;
|
|
2640
|
+
borderRadius: string;
|
|
2566
2641
|
color: string;
|
|
2567
2642
|
colorHover: string;
|
|
2643
|
+
railInsetHorizontalBottom: string;
|
|
2644
|
+
railInsetHorizontalTop: string;
|
|
2645
|
+
railInsetVerticalRight: string;
|
|
2646
|
+
railInsetVerticalLeft: string;
|
|
2647
|
+
railColor: string;
|
|
2568
2648
|
}, any>;
|
|
2569
2649
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2570
2650
|
iconSizeSmall: string;
|
|
@@ -2702,8 +2782,16 @@ export declare const dataTableProps: {
|
|
|
2702
2782
|
loadingColor: string;
|
|
2703
2783
|
}, {
|
|
2704
2784
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2785
|
+
height: string;
|
|
2786
|
+
width: string;
|
|
2787
|
+
borderRadius: string;
|
|
2705
2788
|
color: string;
|
|
2706
2789
|
colorHover: string;
|
|
2790
|
+
railInsetHorizontalBottom: string;
|
|
2791
|
+
railInsetHorizontalTop: string;
|
|
2792
|
+
railInsetVerticalRight: string;
|
|
2793
|
+
railInsetVerticalLeft: string;
|
|
2794
|
+
railColor: string;
|
|
2707
2795
|
}, any>;
|
|
2708
2796
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2709
2797
|
iconSizeSmall: string;
|
|
@@ -2728,8 +2816,16 @@ export declare const dataTableProps: {
|
|
|
2728
2816
|
}>;
|
|
2729
2817
|
}>;
|
|
2730
2818
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2819
|
+
height: string;
|
|
2820
|
+
width: string;
|
|
2821
|
+
borderRadius: string;
|
|
2731
2822
|
color: string;
|
|
2732
2823
|
colorHover: string;
|
|
2824
|
+
railInsetHorizontalBottom: string;
|
|
2825
|
+
railInsetHorizontalTop: string;
|
|
2826
|
+
railInsetVerticalRight: string;
|
|
2827
|
+
railInsetVerticalLeft: string;
|
|
2828
|
+
railColor: string;
|
|
2733
2829
|
}, any>;
|
|
2734
2830
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2735
2831
|
iconSizeSmall: string;
|
|
@@ -141,16 +141,24 @@ declare const dataTableLight: import("../../_mixins").Theme<"DataTable", {
|
|
|
141
141
|
colorSecondary: string;
|
|
142
142
|
colorSecondaryHover: string;
|
|
143
143
|
colorSecondaryPressed: string;
|
|
144
|
+
colorSecondaryFocus: string;
|
|
145
|
+
colorSecondaryDisabled: string;
|
|
146
|
+
textColorSecondaryDisabled: string;
|
|
144
147
|
waveColorSecondary: string;
|
|
145
148
|
colorTertiary: string;
|
|
146
149
|
colorTertiaryHover: string;
|
|
147
150
|
colorTertiaryPressed: string;
|
|
151
|
+
colorTertiaryFocus: string;
|
|
148
152
|
colorTertiaryDisalbed: string;
|
|
149
153
|
waveColorTertiary: string;
|
|
150
154
|
textColorTextTertiary: string;
|
|
155
|
+
rippleColorTertiary: string;
|
|
151
156
|
colorQuaternary: string;
|
|
152
157
|
colorQuaternaryHover: string;
|
|
153
158
|
colorQuaternaryPressed: string;
|
|
159
|
+
colorQuaternaryFocus: string;
|
|
160
|
+
rippleColorQuaternary: string;
|
|
161
|
+
waveColorQuaternary: string;
|
|
154
162
|
color: string;
|
|
155
163
|
colorHover: string;
|
|
156
164
|
colorPressed: string;
|
|
@@ -669,8 +677,16 @@ declare const dataTableLight: import("../../_mixins").Theme<"DataTable", {
|
|
|
669
677
|
loadingColor: string;
|
|
670
678
|
}, {
|
|
671
679
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
680
|
+
height: string;
|
|
681
|
+
width: string;
|
|
682
|
+
borderRadius: string;
|
|
672
683
|
color: string;
|
|
673
684
|
colorHover: string;
|
|
685
|
+
railInsetHorizontalBottom: string;
|
|
686
|
+
railInsetHorizontalTop: string;
|
|
687
|
+
railInsetVerticalRight: string;
|
|
688
|
+
railInsetVerticalLeft: string;
|
|
689
|
+
railColor: string;
|
|
674
690
|
}, any>;
|
|
675
691
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
676
692
|
iconSizeSmall: string;
|
|
@@ -808,8 +824,16 @@ declare const dataTableLight: import("../../_mixins").Theme<"DataTable", {
|
|
|
808
824
|
loadingColor: string;
|
|
809
825
|
}, {
|
|
810
826
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
827
|
+
height: string;
|
|
828
|
+
width: string;
|
|
829
|
+
borderRadius: string;
|
|
811
830
|
color: string;
|
|
812
831
|
colorHover: string;
|
|
832
|
+
railInsetHorizontalBottom: string;
|
|
833
|
+
railInsetHorizontalTop: string;
|
|
834
|
+
railInsetVerticalRight: string;
|
|
835
|
+
railInsetVerticalLeft: string;
|
|
836
|
+
railColor: string;
|
|
813
837
|
}, any>;
|
|
814
838
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
815
839
|
iconSizeSmall: string;
|
|
@@ -834,8 +858,16 @@ declare const dataTableLight: import("../../_mixins").Theme<"DataTable", {
|
|
|
834
858
|
}>;
|
|
835
859
|
}>;
|
|
836
860
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
861
|
+
height: string;
|
|
862
|
+
width: string;
|
|
863
|
+
borderRadius: string;
|
|
837
864
|
color: string;
|
|
838
865
|
colorHover: string;
|
|
866
|
+
railInsetHorizontalBottom: string;
|
|
867
|
+
railInsetHorizontalTop: string;
|
|
868
|
+
railInsetVerticalRight: string;
|
|
869
|
+
railInsetVerticalLeft: string;
|
|
870
|
+
railColor: string;
|
|
839
871
|
}, any>;
|
|
840
872
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
841
873
|
iconSizeSmall: string;
|