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
|
@@ -130,6 +130,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
130
130
|
pressedColor: string;
|
|
131
131
|
opacityDisabled: string;
|
|
132
132
|
inputColorDisabled: string;
|
|
133
|
+
buttonColor2: string;
|
|
134
|
+
buttonColor2Hover: string;
|
|
135
|
+
buttonColor2Pressed: string;
|
|
133
136
|
boxShadow1: string;
|
|
134
137
|
boxShadow2: string;
|
|
135
138
|
boxShadow3: string;
|
|
@@ -286,20 +289,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
286
289
|
fontSizeMedium: string;
|
|
287
290
|
fontSizeLarge: string;
|
|
288
291
|
opacityDisabled: string;
|
|
292
|
+
colorOpacitySecondary: number;
|
|
293
|
+
colorOpacitySecondaryHover: number;
|
|
294
|
+
colorOpacitySecondaryPressed: number;
|
|
295
|
+
colorSecondary: string;
|
|
296
|
+
colorSecondaryHover: string;
|
|
297
|
+
colorSecondaryPressed: string;
|
|
298
|
+
colorTertiary: string;
|
|
299
|
+
colorTertiaryHover: string;
|
|
300
|
+
colorTertiaryPressed: string;
|
|
301
|
+
colorQuaternary: string;
|
|
302
|
+
colorQuaternaryHover: string;
|
|
303
|
+
colorQuaternaryPressed: string;
|
|
289
304
|
color: string;
|
|
290
305
|
colorHover: string;
|
|
291
306
|
colorPressed: string;
|
|
292
307
|
colorFocus: string;
|
|
293
308
|
colorDisabled: string;
|
|
294
309
|
textColor: string;
|
|
310
|
+
textColorTertiary: string;
|
|
295
311
|
textColorHover: string;
|
|
296
312
|
textColorPressed: string;
|
|
297
313
|
textColorFocus: string;
|
|
298
314
|
textColorDisabled: string;
|
|
299
315
|
textColorText: string;
|
|
300
|
-
textColorTextDepth1: string;
|
|
301
|
-
textColorTextDepth2: string;
|
|
302
|
-
textColorTextDepth3: string;
|
|
303
316
|
textColorTextHover: string;
|
|
304
317
|
textColorTextPressed: string;
|
|
305
318
|
textColorTextFocus: string;
|
|
@@ -446,9 +459,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
446
459
|
borderDisabledError: string;
|
|
447
460
|
rippleColorError: string;
|
|
448
461
|
waveOpacity: string;
|
|
449
|
-
fontWeightText: string;
|
|
450
462
|
fontWeight: string;
|
|
451
|
-
|
|
463
|
+
fontWeightStrong: string;
|
|
452
464
|
paddingTiny: string;
|
|
453
465
|
paddingSmall: string;
|
|
454
466
|
paddingMedium: string;
|
|
@@ -502,20 +514,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
502
514
|
fontSizeMedium: string;
|
|
503
515
|
fontSizeLarge: string;
|
|
504
516
|
opacityDisabled: string;
|
|
517
|
+
colorOpacitySecondary: number;
|
|
518
|
+
colorOpacitySecondaryHover: number;
|
|
519
|
+
colorOpacitySecondaryPressed: number;
|
|
520
|
+
colorSecondary: string;
|
|
521
|
+
colorSecondaryHover: string;
|
|
522
|
+
colorSecondaryPressed: string;
|
|
523
|
+
colorTertiary: string;
|
|
524
|
+
colorTertiaryHover: string;
|
|
525
|
+
colorTertiaryPressed: string;
|
|
526
|
+
colorQuaternary: string;
|
|
527
|
+
colorQuaternaryHover: string;
|
|
528
|
+
colorQuaternaryPressed: string;
|
|
505
529
|
color: string;
|
|
506
530
|
colorHover: string;
|
|
507
531
|
colorPressed: string;
|
|
508
532
|
colorFocus: string;
|
|
509
533
|
colorDisabled: string;
|
|
510
534
|
textColor: string;
|
|
535
|
+
textColorTertiary: string;
|
|
511
536
|
textColorHover: string;
|
|
512
537
|
textColorPressed: string;
|
|
513
538
|
textColorFocus: string;
|
|
514
539
|
textColorDisabled: string;
|
|
515
540
|
textColorText: string;
|
|
516
|
-
textColorTextDepth1: string;
|
|
517
|
-
textColorTextDepth2: string;
|
|
518
|
-
textColorTextDepth3: string;
|
|
519
541
|
textColorTextHover: string;
|
|
520
542
|
textColorTextPressed: string;
|
|
521
543
|
textColorTextFocus: string;
|
|
@@ -662,9 +684,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
662
684
|
borderDisabledError: string;
|
|
663
685
|
rippleColorError: string;
|
|
664
686
|
waveOpacity: string;
|
|
665
|
-
fontWeightText: string;
|
|
666
687
|
fontWeight: string;
|
|
667
|
-
|
|
688
|
+
fontWeightStrong: string;
|
|
668
689
|
paddingTiny: string;
|
|
669
690
|
paddingSmall: string;
|
|
670
691
|
paddingMedium: string;
|
|
@@ -780,20 +801,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
780
801
|
fontSizeMedium: string;
|
|
781
802
|
fontSizeLarge: string;
|
|
782
803
|
opacityDisabled: string;
|
|
804
|
+
colorOpacitySecondary: number;
|
|
805
|
+
colorOpacitySecondaryHover: number;
|
|
806
|
+
colorOpacitySecondaryPressed: number;
|
|
807
|
+
colorSecondary: string;
|
|
808
|
+
colorSecondaryHover: string;
|
|
809
|
+
colorSecondaryPressed: string;
|
|
810
|
+
colorTertiary: string;
|
|
811
|
+
colorTertiaryHover: string;
|
|
812
|
+
colorTertiaryPressed: string;
|
|
813
|
+
colorQuaternary: string;
|
|
814
|
+
colorQuaternaryHover: string;
|
|
815
|
+
colorQuaternaryPressed: string;
|
|
783
816
|
color: string;
|
|
784
817
|
colorHover: string;
|
|
785
818
|
colorPressed: string;
|
|
786
819
|
colorFocus: string;
|
|
787
820
|
colorDisabled: string;
|
|
788
821
|
textColor: string;
|
|
822
|
+
textColorTertiary: string;
|
|
789
823
|
textColorHover: string;
|
|
790
824
|
textColorPressed: string;
|
|
791
825
|
textColorFocus: string;
|
|
792
826
|
textColorDisabled: string;
|
|
793
827
|
textColorText: string;
|
|
794
|
-
textColorTextDepth1: string;
|
|
795
|
-
textColorTextDepth2: string;
|
|
796
|
-
textColorTextDepth3: string;
|
|
797
828
|
textColorTextHover: string;
|
|
798
829
|
textColorTextPressed: string;
|
|
799
830
|
textColorTextFocus: string;
|
|
@@ -940,9 +971,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
940
971
|
borderDisabledError: string;
|
|
941
972
|
rippleColorError: string;
|
|
942
973
|
waveOpacity: string;
|
|
943
|
-
fontWeightText: string;
|
|
944
974
|
fontWeight: string;
|
|
945
|
-
|
|
975
|
+
fontWeightStrong: string;
|
|
946
976
|
paddingTiny: string;
|
|
947
977
|
paddingSmall: string;
|
|
948
978
|
paddingMedium: string;
|
|
@@ -128,6 +128,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
128
128
|
pressedColor: string;
|
|
129
129
|
opacityDisabled: string;
|
|
130
130
|
inputColorDisabled: string;
|
|
131
|
+
buttonColor2: string;
|
|
132
|
+
buttonColor2Hover: string;
|
|
133
|
+
buttonColor2Pressed: string;
|
|
131
134
|
boxShadow1: string;
|
|
132
135
|
boxShadow2: string;
|
|
133
136
|
boxShadow3: string;
|
|
@@ -284,20 +287,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
284
287
|
fontSizeMedium: string;
|
|
285
288
|
fontSizeLarge: string;
|
|
286
289
|
opacityDisabled: string;
|
|
290
|
+
colorOpacitySecondary: number;
|
|
291
|
+
colorOpacitySecondaryHover: number;
|
|
292
|
+
colorOpacitySecondaryPressed: number;
|
|
293
|
+
colorSecondary: string;
|
|
294
|
+
colorSecondaryHover: string;
|
|
295
|
+
colorSecondaryPressed: string;
|
|
296
|
+
colorTertiary: string;
|
|
297
|
+
colorTertiaryHover: string;
|
|
298
|
+
colorTertiaryPressed: string;
|
|
299
|
+
colorQuaternary: string;
|
|
300
|
+
colorQuaternaryHover: string;
|
|
301
|
+
colorQuaternaryPressed: string;
|
|
287
302
|
color: string;
|
|
288
303
|
colorHover: string;
|
|
289
304
|
colorPressed: string;
|
|
290
305
|
colorFocus: string;
|
|
291
306
|
colorDisabled: string;
|
|
292
307
|
textColor: string;
|
|
308
|
+
textColorTertiary: string;
|
|
293
309
|
textColorHover: string;
|
|
294
310
|
textColorPressed: string;
|
|
295
311
|
textColorFocus: string;
|
|
296
312
|
textColorDisabled: string;
|
|
297
313
|
textColorText: string;
|
|
298
|
-
textColorTextDepth1: string;
|
|
299
|
-
textColorTextDepth2: string;
|
|
300
|
-
textColorTextDepth3: string;
|
|
301
314
|
textColorTextHover: string;
|
|
302
315
|
textColorTextPressed: string;
|
|
303
316
|
textColorTextFocus: string;
|
|
@@ -444,9 +457,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
444
457
|
borderDisabledError: string;
|
|
445
458
|
rippleColorError: string;
|
|
446
459
|
waveOpacity: string;
|
|
447
|
-
fontWeightText: string;
|
|
448
460
|
fontWeight: string;
|
|
449
|
-
|
|
461
|
+
fontWeightStrong: string;
|
|
450
462
|
paddingTiny: string;
|
|
451
463
|
paddingSmall: string;
|
|
452
464
|
paddingMedium: string;
|
|
@@ -500,20 +512,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
500
512
|
fontSizeMedium: string;
|
|
501
513
|
fontSizeLarge: string;
|
|
502
514
|
opacityDisabled: string;
|
|
515
|
+
colorOpacitySecondary: number;
|
|
516
|
+
colorOpacitySecondaryHover: number;
|
|
517
|
+
colorOpacitySecondaryPressed: number;
|
|
518
|
+
colorSecondary: string;
|
|
519
|
+
colorSecondaryHover: string;
|
|
520
|
+
colorSecondaryPressed: string;
|
|
521
|
+
colorTertiary: string;
|
|
522
|
+
colorTertiaryHover: string;
|
|
523
|
+
colorTertiaryPressed: string;
|
|
524
|
+
colorQuaternary: string;
|
|
525
|
+
colorQuaternaryHover: string;
|
|
526
|
+
colorQuaternaryPressed: string;
|
|
503
527
|
color: string;
|
|
504
528
|
colorHover: string;
|
|
505
529
|
colorPressed: string;
|
|
506
530
|
colorFocus: string;
|
|
507
531
|
colorDisabled: string;
|
|
508
532
|
textColor: string;
|
|
533
|
+
textColorTertiary: string;
|
|
509
534
|
textColorHover: string;
|
|
510
535
|
textColorPressed: string;
|
|
511
536
|
textColorFocus: string;
|
|
512
537
|
textColorDisabled: string;
|
|
513
538
|
textColorText: string;
|
|
514
|
-
textColorTextDepth1: string;
|
|
515
|
-
textColorTextDepth2: string;
|
|
516
|
-
textColorTextDepth3: string;
|
|
517
539
|
textColorTextHover: string;
|
|
518
540
|
textColorTextPressed: string;
|
|
519
541
|
textColorTextFocus: string;
|
|
@@ -660,9 +682,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
660
682
|
borderDisabledError: string;
|
|
661
683
|
rippleColorError: string;
|
|
662
684
|
waveOpacity: string;
|
|
663
|
-
fontWeightText: string;
|
|
664
685
|
fontWeight: string;
|
|
665
|
-
|
|
686
|
+
fontWeightStrong: string;
|
|
666
687
|
paddingTiny: string;
|
|
667
688
|
paddingSmall: string;
|
|
668
689
|
paddingMedium: string;
|
|
@@ -778,20 +799,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
778
799
|
fontSizeMedium: string;
|
|
779
800
|
fontSizeLarge: string;
|
|
780
801
|
opacityDisabled: string;
|
|
802
|
+
colorOpacitySecondary: number;
|
|
803
|
+
colorOpacitySecondaryHover: number;
|
|
804
|
+
colorOpacitySecondaryPressed: number;
|
|
805
|
+
colorSecondary: string;
|
|
806
|
+
colorSecondaryHover: string;
|
|
807
|
+
colorSecondaryPressed: string;
|
|
808
|
+
colorTertiary: string;
|
|
809
|
+
colorTertiaryHover: string;
|
|
810
|
+
colorTertiaryPressed: string;
|
|
811
|
+
colorQuaternary: string;
|
|
812
|
+
colorQuaternaryHover: string;
|
|
813
|
+
colorQuaternaryPressed: string;
|
|
781
814
|
color: string;
|
|
782
815
|
colorHover: string;
|
|
783
816
|
colorPressed: string;
|
|
784
817
|
colorFocus: string;
|
|
785
818
|
colorDisabled: string;
|
|
786
819
|
textColor: string;
|
|
820
|
+
textColorTertiary: string;
|
|
787
821
|
textColorHover: string;
|
|
788
822
|
textColorPressed: string;
|
|
789
823
|
textColorFocus: string;
|
|
790
824
|
textColorDisabled: string;
|
|
791
825
|
textColorText: string;
|
|
792
|
-
textColorTextDepth1: string;
|
|
793
|
-
textColorTextDepth2: string;
|
|
794
|
-
textColorTextDepth3: string;
|
|
795
826
|
textColorTextHover: string;
|
|
796
827
|
textColorTextPressed: string;
|
|
797
828
|
textColorTextFocus: string;
|
|
@@ -938,9 +969,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
938
969
|
borderDisabledError: string;
|
|
939
970
|
rippleColorError: string;
|
|
940
971
|
waveOpacity: string;
|
|
941
|
-
fontWeightText: string;
|
|
942
972
|
fontWeight: string;
|
|
943
|
-
|
|
973
|
+
fontWeightStrong: string;
|
|
944
974
|
paddingTiny: string;
|
|
945
975
|
paddingSmall: string;
|
|
946
976
|
paddingMedium: string;
|
|
@@ -130,6 +130,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
130
130
|
pressedColor: string;
|
|
131
131
|
opacityDisabled: string;
|
|
132
132
|
inputColorDisabled: string;
|
|
133
|
+
buttonColor2: string;
|
|
134
|
+
buttonColor2Hover: string;
|
|
135
|
+
buttonColor2Pressed: string;
|
|
133
136
|
boxShadow1: string;
|
|
134
137
|
boxShadow2: string;
|
|
135
138
|
boxShadow3: string;
|
|
@@ -292,20 +295,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
292
295
|
fontSizeMedium: string;
|
|
293
296
|
fontSizeLarge: string;
|
|
294
297
|
opacityDisabled: string;
|
|
298
|
+
colorOpacitySecondary: number;
|
|
299
|
+
colorOpacitySecondaryHover: number;
|
|
300
|
+
colorOpacitySecondaryPressed: number;
|
|
301
|
+
colorSecondary: string;
|
|
302
|
+
colorSecondaryHover: string;
|
|
303
|
+
colorSecondaryPressed: string;
|
|
304
|
+
colorTertiary: string;
|
|
305
|
+
colorTertiaryHover: string;
|
|
306
|
+
colorTertiaryPressed: string;
|
|
307
|
+
colorQuaternary: string;
|
|
308
|
+
colorQuaternaryHover: string;
|
|
309
|
+
colorQuaternaryPressed: string;
|
|
295
310
|
color: string;
|
|
296
311
|
colorHover: string;
|
|
297
312
|
colorPressed: string;
|
|
298
313
|
colorFocus: string;
|
|
299
314
|
colorDisabled: string;
|
|
300
315
|
textColor: string;
|
|
316
|
+
textColorTertiary: string;
|
|
301
317
|
textColorHover: string;
|
|
302
318
|
textColorPressed: string;
|
|
303
319
|
textColorFocus: string;
|
|
304
320
|
textColorDisabled: string;
|
|
305
321
|
textColorText: string;
|
|
306
|
-
textColorTextDepth1: string;
|
|
307
|
-
textColorTextDepth2: string;
|
|
308
|
-
textColorTextDepth3: string;
|
|
309
322
|
textColorTextHover: string;
|
|
310
323
|
textColorTextPressed: string;
|
|
311
324
|
textColorTextFocus: string;
|
|
@@ -452,9 +465,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
452
465
|
borderDisabledError: string;
|
|
453
466
|
rippleColorError: string;
|
|
454
467
|
waveOpacity: string;
|
|
455
|
-
fontWeightText: string;
|
|
456
468
|
fontWeight: string;
|
|
457
|
-
|
|
469
|
+
fontWeightStrong: string;
|
|
458
470
|
paddingTiny: string;
|
|
459
471
|
paddingSmall: string;
|
|
460
472
|
paddingMedium: string;
|
|
@@ -508,20 +520,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
508
520
|
fontSizeMedium: string;
|
|
509
521
|
fontSizeLarge: string;
|
|
510
522
|
opacityDisabled: string;
|
|
523
|
+
colorOpacitySecondary: number;
|
|
524
|
+
colorOpacitySecondaryHover: number;
|
|
525
|
+
colorOpacitySecondaryPressed: number;
|
|
526
|
+
colorSecondary: string;
|
|
527
|
+
colorSecondaryHover: string;
|
|
528
|
+
colorSecondaryPressed: string;
|
|
529
|
+
colorTertiary: string;
|
|
530
|
+
colorTertiaryHover: string;
|
|
531
|
+
colorTertiaryPressed: string;
|
|
532
|
+
colorQuaternary: string;
|
|
533
|
+
colorQuaternaryHover: string;
|
|
534
|
+
colorQuaternaryPressed: string;
|
|
511
535
|
color: string;
|
|
512
536
|
colorHover: string;
|
|
513
537
|
colorPressed: string;
|
|
514
538
|
colorFocus: string;
|
|
515
539
|
colorDisabled: string;
|
|
516
540
|
textColor: string;
|
|
541
|
+
textColorTertiary: string;
|
|
517
542
|
textColorHover: string;
|
|
518
543
|
textColorPressed: string;
|
|
519
544
|
textColorFocus: string;
|
|
520
545
|
textColorDisabled: string;
|
|
521
546
|
textColorText: string;
|
|
522
|
-
textColorTextDepth1: string;
|
|
523
|
-
textColorTextDepth2: string;
|
|
524
|
-
textColorTextDepth3: string;
|
|
525
547
|
textColorTextHover: string;
|
|
526
548
|
textColorTextPressed: string;
|
|
527
549
|
textColorTextFocus: string;
|
|
@@ -668,9 +690,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
668
690
|
borderDisabledError: string;
|
|
669
691
|
rippleColorError: string;
|
|
670
692
|
waveOpacity: string;
|
|
671
|
-
fontWeightText: string;
|
|
672
693
|
fontWeight: string;
|
|
673
|
-
|
|
694
|
+
fontWeightStrong: string;
|
|
674
695
|
paddingTiny: string;
|
|
675
696
|
paddingSmall: string;
|
|
676
697
|
paddingMedium: string;
|
|
@@ -786,20 +807,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
786
807
|
fontSizeMedium: string;
|
|
787
808
|
fontSizeLarge: string;
|
|
788
809
|
opacityDisabled: string;
|
|
810
|
+
colorOpacitySecondary: number;
|
|
811
|
+
colorOpacitySecondaryHover: number;
|
|
812
|
+
colorOpacitySecondaryPressed: number;
|
|
813
|
+
colorSecondary: string;
|
|
814
|
+
colorSecondaryHover: string;
|
|
815
|
+
colorSecondaryPressed: string;
|
|
816
|
+
colorTertiary: string;
|
|
817
|
+
colorTertiaryHover: string;
|
|
818
|
+
colorTertiaryPressed: string;
|
|
819
|
+
colorQuaternary: string;
|
|
820
|
+
colorQuaternaryHover: string;
|
|
821
|
+
colorQuaternaryPressed: string;
|
|
789
822
|
color: string;
|
|
790
823
|
colorHover: string;
|
|
791
824
|
colorPressed: string;
|
|
792
825
|
colorFocus: string;
|
|
793
826
|
colorDisabled: string;
|
|
794
827
|
textColor: string;
|
|
828
|
+
textColorTertiary: string;
|
|
795
829
|
textColorHover: string;
|
|
796
830
|
textColorPressed: string;
|
|
797
831
|
textColorFocus: string;
|
|
798
832
|
textColorDisabled: string;
|
|
799
833
|
textColorText: string;
|
|
800
|
-
textColorTextDepth1: string;
|
|
801
|
-
textColorTextDepth2: string;
|
|
802
|
-
textColorTextDepth3: string;
|
|
803
834
|
textColorTextHover: string;
|
|
804
835
|
textColorTextPressed: string;
|
|
805
836
|
textColorTextFocus: string;
|
|
@@ -946,9 +977,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
946
977
|
borderDisabledError: string;
|
|
947
978
|
rippleColorError: string;
|
|
948
979
|
waveOpacity: string;
|
|
949
|
-
fontWeightText: string;
|
|
950
980
|
fontWeight: string;
|
|
951
|
-
|
|
981
|
+
fontWeightStrong: string;
|
|
952
982
|
paddingTiny: string;
|
|
953
983
|
paddingSmall: string;
|
|
954
984
|
paddingMedium: string;
|
|
@@ -128,6 +128,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
128
128
|
pressedColor: string;
|
|
129
129
|
opacityDisabled: string;
|
|
130
130
|
inputColorDisabled: string;
|
|
131
|
+
buttonColor2: string;
|
|
132
|
+
buttonColor2Hover: string;
|
|
133
|
+
buttonColor2Pressed: string;
|
|
131
134
|
boxShadow1: string;
|
|
132
135
|
boxShadow2: string;
|
|
133
136
|
boxShadow3: string;
|
|
@@ -284,20 +287,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
284
287
|
fontSizeMedium: string;
|
|
285
288
|
fontSizeLarge: string;
|
|
286
289
|
opacityDisabled: string;
|
|
290
|
+
colorOpacitySecondary: number;
|
|
291
|
+
colorOpacitySecondaryHover: number;
|
|
292
|
+
colorOpacitySecondaryPressed: number;
|
|
293
|
+
colorSecondary: string;
|
|
294
|
+
colorSecondaryHover: string;
|
|
295
|
+
colorSecondaryPressed: string;
|
|
296
|
+
colorTertiary: string;
|
|
297
|
+
colorTertiaryHover: string;
|
|
298
|
+
colorTertiaryPressed: string;
|
|
299
|
+
colorQuaternary: string;
|
|
300
|
+
colorQuaternaryHover: string;
|
|
301
|
+
colorQuaternaryPressed: string;
|
|
287
302
|
color: string;
|
|
288
303
|
colorHover: string;
|
|
289
304
|
colorPressed: string;
|
|
290
305
|
colorFocus: string;
|
|
291
306
|
colorDisabled: string;
|
|
292
307
|
textColor: string;
|
|
308
|
+
textColorTertiary: string;
|
|
293
309
|
textColorHover: string;
|
|
294
310
|
textColorPressed: string;
|
|
295
311
|
textColorFocus: string;
|
|
296
312
|
textColorDisabled: string;
|
|
297
313
|
textColorText: string;
|
|
298
|
-
textColorTextDepth1: string;
|
|
299
|
-
textColorTextDepth2: string;
|
|
300
|
-
textColorTextDepth3: string;
|
|
301
314
|
textColorTextHover: string;
|
|
302
315
|
textColorTextPressed: string;
|
|
303
316
|
textColorTextFocus: string;
|
|
@@ -444,9 +457,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
444
457
|
borderDisabledError: string;
|
|
445
458
|
rippleColorError: string;
|
|
446
459
|
waveOpacity: string;
|
|
447
|
-
fontWeightText: string;
|
|
448
460
|
fontWeight: string;
|
|
449
|
-
|
|
461
|
+
fontWeightStrong: string;
|
|
450
462
|
paddingTiny: string;
|
|
451
463
|
paddingSmall: string;
|
|
452
464
|
paddingMedium: string;
|
|
@@ -500,20 +512,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
500
512
|
fontSizeMedium: string;
|
|
501
513
|
fontSizeLarge: string;
|
|
502
514
|
opacityDisabled: string;
|
|
515
|
+
colorOpacitySecondary: number;
|
|
516
|
+
colorOpacitySecondaryHover: number;
|
|
517
|
+
colorOpacitySecondaryPressed: number;
|
|
518
|
+
colorSecondary: string;
|
|
519
|
+
colorSecondaryHover: string;
|
|
520
|
+
colorSecondaryPressed: string;
|
|
521
|
+
colorTertiary: string;
|
|
522
|
+
colorTertiaryHover: string;
|
|
523
|
+
colorTertiaryPressed: string;
|
|
524
|
+
colorQuaternary: string;
|
|
525
|
+
colorQuaternaryHover: string;
|
|
526
|
+
colorQuaternaryPressed: string;
|
|
503
527
|
color: string;
|
|
504
528
|
colorHover: string;
|
|
505
529
|
colorPressed: string;
|
|
506
530
|
colorFocus: string;
|
|
507
531
|
colorDisabled: string;
|
|
508
532
|
textColor: string;
|
|
533
|
+
textColorTertiary: string;
|
|
509
534
|
textColorHover: string;
|
|
510
535
|
textColorPressed: string;
|
|
511
536
|
textColorFocus: string;
|
|
512
537
|
textColorDisabled: string;
|
|
513
538
|
textColorText: string;
|
|
514
|
-
textColorTextDepth1: string;
|
|
515
|
-
textColorTextDepth2: string;
|
|
516
|
-
textColorTextDepth3: string;
|
|
517
539
|
textColorTextHover: string;
|
|
518
540
|
textColorTextPressed: string;
|
|
519
541
|
textColorTextFocus: string;
|
|
@@ -660,9 +682,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
660
682
|
borderDisabledError: string;
|
|
661
683
|
rippleColorError: string;
|
|
662
684
|
waveOpacity: string;
|
|
663
|
-
fontWeightText: string;
|
|
664
685
|
fontWeight: string;
|
|
665
|
-
|
|
686
|
+
fontWeightStrong: string;
|
|
666
687
|
paddingTiny: string;
|
|
667
688
|
paddingSmall: string;
|
|
668
689
|
paddingMedium: string;
|
|
@@ -778,20 +799,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
778
799
|
fontSizeMedium: string;
|
|
779
800
|
fontSizeLarge: string;
|
|
780
801
|
opacityDisabled: string;
|
|
802
|
+
colorOpacitySecondary: number;
|
|
803
|
+
colorOpacitySecondaryHover: number;
|
|
804
|
+
colorOpacitySecondaryPressed: number;
|
|
805
|
+
colorSecondary: string;
|
|
806
|
+
colorSecondaryHover: string;
|
|
807
|
+
colorSecondaryPressed: string;
|
|
808
|
+
colorTertiary: string;
|
|
809
|
+
colorTertiaryHover: string;
|
|
810
|
+
colorTertiaryPressed: string;
|
|
811
|
+
colorQuaternary: string;
|
|
812
|
+
colorQuaternaryHover: string;
|
|
813
|
+
colorQuaternaryPressed: string;
|
|
781
814
|
color: string;
|
|
782
815
|
colorHover: string;
|
|
783
816
|
colorPressed: string;
|
|
784
817
|
colorFocus: string;
|
|
785
818
|
colorDisabled: string;
|
|
786
819
|
textColor: string;
|
|
820
|
+
textColorTertiary: string;
|
|
787
821
|
textColorHover: string;
|
|
788
822
|
textColorPressed: string;
|
|
789
823
|
textColorFocus: string;
|
|
790
824
|
textColorDisabled: string;
|
|
791
825
|
textColorText: string;
|
|
792
|
-
textColorTextDepth1: string;
|
|
793
|
-
textColorTextDepth2: string;
|
|
794
|
-
textColorTextDepth3: string;
|
|
795
826
|
textColorTextHover: string;
|
|
796
827
|
textColorTextPressed: string;
|
|
797
828
|
textColorTextFocus: string;
|
|
@@ -938,9 +969,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
938
969
|
borderDisabledError: string;
|
|
939
970
|
rippleColorError: string;
|
|
940
971
|
waveOpacity: string;
|
|
941
|
-
fontWeightText: string;
|
|
942
972
|
fontWeight: string;
|
|
943
|
-
|
|
973
|
+
fontWeightStrong: string;
|
|
944
974
|
paddingTiny: string;
|
|
945
975
|
paddingSmall: string;
|
|
946
976
|
paddingMedium: string;
|