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
|
@@ -87,6 +87,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
87
|
pressedColor: string;
|
|
88
88
|
opacityDisabled: string;
|
|
89
89
|
inputColorDisabled: string;
|
|
90
|
+
buttonColor2: string;
|
|
91
|
+
buttonColor2Hover: string;
|
|
92
|
+
buttonColor2Pressed: string;
|
|
90
93
|
boxShadow1: string;
|
|
91
94
|
boxShadow2: string;
|
|
92
95
|
boxShadow3: string;
|
|
@@ -204,20 +207,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
204
207
|
fontSizeMedium: string;
|
|
205
208
|
fontSizeLarge: string;
|
|
206
209
|
opacityDisabled: string;
|
|
210
|
+
colorOpacitySecondary: number;
|
|
211
|
+
colorOpacitySecondaryHover: number;
|
|
212
|
+
colorOpacitySecondaryPressed: number;
|
|
213
|
+
colorSecondary: string;
|
|
214
|
+
colorSecondaryHover: string;
|
|
215
|
+
colorSecondaryPressed: string;
|
|
216
|
+
colorTertiary: string;
|
|
217
|
+
colorTertiaryHover: string;
|
|
218
|
+
colorTertiaryPressed: string;
|
|
219
|
+
colorQuaternary: string;
|
|
220
|
+
colorQuaternaryHover: string;
|
|
221
|
+
colorQuaternaryPressed: string;
|
|
207
222
|
color: string;
|
|
208
223
|
colorHover: string;
|
|
209
224
|
colorPressed: string;
|
|
210
225
|
colorFocus: string;
|
|
211
226
|
colorDisabled: string;
|
|
212
227
|
textColor: string;
|
|
228
|
+
textColorTertiary: string;
|
|
213
229
|
textColorHover: string;
|
|
214
230
|
textColorPressed: string;
|
|
215
231
|
textColorFocus: string;
|
|
216
232
|
textColorDisabled: string;
|
|
217
233
|
textColorText: string;
|
|
218
|
-
textColorTextDepth1: string;
|
|
219
|
-
textColorTextDepth2: string;
|
|
220
|
-
textColorTextDepth3: string;
|
|
221
234
|
textColorTextHover: string;
|
|
222
235
|
textColorTextPressed: string;
|
|
223
236
|
textColorTextFocus: string;
|
|
@@ -364,9 +377,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
364
377
|
borderDisabledError: string;
|
|
365
378
|
rippleColorError: string;
|
|
366
379
|
waveOpacity: string;
|
|
367
|
-
fontWeightText: string;
|
|
368
380
|
fontWeight: string;
|
|
369
|
-
|
|
381
|
+
fontWeightStrong: string;
|
|
370
382
|
paddingTiny: string;
|
|
371
383
|
paddingSmall: string;
|
|
372
384
|
paddingMedium: string;
|
|
@@ -130,20 +130,30 @@ export declare const colorPickerPanelProps: {
|
|
|
130
130
|
fontSizeMedium: string;
|
|
131
131
|
fontSizeLarge: string;
|
|
132
132
|
opacityDisabled: string;
|
|
133
|
+
colorOpacitySecondary: number;
|
|
134
|
+
colorOpacitySecondaryHover: number;
|
|
135
|
+
colorOpacitySecondaryPressed: number;
|
|
136
|
+
colorSecondary: string;
|
|
137
|
+
colorSecondaryHover: string;
|
|
138
|
+
colorSecondaryPressed: string;
|
|
139
|
+
colorTertiary: string;
|
|
140
|
+
colorTertiaryHover: string;
|
|
141
|
+
colorTertiaryPressed: string;
|
|
142
|
+
colorQuaternary: string;
|
|
143
|
+
colorQuaternaryHover: string;
|
|
144
|
+
colorQuaternaryPressed: string;
|
|
133
145
|
color: string;
|
|
134
146
|
colorHover: string;
|
|
135
147
|
colorPressed: string;
|
|
136
148
|
colorFocus: string;
|
|
137
149
|
colorDisabled: string;
|
|
138
150
|
textColor: string;
|
|
151
|
+
textColorTertiary: string;
|
|
139
152
|
textColorHover: string;
|
|
140
153
|
textColorPressed: string;
|
|
141
154
|
textColorFocus: string;
|
|
142
155
|
textColorDisabled: string;
|
|
143
156
|
textColorText: string;
|
|
144
|
-
textColorTextDepth1: string;
|
|
145
|
-
textColorTextDepth2: string;
|
|
146
|
-
textColorTextDepth3: string;
|
|
147
157
|
textColorTextHover: string;
|
|
148
158
|
textColorTextPressed: string;
|
|
149
159
|
textColorTextFocus: string;
|
|
@@ -290,9 +300,8 @@ export declare const colorPickerPanelProps: {
|
|
|
290
300
|
borderDisabledError: string;
|
|
291
301
|
rippleColorError: string;
|
|
292
302
|
waveOpacity: string;
|
|
293
|
-
fontWeightText: string;
|
|
294
303
|
fontWeight: string;
|
|
295
|
-
|
|
304
|
+
fontWeightStrong: string;
|
|
296
305
|
paddingTiny: string;
|
|
297
306
|
paddingSmall: string;
|
|
298
307
|
paddingMedium: string;
|
|
@@ -401,20 +410,30 @@ export declare const colorPickerPanelProps: {
|
|
|
401
410
|
fontSizeMedium: string;
|
|
402
411
|
fontSizeLarge: string;
|
|
403
412
|
opacityDisabled: string;
|
|
413
|
+
colorOpacitySecondary: number;
|
|
414
|
+
colorOpacitySecondaryHover: number;
|
|
415
|
+
colorOpacitySecondaryPressed: number;
|
|
416
|
+
colorSecondary: string;
|
|
417
|
+
colorSecondaryHover: string;
|
|
418
|
+
colorSecondaryPressed: string;
|
|
419
|
+
colorTertiary: string;
|
|
420
|
+
colorTertiaryHover: string;
|
|
421
|
+
colorTertiaryPressed: string;
|
|
422
|
+
colorQuaternary: string;
|
|
423
|
+
colorQuaternaryHover: string;
|
|
424
|
+
colorQuaternaryPressed: string;
|
|
404
425
|
color: string;
|
|
405
426
|
colorHover: string;
|
|
406
427
|
colorPressed: string;
|
|
407
428
|
colorFocus: string;
|
|
408
429
|
colorDisabled: string;
|
|
409
430
|
textColor: string;
|
|
431
|
+
textColorTertiary: string;
|
|
410
432
|
textColorHover: string;
|
|
411
433
|
textColorPressed: string;
|
|
412
434
|
textColorFocus: string;
|
|
413
435
|
textColorDisabled: string;
|
|
414
436
|
textColorText: string;
|
|
415
|
-
textColorTextDepth1: string;
|
|
416
|
-
textColorTextDepth2: string;
|
|
417
|
-
textColorTextDepth3: string;
|
|
418
437
|
textColorTextHover: string;
|
|
419
438
|
textColorTextPressed: string;
|
|
420
439
|
textColorTextFocus: string;
|
|
@@ -561,9 +580,8 @@ export declare const colorPickerPanelProps: {
|
|
|
561
580
|
borderDisabledError: string;
|
|
562
581
|
rippleColorError: string;
|
|
563
582
|
waveOpacity: string;
|
|
564
|
-
fontWeightText: string;
|
|
565
583
|
fontWeight: string;
|
|
566
|
-
|
|
584
|
+
fontWeightStrong: string;
|
|
567
585
|
paddingTiny: string;
|
|
568
586
|
paddingSmall: string;
|
|
569
587
|
paddingMedium: string;
|
|
@@ -672,20 +690,30 @@ export declare const colorPickerPanelProps: {
|
|
|
672
690
|
fontSizeMedium: string;
|
|
673
691
|
fontSizeLarge: string;
|
|
674
692
|
opacityDisabled: string;
|
|
693
|
+
colorOpacitySecondary: number;
|
|
694
|
+
colorOpacitySecondaryHover: number;
|
|
695
|
+
colorOpacitySecondaryPressed: number;
|
|
696
|
+
colorSecondary: string;
|
|
697
|
+
colorSecondaryHover: string;
|
|
698
|
+
colorSecondaryPressed: string;
|
|
699
|
+
colorTertiary: string;
|
|
700
|
+
colorTertiaryHover: string;
|
|
701
|
+
colorTertiaryPressed: string;
|
|
702
|
+
colorQuaternary: string;
|
|
703
|
+
colorQuaternaryHover: string;
|
|
704
|
+
colorQuaternaryPressed: string;
|
|
675
705
|
color: string;
|
|
676
706
|
colorHover: string;
|
|
677
707
|
colorPressed: string;
|
|
678
708
|
colorFocus: string;
|
|
679
709
|
colorDisabled: string;
|
|
680
710
|
textColor: string;
|
|
711
|
+
textColorTertiary: string;
|
|
681
712
|
textColorHover: string;
|
|
682
713
|
textColorPressed: string;
|
|
683
714
|
textColorFocus: string;
|
|
684
715
|
textColorDisabled: string;
|
|
685
716
|
textColorText: string;
|
|
686
|
-
textColorTextDepth1: string;
|
|
687
|
-
textColorTextDepth2: string;
|
|
688
|
-
textColorTextDepth3: string;
|
|
689
717
|
textColorTextHover: string;
|
|
690
718
|
textColorTextPressed: string;
|
|
691
719
|
textColorTextFocus: string;
|
|
@@ -832,9 +860,8 @@ export declare const colorPickerPanelProps: {
|
|
|
832
860
|
borderDisabledError: string;
|
|
833
861
|
rippleColorError: string;
|
|
834
862
|
waveOpacity: string;
|
|
835
|
-
fontWeightText: string;
|
|
836
863
|
fontWeight: string;
|
|
837
|
-
|
|
864
|
+
fontWeightStrong: string;
|
|
838
865
|
paddingTiny: string;
|
|
839
866
|
paddingSmall: string;
|
|
840
867
|
paddingMedium: string;
|
|
@@ -982,20 +1009,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
982
1009
|
fontSizeMedium: string;
|
|
983
1010
|
fontSizeLarge: string;
|
|
984
1011
|
opacityDisabled: string;
|
|
1012
|
+
colorOpacitySecondary: number;
|
|
1013
|
+
colorOpacitySecondaryHover: number;
|
|
1014
|
+
colorOpacitySecondaryPressed: number;
|
|
1015
|
+
colorSecondary: string;
|
|
1016
|
+
colorSecondaryHover: string;
|
|
1017
|
+
colorSecondaryPressed: string;
|
|
1018
|
+
colorTertiary: string;
|
|
1019
|
+
colorTertiaryHover: string;
|
|
1020
|
+
colorTertiaryPressed: string;
|
|
1021
|
+
colorQuaternary: string;
|
|
1022
|
+
colorQuaternaryHover: string;
|
|
1023
|
+
colorQuaternaryPressed: string;
|
|
985
1024
|
color: string;
|
|
986
1025
|
colorHover: string;
|
|
987
1026
|
colorPressed: string;
|
|
988
1027
|
colorFocus: string;
|
|
989
1028
|
colorDisabled: string;
|
|
990
1029
|
textColor: string;
|
|
1030
|
+
textColorTertiary: string;
|
|
991
1031
|
textColorHover: string;
|
|
992
1032
|
textColorPressed: string;
|
|
993
1033
|
textColorFocus: string;
|
|
994
1034
|
textColorDisabled: string;
|
|
995
1035
|
textColorText: string;
|
|
996
|
-
textColorTextDepth1: string;
|
|
997
|
-
textColorTextDepth2: string;
|
|
998
|
-
textColorTextDepth3: string;
|
|
999
1036
|
textColorTextHover: string;
|
|
1000
1037
|
textColorTextPressed: string;
|
|
1001
1038
|
textColorTextFocus: string;
|
|
@@ -1142,9 +1179,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1142
1179
|
borderDisabledError: string;
|
|
1143
1180
|
rippleColorError: string;
|
|
1144
1181
|
waveOpacity: string;
|
|
1145
|
-
fontWeightText: string;
|
|
1146
1182
|
fontWeight: string;
|
|
1147
|
-
|
|
1183
|
+
fontWeightStrong: string;
|
|
1148
1184
|
paddingTiny: string;
|
|
1149
1185
|
paddingSmall: string;
|
|
1150
1186
|
paddingMedium: string;
|
|
@@ -1253,20 +1289,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1253
1289
|
fontSizeMedium: string;
|
|
1254
1290
|
fontSizeLarge: string;
|
|
1255
1291
|
opacityDisabled: string;
|
|
1292
|
+
colorOpacitySecondary: number;
|
|
1293
|
+
colorOpacitySecondaryHover: number;
|
|
1294
|
+
colorOpacitySecondaryPressed: number;
|
|
1295
|
+
colorSecondary: string;
|
|
1296
|
+
colorSecondaryHover: string;
|
|
1297
|
+
colorSecondaryPressed: string;
|
|
1298
|
+
colorTertiary: string;
|
|
1299
|
+
colorTertiaryHover: string;
|
|
1300
|
+
colorTertiaryPressed: string;
|
|
1301
|
+
colorQuaternary: string;
|
|
1302
|
+
colorQuaternaryHover: string;
|
|
1303
|
+
colorQuaternaryPressed: string;
|
|
1256
1304
|
color: string;
|
|
1257
1305
|
colorHover: string;
|
|
1258
1306
|
colorPressed: string;
|
|
1259
1307
|
colorFocus: string;
|
|
1260
1308
|
colorDisabled: string;
|
|
1261
1309
|
textColor: string;
|
|
1310
|
+
textColorTertiary: string;
|
|
1262
1311
|
textColorHover: string;
|
|
1263
1312
|
textColorPressed: string;
|
|
1264
1313
|
textColorFocus: string;
|
|
1265
1314
|
textColorDisabled: string;
|
|
1266
1315
|
textColorText: string;
|
|
1267
|
-
textColorTextDepth1: string;
|
|
1268
|
-
textColorTextDepth2: string;
|
|
1269
|
-
textColorTextDepth3: string;
|
|
1270
1316
|
textColorTextHover: string;
|
|
1271
1317
|
textColorTextPressed: string;
|
|
1272
1318
|
textColorTextFocus: string;
|
|
@@ -1413,9 +1459,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1413
1459
|
borderDisabledError: string;
|
|
1414
1460
|
rippleColorError: string;
|
|
1415
1461
|
waveOpacity: string;
|
|
1416
|
-
fontWeightText: string;
|
|
1417
1462
|
fontWeight: string;
|
|
1418
|
-
|
|
1463
|
+
fontWeightStrong: string;
|
|
1419
1464
|
paddingTiny: string;
|
|
1420
1465
|
paddingSmall: string;
|
|
1421
1466
|
paddingMedium: string;
|
|
@@ -1524,20 +1569,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1524
1569
|
fontSizeMedium: string;
|
|
1525
1570
|
fontSizeLarge: string;
|
|
1526
1571
|
opacityDisabled: string;
|
|
1572
|
+
colorOpacitySecondary: number;
|
|
1573
|
+
colorOpacitySecondaryHover: number;
|
|
1574
|
+
colorOpacitySecondaryPressed: number;
|
|
1575
|
+
colorSecondary: string;
|
|
1576
|
+
colorSecondaryHover: string;
|
|
1577
|
+
colorSecondaryPressed: string;
|
|
1578
|
+
colorTertiary: string;
|
|
1579
|
+
colorTertiaryHover: string;
|
|
1580
|
+
colorTertiaryPressed: string;
|
|
1581
|
+
colorQuaternary: string;
|
|
1582
|
+
colorQuaternaryHover: string;
|
|
1583
|
+
colorQuaternaryPressed: string;
|
|
1527
1584
|
color: string;
|
|
1528
1585
|
colorHover: string;
|
|
1529
1586
|
colorPressed: string;
|
|
1530
1587
|
colorFocus: string;
|
|
1531
1588
|
colorDisabled: string;
|
|
1532
1589
|
textColor: string;
|
|
1590
|
+
textColorTertiary: string;
|
|
1533
1591
|
textColorHover: string;
|
|
1534
1592
|
textColorPressed: string;
|
|
1535
1593
|
textColorFocus: string;
|
|
1536
1594
|
textColorDisabled: string;
|
|
1537
1595
|
textColorText: string;
|
|
1538
|
-
textColorTextDepth1: string;
|
|
1539
|
-
textColorTextDepth2: string;
|
|
1540
|
-
textColorTextDepth3: string;
|
|
1541
1596
|
textColorTextHover: string;
|
|
1542
1597
|
textColorTextPressed: string;
|
|
1543
1598
|
textColorTextFocus: string;
|
|
@@ -1684,9 +1739,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1684
1739
|
borderDisabledError: string;
|
|
1685
1740
|
rippleColorError: string;
|
|
1686
1741
|
waveOpacity: string;
|
|
1687
|
-
fontWeightText: string;
|
|
1688
1742
|
fontWeight: string;
|
|
1689
|
-
|
|
1743
|
+
fontWeightStrong: string;
|
|
1690
1744
|
paddingTiny: string;
|
|
1691
1745
|
paddingSmall: string;
|
|
1692
1746
|
paddingMedium: string;
|
|
@@ -1852,20 +1906,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1852
1906
|
fontSizeMedium: string;
|
|
1853
1907
|
fontSizeLarge: string;
|
|
1854
1908
|
opacityDisabled: string;
|
|
1909
|
+
colorOpacitySecondary: number;
|
|
1910
|
+
colorOpacitySecondaryHover: number;
|
|
1911
|
+
colorOpacitySecondaryPressed: number;
|
|
1912
|
+
colorSecondary: string;
|
|
1913
|
+
colorSecondaryHover: string;
|
|
1914
|
+
colorSecondaryPressed: string;
|
|
1915
|
+
colorTertiary: string;
|
|
1916
|
+
colorTertiaryHover: string;
|
|
1917
|
+
colorTertiaryPressed: string;
|
|
1918
|
+
colorQuaternary: string;
|
|
1919
|
+
colorQuaternaryHover: string;
|
|
1920
|
+
colorQuaternaryPressed: string;
|
|
1855
1921
|
color: string;
|
|
1856
1922
|
colorHover: string;
|
|
1857
1923
|
colorPressed: string;
|
|
1858
1924
|
colorFocus: string;
|
|
1859
1925
|
colorDisabled: string;
|
|
1860
1926
|
textColor: string;
|
|
1927
|
+
textColorTertiary: string;
|
|
1861
1928
|
textColorHover: string;
|
|
1862
1929
|
textColorPressed: string;
|
|
1863
1930
|
textColorFocus: string;
|
|
1864
1931
|
textColorDisabled: string;
|
|
1865
1932
|
textColorText: string;
|
|
1866
|
-
textColorTextDepth1: string;
|
|
1867
|
-
textColorTextDepth2: string;
|
|
1868
|
-
textColorTextDepth3: string;
|
|
1869
1933
|
textColorTextHover: string;
|
|
1870
1934
|
textColorTextPressed: string;
|
|
1871
1935
|
textColorTextFocus: string;
|
|
@@ -2012,9 +2076,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2012
2076
|
borderDisabledError: string;
|
|
2013
2077
|
rippleColorError: string;
|
|
2014
2078
|
waveOpacity: string;
|
|
2015
|
-
fontWeightText: string;
|
|
2016
2079
|
fontWeight: string;
|
|
2017
|
-
|
|
2080
|
+
fontWeightStrong: string;
|
|
2018
2081
|
paddingTiny: string;
|
|
2019
2082
|
paddingSmall: string;
|
|
2020
2083
|
paddingMedium: string;
|
|
@@ -2123,20 +2186,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2123
2186
|
fontSizeMedium: string;
|
|
2124
2187
|
fontSizeLarge: string;
|
|
2125
2188
|
opacityDisabled: string;
|
|
2189
|
+
colorOpacitySecondary: number;
|
|
2190
|
+
colorOpacitySecondaryHover: number;
|
|
2191
|
+
colorOpacitySecondaryPressed: number;
|
|
2192
|
+
colorSecondary: string;
|
|
2193
|
+
colorSecondaryHover: string;
|
|
2194
|
+
colorSecondaryPressed: string;
|
|
2195
|
+
colorTertiary: string;
|
|
2196
|
+
colorTertiaryHover: string;
|
|
2197
|
+
colorTertiaryPressed: string;
|
|
2198
|
+
colorQuaternary: string;
|
|
2199
|
+
colorQuaternaryHover: string;
|
|
2200
|
+
colorQuaternaryPressed: string;
|
|
2126
2201
|
color: string;
|
|
2127
2202
|
colorHover: string;
|
|
2128
2203
|
colorPressed: string;
|
|
2129
2204
|
colorFocus: string;
|
|
2130
2205
|
colorDisabled: string;
|
|
2131
2206
|
textColor: string;
|
|
2207
|
+
textColorTertiary: string;
|
|
2132
2208
|
textColorHover: string;
|
|
2133
2209
|
textColorPressed: string;
|
|
2134
2210
|
textColorFocus: string;
|
|
2135
2211
|
textColorDisabled: string;
|
|
2136
2212
|
textColorText: string;
|
|
2137
|
-
textColorTextDepth1: string;
|
|
2138
|
-
textColorTextDepth2: string;
|
|
2139
|
-
textColorTextDepth3: string;
|
|
2140
2213
|
textColorTextHover: string;
|
|
2141
2214
|
textColorTextPressed: string;
|
|
2142
2215
|
textColorTextFocus: string;
|
|
@@ -2283,9 +2356,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2283
2356
|
borderDisabledError: string;
|
|
2284
2357
|
rippleColorError: string;
|
|
2285
2358
|
waveOpacity: string;
|
|
2286
|
-
fontWeightText: string;
|
|
2287
2359
|
fontWeight: string;
|
|
2288
|
-
|
|
2360
|
+
fontWeightStrong: string;
|
|
2289
2361
|
paddingTiny: string;
|
|
2290
2362
|
paddingSmall: string;
|
|
2291
2363
|
paddingMedium: string;
|
|
@@ -2394,20 +2466,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2394
2466
|
fontSizeMedium: string;
|
|
2395
2467
|
fontSizeLarge: string;
|
|
2396
2468
|
opacityDisabled: string;
|
|
2469
|
+
colorOpacitySecondary: number;
|
|
2470
|
+
colorOpacitySecondaryHover: number;
|
|
2471
|
+
colorOpacitySecondaryPressed: number;
|
|
2472
|
+
colorSecondary: string;
|
|
2473
|
+
colorSecondaryHover: string;
|
|
2474
|
+
colorSecondaryPressed: string;
|
|
2475
|
+
colorTertiary: string;
|
|
2476
|
+
colorTertiaryHover: string;
|
|
2477
|
+
colorTertiaryPressed: string;
|
|
2478
|
+
colorQuaternary: string;
|
|
2479
|
+
colorQuaternaryHover: string;
|
|
2480
|
+
colorQuaternaryPressed: string;
|
|
2397
2481
|
color: string;
|
|
2398
2482
|
colorHover: string;
|
|
2399
2483
|
colorPressed: string;
|
|
2400
2484
|
colorFocus: string;
|
|
2401
2485
|
colorDisabled: string;
|
|
2402
2486
|
textColor: string;
|
|
2487
|
+
textColorTertiary: string;
|
|
2403
2488
|
textColorHover: string;
|
|
2404
2489
|
textColorPressed: string;
|
|
2405
2490
|
textColorFocus: string;
|
|
2406
2491
|
textColorDisabled: string;
|
|
2407
2492
|
textColorText: string;
|
|
2408
|
-
textColorTextDepth1: string;
|
|
2409
|
-
textColorTextDepth2: string;
|
|
2410
|
-
textColorTextDepth3: string;
|
|
2411
2493
|
textColorTextHover: string;
|
|
2412
2494
|
textColorTextPressed: string;
|
|
2413
2495
|
textColorTextFocus: string;
|
|
@@ -2554,9 +2636,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2554
2636
|
borderDisabledError: string;
|
|
2555
2637
|
rippleColorError: string;
|
|
2556
2638
|
waveOpacity: string;
|
|
2557
|
-
fontWeightText: string;
|
|
2558
2639
|
fontWeight: string;
|
|
2559
|
-
|
|
2640
|
+
fontWeightStrong: string;
|
|
2560
2641
|
paddingTiny: string;
|
|
2561
2642
|
paddingSmall: string;
|
|
2562
2643
|
paddingMedium: string;
|
|
@@ -104,20 +104,30 @@ declare const colorPickerLight: import("../../_mixins/use-theme").Theme<"ColorPi
|
|
|
104
104
|
fontSizeMedium: string;
|
|
105
105
|
fontSizeLarge: string;
|
|
106
106
|
opacityDisabled: string;
|
|
107
|
+
colorOpacitySecondary: number;
|
|
108
|
+
colorOpacitySecondaryHover: number;
|
|
109
|
+
colorOpacitySecondaryPressed: number;
|
|
110
|
+
colorSecondary: string;
|
|
111
|
+
colorSecondaryHover: string;
|
|
112
|
+
colorSecondaryPressed: string;
|
|
113
|
+
colorTertiary: string;
|
|
114
|
+
colorTertiaryHover: string;
|
|
115
|
+
colorTertiaryPressed: string;
|
|
116
|
+
colorQuaternary: string;
|
|
117
|
+
colorQuaternaryHover: string;
|
|
118
|
+
colorQuaternaryPressed: string;
|
|
107
119
|
color: string;
|
|
108
120
|
colorHover: string;
|
|
109
121
|
colorPressed: string;
|
|
110
122
|
colorFocus: string;
|
|
111
123
|
colorDisabled: string;
|
|
112
124
|
textColor: string;
|
|
125
|
+
textColorTertiary: string;
|
|
113
126
|
textColorHover: string;
|
|
114
127
|
textColorPressed: string;
|
|
115
128
|
textColorFocus: string;
|
|
116
129
|
textColorDisabled: string;
|
|
117
130
|
textColorText: string;
|
|
118
|
-
textColorTextDepth1: string;
|
|
119
|
-
textColorTextDepth2: string;
|
|
120
|
-
textColorTextDepth3: string;
|
|
121
131
|
textColorTextHover: string;
|
|
122
132
|
textColorTextPressed: string;
|
|
123
133
|
textColorTextFocus: string;
|
|
@@ -264,9 +274,8 @@ declare const colorPickerLight: import("../../_mixins/use-theme").Theme<"ColorPi
|
|
|
264
274
|
borderDisabledError: string;
|
|
265
275
|
rippleColorError: string;
|
|
266
276
|
waveOpacity: string;
|
|
267
|
-
fontWeightText: string;
|
|
268
277
|
fontWeight: string;
|
|
269
|
-
|
|
278
|
+
fontWeightStrong: string;
|
|
270
279
|
paddingTiny: string;
|
|
271
280
|
paddingSmall: string;
|
|
272
281
|
paddingMedium: string;
|