naive-ui 2.20.3 → 2.21.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/es/_internal/select-menu/src/SelectMenu.d.ts +3 -0
- package/es/_internal/selection/src/Selection.d.ts +3 -0
- package/es/_internal/suffix/src/Suffix.d.ts +4 -1
- package/es/_internal/suffix/src/Suffix.js +4 -1
- package/es/_styles/common/dark.js +1 -1
- package/es/_styles/common/light.d.ts +3 -0
- package/es/_styles/common/light.js +5 -2
- package/es/_styles/global/index.cssr.js +9 -4
- package/es/_styles/transitions/icon-switch.cssr.js +6 -2
- package/es/_utils/naive/extract-public-props.d.ts +1 -1
- package/es/alert/src/Alert.d.ts +3 -0
- package/es/auto-complete/src/AutoComplete.d.ts +8 -1
- package/es/auto-complete/src/AutoComplete.js +2 -2
- package/es/avatar/src/Avatar.d.ts +8 -1
- package/es/avatar/src/Avatar.js +41 -9
- package/es/avatar/src/styles/index.cssr.js +2 -2
- package/es/button/src/Button.d.ts +149 -52
- package/es/button/src/Button.js +128 -56
- package/es/button/src/interface.d.ts +1 -1
- package/es/button/styles/dark.js +3 -0
- package/es/button/styles/light.d.ts +14 -5
- package/es/button/styles/light.js +10 -3
- package/es/calendar/src/Calendar.d.ts +143 -50
- package/es/calendar/styles/light.d.ts +14 -5
- package/es/card/src/Card.d.ts +3 -0
- package/es/cascader/src/Cascader.d.ts +3 -0
- package/es/cascader/src/CascaderOption.d.ts +3 -0
- package/es/cascader/src/CascaderSelectMenu.d.ts +3 -0
- package/es/cascader/src/CascaderSubmenu.d.ts +3 -0
- package/es/checkbox/src/Checkbox.d.ts +8 -5
- package/es/checkbox/src/Checkbox.js +3 -3
- package/es/collapse/src/Collapse.d.ts +3 -0
- package/es/color-picker/src/ColorInputUnit.d.ts +17 -5
- package/es/color-picker/src/ColorPicker.d.ts +126 -45
- package/es/color-picker/styles/light.d.ts +14 -5
- package/es/data-table/src/DataTable.d.ts +183 -51
- package/es/data-table/src/DataTable.js +11 -6
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +20 -5
- package/es/data-table/src/HeaderButton/FilterMenu.d.ts +20 -5
- package/es/data-table/src/TableParts/Body.d.ts +25 -6
- package/es/data-table/src/TableParts/Body.js +60 -22
- package/es/data-table/src/TableParts/BodyCheckbox.js +1 -1
- package/es/data-table/src/TableParts/Cell.d.ts +40 -10
- package/es/data-table/src/TableParts/Header.d.ts +20 -5
- package/es/data-table/src/TableParts/Header.js +1 -1
- package/es/data-table/src/interface.d.ts +4 -1
- package/es/data-table/src/styles/index.cssr.js +8 -9
- package/es/data-table/styles/light.d.ts +20 -5
- package/es/data-table/styles/light.js +3 -3
- package/es/date-picker/src/DatePicker.d.ts +298 -105
- package/es/date-picker/src/panel/date.d.ts +45 -15
- package/es/date-picker/src/panel/daterange.d.ts +45 -15
- package/es/date-picker/src/panel/datetime.d.ts +45 -15
- package/es/date-picker/src/panel/datetimerange.d.ts +45 -15
- package/es/date-picker/src/panel/month.d.ts +45 -15
- package/es/date-picker/src/panel/use-calendar.d.ts +45 -15
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +45 -15
- package/es/date-picker/src/panel/use-panel-common.d.ts +45 -15
- package/es/date-picker/styles/light.d.ts +28 -10
- package/es/dialog/src/Dialog.d.ts +101 -35
- package/es/dialog/styles/light.d.ts +14 -5
- package/es/drawer/src/Drawer.d.ts +3 -0
- package/es/drawer/src/DrawerBodyWrapper.d.ts +3 -0
- package/es/drawer/src/DrawerContent.d.ts +3 -0
- package/es/dropdown/index.d.ts +1 -1
- package/es/dropdown/src/Dropdown.d.ts +5 -2
- package/es/dropdown/src/DropdownGroup.d.ts +2 -3
- package/es/dropdown/src/DropdownMenu.d.ts +3 -4
- package/es/dropdown/src/DropdownMenu.js +5 -4
- package/es/dropdown/src/DropdownOption.d.ts +3 -4
- package/es/dropdown/src/DropdownOption.js +2 -2
- package/es/dropdown/src/DropdownRenderOption.d.ts +2 -3
- package/es/dropdown/src/interface.d.ts +9 -30
- package/es/dropdown/src/utils.d.ts +1 -0
- package/es/dropdown/src/utils.js +10 -0
- package/es/dynamic-input/src/DynamicInput.d.ts +143 -50
- package/es/dynamic-input/src/InputPreset.d.ts +17 -5
- package/es/dynamic-input/src/PairPreset.d.ts +17 -5
- package/es/dynamic-input/styles/light.d.ts +14 -5
- package/es/dynamic-tags/src/DynamicTags.d.ts +144 -50
- package/es/dynamic-tags/styles/light.d.ts +14 -5
- package/es/ellipsis/src/Ellipsis.d.ts +3 -0
- package/es/global-style/src/GlobalStyle.js +2 -0
- package/es/input/src/Input.d.ts +4 -0
- package/es/input/src/Input.js +6 -0
- package/es/input/src/interface.d.ts +1 -0
- package/es/input-number/src/InputNumber.d.ts +144 -50
- package/es/input-number/styles/light.d.ts +14 -5
- package/es/layout/src/Layout.d.ts +6 -0
- package/es/layout/src/LayoutContent.d.ts +3 -0
- package/es/layout/src/LayoutSider.d.ts +3 -0
- package/es/log/src/Log.d.ts +3 -0
- package/es/mention/src/Mention.d.ts +4 -0
- package/es/menu/index.d.ts +1 -1
- package/es/menu/src/Menu.d.ts +19 -6
- package/es/menu/src/Menu.js +2 -1
- package/es/menu/src/MenuDivider.d.ts +2 -0
- package/es/menu/src/MenuDivider.js +11 -0
- package/es/menu/src/MenuOption.d.ts +8 -1
- package/es/menu/src/MenuOptionContent.d.ts +4 -1
- package/es/menu/src/Submenu.d.ts +18 -16
- package/es/menu/src/interface.d.ts +23 -4
- package/es/menu/src/styles/index.cssr.js +6 -1
- package/es/menu/src/utils.d.ts +4 -2
- package/es/menu/src/utils.js +16 -2
- package/es/menu/styles/light.d.ts +2 -0
- package/es/menu/styles/light.js +3 -2
- package/es/modal/src/BodyWrapper.d.ts +31 -10
- package/es/modal/src/Modal.d.ts +168 -60
- package/es/modal/styles/light.d.ts +14 -5
- package/es/notification/src/NotificationContainer.d.ts +3 -0
- package/es/pagination/src/Pagination.d.ts +4 -0
- package/es/popconfirm/src/Popconfirm.d.ts +143 -50
- package/es/popconfirm/styles/light.d.ts +14 -5
- package/es/popselect/src/Popselect.d.ts +3 -0
- package/es/popselect/src/PopselectPanel.d.ts +3 -0
- package/es/radio/src/Radio.d.ts +3 -0
- package/es/radio/src/RadioButton.d.ts +3 -0
- package/es/radio/src/use-radio.d.ts +2 -0
- package/es/radio/src/use-radio.js +6 -3
- package/es/select/src/Select.d.ts +3 -0
- package/es/slider/src/Slider.d.ts +70 -91
- package/es/slider/src/Slider.js +326 -583
- package/es/slider/src/interface.d.ts +1 -1
- package/es/slider/src/styles/index.cssr.js +86 -16
- package/es/slider/src/utils.d.ts +10 -1
- package/es/slider/src/utils.js +9 -0
- package/es/slider/styles/_common.d.ts +1 -0
- package/es/slider/styles/_common.js +1 -0
- package/es/slider/styles/light.d.ts +1 -0
- package/es/space/src/Space.js +2 -0
- package/es/steps/src/Step.js +1 -1
- package/es/table/src/Table.d.ts +35 -0
- package/es/table/src/Table.js +8 -4
- package/es/table/src/styles/index.cssr.js +1 -1
- package/es/table/styles/light.d.ts +3 -0
- package/es/table/styles/light.js +2 -2
- package/es/tabs/index.d.ts +2 -0
- package/es/tabs/index.js +1 -0
- package/es/tabs/src/Tab.d.ts +35 -18
- package/es/tabs/src/Tab.js +11 -12
- package/es/tabs/src/Tabs.js +58 -18
- package/es/tag/src/Tag.d.ts +8 -3
- package/es/tag/src/Tag.js +10 -2
- package/es/tag/src/styles/index.cssr.js +10 -5
- package/es/tag/src/styles/rtl.cssr.js +7 -1
- package/es/theme-editor/src/ThemeEditor.d.ts +3 -0
- package/es/time-picker/src/Panel.d.ts +17 -5
- package/es/time-picker/src/TimePicker.d.ts +144 -50
- package/es/time-picker/styles/light.d.ts +14 -5
- package/es/tooltip/src/Tooltip.d.ts +3 -0
- package/es/transfer/src/Transfer.d.ts +143 -50
- package/es/transfer/src/TransferFilter.d.ts +17 -5
- package/es/transfer/src/TransferList.d.ts +17 -5
- package/es/transfer/src/TransferListItem.d.ts +17 -5
- package/es/transfer/styles/light.d.ts +14 -5
- package/es/tree/src/Tree.d.ts +3 -0
- package/es/tree/src/TreeNodeCheckbox.d.ts +3 -0
- package/es/tree-select/src/TreeSelect.d.ts +3 -0
- package/es/upload/src/Upload.d.ts +143 -50
- package/es/upload/src/UploadFile.d.ts +18 -6
- package/es/upload/src/UploadProgress.d.ts +17 -5
- package/es/upload/styles/light.d.ts +14 -5
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/select-menu/src/SelectMenu.d.ts +3 -0
- package/lib/_internal/selection/src/Selection.d.ts +3 -0
- package/lib/_internal/suffix/src/Suffix.d.ts +4 -1
- package/lib/_internal/suffix/src/Suffix.js +4 -1
- package/lib/_styles/common/dark.js +1 -1
- package/lib/_styles/common/light.d.ts +3 -0
- package/lib/_styles/common/light.js +5 -2
- package/lib/_styles/global/index.cssr.js +10 -5
- package/lib/_styles/transitions/icon-switch.cssr.js +7 -2
- package/lib/_utils/naive/extract-public-props.d.ts +1 -1
- package/lib/alert/src/Alert.d.ts +3 -0
- package/lib/auto-complete/src/AutoComplete.d.ts +8 -1
- package/lib/auto-complete/src/AutoComplete.js +2 -2
- package/lib/avatar/src/Avatar.d.ts +8 -1
- package/lib/avatar/src/Avatar.js +40 -8
- package/lib/avatar/src/styles/index.cssr.js +2 -2
- package/lib/button/src/Button.d.ts +149 -52
- package/lib/button/src/Button.js +126 -54
- package/lib/button/src/interface.d.ts +1 -1
- package/lib/button/styles/dark.js +3 -0
- package/lib/button/styles/light.d.ts +14 -5
- package/lib/button/styles/light.js +10 -3
- package/lib/calendar/src/Calendar.d.ts +143 -50
- package/lib/calendar/styles/light.d.ts +14 -5
- package/lib/card/src/Card.d.ts +3 -0
- package/lib/cascader/src/Cascader.d.ts +3 -0
- package/lib/cascader/src/CascaderOption.d.ts +3 -0
- package/lib/cascader/src/CascaderSelectMenu.d.ts +3 -0
- package/lib/cascader/src/CascaderSubmenu.d.ts +3 -0
- package/lib/checkbox/src/Checkbox.d.ts +8 -5
- package/lib/checkbox/src/Checkbox.js +3 -3
- package/lib/collapse/src/Collapse.d.ts +3 -0
- package/lib/color-picker/src/ColorInputUnit.d.ts +17 -5
- package/lib/color-picker/src/ColorPicker.d.ts +126 -45
- package/lib/color-picker/styles/light.d.ts +14 -5
- package/lib/data-table/src/DataTable.d.ts +183 -51
- package/lib/data-table/src/DataTable.js +11 -6
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +20 -5
- package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +20 -5
- package/lib/data-table/src/TableParts/Body.d.ts +25 -6
- package/lib/data-table/src/TableParts/Body.js +60 -22
- package/lib/data-table/src/TableParts/BodyCheckbox.js +1 -1
- package/lib/data-table/src/TableParts/Cell.d.ts +40 -10
- package/lib/data-table/src/TableParts/Header.d.ts +20 -5
- package/lib/data-table/src/TableParts/Header.js +1 -1
- package/lib/data-table/src/interface.d.ts +4 -1
- package/lib/data-table/src/styles/index.cssr.js +8 -9
- package/lib/data-table/styles/light.d.ts +20 -5
- package/lib/data-table/styles/light.js +3 -3
- package/lib/date-picker/src/DatePicker.d.ts +298 -105
- package/lib/date-picker/src/panel/date.d.ts +45 -15
- package/lib/date-picker/src/panel/daterange.d.ts +45 -15
- package/lib/date-picker/src/panel/datetime.d.ts +45 -15
- package/lib/date-picker/src/panel/datetimerange.d.ts +45 -15
- package/lib/date-picker/src/panel/month.d.ts +45 -15
- package/lib/date-picker/src/panel/use-calendar.d.ts +45 -15
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +45 -15
- package/lib/date-picker/src/panel/use-panel-common.d.ts +45 -15
- package/lib/date-picker/styles/light.d.ts +28 -10
- package/lib/dialog/src/Dialog.d.ts +101 -35
- package/lib/dialog/styles/light.d.ts +14 -5
- package/lib/drawer/src/Drawer.d.ts +3 -0
- package/lib/drawer/src/DrawerBodyWrapper.d.ts +3 -0
- package/lib/drawer/src/DrawerContent.d.ts +3 -0
- package/lib/dropdown/index.d.ts +1 -1
- package/lib/dropdown/src/Dropdown.d.ts +5 -2
- package/lib/dropdown/src/DropdownGroup.d.ts +2 -3
- package/lib/dropdown/src/DropdownMenu.d.ts +3 -4
- package/lib/dropdown/src/DropdownMenu.js +5 -4
- package/lib/dropdown/src/DropdownOption.d.ts +3 -4
- package/lib/dropdown/src/DropdownOption.js +1 -1
- package/lib/dropdown/src/DropdownRenderOption.d.ts +2 -3
- package/lib/dropdown/src/interface.d.ts +9 -30
- package/lib/dropdown/src/utils.d.ts +1 -0
- package/lib/dropdown/src/utils.js +12 -1
- package/lib/dynamic-input/src/DynamicInput.d.ts +143 -50
- package/lib/dynamic-input/src/InputPreset.d.ts +17 -5
- package/lib/dynamic-input/src/PairPreset.d.ts +17 -5
- package/lib/dynamic-input/styles/light.d.ts +14 -5
- package/lib/dynamic-tags/src/DynamicTags.d.ts +144 -50
- package/lib/dynamic-tags/styles/light.d.ts +14 -5
- package/lib/ellipsis/src/Ellipsis.d.ts +3 -0
- package/lib/global-style/src/GlobalStyle.js +2 -0
- package/lib/input/src/Input.d.ts +4 -0
- package/lib/input/src/Input.js +6 -0
- package/lib/input/src/interface.d.ts +1 -0
- package/lib/input-number/src/InputNumber.d.ts +144 -50
- package/lib/input-number/styles/light.d.ts +14 -5
- package/lib/layout/src/Layout.d.ts +6 -0
- package/lib/layout/src/LayoutContent.d.ts +3 -0
- package/lib/layout/src/LayoutSider.d.ts +3 -0
- package/lib/log/src/Log.d.ts +3 -0
- package/lib/mention/src/Mention.d.ts +4 -0
- package/lib/menu/index.d.ts +1 -1
- package/lib/menu/src/Menu.d.ts +19 -6
- package/lib/menu/src/Menu.js +2 -1
- package/lib/menu/src/MenuDivider.d.ts +2 -0
- package/lib/menu/src/MenuDivider.js +13 -0
- package/lib/menu/src/MenuOption.d.ts +8 -1
- package/lib/menu/src/MenuOptionContent.d.ts +4 -1
- package/lib/menu/src/Submenu.d.ts +18 -16
- package/lib/menu/src/interface.d.ts +23 -4
- package/lib/menu/src/styles/index.cssr.js +6 -1
- package/lib/menu/src/utils.d.ts +4 -2
- package/lib/menu/src/utils.js +22 -3
- package/lib/menu/styles/light.d.ts +2 -0
- package/lib/menu/styles/light.js +3 -2
- package/lib/modal/src/BodyWrapper.d.ts +31 -10
- package/lib/modal/src/Modal.d.ts +168 -60
- package/lib/modal/styles/light.d.ts +14 -5
- package/lib/notification/src/NotificationContainer.d.ts +3 -0
- package/lib/pagination/src/Pagination.d.ts +4 -0
- package/lib/popconfirm/src/Popconfirm.d.ts +143 -50
- package/lib/popconfirm/styles/light.d.ts +14 -5
- package/lib/popselect/src/Popselect.d.ts +3 -0
- package/lib/popselect/src/PopselectPanel.d.ts +3 -0
- package/lib/radio/src/Radio.d.ts +3 -0
- package/lib/radio/src/RadioButton.d.ts +3 -0
- package/lib/radio/src/use-radio.d.ts +2 -0
- package/lib/radio/src/use-radio.js +6 -3
- package/lib/select/src/Select.d.ts +3 -0
- package/lib/slider/src/Slider.d.ts +70 -91
- package/lib/slider/src/Slider.js +324 -581
- package/lib/slider/src/interface.d.ts +1 -1
- package/lib/slider/src/styles/index.cssr.js +86 -16
- package/lib/slider/src/utils.d.ts +10 -1
- package/lib/slider/src/utils.js +11 -1
- package/lib/slider/styles/_common.d.ts +1 -0
- package/lib/slider/styles/_common.js +1 -0
- package/lib/slider/styles/light.d.ts +1 -0
- package/lib/space/src/Space.js +2 -0
- package/lib/steps/src/Step.js +1 -1
- package/lib/table/src/Table.d.ts +35 -0
- package/lib/table/src/Table.js +8 -4
- package/lib/table/src/styles/index.cssr.js +1 -1
- package/lib/table/styles/light.d.ts +3 -0
- package/lib/table/styles/light.js +2 -2
- package/lib/tabs/index.d.ts +2 -0
- package/lib/tabs/index.js +3 -1
- package/lib/tabs/src/Tab.d.ts +35 -18
- package/lib/tabs/src/Tab.js +10 -11
- package/lib/tabs/src/Tabs.js +57 -17
- package/lib/tag/src/Tag.d.ts +8 -3
- package/lib/tag/src/Tag.js +10 -1
- package/lib/tag/src/styles/index.cssr.js +10 -5
- package/lib/tag/src/styles/rtl.cssr.js +7 -1
- package/lib/theme-editor/src/ThemeEditor.d.ts +3 -0
- package/lib/time-picker/src/Panel.d.ts +17 -5
- package/lib/time-picker/src/TimePicker.d.ts +144 -50
- package/lib/time-picker/styles/light.d.ts +14 -5
- package/lib/tooltip/src/Tooltip.d.ts +3 -0
- package/lib/transfer/src/Transfer.d.ts +143 -50
- package/lib/transfer/src/TransferFilter.d.ts +17 -5
- package/lib/transfer/src/TransferList.d.ts +17 -5
- package/lib/transfer/src/TransferListItem.d.ts +17 -5
- package/lib/transfer/styles/light.d.ts +14 -5
- package/lib/tree/src/Tree.d.ts +3 -0
- package/lib/tree/src/TreeNodeCheckbox.d.ts +3 -0
- package/lib/tree-select/src/TreeSelect.d.ts +3 -0
- package/lib/upload/src/Upload.d.ts +143 -50
- package/lib/upload/src/UploadFile.d.ts +18 -6
- package/lib/upload/src/UploadProgress.d.ts +17 -5
- package/lib/upload/styles/light.d.ts +14 -5
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/web-types.json +146 -9
|
@@ -57,20 +57,30 @@ declare const inputNumberProps: {
|
|
|
57
57
|
fontSizeMedium: string;
|
|
58
58
|
fontSizeLarge: string;
|
|
59
59
|
opacityDisabled: string;
|
|
60
|
+
colorOpacitySecondary: number;
|
|
61
|
+
colorOpacitySecondaryHover: number;
|
|
62
|
+
colorOpacitySecondaryPressed: number;
|
|
63
|
+
colorSecondary: string;
|
|
64
|
+
colorSecondaryHover: string;
|
|
65
|
+
colorSecondaryPressed: string;
|
|
66
|
+
colorTertiary: string;
|
|
67
|
+
colorTertiaryHover: string;
|
|
68
|
+
colorTertiaryPressed: string;
|
|
69
|
+
colorQuaternary: string;
|
|
70
|
+
colorQuaternaryHover: string;
|
|
71
|
+
colorQuaternaryPressed: string;
|
|
60
72
|
color: string;
|
|
61
73
|
colorHover: string;
|
|
62
74
|
colorPressed: string;
|
|
63
75
|
colorFocus: string;
|
|
64
76
|
colorDisabled: string;
|
|
65
77
|
textColor: string;
|
|
78
|
+
textColorTertiary: string;
|
|
66
79
|
textColorHover: string;
|
|
67
80
|
textColorPressed: string;
|
|
68
81
|
textColorFocus: string;
|
|
69
82
|
textColorDisabled: string;
|
|
70
83
|
textColorText: string;
|
|
71
|
-
textColorTextDepth1: string;
|
|
72
|
-
textColorTextDepth2: string;
|
|
73
|
-
textColorTextDepth3: string;
|
|
74
84
|
textColorTextHover: string;
|
|
75
85
|
textColorTextPressed: string;
|
|
76
86
|
textColorTextFocus: string;
|
|
@@ -217,9 +227,8 @@ declare const inputNumberProps: {
|
|
|
217
227
|
borderDisabledError: string;
|
|
218
228
|
rippleColorError: string;
|
|
219
229
|
waveOpacity: string;
|
|
220
|
-
fontWeightText: string;
|
|
221
230
|
fontWeight: string;
|
|
222
|
-
|
|
231
|
+
fontWeightStrong: string;
|
|
223
232
|
paddingTiny: string;
|
|
224
233
|
paddingSmall: string;
|
|
225
234
|
paddingMedium: string;
|
|
@@ -316,20 +325,30 @@ declare const inputNumberProps: {
|
|
|
316
325
|
fontSizeMedium: string;
|
|
317
326
|
fontSizeLarge: string;
|
|
318
327
|
opacityDisabled: string;
|
|
328
|
+
colorOpacitySecondary: number;
|
|
329
|
+
colorOpacitySecondaryHover: number;
|
|
330
|
+
colorOpacitySecondaryPressed: number;
|
|
331
|
+
colorSecondary: string;
|
|
332
|
+
colorSecondaryHover: string;
|
|
333
|
+
colorSecondaryPressed: string;
|
|
334
|
+
colorTertiary: string;
|
|
335
|
+
colorTertiaryHover: string;
|
|
336
|
+
colorTertiaryPressed: string;
|
|
337
|
+
colorQuaternary: string;
|
|
338
|
+
colorQuaternaryHover: string;
|
|
339
|
+
colorQuaternaryPressed: string;
|
|
319
340
|
color: string;
|
|
320
341
|
colorHover: string;
|
|
321
342
|
colorPressed: string;
|
|
322
343
|
colorFocus: string;
|
|
323
344
|
colorDisabled: string;
|
|
324
345
|
textColor: string;
|
|
346
|
+
textColorTertiary: string;
|
|
325
347
|
textColorHover: string;
|
|
326
348
|
textColorPressed: string;
|
|
327
349
|
textColorFocus: string;
|
|
328
350
|
textColorDisabled: string;
|
|
329
351
|
textColorText: string;
|
|
330
|
-
textColorTextDepth1: string;
|
|
331
|
-
textColorTextDepth2: string;
|
|
332
|
-
textColorTextDepth3: string;
|
|
333
352
|
textColorTextHover: string;
|
|
334
353
|
textColorTextPressed: string;
|
|
335
354
|
textColorTextFocus: string;
|
|
@@ -476,9 +495,8 @@ declare const inputNumberProps: {
|
|
|
476
495
|
borderDisabledError: string;
|
|
477
496
|
rippleColorError: string;
|
|
478
497
|
waveOpacity: string;
|
|
479
|
-
fontWeightText: string;
|
|
480
498
|
fontWeight: string;
|
|
481
|
-
|
|
499
|
+
fontWeightStrong: string;
|
|
482
500
|
paddingTiny: string;
|
|
483
501
|
paddingSmall: string;
|
|
484
502
|
paddingMedium: string;
|
|
@@ -575,20 +593,30 @@ declare const inputNumberProps: {
|
|
|
575
593
|
fontSizeMedium: string;
|
|
576
594
|
fontSizeLarge: string;
|
|
577
595
|
opacityDisabled: string;
|
|
596
|
+
colorOpacitySecondary: number;
|
|
597
|
+
colorOpacitySecondaryHover: number;
|
|
598
|
+
colorOpacitySecondaryPressed: number;
|
|
599
|
+
colorSecondary: string;
|
|
600
|
+
colorSecondaryHover: string;
|
|
601
|
+
colorSecondaryPressed: string;
|
|
602
|
+
colorTertiary: string;
|
|
603
|
+
colorTertiaryHover: string;
|
|
604
|
+
colorTertiaryPressed: string;
|
|
605
|
+
colorQuaternary: string;
|
|
606
|
+
colorQuaternaryHover: string;
|
|
607
|
+
colorQuaternaryPressed: string;
|
|
578
608
|
color: string;
|
|
579
609
|
colorHover: string;
|
|
580
610
|
colorPressed: string;
|
|
581
611
|
colorFocus: string;
|
|
582
612
|
colorDisabled: string;
|
|
583
613
|
textColor: string;
|
|
614
|
+
textColorTertiary: string;
|
|
584
615
|
textColorHover: string;
|
|
585
616
|
textColorPressed: string;
|
|
586
617
|
textColorFocus: string;
|
|
587
618
|
textColorDisabled: string;
|
|
588
619
|
textColorText: string;
|
|
589
|
-
textColorTextDepth1: string;
|
|
590
|
-
textColorTextDepth2: string;
|
|
591
|
-
textColorTextDepth3: string;
|
|
592
620
|
textColorTextHover: string;
|
|
593
621
|
textColorTextPressed: string;
|
|
594
622
|
textColorTextFocus: string;
|
|
@@ -735,9 +763,8 @@ declare const inputNumberProps: {
|
|
|
735
763
|
borderDisabledError: string;
|
|
736
764
|
rippleColorError: string;
|
|
737
765
|
waveOpacity: string;
|
|
738
|
-
fontWeightText: string;
|
|
739
766
|
fontWeight: string;
|
|
740
|
-
|
|
767
|
+
fontWeightStrong: string;
|
|
741
768
|
paddingTiny: string;
|
|
742
769
|
paddingSmall: string;
|
|
743
770
|
paddingMedium: string;
|
|
@@ -875,20 +902,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
875
902
|
fontSizeMedium: string;
|
|
876
903
|
fontSizeLarge: string;
|
|
877
904
|
opacityDisabled: string;
|
|
905
|
+
colorOpacitySecondary: number;
|
|
906
|
+
colorOpacitySecondaryHover: number;
|
|
907
|
+
colorOpacitySecondaryPressed: number;
|
|
908
|
+
colorSecondary: string;
|
|
909
|
+
colorSecondaryHover: string;
|
|
910
|
+
colorSecondaryPressed: string;
|
|
911
|
+
colorTertiary: string;
|
|
912
|
+
colorTertiaryHover: string;
|
|
913
|
+
colorTertiaryPressed: string;
|
|
914
|
+
colorQuaternary: string;
|
|
915
|
+
colorQuaternaryHover: string;
|
|
916
|
+
colorQuaternaryPressed: string;
|
|
878
917
|
color: string;
|
|
879
918
|
colorHover: string;
|
|
880
919
|
colorPressed: string;
|
|
881
920
|
colorFocus: string;
|
|
882
921
|
colorDisabled: string;
|
|
883
922
|
textColor: string;
|
|
923
|
+
textColorTertiary: string;
|
|
884
924
|
textColorHover: string;
|
|
885
925
|
textColorPressed: string;
|
|
886
926
|
textColorFocus: string;
|
|
887
927
|
textColorDisabled: string;
|
|
888
928
|
textColorText: string;
|
|
889
|
-
textColorTextDepth1: string;
|
|
890
|
-
textColorTextDepth2: string;
|
|
891
|
-
textColorTextDepth3: string;
|
|
892
929
|
textColorTextHover: string;
|
|
893
930
|
textColorTextPressed: string;
|
|
894
931
|
textColorTextFocus: string;
|
|
@@ -1035,9 +1072,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1035
1072
|
borderDisabledError: string;
|
|
1036
1073
|
rippleColorError: string;
|
|
1037
1074
|
waveOpacity: string;
|
|
1038
|
-
fontWeightText: string;
|
|
1039
1075
|
fontWeight: string;
|
|
1040
|
-
|
|
1076
|
+
fontWeightStrong: string;
|
|
1041
1077
|
paddingTiny: string;
|
|
1042
1078
|
paddingSmall: string;
|
|
1043
1079
|
paddingMedium: string;
|
|
@@ -1134,20 +1170,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1134
1170
|
fontSizeMedium: string;
|
|
1135
1171
|
fontSizeLarge: string;
|
|
1136
1172
|
opacityDisabled: string;
|
|
1173
|
+
colorOpacitySecondary: number;
|
|
1174
|
+
colorOpacitySecondaryHover: number;
|
|
1175
|
+
colorOpacitySecondaryPressed: number;
|
|
1176
|
+
colorSecondary: string;
|
|
1177
|
+
colorSecondaryHover: string;
|
|
1178
|
+
colorSecondaryPressed: string;
|
|
1179
|
+
colorTertiary: string;
|
|
1180
|
+
colorTertiaryHover: string;
|
|
1181
|
+
colorTertiaryPressed: string;
|
|
1182
|
+
colorQuaternary: string;
|
|
1183
|
+
colorQuaternaryHover: string;
|
|
1184
|
+
colorQuaternaryPressed: string;
|
|
1137
1185
|
color: string;
|
|
1138
1186
|
colorHover: string;
|
|
1139
1187
|
colorPressed: string;
|
|
1140
1188
|
colorFocus: string;
|
|
1141
1189
|
colorDisabled: string;
|
|
1142
1190
|
textColor: string;
|
|
1191
|
+
textColorTertiary: string;
|
|
1143
1192
|
textColorHover: string;
|
|
1144
1193
|
textColorPressed: string;
|
|
1145
1194
|
textColorFocus: string;
|
|
1146
1195
|
textColorDisabled: string;
|
|
1147
1196
|
textColorText: string;
|
|
1148
|
-
textColorTextDepth1: string;
|
|
1149
|
-
textColorTextDepth2: string;
|
|
1150
|
-
textColorTextDepth3: string;
|
|
1151
1197
|
textColorTextHover: string;
|
|
1152
1198
|
textColorTextPressed: string;
|
|
1153
1199
|
textColorTextFocus: string;
|
|
@@ -1294,9 +1340,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1294
1340
|
borderDisabledError: string;
|
|
1295
1341
|
rippleColorError: string;
|
|
1296
1342
|
waveOpacity: string;
|
|
1297
|
-
fontWeightText: string;
|
|
1298
1343
|
fontWeight: string;
|
|
1299
|
-
|
|
1344
|
+
fontWeightStrong: string;
|
|
1300
1345
|
paddingTiny: string;
|
|
1301
1346
|
paddingSmall: string;
|
|
1302
1347
|
paddingMedium: string;
|
|
@@ -1393,20 +1438,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1393
1438
|
fontSizeMedium: string;
|
|
1394
1439
|
fontSizeLarge: string;
|
|
1395
1440
|
opacityDisabled: string;
|
|
1441
|
+
colorOpacitySecondary: number;
|
|
1442
|
+
colorOpacitySecondaryHover: number;
|
|
1443
|
+
colorOpacitySecondaryPressed: number;
|
|
1444
|
+
colorSecondary: string;
|
|
1445
|
+
colorSecondaryHover: string;
|
|
1446
|
+
colorSecondaryPressed: string;
|
|
1447
|
+
colorTertiary: string;
|
|
1448
|
+
colorTertiaryHover: string;
|
|
1449
|
+
colorTertiaryPressed: string;
|
|
1450
|
+
colorQuaternary: string;
|
|
1451
|
+
colorQuaternaryHover: string;
|
|
1452
|
+
colorQuaternaryPressed: string;
|
|
1396
1453
|
color: string;
|
|
1397
1454
|
colorHover: string;
|
|
1398
1455
|
colorPressed: string;
|
|
1399
1456
|
colorFocus: string;
|
|
1400
1457
|
colorDisabled: string;
|
|
1401
1458
|
textColor: string;
|
|
1459
|
+
textColorTertiary: string;
|
|
1402
1460
|
textColorHover: string;
|
|
1403
1461
|
textColorPressed: string;
|
|
1404
1462
|
textColorFocus: string;
|
|
1405
1463
|
textColorDisabled: string;
|
|
1406
1464
|
textColorText: string;
|
|
1407
|
-
textColorTextDepth1: string;
|
|
1408
|
-
textColorTextDepth2: string;
|
|
1409
|
-
textColorTextDepth3: string;
|
|
1410
1465
|
textColorTextHover: string;
|
|
1411
1466
|
textColorTextPressed: string;
|
|
1412
1467
|
textColorTextFocus: string;
|
|
@@ -1553,9 +1608,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1553
1608
|
borderDisabledError: string;
|
|
1554
1609
|
rippleColorError: string;
|
|
1555
1610
|
waveOpacity: string;
|
|
1556
|
-
fontWeightText: string;
|
|
1557
1611
|
fontWeight: string;
|
|
1558
|
-
|
|
1612
|
+
fontWeightStrong: string;
|
|
1559
1613
|
paddingTiny: string;
|
|
1560
1614
|
paddingSmall: string;
|
|
1561
1615
|
paddingMedium: string;
|
|
@@ -1643,6 +1697,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1643
1697
|
isCompositing: boolean;
|
|
1644
1698
|
blur: () => void;
|
|
1645
1699
|
focus: () => void;
|
|
1700
|
+
select: () => void;
|
|
1646
1701
|
activate: () => void;
|
|
1647
1702
|
deactivate: () => void;
|
|
1648
1703
|
} | null>;
|
|
@@ -1744,6 +1799,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1744
1799
|
pressedColor: string;
|
|
1745
1800
|
opacityDisabled: string;
|
|
1746
1801
|
inputColorDisabled: string;
|
|
1802
|
+
buttonColor2: string;
|
|
1803
|
+
buttonColor2Hover: string;
|
|
1804
|
+
buttonColor2Pressed: string;
|
|
1747
1805
|
boxShadow1: string;
|
|
1748
1806
|
boxShadow2: string;
|
|
1749
1807
|
boxShadow3: string;
|
|
@@ -1789,20 +1847,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1789
1847
|
fontSizeMedium: string;
|
|
1790
1848
|
fontSizeLarge: string;
|
|
1791
1849
|
opacityDisabled: string;
|
|
1850
|
+
colorOpacitySecondary: number;
|
|
1851
|
+
colorOpacitySecondaryHover: number;
|
|
1852
|
+
colorOpacitySecondaryPressed: number;
|
|
1853
|
+
colorSecondary: string;
|
|
1854
|
+
colorSecondaryHover: string;
|
|
1855
|
+
colorSecondaryPressed: string;
|
|
1856
|
+
colorTertiary: string;
|
|
1857
|
+
colorTertiaryHover: string;
|
|
1858
|
+
colorTertiaryPressed: string;
|
|
1859
|
+
colorQuaternary: string;
|
|
1860
|
+
colorQuaternaryHover: string;
|
|
1861
|
+
colorQuaternaryPressed: string;
|
|
1792
1862
|
color: string;
|
|
1793
1863
|
colorHover: string;
|
|
1794
1864
|
colorPressed: string;
|
|
1795
1865
|
colorFocus: string;
|
|
1796
1866
|
colorDisabled: string;
|
|
1797
1867
|
textColor: string;
|
|
1868
|
+
textColorTertiary: string;
|
|
1798
1869
|
textColorHover: string;
|
|
1799
1870
|
textColorPressed: string;
|
|
1800
1871
|
textColorFocus: string;
|
|
1801
1872
|
textColorDisabled: string;
|
|
1802
1873
|
textColorText: string;
|
|
1803
|
-
textColorTextDepth1: string;
|
|
1804
|
-
textColorTextDepth2: string;
|
|
1805
|
-
textColorTextDepth3: string;
|
|
1806
1874
|
textColorTextHover: string;
|
|
1807
1875
|
textColorTextPressed: string;
|
|
1808
1876
|
textColorTextFocus: string;
|
|
@@ -1949,9 +2017,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1949
2017
|
borderDisabledError: string;
|
|
1950
2018
|
rippleColorError: string;
|
|
1951
2019
|
waveOpacity: string;
|
|
1952
|
-
fontWeightText: string;
|
|
1953
2020
|
fontWeight: string;
|
|
1954
|
-
|
|
2021
|
+
fontWeightStrong: string;
|
|
1955
2022
|
paddingTiny: string;
|
|
1956
2023
|
paddingSmall: string;
|
|
1957
2024
|
paddingMedium: string;
|
|
@@ -2111,20 +2178,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2111
2178
|
fontSizeMedium: string;
|
|
2112
2179
|
fontSizeLarge: string;
|
|
2113
2180
|
opacityDisabled: string;
|
|
2181
|
+
colorOpacitySecondary: number;
|
|
2182
|
+
colorOpacitySecondaryHover: number;
|
|
2183
|
+
colorOpacitySecondaryPressed: number;
|
|
2184
|
+
colorSecondary: string;
|
|
2185
|
+
colorSecondaryHover: string;
|
|
2186
|
+
colorSecondaryPressed: string;
|
|
2187
|
+
colorTertiary: string;
|
|
2188
|
+
colorTertiaryHover: string;
|
|
2189
|
+
colorTertiaryPressed: string;
|
|
2190
|
+
colorQuaternary: string;
|
|
2191
|
+
colorQuaternaryHover: string;
|
|
2192
|
+
colorQuaternaryPressed: string;
|
|
2114
2193
|
color: string;
|
|
2115
2194
|
colorHover: string;
|
|
2116
2195
|
colorPressed: string;
|
|
2117
2196
|
colorFocus: string;
|
|
2118
2197
|
colorDisabled: string;
|
|
2119
2198
|
textColor: string;
|
|
2199
|
+
textColorTertiary: string;
|
|
2120
2200
|
textColorHover: string;
|
|
2121
2201
|
textColorPressed: string;
|
|
2122
2202
|
textColorFocus: string;
|
|
2123
2203
|
textColorDisabled: string;
|
|
2124
2204
|
textColorText: string;
|
|
2125
|
-
textColorTextDepth1: string;
|
|
2126
|
-
textColorTextDepth2: string;
|
|
2127
|
-
textColorTextDepth3: string;
|
|
2128
2205
|
textColorTextHover: string;
|
|
2129
2206
|
textColorTextPressed: string;
|
|
2130
2207
|
textColorTextFocus: string;
|
|
@@ -2271,9 +2348,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2271
2348
|
borderDisabledError: string;
|
|
2272
2349
|
rippleColorError: string;
|
|
2273
2350
|
waveOpacity: string;
|
|
2274
|
-
fontWeightText: string;
|
|
2275
2351
|
fontWeight: string;
|
|
2276
|
-
|
|
2352
|
+
fontWeightStrong: string;
|
|
2277
2353
|
paddingTiny: string;
|
|
2278
2354
|
paddingSmall: string;
|
|
2279
2355
|
paddingMedium: string;
|
|
@@ -2370,20 +2446,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2370
2446
|
fontSizeMedium: string;
|
|
2371
2447
|
fontSizeLarge: string;
|
|
2372
2448
|
opacityDisabled: string;
|
|
2449
|
+
colorOpacitySecondary: number;
|
|
2450
|
+
colorOpacitySecondaryHover: number;
|
|
2451
|
+
colorOpacitySecondaryPressed: number;
|
|
2452
|
+
colorSecondary: string;
|
|
2453
|
+
colorSecondaryHover: string;
|
|
2454
|
+
colorSecondaryPressed: string;
|
|
2455
|
+
colorTertiary: string;
|
|
2456
|
+
colorTertiaryHover: string;
|
|
2457
|
+
colorTertiaryPressed: string;
|
|
2458
|
+
colorQuaternary: string;
|
|
2459
|
+
colorQuaternaryHover: string;
|
|
2460
|
+
colorQuaternaryPressed: string;
|
|
2373
2461
|
color: string;
|
|
2374
2462
|
colorHover: string;
|
|
2375
2463
|
colorPressed: string;
|
|
2376
2464
|
colorFocus: string;
|
|
2377
2465
|
colorDisabled: string;
|
|
2378
2466
|
textColor: string;
|
|
2467
|
+
textColorTertiary: string;
|
|
2379
2468
|
textColorHover: string;
|
|
2380
2469
|
textColorPressed: string;
|
|
2381
2470
|
textColorFocus: string;
|
|
2382
2471
|
textColorDisabled: string;
|
|
2383
2472
|
textColorText: string;
|
|
2384
|
-
textColorTextDepth1: string;
|
|
2385
|
-
textColorTextDepth2: string;
|
|
2386
|
-
textColorTextDepth3: string;
|
|
2387
2473
|
textColorTextHover: string;
|
|
2388
2474
|
textColorTextPressed: string;
|
|
2389
2475
|
textColorTextFocus: string;
|
|
@@ -2530,9 +2616,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2530
2616
|
borderDisabledError: string;
|
|
2531
2617
|
rippleColorError: string;
|
|
2532
2618
|
waveOpacity: string;
|
|
2533
|
-
fontWeightText: string;
|
|
2534
2619
|
fontWeight: string;
|
|
2535
|
-
|
|
2620
|
+
fontWeightStrong: string;
|
|
2536
2621
|
paddingTiny: string;
|
|
2537
2622
|
paddingSmall: string;
|
|
2538
2623
|
paddingMedium: string;
|
|
@@ -2629,20 +2714,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2629
2714
|
fontSizeMedium: string;
|
|
2630
2715
|
fontSizeLarge: string;
|
|
2631
2716
|
opacityDisabled: string;
|
|
2717
|
+
colorOpacitySecondary: number;
|
|
2718
|
+
colorOpacitySecondaryHover: number;
|
|
2719
|
+
colorOpacitySecondaryPressed: number;
|
|
2720
|
+
colorSecondary: string;
|
|
2721
|
+
colorSecondaryHover: string;
|
|
2722
|
+
colorSecondaryPressed: string;
|
|
2723
|
+
colorTertiary: string;
|
|
2724
|
+
colorTertiaryHover: string;
|
|
2725
|
+
colorTertiaryPressed: string;
|
|
2726
|
+
colorQuaternary: string;
|
|
2727
|
+
colorQuaternaryHover: string;
|
|
2728
|
+
colorQuaternaryPressed: string;
|
|
2632
2729
|
color: string;
|
|
2633
2730
|
colorHover: string;
|
|
2634
2731
|
colorPressed: string;
|
|
2635
2732
|
colorFocus: string;
|
|
2636
2733
|
colorDisabled: string;
|
|
2637
2734
|
textColor: string;
|
|
2735
|
+
textColorTertiary: string;
|
|
2638
2736
|
textColorHover: string;
|
|
2639
2737
|
textColorPressed: string;
|
|
2640
2738
|
textColorFocus: string;
|
|
2641
2739
|
textColorDisabled: string;
|
|
2642
2740
|
textColorText: string;
|
|
2643
|
-
textColorTextDepth1: string;
|
|
2644
|
-
textColorTextDepth2: string;
|
|
2645
|
-
textColorTextDepth3: string;
|
|
2646
2741
|
textColorTextHover: string;
|
|
2647
2742
|
textColorTextPressed: string;
|
|
2648
2743
|
textColorTextFocus: string;
|
|
@@ -2789,9 +2884,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2789
2884
|
borderDisabledError: string;
|
|
2790
2885
|
rippleColorError: string;
|
|
2791
2886
|
waveOpacity: string;
|
|
2792
|
-
fontWeightText: string;
|
|
2793
2887
|
fontWeight: string;
|
|
2794
|
-
|
|
2888
|
+
fontWeightStrong: string;
|
|
2795
2889
|
paddingTiny: string;
|
|
2796
2890
|
paddingSmall: string;
|
|
2797
2891
|
paddingMedium: string;
|
|
@@ -20,20 +20,30 @@ declare const inputNumberLight: import("../../_mixins").Theme<"InputNumber", {
|
|
|
20
20
|
fontSizeMedium: string;
|
|
21
21
|
fontSizeLarge: string;
|
|
22
22
|
opacityDisabled: string;
|
|
23
|
+
colorOpacitySecondary: number;
|
|
24
|
+
colorOpacitySecondaryHover: number;
|
|
25
|
+
colorOpacitySecondaryPressed: number;
|
|
26
|
+
colorSecondary: string;
|
|
27
|
+
colorSecondaryHover: string;
|
|
28
|
+
colorSecondaryPressed: string;
|
|
29
|
+
colorTertiary: string;
|
|
30
|
+
colorTertiaryHover: string;
|
|
31
|
+
colorTertiaryPressed: string;
|
|
32
|
+
colorQuaternary: string;
|
|
33
|
+
colorQuaternaryHover: string;
|
|
34
|
+
colorQuaternaryPressed: string;
|
|
23
35
|
color: string;
|
|
24
36
|
colorHover: string;
|
|
25
37
|
colorPressed: string;
|
|
26
38
|
colorFocus: string;
|
|
27
39
|
colorDisabled: string;
|
|
28
40
|
textColor: string;
|
|
41
|
+
textColorTertiary: string;
|
|
29
42
|
textColorHover: string;
|
|
30
43
|
textColorPressed: string;
|
|
31
44
|
textColorFocus: string;
|
|
32
45
|
textColorDisabled: string;
|
|
33
46
|
textColorText: string;
|
|
34
|
-
textColorTextDepth1: string;
|
|
35
|
-
textColorTextDepth2: string;
|
|
36
|
-
textColorTextDepth3: string;
|
|
37
47
|
textColorTextHover: string;
|
|
38
48
|
textColorTextPressed: string;
|
|
39
49
|
textColorTextFocus: string;
|
|
@@ -180,9 +190,8 @@ declare const inputNumberLight: import("../../_mixins").Theme<"InputNumber", {
|
|
|
180
190
|
borderDisabledError: string;
|
|
181
191
|
rippleColorError: string;
|
|
182
192
|
waveOpacity: string;
|
|
183
|
-
fontWeightText: string;
|
|
184
193
|
fontWeight: string;
|
|
185
|
-
|
|
194
|
+
fontWeightStrong: string;
|
|
186
195
|
paddingTiny: string;
|
|
187
196
|
paddingSmall: string;
|
|
188
197
|
paddingMedium: string;
|
|
@@ -221,6 +221,9 @@ export declare function createLayoutComponent(isContent: boolean): import("vue")
|
|
|
221
221
|
pressedColor: string;
|
|
222
222
|
opacityDisabled: string;
|
|
223
223
|
inputColorDisabled: string;
|
|
224
|
+
buttonColor2: string;
|
|
225
|
+
buttonColor2Hover: string;
|
|
226
|
+
buttonColor2Pressed: string;
|
|
224
227
|
boxShadow1: string;
|
|
225
228
|
boxShadow2: string;
|
|
226
229
|
boxShadow3: string;
|
|
@@ -608,6 +611,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
608
611
|
pressedColor: string;
|
|
609
612
|
opacityDisabled: string;
|
|
610
613
|
inputColorDisabled: string;
|
|
614
|
+
buttonColor2: string;
|
|
615
|
+
buttonColor2Hover: string;
|
|
616
|
+
buttonColor2Pressed: string;
|
|
611
617
|
boxShadow1: string;
|
|
612
618
|
boxShadow2: string;
|
|
613
619
|
boxShadow3: string;
|
|
@@ -194,6 +194,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
194
194
|
pressedColor: string;
|
|
195
195
|
opacityDisabled: string;
|
|
196
196
|
inputColorDisabled: string;
|
|
197
|
+
buttonColor2: string;
|
|
198
|
+
buttonColor2Hover: string;
|
|
199
|
+
buttonColor2Pressed: string;
|
|
197
200
|
boxShadow1: string;
|
|
198
201
|
boxShadow2: string;
|
|
199
202
|
boxShadow3: string;
|
|
@@ -281,6 +281,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
281
281
|
pressedColor: string;
|
|
282
282
|
opacityDisabled: string;
|
|
283
283
|
inputColorDisabled: string;
|
|
284
|
+
buttonColor2: string;
|
|
285
|
+
buttonColor2Hover: string;
|
|
286
|
+
buttonColor2Pressed: string;
|
|
284
287
|
boxShadow1: string;
|
|
285
288
|
boxShadow2: string;
|
|
286
289
|
boxShadow3: string;
|
package/lib/log/src/Log.d.ts
CHANGED
|
@@ -333,6 +333,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
333
333
|
pressedColor: string;
|
|
334
334
|
opacityDisabled: string;
|
|
335
335
|
inputColorDisabled: string;
|
|
336
|
+
buttonColor2: string;
|
|
337
|
+
buttonColor2Hover: string;
|
|
338
|
+
buttonColor2Pressed: string;
|
|
336
339
|
boxShadow1: string;
|
|
337
340
|
boxShadow2: string;
|
|
338
341
|
boxShadow3: string;
|
|
@@ -881,6 +881,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
881
881
|
pressedColor: string;
|
|
882
882
|
opacityDisabled: string;
|
|
883
883
|
inputColorDisabled: string;
|
|
884
|
+
buttonColor2: string;
|
|
885
|
+
buttonColor2Hover: string;
|
|
886
|
+
buttonColor2Pressed: string;
|
|
884
887
|
boxShadow1: string;
|
|
885
888
|
boxShadow2: string;
|
|
886
889
|
boxShadow3: string;
|
|
@@ -1068,6 +1071,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1068
1071
|
isCompositing: boolean;
|
|
1069
1072
|
blur: () => void;
|
|
1070
1073
|
focus: () => void;
|
|
1074
|
+
select: () => void;
|
|
1071
1075
|
activate: () => void;
|
|
1072
1076
|
deactivate: () => void;
|
|
1073
1077
|
} | null>;
|
package/lib/menu/index.d.ts
CHANGED