@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
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { defineComponent, h, ref } from 'vue';
|
|
11
|
+
import { UxScrollbar } from '../../_internal';
|
|
12
|
+
import { resolveSlot } from '../../_utils';
|
|
13
|
+
export const infiniteScrollProps = {
|
|
14
|
+
distance: {
|
|
15
|
+
type: Number,
|
|
16
|
+
default: 0
|
|
17
|
+
},
|
|
18
|
+
onLoad: Function,
|
|
19
|
+
scrollbarProps: Object
|
|
20
|
+
};
|
|
21
|
+
export default defineComponent({
|
|
22
|
+
name: 'InfiniteScroll',
|
|
23
|
+
props: infiniteScrollProps,
|
|
24
|
+
setup(props) {
|
|
25
|
+
const scrollbarInstRef = ref(null);
|
|
26
|
+
let loading = false;
|
|
27
|
+
const handleCheckBottom = () => __awaiter(this, void 0, void 0, function* () {
|
|
28
|
+
var _a;
|
|
29
|
+
const { value: scrollbarInst } = scrollbarInstRef;
|
|
30
|
+
if (scrollbarInst) {
|
|
31
|
+
const { containerRef } = scrollbarInst;
|
|
32
|
+
const scrollHeight = containerRef === null || containerRef === void 0 ? void 0 : containerRef.scrollHeight;
|
|
33
|
+
const clientHeight = containerRef === null || containerRef === void 0 ? void 0 : containerRef.clientHeight;
|
|
34
|
+
const scrollTop = containerRef === null || containerRef === void 0 ? void 0 : containerRef.scrollTop;
|
|
35
|
+
if (containerRef &&
|
|
36
|
+
scrollHeight !== undefined &&
|
|
37
|
+
clientHeight !== undefined &&
|
|
38
|
+
scrollTop !== undefined) {
|
|
39
|
+
if (scrollTop + clientHeight >= scrollHeight - props.distance) {
|
|
40
|
+
loading = true;
|
|
41
|
+
try {
|
|
42
|
+
yield ((_a = props.onLoad) === null || _a === void 0 ? void 0 : _a.call(props));
|
|
43
|
+
}
|
|
44
|
+
catch (_b) { }
|
|
45
|
+
loading = false;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
const handleScroll = () => {
|
|
51
|
+
if (loading) {
|
|
52
|
+
return;
|
|
53
|
+
}
|
|
54
|
+
void handleCheckBottom();
|
|
55
|
+
};
|
|
56
|
+
const handleWheel = (e) => {
|
|
57
|
+
if (e.deltaY <= 0) {
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
60
|
+
if (loading) {
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
void handleCheckBottom();
|
|
64
|
+
};
|
|
65
|
+
return {
|
|
66
|
+
scrollbarInstRef,
|
|
67
|
+
handleScroll,
|
|
68
|
+
handleWheel
|
|
69
|
+
};
|
|
70
|
+
},
|
|
71
|
+
render() {
|
|
72
|
+
return (h(UxScrollbar, Object.assign({}, this.scrollbarProps, { ref: "scrollbarInstRef", onWheel: this.handleWheel, onScroll: this.handleScroll }), {
|
|
73
|
+
default: () => {
|
|
74
|
+
return resolveSlot(this.$slots.default, () => []);
|
|
75
|
+
}
|
|
76
|
+
}));
|
|
77
|
+
}
|
|
78
|
+
});
|
|
@@ -84,16 +84,24 @@ export declare const inputNumberProps: {
|
|
|
84
84
|
colorSecondary: string;
|
|
85
85
|
colorSecondaryHover: string;
|
|
86
86
|
colorSecondaryPressed: string;
|
|
87
|
+
colorSecondaryFocus: string;
|
|
88
|
+
colorSecondaryDisabled: string;
|
|
89
|
+
textColorSecondaryDisabled: string;
|
|
87
90
|
waveColorSecondary: string;
|
|
88
91
|
colorTertiary: string;
|
|
89
92
|
colorTertiaryHover: string;
|
|
90
93
|
colorTertiaryPressed: string;
|
|
94
|
+
colorTertiaryFocus: string;
|
|
91
95
|
colorTertiaryDisalbed: string;
|
|
92
96
|
waveColorTertiary: string;
|
|
93
97
|
textColorTextTertiary: string;
|
|
98
|
+
rippleColorTertiary: string;
|
|
94
99
|
colorQuaternary: string;
|
|
95
100
|
colorQuaternaryHover: string;
|
|
96
101
|
colorQuaternaryPressed: string;
|
|
102
|
+
colorQuaternaryFocus: string;
|
|
103
|
+
rippleColorQuaternary: string;
|
|
104
|
+
waveColorQuaternary: string;
|
|
97
105
|
color: string;
|
|
98
106
|
colorHover: string;
|
|
99
107
|
colorPressed: string;
|
|
@@ -361,16 +369,24 @@ export declare const inputNumberProps: {
|
|
|
361
369
|
colorSecondary: string;
|
|
362
370
|
colorSecondaryHover: string;
|
|
363
371
|
colorSecondaryPressed: string;
|
|
372
|
+
colorSecondaryFocus: string;
|
|
373
|
+
colorSecondaryDisabled: string;
|
|
374
|
+
textColorSecondaryDisabled: string;
|
|
364
375
|
waveColorSecondary: string;
|
|
365
376
|
colorTertiary: string;
|
|
366
377
|
colorTertiaryHover: string;
|
|
367
378
|
colorTertiaryPressed: string;
|
|
379
|
+
colorTertiaryFocus: string;
|
|
368
380
|
colorTertiaryDisalbed: string;
|
|
369
381
|
waveColorTertiary: string;
|
|
370
382
|
textColorTextTertiary: string;
|
|
383
|
+
rippleColorTertiary: string;
|
|
371
384
|
colorQuaternary: string;
|
|
372
385
|
colorQuaternaryHover: string;
|
|
373
386
|
colorQuaternaryPressed: string;
|
|
387
|
+
colorQuaternaryFocus: string;
|
|
388
|
+
rippleColorQuaternary: string;
|
|
389
|
+
waveColorQuaternary: string;
|
|
374
390
|
color: string;
|
|
375
391
|
colorHover: string;
|
|
376
392
|
colorPressed: string;
|
|
@@ -638,16 +654,24 @@ export declare const inputNumberProps: {
|
|
|
638
654
|
colorSecondary: string;
|
|
639
655
|
colorSecondaryHover: string;
|
|
640
656
|
colorSecondaryPressed: string;
|
|
657
|
+
colorSecondaryFocus: string;
|
|
658
|
+
colorSecondaryDisabled: string;
|
|
659
|
+
textColorSecondaryDisabled: string;
|
|
641
660
|
waveColorSecondary: string;
|
|
642
661
|
colorTertiary: string;
|
|
643
662
|
colorTertiaryHover: string;
|
|
644
663
|
colorTertiaryPressed: string;
|
|
664
|
+
colorTertiaryFocus: string;
|
|
645
665
|
colorTertiaryDisalbed: string;
|
|
646
666
|
waveColorTertiary: string;
|
|
647
667
|
textColorTextTertiary: string;
|
|
668
|
+
rippleColorTertiary: string;
|
|
648
669
|
colorQuaternary: string;
|
|
649
670
|
colorQuaternaryHover: string;
|
|
650
671
|
colorQuaternaryPressed: string;
|
|
672
|
+
colorQuaternaryFocus: string;
|
|
673
|
+
rippleColorQuaternary: string;
|
|
674
|
+
waveColorQuaternary: string;
|
|
651
675
|
color: string;
|
|
652
676
|
colorHover: string;
|
|
653
677
|
colorPressed: string;
|
|
@@ -976,16 +1000,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
976
1000
|
colorSecondary: string;
|
|
977
1001
|
colorSecondaryHover: string;
|
|
978
1002
|
colorSecondaryPressed: string;
|
|
1003
|
+
colorSecondaryFocus: string;
|
|
1004
|
+
colorSecondaryDisabled: string;
|
|
1005
|
+
textColorSecondaryDisabled: string;
|
|
979
1006
|
waveColorSecondary: string;
|
|
980
1007
|
colorTertiary: string;
|
|
981
1008
|
colorTertiaryHover: string;
|
|
982
1009
|
colorTertiaryPressed: string;
|
|
1010
|
+
colorTertiaryFocus: string;
|
|
983
1011
|
colorTertiaryDisalbed: string;
|
|
984
1012
|
waveColorTertiary: string;
|
|
985
1013
|
textColorTextTertiary: string;
|
|
1014
|
+
rippleColorTertiary: string;
|
|
986
1015
|
colorQuaternary: string;
|
|
987
1016
|
colorQuaternaryHover: string;
|
|
988
1017
|
colorQuaternaryPressed: string;
|
|
1018
|
+
colorQuaternaryFocus: string;
|
|
1019
|
+
rippleColorQuaternary: string;
|
|
1020
|
+
waveColorQuaternary: string;
|
|
989
1021
|
color: string;
|
|
990
1022
|
colorHover: string;
|
|
991
1023
|
colorPressed: string;
|
|
@@ -1253,16 +1285,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1253
1285
|
colorSecondary: string;
|
|
1254
1286
|
colorSecondaryHover: string;
|
|
1255
1287
|
colorSecondaryPressed: string;
|
|
1288
|
+
colorSecondaryFocus: string;
|
|
1289
|
+
colorSecondaryDisabled: string;
|
|
1290
|
+
textColorSecondaryDisabled: string;
|
|
1256
1291
|
waveColorSecondary: string;
|
|
1257
1292
|
colorTertiary: string;
|
|
1258
1293
|
colorTertiaryHover: string;
|
|
1259
1294
|
colorTertiaryPressed: string;
|
|
1295
|
+
colorTertiaryFocus: string;
|
|
1260
1296
|
colorTertiaryDisalbed: string;
|
|
1261
1297
|
waveColorTertiary: string;
|
|
1262
1298
|
textColorTextTertiary: string;
|
|
1299
|
+
rippleColorTertiary: string;
|
|
1263
1300
|
colorQuaternary: string;
|
|
1264
1301
|
colorQuaternaryHover: string;
|
|
1265
1302
|
colorQuaternaryPressed: string;
|
|
1303
|
+
colorQuaternaryFocus: string;
|
|
1304
|
+
rippleColorQuaternary: string;
|
|
1305
|
+
waveColorQuaternary: string;
|
|
1266
1306
|
color: string;
|
|
1267
1307
|
colorHover: string;
|
|
1268
1308
|
colorPressed: string;
|
|
@@ -1530,16 +1570,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1530
1570
|
colorSecondary: string;
|
|
1531
1571
|
colorSecondaryHover: string;
|
|
1532
1572
|
colorSecondaryPressed: string;
|
|
1573
|
+
colorSecondaryFocus: string;
|
|
1574
|
+
colorSecondaryDisabled: string;
|
|
1575
|
+
textColorSecondaryDisabled: string;
|
|
1533
1576
|
waveColorSecondary: string;
|
|
1534
1577
|
colorTertiary: string;
|
|
1535
1578
|
colorTertiaryHover: string;
|
|
1536
1579
|
colorTertiaryPressed: string;
|
|
1580
|
+
colorTertiaryFocus: string;
|
|
1537
1581
|
colorTertiaryDisalbed: string;
|
|
1538
1582
|
waveColorTertiary: string;
|
|
1539
1583
|
textColorTextTertiary: string;
|
|
1584
|
+
rippleColorTertiary: string;
|
|
1540
1585
|
colorQuaternary: string;
|
|
1541
1586
|
colorQuaternaryHover: string;
|
|
1542
1587
|
colorQuaternaryPressed: string;
|
|
1588
|
+
colorQuaternaryFocus: string;
|
|
1589
|
+
rippleColorQuaternary: string;
|
|
1590
|
+
waveColorQuaternary: string;
|
|
1543
1591
|
color: string;
|
|
1544
1592
|
colorHover: string;
|
|
1545
1593
|
colorPressed: string;
|
|
@@ -1852,16 +1900,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1852
1900
|
colorSecondary: string;
|
|
1853
1901
|
colorSecondaryHover: string;
|
|
1854
1902
|
colorSecondaryPressed: string;
|
|
1903
|
+
colorSecondaryFocus: string;
|
|
1904
|
+
colorSecondaryDisabled: string;
|
|
1905
|
+
textColorSecondaryDisabled: string;
|
|
1855
1906
|
waveColorSecondary: string;
|
|
1856
1907
|
colorTertiary: string;
|
|
1857
1908
|
colorTertiaryHover: string;
|
|
1858
1909
|
colorTertiaryPressed: string;
|
|
1910
|
+
colorTertiaryFocus: string;
|
|
1859
1911
|
colorTertiaryDisalbed: string;
|
|
1860
1912
|
waveColorTertiary: string;
|
|
1861
1913
|
textColorTextTertiary: string;
|
|
1914
|
+
rippleColorTertiary: string;
|
|
1862
1915
|
colorQuaternary: string;
|
|
1863
1916
|
colorQuaternaryHover: string;
|
|
1864
1917
|
colorQuaternaryPressed: string;
|
|
1918
|
+
colorQuaternaryFocus: string;
|
|
1919
|
+
rippleColorQuaternary: string;
|
|
1920
|
+
waveColorQuaternary: string;
|
|
1865
1921
|
color: string;
|
|
1866
1922
|
colorHover: string;
|
|
1867
1923
|
colorPressed: string;
|
|
@@ -2209,16 +2265,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2209
2265
|
colorSecondary: string;
|
|
2210
2266
|
colorSecondaryHover: string;
|
|
2211
2267
|
colorSecondaryPressed: string;
|
|
2268
|
+
colorSecondaryFocus: string;
|
|
2269
|
+
colorSecondaryDisabled: string;
|
|
2270
|
+
textColorSecondaryDisabled: string;
|
|
2212
2271
|
waveColorSecondary: string;
|
|
2213
2272
|
colorTertiary: string;
|
|
2214
2273
|
colorTertiaryHover: string;
|
|
2215
2274
|
colorTertiaryPressed: string;
|
|
2275
|
+
colorTertiaryFocus: string;
|
|
2216
2276
|
colorTertiaryDisalbed: string;
|
|
2217
2277
|
waveColorTertiary: string;
|
|
2218
2278
|
textColorTextTertiary: string;
|
|
2279
|
+
rippleColorTertiary: string;
|
|
2219
2280
|
colorQuaternary: string;
|
|
2220
2281
|
colorQuaternaryHover: string;
|
|
2221
2282
|
colorQuaternaryPressed: string;
|
|
2283
|
+
colorQuaternaryFocus: string;
|
|
2284
|
+
rippleColorQuaternary: string;
|
|
2285
|
+
waveColorQuaternary: string;
|
|
2222
2286
|
color: string;
|
|
2223
2287
|
colorHover: string;
|
|
2224
2288
|
colorPressed: string;
|
|
@@ -2486,16 +2550,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2486
2550
|
colorSecondary: string;
|
|
2487
2551
|
colorSecondaryHover: string;
|
|
2488
2552
|
colorSecondaryPressed: string;
|
|
2553
|
+
colorSecondaryFocus: string;
|
|
2554
|
+
colorSecondaryDisabled: string;
|
|
2555
|
+
textColorSecondaryDisabled: string;
|
|
2489
2556
|
waveColorSecondary: string;
|
|
2490
2557
|
colorTertiary: string;
|
|
2491
2558
|
colorTertiaryHover: string;
|
|
2492
2559
|
colorTertiaryPressed: string;
|
|
2560
|
+
colorTertiaryFocus: string;
|
|
2493
2561
|
colorTertiaryDisalbed: string;
|
|
2494
2562
|
waveColorTertiary: string;
|
|
2495
2563
|
textColorTextTertiary: string;
|
|
2564
|
+
rippleColorTertiary: string;
|
|
2496
2565
|
colorQuaternary: string;
|
|
2497
2566
|
colorQuaternaryHover: string;
|
|
2498
2567
|
colorQuaternaryPressed: string;
|
|
2568
|
+
colorQuaternaryFocus: string;
|
|
2569
|
+
rippleColorQuaternary: string;
|
|
2570
|
+
waveColorQuaternary: string;
|
|
2499
2571
|
color: string;
|
|
2500
2572
|
colorHover: string;
|
|
2501
2573
|
colorPressed: string;
|
|
@@ -2763,16 +2835,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2763
2835
|
colorSecondary: string;
|
|
2764
2836
|
colorSecondaryHover: string;
|
|
2765
2837
|
colorSecondaryPressed: string;
|
|
2838
|
+
colorSecondaryFocus: string;
|
|
2839
|
+
colorSecondaryDisabled: string;
|
|
2840
|
+
textColorSecondaryDisabled: string;
|
|
2766
2841
|
waveColorSecondary: string;
|
|
2767
2842
|
colorTertiary: string;
|
|
2768
2843
|
colorTertiaryHover: string;
|
|
2769
2844
|
colorTertiaryPressed: string;
|
|
2845
|
+
colorTertiaryFocus: string;
|
|
2770
2846
|
colorTertiaryDisalbed: string;
|
|
2771
2847
|
waveColorTertiary: string;
|
|
2772
2848
|
textColorTextTertiary: string;
|
|
2849
|
+
rippleColorTertiary: string;
|
|
2773
2850
|
colorQuaternary: string;
|
|
2774
2851
|
colorQuaternaryHover: string;
|
|
2775
2852
|
colorQuaternaryPressed: string;
|
|
2853
|
+
colorQuaternaryFocus: string;
|
|
2854
|
+
rippleColorQuaternary: string;
|
|
2855
|
+
waveColorQuaternary: string;
|
|
2776
2856
|
color: string;
|
|
2777
2857
|
colorHover: string;
|
|
2778
2858
|
colorPressed: string;
|
|
@@ -23,16 +23,24 @@ declare const inputNumberLight: import("../../_mixins").Theme<"InputNumber", {},
|
|
|
23
23
|
colorSecondary: string;
|
|
24
24
|
colorSecondaryHover: string;
|
|
25
25
|
colorSecondaryPressed: string;
|
|
26
|
+
colorSecondaryFocus: string;
|
|
27
|
+
colorSecondaryDisabled: string;
|
|
28
|
+
textColorSecondaryDisabled: string;
|
|
26
29
|
waveColorSecondary: string;
|
|
27
30
|
colorTertiary: string;
|
|
28
31
|
colorTertiaryHover: string;
|
|
29
32
|
colorTertiaryPressed: string;
|
|
33
|
+
colorTertiaryFocus: string;
|
|
30
34
|
colorTertiaryDisalbed: string;
|
|
31
35
|
waveColorTertiary: string;
|
|
32
36
|
textColorTextTertiary: string;
|
|
37
|
+
rippleColorTertiary: string;
|
|
33
38
|
colorQuaternary: string;
|
|
34
39
|
colorQuaternaryHover: string;
|
|
35
40
|
colorQuaternaryPressed: string;
|
|
41
|
+
colorQuaternaryFocus: string;
|
|
42
|
+
rippleColorQuaternary: string;
|
|
43
|
+
waveColorQuaternary: string;
|
|
36
44
|
color: string;
|
|
37
45
|
colorHover: string;
|
|
38
46
|
colorPressed: string;
|
|
@@ -95,8 +95,16 @@ export declare function createLayoutComponent(isContent: boolean): import("vue")
|
|
|
95
95
|
__invertScrollbar: string;
|
|
96
96
|
}, {
|
|
97
97
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
98
|
+
height: string;
|
|
99
|
+
width: string;
|
|
100
|
+
borderRadius: string;
|
|
98
101
|
color: string;
|
|
99
102
|
colorHover: string;
|
|
103
|
+
railInsetHorizontalBottom: string;
|
|
104
|
+
railInsetHorizontalTop: string;
|
|
105
|
+
railInsetVerticalRight: string;
|
|
106
|
+
railInsetVerticalLeft: string;
|
|
107
|
+
railColor: string;
|
|
100
108
|
}, any>;
|
|
101
109
|
}>>;
|
|
102
110
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
@@ -127,8 +135,16 @@ export declare function createLayoutComponent(isContent: boolean): import("vue")
|
|
|
127
135
|
__invertScrollbar: string;
|
|
128
136
|
}, {
|
|
129
137
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
138
|
+
height: string;
|
|
139
|
+
width: string;
|
|
140
|
+
borderRadius: string;
|
|
130
141
|
color: string;
|
|
131
142
|
colorHover: string;
|
|
143
|
+
railInsetHorizontalBottom: string;
|
|
144
|
+
railInsetHorizontalTop: string;
|
|
145
|
+
railInsetVerticalRight: string;
|
|
146
|
+
railInsetVerticalLeft: string;
|
|
147
|
+
railColor: string;
|
|
132
148
|
}, any>;
|
|
133
149
|
}>>>;
|
|
134
150
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
@@ -159,8 +175,16 @@ export declare function createLayoutComponent(isContent: boolean): import("vue")
|
|
|
159
175
|
__invertScrollbar: string;
|
|
160
176
|
}, {
|
|
161
177
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
178
|
+
height: string;
|
|
179
|
+
width: string;
|
|
180
|
+
borderRadius: string;
|
|
162
181
|
color: string;
|
|
163
182
|
colorHover: string;
|
|
183
|
+
railInsetHorizontalBottom: string;
|
|
184
|
+
railInsetHorizontalTop: string;
|
|
185
|
+
railInsetVerticalRight: string;
|
|
186
|
+
railInsetVerticalLeft: string;
|
|
187
|
+
railColor: string;
|
|
164
188
|
}, any>;
|
|
165
189
|
}>>>;
|
|
166
190
|
}, {
|
|
@@ -211,8 +235,16 @@ export declare function createLayoutComponent(isContent: boolean): import("vue")
|
|
|
211
235
|
};
|
|
212
236
|
peers: {
|
|
213
237
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
238
|
+
height: string;
|
|
239
|
+
width: string;
|
|
240
|
+
borderRadius: string;
|
|
214
241
|
color: string;
|
|
215
242
|
colorHover: string;
|
|
243
|
+
railInsetHorizontalBottom: string;
|
|
244
|
+
railInsetHorizontalTop: string;
|
|
245
|
+
railInsetVerticalRight: string;
|
|
246
|
+
railInsetVerticalLeft: string;
|
|
247
|
+
railColor: string;
|
|
216
248
|
}, any>;
|
|
217
249
|
};
|
|
218
250
|
peerOverrides: {
|
|
@@ -280,8 +312,16 @@ export declare function createLayoutComponent(isContent: boolean): import("vue")
|
|
|
280
312
|
__invertScrollbar: string;
|
|
281
313
|
}, {
|
|
282
314
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
315
|
+
height: string;
|
|
316
|
+
width: string;
|
|
317
|
+
borderRadius: string;
|
|
283
318
|
color: string;
|
|
284
319
|
colorHover: string;
|
|
320
|
+
railInsetHorizontalBottom: string;
|
|
321
|
+
railInsetHorizontalTop: string;
|
|
322
|
+
railInsetVerticalRight: string;
|
|
323
|
+
railInsetVerticalLeft: string;
|
|
324
|
+
railColor: string;
|
|
285
325
|
}, any>;
|
|
286
326
|
}>>;
|
|
287
327
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
@@ -312,8 +352,16 @@ export declare function createLayoutComponent(isContent: boolean): import("vue")
|
|
|
312
352
|
__invertScrollbar: string;
|
|
313
353
|
}, {
|
|
314
354
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
355
|
+
height: string;
|
|
356
|
+
width: string;
|
|
357
|
+
borderRadius: string;
|
|
315
358
|
color: string;
|
|
316
359
|
colorHover: string;
|
|
360
|
+
railInsetHorizontalBottom: string;
|
|
361
|
+
railInsetHorizontalTop: string;
|
|
362
|
+
railInsetVerticalRight: string;
|
|
363
|
+
railInsetVerticalLeft: string;
|
|
364
|
+
railColor: string;
|
|
317
365
|
}, any>;
|
|
318
366
|
}>>>;
|
|
319
367
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
@@ -344,8 +392,16 @@ export declare function createLayoutComponent(isContent: boolean): import("vue")
|
|
|
344
392
|
__invertScrollbar: string;
|
|
345
393
|
}, {
|
|
346
394
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
395
|
+
height: string;
|
|
396
|
+
width: string;
|
|
397
|
+
borderRadius: string;
|
|
347
398
|
color: string;
|
|
348
399
|
colorHover: string;
|
|
400
|
+
railInsetHorizontalBottom: string;
|
|
401
|
+
railInsetHorizontalTop: string;
|
|
402
|
+
railInsetVerticalRight: string;
|
|
403
|
+
railInsetVerticalLeft: string;
|
|
404
|
+
railColor: string;
|
|
349
405
|
}, any>;
|
|
350
406
|
}>>>;
|
|
351
407
|
}>>, {
|
|
@@ -405,8 +461,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
405
461
|
__invertScrollbar: string;
|
|
406
462
|
}, {
|
|
407
463
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
464
|
+
height: string;
|
|
465
|
+
width: string;
|
|
466
|
+
borderRadius: string;
|
|
408
467
|
color: string;
|
|
409
468
|
colorHover: string;
|
|
469
|
+
railInsetHorizontalBottom: string;
|
|
470
|
+
railInsetHorizontalTop: string;
|
|
471
|
+
railInsetVerticalRight: string;
|
|
472
|
+
railInsetVerticalLeft: string;
|
|
473
|
+
railColor: string;
|
|
410
474
|
}, any>;
|
|
411
475
|
}>>;
|
|
412
476
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
@@ -437,8 +501,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
437
501
|
__invertScrollbar: string;
|
|
438
502
|
}, {
|
|
439
503
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
504
|
+
height: string;
|
|
505
|
+
width: string;
|
|
506
|
+
borderRadius: string;
|
|
440
507
|
color: string;
|
|
441
508
|
colorHover: string;
|
|
509
|
+
railInsetHorizontalBottom: string;
|
|
510
|
+
railInsetHorizontalTop: string;
|
|
511
|
+
railInsetVerticalRight: string;
|
|
512
|
+
railInsetVerticalLeft: string;
|
|
513
|
+
railColor: string;
|
|
442
514
|
}, any>;
|
|
443
515
|
}>>>;
|
|
444
516
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
@@ -469,8 +541,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
469
541
|
__invertScrollbar: string;
|
|
470
542
|
}, {
|
|
471
543
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
544
|
+
height: string;
|
|
545
|
+
width: string;
|
|
546
|
+
borderRadius: string;
|
|
472
547
|
color: string;
|
|
473
548
|
colorHover: string;
|
|
549
|
+
railInsetHorizontalBottom: string;
|
|
550
|
+
railInsetHorizontalTop: string;
|
|
551
|
+
railInsetVerticalRight: string;
|
|
552
|
+
railInsetVerticalLeft: string;
|
|
553
|
+
railColor: string;
|
|
474
554
|
}, any>;
|
|
475
555
|
}>>>;
|
|
476
556
|
}, {
|
|
@@ -521,8 +601,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
521
601
|
};
|
|
522
602
|
peers: {
|
|
523
603
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
604
|
+
height: string;
|
|
605
|
+
width: string;
|
|
606
|
+
borderRadius: string;
|
|
524
607
|
color: string;
|
|
525
608
|
colorHover: string;
|
|
609
|
+
railInsetHorizontalBottom: string;
|
|
610
|
+
railInsetHorizontalTop: string;
|
|
611
|
+
railInsetVerticalRight: string;
|
|
612
|
+
railInsetVerticalLeft: string;
|
|
613
|
+
railColor: string;
|
|
526
614
|
}, any>;
|
|
527
615
|
};
|
|
528
616
|
peerOverrides: {
|
|
@@ -590,8 +678,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
590
678
|
__invertScrollbar: string;
|
|
591
679
|
}, {
|
|
592
680
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
681
|
+
height: string;
|
|
682
|
+
width: string;
|
|
683
|
+
borderRadius: string;
|
|
593
684
|
color: string;
|
|
594
685
|
colorHover: string;
|
|
686
|
+
railInsetHorizontalBottom: string;
|
|
687
|
+
railInsetHorizontalTop: string;
|
|
688
|
+
railInsetVerticalRight: string;
|
|
689
|
+
railInsetVerticalLeft: string;
|
|
690
|
+
railColor: string;
|
|
595
691
|
}, any>;
|
|
596
692
|
}>>;
|
|
597
693
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
@@ -622,8 +718,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
622
718
|
__invertScrollbar: string;
|
|
623
719
|
}, {
|
|
624
720
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
721
|
+
height: string;
|
|
722
|
+
width: string;
|
|
723
|
+
borderRadius: string;
|
|
625
724
|
color: string;
|
|
626
725
|
colorHover: string;
|
|
726
|
+
railInsetHorizontalBottom: string;
|
|
727
|
+
railInsetHorizontalTop: string;
|
|
728
|
+
railInsetVerticalRight: string;
|
|
729
|
+
railInsetVerticalLeft: string;
|
|
730
|
+
railColor: string;
|
|
627
731
|
}, any>;
|
|
628
732
|
}>>>;
|
|
629
733
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
@@ -654,8 +758,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
654
758
|
__invertScrollbar: string;
|
|
655
759
|
}, {
|
|
656
760
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
761
|
+
height: string;
|
|
762
|
+
width: string;
|
|
763
|
+
borderRadius: string;
|
|
657
764
|
color: string;
|
|
658
765
|
colorHover: string;
|
|
766
|
+
railInsetHorizontalBottom: string;
|
|
767
|
+
railInsetHorizontalTop: string;
|
|
768
|
+
railInsetVerticalRight: string;
|
|
769
|
+
railInsetVerticalLeft: string;
|
|
770
|
+
railColor: string;
|
|
659
771
|
}, any>;
|
|
660
772
|
}>>>;
|
|
661
773
|
}>>, {
|