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
|
@@ -189,20 +189,30 @@ declare const datePickerProps: {
|
|
|
189
189
|
fontSizeMedium: string;
|
|
190
190
|
fontSizeLarge: string;
|
|
191
191
|
opacityDisabled: string;
|
|
192
|
+
colorOpacitySecondary: number;
|
|
193
|
+
colorOpacitySecondaryHover: number;
|
|
194
|
+
colorOpacitySecondaryPressed: number;
|
|
195
|
+
colorSecondary: string;
|
|
196
|
+
colorSecondaryHover: string;
|
|
197
|
+
colorSecondaryPressed: string;
|
|
198
|
+
colorTertiary: string;
|
|
199
|
+
colorTertiaryHover: string;
|
|
200
|
+
colorTertiaryPressed: string;
|
|
201
|
+
colorQuaternary: string;
|
|
202
|
+
colorQuaternaryHover: string;
|
|
203
|
+
colorQuaternaryPressed: string;
|
|
192
204
|
color: string;
|
|
193
205
|
colorHover: string;
|
|
194
206
|
colorPressed: string;
|
|
195
207
|
colorFocus: string;
|
|
196
208
|
colorDisabled: string;
|
|
197
209
|
textColor: string;
|
|
210
|
+
textColorTertiary: string;
|
|
198
211
|
textColorHover: string;
|
|
199
212
|
textColorPressed: string;
|
|
200
213
|
textColorFocus: string;
|
|
201
214
|
textColorDisabled: string;
|
|
202
215
|
textColorText: string;
|
|
203
|
-
textColorTextDepth1: string;
|
|
204
|
-
textColorTextDepth2: string;
|
|
205
|
-
textColorTextDepth3: string;
|
|
206
216
|
textColorTextHover: string;
|
|
207
217
|
textColorTextPressed: string;
|
|
208
218
|
textColorTextFocus: string;
|
|
@@ -349,9 +359,8 @@ declare const datePickerProps: {
|
|
|
349
359
|
borderDisabledError: string;
|
|
350
360
|
rippleColorError: string;
|
|
351
361
|
waveOpacity: string;
|
|
352
|
-
fontWeightText: string;
|
|
353
362
|
fontWeight: string;
|
|
354
|
-
|
|
363
|
+
fontWeightStrong: string;
|
|
355
364
|
paddingTiny: string;
|
|
356
365
|
paddingSmall: string;
|
|
357
366
|
paddingMedium: string;
|
|
@@ -405,20 +414,30 @@ declare const datePickerProps: {
|
|
|
405
414
|
fontSizeMedium: string;
|
|
406
415
|
fontSizeLarge: string;
|
|
407
416
|
opacityDisabled: string;
|
|
417
|
+
colorOpacitySecondary: number;
|
|
418
|
+
colorOpacitySecondaryHover: number;
|
|
419
|
+
colorOpacitySecondaryPressed: number;
|
|
420
|
+
colorSecondary: string;
|
|
421
|
+
colorSecondaryHover: string;
|
|
422
|
+
colorSecondaryPressed: string;
|
|
423
|
+
colorTertiary: string;
|
|
424
|
+
colorTertiaryHover: string;
|
|
425
|
+
colorTertiaryPressed: string;
|
|
426
|
+
colorQuaternary: string;
|
|
427
|
+
colorQuaternaryHover: string;
|
|
428
|
+
colorQuaternaryPressed: string;
|
|
408
429
|
color: string;
|
|
409
430
|
colorHover: string;
|
|
410
431
|
colorPressed: string;
|
|
411
432
|
colorFocus: string;
|
|
412
433
|
colorDisabled: string;
|
|
413
434
|
textColor: string;
|
|
435
|
+
textColorTertiary: string;
|
|
414
436
|
textColorHover: string;
|
|
415
437
|
textColorPressed: string;
|
|
416
438
|
textColorFocus: string;
|
|
417
439
|
textColorDisabled: string;
|
|
418
440
|
textColorText: string;
|
|
419
|
-
textColorTextDepth1: string;
|
|
420
|
-
textColorTextDepth2: string;
|
|
421
|
-
textColorTextDepth3: string;
|
|
422
441
|
textColorTextHover: string;
|
|
423
442
|
textColorTextPressed: string;
|
|
424
443
|
textColorTextFocus: string;
|
|
@@ -565,9 +584,8 @@ declare const datePickerProps: {
|
|
|
565
584
|
borderDisabledError: string;
|
|
566
585
|
rippleColorError: string;
|
|
567
586
|
waveOpacity: string;
|
|
568
|
-
fontWeightText: string;
|
|
569
587
|
fontWeight: string;
|
|
570
|
-
|
|
588
|
+
fontWeightStrong: string;
|
|
571
589
|
paddingTiny: string;
|
|
572
590
|
paddingSmall: string;
|
|
573
591
|
paddingMedium: string;
|
|
@@ -780,20 +798,30 @@ declare const datePickerProps: {
|
|
|
780
798
|
fontSizeMedium: string;
|
|
781
799
|
fontSizeLarge: string;
|
|
782
800
|
opacityDisabled: string;
|
|
801
|
+
colorOpacitySecondary: number;
|
|
802
|
+
colorOpacitySecondaryHover: number;
|
|
803
|
+
colorOpacitySecondaryPressed: number;
|
|
804
|
+
colorSecondary: string;
|
|
805
|
+
colorSecondaryHover: string;
|
|
806
|
+
colorSecondaryPressed: string;
|
|
807
|
+
colorTertiary: string;
|
|
808
|
+
colorTertiaryHover: string;
|
|
809
|
+
colorTertiaryPressed: string;
|
|
810
|
+
colorQuaternary: string;
|
|
811
|
+
colorQuaternaryHover: string;
|
|
812
|
+
colorQuaternaryPressed: string;
|
|
783
813
|
color: string;
|
|
784
814
|
colorHover: string;
|
|
785
815
|
colorPressed: string;
|
|
786
816
|
colorFocus: string;
|
|
787
817
|
colorDisabled: string;
|
|
788
818
|
textColor: string;
|
|
819
|
+
textColorTertiary: string;
|
|
789
820
|
textColorHover: string;
|
|
790
821
|
textColorPressed: string;
|
|
791
822
|
textColorFocus: string;
|
|
792
823
|
textColorDisabled: string;
|
|
793
824
|
textColorText: string;
|
|
794
|
-
textColorTextDepth1: string;
|
|
795
|
-
textColorTextDepth2: string;
|
|
796
|
-
textColorTextDepth3: string;
|
|
797
825
|
textColorTextHover: string;
|
|
798
826
|
textColorTextPressed: string;
|
|
799
827
|
textColorTextFocus: string;
|
|
@@ -940,9 +968,8 @@ declare const datePickerProps: {
|
|
|
940
968
|
borderDisabledError: string;
|
|
941
969
|
rippleColorError: string;
|
|
942
970
|
waveOpacity: string;
|
|
943
|
-
fontWeightText: string;
|
|
944
971
|
fontWeight: string;
|
|
945
|
-
|
|
972
|
+
fontWeightStrong: string;
|
|
946
973
|
paddingTiny: string;
|
|
947
974
|
paddingSmall: string;
|
|
948
975
|
paddingMedium: string;
|
|
@@ -996,20 +1023,30 @@ declare const datePickerProps: {
|
|
|
996
1023
|
fontSizeMedium: string;
|
|
997
1024
|
fontSizeLarge: string;
|
|
998
1025
|
opacityDisabled: string;
|
|
1026
|
+
colorOpacitySecondary: number;
|
|
1027
|
+
colorOpacitySecondaryHover: number;
|
|
1028
|
+
colorOpacitySecondaryPressed: number;
|
|
1029
|
+
colorSecondary: string;
|
|
1030
|
+
colorSecondaryHover: string;
|
|
1031
|
+
colorSecondaryPressed: string;
|
|
1032
|
+
colorTertiary: string;
|
|
1033
|
+
colorTertiaryHover: string;
|
|
1034
|
+
colorTertiaryPressed: string;
|
|
1035
|
+
colorQuaternary: string;
|
|
1036
|
+
colorQuaternaryHover: string;
|
|
1037
|
+
colorQuaternaryPressed: string;
|
|
999
1038
|
color: string;
|
|
1000
1039
|
colorHover: string;
|
|
1001
1040
|
colorPressed: string;
|
|
1002
1041
|
colorFocus: string;
|
|
1003
1042
|
colorDisabled: string;
|
|
1004
1043
|
textColor: string;
|
|
1044
|
+
textColorTertiary: string;
|
|
1005
1045
|
textColorHover: string;
|
|
1006
1046
|
textColorPressed: string;
|
|
1007
1047
|
textColorFocus: string;
|
|
1008
1048
|
textColorDisabled: string;
|
|
1009
1049
|
textColorText: string;
|
|
1010
|
-
textColorTextDepth1: string;
|
|
1011
|
-
textColorTextDepth2: string;
|
|
1012
|
-
textColorTextDepth3: string;
|
|
1013
1050
|
textColorTextHover: string;
|
|
1014
1051
|
textColorTextPressed: string;
|
|
1015
1052
|
textColorTextFocus: string;
|
|
@@ -1156,9 +1193,8 @@ declare const datePickerProps: {
|
|
|
1156
1193
|
borderDisabledError: string;
|
|
1157
1194
|
rippleColorError: string;
|
|
1158
1195
|
waveOpacity: string;
|
|
1159
|
-
fontWeightText: string;
|
|
1160
1196
|
fontWeight: string;
|
|
1161
|
-
|
|
1197
|
+
fontWeightStrong: string;
|
|
1162
1198
|
paddingTiny: string;
|
|
1163
1199
|
paddingSmall: string;
|
|
1164
1200
|
paddingMedium: string;
|
|
@@ -1371,20 +1407,30 @@ declare const datePickerProps: {
|
|
|
1371
1407
|
fontSizeMedium: string;
|
|
1372
1408
|
fontSizeLarge: string;
|
|
1373
1409
|
opacityDisabled: string;
|
|
1410
|
+
colorOpacitySecondary: number;
|
|
1411
|
+
colorOpacitySecondaryHover: number;
|
|
1412
|
+
colorOpacitySecondaryPressed: number;
|
|
1413
|
+
colorSecondary: string;
|
|
1414
|
+
colorSecondaryHover: string;
|
|
1415
|
+
colorSecondaryPressed: string;
|
|
1416
|
+
colorTertiary: string;
|
|
1417
|
+
colorTertiaryHover: string;
|
|
1418
|
+
colorTertiaryPressed: string;
|
|
1419
|
+
colorQuaternary: string;
|
|
1420
|
+
colorQuaternaryHover: string;
|
|
1421
|
+
colorQuaternaryPressed: string;
|
|
1374
1422
|
color: string;
|
|
1375
1423
|
colorHover: string;
|
|
1376
1424
|
colorPressed: string;
|
|
1377
1425
|
colorFocus: string;
|
|
1378
1426
|
colorDisabled: string;
|
|
1379
1427
|
textColor: string;
|
|
1428
|
+
textColorTertiary: string;
|
|
1380
1429
|
textColorHover: string;
|
|
1381
1430
|
textColorPressed: string;
|
|
1382
1431
|
textColorFocus: string;
|
|
1383
1432
|
textColorDisabled: string;
|
|
1384
1433
|
textColorText: string;
|
|
1385
|
-
textColorTextDepth1: string;
|
|
1386
|
-
textColorTextDepth2: string;
|
|
1387
|
-
textColorTextDepth3: string;
|
|
1388
1434
|
textColorTextHover: string;
|
|
1389
1435
|
textColorTextPressed: string;
|
|
1390
1436
|
textColorTextFocus: string;
|
|
@@ -1531,9 +1577,8 @@ declare const datePickerProps: {
|
|
|
1531
1577
|
borderDisabledError: string;
|
|
1532
1578
|
rippleColorError: string;
|
|
1533
1579
|
waveOpacity: string;
|
|
1534
|
-
fontWeightText: string;
|
|
1535
1580
|
fontWeight: string;
|
|
1536
|
-
|
|
1581
|
+
fontWeightStrong: string;
|
|
1537
1582
|
paddingTiny: string;
|
|
1538
1583
|
paddingSmall: string;
|
|
1539
1584
|
paddingMedium: string;
|
|
@@ -1587,20 +1632,30 @@ declare const datePickerProps: {
|
|
|
1587
1632
|
fontSizeMedium: string;
|
|
1588
1633
|
fontSizeLarge: string;
|
|
1589
1634
|
opacityDisabled: string;
|
|
1635
|
+
colorOpacitySecondary: number;
|
|
1636
|
+
colorOpacitySecondaryHover: number;
|
|
1637
|
+
colorOpacitySecondaryPressed: number;
|
|
1638
|
+
colorSecondary: string;
|
|
1639
|
+
colorSecondaryHover: string;
|
|
1640
|
+
colorSecondaryPressed: string;
|
|
1641
|
+
colorTertiary: string;
|
|
1642
|
+
colorTertiaryHover: string;
|
|
1643
|
+
colorTertiaryPressed: string;
|
|
1644
|
+
colorQuaternary: string;
|
|
1645
|
+
colorQuaternaryHover: string;
|
|
1646
|
+
colorQuaternaryPressed: string;
|
|
1590
1647
|
color: string;
|
|
1591
1648
|
colorHover: string;
|
|
1592
1649
|
colorPressed: string;
|
|
1593
1650
|
colorFocus: string;
|
|
1594
1651
|
colorDisabled: string;
|
|
1595
1652
|
textColor: string;
|
|
1653
|
+
textColorTertiary: string;
|
|
1596
1654
|
textColorHover: string;
|
|
1597
1655
|
textColorPressed: string;
|
|
1598
1656
|
textColorFocus: string;
|
|
1599
1657
|
textColorDisabled: string;
|
|
1600
1658
|
textColorText: string;
|
|
1601
|
-
textColorTextDepth1: string;
|
|
1602
|
-
textColorTextDepth2: string;
|
|
1603
|
-
textColorTextDepth3: string;
|
|
1604
1659
|
textColorTextHover: string;
|
|
1605
1660
|
textColorTextPressed: string;
|
|
1606
1661
|
textColorTextFocus: string;
|
|
@@ -1747,9 +1802,8 @@ declare const datePickerProps: {
|
|
|
1747
1802
|
borderDisabledError: string;
|
|
1748
1803
|
rippleColorError: string;
|
|
1749
1804
|
waveOpacity: string;
|
|
1750
|
-
fontWeightText: string;
|
|
1751
1805
|
fontWeight: string;
|
|
1752
|
-
|
|
1806
|
+
fontWeightStrong: string;
|
|
1753
1807
|
paddingTiny: string;
|
|
1754
1808
|
paddingSmall: string;
|
|
1755
1809
|
paddingMedium: string;
|
|
@@ -2024,20 +2078,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2024
2078
|
fontSizeMedium: string;
|
|
2025
2079
|
fontSizeLarge: string;
|
|
2026
2080
|
opacityDisabled: string;
|
|
2081
|
+
colorOpacitySecondary: number;
|
|
2082
|
+
colorOpacitySecondaryHover: number;
|
|
2083
|
+
colorOpacitySecondaryPressed: number;
|
|
2084
|
+
colorSecondary: string;
|
|
2085
|
+
colorSecondaryHover: string;
|
|
2086
|
+
colorSecondaryPressed: string;
|
|
2087
|
+
colorTertiary: string;
|
|
2088
|
+
colorTertiaryHover: string;
|
|
2089
|
+
colorTertiaryPressed: string;
|
|
2090
|
+
colorQuaternary: string;
|
|
2091
|
+
colorQuaternaryHover: string;
|
|
2092
|
+
colorQuaternaryPressed: string;
|
|
2027
2093
|
color: string;
|
|
2028
2094
|
colorHover: string;
|
|
2029
2095
|
colorPressed: string;
|
|
2030
2096
|
colorFocus: string;
|
|
2031
2097
|
colorDisabled: string;
|
|
2032
2098
|
textColor: string;
|
|
2099
|
+
textColorTertiary: string;
|
|
2033
2100
|
textColorHover: string;
|
|
2034
2101
|
textColorPressed: string;
|
|
2035
2102
|
textColorFocus: string;
|
|
2036
2103
|
textColorDisabled: string;
|
|
2037
2104
|
textColorText: string;
|
|
2038
|
-
textColorTextDepth1: string;
|
|
2039
|
-
textColorTextDepth2: string;
|
|
2040
|
-
textColorTextDepth3: string;
|
|
2041
2105
|
textColorTextHover: string;
|
|
2042
2106
|
textColorTextPressed: string;
|
|
2043
2107
|
textColorTextFocus: string;
|
|
@@ -2184,9 +2248,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2184
2248
|
borderDisabledError: string;
|
|
2185
2249
|
rippleColorError: string;
|
|
2186
2250
|
waveOpacity: string;
|
|
2187
|
-
fontWeightText: string;
|
|
2188
2251
|
fontWeight: string;
|
|
2189
|
-
|
|
2252
|
+
fontWeightStrong: string;
|
|
2190
2253
|
paddingTiny: string;
|
|
2191
2254
|
paddingSmall: string;
|
|
2192
2255
|
paddingMedium: string;
|
|
@@ -2240,20 +2303,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2240
2303
|
fontSizeMedium: string;
|
|
2241
2304
|
fontSizeLarge: string;
|
|
2242
2305
|
opacityDisabled: string;
|
|
2306
|
+
colorOpacitySecondary: number;
|
|
2307
|
+
colorOpacitySecondaryHover: number;
|
|
2308
|
+
colorOpacitySecondaryPressed: number;
|
|
2309
|
+
colorSecondary: string;
|
|
2310
|
+
colorSecondaryHover: string;
|
|
2311
|
+
colorSecondaryPressed: string;
|
|
2312
|
+
colorTertiary: string;
|
|
2313
|
+
colorTertiaryHover: string;
|
|
2314
|
+
colorTertiaryPressed: string;
|
|
2315
|
+
colorQuaternary: string;
|
|
2316
|
+
colorQuaternaryHover: string;
|
|
2317
|
+
colorQuaternaryPressed: string;
|
|
2243
2318
|
color: string;
|
|
2244
2319
|
colorHover: string;
|
|
2245
2320
|
colorPressed: string;
|
|
2246
2321
|
colorFocus: string;
|
|
2247
2322
|
colorDisabled: string;
|
|
2248
2323
|
textColor: string;
|
|
2324
|
+
textColorTertiary: string;
|
|
2249
2325
|
textColorHover: string;
|
|
2250
2326
|
textColorPressed: string;
|
|
2251
2327
|
textColorFocus: string;
|
|
2252
2328
|
textColorDisabled: string;
|
|
2253
2329
|
textColorText: string;
|
|
2254
|
-
textColorTextDepth1: string;
|
|
2255
|
-
textColorTextDepth2: string;
|
|
2256
|
-
textColorTextDepth3: string;
|
|
2257
2330
|
textColorTextHover: string;
|
|
2258
2331
|
textColorTextPressed: string;
|
|
2259
2332
|
textColorTextFocus: string;
|
|
@@ -2400,9 +2473,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2400
2473
|
borderDisabledError: string;
|
|
2401
2474
|
rippleColorError: string;
|
|
2402
2475
|
waveOpacity: string;
|
|
2403
|
-
fontWeightText: string;
|
|
2404
2476
|
fontWeight: string;
|
|
2405
|
-
|
|
2477
|
+
fontWeightStrong: string;
|
|
2406
2478
|
paddingTiny: string;
|
|
2407
2479
|
paddingSmall: string;
|
|
2408
2480
|
paddingMedium: string;
|
|
@@ -2615,20 +2687,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2615
2687
|
fontSizeMedium: string;
|
|
2616
2688
|
fontSizeLarge: string;
|
|
2617
2689
|
opacityDisabled: string;
|
|
2690
|
+
colorOpacitySecondary: number;
|
|
2691
|
+
colorOpacitySecondaryHover: number;
|
|
2692
|
+
colorOpacitySecondaryPressed: number;
|
|
2693
|
+
colorSecondary: string;
|
|
2694
|
+
colorSecondaryHover: string;
|
|
2695
|
+
colorSecondaryPressed: string;
|
|
2696
|
+
colorTertiary: string;
|
|
2697
|
+
colorTertiaryHover: string;
|
|
2698
|
+
colorTertiaryPressed: string;
|
|
2699
|
+
colorQuaternary: string;
|
|
2700
|
+
colorQuaternaryHover: string;
|
|
2701
|
+
colorQuaternaryPressed: string;
|
|
2618
2702
|
color: string;
|
|
2619
2703
|
colorHover: string;
|
|
2620
2704
|
colorPressed: string;
|
|
2621
2705
|
colorFocus: string;
|
|
2622
2706
|
colorDisabled: string;
|
|
2623
2707
|
textColor: string;
|
|
2708
|
+
textColorTertiary: string;
|
|
2624
2709
|
textColorHover: string;
|
|
2625
2710
|
textColorPressed: string;
|
|
2626
2711
|
textColorFocus: string;
|
|
2627
2712
|
textColorDisabled: string;
|
|
2628
2713
|
textColorText: string;
|
|
2629
|
-
textColorTextDepth1: string;
|
|
2630
|
-
textColorTextDepth2: string;
|
|
2631
|
-
textColorTextDepth3: string;
|
|
2632
2714
|
textColorTextHover: string;
|
|
2633
2715
|
textColorTextPressed: string;
|
|
2634
2716
|
textColorTextFocus: string;
|
|
@@ -2775,9 +2857,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2775
2857
|
borderDisabledError: string;
|
|
2776
2858
|
rippleColorError: string;
|
|
2777
2859
|
waveOpacity: string;
|
|
2778
|
-
fontWeightText: string;
|
|
2779
2860
|
fontWeight: string;
|
|
2780
|
-
|
|
2861
|
+
fontWeightStrong: string;
|
|
2781
2862
|
paddingTiny: string;
|
|
2782
2863
|
paddingSmall: string;
|
|
2783
2864
|
paddingMedium: string;
|
|
@@ -2831,20 +2912,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2831
2912
|
fontSizeMedium: string;
|
|
2832
2913
|
fontSizeLarge: string;
|
|
2833
2914
|
opacityDisabled: string;
|
|
2915
|
+
colorOpacitySecondary: number;
|
|
2916
|
+
colorOpacitySecondaryHover: number;
|
|
2917
|
+
colorOpacitySecondaryPressed: number;
|
|
2918
|
+
colorSecondary: string;
|
|
2919
|
+
colorSecondaryHover: string;
|
|
2920
|
+
colorSecondaryPressed: string;
|
|
2921
|
+
colorTertiary: string;
|
|
2922
|
+
colorTertiaryHover: string;
|
|
2923
|
+
colorTertiaryPressed: string;
|
|
2924
|
+
colorQuaternary: string;
|
|
2925
|
+
colorQuaternaryHover: string;
|
|
2926
|
+
colorQuaternaryPressed: string;
|
|
2834
2927
|
color: string;
|
|
2835
2928
|
colorHover: string;
|
|
2836
2929
|
colorPressed: string;
|
|
2837
2930
|
colorFocus: string;
|
|
2838
2931
|
colorDisabled: string;
|
|
2839
2932
|
textColor: string;
|
|
2933
|
+
textColorTertiary: string;
|
|
2840
2934
|
textColorHover: string;
|
|
2841
2935
|
textColorPressed: string;
|
|
2842
2936
|
textColorFocus: string;
|
|
2843
2937
|
textColorDisabled: string;
|
|
2844
2938
|
textColorText: string;
|
|
2845
|
-
textColorTextDepth1: string;
|
|
2846
|
-
textColorTextDepth2: string;
|
|
2847
|
-
textColorTextDepth3: string;
|
|
2848
2939
|
textColorTextHover: string;
|
|
2849
2940
|
textColorTextPressed: string;
|
|
2850
2941
|
textColorTextFocus: string;
|
|
@@ -2991,9 +3082,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2991
3082
|
borderDisabledError: string;
|
|
2992
3083
|
rippleColorError: string;
|
|
2993
3084
|
waveOpacity: string;
|
|
2994
|
-
fontWeightText: string;
|
|
2995
3085
|
fontWeight: string;
|
|
2996
|
-
|
|
3086
|
+
fontWeightStrong: string;
|
|
2997
3087
|
paddingTiny: string;
|
|
2998
3088
|
paddingSmall: string;
|
|
2999
3089
|
paddingMedium: string;
|
|
@@ -3206,20 +3296,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3206
3296
|
fontSizeMedium: string;
|
|
3207
3297
|
fontSizeLarge: string;
|
|
3208
3298
|
opacityDisabled: string;
|
|
3299
|
+
colorOpacitySecondary: number;
|
|
3300
|
+
colorOpacitySecondaryHover: number;
|
|
3301
|
+
colorOpacitySecondaryPressed: number;
|
|
3302
|
+
colorSecondary: string;
|
|
3303
|
+
colorSecondaryHover: string;
|
|
3304
|
+
colorSecondaryPressed: string;
|
|
3305
|
+
colorTertiary: string;
|
|
3306
|
+
colorTertiaryHover: string;
|
|
3307
|
+
colorTertiaryPressed: string;
|
|
3308
|
+
colorQuaternary: string;
|
|
3309
|
+
colorQuaternaryHover: string;
|
|
3310
|
+
colorQuaternaryPressed: string;
|
|
3209
3311
|
color: string;
|
|
3210
3312
|
colorHover: string;
|
|
3211
3313
|
colorPressed: string;
|
|
3212
3314
|
colorFocus: string;
|
|
3213
3315
|
colorDisabled: string;
|
|
3214
3316
|
textColor: string;
|
|
3317
|
+
textColorTertiary: string;
|
|
3215
3318
|
textColorHover: string;
|
|
3216
3319
|
textColorPressed: string;
|
|
3217
3320
|
textColorFocus: string;
|
|
3218
3321
|
textColorDisabled: string;
|
|
3219
3322
|
textColorText: string;
|
|
3220
|
-
textColorTextDepth1: string;
|
|
3221
|
-
textColorTextDepth2: string;
|
|
3222
|
-
textColorTextDepth3: string;
|
|
3223
3323
|
textColorTextHover: string;
|
|
3224
3324
|
textColorTextPressed: string;
|
|
3225
3325
|
textColorTextFocus: string;
|
|
@@ -3366,9 +3466,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3366
3466
|
borderDisabledError: string;
|
|
3367
3467
|
rippleColorError: string;
|
|
3368
3468
|
waveOpacity: string;
|
|
3369
|
-
fontWeightText: string;
|
|
3370
3469
|
fontWeight: string;
|
|
3371
|
-
|
|
3470
|
+
fontWeightStrong: string;
|
|
3372
3471
|
paddingTiny: string;
|
|
3373
3472
|
paddingSmall: string;
|
|
3374
3473
|
paddingMedium: string;
|
|
@@ -3422,20 +3521,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3422
3521
|
fontSizeMedium: string;
|
|
3423
3522
|
fontSizeLarge: string;
|
|
3424
3523
|
opacityDisabled: string;
|
|
3524
|
+
colorOpacitySecondary: number;
|
|
3525
|
+
colorOpacitySecondaryHover: number;
|
|
3526
|
+
colorOpacitySecondaryPressed: number;
|
|
3527
|
+
colorSecondary: string;
|
|
3528
|
+
colorSecondaryHover: string;
|
|
3529
|
+
colorSecondaryPressed: string;
|
|
3530
|
+
colorTertiary: string;
|
|
3531
|
+
colorTertiaryHover: string;
|
|
3532
|
+
colorTertiaryPressed: string;
|
|
3533
|
+
colorQuaternary: string;
|
|
3534
|
+
colorQuaternaryHover: string;
|
|
3535
|
+
colorQuaternaryPressed: string;
|
|
3425
3536
|
color: string;
|
|
3426
3537
|
colorHover: string;
|
|
3427
3538
|
colorPressed: string;
|
|
3428
3539
|
colorFocus: string;
|
|
3429
3540
|
colorDisabled: string;
|
|
3430
3541
|
textColor: string;
|
|
3542
|
+
textColorTertiary: string;
|
|
3431
3543
|
textColorHover: string;
|
|
3432
3544
|
textColorPressed: string;
|
|
3433
3545
|
textColorFocus: string;
|
|
3434
3546
|
textColorDisabled: string;
|
|
3435
3547
|
textColorText: string;
|
|
3436
|
-
textColorTextDepth1: string;
|
|
3437
|
-
textColorTextDepth2: string;
|
|
3438
|
-
textColorTextDepth3: string;
|
|
3439
3548
|
textColorTextHover: string;
|
|
3440
3549
|
textColorTextPressed: string;
|
|
3441
3550
|
textColorTextFocus: string;
|
|
@@ -3582,9 +3691,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3582
3691
|
borderDisabledError: string;
|
|
3583
3692
|
rippleColorError: string;
|
|
3584
3693
|
waveOpacity: string;
|
|
3585
|
-
fontWeightText: string;
|
|
3586
3694
|
fontWeight: string;
|
|
3587
|
-
|
|
3695
|
+
fontWeightStrong: string;
|
|
3588
3696
|
paddingTiny: string;
|
|
3589
3697
|
paddingSmall: string;
|
|
3590
3698
|
paddingMedium: string;
|
|
@@ -3698,6 +3806,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3698
3806
|
isCompositing: boolean;
|
|
3699
3807
|
blur: () => void;
|
|
3700
3808
|
focus: () => void;
|
|
3809
|
+
select: () => void;
|
|
3701
3810
|
activate: () => void;
|
|
3702
3811
|
deactivate: () => void;
|
|
3703
3812
|
} | null>;
|
|
@@ -3803,6 +3912,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3803
3912
|
pressedColor: string;
|
|
3804
3913
|
opacityDisabled: string;
|
|
3805
3914
|
inputColorDisabled: string;
|
|
3915
|
+
buttonColor2: string;
|
|
3916
|
+
buttonColor2Hover: string;
|
|
3917
|
+
buttonColor2Pressed: string;
|
|
3806
3918
|
boxShadow1: string;
|
|
3807
3919
|
boxShadow2: string;
|
|
3808
3920
|
boxShadow3: string;
|
|
@@ -3959,20 +4071,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3959
4071
|
fontSizeMedium: string;
|
|
3960
4072
|
fontSizeLarge: string;
|
|
3961
4073
|
opacityDisabled: string;
|
|
4074
|
+
colorOpacitySecondary: number;
|
|
4075
|
+
colorOpacitySecondaryHover: number;
|
|
4076
|
+
colorOpacitySecondaryPressed: number;
|
|
4077
|
+
colorSecondary: string;
|
|
4078
|
+
colorSecondaryHover: string;
|
|
4079
|
+
colorSecondaryPressed: string;
|
|
4080
|
+
colorTertiary: string;
|
|
4081
|
+
colorTertiaryHover: string;
|
|
4082
|
+
colorTertiaryPressed: string;
|
|
4083
|
+
colorQuaternary: string;
|
|
4084
|
+
colorQuaternaryHover: string;
|
|
4085
|
+
colorQuaternaryPressed: string;
|
|
3962
4086
|
color: string;
|
|
3963
4087
|
colorHover: string;
|
|
3964
4088
|
colorPressed: string;
|
|
3965
4089
|
colorFocus: string;
|
|
3966
4090
|
colorDisabled: string;
|
|
3967
4091
|
textColor: string;
|
|
4092
|
+
textColorTertiary: string;
|
|
3968
4093
|
textColorHover: string;
|
|
3969
4094
|
textColorPressed: string;
|
|
3970
4095
|
textColorFocus: string;
|
|
3971
4096
|
textColorDisabled: string;
|
|
3972
4097
|
textColorText: string;
|
|
3973
|
-
textColorTextDepth1: string;
|
|
3974
|
-
textColorTextDepth2: string;
|
|
3975
|
-
textColorTextDepth3: string;
|
|
3976
4098
|
textColorTextHover: string;
|
|
3977
4099
|
textColorTextPressed: string;
|
|
3978
4100
|
textColorTextFocus: string;
|
|
@@ -4119,9 +4241,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4119
4241
|
borderDisabledError: string;
|
|
4120
4242
|
rippleColorError: string;
|
|
4121
4243
|
waveOpacity: string;
|
|
4122
|
-
fontWeightText: string;
|
|
4123
4244
|
fontWeight: string;
|
|
4124
|
-
|
|
4245
|
+
fontWeightStrong: string;
|
|
4125
4246
|
paddingTiny: string;
|
|
4126
4247
|
paddingSmall: string;
|
|
4127
4248
|
paddingMedium: string;
|
|
@@ -4175,20 +4296,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4175
4296
|
fontSizeMedium: string;
|
|
4176
4297
|
fontSizeLarge: string;
|
|
4177
4298
|
opacityDisabled: string;
|
|
4299
|
+
colorOpacitySecondary: number;
|
|
4300
|
+
colorOpacitySecondaryHover: number;
|
|
4301
|
+
colorOpacitySecondaryPressed: number;
|
|
4302
|
+
colorSecondary: string;
|
|
4303
|
+
colorSecondaryHover: string;
|
|
4304
|
+
colorSecondaryPressed: string;
|
|
4305
|
+
colorTertiary: string;
|
|
4306
|
+
colorTertiaryHover: string;
|
|
4307
|
+
colorTertiaryPressed: string;
|
|
4308
|
+
colorQuaternary: string;
|
|
4309
|
+
colorQuaternaryHover: string;
|
|
4310
|
+
colorQuaternaryPressed: string;
|
|
4178
4311
|
color: string;
|
|
4179
4312
|
colorHover: string;
|
|
4180
4313
|
colorPressed: string;
|
|
4181
4314
|
colorFocus: string;
|
|
4182
4315
|
colorDisabled: string;
|
|
4183
4316
|
textColor: string;
|
|
4317
|
+
textColorTertiary: string;
|
|
4184
4318
|
textColorHover: string;
|
|
4185
4319
|
textColorPressed: string;
|
|
4186
4320
|
textColorFocus: string;
|
|
4187
4321
|
textColorDisabled: string;
|
|
4188
4322
|
textColorText: string;
|
|
4189
|
-
textColorTextDepth1: string;
|
|
4190
|
-
textColorTextDepth2: string;
|
|
4191
|
-
textColorTextDepth3: string;
|
|
4192
4323
|
textColorTextHover: string;
|
|
4193
4324
|
textColorTextPressed: string;
|
|
4194
4325
|
textColorTextFocus: string;
|
|
@@ -4335,9 +4466,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4335
4466
|
borderDisabledError: string;
|
|
4336
4467
|
rippleColorError: string;
|
|
4337
4468
|
waveOpacity: string;
|
|
4338
|
-
fontWeightText: string;
|
|
4339
4469
|
fontWeight: string;
|
|
4340
|
-
|
|
4470
|
+
fontWeightStrong: string;
|
|
4341
4471
|
paddingTiny: string;
|
|
4342
4472
|
paddingSmall: string;
|
|
4343
4473
|
paddingMedium: string;
|
|
@@ -4453,20 +4583,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4453
4583
|
fontSizeMedium: string;
|
|
4454
4584
|
fontSizeLarge: string;
|
|
4455
4585
|
opacityDisabled: string;
|
|
4586
|
+
colorOpacitySecondary: number;
|
|
4587
|
+
colorOpacitySecondaryHover: number;
|
|
4588
|
+
colorOpacitySecondaryPressed: number;
|
|
4589
|
+
colorSecondary: string;
|
|
4590
|
+
colorSecondaryHover: string;
|
|
4591
|
+
colorSecondaryPressed: string;
|
|
4592
|
+
colorTertiary: string;
|
|
4593
|
+
colorTertiaryHover: string;
|
|
4594
|
+
colorTertiaryPressed: string;
|
|
4595
|
+
colorQuaternary: string;
|
|
4596
|
+
colorQuaternaryHover: string;
|
|
4597
|
+
colorQuaternaryPressed: string;
|
|
4456
4598
|
color: string;
|
|
4457
4599
|
colorHover: string;
|
|
4458
4600
|
colorPressed: string;
|
|
4459
4601
|
colorFocus: string;
|
|
4460
4602
|
colorDisabled: string;
|
|
4461
4603
|
textColor: string;
|
|
4604
|
+
textColorTertiary: string;
|
|
4462
4605
|
textColorHover: string;
|
|
4463
4606
|
textColorPressed: string;
|
|
4464
4607
|
textColorFocus: string;
|
|
4465
4608
|
textColorDisabled: string;
|
|
4466
4609
|
textColorText: string;
|
|
4467
|
-
textColorTextDepth1: string;
|
|
4468
|
-
textColorTextDepth2: string;
|
|
4469
|
-
textColorTextDepth3: string;
|
|
4470
4610
|
textColorTextHover: string;
|
|
4471
4611
|
textColorTextPressed: string;
|
|
4472
4612
|
textColorTextFocus: string;
|
|
@@ -4613,9 +4753,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4613
4753
|
borderDisabledError: string;
|
|
4614
4754
|
rippleColorError: string;
|
|
4615
4755
|
waveOpacity: string;
|
|
4616
|
-
fontWeightText: string;
|
|
4617
4756
|
fontWeight: string;
|
|
4618
|
-
|
|
4757
|
+
fontWeightStrong: string;
|
|
4619
4758
|
paddingTiny: string;
|
|
4620
4759
|
paddingSmall: string;
|
|
4621
4760
|
paddingMedium: string;
|
|
@@ -4938,20 +5077,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4938
5077
|
fontSizeMedium: string;
|
|
4939
5078
|
fontSizeLarge: string;
|
|
4940
5079
|
opacityDisabled: string;
|
|
5080
|
+
colorOpacitySecondary: number;
|
|
5081
|
+
colorOpacitySecondaryHover: number;
|
|
5082
|
+
colorOpacitySecondaryPressed: number;
|
|
5083
|
+
colorSecondary: string;
|
|
5084
|
+
colorSecondaryHover: string;
|
|
5085
|
+
colorSecondaryPressed: string;
|
|
5086
|
+
colorTertiary: string;
|
|
5087
|
+
colorTertiaryHover: string;
|
|
5088
|
+
colorTertiaryPressed: string;
|
|
5089
|
+
colorQuaternary: string;
|
|
5090
|
+
colorQuaternaryHover: string;
|
|
5091
|
+
colorQuaternaryPressed: string;
|
|
4941
5092
|
color: string;
|
|
4942
5093
|
colorHover: string;
|
|
4943
5094
|
colorPressed: string;
|
|
4944
5095
|
colorFocus: string;
|
|
4945
5096
|
colorDisabled: string;
|
|
4946
5097
|
textColor: string;
|
|
5098
|
+
textColorTertiary: string;
|
|
4947
5099
|
textColorHover: string;
|
|
4948
5100
|
textColorPressed: string;
|
|
4949
5101
|
textColorFocus: string;
|
|
4950
5102
|
textColorDisabled: string;
|
|
4951
5103
|
textColorText: string;
|
|
4952
|
-
textColorTextDepth1: string;
|
|
4953
|
-
textColorTextDepth2: string;
|
|
4954
|
-
textColorTextDepth3: string;
|
|
4955
5104
|
textColorTextHover: string;
|
|
4956
5105
|
textColorTextPressed: string;
|
|
4957
5106
|
textColorTextFocus: string;
|
|
@@ -5098,9 +5247,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5098
5247
|
borderDisabledError: string;
|
|
5099
5248
|
rippleColorError: string;
|
|
5100
5249
|
waveOpacity: string;
|
|
5101
|
-
fontWeightText: string;
|
|
5102
5250
|
fontWeight: string;
|
|
5103
|
-
|
|
5251
|
+
fontWeightStrong: string;
|
|
5104
5252
|
paddingTiny: string;
|
|
5105
5253
|
paddingSmall: string;
|
|
5106
5254
|
paddingMedium: string;
|
|
@@ -5154,20 +5302,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5154
5302
|
fontSizeMedium: string;
|
|
5155
5303
|
fontSizeLarge: string;
|
|
5156
5304
|
opacityDisabled: string;
|
|
5305
|
+
colorOpacitySecondary: number;
|
|
5306
|
+
colorOpacitySecondaryHover: number;
|
|
5307
|
+
colorOpacitySecondaryPressed: number;
|
|
5308
|
+
colorSecondary: string;
|
|
5309
|
+
colorSecondaryHover: string;
|
|
5310
|
+
colorSecondaryPressed: string;
|
|
5311
|
+
colorTertiary: string;
|
|
5312
|
+
colorTertiaryHover: string;
|
|
5313
|
+
colorTertiaryPressed: string;
|
|
5314
|
+
colorQuaternary: string;
|
|
5315
|
+
colorQuaternaryHover: string;
|
|
5316
|
+
colorQuaternaryPressed: string;
|
|
5157
5317
|
color: string;
|
|
5158
5318
|
colorHover: string;
|
|
5159
5319
|
colorPressed: string;
|
|
5160
5320
|
colorFocus: string;
|
|
5161
5321
|
colorDisabled: string;
|
|
5162
5322
|
textColor: string;
|
|
5323
|
+
textColorTertiary: string;
|
|
5163
5324
|
textColorHover: string;
|
|
5164
5325
|
textColorPressed: string;
|
|
5165
5326
|
textColorFocus: string;
|
|
5166
5327
|
textColorDisabled: string;
|
|
5167
5328
|
textColorText: string;
|
|
5168
|
-
textColorTextDepth1: string;
|
|
5169
|
-
textColorTextDepth2: string;
|
|
5170
|
-
textColorTextDepth3: string;
|
|
5171
5329
|
textColorTextHover: string;
|
|
5172
5330
|
textColorTextPressed: string;
|
|
5173
5331
|
textColorTextFocus: string;
|
|
@@ -5314,9 +5472,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5314
5472
|
borderDisabledError: string;
|
|
5315
5473
|
rippleColorError: string;
|
|
5316
5474
|
waveOpacity: string;
|
|
5317
|
-
fontWeightText: string;
|
|
5318
5475
|
fontWeight: string;
|
|
5319
|
-
|
|
5476
|
+
fontWeightStrong: string;
|
|
5320
5477
|
paddingTiny: string;
|
|
5321
5478
|
paddingSmall: string;
|
|
5322
5479
|
paddingMedium: string;
|
|
@@ -5529,20 +5686,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5529
5686
|
fontSizeMedium: string;
|
|
5530
5687
|
fontSizeLarge: string;
|
|
5531
5688
|
opacityDisabled: string;
|
|
5689
|
+
colorOpacitySecondary: number;
|
|
5690
|
+
colorOpacitySecondaryHover: number;
|
|
5691
|
+
colorOpacitySecondaryPressed: number;
|
|
5692
|
+
colorSecondary: string;
|
|
5693
|
+
colorSecondaryHover: string;
|
|
5694
|
+
colorSecondaryPressed: string;
|
|
5695
|
+
colorTertiary: string;
|
|
5696
|
+
colorTertiaryHover: string;
|
|
5697
|
+
colorTertiaryPressed: string;
|
|
5698
|
+
colorQuaternary: string;
|
|
5699
|
+
colorQuaternaryHover: string;
|
|
5700
|
+
colorQuaternaryPressed: string;
|
|
5532
5701
|
color: string;
|
|
5533
5702
|
colorHover: string;
|
|
5534
5703
|
colorPressed: string;
|
|
5535
5704
|
colorFocus: string;
|
|
5536
5705
|
colorDisabled: string;
|
|
5537
5706
|
textColor: string;
|
|
5707
|
+
textColorTertiary: string;
|
|
5538
5708
|
textColorHover: string;
|
|
5539
5709
|
textColorPressed: string;
|
|
5540
5710
|
textColorFocus: string;
|
|
5541
5711
|
textColorDisabled: string;
|
|
5542
5712
|
textColorText: string;
|
|
5543
|
-
textColorTextDepth1: string;
|
|
5544
|
-
textColorTextDepth2: string;
|
|
5545
|
-
textColorTextDepth3: string;
|
|
5546
5713
|
textColorTextHover: string;
|
|
5547
5714
|
textColorTextPressed: string;
|
|
5548
5715
|
textColorTextFocus: string;
|
|
@@ -5689,9 +5856,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5689
5856
|
borderDisabledError: string;
|
|
5690
5857
|
rippleColorError: string;
|
|
5691
5858
|
waveOpacity: string;
|
|
5692
|
-
fontWeightText: string;
|
|
5693
5859
|
fontWeight: string;
|
|
5694
|
-
|
|
5860
|
+
fontWeightStrong: string;
|
|
5695
5861
|
paddingTiny: string;
|
|
5696
5862
|
paddingSmall: string;
|
|
5697
5863
|
paddingMedium: string;
|
|
@@ -5745,20 +5911,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5745
5911
|
fontSizeMedium: string;
|
|
5746
5912
|
fontSizeLarge: string;
|
|
5747
5913
|
opacityDisabled: string;
|
|
5914
|
+
colorOpacitySecondary: number;
|
|
5915
|
+
colorOpacitySecondaryHover: number;
|
|
5916
|
+
colorOpacitySecondaryPressed: number;
|
|
5917
|
+
colorSecondary: string;
|
|
5918
|
+
colorSecondaryHover: string;
|
|
5919
|
+
colorSecondaryPressed: string;
|
|
5920
|
+
colorTertiary: string;
|
|
5921
|
+
colorTertiaryHover: string;
|
|
5922
|
+
colorTertiaryPressed: string;
|
|
5923
|
+
colorQuaternary: string;
|
|
5924
|
+
colorQuaternaryHover: string;
|
|
5925
|
+
colorQuaternaryPressed: string;
|
|
5748
5926
|
color: string;
|
|
5749
5927
|
colorHover: string;
|
|
5750
5928
|
colorPressed: string;
|
|
5751
5929
|
colorFocus: string;
|
|
5752
5930
|
colorDisabled: string;
|
|
5753
5931
|
textColor: string;
|
|
5932
|
+
textColorTertiary: string;
|
|
5754
5933
|
textColorHover: string;
|
|
5755
5934
|
textColorPressed: string;
|
|
5756
5935
|
textColorFocus: string;
|
|
5757
5936
|
textColorDisabled: string;
|
|
5758
5937
|
textColorText: string;
|
|
5759
|
-
textColorTextDepth1: string;
|
|
5760
|
-
textColorTextDepth2: string;
|
|
5761
|
-
textColorTextDepth3: string;
|
|
5762
5938
|
textColorTextHover: string;
|
|
5763
5939
|
textColorTextPressed: string;
|
|
5764
5940
|
textColorTextFocus: string;
|
|
@@ -5905,9 +6081,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5905
6081
|
borderDisabledError: string;
|
|
5906
6082
|
rippleColorError: string;
|
|
5907
6083
|
waveOpacity: string;
|
|
5908
|
-
fontWeightText: string;
|
|
5909
6084
|
fontWeight: string;
|
|
5910
|
-
|
|
6085
|
+
fontWeightStrong: string;
|
|
5911
6086
|
paddingTiny: string;
|
|
5912
6087
|
paddingSmall: string;
|
|
5913
6088
|
paddingMedium: string;
|
|
@@ -6120,20 +6295,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6120
6295
|
fontSizeMedium: string;
|
|
6121
6296
|
fontSizeLarge: string;
|
|
6122
6297
|
opacityDisabled: string;
|
|
6298
|
+
colorOpacitySecondary: number;
|
|
6299
|
+
colorOpacitySecondaryHover: number;
|
|
6300
|
+
colorOpacitySecondaryPressed: number;
|
|
6301
|
+
colorSecondary: string;
|
|
6302
|
+
colorSecondaryHover: string;
|
|
6303
|
+
colorSecondaryPressed: string;
|
|
6304
|
+
colorTertiary: string;
|
|
6305
|
+
colorTertiaryHover: string;
|
|
6306
|
+
colorTertiaryPressed: string;
|
|
6307
|
+
colorQuaternary: string;
|
|
6308
|
+
colorQuaternaryHover: string;
|
|
6309
|
+
colorQuaternaryPressed: string;
|
|
6123
6310
|
color: string;
|
|
6124
6311
|
colorHover: string;
|
|
6125
6312
|
colorPressed: string;
|
|
6126
6313
|
colorFocus: string;
|
|
6127
6314
|
colorDisabled: string;
|
|
6128
6315
|
textColor: string;
|
|
6316
|
+
textColorTertiary: string;
|
|
6129
6317
|
textColorHover: string;
|
|
6130
6318
|
textColorPressed: string;
|
|
6131
6319
|
textColorFocus: string;
|
|
6132
6320
|
textColorDisabled: string;
|
|
6133
6321
|
textColorText: string;
|
|
6134
|
-
textColorTextDepth1: string;
|
|
6135
|
-
textColorTextDepth2: string;
|
|
6136
|
-
textColorTextDepth3: string;
|
|
6137
6322
|
textColorTextHover: string;
|
|
6138
6323
|
textColorTextPressed: string;
|
|
6139
6324
|
textColorTextFocus: string;
|
|
@@ -6280,9 +6465,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6280
6465
|
borderDisabledError: string;
|
|
6281
6466
|
rippleColorError: string;
|
|
6282
6467
|
waveOpacity: string;
|
|
6283
|
-
fontWeightText: string;
|
|
6284
6468
|
fontWeight: string;
|
|
6285
|
-
|
|
6469
|
+
fontWeightStrong: string;
|
|
6286
6470
|
paddingTiny: string;
|
|
6287
6471
|
paddingSmall: string;
|
|
6288
6472
|
paddingMedium: string;
|
|
@@ -6336,20 +6520,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6336
6520
|
fontSizeMedium: string;
|
|
6337
6521
|
fontSizeLarge: string;
|
|
6338
6522
|
opacityDisabled: string;
|
|
6523
|
+
colorOpacitySecondary: number;
|
|
6524
|
+
colorOpacitySecondaryHover: number;
|
|
6525
|
+
colorOpacitySecondaryPressed: number;
|
|
6526
|
+
colorSecondary: string;
|
|
6527
|
+
colorSecondaryHover: string;
|
|
6528
|
+
colorSecondaryPressed: string;
|
|
6529
|
+
colorTertiary: string;
|
|
6530
|
+
colorTertiaryHover: string;
|
|
6531
|
+
colorTertiaryPressed: string;
|
|
6532
|
+
colorQuaternary: string;
|
|
6533
|
+
colorQuaternaryHover: string;
|
|
6534
|
+
colorQuaternaryPressed: string;
|
|
6339
6535
|
color: string;
|
|
6340
6536
|
colorHover: string;
|
|
6341
6537
|
colorPressed: string;
|
|
6342
6538
|
colorFocus: string;
|
|
6343
6539
|
colorDisabled: string;
|
|
6344
6540
|
textColor: string;
|
|
6541
|
+
textColorTertiary: string;
|
|
6345
6542
|
textColorHover: string;
|
|
6346
6543
|
textColorPressed: string;
|
|
6347
6544
|
textColorFocus: string;
|
|
6348
6545
|
textColorDisabled: string;
|
|
6349
6546
|
textColorText: string;
|
|
6350
|
-
textColorTextDepth1: string;
|
|
6351
|
-
textColorTextDepth2: string;
|
|
6352
|
-
textColorTextDepth3: string;
|
|
6353
6547
|
textColorTextHover: string;
|
|
6354
6548
|
textColorTextPressed: string;
|
|
6355
6549
|
textColorTextFocus: string;
|
|
@@ -6496,9 +6690,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6496
6690
|
borderDisabledError: string;
|
|
6497
6691
|
rippleColorError: string;
|
|
6498
6692
|
waveOpacity: string;
|
|
6499
|
-
fontWeightText: string;
|
|
6500
6693
|
fontWeight: string;
|
|
6501
|
-
|
|
6694
|
+
fontWeightStrong: string;
|
|
6502
6695
|
paddingTiny: string;
|
|
6503
6696
|
paddingSmall: string;
|
|
6504
6697
|
paddingMedium: string;
|