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
|
@@ -137,6 +137,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
137
137
|
pressedColor: string;
|
|
138
138
|
opacityDisabled: string;
|
|
139
139
|
inputColorDisabled: string;
|
|
140
|
+
buttonColor2: string;
|
|
141
|
+
buttonColor2Hover: string;
|
|
142
|
+
buttonColor2Pressed: string;
|
|
140
143
|
boxShadow1: string;
|
|
141
144
|
boxShadow2: string;
|
|
142
145
|
boxShadow3: string;
|
|
@@ -299,20 +302,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
299
302
|
fontSizeMedium: string;
|
|
300
303
|
fontSizeLarge: string;
|
|
301
304
|
opacityDisabled: string;
|
|
305
|
+
colorOpacitySecondary: number;
|
|
306
|
+
colorOpacitySecondaryHover: number;
|
|
307
|
+
colorOpacitySecondaryPressed: number;
|
|
308
|
+
colorSecondary: string;
|
|
309
|
+
colorSecondaryHover: string;
|
|
310
|
+
colorSecondaryPressed: string;
|
|
311
|
+
colorTertiary: string;
|
|
312
|
+
colorTertiaryHover: string;
|
|
313
|
+
colorTertiaryPressed: string;
|
|
314
|
+
colorQuaternary: string;
|
|
315
|
+
colorQuaternaryHover: string;
|
|
316
|
+
colorQuaternaryPressed: string;
|
|
302
317
|
color: string;
|
|
303
318
|
colorHover: string;
|
|
304
319
|
colorPressed: string;
|
|
305
320
|
colorFocus: string;
|
|
306
321
|
colorDisabled: string;
|
|
307
322
|
textColor: string;
|
|
323
|
+
textColorTertiary: string;
|
|
308
324
|
textColorHover: string;
|
|
309
325
|
textColorPressed: string;
|
|
310
326
|
textColorFocus: string;
|
|
311
327
|
textColorDisabled: string;
|
|
312
328
|
textColorText: string;
|
|
313
|
-
textColorTextDepth1: string;
|
|
314
|
-
textColorTextDepth2: string;
|
|
315
|
-
textColorTextDepth3: string;
|
|
316
329
|
textColorTextHover: string;
|
|
317
330
|
textColorTextPressed: string;
|
|
318
331
|
textColorTextFocus: string;
|
|
@@ -459,9 +472,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
459
472
|
borderDisabledError: string;
|
|
460
473
|
rippleColorError: string;
|
|
461
474
|
waveOpacity: string;
|
|
462
|
-
fontWeightText: string;
|
|
463
475
|
fontWeight: string;
|
|
464
|
-
|
|
476
|
+
fontWeightStrong: string;
|
|
465
477
|
paddingTiny: string;
|
|
466
478
|
paddingSmall: string;
|
|
467
479
|
paddingMedium: string;
|
|
@@ -515,20 +527,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
515
527
|
fontSizeMedium: string;
|
|
516
528
|
fontSizeLarge: string;
|
|
517
529
|
opacityDisabled: string;
|
|
530
|
+
colorOpacitySecondary: number;
|
|
531
|
+
colorOpacitySecondaryHover: number;
|
|
532
|
+
colorOpacitySecondaryPressed: number;
|
|
533
|
+
colorSecondary: string;
|
|
534
|
+
colorSecondaryHover: string;
|
|
535
|
+
colorSecondaryPressed: string;
|
|
536
|
+
colorTertiary: string;
|
|
537
|
+
colorTertiaryHover: string;
|
|
538
|
+
colorTertiaryPressed: string;
|
|
539
|
+
colorQuaternary: string;
|
|
540
|
+
colorQuaternaryHover: string;
|
|
541
|
+
colorQuaternaryPressed: string;
|
|
518
542
|
color: string;
|
|
519
543
|
colorHover: string;
|
|
520
544
|
colorPressed: string;
|
|
521
545
|
colorFocus: string;
|
|
522
546
|
colorDisabled: string;
|
|
523
547
|
textColor: string;
|
|
548
|
+
textColorTertiary: string;
|
|
524
549
|
textColorHover: string;
|
|
525
550
|
textColorPressed: string;
|
|
526
551
|
textColorFocus: string;
|
|
527
552
|
textColorDisabled: string;
|
|
528
553
|
textColorText: string;
|
|
529
|
-
textColorTextDepth1: string;
|
|
530
|
-
textColorTextDepth2: string;
|
|
531
|
-
textColorTextDepth3: string;
|
|
532
554
|
textColorTextHover: string;
|
|
533
555
|
textColorTextPressed: string;
|
|
534
556
|
textColorTextFocus: string;
|
|
@@ -675,9 +697,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
675
697
|
borderDisabledError: string;
|
|
676
698
|
rippleColorError: string;
|
|
677
699
|
waveOpacity: string;
|
|
678
|
-
fontWeightText: string;
|
|
679
700
|
fontWeight: string;
|
|
680
|
-
|
|
701
|
+
fontWeightStrong: string;
|
|
681
702
|
paddingTiny: string;
|
|
682
703
|
paddingSmall: string;
|
|
683
704
|
paddingMedium: string;
|
|
@@ -793,20 +814,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
793
814
|
fontSizeMedium: string;
|
|
794
815
|
fontSizeLarge: string;
|
|
795
816
|
opacityDisabled: string;
|
|
817
|
+
colorOpacitySecondary: number;
|
|
818
|
+
colorOpacitySecondaryHover: number;
|
|
819
|
+
colorOpacitySecondaryPressed: number;
|
|
820
|
+
colorSecondary: string;
|
|
821
|
+
colorSecondaryHover: string;
|
|
822
|
+
colorSecondaryPressed: string;
|
|
823
|
+
colorTertiary: string;
|
|
824
|
+
colorTertiaryHover: string;
|
|
825
|
+
colorTertiaryPressed: string;
|
|
826
|
+
colorQuaternary: string;
|
|
827
|
+
colorQuaternaryHover: string;
|
|
828
|
+
colorQuaternaryPressed: string;
|
|
796
829
|
color: string;
|
|
797
830
|
colorHover: string;
|
|
798
831
|
colorPressed: string;
|
|
799
832
|
colorFocus: string;
|
|
800
833
|
colorDisabled: string;
|
|
801
834
|
textColor: string;
|
|
835
|
+
textColorTertiary: string;
|
|
802
836
|
textColorHover: string;
|
|
803
837
|
textColorPressed: string;
|
|
804
838
|
textColorFocus: string;
|
|
805
839
|
textColorDisabled: string;
|
|
806
840
|
textColorText: string;
|
|
807
|
-
textColorTextDepth1: string;
|
|
808
|
-
textColorTextDepth2: string;
|
|
809
|
-
textColorTextDepth3: string;
|
|
810
841
|
textColorTextHover: string;
|
|
811
842
|
textColorTextPressed: string;
|
|
812
843
|
textColorTextFocus: string;
|
|
@@ -953,9 +984,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
953
984
|
borderDisabledError: string;
|
|
954
985
|
rippleColorError: string;
|
|
955
986
|
waveOpacity: string;
|
|
956
|
-
fontWeightText: string;
|
|
957
987
|
fontWeight: string;
|
|
958
|
-
|
|
988
|
+
fontWeightStrong: string;
|
|
959
989
|
paddingTiny: string;
|
|
960
990
|
paddingSmall: string;
|
|
961
991
|
paddingMedium: string;
|
|
@@ -134,6 +134,9 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
134
134
|
pressedColor: string;
|
|
135
135
|
opacityDisabled: string;
|
|
136
136
|
inputColorDisabled: string;
|
|
137
|
+
buttonColor2: string;
|
|
138
|
+
buttonColor2Hover: string;
|
|
139
|
+
buttonColor2Pressed: string;
|
|
137
140
|
boxShadow1: string;
|
|
138
141
|
boxShadow2: string;
|
|
139
142
|
boxShadow3: string;
|
|
@@ -290,20 +293,30 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
290
293
|
fontSizeMedium: string;
|
|
291
294
|
fontSizeLarge: string;
|
|
292
295
|
opacityDisabled: string;
|
|
296
|
+
colorOpacitySecondary: number;
|
|
297
|
+
colorOpacitySecondaryHover: number;
|
|
298
|
+
colorOpacitySecondaryPressed: number;
|
|
299
|
+
colorSecondary: string;
|
|
300
|
+
colorSecondaryHover: string;
|
|
301
|
+
colorSecondaryPressed: string;
|
|
302
|
+
colorTertiary: string;
|
|
303
|
+
colorTertiaryHover: string;
|
|
304
|
+
colorTertiaryPressed: string;
|
|
305
|
+
colorQuaternary: string;
|
|
306
|
+
colorQuaternaryHover: string;
|
|
307
|
+
colorQuaternaryPressed: string;
|
|
293
308
|
color: string;
|
|
294
309
|
colorHover: string;
|
|
295
310
|
colorPressed: string;
|
|
296
311
|
colorFocus: string;
|
|
297
312
|
colorDisabled: string;
|
|
298
313
|
textColor: string;
|
|
314
|
+
textColorTertiary: string;
|
|
299
315
|
textColorHover: string;
|
|
300
316
|
textColorPressed: string;
|
|
301
317
|
textColorFocus: string;
|
|
302
318
|
textColorDisabled: string;
|
|
303
319
|
textColorText: string;
|
|
304
|
-
textColorTextDepth1: string;
|
|
305
|
-
textColorTextDepth2: string;
|
|
306
|
-
textColorTextDepth3: string;
|
|
307
320
|
textColorTextHover: string;
|
|
308
321
|
textColorTextPressed: string;
|
|
309
322
|
textColorTextFocus: string;
|
|
@@ -450,9 +463,8 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
450
463
|
borderDisabledError: string;
|
|
451
464
|
rippleColorError: string;
|
|
452
465
|
waveOpacity: string;
|
|
453
|
-
fontWeightText: string;
|
|
454
466
|
fontWeight: string;
|
|
455
|
-
|
|
467
|
+
fontWeightStrong: string;
|
|
456
468
|
paddingTiny: string;
|
|
457
469
|
paddingSmall: string;
|
|
458
470
|
paddingMedium: string;
|
|
@@ -506,20 +518,30 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
506
518
|
fontSizeMedium: string;
|
|
507
519
|
fontSizeLarge: string;
|
|
508
520
|
opacityDisabled: string;
|
|
521
|
+
colorOpacitySecondary: number;
|
|
522
|
+
colorOpacitySecondaryHover: number;
|
|
523
|
+
colorOpacitySecondaryPressed: number;
|
|
524
|
+
colorSecondary: string;
|
|
525
|
+
colorSecondaryHover: string;
|
|
526
|
+
colorSecondaryPressed: string;
|
|
527
|
+
colorTertiary: string;
|
|
528
|
+
colorTertiaryHover: string;
|
|
529
|
+
colorTertiaryPressed: string;
|
|
530
|
+
colorQuaternary: string;
|
|
531
|
+
colorQuaternaryHover: string;
|
|
532
|
+
colorQuaternaryPressed: string;
|
|
509
533
|
color: string;
|
|
510
534
|
colorHover: string;
|
|
511
535
|
colorPressed: string;
|
|
512
536
|
colorFocus: string;
|
|
513
537
|
colorDisabled: string;
|
|
514
538
|
textColor: string;
|
|
539
|
+
textColorTertiary: string;
|
|
515
540
|
textColorHover: string;
|
|
516
541
|
textColorPressed: string;
|
|
517
542
|
textColorFocus: string;
|
|
518
543
|
textColorDisabled: string;
|
|
519
544
|
textColorText: string;
|
|
520
|
-
textColorTextDepth1: string;
|
|
521
|
-
textColorTextDepth2: string;
|
|
522
|
-
textColorTextDepth3: string;
|
|
523
545
|
textColorTextHover: string;
|
|
524
546
|
textColorTextPressed: string;
|
|
525
547
|
textColorTextFocus: string;
|
|
@@ -666,9 +688,8 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
666
688
|
borderDisabledError: string;
|
|
667
689
|
rippleColorError: string;
|
|
668
690
|
waveOpacity: string;
|
|
669
|
-
fontWeightText: string;
|
|
670
691
|
fontWeight: string;
|
|
671
|
-
|
|
692
|
+
fontWeightStrong: string;
|
|
672
693
|
paddingTiny: string;
|
|
673
694
|
paddingSmall: string;
|
|
674
695
|
paddingMedium: string;
|
|
@@ -784,20 +805,30 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
784
805
|
fontSizeMedium: string;
|
|
785
806
|
fontSizeLarge: string;
|
|
786
807
|
opacityDisabled: string;
|
|
808
|
+
colorOpacitySecondary: number;
|
|
809
|
+
colorOpacitySecondaryHover: number;
|
|
810
|
+
colorOpacitySecondaryPressed: number;
|
|
811
|
+
colorSecondary: string;
|
|
812
|
+
colorSecondaryHover: string;
|
|
813
|
+
colorSecondaryPressed: string;
|
|
814
|
+
colorTertiary: string;
|
|
815
|
+
colorTertiaryHover: string;
|
|
816
|
+
colorTertiaryPressed: string;
|
|
817
|
+
colorQuaternary: string;
|
|
818
|
+
colorQuaternaryHover: string;
|
|
819
|
+
colorQuaternaryPressed: string;
|
|
787
820
|
color: string;
|
|
788
821
|
colorHover: string;
|
|
789
822
|
colorPressed: string;
|
|
790
823
|
colorFocus: string;
|
|
791
824
|
colorDisabled: string;
|
|
792
825
|
textColor: string;
|
|
826
|
+
textColorTertiary: string;
|
|
793
827
|
textColorHover: string;
|
|
794
828
|
textColorPressed: string;
|
|
795
829
|
textColorFocus: string;
|
|
796
830
|
textColorDisabled: string;
|
|
797
831
|
textColorText: string;
|
|
798
|
-
textColorTextDepth1: string;
|
|
799
|
-
textColorTextDepth2: string;
|
|
800
|
-
textColorTextDepth3: string;
|
|
801
832
|
textColorTextHover: string;
|
|
802
833
|
textColorTextPressed: string;
|
|
803
834
|
textColorTextFocus: string;
|
|
@@ -944,9 +975,8 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
|
|
|
944
975
|
borderDisabledError: string;
|
|
945
976
|
rippleColorError: string;
|
|
946
977
|
waveOpacity: string;
|
|
947
|
-
fontWeightText: string;
|
|
948
978
|
fontWeight: string;
|
|
949
|
-
|
|
979
|
+
fontWeightStrong: string;
|
|
950
980
|
paddingTiny: string;
|
|
951
981
|
paddingSmall: string;
|
|
952
982
|
paddingMedium: string;
|
|
@@ -132,6 +132,9 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
132
132
|
pressedColor: string;
|
|
133
133
|
opacityDisabled: string;
|
|
134
134
|
inputColorDisabled: string;
|
|
135
|
+
buttonColor2: string;
|
|
136
|
+
buttonColor2Hover: string;
|
|
137
|
+
buttonColor2Pressed: string;
|
|
135
138
|
boxShadow1: string;
|
|
136
139
|
boxShadow2: string;
|
|
137
140
|
boxShadow3: string;
|
|
@@ -288,20 +291,30 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
288
291
|
fontSizeMedium: string;
|
|
289
292
|
fontSizeLarge: string;
|
|
290
293
|
opacityDisabled: string;
|
|
294
|
+
colorOpacitySecondary: number;
|
|
295
|
+
colorOpacitySecondaryHover: number;
|
|
296
|
+
colorOpacitySecondaryPressed: number;
|
|
297
|
+
colorSecondary: string;
|
|
298
|
+
colorSecondaryHover: string;
|
|
299
|
+
colorSecondaryPressed: string;
|
|
300
|
+
colorTertiary: string;
|
|
301
|
+
colorTertiaryHover: string;
|
|
302
|
+
colorTertiaryPressed: string;
|
|
303
|
+
colorQuaternary: string;
|
|
304
|
+
colorQuaternaryHover: string;
|
|
305
|
+
colorQuaternaryPressed: string;
|
|
291
306
|
color: string;
|
|
292
307
|
colorHover: string;
|
|
293
308
|
colorPressed: string;
|
|
294
309
|
colorFocus: string;
|
|
295
310
|
colorDisabled: string;
|
|
296
311
|
textColor: string;
|
|
312
|
+
textColorTertiary: string;
|
|
297
313
|
textColorHover: string;
|
|
298
314
|
textColorPressed: string;
|
|
299
315
|
textColorFocus: string;
|
|
300
316
|
textColorDisabled: string;
|
|
301
317
|
textColorText: string;
|
|
302
|
-
textColorTextDepth1: string;
|
|
303
|
-
textColorTextDepth2: string;
|
|
304
|
-
textColorTextDepth3: string;
|
|
305
318
|
textColorTextHover: string;
|
|
306
319
|
textColorTextPressed: string;
|
|
307
320
|
textColorTextFocus: string;
|
|
@@ -448,9 +461,8 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
448
461
|
borderDisabledError: string;
|
|
449
462
|
rippleColorError: string;
|
|
450
463
|
waveOpacity: string;
|
|
451
|
-
fontWeightText: string;
|
|
452
464
|
fontWeight: string;
|
|
453
|
-
|
|
465
|
+
fontWeightStrong: string;
|
|
454
466
|
paddingTiny: string;
|
|
455
467
|
paddingSmall: string;
|
|
456
468
|
paddingMedium: string;
|
|
@@ -504,20 +516,30 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
504
516
|
fontSizeMedium: string;
|
|
505
517
|
fontSizeLarge: string;
|
|
506
518
|
opacityDisabled: string;
|
|
519
|
+
colorOpacitySecondary: number;
|
|
520
|
+
colorOpacitySecondaryHover: number;
|
|
521
|
+
colorOpacitySecondaryPressed: number;
|
|
522
|
+
colorSecondary: string;
|
|
523
|
+
colorSecondaryHover: string;
|
|
524
|
+
colorSecondaryPressed: string;
|
|
525
|
+
colorTertiary: string;
|
|
526
|
+
colorTertiaryHover: string;
|
|
527
|
+
colorTertiaryPressed: string;
|
|
528
|
+
colorQuaternary: string;
|
|
529
|
+
colorQuaternaryHover: string;
|
|
530
|
+
colorQuaternaryPressed: string;
|
|
507
531
|
color: string;
|
|
508
532
|
colorHover: string;
|
|
509
533
|
colorPressed: string;
|
|
510
534
|
colorFocus: string;
|
|
511
535
|
colorDisabled: string;
|
|
512
536
|
textColor: string;
|
|
537
|
+
textColorTertiary: string;
|
|
513
538
|
textColorHover: string;
|
|
514
539
|
textColorPressed: string;
|
|
515
540
|
textColorFocus: string;
|
|
516
541
|
textColorDisabled: string;
|
|
517
542
|
textColorText: string;
|
|
518
|
-
textColorTextDepth1: string;
|
|
519
|
-
textColorTextDepth2: string;
|
|
520
|
-
textColorTextDepth3: string;
|
|
521
543
|
textColorTextHover: string;
|
|
522
544
|
textColorTextPressed: string;
|
|
523
545
|
textColorTextFocus: string;
|
|
@@ -664,9 +686,8 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
664
686
|
borderDisabledError: string;
|
|
665
687
|
rippleColorError: string;
|
|
666
688
|
waveOpacity: string;
|
|
667
|
-
fontWeightText: string;
|
|
668
689
|
fontWeight: string;
|
|
669
|
-
|
|
690
|
+
fontWeightStrong: string;
|
|
670
691
|
paddingTiny: string;
|
|
671
692
|
paddingSmall: string;
|
|
672
693
|
paddingMedium: string;
|
|
@@ -782,20 +803,30 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
782
803
|
fontSizeMedium: string;
|
|
783
804
|
fontSizeLarge: string;
|
|
784
805
|
opacityDisabled: string;
|
|
806
|
+
colorOpacitySecondary: number;
|
|
807
|
+
colorOpacitySecondaryHover: number;
|
|
808
|
+
colorOpacitySecondaryPressed: number;
|
|
809
|
+
colorSecondary: string;
|
|
810
|
+
colorSecondaryHover: string;
|
|
811
|
+
colorSecondaryPressed: string;
|
|
812
|
+
colorTertiary: string;
|
|
813
|
+
colorTertiaryHover: string;
|
|
814
|
+
colorTertiaryPressed: string;
|
|
815
|
+
colorQuaternary: string;
|
|
816
|
+
colorQuaternaryHover: string;
|
|
817
|
+
colorQuaternaryPressed: string;
|
|
785
818
|
color: string;
|
|
786
819
|
colorHover: string;
|
|
787
820
|
colorPressed: string;
|
|
788
821
|
colorFocus: string;
|
|
789
822
|
colorDisabled: string;
|
|
790
823
|
textColor: string;
|
|
824
|
+
textColorTertiary: string;
|
|
791
825
|
textColorHover: string;
|
|
792
826
|
textColorPressed: string;
|
|
793
827
|
textColorFocus: string;
|
|
794
828
|
textColorDisabled: string;
|
|
795
829
|
textColorText: string;
|
|
796
|
-
textColorTextDepth1: string;
|
|
797
|
-
textColorTextDepth2: string;
|
|
798
|
-
textColorTextDepth3: string;
|
|
799
830
|
textColorTextHover: string;
|
|
800
831
|
textColorTextPressed: string;
|
|
801
832
|
textColorTextFocus: string;
|
|
@@ -942,9 +973,8 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
|
|
|
942
973
|
borderDisabledError: string;
|
|
943
974
|
rippleColorError: string;
|
|
944
975
|
waveOpacity: string;
|
|
945
|
-
fontWeightText: string;
|
|
946
976
|
fontWeight: string;
|
|
947
|
-
|
|
977
|
+
fontWeightStrong: string;
|
|
948
978
|
paddingTiny: string;
|
|
949
979
|
paddingSmall: string;
|
|
950
980
|
paddingMedium: string;
|
|
@@ -98,6 +98,9 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
98
98
|
pressedColor: string;
|
|
99
99
|
opacityDisabled: string;
|
|
100
100
|
inputColorDisabled: string;
|
|
101
|
+
buttonColor2: string;
|
|
102
|
+
buttonColor2Hover: string;
|
|
103
|
+
buttonColor2Pressed: string;
|
|
101
104
|
boxShadow1: string;
|
|
102
105
|
boxShadow2: string;
|
|
103
106
|
boxShadow3: string;
|
|
@@ -254,20 +257,30 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
254
257
|
fontSizeMedium: string;
|
|
255
258
|
fontSizeLarge: string;
|
|
256
259
|
opacityDisabled: string;
|
|
260
|
+
colorOpacitySecondary: number;
|
|
261
|
+
colorOpacitySecondaryHover: number;
|
|
262
|
+
colorOpacitySecondaryPressed: number;
|
|
263
|
+
colorSecondary: string;
|
|
264
|
+
colorSecondaryHover: string;
|
|
265
|
+
colorSecondaryPressed: string;
|
|
266
|
+
colorTertiary: string;
|
|
267
|
+
colorTertiaryHover: string;
|
|
268
|
+
colorTertiaryPressed: string;
|
|
269
|
+
colorQuaternary: string;
|
|
270
|
+
colorQuaternaryHover: string;
|
|
271
|
+
colorQuaternaryPressed: string;
|
|
257
272
|
color: string;
|
|
258
273
|
colorHover: string;
|
|
259
274
|
colorPressed: string;
|
|
260
275
|
colorFocus: string;
|
|
261
276
|
colorDisabled: string;
|
|
262
277
|
textColor: string;
|
|
278
|
+
textColorTertiary: string;
|
|
263
279
|
textColorHover: string;
|
|
264
280
|
textColorPressed: string;
|
|
265
281
|
textColorFocus: string;
|
|
266
282
|
textColorDisabled: string;
|
|
267
283
|
textColorText: string;
|
|
268
|
-
textColorTextDepth1: string;
|
|
269
|
-
textColorTextDepth2: string;
|
|
270
|
-
textColorTextDepth3: string;
|
|
271
284
|
textColorTextHover: string;
|
|
272
285
|
textColorTextPressed: string;
|
|
273
286
|
textColorTextFocus: string;
|
|
@@ -414,9 +427,8 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
414
427
|
borderDisabledError: string;
|
|
415
428
|
rippleColorError: string;
|
|
416
429
|
waveOpacity: string;
|
|
417
|
-
fontWeightText: string;
|
|
418
430
|
fontWeight: string;
|
|
419
|
-
|
|
431
|
+
fontWeightStrong: string;
|
|
420
432
|
paddingTiny: string;
|
|
421
433
|
paddingSmall: string;
|
|
422
434
|
paddingMedium: string;
|
|
@@ -470,20 +482,30 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
470
482
|
fontSizeMedium: string;
|
|
471
483
|
fontSizeLarge: string;
|
|
472
484
|
opacityDisabled: string;
|
|
485
|
+
colorOpacitySecondary: number;
|
|
486
|
+
colorOpacitySecondaryHover: number;
|
|
487
|
+
colorOpacitySecondaryPressed: number;
|
|
488
|
+
colorSecondary: string;
|
|
489
|
+
colorSecondaryHover: string;
|
|
490
|
+
colorSecondaryPressed: string;
|
|
491
|
+
colorTertiary: string;
|
|
492
|
+
colorTertiaryHover: string;
|
|
493
|
+
colorTertiaryPressed: string;
|
|
494
|
+
colorQuaternary: string;
|
|
495
|
+
colorQuaternaryHover: string;
|
|
496
|
+
colorQuaternaryPressed: string;
|
|
473
497
|
color: string;
|
|
474
498
|
colorHover: string;
|
|
475
499
|
colorPressed: string;
|
|
476
500
|
colorFocus: string;
|
|
477
501
|
colorDisabled: string;
|
|
478
502
|
textColor: string;
|
|
503
|
+
textColorTertiary: string;
|
|
479
504
|
textColorHover: string;
|
|
480
505
|
textColorPressed: string;
|
|
481
506
|
textColorFocus: string;
|
|
482
507
|
textColorDisabled: string;
|
|
483
508
|
textColorText: string;
|
|
484
|
-
textColorTextDepth1: string;
|
|
485
|
-
textColorTextDepth2: string;
|
|
486
|
-
textColorTextDepth3: string;
|
|
487
509
|
textColorTextHover: string;
|
|
488
510
|
textColorTextPressed: string;
|
|
489
511
|
textColorTextFocus: string;
|
|
@@ -630,9 +652,8 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
630
652
|
borderDisabledError: string;
|
|
631
653
|
rippleColorError: string;
|
|
632
654
|
waveOpacity: string;
|
|
633
|
-
fontWeightText: string;
|
|
634
655
|
fontWeight: string;
|
|
635
|
-
|
|
656
|
+
fontWeightStrong: string;
|
|
636
657
|
paddingTiny: string;
|
|
637
658
|
paddingSmall: string;
|
|
638
659
|
paddingMedium: string;
|
|
@@ -748,20 +769,30 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
748
769
|
fontSizeMedium: string;
|
|
749
770
|
fontSizeLarge: string;
|
|
750
771
|
opacityDisabled: string;
|
|
772
|
+
colorOpacitySecondary: number;
|
|
773
|
+
colorOpacitySecondaryHover: number;
|
|
774
|
+
colorOpacitySecondaryPressed: number;
|
|
775
|
+
colorSecondary: string;
|
|
776
|
+
colorSecondaryHover: string;
|
|
777
|
+
colorSecondaryPressed: string;
|
|
778
|
+
colorTertiary: string;
|
|
779
|
+
colorTertiaryHover: string;
|
|
780
|
+
colorTertiaryPressed: string;
|
|
781
|
+
colorQuaternary: string;
|
|
782
|
+
colorQuaternaryHover: string;
|
|
783
|
+
colorQuaternaryPressed: string;
|
|
751
784
|
color: string;
|
|
752
785
|
colorHover: string;
|
|
753
786
|
colorPressed: string;
|
|
754
787
|
colorFocus: string;
|
|
755
788
|
colorDisabled: string;
|
|
756
789
|
textColor: string;
|
|
790
|
+
textColorTertiary: string;
|
|
757
791
|
textColorHover: string;
|
|
758
792
|
textColorPressed: string;
|
|
759
793
|
textColorFocus: string;
|
|
760
794
|
textColorDisabled: string;
|
|
761
795
|
textColorText: string;
|
|
762
|
-
textColorTextDepth1: string;
|
|
763
|
-
textColorTextDepth2: string;
|
|
764
|
-
textColorTextDepth3: string;
|
|
765
796
|
textColorTextHover: string;
|
|
766
797
|
textColorTextPressed: string;
|
|
767
798
|
textColorTextFocus: string;
|
|
@@ -908,9 +939,8 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
|
|
|
908
939
|
borderDisabledError: string;
|
|
909
940
|
rippleColorError: string;
|
|
910
941
|
waveOpacity: string;
|
|
911
|
-
fontWeightText: string;
|
|
912
942
|
fontWeight: string;
|
|
913
|
-
|
|
943
|
+
fontWeightStrong: string;
|
|
914
944
|
paddingTiny: string;
|
|
915
945
|
paddingSmall: string;
|
|
916
946
|
paddingMedium: string;
|
|
@@ -182,20 +182,30 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
|
|
|
182
182
|
fontSizeMedium: string;
|
|
183
183
|
fontSizeLarge: string;
|
|
184
184
|
opacityDisabled: string;
|
|
185
|
+
colorOpacitySecondary: number;
|
|
186
|
+
colorOpacitySecondaryHover: number;
|
|
187
|
+
colorOpacitySecondaryPressed: number;
|
|
188
|
+
colorSecondary: string;
|
|
189
|
+
colorSecondaryHover: string;
|
|
190
|
+
colorSecondaryPressed: string;
|
|
191
|
+
colorTertiary: string;
|
|
192
|
+
colorTertiaryHover: string;
|
|
193
|
+
colorTertiaryPressed: string;
|
|
194
|
+
colorQuaternary: string;
|
|
195
|
+
colorQuaternaryHover: string;
|
|
196
|
+
colorQuaternaryPressed: string;
|
|
185
197
|
color: string;
|
|
186
198
|
colorHover: string;
|
|
187
199
|
colorPressed: string;
|
|
188
200
|
colorFocus: string;
|
|
189
201
|
colorDisabled: string;
|
|
190
202
|
textColor: string;
|
|
203
|
+
textColorTertiary: string;
|
|
191
204
|
textColorHover: string;
|
|
192
205
|
textColorPressed: string;
|
|
193
206
|
textColorFocus: string;
|
|
194
207
|
textColorDisabled: string;
|
|
195
208
|
textColorText: string;
|
|
196
|
-
textColorTextDepth1: string;
|
|
197
|
-
textColorTextDepth2: string;
|
|
198
|
-
textColorTextDepth3: string;
|
|
199
209
|
textColorTextHover: string;
|
|
200
210
|
textColorTextPressed: string;
|
|
201
211
|
textColorTextFocus: string;
|
|
@@ -342,9 +352,8 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
|
|
|
342
352
|
borderDisabledError: string;
|
|
343
353
|
rippleColorError: string;
|
|
344
354
|
waveOpacity: string;
|
|
345
|
-
fontWeightText: string;
|
|
346
355
|
fontWeight: string;
|
|
347
|
-
|
|
356
|
+
fontWeightStrong: string;
|
|
348
357
|
paddingTiny: string;
|
|
349
358
|
paddingSmall: string;
|
|
350
359
|
paddingMedium: string;
|
|
@@ -398,20 +407,30 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
|
|
|
398
407
|
fontSizeMedium: string;
|
|
399
408
|
fontSizeLarge: string;
|
|
400
409
|
opacityDisabled: string;
|
|
410
|
+
colorOpacitySecondary: number;
|
|
411
|
+
colorOpacitySecondaryHover: number;
|
|
412
|
+
colorOpacitySecondaryPressed: number;
|
|
413
|
+
colorSecondary: string;
|
|
414
|
+
colorSecondaryHover: string;
|
|
415
|
+
colorSecondaryPressed: string;
|
|
416
|
+
colorTertiary: string;
|
|
417
|
+
colorTertiaryHover: string;
|
|
418
|
+
colorTertiaryPressed: string;
|
|
419
|
+
colorQuaternary: string;
|
|
420
|
+
colorQuaternaryHover: string;
|
|
421
|
+
colorQuaternaryPressed: string;
|
|
401
422
|
color: string;
|
|
402
423
|
colorHover: string;
|
|
403
424
|
colorPressed: string;
|
|
404
425
|
colorFocus: string;
|
|
405
426
|
colorDisabled: string;
|
|
406
427
|
textColor: string;
|
|
428
|
+
textColorTertiary: string;
|
|
407
429
|
textColorHover: string;
|
|
408
430
|
textColorPressed: string;
|
|
409
431
|
textColorFocus: string;
|
|
410
432
|
textColorDisabled: string;
|
|
411
433
|
textColorText: string;
|
|
412
|
-
textColorTextDepth1: string;
|
|
413
|
-
textColorTextDepth2: string;
|
|
414
|
-
textColorTextDepth3: string;
|
|
415
434
|
textColorTextHover: string;
|
|
416
435
|
textColorTextPressed: string;
|
|
417
436
|
textColorTextFocus: string;
|
|
@@ -558,9 +577,8 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
|
|
|
558
577
|
borderDisabledError: string;
|
|
559
578
|
rippleColorError: string;
|
|
560
579
|
waveOpacity: string;
|
|
561
|
-
fontWeightText: string;
|
|
562
580
|
fontWeight: string;
|
|
563
|
-
|
|
581
|
+
fontWeightStrong: string;
|
|
564
582
|
paddingTiny: string;
|
|
565
583
|
paddingSmall: string;
|
|
566
584
|
paddingMedium: string;
|