@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
|
@@ -13,19 +13,19 @@ const self = (vars) => {
|
|
|
13
13
|
const successPress = '#0f9b42';
|
|
14
14
|
const warningHover = '#f79942';
|
|
15
15
|
const warningPress = '#df7a1d';
|
|
16
|
-
const errorHover = '#
|
|
17
|
-
const
|
|
16
|
+
const errorHover = '#cb0000';
|
|
17
|
+
const errorDisable = '#f8a39a';
|
|
18
18
|
return Object.assign(Object.assign({}, _common_1.default), { heightTiny: heightMini, heightSmall: heightTiny, heightMedium: heightSmall, heightLarge: heightMedium, borderRadiusTiny: borderRadiusMedium, borderRadiusSmall: borderRadiusMedium, borderRadiusMedium: borderRadius, borderRadiusLarge: borderRadius, fontSizeTiny: fontBodyMedium, fontSizeSmall: fontBodyMedium, fontSizeMedium: fontBodyMedium, fontSizeLarge: fontBodyLarge, opacityDisabled,
|
|
19
19
|
// secondary
|
|
20
|
-
colorOpacitySecondary: '0.16', colorOpacitySecondaryHover: '0.22', colorOpacitySecondaryPressed: '0.28', colorOpacitySecondaryFocus: '0.27', colorSecondary: elementsTertiary, colorSecondaryHover:
|
|
20
|
+
colorOpacitySecondary: '0.16', colorOpacitySecondaryHover: '0.22', colorOpacitySecondaryPressed: '0.28', colorOpacitySecondaryFocus: '0.27', colorSecondary: elementsTertiary, colorSecondaryHover: elementsQuaternary, colorSecondaryPressed: elementsTertiary, colorSecondaryFocus: elementsTertiary, colorSecondaryDisabled: elementsTertiary, textColorSecondaryDisabled: elementsQuinary, waveColorSecondary: elementsQuinary,
|
|
21
21
|
// tertiary
|
|
22
|
-
colorTertiary: elementsPrimary, colorTertiaryHover: elementsSenary, colorTertiaryPressed: elementsPrimary, colorTertiaryDisalbed:
|
|
22
|
+
colorTertiary: elementsPrimary, colorTertiaryHover: elementsSenary, colorTertiaryPressed: elementsPrimary, colorTertiaryFocus: elementsPrimary, colorTertiaryDisalbed: elementsQuinary, waveColorTertiary: elementsQuinary, textColorTextTertiary: textQuaternary, rippleColorTertiary: elementsQuinary,
|
|
23
23
|
// quaternary
|
|
24
|
-
colorQuaternary: '#0000', colorQuaternaryHover:
|
|
24
|
+
colorQuaternary: '#0000', colorQuaternaryHover: elementsQuaternary, colorQuaternaryPressed: '#0000', colorQuaternaryFocus: '#0000', rippleColorQuaternary: elementsQuinary, waveColorQuaternary: elementsQuinary,
|
|
25
25
|
// default type
|
|
26
26
|
color: '#0000', colorHover: '#0000', colorPressed: '#0000', colorFocus: '#0000', colorDisabled: '#0000', textColor: textPrimary, textTertiary, textColorTertiary: textTertiary, textColorHover: brandPrimary400, textColorPressed: brandPrimary500, textColorFocus: brandPrimary400, textColorDisabled: textTertiary, textColorText: textPrimary, textColorTextHover: brandPrimary400, textColorTextPressed: brandPrimary500, textColorTextFocus: brandPrimary400, textColorTextDisabled: textTertiary, textColorGhost: textTertiary, textColorGhostHover: brandPrimary400, textColorGhostPressed: brandPrimary500, textColorGhostFocus: brandPrimary400, textColorGhostDisabled: textTertiary, border: `2px solid ${elementsQuaternary}`, borderHover: `2px solid ${brandPrimary400}`, borderPressed: `2px solid ${brandPrimary500}`, borderFocus: `2px solid ${brandPrimary400}`, borderDisabled: `2px solid ${elementsQuaternary}`, rippleColor: brandPrimary500,
|
|
27
27
|
// primary
|
|
28
|
-
colorPrimary: brandPrimary500, colorHoverPrimary:
|
|
28
|
+
colorPrimary: brandPrimary500, colorHoverPrimary: brandPrimary600, colorPressedPrimary: brandPrimary500, colorFocusPrimary: brandPrimary500, colorDisabledPrimary: brandPrimary300, waveColorPrimary: brandPrimary300, textColorPrimary: staticWhite, textColorHoverPrimary: staticWhite, textColorPressedPrimary: staticWhite, textColorFocusPrimary: staticWhite, textColorDisabledPrimary: staticWhite, textColorTextPrimary: brandPrimary500, textColorTextHoverPrimary: brandPrimary600, textColorTextPressedPrimary: brandPrimary300, textColorTextFocusPrimary: brandPrimary300, textColorTextDisabledPrimary: brandPrimary300, textColorGhostPrimary: brandPrimary500, textColorGhostHoverPrimary: brandPrimary600, textColorGhostPressedPrimary: brandPrimary500, textColorGhostFocusPrimary: brandPrimary500, textColorGhostDisabledPrimary: brandPrimary300, borderPrimary: `2px solid ${brandPrimary500}`, borderHoverPrimary: `2px solid ${brandPrimary600}`, borderPressedPrimary: `2px solid ${brandPrimary500}`, borderFocusPrimary: `2px solid ${brandPrimary500}`, borderDisabledPrimary: `2px solid ${brandPrimary300}`, rippleColorPrimary: brandPrimary300,
|
|
29
29
|
// info
|
|
30
30
|
colorInfo: brandQuaternary500, colorHoverInfo: brandQuaternary300, colorPressedInfo: brandQuaternary600, colorFocusInfo: brandQuaternary300, colorDisabledInfo: brandQuaternary500, textColorInfo: staticBlack, textColorHoverInfo: staticBlack, textColorPressedInfo: staticBlack, textColorFocusInfo: staticBlack, textColorDisabledInfo: staticBlack, textColorTextInfo: brandQuaternary500, textColorTextHoverInfo: brandQuaternary300, textColorTextPressedInfo: brandQuaternary600, textColorTextFocusInfo: brandQuaternary300, textColorTextDisabledInfo: textTertiary, textColorGhostInfo: brandQuaternary500, textColorGhostHoverInfo: brandQuaternary300, textColorGhostPressedInfo: brandQuaternary600, textColorGhostFocusInfo: brandQuaternary300, textColorGhostDisabledInfo: brandQuaternary500, borderInfo: `2px solid ${brandQuaternary500}`, borderHoverInfo: `2px solid ${brandQuaternary300}`, borderPressedInfo: `2px solid ${brandQuaternary600}`, borderFocusInfo: `2px solid ${brandQuaternary300}`, borderDisabledInfo: `2px solid ${brandQuaternary500}`, rippleColorInfo: brandQuaternary500,
|
|
31
31
|
// success
|
|
@@ -33,7 +33,7 @@ const self = (vars) => {
|
|
|
33
33
|
// warning
|
|
34
34
|
colorWarning: staticOrange, colorHoverWarning: warningHover, colorPressedWarning: warningPress, colorFocusWarning: warningHover, colorDisabledWarning: staticOrange, textColorWarning: staticWhite, textColorHoverWarning: staticWhite, textColorPressedWarning: staticWhite, textColorFocusWarning: staticWhite, textColorDisabledWarning: staticWhite, textColorTextWarning: staticOrange, textColorTextHoverWarning: warningHover, textColorTextPressedWarning: warningPress, textColorTextFocusWarning: warningHover, textColorTextDisabledWarning: textTertiary, textColorGhostWarning: staticOrange, textColorGhostHoverWarning: warningHover, textColorGhostPressedWarning: warningPress, textColorGhostFocusWarning: warningHover, textColorGhostDisabledWarning: staticOrange, borderWarning: `2px solid ${staticOrange}`, borderHoverWarning: `2px solid ${warningHover}`, borderPressedWarning: `2px solid ${warningPress}`, borderFocusWarning: `2px solid ${warningHover}`, borderDisabledWarning: `2px solid ${staticOrange}`, rippleColorWarning: staticOrange,
|
|
35
35
|
// error
|
|
36
|
-
colorError: staticRed, colorHoverError: errorHover, colorPressedError:
|
|
36
|
+
colorError: staticRed, colorHoverError: errorHover, colorPressedError: staticRed, colorFocusError: staticRed, colorDisabledError: errorDisable, textColorError: staticWhite, textColorHoverError: staticWhite, textColorPressedError: staticWhite, textColorFocusError: staticWhite, textColorDisabledError: staticWhite, textColorTextError: staticRed, textColorTextHoverError: errorHover, textColorTextPressedError: staticRed, textColorTextFocusError: staticRed, textColorTextDisabledError: errorDisable, textColorGhostError: staticRed, textColorGhostHoverError: errorHover, textColorGhostPressedError: staticRed, textColorGhostFocusError: staticRed, textColorGhostDisabledError: errorDisable, borderError: `2px solid ${staticRed}`, borderHoverError: `2px solid ${errorHover}`, borderPressedError: `2px solid ${staticRed}`, borderFocusError: `2px solid ${staticRed}`, borderDisabledError: `2px solid ${errorDisable}`, rippleColorError: errorDisable, waveOpacity: '0.6', fontWeight,
|
|
37
37
|
fontWeightStrong });
|
|
38
38
|
};
|
|
39
39
|
exports.self = self;
|
|
@@ -54,16 +54,24 @@ export declare const calendarProps: {
|
|
|
54
54
|
colorSecondary: string;
|
|
55
55
|
colorSecondaryHover: string;
|
|
56
56
|
colorSecondaryPressed: string;
|
|
57
|
+
colorSecondaryFocus: string;
|
|
58
|
+
colorSecondaryDisabled: string;
|
|
59
|
+
textColorSecondaryDisabled: string;
|
|
57
60
|
waveColorSecondary: string;
|
|
58
61
|
colorTertiary: string;
|
|
59
62
|
colorTertiaryHover: string;
|
|
60
63
|
colorTertiaryPressed: string;
|
|
64
|
+
colorTertiaryFocus: string;
|
|
61
65
|
colorTertiaryDisalbed: string;
|
|
62
66
|
waveColorTertiary: string;
|
|
63
67
|
textColorTextTertiary: string;
|
|
68
|
+
rippleColorTertiary: string;
|
|
64
69
|
colorQuaternary: string;
|
|
65
70
|
colorQuaternaryHover: string;
|
|
66
71
|
colorQuaternaryPressed: string;
|
|
72
|
+
colorQuaternaryFocus: string;
|
|
73
|
+
rippleColorQuaternary: string;
|
|
74
|
+
waveColorQuaternary: string;
|
|
67
75
|
color: string;
|
|
68
76
|
colorHover: string;
|
|
69
77
|
colorPressed: string;
|
|
@@ -288,16 +296,24 @@ export declare const calendarProps: {
|
|
|
288
296
|
colorSecondary: string;
|
|
289
297
|
colorSecondaryHover: string;
|
|
290
298
|
colorSecondaryPressed: string;
|
|
299
|
+
colorSecondaryFocus: string;
|
|
300
|
+
colorSecondaryDisabled: string;
|
|
301
|
+
textColorSecondaryDisabled: string;
|
|
291
302
|
waveColorSecondary: string;
|
|
292
303
|
colorTertiary: string;
|
|
293
304
|
colorTertiaryHover: string;
|
|
294
305
|
colorTertiaryPressed: string;
|
|
306
|
+
colorTertiaryFocus: string;
|
|
295
307
|
colorTertiaryDisalbed: string;
|
|
296
308
|
waveColorTertiary: string;
|
|
297
309
|
textColorTextTertiary: string;
|
|
310
|
+
rippleColorTertiary: string;
|
|
298
311
|
colorQuaternary: string;
|
|
299
312
|
colorQuaternaryHover: string;
|
|
300
313
|
colorQuaternaryPressed: string;
|
|
314
|
+
colorQuaternaryFocus: string;
|
|
315
|
+
rippleColorQuaternary: string;
|
|
316
|
+
waveColorQuaternary: string;
|
|
301
317
|
color: string;
|
|
302
318
|
colorHover: string;
|
|
303
319
|
colorPressed: string;
|
|
@@ -522,16 +538,24 @@ export declare const calendarProps: {
|
|
|
522
538
|
colorSecondary: string;
|
|
523
539
|
colorSecondaryHover: string;
|
|
524
540
|
colorSecondaryPressed: string;
|
|
541
|
+
colorSecondaryFocus: string;
|
|
542
|
+
colorSecondaryDisabled: string;
|
|
543
|
+
textColorSecondaryDisabled: string;
|
|
525
544
|
waveColorSecondary: string;
|
|
526
545
|
colorTertiary: string;
|
|
527
546
|
colorTertiaryHover: string;
|
|
528
547
|
colorTertiaryPressed: string;
|
|
548
|
+
colorTertiaryFocus: string;
|
|
529
549
|
colorTertiaryDisalbed: string;
|
|
530
550
|
waveColorTertiary: string;
|
|
531
551
|
textColorTextTertiary: string;
|
|
552
|
+
rippleColorTertiary: string;
|
|
532
553
|
colorQuaternary: string;
|
|
533
554
|
colorQuaternaryHover: string;
|
|
534
555
|
colorQuaternaryPressed: string;
|
|
556
|
+
colorQuaternaryFocus: string;
|
|
557
|
+
rippleColorQuaternary: string;
|
|
558
|
+
waveColorQuaternary: string;
|
|
535
559
|
color: string;
|
|
536
560
|
colorHover: string;
|
|
537
561
|
colorPressed: string;
|
|
@@ -768,16 +792,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
768
792
|
colorSecondary: string;
|
|
769
793
|
colorSecondaryHover: string;
|
|
770
794
|
colorSecondaryPressed: string;
|
|
795
|
+
colorSecondaryFocus: string;
|
|
796
|
+
colorSecondaryDisabled: string;
|
|
797
|
+
textColorSecondaryDisabled: string;
|
|
771
798
|
waveColorSecondary: string;
|
|
772
799
|
colorTertiary: string;
|
|
773
800
|
colorTertiaryHover: string;
|
|
774
801
|
colorTertiaryPressed: string;
|
|
802
|
+
colorTertiaryFocus: string;
|
|
775
803
|
colorTertiaryDisalbed: string;
|
|
776
804
|
waveColorTertiary: string;
|
|
777
805
|
textColorTextTertiary: string;
|
|
806
|
+
rippleColorTertiary: string;
|
|
778
807
|
colorQuaternary: string;
|
|
779
808
|
colorQuaternaryHover: string;
|
|
780
809
|
colorQuaternaryPressed: string;
|
|
810
|
+
colorQuaternaryFocus: string;
|
|
811
|
+
rippleColorQuaternary: string;
|
|
812
|
+
waveColorQuaternary: string;
|
|
781
813
|
color: string;
|
|
782
814
|
colorHover: string;
|
|
783
815
|
colorPressed: string;
|
|
@@ -1002,16 +1034,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1002
1034
|
colorSecondary: string;
|
|
1003
1035
|
colorSecondaryHover: string;
|
|
1004
1036
|
colorSecondaryPressed: string;
|
|
1037
|
+
colorSecondaryFocus: string;
|
|
1038
|
+
colorSecondaryDisabled: string;
|
|
1039
|
+
textColorSecondaryDisabled: string;
|
|
1005
1040
|
waveColorSecondary: string;
|
|
1006
1041
|
colorTertiary: string;
|
|
1007
1042
|
colorTertiaryHover: string;
|
|
1008
1043
|
colorTertiaryPressed: string;
|
|
1044
|
+
colorTertiaryFocus: string;
|
|
1009
1045
|
colorTertiaryDisalbed: string;
|
|
1010
1046
|
waveColorTertiary: string;
|
|
1011
1047
|
textColorTextTertiary: string;
|
|
1048
|
+
rippleColorTertiary: string;
|
|
1012
1049
|
colorQuaternary: string;
|
|
1013
1050
|
colorQuaternaryHover: string;
|
|
1014
1051
|
colorQuaternaryPressed: string;
|
|
1052
|
+
colorQuaternaryFocus: string;
|
|
1053
|
+
rippleColorQuaternary: string;
|
|
1054
|
+
waveColorQuaternary: string;
|
|
1015
1055
|
color: string;
|
|
1016
1056
|
colorHover: string;
|
|
1017
1057
|
colorPressed: string;
|
|
@@ -1236,16 +1276,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1236
1276
|
colorSecondary: string;
|
|
1237
1277
|
colorSecondaryHover: string;
|
|
1238
1278
|
colorSecondaryPressed: string;
|
|
1279
|
+
colorSecondaryFocus: string;
|
|
1280
|
+
colorSecondaryDisabled: string;
|
|
1281
|
+
textColorSecondaryDisabled: string;
|
|
1239
1282
|
waveColorSecondary: string;
|
|
1240
1283
|
colorTertiary: string;
|
|
1241
1284
|
colorTertiaryHover: string;
|
|
1242
1285
|
colorTertiaryPressed: string;
|
|
1286
|
+
colorTertiaryFocus: string;
|
|
1243
1287
|
colorTertiaryDisalbed: string;
|
|
1244
1288
|
waveColorTertiary: string;
|
|
1245
1289
|
textColorTextTertiary: string;
|
|
1290
|
+
rippleColorTertiary: string;
|
|
1246
1291
|
colorQuaternary: string;
|
|
1247
1292
|
colorQuaternaryHover: string;
|
|
1248
1293
|
colorQuaternaryPressed: string;
|
|
1294
|
+
colorQuaternaryFocus: string;
|
|
1295
|
+
rippleColorQuaternary: string;
|
|
1296
|
+
waveColorQuaternary: string;
|
|
1249
1297
|
color: string;
|
|
1250
1298
|
colorHover: string;
|
|
1251
1299
|
colorPressed: string;
|
|
@@ -1513,16 +1561,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1513
1561
|
colorSecondary: string;
|
|
1514
1562
|
colorSecondaryHover: string;
|
|
1515
1563
|
colorSecondaryPressed: string;
|
|
1564
|
+
colorSecondaryFocus: string;
|
|
1565
|
+
colorSecondaryDisabled: string;
|
|
1566
|
+
textColorSecondaryDisabled: string;
|
|
1516
1567
|
waveColorSecondary: string;
|
|
1517
1568
|
colorTertiary: string;
|
|
1518
1569
|
colorTertiaryHover: string;
|
|
1519
1570
|
colorTertiaryPressed: string;
|
|
1571
|
+
colorTertiaryFocus: string;
|
|
1520
1572
|
colorTertiaryDisalbed: string;
|
|
1521
1573
|
waveColorTertiary: string;
|
|
1522
1574
|
textColorTextTertiary: string;
|
|
1575
|
+
rippleColorTertiary: string;
|
|
1523
1576
|
colorQuaternary: string;
|
|
1524
1577
|
colorQuaternaryHover: string;
|
|
1525
1578
|
colorQuaternaryPressed: string;
|
|
1579
|
+
colorQuaternaryFocus: string;
|
|
1580
|
+
rippleColorQuaternary: string;
|
|
1581
|
+
waveColorQuaternary: string;
|
|
1526
1582
|
color: string;
|
|
1527
1583
|
colorHover: string;
|
|
1528
1584
|
colorPressed: string;
|
|
@@ -1790,16 +1846,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1790
1846
|
colorSecondary: string;
|
|
1791
1847
|
colorSecondaryHover: string;
|
|
1792
1848
|
colorSecondaryPressed: string;
|
|
1849
|
+
colorSecondaryFocus: string;
|
|
1850
|
+
colorSecondaryDisabled: string;
|
|
1851
|
+
textColorSecondaryDisabled: string;
|
|
1793
1852
|
waveColorSecondary: string;
|
|
1794
1853
|
colorTertiary: string;
|
|
1795
1854
|
colorTertiaryHover: string;
|
|
1796
1855
|
colorTertiaryPressed: string;
|
|
1856
|
+
colorTertiaryFocus: string;
|
|
1797
1857
|
colorTertiaryDisalbed: string;
|
|
1798
1858
|
waveColorTertiary: string;
|
|
1799
1859
|
textColorTextTertiary: string;
|
|
1860
|
+
rippleColorTertiary: string;
|
|
1800
1861
|
colorQuaternary: string;
|
|
1801
1862
|
colorQuaternaryHover: string;
|
|
1802
1863
|
colorQuaternaryPressed: string;
|
|
1864
|
+
colorQuaternaryFocus: string;
|
|
1865
|
+
rippleColorQuaternary: string;
|
|
1866
|
+
waveColorQuaternary: string;
|
|
1803
1867
|
color: string;
|
|
1804
1868
|
colorHover: string;
|
|
1805
1869
|
colorPressed: string;
|
|
@@ -2024,16 +2088,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2024
2088
|
colorSecondary: string;
|
|
2025
2089
|
colorSecondaryHover: string;
|
|
2026
2090
|
colorSecondaryPressed: string;
|
|
2091
|
+
colorSecondaryFocus: string;
|
|
2092
|
+
colorSecondaryDisabled: string;
|
|
2093
|
+
textColorSecondaryDisabled: string;
|
|
2027
2094
|
waveColorSecondary: string;
|
|
2028
2095
|
colorTertiary: string;
|
|
2029
2096
|
colorTertiaryHover: string;
|
|
2030
2097
|
colorTertiaryPressed: string;
|
|
2098
|
+
colorTertiaryFocus: string;
|
|
2031
2099
|
colorTertiaryDisalbed: string;
|
|
2032
2100
|
waveColorTertiary: string;
|
|
2033
2101
|
textColorTextTertiary: string;
|
|
2102
|
+
rippleColorTertiary: string;
|
|
2034
2103
|
colorQuaternary: string;
|
|
2035
2104
|
colorQuaternaryHover: string;
|
|
2036
2105
|
colorQuaternaryPressed: string;
|
|
2106
|
+
colorQuaternaryFocus: string;
|
|
2107
|
+
rippleColorQuaternary: string;
|
|
2108
|
+
waveColorQuaternary: string;
|
|
2037
2109
|
color: string;
|
|
2038
2110
|
colorHover: string;
|
|
2039
2111
|
colorPressed: string;
|
|
@@ -2258,16 +2330,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2258
2330
|
colorSecondary: string;
|
|
2259
2331
|
colorSecondaryHover: string;
|
|
2260
2332
|
colorSecondaryPressed: string;
|
|
2333
|
+
colorSecondaryFocus: string;
|
|
2334
|
+
colorSecondaryDisabled: string;
|
|
2335
|
+
textColorSecondaryDisabled: string;
|
|
2261
2336
|
waveColorSecondary: string;
|
|
2262
2337
|
colorTertiary: string;
|
|
2263
2338
|
colorTertiaryHover: string;
|
|
2264
2339
|
colorTertiaryPressed: string;
|
|
2340
|
+
colorTertiaryFocus: string;
|
|
2265
2341
|
colorTertiaryDisalbed: string;
|
|
2266
2342
|
waveColorTertiary: string;
|
|
2267
2343
|
textColorTextTertiary: string;
|
|
2344
|
+
rippleColorTertiary: string;
|
|
2268
2345
|
colorQuaternary: string;
|
|
2269
2346
|
colorQuaternaryHover: string;
|
|
2270
2347
|
colorQuaternaryPressed: string;
|
|
2348
|
+
colorQuaternaryFocus: string;
|
|
2349
|
+
rippleColorQuaternary: string;
|
|
2350
|
+
waveColorQuaternary: string;
|
|
2271
2351
|
color: string;
|
|
2272
2352
|
colorHover: string;
|
|
2273
2353
|
colorPressed: string;
|
|
@@ -65,16 +65,24 @@ declare const calendarLight: import("../../_mixins").Theme<"Calendar", {
|
|
|
65
65
|
colorSecondary: string;
|
|
66
66
|
colorSecondaryHover: string;
|
|
67
67
|
colorSecondaryPressed: string;
|
|
68
|
+
colorSecondaryFocus: string;
|
|
69
|
+
colorSecondaryDisabled: string;
|
|
70
|
+
textColorSecondaryDisabled: string;
|
|
68
71
|
waveColorSecondary: string;
|
|
69
72
|
colorTertiary: string;
|
|
70
73
|
colorTertiaryHover: string;
|
|
71
74
|
colorTertiaryPressed: string;
|
|
75
|
+
colorTertiaryFocus: string;
|
|
72
76
|
colorTertiaryDisalbed: string;
|
|
73
77
|
waveColorTertiary: string;
|
|
74
78
|
textColorTextTertiary: string;
|
|
79
|
+
rippleColorTertiary: string;
|
|
75
80
|
colorQuaternary: string;
|
|
76
81
|
colorQuaternaryHover: string;
|
|
77
82
|
colorQuaternaryPressed: string;
|
|
83
|
+
colorQuaternaryFocus: string;
|
|
84
|
+
rippleColorQuaternary: string;
|
|
85
|
+
waveColorQuaternary: string;
|
|
78
86
|
color: string;
|
|
79
87
|
colorHover: string;
|
|
80
88
|
colorPressed: string;
|
|
@@ -153,8 +153,16 @@ export declare const cascaderProps: {
|
|
|
153
153
|
loadingColor: string;
|
|
154
154
|
}, {
|
|
155
155
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
156
|
+
height: string;
|
|
157
|
+
width: string;
|
|
158
|
+
borderRadius: string;
|
|
156
159
|
color: string;
|
|
157
160
|
colorHover: string;
|
|
161
|
+
railInsetHorizontalBottom: string;
|
|
162
|
+
railInsetHorizontalTop: string;
|
|
163
|
+
railInsetVerticalRight: string;
|
|
164
|
+
railInsetVerticalLeft: string;
|
|
165
|
+
railColor: string;
|
|
158
166
|
}, any>;
|
|
159
167
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
160
168
|
iconSizeSmall: string;
|
|
@@ -300,8 +308,16 @@ export declare const cascaderProps: {
|
|
|
300
308
|
}, any>;
|
|
301
309
|
}>;
|
|
302
310
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
311
|
+
height: string;
|
|
312
|
+
width: string;
|
|
313
|
+
borderRadius: string;
|
|
303
314
|
color: string;
|
|
304
315
|
colorHover: string;
|
|
316
|
+
railInsetHorizontalBottom: string;
|
|
317
|
+
railInsetHorizontalTop: string;
|
|
318
|
+
railInsetVerticalRight: string;
|
|
319
|
+
railInsetVerticalLeft: string;
|
|
320
|
+
railColor: string;
|
|
305
321
|
}, any>;
|
|
306
322
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
307
323
|
fontWeight: string;
|
|
@@ -426,8 +442,16 @@ export declare const cascaderProps: {
|
|
|
426
442
|
loadingColor: string;
|
|
427
443
|
}, {
|
|
428
444
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
445
|
+
height: string;
|
|
446
|
+
width: string;
|
|
447
|
+
borderRadius: string;
|
|
429
448
|
color: string;
|
|
430
449
|
colorHover: string;
|
|
450
|
+
railInsetHorizontalBottom: string;
|
|
451
|
+
railInsetHorizontalTop: string;
|
|
452
|
+
railInsetVerticalRight: string;
|
|
453
|
+
railInsetVerticalLeft: string;
|
|
454
|
+
railColor: string;
|
|
431
455
|
}, any>;
|
|
432
456
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
433
457
|
iconSizeSmall: string;
|
|
@@ -573,8 +597,16 @@ export declare const cascaderProps: {
|
|
|
573
597
|
}, any>;
|
|
574
598
|
}>;
|
|
575
599
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
600
|
+
height: string;
|
|
601
|
+
width: string;
|
|
602
|
+
borderRadius: string;
|
|
576
603
|
color: string;
|
|
577
604
|
colorHover: string;
|
|
605
|
+
railInsetHorizontalBottom: string;
|
|
606
|
+
railInsetHorizontalTop: string;
|
|
607
|
+
railInsetVerticalRight: string;
|
|
608
|
+
railInsetVerticalLeft: string;
|
|
609
|
+
railColor: string;
|
|
578
610
|
}, any>;
|
|
579
611
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
580
612
|
fontWeight: string;
|
|
@@ -699,8 +731,16 @@ export declare const cascaderProps: {
|
|
|
699
731
|
loadingColor: string;
|
|
700
732
|
}, {
|
|
701
733
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
734
|
+
height: string;
|
|
735
|
+
width: string;
|
|
736
|
+
borderRadius: string;
|
|
702
737
|
color: string;
|
|
703
738
|
colorHover: string;
|
|
739
|
+
railInsetHorizontalBottom: string;
|
|
740
|
+
railInsetHorizontalTop: string;
|
|
741
|
+
railInsetVerticalRight: string;
|
|
742
|
+
railInsetVerticalLeft: string;
|
|
743
|
+
railColor: string;
|
|
704
744
|
}, any>;
|
|
705
745
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
706
746
|
iconSizeSmall: string;
|
|
@@ -846,8 +886,16 @@ export declare const cascaderProps: {
|
|
|
846
886
|
}, any>;
|
|
847
887
|
}>;
|
|
848
888
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
889
|
+
height: string;
|
|
890
|
+
width: string;
|
|
891
|
+
borderRadius: string;
|
|
849
892
|
color: string;
|
|
850
893
|
colorHover: string;
|
|
894
|
+
railInsetHorizontalBottom: string;
|
|
895
|
+
railInsetHorizontalTop: string;
|
|
896
|
+
railInsetVerticalRight: string;
|
|
897
|
+
railInsetVerticalLeft: string;
|
|
898
|
+
railColor: string;
|
|
851
899
|
}, any>;
|
|
852
900
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
853
901
|
fontWeight: string;
|
|
@@ -1070,8 +1118,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1070
1118
|
loadingColor: string;
|
|
1071
1119
|
}, {
|
|
1072
1120
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1121
|
+
height: string;
|
|
1122
|
+
width: string;
|
|
1123
|
+
borderRadius: string;
|
|
1073
1124
|
color: string;
|
|
1074
1125
|
colorHover: string;
|
|
1126
|
+
railInsetHorizontalBottom: string;
|
|
1127
|
+
railInsetHorizontalTop: string;
|
|
1128
|
+
railInsetVerticalRight: string;
|
|
1129
|
+
railInsetVerticalLeft: string;
|
|
1130
|
+
railColor: string;
|
|
1075
1131
|
}, any>;
|
|
1076
1132
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1077
1133
|
iconSizeSmall: string;
|
|
@@ -1217,8 +1273,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1217
1273
|
}, any>;
|
|
1218
1274
|
}>;
|
|
1219
1275
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1276
|
+
height: string;
|
|
1277
|
+
width: string;
|
|
1278
|
+
borderRadius: string;
|
|
1220
1279
|
color: string;
|
|
1221
1280
|
colorHover: string;
|
|
1281
|
+
railInsetHorizontalBottom: string;
|
|
1282
|
+
railInsetHorizontalTop: string;
|
|
1283
|
+
railInsetVerticalRight: string;
|
|
1284
|
+
railInsetVerticalLeft: string;
|
|
1285
|
+
railColor: string;
|
|
1222
1286
|
}, any>;
|
|
1223
1287
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
1224
1288
|
fontWeight: string;
|
|
@@ -1343,8 +1407,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1343
1407
|
loadingColor: string;
|
|
1344
1408
|
}, {
|
|
1345
1409
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1410
|
+
height: string;
|
|
1411
|
+
width: string;
|
|
1412
|
+
borderRadius: string;
|
|
1346
1413
|
color: string;
|
|
1347
1414
|
colorHover: string;
|
|
1415
|
+
railInsetHorizontalBottom: string;
|
|
1416
|
+
railInsetHorizontalTop: string;
|
|
1417
|
+
railInsetVerticalRight: string;
|
|
1418
|
+
railInsetVerticalLeft: string;
|
|
1419
|
+
railColor: string;
|
|
1348
1420
|
}, any>;
|
|
1349
1421
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1350
1422
|
iconSizeSmall: string;
|
|
@@ -1490,8 +1562,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1490
1562
|
}, any>;
|
|
1491
1563
|
}>;
|
|
1492
1564
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1565
|
+
height: string;
|
|
1566
|
+
width: string;
|
|
1567
|
+
borderRadius: string;
|
|
1493
1568
|
color: string;
|
|
1494
1569
|
colorHover: string;
|
|
1570
|
+
railInsetHorizontalBottom: string;
|
|
1571
|
+
railInsetHorizontalTop: string;
|
|
1572
|
+
railInsetVerticalRight: string;
|
|
1573
|
+
railInsetVerticalLeft: string;
|
|
1574
|
+
railColor: string;
|
|
1495
1575
|
}, any>;
|
|
1496
1576
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
1497
1577
|
fontWeight: string;
|
|
@@ -1616,8 +1696,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1616
1696
|
loadingColor: string;
|
|
1617
1697
|
}, {
|
|
1618
1698
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1699
|
+
height: string;
|
|
1700
|
+
width: string;
|
|
1701
|
+
borderRadius: string;
|
|
1619
1702
|
color: string;
|
|
1620
1703
|
colorHover: string;
|
|
1704
|
+
railInsetHorizontalBottom: string;
|
|
1705
|
+
railInsetHorizontalTop: string;
|
|
1706
|
+
railInsetVerticalRight: string;
|
|
1707
|
+
railInsetVerticalLeft: string;
|
|
1708
|
+
railColor: string;
|
|
1621
1709
|
}, any>;
|
|
1622
1710
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1623
1711
|
iconSizeSmall: string;
|
|
@@ -1763,8 +1851,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1763
1851
|
}, any>;
|
|
1764
1852
|
}>;
|
|
1765
1853
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1854
|
+
height: string;
|
|
1855
|
+
width: string;
|
|
1856
|
+
borderRadius: string;
|
|
1766
1857
|
color: string;
|
|
1767
1858
|
colorHover: string;
|
|
1859
|
+
railInsetHorizontalBottom: string;
|
|
1860
|
+
railInsetHorizontalTop: string;
|
|
1861
|
+
railInsetVerticalRight: string;
|
|
1862
|
+
railInsetVerticalLeft: string;
|
|
1863
|
+
railColor: string;
|
|
1768
1864
|
}, any>;
|
|
1769
1865
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
1770
1866
|
fontWeight: string;
|
|
@@ -1954,8 +2050,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1954
2050
|
loadingColor: string;
|
|
1955
2051
|
}, {
|
|
1956
2052
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2053
|
+
height: string;
|
|
2054
|
+
width: string;
|
|
2055
|
+
borderRadius: string;
|
|
1957
2056
|
color: string;
|
|
1958
2057
|
colorHover: string;
|
|
2058
|
+
railInsetHorizontalBottom: string;
|
|
2059
|
+
railInsetHorizontalTop: string;
|
|
2060
|
+
railInsetVerticalRight: string;
|
|
2061
|
+
railInsetVerticalLeft: string;
|
|
2062
|
+
railColor: string;
|
|
1959
2063
|
}, any>;
|
|
1960
2064
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1961
2065
|
iconSizeSmall: string;
|
|
@@ -2101,8 +2205,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2101
2205
|
}, any>;
|
|
2102
2206
|
}>;
|
|
2103
2207
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2208
|
+
height: string;
|
|
2209
|
+
width: string;
|
|
2210
|
+
borderRadius: string;
|
|
2104
2211
|
color: string;
|
|
2105
2212
|
colorHover: string;
|
|
2213
|
+
railInsetHorizontalBottom: string;
|
|
2214
|
+
railInsetHorizontalTop: string;
|
|
2215
|
+
railInsetVerticalRight: string;
|
|
2216
|
+
railInsetVerticalLeft: string;
|
|
2217
|
+
railColor: string;
|
|
2106
2218
|
}, any>;
|
|
2107
2219
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
2108
2220
|
fontWeight: string;
|
|
@@ -2180,8 +2292,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2180
2292
|
InternalSelectMenu?: {
|
|
2181
2293
|
peers?: {
|
|
2182
2294
|
Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
|
|
2295
|
+
height: string;
|
|
2296
|
+
width: string;
|
|
2297
|
+
borderRadius: string;
|
|
2183
2298
|
color: string;
|
|
2184
2299
|
colorHover: string;
|
|
2300
|
+
railInsetHorizontalBottom: string;
|
|
2301
|
+
railInsetHorizontalTop: string;
|
|
2302
|
+
railInsetVerticalRight: string;
|
|
2303
|
+
railInsetVerticalLeft: string;
|
|
2304
|
+
railColor: string;
|
|
2185
2305
|
}, any>> | undefined;
|
|
2186
2306
|
Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
|
|
2187
2307
|
iconSizeSmall: string;
|
|
@@ -2417,8 +2537,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2417
2537
|
loadingColor: string;
|
|
2418
2538
|
}, {
|
|
2419
2539
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2540
|
+
height: string;
|
|
2541
|
+
width: string;
|
|
2542
|
+
borderRadius: string;
|
|
2420
2543
|
color: string;
|
|
2421
2544
|
colorHover: string;
|
|
2545
|
+
railInsetHorizontalBottom: string;
|
|
2546
|
+
railInsetHorizontalTop: string;
|
|
2547
|
+
railInsetVerticalRight: string;
|
|
2548
|
+
railInsetVerticalLeft: string;
|
|
2549
|
+
railColor: string;
|
|
2422
2550
|
}, any>;
|
|
2423
2551
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2424
2552
|
iconSizeSmall: string;
|
|
@@ -2564,8 +2692,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2564
2692
|
}, any>;
|
|
2565
2693
|
}>;
|
|
2566
2694
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2695
|
+
height: string;
|
|
2696
|
+
width: string;
|
|
2697
|
+
borderRadius: string;
|
|
2567
2698
|
color: string;
|
|
2568
2699
|
colorHover: string;
|
|
2700
|
+
railInsetHorizontalBottom: string;
|
|
2701
|
+
railInsetHorizontalTop: string;
|
|
2702
|
+
railInsetVerticalRight: string;
|
|
2703
|
+
railInsetVerticalLeft: string;
|
|
2704
|
+
railColor: string;
|
|
2569
2705
|
}, any>;
|
|
2570
2706
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
2571
2707
|
fontWeight: string;
|
|
@@ -2690,8 +2826,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2690
2826
|
loadingColor: string;
|
|
2691
2827
|
}, {
|
|
2692
2828
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2829
|
+
height: string;
|
|
2830
|
+
width: string;
|
|
2831
|
+
borderRadius: string;
|
|
2693
2832
|
color: string;
|
|
2694
2833
|
colorHover: string;
|
|
2834
|
+
railInsetHorizontalBottom: string;
|
|
2835
|
+
railInsetHorizontalTop: string;
|
|
2836
|
+
railInsetVerticalRight: string;
|
|
2837
|
+
railInsetVerticalLeft: string;
|
|
2838
|
+
railColor: string;
|
|
2695
2839
|
}, any>;
|
|
2696
2840
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2697
2841
|
iconSizeSmall: string;
|
|
@@ -2837,8 +2981,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2837
2981
|
}, any>;
|
|
2838
2982
|
}>;
|
|
2839
2983
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2984
|
+
height: string;
|
|
2985
|
+
width: string;
|
|
2986
|
+
borderRadius: string;
|
|
2840
2987
|
color: string;
|
|
2841
2988
|
colorHover: string;
|
|
2989
|
+
railInsetHorizontalBottom: string;
|
|
2990
|
+
railInsetHorizontalTop: string;
|
|
2991
|
+
railInsetVerticalRight: string;
|
|
2992
|
+
railInsetVerticalLeft: string;
|
|
2993
|
+
railColor: string;
|
|
2842
2994
|
}, any>;
|
|
2843
2995
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
2844
2996
|
fontWeight: string;
|
|
@@ -2963,8 +3115,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2963
3115
|
loadingColor: string;
|
|
2964
3116
|
}, {
|
|
2965
3117
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3118
|
+
height: string;
|
|
3119
|
+
width: string;
|
|
3120
|
+
borderRadius: string;
|
|
2966
3121
|
color: string;
|
|
2967
3122
|
colorHover: string;
|
|
3123
|
+
railInsetHorizontalBottom: string;
|
|
3124
|
+
railInsetHorizontalTop: string;
|
|
3125
|
+
railInsetVerticalRight: string;
|
|
3126
|
+
railInsetVerticalLeft: string;
|
|
3127
|
+
railColor: string;
|
|
2968
3128
|
}, any>;
|
|
2969
3129
|
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2970
3130
|
iconSizeSmall: string;
|
|
@@ -3110,8 +3270,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3110
3270
|
}, any>;
|
|
3111
3271
|
}>;
|
|
3112
3272
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
3273
|
+
height: string;
|
|
3274
|
+
width: string;
|
|
3275
|
+
borderRadius: string;
|
|
3113
3276
|
color: string;
|
|
3114
3277
|
colorHover: string;
|
|
3278
|
+
railInsetHorizontalBottom: string;
|
|
3279
|
+
railInsetHorizontalTop: string;
|
|
3280
|
+
railInsetVerticalRight: string;
|
|
3281
|
+
railInsetVerticalLeft: string;
|
|
3282
|
+
railColor: string;
|
|
3115
3283
|
}, any>;
|
|
3116
3284
|
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
3117
3285
|
fontWeight: string;
|