@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
|
@@ -123,16 +123,24 @@ export declare const popconfirmProps: {
|
|
|
123
123
|
colorSecondary: string;
|
|
124
124
|
colorSecondaryHover: string;
|
|
125
125
|
colorSecondaryPressed: string;
|
|
126
|
+
colorSecondaryFocus: string;
|
|
127
|
+
colorSecondaryDisabled: string;
|
|
128
|
+
textColorSecondaryDisabled: string;
|
|
126
129
|
waveColorSecondary: string;
|
|
127
130
|
colorTertiary: string;
|
|
128
131
|
colorTertiaryHover: string;
|
|
129
132
|
colorTertiaryPressed: string;
|
|
133
|
+
colorTertiaryFocus: string;
|
|
130
134
|
colorTertiaryDisalbed: string;
|
|
131
135
|
waveColorTertiary: string;
|
|
132
136
|
textColorTextTertiary: string;
|
|
137
|
+
rippleColorTertiary: string;
|
|
133
138
|
colorQuaternary: string;
|
|
134
139
|
colorQuaternaryHover: string;
|
|
135
140
|
colorQuaternaryPressed: string;
|
|
141
|
+
colorQuaternaryFocus: string;
|
|
142
|
+
rippleColorQuaternary: string;
|
|
143
|
+
waveColorQuaternary: string;
|
|
136
144
|
color: string;
|
|
137
145
|
colorHover: string;
|
|
138
146
|
colorPressed: string;
|
|
@@ -354,16 +362,24 @@ export declare const popconfirmProps: {
|
|
|
354
362
|
colorSecondary: string;
|
|
355
363
|
colorSecondaryHover: string;
|
|
356
364
|
colorSecondaryPressed: string;
|
|
365
|
+
colorSecondaryFocus: string;
|
|
366
|
+
colorSecondaryDisabled: string;
|
|
367
|
+
textColorSecondaryDisabled: string;
|
|
357
368
|
waveColorSecondary: string;
|
|
358
369
|
colorTertiary: string;
|
|
359
370
|
colorTertiaryHover: string;
|
|
360
371
|
colorTertiaryPressed: string;
|
|
372
|
+
colorTertiaryFocus: string;
|
|
361
373
|
colorTertiaryDisalbed: string;
|
|
362
374
|
waveColorTertiary: string;
|
|
363
375
|
textColorTextTertiary: string;
|
|
376
|
+
rippleColorTertiary: string;
|
|
364
377
|
colorQuaternary: string;
|
|
365
378
|
colorQuaternaryHover: string;
|
|
366
379
|
colorQuaternaryPressed: string;
|
|
380
|
+
colorQuaternaryFocus: string;
|
|
381
|
+
rippleColorQuaternary: string;
|
|
382
|
+
waveColorQuaternary: string;
|
|
367
383
|
color: string;
|
|
368
384
|
colorHover: string;
|
|
369
385
|
colorPressed: string;
|
|
@@ -585,16 +601,24 @@ export declare const popconfirmProps: {
|
|
|
585
601
|
colorSecondary: string;
|
|
586
602
|
colorSecondaryHover: string;
|
|
587
603
|
colorSecondaryPressed: string;
|
|
604
|
+
colorSecondaryFocus: string;
|
|
605
|
+
colorSecondaryDisabled: string;
|
|
606
|
+
textColorSecondaryDisabled: string;
|
|
588
607
|
waveColorSecondary: string;
|
|
589
608
|
colorTertiary: string;
|
|
590
609
|
colorTertiaryHover: string;
|
|
591
610
|
colorTertiaryPressed: string;
|
|
611
|
+
colorTertiaryFocus: string;
|
|
592
612
|
colorTertiaryDisalbed: string;
|
|
593
613
|
waveColorTertiary: string;
|
|
594
614
|
textColorTextTertiary: string;
|
|
615
|
+
rippleColorTertiary: string;
|
|
595
616
|
colorQuaternary: string;
|
|
596
617
|
colorQuaternaryHover: string;
|
|
597
618
|
colorQuaternaryPressed: string;
|
|
619
|
+
colorQuaternaryFocus: string;
|
|
620
|
+
rippleColorQuaternary: string;
|
|
621
|
+
waveColorQuaternary: string;
|
|
598
622
|
color: string;
|
|
599
623
|
colorHover: string;
|
|
600
624
|
colorPressed: string;
|
|
@@ -914,16 +938,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
914
938
|
colorSecondary: string;
|
|
915
939
|
colorSecondaryHover: string;
|
|
916
940
|
colorSecondaryPressed: string;
|
|
941
|
+
colorSecondaryFocus: string;
|
|
942
|
+
colorSecondaryDisabled: string;
|
|
943
|
+
textColorSecondaryDisabled: string;
|
|
917
944
|
waveColorSecondary: string;
|
|
918
945
|
colorTertiary: string;
|
|
919
946
|
colorTertiaryHover: string;
|
|
920
947
|
colorTertiaryPressed: string;
|
|
948
|
+
colorTertiaryFocus: string;
|
|
921
949
|
colorTertiaryDisalbed: string;
|
|
922
950
|
waveColorTertiary: string;
|
|
923
951
|
textColorTextTertiary: string;
|
|
952
|
+
rippleColorTertiary: string;
|
|
924
953
|
colorQuaternary: string;
|
|
925
954
|
colorQuaternaryHover: string;
|
|
926
955
|
colorQuaternaryPressed: string;
|
|
956
|
+
colorQuaternaryFocus: string;
|
|
957
|
+
rippleColorQuaternary: string;
|
|
958
|
+
waveColorQuaternary: string;
|
|
927
959
|
color: string;
|
|
928
960
|
colorHover: string;
|
|
929
961
|
colorPressed: string;
|
|
@@ -1145,16 +1177,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1145
1177
|
colorSecondary: string;
|
|
1146
1178
|
colorSecondaryHover: string;
|
|
1147
1179
|
colorSecondaryPressed: string;
|
|
1180
|
+
colorSecondaryFocus: string;
|
|
1181
|
+
colorSecondaryDisabled: string;
|
|
1182
|
+
textColorSecondaryDisabled: string;
|
|
1148
1183
|
waveColorSecondary: string;
|
|
1149
1184
|
colorTertiary: string;
|
|
1150
1185
|
colorTertiaryHover: string;
|
|
1151
1186
|
colorTertiaryPressed: string;
|
|
1187
|
+
colorTertiaryFocus: string;
|
|
1152
1188
|
colorTertiaryDisalbed: string;
|
|
1153
1189
|
waveColorTertiary: string;
|
|
1154
1190
|
textColorTextTertiary: string;
|
|
1191
|
+
rippleColorTertiary: string;
|
|
1155
1192
|
colorQuaternary: string;
|
|
1156
1193
|
colorQuaternaryHover: string;
|
|
1157
1194
|
colorQuaternaryPressed: string;
|
|
1195
|
+
colorQuaternaryFocus: string;
|
|
1196
|
+
rippleColorQuaternary: string;
|
|
1197
|
+
waveColorQuaternary: string;
|
|
1158
1198
|
color: string;
|
|
1159
1199
|
colorHover: string;
|
|
1160
1200
|
colorPressed: string;
|
|
@@ -1376,16 +1416,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1376
1416
|
colorSecondary: string;
|
|
1377
1417
|
colorSecondaryHover: string;
|
|
1378
1418
|
colorSecondaryPressed: string;
|
|
1419
|
+
colorSecondaryFocus: string;
|
|
1420
|
+
colorSecondaryDisabled: string;
|
|
1421
|
+
textColorSecondaryDisabled: string;
|
|
1379
1422
|
waveColorSecondary: string;
|
|
1380
1423
|
colorTertiary: string;
|
|
1381
1424
|
colorTertiaryHover: string;
|
|
1382
1425
|
colorTertiaryPressed: string;
|
|
1426
|
+
colorTertiaryFocus: string;
|
|
1383
1427
|
colorTertiaryDisalbed: string;
|
|
1384
1428
|
waveColorTertiary: string;
|
|
1385
1429
|
textColorTextTertiary: string;
|
|
1430
|
+
rippleColorTertiary: string;
|
|
1386
1431
|
colorQuaternary: string;
|
|
1387
1432
|
colorQuaternaryHover: string;
|
|
1388
1433
|
colorQuaternaryPressed: string;
|
|
1434
|
+
colorQuaternaryFocus: string;
|
|
1435
|
+
rippleColorQuaternary: string;
|
|
1436
|
+
waveColorQuaternary: string;
|
|
1389
1437
|
color: string;
|
|
1390
1438
|
colorHover: string;
|
|
1391
1439
|
colorPressed: string;
|
|
@@ -1613,16 +1661,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1613
1661
|
colorSecondary: string;
|
|
1614
1662
|
colorSecondaryHover: string;
|
|
1615
1663
|
colorSecondaryPressed: string;
|
|
1664
|
+
colorSecondaryFocus: string;
|
|
1665
|
+
colorSecondaryDisabled: string;
|
|
1666
|
+
textColorSecondaryDisabled: string;
|
|
1616
1667
|
waveColorSecondary: string;
|
|
1617
1668
|
colorTertiary: string;
|
|
1618
1669
|
colorTertiaryHover: string;
|
|
1619
1670
|
colorTertiaryPressed: string;
|
|
1671
|
+
colorTertiaryFocus: string;
|
|
1620
1672
|
colorTertiaryDisalbed: string;
|
|
1621
1673
|
waveColorTertiary: string;
|
|
1622
1674
|
textColorTextTertiary: string;
|
|
1675
|
+
rippleColorTertiary: string;
|
|
1623
1676
|
colorQuaternary: string;
|
|
1624
1677
|
colorQuaternaryHover: string;
|
|
1625
1678
|
colorQuaternaryPressed: string;
|
|
1679
|
+
colorQuaternaryFocus: string;
|
|
1680
|
+
rippleColorQuaternary: string;
|
|
1681
|
+
waveColorQuaternary: string;
|
|
1626
1682
|
color: string;
|
|
1627
1683
|
colorHover: string;
|
|
1628
1684
|
colorPressed: string;
|
|
@@ -1959,16 +2015,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1959
2015
|
colorSecondary: string;
|
|
1960
2016
|
colorSecondaryHover: string;
|
|
1961
2017
|
colorSecondaryPressed: string;
|
|
2018
|
+
colorSecondaryFocus: string;
|
|
2019
|
+
colorSecondaryDisabled: string;
|
|
2020
|
+
textColorSecondaryDisabled: string;
|
|
1962
2021
|
waveColorSecondary: string;
|
|
1963
2022
|
colorTertiary: string;
|
|
1964
2023
|
colorTertiaryHover: string;
|
|
1965
2024
|
colorTertiaryPressed: string;
|
|
2025
|
+
colorTertiaryFocus: string;
|
|
1966
2026
|
colorTertiaryDisalbed: string;
|
|
1967
2027
|
waveColorTertiary: string;
|
|
1968
2028
|
textColorTextTertiary: string;
|
|
2029
|
+
rippleColorTertiary: string;
|
|
1969
2030
|
colorQuaternary: string;
|
|
1970
2031
|
colorQuaternaryHover: string;
|
|
1971
2032
|
colorQuaternaryPressed: string;
|
|
2033
|
+
colorQuaternaryFocus: string;
|
|
2034
|
+
rippleColorQuaternary: string;
|
|
2035
|
+
waveColorQuaternary: string;
|
|
1972
2036
|
color: string;
|
|
1973
2037
|
colorHover: string;
|
|
1974
2038
|
colorPressed: string;
|
|
@@ -2190,16 +2254,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2190
2254
|
colorSecondary: string;
|
|
2191
2255
|
colorSecondaryHover: string;
|
|
2192
2256
|
colorSecondaryPressed: string;
|
|
2257
|
+
colorSecondaryFocus: string;
|
|
2258
|
+
colorSecondaryDisabled: string;
|
|
2259
|
+
textColorSecondaryDisabled: string;
|
|
2193
2260
|
waveColorSecondary: string;
|
|
2194
2261
|
colorTertiary: string;
|
|
2195
2262
|
colorTertiaryHover: string;
|
|
2196
2263
|
colorTertiaryPressed: string;
|
|
2264
|
+
colorTertiaryFocus: string;
|
|
2197
2265
|
colorTertiaryDisalbed: string;
|
|
2198
2266
|
waveColorTertiary: string;
|
|
2199
2267
|
textColorTextTertiary: string;
|
|
2268
|
+
rippleColorTertiary: string;
|
|
2200
2269
|
colorQuaternary: string;
|
|
2201
2270
|
colorQuaternaryHover: string;
|
|
2202
2271
|
colorQuaternaryPressed: string;
|
|
2272
|
+
colorQuaternaryFocus: string;
|
|
2273
|
+
rippleColorQuaternary: string;
|
|
2274
|
+
waveColorQuaternary: string;
|
|
2203
2275
|
color: string;
|
|
2204
2276
|
colorHover: string;
|
|
2205
2277
|
colorPressed: string;
|
|
@@ -2421,16 +2493,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2421
2493
|
colorSecondary: string;
|
|
2422
2494
|
colorSecondaryHover: string;
|
|
2423
2495
|
colorSecondaryPressed: string;
|
|
2496
|
+
colorSecondaryFocus: string;
|
|
2497
|
+
colorSecondaryDisabled: string;
|
|
2498
|
+
textColorSecondaryDisabled: string;
|
|
2424
2499
|
waveColorSecondary: string;
|
|
2425
2500
|
colorTertiary: string;
|
|
2426
2501
|
colorTertiaryHover: string;
|
|
2427
2502
|
colorTertiaryPressed: string;
|
|
2503
|
+
colorTertiaryFocus: string;
|
|
2428
2504
|
colorTertiaryDisalbed: string;
|
|
2429
2505
|
waveColorTertiary: string;
|
|
2430
2506
|
textColorTextTertiary: string;
|
|
2507
|
+
rippleColorTertiary: string;
|
|
2431
2508
|
colorQuaternary: string;
|
|
2432
2509
|
colorQuaternaryHover: string;
|
|
2433
2510
|
colorQuaternaryPressed: string;
|
|
2511
|
+
colorQuaternaryFocus: string;
|
|
2512
|
+
rippleColorQuaternary: string;
|
|
2513
|
+
waveColorQuaternary: string;
|
|
2434
2514
|
color: string;
|
|
2435
2515
|
colorHover: string;
|
|
2436
2516
|
colorPressed: string;
|
|
@@ -31,16 +31,24 @@ declare const popconfirmLight: import("../../_mixins").Theme<"Popconfirm", {
|
|
|
31
31
|
colorSecondary: string;
|
|
32
32
|
colorSecondaryHover: string;
|
|
33
33
|
colorSecondaryPressed: string;
|
|
34
|
+
colorSecondaryFocus: string;
|
|
35
|
+
colorSecondaryDisabled: string;
|
|
36
|
+
textColorSecondaryDisabled: string;
|
|
34
37
|
waveColorSecondary: string;
|
|
35
38
|
colorTertiary: string;
|
|
36
39
|
colorTertiaryHover: string;
|
|
37
40
|
colorTertiaryPressed: string;
|
|
41
|
+
colorTertiaryFocus: string;
|
|
38
42
|
colorTertiaryDisalbed: string;
|
|
39
43
|
waveColorTertiary: string;
|
|
40
44
|
textColorTextTertiary: string;
|
|
45
|
+
rippleColorTertiary: string;
|
|
41
46
|
colorQuaternary: string;
|
|
42
47
|
colorQuaternaryHover: string;
|
|
43
48
|
colorQuaternaryPressed: string;
|
|
49
|
+
colorQuaternaryFocus: string;
|
|
50
|
+
rippleColorQuaternary: string;
|
|
51
|
+
waveColorQuaternary: string;
|
|
44
52
|
color: string;
|
|
45
53
|
colorHover: string;
|
|
46
54
|
colorPressed: string;
|
|
@@ -155,8 +155,16 @@ export declare const popselectProps: {
|
|
|
155
155
|
loadingColor: string;
|
|
156
156
|
}, {
|
|
157
157
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
158
|
+
height: string;
|
|
159
|
+
width: string;
|
|
160
|
+
borderRadius: string;
|
|
158
161
|
color: string;
|
|
159
162
|
colorHover: string;
|
|
163
|
+
railInsetHorizontalBottom: string;
|
|
164
|
+
railInsetHorizontalTop: string;
|
|
165
|
+
railInsetVerticalRight: string;
|
|
166
|
+
railInsetVerticalLeft: string;
|
|
167
|
+
railColor: string;
|
|
160
168
|
}, any>;
|
|
161
169
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
162
170
|
iconSizeSmall: string;
|
|
@@ -230,8 +238,16 @@ export declare const popselectProps: {
|
|
|
230
238
|
loadingColor: string;
|
|
231
239
|
}, {
|
|
232
240
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
241
|
+
height: string;
|
|
242
|
+
width: string;
|
|
243
|
+
borderRadius: string;
|
|
233
244
|
color: string;
|
|
234
245
|
colorHover: string;
|
|
246
|
+
railInsetHorizontalBottom: string;
|
|
247
|
+
railInsetHorizontalTop: string;
|
|
248
|
+
railInsetVerticalRight: string;
|
|
249
|
+
railInsetVerticalLeft: string;
|
|
250
|
+
railColor: string;
|
|
235
251
|
}, any>;
|
|
236
252
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
237
253
|
iconSizeSmall: string;
|
|
@@ -305,8 +321,16 @@ export declare const popselectProps: {
|
|
|
305
321
|
loadingColor: string;
|
|
306
322
|
}, {
|
|
307
323
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
324
|
+
height: string;
|
|
325
|
+
width: string;
|
|
326
|
+
borderRadius: string;
|
|
308
327
|
color: string;
|
|
309
328
|
colorHover: string;
|
|
329
|
+
railInsetHorizontalBottom: string;
|
|
330
|
+
railInsetHorizontalTop: string;
|
|
331
|
+
railInsetVerticalRight: string;
|
|
332
|
+
railInsetVerticalLeft: string;
|
|
333
|
+
railColor: string;
|
|
310
334
|
}, any>;
|
|
311
335
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
312
336
|
iconSizeSmall: string;
|
|
@@ -486,8 +510,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
486
510
|
loadingColor: string;
|
|
487
511
|
}, {
|
|
488
512
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
513
|
+
height: string;
|
|
514
|
+
width: string;
|
|
515
|
+
borderRadius: string;
|
|
489
516
|
color: string;
|
|
490
517
|
colorHover: string;
|
|
518
|
+
railInsetHorizontalBottom: string;
|
|
519
|
+
railInsetHorizontalTop: string;
|
|
520
|
+
railInsetVerticalRight: string;
|
|
521
|
+
railInsetVerticalLeft: string;
|
|
522
|
+
railColor: string;
|
|
491
523
|
}, any>;
|
|
492
524
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
493
525
|
iconSizeSmall: string;
|
|
@@ -561,8 +593,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
561
593
|
loadingColor: string;
|
|
562
594
|
}, {
|
|
563
595
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
596
|
+
height: string;
|
|
597
|
+
width: string;
|
|
598
|
+
borderRadius: string;
|
|
564
599
|
color: string;
|
|
565
600
|
colorHover: string;
|
|
601
|
+
railInsetHorizontalBottom: string;
|
|
602
|
+
railInsetHorizontalTop: string;
|
|
603
|
+
railInsetVerticalRight: string;
|
|
604
|
+
railInsetVerticalLeft: string;
|
|
605
|
+
railColor: string;
|
|
566
606
|
}, any>;
|
|
567
607
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
568
608
|
iconSizeSmall: string;
|
|
@@ -636,8 +676,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
636
676
|
loadingColor: string;
|
|
637
677
|
}, {
|
|
638
678
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
679
|
+
height: string;
|
|
680
|
+
width: string;
|
|
681
|
+
borderRadius: string;
|
|
639
682
|
color: string;
|
|
640
683
|
colorHover: string;
|
|
684
|
+
railInsetHorizontalBottom: string;
|
|
685
|
+
railInsetHorizontalTop: string;
|
|
686
|
+
railInsetVerticalRight: string;
|
|
687
|
+
railInsetVerticalLeft: string;
|
|
688
|
+
railColor: string;
|
|
641
689
|
}, any>;
|
|
642
690
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
643
691
|
iconSizeSmall: string;
|
|
@@ -719,8 +767,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
719
767
|
loadingColor: string;
|
|
720
768
|
}, {
|
|
721
769
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
770
|
+
height: string;
|
|
771
|
+
width: string;
|
|
772
|
+
borderRadius: string;
|
|
722
773
|
color: string;
|
|
723
774
|
colorHover: string;
|
|
775
|
+
railInsetHorizontalBottom: string;
|
|
776
|
+
railInsetHorizontalTop: string;
|
|
777
|
+
railInsetVerticalRight: string;
|
|
778
|
+
railInsetVerticalLeft: string;
|
|
779
|
+
railColor: string;
|
|
724
780
|
}, any>;
|
|
725
781
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
726
782
|
iconSizeSmall: string;
|
|
@@ -752,8 +808,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
752
808
|
InternalSelectMenu?: {
|
|
753
809
|
peers?: {
|
|
754
810
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
811
|
+
height: string;
|
|
812
|
+
width: string;
|
|
813
|
+
borderRadius: string;
|
|
755
814
|
color: string;
|
|
756
815
|
colorHover: string;
|
|
816
|
+
railInsetHorizontalBottom: string;
|
|
817
|
+
railInsetHorizontalTop: string;
|
|
818
|
+
railInsetVerticalRight: string;
|
|
819
|
+
railInsetVerticalLeft: string;
|
|
820
|
+
railColor: string;
|
|
757
821
|
}, any>> | undefined;
|
|
758
822
|
Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
|
|
759
823
|
iconSizeSmall: string;
|
|
@@ -934,8 +998,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
934
998
|
loadingColor: string;
|
|
935
999
|
}, {
|
|
936
1000
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1001
|
+
height: string;
|
|
1002
|
+
width: string;
|
|
1003
|
+
borderRadius: string;
|
|
937
1004
|
color: string;
|
|
938
1005
|
colorHover: string;
|
|
1006
|
+
railInsetHorizontalBottom: string;
|
|
1007
|
+
railInsetHorizontalTop: string;
|
|
1008
|
+
railInsetVerticalRight: string;
|
|
1009
|
+
railInsetVerticalLeft: string;
|
|
1010
|
+
railColor: string;
|
|
939
1011
|
}, any>;
|
|
940
1012
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
941
1013
|
iconSizeSmall: string;
|
|
@@ -1009,8 +1081,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1009
1081
|
loadingColor: string;
|
|
1010
1082
|
}, {
|
|
1011
1083
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1084
|
+
height: string;
|
|
1085
|
+
width: string;
|
|
1086
|
+
borderRadius: string;
|
|
1012
1087
|
color: string;
|
|
1013
1088
|
colorHover: string;
|
|
1089
|
+
railInsetHorizontalBottom: string;
|
|
1090
|
+
railInsetHorizontalTop: string;
|
|
1091
|
+
railInsetVerticalRight: string;
|
|
1092
|
+
railInsetVerticalLeft: string;
|
|
1093
|
+
railColor: string;
|
|
1014
1094
|
}, any>;
|
|
1015
1095
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1016
1096
|
iconSizeSmall: string;
|
|
@@ -1084,8 +1164,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1084
1164
|
loadingColor: string;
|
|
1085
1165
|
}, {
|
|
1086
1166
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1167
|
+
height: string;
|
|
1168
|
+
width: string;
|
|
1169
|
+
borderRadius: string;
|
|
1087
1170
|
color: string;
|
|
1088
1171
|
colorHover: string;
|
|
1172
|
+
railInsetHorizontalBottom: string;
|
|
1173
|
+
railInsetHorizontalTop: string;
|
|
1174
|
+
railInsetVerticalRight: string;
|
|
1175
|
+
railInsetVerticalLeft: string;
|
|
1176
|
+
railColor: string;
|
|
1089
1177
|
}, any>;
|
|
1090
1178
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1091
1179
|
iconSizeSmall: string;
|
|
@@ -117,8 +117,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
117
117
|
loadingColor: string;
|
|
118
118
|
}, {
|
|
119
119
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
120
|
+
height: string;
|
|
121
|
+
width: string;
|
|
122
|
+
borderRadius: string;
|
|
120
123
|
color: string;
|
|
121
124
|
colorHover: string;
|
|
125
|
+
railInsetHorizontalBottom: string;
|
|
126
|
+
railInsetHorizontalTop: string;
|
|
127
|
+
railInsetVerticalRight: string;
|
|
128
|
+
railInsetVerticalLeft: string;
|
|
129
|
+
railColor: string;
|
|
122
130
|
}, any>;
|
|
123
131
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
124
132
|
iconSizeSmall: string;
|
|
@@ -150,8 +158,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
150
158
|
InternalSelectMenu?: {
|
|
151
159
|
peers?: {
|
|
152
160
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
161
|
+
height: string;
|
|
162
|
+
width: string;
|
|
163
|
+
borderRadius: string;
|
|
153
164
|
color: string;
|
|
154
165
|
colorHover: string;
|
|
166
|
+
railInsetHorizontalBottom: string;
|
|
167
|
+
railInsetHorizontalTop: string;
|
|
168
|
+
railInsetVerticalRight: string;
|
|
169
|
+
railInsetVerticalLeft: string;
|
|
170
|
+
railColor: string;
|
|
155
171
|
}, any>> | undefined;
|
|
156
172
|
Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
|
|
157
173
|
iconSizeSmall: string;
|
|
@@ -53,8 +53,16 @@ declare const popselectLight: import("../../_mixins").Theme<"Popselect", {
|
|
|
53
53
|
loadingColor: string;
|
|
54
54
|
}, {
|
|
55
55
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
56
|
+
height: string;
|
|
57
|
+
width: string;
|
|
58
|
+
borderRadius: string;
|
|
56
59
|
color: string;
|
|
57
60
|
colorHover: string;
|
|
61
|
+
railInsetHorizontalBottom: string;
|
|
62
|
+
railInsetHorizontalTop: string;
|
|
63
|
+
railInsetVerticalRight: string;
|
|
64
|
+
railInsetVerticalLeft: string;
|
|
65
|
+
railColor: string;
|
|
58
66
|
}, any>;
|
|
59
67
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
60
68
|
iconSizeSmall: string;
|
|
@@ -19,16 +19,40 @@ export declare const scrollbarProps: {
|
|
|
19
19
|
readonly onScroll: PropType<(e: Event) => void>;
|
|
20
20
|
readonly size: NumberConstructor;
|
|
21
21
|
readonly theme: PropType<import("../../_mixins").Theme<"Scrollbar", {
|
|
22
|
+
height: string;
|
|
23
|
+
width: string;
|
|
24
|
+
borderRadius: string;
|
|
22
25
|
color: string;
|
|
23
26
|
colorHover: string;
|
|
27
|
+
railInsetHorizontalBottom: string;
|
|
28
|
+
railInsetHorizontalTop: string;
|
|
29
|
+
railInsetVerticalRight: string;
|
|
30
|
+
railInsetVerticalLeft: string;
|
|
31
|
+
railColor: string;
|
|
24
32
|
}, any>>;
|
|
25
33
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
34
|
+
height: string;
|
|
35
|
+
width: string;
|
|
36
|
+
borderRadius: string;
|
|
26
37
|
color: string;
|
|
27
38
|
colorHover: string;
|
|
39
|
+
railInsetHorizontalBottom: string;
|
|
40
|
+
railInsetHorizontalTop: string;
|
|
41
|
+
railInsetVerticalRight: string;
|
|
42
|
+
railInsetVerticalLeft: string;
|
|
43
|
+
railColor: string;
|
|
28
44
|
}, any>>>;
|
|
29
45
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
46
|
+
height: string;
|
|
47
|
+
width: string;
|
|
48
|
+
borderRadius: string;
|
|
30
49
|
color: string;
|
|
31
50
|
colorHover: string;
|
|
51
|
+
railInsetHorizontalBottom: string;
|
|
52
|
+
railInsetHorizontalTop: string;
|
|
53
|
+
railInsetVerticalRight: string;
|
|
54
|
+
railInsetVerticalLeft: string;
|
|
55
|
+
railColor: string;
|
|
32
56
|
}, any>>>;
|
|
33
57
|
};
|
|
34
58
|
export type ScrollbarProps = ExtractPublicPropTypes<typeof scrollbarProps>;
|
|
@@ -38,16 +62,40 @@ declare const Scrollbar: import("vue").DefineComponent<{
|
|
|
38
62
|
readonly onScroll: PropType<(e: Event) => void>;
|
|
39
63
|
readonly size: NumberConstructor;
|
|
40
64
|
readonly theme: PropType<import("../../_mixins").Theme<"Scrollbar", {
|
|
65
|
+
height: string;
|
|
66
|
+
width: string;
|
|
67
|
+
borderRadius: string;
|
|
41
68
|
color: string;
|
|
42
69
|
colorHover: string;
|
|
70
|
+
railInsetHorizontalBottom: string;
|
|
71
|
+
railInsetHorizontalTop: string;
|
|
72
|
+
railInsetVerticalRight: string;
|
|
73
|
+
railInsetVerticalLeft: string;
|
|
74
|
+
railColor: string;
|
|
43
75
|
}, any>>;
|
|
44
76
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
77
|
+
height: string;
|
|
78
|
+
width: string;
|
|
79
|
+
borderRadius: string;
|
|
45
80
|
color: string;
|
|
46
81
|
colorHover: string;
|
|
82
|
+
railInsetHorizontalBottom: string;
|
|
83
|
+
railInsetHorizontalTop: string;
|
|
84
|
+
railInsetVerticalRight: string;
|
|
85
|
+
railInsetVerticalLeft: string;
|
|
86
|
+
railColor: string;
|
|
47
87
|
}, any>>>;
|
|
48
88
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
89
|
+
height: string;
|
|
90
|
+
width: string;
|
|
91
|
+
borderRadius: string;
|
|
49
92
|
color: string;
|
|
50
93
|
colorHover: string;
|
|
94
|
+
railInsetHorizontalBottom: string;
|
|
95
|
+
railInsetHorizontalTop: string;
|
|
96
|
+
railInsetVerticalRight: string;
|
|
97
|
+
railInsetVerticalLeft: string;
|
|
98
|
+
railColor: string;
|
|
51
99
|
}, any>>>;
|
|
52
100
|
}, {
|
|
53
101
|
scrollbarInstRef: import("vue").Ref<{
|
|
@@ -70,16 +118,40 @@ declare const Scrollbar: import("vue").DefineComponent<{
|
|
|
70
118
|
readonly onScroll: PropType<(e: Event) => void>;
|
|
71
119
|
readonly size: NumberConstructor;
|
|
72
120
|
readonly theme: PropType<import("../../_mixins").Theme<"Scrollbar", {
|
|
121
|
+
height: string;
|
|
122
|
+
width: string;
|
|
123
|
+
borderRadius: string;
|
|
73
124
|
color: string;
|
|
74
125
|
colorHover: string;
|
|
126
|
+
railInsetHorizontalBottom: string;
|
|
127
|
+
railInsetHorizontalTop: string;
|
|
128
|
+
railInsetVerticalRight: string;
|
|
129
|
+
railInsetVerticalLeft: string;
|
|
130
|
+
railColor: string;
|
|
75
131
|
}, any>>;
|
|
76
132
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
133
|
+
height: string;
|
|
134
|
+
width: string;
|
|
135
|
+
borderRadius: string;
|
|
77
136
|
color: string;
|
|
78
137
|
colorHover: string;
|
|
138
|
+
railInsetHorizontalBottom: string;
|
|
139
|
+
railInsetHorizontalTop: string;
|
|
140
|
+
railInsetVerticalRight: string;
|
|
141
|
+
railInsetVerticalLeft: string;
|
|
142
|
+
railColor: string;
|
|
79
143
|
}, any>>>;
|
|
80
144
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
145
|
+
height: string;
|
|
146
|
+
width: string;
|
|
147
|
+
borderRadius: string;
|
|
81
148
|
color: string;
|
|
82
149
|
colorHover: string;
|
|
150
|
+
railInsetHorizontalBottom: string;
|
|
151
|
+
railInsetHorizontalTop: string;
|
|
152
|
+
railInsetVerticalRight: string;
|
|
153
|
+
railInsetVerticalLeft: string;
|
|
154
|
+
railColor: string;
|
|
83
155
|
}, any>>>;
|
|
84
156
|
}>>, {
|
|
85
157
|
readonly xScrollable: boolean;
|