@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
|
@@ -81,16 +81,24 @@ export declare const UDialog: import("vue").DefineComponent<{
|
|
|
81
81
|
colorSecondary: string;
|
|
82
82
|
colorSecondaryHover: string;
|
|
83
83
|
colorSecondaryPressed: string;
|
|
84
|
+
colorSecondaryFocus: string;
|
|
85
|
+
colorSecondaryDisabled: string;
|
|
86
|
+
textColorSecondaryDisabled: string;
|
|
84
87
|
waveColorSecondary: string;
|
|
85
88
|
colorTertiary: string;
|
|
86
89
|
colorTertiaryHover: string;
|
|
87
90
|
colorTertiaryPressed: string;
|
|
91
|
+
colorTertiaryFocus: string;
|
|
88
92
|
colorTertiaryDisalbed: string;
|
|
89
93
|
waveColorTertiary: string;
|
|
90
94
|
textColorTextTertiary: string;
|
|
95
|
+
rippleColorTertiary: string;
|
|
91
96
|
colorQuaternary: string;
|
|
92
97
|
colorQuaternaryHover: string;
|
|
93
98
|
colorQuaternaryPressed: string;
|
|
99
|
+
colorQuaternaryFocus: string;
|
|
100
|
+
rippleColorQuaternary: string;
|
|
101
|
+
waveColorQuaternary: string;
|
|
94
102
|
color: string;
|
|
95
103
|
colorHover: string;
|
|
96
104
|
colorPressed: string;
|
|
@@ -327,16 +335,24 @@ export declare const UDialog: import("vue").DefineComponent<{
|
|
|
327
335
|
colorSecondary: string;
|
|
328
336
|
colorSecondaryHover: string;
|
|
329
337
|
colorSecondaryPressed: string;
|
|
338
|
+
colorSecondaryFocus: string;
|
|
339
|
+
colorSecondaryDisabled: string;
|
|
340
|
+
textColorSecondaryDisabled: string;
|
|
330
341
|
waveColorSecondary: string;
|
|
331
342
|
colorTertiary: string;
|
|
332
343
|
colorTertiaryHover: string;
|
|
333
344
|
colorTertiaryPressed: string;
|
|
345
|
+
colorTertiaryFocus: string;
|
|
334
346
|
colorTertiaryDisalbed: string;
|
|
335
347
|
waveColorTertiary: string;
|
|
336
348
|
textColorTextTertiary: string;
|
|
349
|
+
rippleColorTertiary: string;
|
|
337
350
|
colorQuaternary: string;
|
|
338
351
|
colorQuaternaryHover: string;
|
|
339
352
|
colorQuaternaryPressed: string;
|
|
353
|
+
colorQuaternaryFocus: string;
|
|
354
|
+
rippleColorQuaternary: string;
|
|
355
|
+
waveColorQuaternary: string;
|
|
340
356
|
color: string;
|
|
341
357
|
colorHover: string;
|
|
342
358
|
colorPressed: string;
|
|
@@ -573,16 +589,24 @@ export declare const UDialog: import("vue").DefineComponent<{
|
|
|
573
589
|
colorSecondary: string;
|
|
574
590
|
colorSecondaryHover: string;
|
|
575
591
|
colorSecondaryPressed: string;
|
|
592
|
+
colorSecondaryFocus: string;
|
|
593
|
+
colorSecondaryDisabled: string;
|
|
594
|
+
textColorSecondaryDisabled: string;
|
|
576
595
|
waveColorSecondary: string;
|
|
577
596
|
colorTertiary: string;
|
|
578
597
|
colorTertiaryHover: string;
|
|
579
598
|
colorTertiaryPressed: string;
|
|
599
|
+
colorTertiaryFocus: string;
|
|
580
600
|
colorTertiaryDisalbed: string;
|
|
581
601
|
waveColorTertiary: string;
|
|
582
602
|
textColorTextTertiary: string;
|
|
603
|
+
rippleColorTertiary: string;
|
|
583
604
|
colorQuaternary: string;
|
|
584
605
|
colorQuaternaryHover: string;
|
|
585
606
|
colorQuaternaryPressed: string;
|
|
607
|
+
colorQuaternaryFocus: string;
|
|
608
|
+
rippleColorQuaternary: string;
|
|
609
|
+
waveColorQuaternary: string;
|
|
586
610
|
color: string;
|
|
587
611
|
colorHover: string;
|
|
588
612
|
colorPressed: string;
|
|
@@ -825,16 +849,24 @@ export declare const UDialog: import("vue").DefineComponent<{
|
|
|
825
849
|
colorSecondary: string;
|
|
826
850
|
colorSecondaryHover: string;
|
|
827
851
|
colorSecondaryPressed: string;
|
|
852
|
+
colorSecondaryFocus: string;
|
|
853
|
+
colorSecondaryDisabled: string;
|
|
854
|
+
textColorSecondaryDisabled: string;
|
|
828
855
|
waveColorSecondary: string;
|
|
829
856
|
colorTertiary: string;
|
|
830
857
|
colorTertiaryHover: string;
|
|
831
858
|
colorTertiaryPressed: string;
|
|
859
|
+
colorTertiaryFocus: string;
|
|
832
860
|
colorTertiaryDisalbed: string;
|
|
833
861
|
waveColorTertiary: string;
|
|
834
862
|
textColorTextTertiary: string;
|
|
863
|
+
rippleColorTertiary: string;
|
|
835
864
|
colorQuaternary: string;
|
|
836
865
|
colorQuaternaryHover: string;
|
|
837
866
|
colorQuaternaryPressed: string;
|
|
867
|
+
colorQuaternaryFocus: string;
|
|
868
|
+
rippleColorQuaternary: string;
|
|
869
|
+
waveColorQuaternary: string;
|
|
838
870
|
color: string;
|
|
839
871
|
colorHover: string;
|
|
840
872
|
colorPressed: string;
|
|
@@ -1141,16 +1173,24 @@ export declare const UDialog: import("vue").DefineComponent<{
|
|
|
1141
1173
|
colorSecondary: string;
|
|
1142
1174
|
colorSecondaryHover: string;
|
|
1143
1175
|
colorSecondaryPressed: string;
|
|
1176
|
+
colorSecondaryFocus: string;
|
|
1177
|
+
colorSecondaryDisabled: string;
|
|
1178
|
+
textColorSecondaryDisabled: string;
|
|
1144
1179
|
waveColorSecondary: string;
|
|
1145
1180
|
colorTertiary: string;
|
|
1146
1181
|
colorTertiaryHover: string;
|
|
1147
1182
|
colorTertiaryPressed: string;
|
|
1183
|
+
colorTertiaryFocus: string;
|
|
1148
1184
|
colorTertiaryDisalbed: string;
|
|
1149
1185
|
waveColorTertiary: string;
|
|
1150
1186
|
textColorTextTertiary: string;
|
|
1187
|
+
rippleColorTertiary: string;
|
|
1151
1188
|
colorQuaternary: string;
|
|
1152
1189
|
colorQuaternaryHover: string;
|
|
1153
1190
|
colorQuaternaryPressed: string;
|
|
1191
|
+
colorQuaternaryFocus: string;
|
|
1192
|
+
rippleColorQuaternary: string;
|
|
1193
|
+
waveColorQuaternary: string;
|
|
1154
1194
|
color: string;
|
|
1155
1195
|
colorHover: string;
|
|
1156
1196
|
colorPressed: string;
|
|
@@ -1387,16 +1427,24 @@ export declare const UDialog: import("vue").DefineComponent<{
|
|
|
1387
1427
|
colorSecondary: string;
|
|
1388
1428
|
colorSecondaryHover: string;
|
|
1389
1429
|
colorSecondaryPressed: string;
|
|
1430
|
+
colorSecondaryFocus: string;
|
|
1431
|
+
colorSecondaryDisabled: string;
|
|
1432
|
+
textColorSecondaryDisabled: string;
|
|
1390
1433
|
waveColorSecondary: string;
|
|
1391
1434
|
colorTertiary: string;
|
|
1392
1435
|
colorTertiaryHover: string;
|
|
1393
1436
|
colorTertiaryPressed: string;
|
|
1437
|
+
colorTertiaryFocus: string;
|
|
1394
1438
|
colorTertiaryDisalbed: string;
|
|
1395
1439
|
waveColorTertiary: string;
|
|
1396
1440
|
textColorTextTertiary: string;
|
|
1441
|
+
rippleColorTertiary: string;
|
|
1397
1442
|
colorQuaternary: string;
|
|
1398
1443
|
colorQuaternaryHover: string;
|
|
1399
1444
|
colorQuaternaryPressed: string;
|
|
1445
|
+
colorQuaternaryFocus: string;
|
|
1446
|
+
rippleColorQuaternary: string;
|
|
1447
|
+
waveColorQuaternary: string;
|
|
1400
1448
|
color: string;
|
|
1401
1449
|
colorHover: string;
|
|
1402
1450
|
colorPressed: string;
|
|
@@ -1633,16 +1681,24 @@ export declare const UDialog: import("vue").DefineComponent<{
|
|
|
1633
1681
|
colorSecondary: string;
|
|
1634
1682
|
colorSecondaryHover: string;
|
|
1635
1683
|
colorSecondaryPressed: string;
|
|
1684
|
+
colorSecondaryFocus: string;
|
|
1685
|
+
colorSecondaryDisabled: string;
|
|
1686
|
+
textColorSecondaryDisabled: string;
|
|
1636
1687
|
waveColorSecondary: string;
|
|
1637
1688
|
colorTertiary: string;
|
|
1638
1689
|
colorTertiaryHover: string;
|
|
1639
1690
|
colorTertiaryPressed: string;
|
|
1691
|
+
colorTertiaryFocus: string;
|
|
1640
1692
|
colorTertiaryDisalbed: string;
|
|
1641
1693
|
waveColorTertiary: string;
|
|
1642
1694
|
textColorTextTertiary: string;
|
|
1695
|
+
rippleColorTertiary: string;
|
|
1643
1696
|
colorQuaternary: string;
|
|
1644
1697
|
colorQuaternaryHover: string;
|
|
1645
1698
|
colorQuaternaryPressed: string;
|
|
1699
|
+
colorQuaternaryFocus: string;
|
|
1700
|
+
rippleColorQuaternary: string;
|
|
1701
|
+
waveColorQuaternary: string;
|
|
1646
1702
|
color: string;
|
|
1647
1703
|
colorHover: string;
|
|
1648
1704
|
colorPressed: string;
|
|
@@ -57,8 +57,6 @@ export declare const UDialogProvider: import("vue").DefineComponent<{
|
|
|
57
57
|
onAfterEnter?: (() => void) | undefined;
|
|
58
58
|
transformOrigin?: "center" | "mouse" | undefined;
|
|
59
59
|
onClose?: (() => Promise<unknown> | unknown) | undefined;
|
|
60
|
-
autoFocus?: boolean | undefined;
|
|
61
|
-
onEsc?: (() => void) | undefined;
|
|
62
60
|
iconPlacement?: import("./interface").IconPlacement | undefined;
|
|
63
61
|
positiveButtonProps?: {
|
|
64
62
|
type?: import("../../button/src/interface").Type | undefined;
|
|
@@ -84,16 +82,24 @@ export declare const UDialogProvider: import("vue").DefineComponent<{
|
|
|
84
82
|
colorSecondary?: string | undefined;
|
|
85
83
|
colorSecondaryHover?: string | undefined;
|
|
86
84
|
colorSecondaryPressed?: string | undefined;
|
|
85
|
+
colorSecondaryFocus?: string | undefined;
|
|
86
|
+
colorSecondaryDisabled?: string | undefined;
|
|
87
|
+
textColorSecondaryDisabled?: string | undefined;
|
|
87
88
|
waveColorSecondary?: string | undefined;
|
|
88
89
|
colorTertiary?: string | undefined;
|
|
89
90
|
colorTertiaryHover?: string | undefined;
|
|
90
91
|
colorTertiaryPressed?: string | undefined;
|
|
92
|
+
colorTertiaryFocus?: string | undefined;
|
|
91
93
|
colorTertiaryDisalbed?: string | undefined;
|
|
92
94
|
waveColorTertiary?: string | undefined;
|
|
93
95
|
textColorTextTertiary?: string | undefined;
|
|
96
|
+
rippleColorTertiary?: string | undefined;
|
|
94
97
|
colorQuaternary?: string | undefined;
|
|
95
98
|
colorQuaternaryHover?: string | undefined;
|
|
96
99
|
colorQuaternaryPressed?: string | undefined;
|
|
100
|
+
colorQuaternaryFocus?: string | undefined;
|
|
101
|
+
rippleColorQuaternary?: string | undefined;
|
|
102
|
+
waveColorQuaternary?: string | undefined;
|
|
97
103
|
color?: string | undefined;
|
|
98
104
|
colorHover?: string | undefined;
|
|
99
105
|
colorPressed?: string | undefined;
|
|
@@ -443,16 +449,24 @@ export declare const UDialogProvider: import("vue").DefineComponent<{
|
|
|
443
449
|
colorSecondary?: string | undefined;
|
|
444
450
|
colorSecondaryHover?: string | undefined;
|
|
445
451
|
colorSecondaryPressed?: string | undefined;
|
|
452
|
+
colorSecondaryFocus?: string | undefined;
|
|
453
|
+
colorSecondaryDisabled?: string | undefined;
|
|
454
|
+
textColorSecondaryDisabled?: string | undefined;
|
|
446
455
|
waveColorSecondary?: string | undefined;
|
|
447
456
|
colorTertiary?: string | undefined;
|
|
448
457
|
colorTertiaryHover?: string | undefined;
|
|
449
458
|
colorTertiaryPressed?: string | undefined;
|
|
459
|
+
colorTertiaryFocus?: string | undefined;
|
|
450
460
|
colorTertiaryDisalbed?: string | undefined;
|
|
451
461
|
waveColorTertiary?: string | undefined;
|
|
452
462
|
textColorTextTertiary?: string | undefined;
|
|
463
|
+
rippleColorTertiary?: string | undefined;
|
|
453
464
|
colorQuaternary?: string | undefined;
|
|
454
465
|
colorQuaternaryHover?: string | undefined;
|
|
455
466
|
colorQuaternaryPressed?: string | undefined;
|
|
467
|
+
colorQuaternaryFocus?: string | undefined;
|
|
468
|
+
rippleColorQuaternary?: string | undefined;
|
|
469
|
+
waveColorQuaternary?: string | undefined;
|
|
456
470
|
color?: string | undefined;
|
|
457
471
|
colorHover?: string | undefined;
|
|
458
472
|
colorPressed?: string | undefined;
|
|
@@ -780,7 +794,9 @@ export declare const UDialogProvider: import("vue").DefineComponent<{
|
|
|
780
794
|
} | undefined;
|
|
781
795
|
onPositiveClick?: ((e: MouseEvent) => Promise<unknown> | unknown) | undefined;
|
|
782
796
|
onNegativeClick?: ((e: MouseEvent) => Promise<unknown> | unknown) | undefined;
|
|
797
|
+
autoFocus?: boolean | undefined;
|
|
783
798
|
blockScroll?: boolean | undefined;
|
|
799
|
+
onEsc?: (() => void) | undefined;
|
|
784
800
|
onMaskClick?: ((e: MouseEvent) => void) | undefined;
|
|
785
801
|
maskClosable?: boolean | undefined;
|
|
786
802
|
closeOnEsc?: boolean | undefined;
|
|
@@ -89,16 +89,24 @@ declare const dialogLight: import("../../_mixins").Theme<"Dialog", {
|
|
|
89
89
|
colorSecondary: string;
|
|
90
90
|
colorSecondaryHover: string;
|
|
91
91
|
colorSecondaryPressed: string;
|
|
92
|
+
colorSecondaryFocus: string;
|
|
93
|
+
colorSecondaryDisabled: string;
|
|
94
|
+
textColorSecondaryDisabled: string;
|
|
92
95
|
waveColorSecondary: string;
|
|
93
96
|
colorTertiary: string;
|
|
94
97
|
colorTertiaryHover: string;
|
|
95
98
|
colorTertiaryPressed: string;
|
|
99
|
+
colorTertiaryFocus: string;
|
|
96
100
|
colorTertiaryDisalbed: string;
|
|
97
101
|
waveColorTertiary: string;
|
|
98
102
|
textColorTextTertiary: string;
|
|
103
|
+
rippleColorTertiary: string;
|
|
99
104
|
colorQuaternary: string;
|
|
100
105
|
colorQuaternaryHover: string;
|
|
101
106
|
colorQuaternaryPressed: string;
|
|
107
|
+
colorQuaternaryFocus: string;
|
|
108
|
+
rippleColorQuaternary: string;
|
|
109
|
+
waveColorQuaternary: string;
|
|
102
110
|
color: string;
|
|
103
111
|
colorHover: string;
|
|
104
112
|
colorPressed: string;
|
|
@@ -116,8 +116,16 @@ export declare const drawerProps: {
|
|
|
116
116
|
contentBorderRadius: string;
|
|
117
117
|
}, {
|
|
118
118
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
119
|
+
height: string;
|
|
120
|
+
width: string;
|
|
121
|
+
borderRadius: string;
|
|
119
122
|
color: string;
|
|
120
123
|
colorHover: string;
|
|
124
|
+
railInsetHorizontalBottom: string;
|
|
125
|
+
railInsetHorizontalTop: string;
|
|
126
|
+
railInsetVerticalRight: string;
|
|
127
|
+
railInsetVerticalLeft: string;
|
|
128
|
+
railColor: string;
|
|
121
129
|
}, any>;
|
|
122
130
|
}>>;
|
|
123
131
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
|
|
@@ -153,8 +161,16 @@ export declare const drawerProps: {
|
|
|
153
161
|
contentBorderRadius: string;
|
|
154
162
|
}, {
|
|
155
163
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
164
|
+
height: string;
|
|
165
|
+
width: string;
|
|
166
|
+
borderRadius: string;
|
|
156
167
|
color: string;
|
|
157
168
|
colorHover: string;
|
|
169
|
+
railInsetHorizontalBottom: string;
|
|
170
|
+
railInsetHorizontalTop: string;
|
|
171
|
+
railInsetVerticalRight: string;
|
|
172
|
+
railInsetVerticalLeft: string;
|
|
173
|
+
railColor: string;
|
|
158
174
|
}, any>;
|
|
159
175
|
}>>>;
|
|
160
176
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
|
|
@@ -190,8 +206,16 @@ export declare const drawerProps: {
|
|
|
190
206
|
contentBorderRadius: string;
|
|
191
207
|
}, {
|
|
192
208
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
209
|
+
height: string;
|
|
210
|
+
width: string;
|
|
211
|
+
borderRadius: string;
|
|
193
212
|
color: string;
|
|
194
213
|
colorHover: string;
|
|
214
|
+
railInsetHorizontalBottom: string;
|
|
215
|
+
railInsetHorizontalTop: string;
|
|
216
|
+
railInsetVerticalRight: string;
|
|
217
|
+
railInsetVerticalLeft: string;
|
|
218
|
+
railColor: string;
|
|
195
219
|
}, any>;
|
|
196
220
|
}>>>;
|
|
197
221
|
};
|
|
@@ -309,8 +333,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
309
333
|
contentBorderRadius: string;
|
|
310
334
|
}, {
|
|
311
335
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
336
|
+
height: string;
|
|
337
|
+
width: string;
|
|
338
|
+
borderRadius: string;
|
|
312
339
|
color: string;
|
|
313
340
|
colorHover: string;
|
|
341
|
+
railInsetHorizontalBottom: string;
|
|
342
|
+
railInsetHorizontalTop: string;
|
|
343
|
+
railInsetVerticalRight: string;
|
|
344
|
+
railInsetVerticalLeft: string;
|
|
345
|
+
railColor: string;
|
|
314
346
|
}, any>;
|
|
315
347
|
}>>;
|
|
316
348
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
|
|
@@ -346,8 +378,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
346
378
|
contentBorderRadius: string;
|
|
347
379
|
}, {
|
|
348
380
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
381
|
+
height: string;
|
|
382
|
+
width: string;
|
|
383
|
+
borderRadius: string;
|
|
349
384
|
color: string;
|
|
350
385
|
colorHover: string;
|
|
386
|
+
railInsetHorizontalBottom: string;
|
|
387
|
+
railInsetHorizontalTop: string;
|
|
388
|
+
railInsetVerticalRight: string;
|
|
389
|
+
railInsetVerticalLeft: string;
|
|
390
|
+
railColor: string;
|
|
351
391
|
}, any>;
|
|
352
392
|
}>>>;
|
|
353
393
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
|
|
@@ -383,8 +423,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
383
423
|
contentBorderRadius: string;
|
|
384
424
|
}, {
|
|
385
425
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
426
|
+
height: string;
|
|
427
|
+
width: string;
|
|
428
|
+
borderRadius: string;
|
|
386
429
|
color: string;
|
|
387
430
|
colorHover: string;
|
|
431
|
+
railInsetHorizontalBottom: string;
|
|
432
|
+
railInsetHorizontalTop: string;
|
|
433
|
+
railInsetVerticalRight: string;
|
|
434
|
+
railInsetVerticalLeft: string;
|
|
435
|
+
railColor: string;
|
|
388
436
|
}, any>;
|
|
389
437
|
}>>>;
|
|
390
438
|
}, {
|
|
@@ -429,8 +477,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
429
477
|
};
|
|
430
478
|
peers: {
|
|
431
479
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
480
|
+
height: string;
|
|
481
|
+
width: string;
|
|
482
|
+
borderRadius: string;
|
|
432
483
|
color: string;
|
|
433
484
|
colorHover: string;
|
|
485
|
+
railInsetHorizontalBottom: string;
|
|
486
|
+
railInsetHorizontalTop: string;
|
|
487
|
+
railInsetVerticalRight: string;
|
|
488
|
+
railInsetVerticalLeft: string;
|
|
489
|
+
railColor: string;
|
|
434
490
|
}, any>;
|
|
435
491
|
};
|
|
436
492
|
peerOverrides: {
|
|
@@ -592,8 +648,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
592
648
|
contentBorderRadius: string;
|
|
593
649
|
}, {
|
|
594
650
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
651
|
+
height: string;
|
|
652
|
+
width: string;
|
|
653
|
+
borderRadius: string;
|
|
595
654
|
color: string;
|
|
596
655
|
colorHover: string;
|
|
656
|
+
railInsetHorizontalBottom: string;
|
|
657
|
+
railInsetHorizontalTop: string;
|
|
658
|
+
railInsetVerticalRight: string;
|
|
659
|
+
railInsetVerticalLeft: string;
|
|
660
|
+
railColor: string;
|
|
597
661
|
}, any>;
|
|
598
662
|
}>>;
|
|
599
663
|
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
|
|
@@ -629,8 +693,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
629
693
|
contentBorderRadius: string;
|
|
630
694
|
}, {
|
|
631
695
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
696
|
+
height: string;
|
|
697
|
+
width: string;
|
|
698
|
+
borderRadius: string;
|
|
632
699
|
color: string;
|
|
633
700
|
colorHover: string;
|
|
701
|
+
railInsetHorizontalBottom: string;
|
|
702
|
+
railInsetHorizontalTop: string;
|
|
703
|
+
railInsetVerticalRight: string;
|
|
704
|
+
railInsetVerticalLeft: string;
|
|
705
|
+
railColor: string;
|
|
634
706
|
}, any>;
|
|
635
707
|
}>>>;
|
|
636
708
|
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
|
|
@@ -666,8 +738,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
666
738
|
contentBorderRadius: string;
|
|
667
739
|
}, {
|
|
668
740
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
741
|
+
height: string;
|
|
742
|
+
width: string;
|
|
743
|
+
borderRadius: string;
|
|
669
744
|
color: string;
|
|
670
745
|
colorHover: string;
|
|
746
|
+
railInsetHorizontalBottom: string;
|
|
747
|
+
railInsetHorizontalTop: string;
|
|
748
|
+
railInsetVerticalRight: string;
|
|
749
|
+
railInsetVerticalLeft: string;
|
|
750
|
+
railColor: string;
|
|
671
751
|
}, any>;
|
|
672
752
|
}>>>;
|
|
673
753
|
}>>, {
|
|
@@ -677,10 +757,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
677
757
|
readonly show: boolean;
|
|
678
758
|
readonly displayDirective: "show" | "if";
|
|
679
759
|
readonly placement: Placement;
|
|
680
|
-
readonly autoFocus: boolean;
|
|
681
760
|
readonly resizable: boolean;
|
|
682
761
|
readonly rounded: boolean;
|
|
683
762
|
readonly trapFocus: boolean;
|
|
763
|
+
readonly autoFocus: boolean;
|
|
684
764
|
readonly blockScroll: boolean;
|
|
685
765
|
readonly maskClosable: boolean;
|
|
686
766
|
readonly closeOnEsc: boolean;
|
|
@@ -83,8 +83,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
83
83
|
};
|
|
84
84
|
peers: {
|
|
85
85
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
86
|
+
height: string;
|
|
87
|
+
width: string;
|
|
88
|
+
borderRadius: string;
|
|
86
89
|
color: string;
|
|
87
90
|
colorHover: string;
|
|
91
|
+
railInsetHorizontalBottom: string;
|
|
92
|
+
railInsetHorizontalTop: string;
|
|
93
|
+
railInsetVerticalRight: string;
|
|
94
|
+
railInsetVerticalLeft: string;
|
|
95
|
+
railColor: string;
|
|
88
96
|
}, any>;
|
|
89
97
|
};
|
|
90
98
|
peerOverrides: {
|
|
@@ -147,10 +155,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
147
155
|
onEsc: PropType<(e: KeyboardEvent) => void>;
|
|
148
156
|
}>>, {
|
|
149
157
|
show: boolean | undefined;
|
|
150
|
-
autoFocus: boolean;
|
|
151
158
|
resizable: boolean;
|
|
152
159
|
rounded: boolean;
|
|
153
160
|
trapFocus: boolean;
|
|
161
|
+
autoFocus: boolean;
|
|
154
162
|
blockScroll: boolean;
|
|
155
163
|
}, {}>;
|
|
156
164
|
export default _default;
|
|
@@ -95,8 +95,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
95
95
|
};
|
|
96
96
|
peers: {
|
|
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
|
peerOverrides: {
|
|
@@ -65,8 +65,16 @@ declare const drawerLight: import("../../_mixins").Theme<"Drawer", {
|
|
|
65
65
|
contentBorderRadius: string;
|
|
66
66
|
}, {
|
|
67
67
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
68
|
+
height: string;
|
|
69
|
+
width: string;
|
|
70
|
+
borderRadius: string;
|
|
68
71
|
color: string;
|
|
69
72
|
colorHover: string;
|
|
73
|
+
railInsetHorizontalBottom: string;
|
|
74
|
+
railInsetHorizontalTop: string;
|
|
75
|
+
railInsetVerticalRight: string;
|
|
76
|
+
railInsetVerticalLeft: string;
|
|
77
|
+
railColor: string;
|
|
70
78
|
}, any>;
|
|
71
79
|
}>;
|
|
72
80
|
export default drawerLight;
|
|
@@ -1108,7 +1108,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1108
1108
|
readonly trigger: import("../../popover").PopoverTrigger;
|
|
1109
1109
|
readonly flip: boolean;
|
|
1110
1110
|
readonly labelField: string;
|
|
1111
|
-
readonly keyField: string;
|
|
1112
1111
|
readonly overlap: boolean;
|
|
1113
1112
|
readonly showArrow: boolean;
|
|
1114
1113
|
readonly delay: number;
|
|
@@ -1127,5 +1126,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1127
1126
|
readonly options: DropdownMixedOption[];
|
|
1128
1127
|
readonly childrenField: string;
|
|
1129
1128
|
readonly inverted: boolean;
|
|
1129
|
+
readonly keyField: string;
|
|
1130
1130
|
}, {}>;
|
|
1131
1131
|
export default _default;
|