naive-ui 2.20.0 → 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 +4 -1
- package/es/_internal/selection/src/Selection.d.ts +4 -1
- package/es/_internal/suffix/src/Suffix.d.ts +5 -2
- 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/alert/src/Alert.js +3 -3
- 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 +131 -58
- package/es/button/src/interface.d.ts +1 -1
- package/es/button/src/styles/button.cssr.js +1 -0
- 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/Cascader.js +2 -2
- 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 +8 -9
- 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 +328 -127
- package/es/date-picker/src/DatePicker.js +7 -17
- package/es/date-picker/src/config.d.ts +9 -0
- package/es/date-picker/src/config.js +8 -0
- package/es/date-picker/src/panel/date.d.ts +51 -19
- package/es/date-picker/src/panel/daterange.d.ts +49 -17
- package/es/date-picker/src/panel/datetime.d.ts +51 -19
- package/es/date-picker/src/panel/datetimerange.d.ts +49 -17
- package/es/date-picker/src/panel/month.d.ts +86 -60
- package/es/date-picker/src/panel/month.js +9 -6
- package/es/date-picker/src/panel/use-calendar.d.ts +59 -27
- package/es/date-picker/src/panel/use-calendar.js +7 -2
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +47 -15
- package/es/date-picker/src/panel/use-panel-common.d.ts +47 -15
- package/es/date-picker/styles/_common.d.ts +2 -0
- package/es/date-picker/styles/_common.js +3 -1
- package/es/date-picker/styles/light.d.ts +32 -10
- package/es/dialog/src/Dialog.d.ts +104 -38
- package/es/dialog/src/DialogEnvironment.d.ts +2 -2
- package/es/dialog/src/DialogProvider.d.ts +2 -2
- 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/form/src/FormItemGridItem.d.ts +2 -2
- package/es/global-style/src/GlobalStyle.js +2 -0
- package/es/grid/src/Grid.js +1 -0
- package/es/grid/src/GridItem.d.ts +2 -2
- package/es/image/src/ImagePreview.js +3 -2
- package/es/image/src/icons.d.ts +1 -0
- package/es/image/src/icons.js +2 -0
- package/es/input/src/Input.d.ts +4 -0
- package/es/input/src/Input.js +9 -3
- 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/locales/common/deDE.d.ts +3 -0
- package/es/locales/common/deDE.js +93 -0
- package/es/locales/common/nbNO.d.ts +3 -0
- package/es/locales/common/nbNO.js +93 -0
- package/es/locales/date/deDE.d.ts +3 -0
- package/es/locales/date/deDE.js +6 -0
- package/es/locales/date/nbNO.d.ts +3 -0
- package/es/locales/date/nbNO.js +6 -0
- package/es/locales/index.d.ts +6 -0
- package/es/locales/index.js +5 -0
- package/es/locales/utils/index.d.ts +8 -0
- package/es/locales/utils/index.js +4 -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 +32 -8
- package/es/menu/src/Menu.js +32 -10
- package/es/menu/src/MenuDivider.d.ts +2 -0
- package/es/menu/src/MenuDivider.js +11 -0
- package/es/menu/src/MenuOption.d.ts +11 -2
- package/es/menu/src/MenuOptionContent.d.ts +7 -2
- package/es/menu/src/Submenu.d.ts +21 -17
- 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 +33 -12
- package/es/modal/src/BodyWrapper.js +6 -0
- package/es/modal/src/Modal.d.ts +185 -65
- package/es/modal/src/Modal.js +5 -1
- package/es/modal/src/interface.d.ts +1 -0
- package/es/modal/src/presetProps.d.ts +1 -1
- package/es/modal/styles/light.d.ts +14 -5
- package/es/notification/src/NotificationContainer.d.ts +3 -0
- package/es/pagination/index.d.ts +1 -1
- package/es/pagination/src/Pagination.d.ts +20 -12
- package/es/pagination/src/Pagination.js +16 -6
- package/es/pagination/src/interface.d.ts +2 -0
- package/es/popconfirm/src/Popconfirm.d.ts +145 -52
- package/es/popconfirm/src/PopconfirmPanel.d.ts +2 -2
- 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 +9 -2
- package/es/select/src/Select.js +20 -14
- 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 +14 -17
- package/es/tabs/src/TabPane.d.ts +1 -0
- package/es/tabs/src/TabPane.js +2 -1
- package/es/tabs/src/Tabs.d.ts +4 -0
- package/es/tabs/src/Tabs.js +65 -21
- package/es/tabs/src/interface.d.ts +3 -2
- 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/src/TimePicker.js +3 -0
- 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 +145 -52
- 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 +13 -9
- package/es/tree/src/Tree.js +59 -23
- package/es/tree/src/TreeNode.js +4 -4
- package/es/tree/src/TreeNodeCheckbox.d.ts +3 -0
- package/es/tree/src/TreeNodeSwitcher.d.ts +1 -1
- package/es/tree/src/interface.d.ts +1 -1
- package/es/tree/src/utils.d.ts +1 -1
- package/es/tree/src/utils.js +4 -4
- package/es/tree-select/src/TreeSelect.d.ts +5 -2
- package/es/upload/src/Upload.d.ts +146 -52
- package/es/upload/src/Upload.js +6 -10
- package/es/upload/src/UploadFile.d.ts +18 -6
- package/es/upload/src/UploadFile.js +1 -1
- package/es/upload/src/UploadProgress.d.ts +17 -5
- package/es/upload/src/UploadTrigger.js +2 -2
- package/es/upload/src/interface.d.ts +2 -1
- 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 +4 -1
- package/lib/_internal/selection/src/Selection.d.ts +4 -1
- package/lib/_internal/suffix/src/Suffix.d.ts +5 -2
- 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/alert/src/Alert.js +3 -3
- 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 +129 -56
- package/lib/button/src/interface.d.ts +1 -1
- package/lib/button/src/styles/button.cssr.js +1 -0
- 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/Cascader.js +2 -2
- 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 +8 -9
- 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 +328 -127
- package/lib/date-picker/src/DatePicker.js +7 -17
- package/lib/date-picker/src/config.d.ts +9 -0
- package/lib/date-picker/src/config.js +9 -1
- package/lib/date-picker/src/panel/date.d.ts +51 -19
- package/lib/date-picker/src/panel/daterange.d.ts +49 -17
- package/lib/date-picker/src/panel/datetime.d.ts +51 -19
- package/lib/date-picker/src/panel/datetimerange.d.ts +49 -17
- package/lib/date-picker/src/panel/month.d.ts +86 -60
- package/lib/date-picker/src/panel/month.js +9 -6
- package/lib/date-picker/src/panel/use-calendar.d.ts +59 -27
- package/lib/date-picker/src/panel/use-calendar.js +6 -1
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +47 -15
- package/lib/date-picker/src/panel/use-panel-common.d.ts +47 -15
- package/lib/date-picker/styles/_common.d.ts +2 -0
- package/lib/date-picker/styles/_common.js +3 -1
- package/lib/date-picker/styles/light.d.ts +32 -10
- package/lib/dialog/src/Dialog.d.ts +104 -38
- package/lib/dialog/src/DialogEnvironment.d.ts +2 -2
- package/lib/dialog/src/DialogProvider.d.ts +2 -2
- 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/form/src/FormItemGridItem.d.ts +2 -2
- package/lib/global-style/src/GlobalStyle.js +2 -0
- package/lib/grid/src/Grid.js +1 -0
- package/lib/grid/src/GridItem.d.ts +2 -2
- package/lib/image/src/ImagePreview.js +2 -1
- package/lib/image/src/icons.d.ts +1 -0
- package/lib/image/src/icons.js +3 -1
- package/lib/input/src/Input.d.ts +4 -0
- package/lib/input/src/Input.js +9 -3
- 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/locales/common/deDE.d.ts +3 -0
- package/lib/locales/common/deDE.js +95 -0
- package/lib/locales/common/nbNO.d.ts +3 -0
- package/lib/locales/common/nbNO.js +95 -0
- package/lib/locales/date/deDE.d.ts +3 -0
- package/lib/locales/date/deDE.js +11 -0
- package/lib/locales/date/nbNO.d.ts +3 -0
- package/lib/locales/date/nbNO.js +11 -0
- package/lib/locales/index.d.ts +6 -0
- package/lib/locales/index.js +11 -1
- package/lib/locales/utils/index.d.ts +8 -0
- package/lib/locales/utils/index.js +8 -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 +32 -8
- package/lib/menu/src/Menu.js +31 -9
- package/lib/menu/src/MenuDivider.d.ts +2 -0
- package/lib/menu/src/MenuDivider.js +13 -0
- package/lib/menu/src/MenuOption.d.ts +11 -2
- package/lib/menu/src/MenuOptionContent.d.ts +7 -2
- package/lib/menu/src/Submenu.d.ts +21 -17
- 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 +33 -12
- package/lib/modal/src/BodyWrapper.js +6 -0
- package/lib/modal/src/Modal.d.ts +185 -65
- package/lib/modal/src/Modal.js +5 -1
- package/lib/modal/src/interface.d.ts +1 -0
- package/lib/modal/src/presetProps.d.ts +1 -1
- package/lib/modal/styles/light.d.ts +14 -5
- package/lib/notification/src/NotificationContainer.d.ts +3 -0
- package/lib/pagination/index.d.ts +1 -1
- package/lib/pagination/src/Pagination.d.ts +20 -12
- package/lib/pagination/src/Pagination.js +16 -6
- package/lib/pagination/src/interface.d.ts +2 -0
- package/lib/popconfirm/src/Popconfirm.d.ts +145 -52
- package/lib/popconfirm/src/PopconfirmPanel.d.ts +2 -2
- 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 +9 -2
- package/lib/select/src/Select.js +20 -14
- 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 +13 -16
- package/lib/tabs/src/TabPane.d.ts +1 -0
- package/lib/tabs/src/TabPane.js +2 -1
- package/lib/tabs/src/Tabs.d.ts +4 -0
- package/lib/tabs/src/Tabs.js +64 -20
- package/lib/tabs/src/interface.d.ts +3 -2
- 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/src/TimePicker.js +3 -0
- 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 +145 -52
- 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 +13 -9
- package/lib/tree/src/Tree.js +58 -22
- package/lib/tree/src/TreeNode.js +4 -4
- package/lib/tree/src/TreeNodeCheckbox.d.ts +3 -0
- package/lib/tree/src/TreeNodeSwitcher.d.ts +1 -1
- package/lib/tree/src/interface.d.ts +1 -1
- package/lib/tree/src/utils.d.ts +1 -1
- package/lib/tree/src/utils.js +4 -4
- package/lib/tree-select/src/TreeSelect.d.ts +5 -2
- package/lib/upload/src/Upload.d.ts +146 -52
- package/lib/upload/src/Upload.js +6 -10
- package/lib/upload/src/UploadFile.d.ts +18 -6
- package/lib/upload/src/UploadFile.js +1 -1
- package/lib/upload/src/UploadProgress.d.ts +17 -5
- package/lib/upload/src/UploadTrigger.js +2 -2
- package/lib/upload/src/interface.d.ts +2 -1
- 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 +5 -5
- package/web-types.json +182 -9
|
@@ -100,20 +100,30 @@ declare const timePickerProps: {
|
|
|
100
100
|
fontSizeMedium: string;
|
|
101
101
|
fontSizeLarge: string;
|
|
102
102
|
opacityDisabled: string;
|
|
103
|
+
colorOpacitySecondary: number;
|
|
104
|
+
colorOpacitySecondaryHover: number;
|
|
105
|
+
colorOpacitySecondaryPressed: number;
|
|
106
|
+
colorSecondary: string;
|
|
107
|
+
colorSecondaryHover: string;
|
|
108
|
+
colorSecondaryPressed: string;
|
|
109
|
+
colorTertiary: string;
|
|
110
|
+
colorTertiaryHover: string;
|
|
111
|
+
colorTertiaryPressed: string;
|
|
112
|
+
colorQuaternary: string;
|
|
113
|
+
colorQuaternaryHover: string;
|
|
114
|
+
colorQuaternaryPressed: string;
|
|
103
115
|
color: string;
|
|
104
116
|
colorHover: string;
|
|
105
117
|
colorPressed: string;
|
|
106
118
|
colorFocus: string;
|
|
107
119
|
colorDisabled: string;
|
|
108
120
|
textColor: string;
|
|
121
|
+
textColorTertiary: string;
|
|
109
122
|
textColorHover: string;
|
|
110
123
|
textColorPressed: string;
|
|
111
124
|
textColorFocus: string;
|
|
112
125
|
textColorDisabled: string;
|
|
113
126
|
textColorText: string;
|
|
114
|
-
textColorTextDepth1: string;
|
|
115
|
-
textColorTextDepth2: string;
|
|
116
|
-
textColorTextDepth3: string;
|
|
117
127
|
textColorTextHover: string;
|
|
118
128
|
textColorTextPressed: string;
|
|
119
129
|
textColorTextFocus: string;
|
|
@@ -260,9 +270,8 @@ declare const timePickerProps: {
|
|
|
260
270
|
borderDisabledError: string;
|
|
261
271
|
rippleColorError: string;
|
|
262
272
|
waveOpacity: string;
|
|
263
|
-
fontWeightText: string;
|
|
264
273
|
fontWeight: string;
|
|
265
|
-
|
|
274
|
+
fontWeightStrong: string;
|
|
266
275
|
paddingTiny: string;
|
|
267
276
|
paddingSmall: string;
|
|
268
277
|
paddingMedium: string;
|
|
@@ -377,20 +386,30 @@ declare const timePickerProps: {
|
|
|
377
386
|
fontSizeMedium: string;
|
|
378
387
|
fontSizeLarge: string;
|
|
379
388
|
opacityDisabled: string;
|
|
389
|
+
colorOpacitySecondary: number;
|
|
390
|
+
colorOpacitySecondaryHover: number;
|
|
391
|
+
colorOpacitySecondaryPressed: number;
|
|
392
|
+
colorSecondary: string;
|
|
393
|
+
colorSecondaryHover: string;
|
|
394
|
+
colorSecondaryPressed: string;
|
|
395
|
+
colorTertiary: string;
|
|
396
|
+
colorTertiaryHover: string;
|
|
397
|
+
colorTertiaryPressed: string;
|
|
398
|
+
colorQuaternary: string;
|
|
399
|
+
colorQuaternaryHover: string;
|
|
400
|
+
colorQuaternaryPressed: string;
|
|
380
401
|
color: string;
|
|
381
402
|
colorHover: string;
|
|
382
403
|
colorPressed: string;
|
|
383
404
|
colorFocus: string;
|
|
384
405
|
colorDisabled: string;
|
|
385
406
|
textColor: string;
|
|
407
|
+
textColorTertiary: string;
|
|
386
408
|
textColorHover: string;
|
|
387
409
|
textColorPressed: string;
|
|
388
410
|
textColorFocus: string;
|
|
389
411
|
textColorDisabled: string;
|
|
390
412
|
textColorText: string;
|
|
391
|
-
textColorTextDepth1: string;
|
|
392
|
-
textColorTextDepth2: string;
|
|
393
|
-
textColorTextDepth3: string;
|
|
394
413
|
textColorTextHover: string;
|
|
395
414
|
textColorTextPressed: string;
|
|
396
415
|
textColorTextFocus: string;
|
|
@@ -537,9 +556,8 @@ declare const timePickerProps: {
|
|
|
537
556
|
borderDisabledError: string;
|
|
538
557
|
rippleColorError: string;
|
|
539
558
|
waveOpacity: string;
|
|
540
|
-
fontWeightText: string;
|
|
541
559
|
fontWeight: string;
|
|
542
|
-
|
|
560
|
+
fontWeightStrong: string;
|
|
543
561
|
paddingTiny: string;
|
|
544
562
|
paddingSmall: string;
|
|
545
563
|
paddingMedium: string;
|
|
@@ -654,20 +672,30 @@ declare const timePickerProps: {
|
|
|
654
672
|
fontSizeMedium: string;
|
|
655
673
|
fontSizeLarge: string;
|
|
656
674
|
opacityDisabled: string;
|
|
675
|
+
colorOpacitySecondary: number;
|
|
676
|
+
colorOpacitySecondaryHover: number;
|
|
677
|
+
colorOpacitySecondaryPressed: number;
|
|
678
|
+
colorSecondary: string;
|
|
679
|
+
colorSecondaryHover: string;
|
|
680
|
+
colorSecondaryPressed: string;
|
|
681
|
+
colorTertiary: string;
|
|
682
|
+
colorTertiaryHover: string;
|
|
683
|
+
colorTertiaryPressed: string;
|
|
684
|
+
colorQuaternary: string;
|
|
685
|
+
colorQuaternaryHover: string;
|
|
686
|
+
colorQuaternaryPressed: string;
|
|
657
687
|
color: string;
|
|
658
688
|
colorHover: string;
|
|
659
689
|
colorPressed: string;
|
|
660
690
|
colorFocus: string;
|
|
661
691
|
colorDisabled: string;
|
|
662
692
|
textColor: string;
|
|
693
|
+
textColorTertiary: string;
|
|
663
694
|
textColorHover: string;
|
|
664
695
|
textColorPressed: string;
|
|
665
696
|
textColorFocus: string;
|
|
666
697
|
textColorDisabled: string;
|
|
667
698
|
textColorText: string;
|
|
668
|
-
textColorTextDepth1: string;
|
|
669
|
-
textColorTextDepth2: string;
|
|
670
|
-
textColorTextDepth3: string;
|
|
671
699
|
textColorTextHover: string;
|
|
672
700
|
textColorTextPressed: string;
|
|
673
701
|
textColorTextFocus: string;
|
|
@@ -814,9 +842,8 @@ declare const timePickerProps: {
|
|
|
814
842
|
borderDisabledError: string;
|
|
815
843
|
rippleColorError: string;
|
|
816
844
|
waveOpacity: string;
|
|
817
|
-
fontWeightText: string;
|
|
818
845
|
fontWeight: string;
|
|
819
|
-
|
|
846
|
+
fontWeightStrong: string;
|
|
820
847
|
paddingTiny: string;
|
|
821
848
|
paddingSmall: string;
|
|
822
849
|
paddingMedium: string;
|
|
@@ -997,20 +1024,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
997
1024
|
fontSizeMedium: string;
|
|
998
1025
|
fontSizeLarge: string;
|
|
999
1026
|
opacityDisabled: string;
|
|
1027
|
+
colorOpacitySecondary: number;
|
|
1028
|
+
colorOpacitySecondaryHover: number;
|
|
1029
|
+
colorOpacitySecondaryPressed: number;
|
|
1030
|
+
colorSecondary: string;
|
|
1031
|
+
colorSecondaryHover: string;
|
|
1032
|
+
colorSecondaryPressed: string;
|
|
1033
|
+
colorTertiary: string;
|
|
1034
|
+
colorTertiaryHover: string;
|
|
1035
|
+
colorTertiaryPressed: string;
|
|
1036
|
+
colorQuaternary: string;
|
|
1037
|
+
colorQuaternaryHover: string;
|
|
1038
|
+
colorQuaternaryPressed: string;
|
|
1000
1039
|
color: string;
|
|
1001
1040
|
colorHover: string;
|
|
1002
1041
|
colorPressed: string;
|
|
1003
1042
|
colorFocus: string;
|
|
1004
1043
|
colorDisabled: string;
|
|
1005
1044
|
textColor: string;
|
|
1045
|
+
textColorTertiary: string;
|
|
1006
1046
|
textColorHover: string;
|
|
1007
1047
|
textColorPressed: string;
|
|
1008
1048
|
textColorFocus: string;
|
|
1009
1049
|
textColorDisabled: string;
|
|
1010
1050
|
textColorText: string;
|
|
1011
|
-
textColorTextDepth1: string;
|
|
1012
|
-
textColorTextDepth2: string;
|
|
1013
|
-
textColorTextDepth3: string;
|
|
1014
1051
|
textColorTextHover: string;
|
|
1015
1052
|
textColorTextPressed: string;
|
|
1016
1053
|
textColorTextFocus: string;
|
|
@@ -1157,9 +1194,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1157
1194
|
borderDisabledError: string;
|
|
1158
1195
|
rippleColorError: string;
|
|
1159
1196
|
waveOpacity: string;
|
|
1160
|
-
fontWeightText: string;
|
|
1161
1197
|
fontWeight: string;
|
|
1162
|
-
|
|
1198
|
+
fontWeightStrong: string;
|
|
1163
1199
|
paddingTiny: string;
|
|
1164
1200
|
paddingSmall: string;
|
|
1165
1201
|
paddingMedium: string;
|
|
@@ -1274,20 +1310,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1274
1310
|
fontSizeMedium: string;
|
|
1275
1311
|
fontSizeLarge: string;
|
|
1276
1312
|
opacityDisabled: string;
|
|
1313
|
+
colorOpacitySecondary: number;
|
|
1314
|
+
colorOpacitySecondaryHover: number;
|
|
1315
|
+
colorOpacitySecondaryPressed: number;
|
|
1316
|
+
colorSecondary: string;
|
|
1317
|
+
colorSecondaryHover: string;
|
|
1318
|
+
colorSecondaryPressed: string;
|
|
1319
|
+
colorTertiary: string;
|
|
1320
|
+
colorTertiaryHover: string;
|
|
1321
|
+
colorTertiaryPressed: string;
|
|
1322
|
+
colorQuaternary: string;
|
|
1323
|
+
colorQuaternaryHover: string;
|
|
1324
|
+
colorQuaternaryPressed: string;
|
|
1277
1325
|
color: string;
|
|
1278
1326
|
colorHover: string;
|
|
1279
1327
|
colorPressed: string;
|
|
1280
1328
|
colorFocus: string;
|
|
1281
1329
|
colorDisabled: string;
|
|
1282
1330
|
textColor: string;
|
|
1331
|
+
textColorTertiary: string;
|
|
1283
1332
|
textColorHover: string;
|
|
1284
1333
|
textColorPressed: string;
|
|
1285
1334
|
textColorFocus: string;
|
|
1286
1335
|
textColorDisabled: string;
|
|
1287
1336
|
textColorText: string;
|
|
1288
|
-
textColorTextDepth1: string;
|
|
1289
|
-
textColorTextDepth2: string;
|
|
1290
|
-
textColorTextDepth3: string;
|
|
1291
1337
|
textColorTextHover: string;
|
|
1292
1338
|
textColorTextPressed: string;
|
|
1293
1339
|
textColorTextFocus: string;
|
|
@@ -1434,9 +1480,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1434
1480
|
borderDisabledError: string;
|
|
1435
1481
|
rippleColorError: string;
|
|
1436
1482
|
waveOpacity: string;
|
|
1437
|
-
fontWeightText: string;
|
|
1438
1483
|
fontWeight: string;
|
|
1439
|
-
|
|
1484
|
+
fontWeightStrong: string;
|
|
1440
1485
|
paddingTiny: string;
|
|
1441
1486
|
paddingSmall: string;
|
|
1442
1487
|
paddingMedium: string;
|
|
@@ -1551,20 +1596,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1551
1596
|
fontSizeMedium: string;
|
|
1552
1597
|
fontSizeLarge: string;
|
|
1553
1598
|
opacityDisabled: string;
|
|
1599
|
+
colorOpacitySecondary: number;
|
|
1600
|
+
colorOpacitySecondaryHover: number;
|
|
1601
|
+
colorOpacitySecondaryPressed: number;
|
|
1602
|
+
colorSecondary: string;
|
|
1603
|
+
colorSecondaryHover: string;
|
|
1604
|
+
colorSecondaryPressed: string;
|
|
1605
|
+
colorTertiary: string;
|
|
1606
|
+
colorTertiaryHover: string;
|
|
1607
|
+
colorTertiaryPressed: string;
|
|
1608
|
+
colorQuaternary: string;
|
|
1609
|
+
colorQuaternaryHover: string;
|
|
1610
|
+
colorQuaternaryPressed: string;
|
|
1554
1611
|
color: string;
|
|
1555
1612
|
colorHover: string;
|
|
1556
1613
|
colorPressed: string;
|
|
1557
1614
|
colorFocus: string;
|
|
1558
1615
|
colorDisabled: string;
|
|
1559
1616
|
textColor: string;
|
|
1617
|
+
textColorTertiary: string;
|
|
1560
1618
|
textColorHover: string;
|
|
1561
1619
|
textColorPressed: string;
|
|
1562
1620
|
textColorFocus: string;
|
|
1563
1621
|
textColorDisabled: string;
|
|
1564
1622
|
textColorText: string;
|
|
1565
|
-
textColorTextDepth1: string;
|
|
1566
|
-
textColorTextDepth2: string;
|
|
1567
|
-
textColorTextDepth3: string;
|
|
1568
1623
|
textColorTextHover: string;
|
|
1569
1624
|
textColorTextPressed: string;
|
|
1570
1625
|
textColorTextFocus: string;
|
|
@@ -1711,9 +1766,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1711
1766
|
borderDisabledError: string;
|
|
1712
1767
|
rippleColorError: string;
|
|
1713
1768
|
waveOpacity: string;
|
|
1714
|
-
fontWeightText: string;
|
|
1715
1769
|
fontWeight: string;
|
|
1716
|
-
|
|
1770
|
+
fontWeightStrong: string;
|
|
1717
1771
|
paddingTiny: string;
|
|
1718
1772
|
paddingSmall: string;
|
|
1719
1773
|
paddingMedium: string;
|
|
@@ -1807,6 +1861,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1807
1861
|
isCompositing: boolean;
|
|
1808
1862
|
blur: () => void;
|
|
1809
1863
|
focus: () => void;
|
|
1864
|
+
select: () => void;
|
|
1810
1865
|
activate: () => void;
|
|
1811
1866
|
deactivate: () => void;
|
|
1812
1867
|
} | null>;
|
|
@@ -1954,6 +2009,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1954
2009
|
pressedColor: string;
|
|
1955
2010
|
opacityDisabled: string;
|
|
1956
2011
|
inputColorDisabled: string;
|
|
2012
|
+
buttonColor2: string;
|
|
2013
|
+
buttonColor2Hover: string;
|
|
2014
|
+
buttonColor2Pressed: string;
|
|
1957
2015
|
boxShadow1: string;
|
|
1958
2016
|
boxShadow2: string;
|
|
1959
2017
|
boxShadow3: string;
|
|
@@ -2017,20 +2075,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2017
2075
|
fontSizeMedium: string;
|
|
2018
2076
|
fontSizeLarge: string;
|
|
2019
2077
|
opacityDisabled: string;
|
|
2078
|
+
colorOpacitySecondary: number;
|
|
2079
|
+
colorOpacitySecondaryHover: number;
|
|
2080
|
+
colorOpacitySecondaryPressed: number;
|
|
2081
|
+
colorSecondary: string;
|
|
2082
|
+
colorSecondaryHover: string;
|
|
2083
|
+
colorSecondaryPressed: string;
|
|
2084
|
+
colorTertiary: string;
|
|
2085
|
+
colorTertiaryHover: string;
|
|
2086
|
+
colorTertiaryPressed: string;
|
|
2087
|
+
colorQuaternary: string;
|
|
2088
|
+
colorQuaternaryHover: string;
|
|
2089
|
+
colorQuaternaryPressed: string;
|
|
2020
2090
|
color: string;
|
|
2021
2091
|
colorHover: string;
|
|
2022
2092
|
colorPressed: string;
|
|
2023
2093
|
colorFocus: string;
|
|
2024
2094
|
colorDisabled: string;
|
|
2025
2095
|
textColor: string;
|
|
2096
|
+
textColorTertiary: string;
|
|
2026
2097
|
textColorHover: string;
|
|
2027
2098
|
textColorPressed: string;
|
|
2028
2099
|
textColorFocus: string;
|
|
2029
2100
|
textColorDisabled: string;
|
|
2030
2101
|
textColorText: string;
|
|
2031
|
-
textColorTextDepth1: string;
|
|
2032
|
-
textColorTextDepth2: string;
|
|
2033
|
-
textColorTextDepth3: string;
|
|
2034
2102
|
textColorTextHover: string;
|
|
2035
2103
|
textColorTextPressed: string;
|
|
2036
2104
|
textColorTextFocus: string;
|
|
@@ -2177,9 +2245,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2177
2245
|
borderDisabledError: string;
|
|
2178
2246
|
rippleColorError: string;
|
|
2179
2247
|
waveOpacity: string;
|
|
2180
|
-
fontWeightText: string;
|
|
2181
2248
|
fontWeight: string;
|
|
2182
|
-
|
|
2249
|
+
fontWeightStrong: string;
|
|
2183
2250
|
paddingTiny: string;
|
|
2184
2251
|
paddingSmall: string;
|
|
2185
2252
|
paddingMedium: string;
|
|
@@ -2383,20 +2450,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2383
2450
|
fontSizeMedium: string;
|
|
2384
2451
|
fontSizeLarge: string;
|
|
2385
2452
|
opacityDisabled: string;
|
|
2453
|
+
colorOpacitySecondary: number;
|
|
2454
|
+
colorOpacitySecondaryHover: number;
|
|
2455
|
+
colorOpacitySecondaryPressed: number;
|
|
2456
|
+
colorSecondary: string;
|
|
2457
|
+
colorSecondaryHover: string;
|
|
2458
|
+
colorSecondaryPressed: string;
|
|
2459
|
+
colorTertiary: string;
|
|
2460
|
+
colorTertiaryHover: string;
|
|
2461
|
+
colorTertiaryPressed: string;
|
|
2462
|
+
colorQuaternary: string;
|
|
2463
|
+
colorQuaternaryHover: string;
|
|
2464
|
+
colorQuaternaryPressed: string;
|
|
2386
2465
|
color: string;
|
|
2387
2466
|
colorHover: string;
|
|
2388
2467
|
colorPressed: string;
|
|
2389
2468
|
colorFocus: string;
|
|
2390
2469
|
colorDisabled: string;
|
|
2391
2470
|
textColor: string;
|
|
2471
|
+
textColorTertiary: string;
|
|
2392
2472
|
textColorHover: string;
|
|
2393
2473
|
textColorPressed: string;
|
|
2394
2474
|
textColorFocus: string;
|
|
2395
2475
|
textColorDisabled: string;
|
|
2396
2476
|
textColorText: string;
|
|
2397
|
-
textColorTextDepth1: string;
|
|
2398
|
-
textColorTextDepth2: string;
|
|
2399
|
-
textColorTextDepth3: string;
|
|
2400
2477
|
textColorTextHover: string;
|
|
2401
2478
|
textColorTextPressed: string;
|
|
2402
2479
|
textColorTextFocus: string;
|
|
@@ -2543,9 +2620,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2543
2620
|
borderDisabledError: string;
|
|
2544
2621
|
rippleColorError: string;
|
|
2545
2622
|
waveOpacity: string;
|
|
2546
|
-
fontWeightText: string;
|
|
2547
2623
|
fontWeight: string;
|
|
2548
|
-
|
|
2624
|
+
fontWeightStrong: string;
|
|
2549
2625
|
paddingTiny: string;
|
|
2550
2626
|
paddingSmall: string;
|
|
2551
2627
|
paddingMedium: string;
|
|
@@ -2660,20 +2736,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2660
2736
|
fontSizeMedium: string;
|
|
2661
2737
|
fontSizeLarge: string;
|
|
2662
2738
|
opacityDisabled: string;
|
|
2739
|
+
colorOpacitySecondary: number;
|
|
2740
|
+
colorOpacitySecondaryHover: number;
|
|
2741
|
+
colorOpacitySecondaryPressed: number;
|
|
2742
|
+
colorSecondary: string;
|
|
2743
|
+
colorSecondaryHover: string;
|
|
2744
|
+
colorSecondaryPressed: string;
|
|
2745
|
+
colorTertiary: string;
|
|
2746
|
+
colorTertiaryHover: string;
|
|
2747
|
+
colorTertiaryPressed: string;
|
|
2748
|
+
colorQuaternary: string;
|
|
2749
|
+
colorQuaternaryHover: string;
|
|
2750
|
+
colorQuaternaryPressed: string;
|
|
2663
2751
|
color: string;
|
|
2664
2752
|
colorHover: string;
|
|
2665
2753
|
colorPressed: string;
|
|
2666
2754
|
colorFocus: string;
|
|
2667
2755
|
colorDisabled: string;
|
|
2668
2756
|
textColor: string;
|
|
2757
|
+
textColorTertiary: string;
|
|
2669
2758
|
textColorHover: string;
|
|
2670
2759
|
textColorPressed: string;
|
|
2671
2760
|
textColorFocus: string;
|
|
2672
2761
|
textColorDisabled: string;
|
|
2673
2762
|
textColorText: string;
|
|
2674
|
-
textColorTextDepth1: string;
|
|
2675
|
-
textColorTextDepth2: string;
|
|
2676
|
-
textColorTextDepth3: string;
|
|
2677
2763
|
textColorTextHover: string;
|
|
2678
2764
|
textColorTextPressed: string;
|
|
2679
2765
|
textColorTextFocus: string;
|
|
@@ -2820,9 +2906,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2820
2906
|
borderDisabledError: string;
|
|
2821
2907
|
rippleColorError: string;
|
|
2822
2908
|
waveOpacity: string;
|
|
2823
|
-
fontWeightText: string;
|
|
2824
2909
|
fontWeight: string;
|
|
2825
|
-
|
|
2910
|
+
fontWeightStrong: string;
|
|
2826
2911
|
paddingTiny: string;
|
|
2827
2912
|
paddingSmall: string;
|
|
2828
2913
|
paddingMedium: string;
|
|
@@ -2937,20 +3022,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2937
3022
|
fontSizeMedium: string;
|
|
2938
3023
|
fontSizeLarge: string;
|
|
2939
3024
|
opacityDisabled: string;
|
|
3025
|
+
colorOpacitySecondary: number;
|
|
3026
|
+
colorOpacitySecondaryHover: number;
|
|
3027
|
+
colorOpacitySecondaryPressed: number;
|
|
3028
|
+
colorSecondary: string;
|
|
3029
|
+
colorSecondaryHover: string;
|
|
3030
|
+
colorSecondaryPressed: string;
|
|
3031
|
+
colorTertiary: string;
|
|
3032
|
+
colorTertiaryHover: string;
|
|
3033
|
+
colorTertiaryPressed: string;
|
|
3034
|
+
colorQuaternary: string;
|
|
3035
|
+
colorQuaternaryHover: string;
|
|
3036
|
+
colorQuaternaryPressed: string;
|
|
2940
3037
|
color: string;
|
|
2941
3038
|
colorHover: string;
|
|
2942
3039
|
colorPressed: string;
|
|
2943
3040
|
colorFocus: string;
|
|
2944
3041
|
colorDisabled: string;
|
|
2945
3042
|
textColor: string;
|
|
3043
|
+
textColorTertiary: string;
|
|
2946
3044
|
textColorHover: string;
|
|
2947
3045
|
textColorPressed: string;
|
|
2948
3046
|
textColorFocus: string;
|
|
2949
3047
|
textColorDisabled: string;
|
|
2950
3048
|
textColorText: string;
|
|
2951
|
-
textColorTextDepth1: string;
|
|
2952
|
-
textColorTextDepth2: string;
|
|
2953
|
-
textColorTextDepth3: string;
|
|
2954
3049
|
textColorTextHover: string;
|
|
2955
3050
|
textColorTextPressed: string;
|
|
2956
3051
|
textColorTextFocus: string;
|
|
@@ -3097,9 +3192,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3097
3192
|
borderDisabledError: string;
|
|
3098
3193
|
rippleColorError: string;
|
|
3099
3194
|
waveOpacity: string;
|
|
3100
|
-
fontWeightText: string;
|
|
3101
3195
|
fontWeight: string;
|
|
3102
|
-
|
|
3196
|
+
fontWeightStrong: string;
|
|
3103
3197
|
paddingTiny: string;
|
|
3104
3198
|
paddingSmall: string;
|
|
3105
3199
|
paddingMedium: string;
|
|
@@ -52,20 +52,30 @@ declare const timePickerLight: import("../../_mixins").Theme<"TimePicker", {
|
|
|
52
52
|
fontSizeMedium: string;
|
|
53
53
|
fontSizeLarge: string;
|
|
54
54
|
opacityDisabled: string;
|
|
55
|
+
colorOpacitySecondary: number;
|
|
56
|
+
colorOpacitySecondaryHover: number;
|
|
57
|
+
colorOpacitySecondaryPressed: number;
|
|
58
|
+
colorSecondary: string;
|
|
59
|
+
colorSecondaryHover: string;
|
|
60
|
+
colorSecondaryPressed: string;
|
|
61
|
+
colorTertiary: string;
|
|
62
|
+
colorTertiaryHover: string;
|
|
63
|
+
colorTertiaryPressed: string;
|
|
64
|
+
colorQuaternary: string;
|
|
65
|
+
colorQuaternaryHover: string;
|
|
66
|
+
colorQuaternaryPressed: string;
|
|
55
67
|
color: string;
|
|
56
68
|
colorHover: string;
|
|
57
69
|
colorPressed: string;
|
|
58
70
|
colorFocus: string;
|
|
59
71
|
colorDisabled: string;
|
|
60
72
|
textColor: string;
|
|
73
|
+
textColorTertiary: string;
|
|
61
74
|
textColorHover: string;
|
|
62
75
|
textColorPressed: string;
|
|
63
76
|
textColorFocus: string;
|
|
64
77
|
textColorDisabled: string;
|
|
65
78
|
textColorText: string;
|
|
66
|
-
textColorTextDepth1: string;
|
|
67
|
-
textColorTextDepth2: string;
|
|
68
|
-
textColorTextDepth3: string;
|
|
69
79
|
textColorTextHover: string;
|
|
70
80
|
textColorTextPressed: string;
|
|
71
81
|
textColorTextFocus: string;
|
|
@@ -212,9 +222,8 @@ declare const timePickerLight: import("../../_mixins").Theme<"TimePicker", {
|
|
|
212
222
|
borderDisabledError: string;
|
|
213
223
|
rippleColorError: string;
|
|
214
224
|
waveOpacity: string;
|
|
215
|
-
fontWeightText: string;
|
|
216
225
|
fontWeight: string;
|
|
217
|
-
|
|
226
|
+
fontWeightStrong: string;
|
|
218
227
|
paddingTiny: string;
|
|
219
228
|
paddingSmall: string;
|
|
220
229
|
paddingMedium: string;
|
|
@@ -361,6 +361,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
361
361
|
pressedColor: string;
|
|
362
362
|
opacityDisabled: string;
|
|
363
363
|
inputColorDisabled: string;
|
|
364
|
+
buttonColor2: string;
|
|
365
|
+
buttonColor2Hover: string;
|
|
366
|
+
buttonColor2Pressed: string;
|
|
364
367
|
boxShadow1: string;
|
|
365
368
|
boxShadow2: string;
|
|
366
369
|
boxShadow3: string;
|