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
|
@@ -11,14 +11,8 @@ declare const datePickerProps: {
|
|
|
11
11
|
readonly type: PropType<boolean | undefined>;
|
|
12
12
|
readonly default: undefined;
|
|
13
13
|
};
|
|
14
|
-
readonly clearable:
|
|
15
|
-
|
|
16
|
-
readonly default: false;
|
|
17
|
-
};
|
|
18
|
-
readonly updateValueOnClose: {
|
|
19
|
-
readonly type: BooleanConstructor;
|
|
20
|
-
readonly default: false;
|
|
21
|
-
};
|
|
14
|
+
readonly clearable: BooleanConstructor;
|
|
15
|
+
readonly updateValueOnClose: BooleanConstructor;
|
|
22
16
|
readonly defaultValue: {
|
|
23
17
|
readonly type: PropType<Value | null>;
|
|
24
18
|
readonly default: null;
|
|
@@ -34,7 +28,7 @@ declare const datePickerProps: {
|
|
|
34
28
|
readonly value: PropType<Value | null>;
|
|
35
29
|
readonly size: PropType<"small" | "medium" | "large">;
|
|
36
30
|
readonly type: {
|
|
37
|
-
readonly type: PropType<"date" | "datetime" | "month" | "daterange" | "datetimerange">;
|
|
31
|
+
readonly type: PropType<"date" | "datetime" | "month" | "year" | "daterange" | "datetimerange">;
|
|
38
32
|
readonly default: "date";
|
|
39
33
|
};
|
|
40
34
|
readonly separator: StringConstructor;
|
|
@@ -113,11 +107,13 @@ declare const datePickerProps: {
|
|
|
113
107
|
calendarLeftPaddingDaterange: string;
|
|
114
108
|
calendarLeftPaddingDatetimerange: string;
|
|
115
109
|
calendarLeftPaddingMonth: string;
|
|
110
|
+
calendarLeftPaddingYear: string;
|
|
116
111
|
calendarRightPaddingDate: string;
|
|
117
112
|
calendarRightPaddingDatetime: string;
|
|
118
113
|
calendarRightPaddingDaterange: string;
|
|
119
114
|
calendarRightPaddingDatetimerange: string;
|
|
120
115
|
calendarRightPaddingMonth: string;
|
|
116
|
+
calendarRightPaddingYear: string;
|
|
121
117
|
}, {
|
|
122
118
|
Input: import("../../_mixins").Theme<"Input", {
|
|
123
119
|
countTextColor: string;
|
|
@@ -193,20 +189,30 @@ declare const datePickerProps: {
|
|
|
193
189
|
fontSizeMedium: string;
|
|
194
190
|
fontSizeLarge: string;
|
|
195
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;
|
|
196
204
|
color: string;
|
|
197
205
|
colorHover: string;
|
|
198
206
|
colorPressed: string;
|
|
199
207
|
colorFocus: string;
|
|
200
208
|
colorDisabled: string;
|
|
201
209
|
textColor: string;
|
|
210
|
+
textColorTertiary: string;
|
|
202
211
|
textColorHover: string;
|
|
203
212
|
textColorPressed: string;
|
|
204
213
|
textColorFocus: string;
|
|
205
214
|
textColorDisabled: string;
|
|
206
215
|
textColorText: string;
|
|
207
|
-
textColorTextDepth1: string;
|
|
208
|
-
textColorTextDepth2: string;
|
|
209
|
-
textColorTextDepth3: string;
|
|
210
216
|
textColorTextHover: string;
|
|
211
217
|
textColorTextPressed: string;
|
|
212
218
|
textColorTextFocus: string;
|
|
@@ -353,9 +359,8 @@ declare const datePickerProps: {
|
|
|
353
359
|
borderDisabledError: string;
|
|
354
360
|
rippleColorError: string;
|
|
355
361
|
waveOpacity: string;
|
|
356
|
-
fontWeightText: string;
|
|
357
362
|
fontWeight: string;
|
|
358
|
-
|
|
363
|
+
fontWeightStrong: string;
|
|
359
364
|
paddingTiny: string;
|
|
360
365
|
paddingSmall: string;
|
|
361
366
|
paddingMedium: string;
|
|
@@ -409,20 +414,30 @@ declare const datePickerProps: {
|
|
|
409
414
|
fontSizeMedium: string;
|
|
410
415
|
fontSizeLarge: string;
|
|
411
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;
|
|
412
429
|
color: string;
|
|
413
430
|
colorHover: string;
|
|
414
431
|
colorPressed: string;
|
|
415
432
|
colorFocus: string;
|
|
416
433
|
colorDisabled: string;
|
|
417
434
|
textColor: string;
|
|
435
|
+
textColorTertiary: string;
|
|
418
436
|
textColorHover: string;
|
|
419
437
|
textColorPressed: string;
|
|
420
438
|
textColorFocus: string;
|
|
421
439
|
textColorDisabled: string;
|
|
422
440
|
textColorText: string;
|
|
423
|
-
textColorTextDepth1: string;
|
|
424
|
-
textColorTextDepth2: string;
|
|
425
|
-
textColorTextDepth3: string;
|
|
426
441
|
textColorTextHover: string;
|
|
427
442
|
textColorTextPressed: string;
|
|
428
443
|
textColorTextFocus: string;
|
|
@@ -569,9 +584,8 @@ declare const datePickerProps: {
|
|
|
569
584
|
borderDisabledError: string;
|
|
570
585
|
rippleColorError: string;
|
|
571
586
|
waveOpacity: string;
|
|
572
|
-
fontWeightText: string;
|
|
573
587
|
fontWeight: string;
|
|
574
|
-
|
|
588
|
+
fontWeightStrong: string;
|
|
575
589
|
paddingTiny: string;
|
|
576
590
|
paddingSmall: string;
|
|
577
591
|
paddingMedium: string;
|
|
@@ -702,11 +716,13 @@ declare const datePickerProps: {
|
|
|
702
716
|
calendarLeftPaddingDaterange: string;
|
|
703
717
|
calendarLeftPaddingDatetimerange: string;
|
|
704
718
|
calendarLeftPaddingMonth: string;
|
|
719
|
+
calendarLeftPaddingYear: string;
|
|
705
720
|
calendarRightPaddingDate: string;
|
|
706
721
|
calendarRightPaddingDatetime: string;
|
|
707
722
|
calendarRightPaddingDaterange: string;
|
|
708
723
|
calendarRightPaddingDatetimerange: string;
|
|
709
724
|
calendarRightPaddingMonth: string;
|
|
725
|
+
calendarRightPaddingYear: string;
|
|
710
726
|
}, {
|
|
711
727
|
Input: import("../../_mixins").Theme<"Input", {
|
|
712
728
|
countTextColor: string;
|
|
@@ -782,20 +798,30 @@ declare const datePickerProps: {
|
|
|
782
798
|
fontSizeMedium: string;
|
|
783
799
|
fontSizeLarge: string;
|
|
784
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;
|
|
785
813
|
color: string;
|
|
786
814
|
colorHover: string;
|
|
787
815
|
colorPressed: string;
|
|
788
816
|
colorFocus: string;
|
|
789
817
|
colorDisabled: string;
|
|
790
818
|
textColor: string;
|
|
819
|
+
textColorTertiary: string;
|
|
791
820
|
textColorHover: string;
|
|
792
821
|
textColorPressed: string;
|
|
793
822
|
textColorFocus: string;
|
|
794
823
|
textColorDisabled: string;
|
|
795
824
|
textColorText: string;
|
|
796
|
-
textColorTextDepth1: string;
|
|
797
|
-
textColorTextDepth2: string;
|
|
798
|
-
textColorTextDepth3: string;
|
|
799
825
|
textColorTextHover: string;
|
|
800
826
|
textColorTextPressed: string;
|
|
801
827
|
textColorTextFocus: string;
|
|
@@ -942,9 +968,8 @@ declare const datePickerProps: {
|
|
|
942
968
|
borderDisabledError: string;
|
|
943
969
|
rippleColorError: string;
|
|
944
970
|
waveOpacity: string;
|
|
945
|
-
fontWeightText: string;
|
|
946
971
|
fontWeight: string;
|
|
947
|
-
|
|
972
|
+
fontWeightStrong: string;
|
|
948
973
|
paddingTiny: string;
|
|
949
974
|
paddingSmall: string;
|
|
950
975
|
paddingMedium: string;
|
|
@@ -998,20 +1023,30 @@ declare const datePickerProps: {
|
|
|
998
1023
|
fontSizeMedium: string;
|
|
999
1024
|
fontSizeLarge: string;
|
|
1000
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;
|
|
1001
1038
|
color: string;
|
|
1002
1039
|
colorHover: string;
|
|
1003
1040
|
colorPressed: string;
|
|
1004
1041
|
colorFocus: string;
|
|
1005
1042
|
colorDisabled: string;
|
|
1006
1043
|
textColor: string;
|
|
1044
|
+
textColorTertiary: string;
|
|
1007
1045
|
textColorHover: string;
|
|
1008
1046
|
textColorPressed: string;
|
|
1009
1047
|
textColorFocus: string;
|
|
1010
1048
|
textColorDisabled: string;
|
|
1011
1049
|
textColorText: string;
|
|
1012
|
-
textColorTextDepth1: string;
|
|
1013
|
-
textColorTextDepth2: string;
|
|
1014
|
-
textColorTextDepth3: string;
|
|
1015
1050
|
textColorTextHover: string;
|
|
1016
1051
|
textColorTextPressed: string;
|
|
1017
1052
|
textColorTextFocus: string;
|
|
@@ -1158,9 +1193,8 @@ declare const datePickerProps: {
|
|
|
1158
1193
|
borderDisabledError: string;
|
|
1159
1194
|
rippleColorError: string;
|
|
1160
1195
|
waveOpacity: string;
|
|
1161
|
-
fontWeightText: string;
|
|
1162
1196
|
fontWeight: string;
|
|
1163
|
-
|
|
1197
|
+
fontWeightStrong: string;
|
|
1164
1198
|
paddingTiny: string;
|
|
1165
1199
|
paddingSmall: string;
|
|
1166
1200
|
paddingMedium: string;
|
|
@@ -1291,11 +1325,13 @@ declare const datePickerProps: {
|
|
|
1291
1325
|
calendarLeftPaddingDaterange: string;
|
|
1292
1326
|
calendarLeftPaddingDatetimerange: string;
|
|
1293
1327
|
calendarLeftPaddingMonth: string;
|
|
1328
|
+
calendarLeftPaddingYear: string;
|
|
1294
1329
|
calendarRightPaddingDate: string;
|
|
1295
1330
|
calendarRightPaddingDatetime: string;
|
|
1296
1331
|
calendarRightPaddingDaterange: string;
|
|
1297
1332
|
calendarRightPaddingDatetimerange: string;
|
|
1298
1333
|
calendarRightPaddingMonth: string;
|
|
1334
|
+
calendarRightPaddingYear: string;
|
|
1299
1335
|
}, {
|
|
1300
1336
|
Input: import("../../_mixins").Theme<"Input", {
|
|
1301
1337
|
countTextColor: 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;
|
|
@@ -1846,14 +1900,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1846
1900
|
readonly type: PropType<boolean | undefined>;
|
|
1847
1901
|
readonly default: undefined;
|
|
1848
1902
|
};
|
|
1849
|
-
readonly clearable:
|
|
1850
|
-
|
|
1851
|
-
readonly default: false;
|
|
1852
|
-
};
|
|
1853
|
-
readonly updateValueOnClose: {
|
|
1854
|
-
readonly type: BooleanConstructor;
|
|
1855
|
-
readonly default: false;
|
|
1856
|
-
};
|
|
1903
|
+
readonly clearable: BooleanConstructor;
|
|
1904
|
+
readonly updateValueOnClose: BooleanConstructor;
|
|
1857
1905
|
readonly defaultValue: {
|
|
1858
1906
|
readonly type: PropType<Value | null>;
|
|
1859
1907
|
readonly default: null;
|
|
@@ -1869,7 +1917,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1869
1917
|
readonly value: PropType<Value | null>;
|
|
1870
1918
|
readonly size: PropType<"small" | "medium" | "large">;
|
|
1871
1919
|
readonly type: {
|
|
1872
|
-
readonly type: PropType<"date" | "datetime" | "month" | "daterange" | "datetimerange">;
|
|
1920
|
+
readonly type: PropType<"date" | "datetime" | "month" | "year" | "daterange" | "datetimerange">;
|
|
1873
1921
|
readonly default: "date";
|
|
1874
1922
|
};
|
|
1875
1923
|
readonly separator: StringConstructor;
|
|
@@ -1948,11 +1996,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1948
1996
|
calendarLeftPaddingDaterange: string;
|
|
1949
1997
|
calendarLeftPaddingDatetimerange: string;
|
|
1950
1998
|
calendarLeftPaddingMonth: string;
|
|
1999
|
+
calendarLeftPaddingYear: string;
|
|
1951
2000
|
calendarRightPaddingDate: string;
|
|
1952
2001
|
calendarRightPaddingDatetime: string;
|
|
1953
2002
|
calendarRightPaddingDaterange: string;
|
|
1954
2003
|
calendarRightPaddingDatetimerange: string;
|
|
1955
2004
|
calendarRightPaddingMonth: string;
|
|
2005
|
+
calendarRightPaddingYear: string;
|
|
1956
2006
|
}, {
|
|
1957
2007
|
Input: import("../../_mixins").Theme<"Input", {
|
|
1958
2008
|
countTextColor: string;
|
|
@@ -2028,20 +2078,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2028
2078
|
fontSizeMedium: string;
|
|
2029
2079
|
fontSizeLarge: string;
|
|
2030
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;
|
|
2031
2093
|
color: string;
|
|
2032
2094
|
colorHover: string;
|
|
2033
2095
|
colorPressed: string;
|
|
2034
2096
|
colorFocus: string;
|
|
2035
2097
|
colorDisabled: string;
|
|
2036
2098
|
textColor: string;
|
|
2099
|
+
textColorTertiary: string;
|
|
2037
2100
|
textColorHover: string;
|
|
2038
2101
|
textColorPressed: string;
|
|
2039
2102
|
textColorFocus: string;
|
|
2040
2103
|
textColorDisabled: string;
|
|
2041
2104
|
textColorText: string;
|
|
2042
|
-
textColorTextDepth1: string;
|
|
2043
|
-
textColorTextDepth2: string;
|
|
2044
|
-
textColorTextDepth3: string;
|
|
2045
2105
|
textColorTextHover: string;
|
|
2046
2106
|
textColorTextPressed: string;
|
|
2047
2107
|
textColorTextFocus: string;
|
|
@@ -2188,9 +2248,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2188
2248
|
borderDisabledError: string;
|
|
2189
2249
|
rippleColorError: string;
|
|
2190
2250
|
waveOpacity: string;
|
|
2191
|
-
fontWeightText: string;
|
|
2192
2251
|
fontWeight: string;
|
|
2193
|
-
|
|
2252
|
+
fontWeightStrong: string;
|
|
2194
2253
|
paddingTiny: string;
|
|
2195
2254
|
paddingSmall: string;
|
|
2196
2255
|
paddingMedium: string;
|
|
@@ -2244,20 +2303,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2244
2303
|
fontSizeMedium: string;
|
|
2245
2304
|
fontSizeLarge: string;
|
|
2246
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;
|
|
2247
2318
|
color: string;
|
|
2248
2319
|
colorHover: string;
|
|
2249
2320
|
colorPressed: string;
|
|
2250
2321
|
colorFocus: string;
|
|
2251
2322
|
colorDisabled: string;
|
|
2252
2323
|
textColor: string;
|
|
2324
|
+
textColorTertiary: string;
|
|
2253
2325
|
textColorHover: string;
|
|
2254
2326
|
textColorPressed: string;
|
|
2255
2327
|
textColorFocus: string;
|
|
2256
2328
|
textColorDisabled: string;
|
|
2257
2329
|
textColorText: string;
|
|
2258
|
-
textColorTextDepth1: string;
|
|
2259
|
-
textColorTextDepth2: string;
|
|
2260
|
-
textColorTextDepth3: string;
|
|
2261
2330
|
textColorTextHover: string;
|
|
2262
2331
|
textColorTextPressed: string;
|
|
2263
2332
|
textColorTextFocus: string;
|
|
@@ -2404,9 +2473,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2404
2473
|
borderDisabledError: string;
|
|
2405
2474
|
rippleColorError: string;
|
|
2406
2475
|
waveOpacity: string;
|
|
2407
|
-
fontWeightText: string;
|
|
2408
2476
|
fontWeight: string;
|
|
2409
|
-
|
|
2477
|
+
fontWeightStrong: string;
|
|
2410
2478
|
paddingTiny: string;
|
|
2411
2479
|
paddingSmall: string;
|
|
2412
2480
|
paddingMedium: string;
|
|
@@ -2537,11 +2605,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2537
2605
|
calendarLeftPaddingDaterange: string;
|
|
2538
2606
|
calendarLeftPaddingDatetimerange: string;
|
|
2539
2607
|
calendarLeftPaddingMonth: string;
|
|
2608
|
+
calendarLeftPaddingYear: string;
|
|
2540
2609
|
calendarRightPaddingDate: string;
|
|
2541
2610
|
calendarRightPaddingDatetime: string;
|
|
2542
2611
|
calendarRightPaddingDaterange: string;
|
|
2543
2612
|
calendarRightPaddingDatetimerange: string;
|
|
2544
2613
|
calendarRightPaddingMonth: string;
|
|
2614
|
+
calendarRightPaddingYear: string;
|
|
2545
2615
|
}, {
|
|
2546
2616
|
Input: import("../../_mixins").Theme<"Input", {
|
|
2547
2617
|
countTextColor: string;
|
|
@@ -2617,20 +2687,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2617
2687
|
fontSizeMedium: string;
|
|
2618
2688
|
fontSizeLarge: string;
|
|
2619
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;
|
|
2620
2702
|
color: string;
|
|
2621
2703
|
colorHover: string;
|
|
2622
2704
|
colorPressed: string;
|
|
2623
2705
|
colorFocus: string;
|
|
2624
2706
|
colorDisabled: string;
|
|
2625
2707
|
textColor: string;
|
|
2708
|
+
textColorTertiary: string;
|
|
2626
2709
|
textColorHover: string;
|
|
2627
2710
|
textColorPressed: string;
|
|
2628
2711
|
textColorFocus: string;
|
|
2629
2712
|
textColorDisabled: string;
|
|
2630
2713
|
textColorText: string;
|
|
2631
|
-
textColorTextDepth1: string;
|
|
2632
|
-
textColorTextDepth2: string;
|
|
2633
|
-
textColorTextDepth3: string;
|
|
2634
2714
|
textColorTextHover: string;
|
|
2635
2715
|
textColorTextPressed: string;
|
|
2636
2716
|
textColorTextFocus: string;
|
|
@@ -2777,9 +2857,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2777
2857
|
borderDisabledError: string;
|
|
2778
2858
|
rippleColorError: string;
|
|
2779
2859
|
waveOpacity: string;
|
|
2780
|
-
fontWeightText: string;
|
|
2781
2860
|
fontWeight: string;
|
|
2782
|
-
|
|
2861
|
+
fontWeightStrong: string;
|
|
2783
2862
|
paddingTiny: string;
|
|
2784
2863
|
paddingSmall: string;
|
|
2785
2864
|
paddingMedium: string;
|
|
@@ -2833,20 +2912,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2833
2912
|
fontSizeMedium: string;
|
|
2834
2913
|
fontSizeLarge: string;
|
|
2835
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;
|
|
2836
2927
|
color: string;
|
|
2837
2928
|
colorHover: string;
|
|
2838
2929
|
colorPressed: string;
|
|
2839
2930
|
colorFocus: string;
|
|
2840
2931
|
colorDisabled: string;
|
|
2841
2932
|
textColor: string;
|
|
2933
|
+
textColorTertiary: string;
|
|
2842
2934
|
textColorHover: string;
|
|
2843
2935
|
textColorPressed: string;
|
|
2844
2936
|
textColorFocus: string;
|
|
2845
2937
|
textColorDisabled: string;
|
|
2846
2938
|
textColorText: string;
|
|
2847
|
-
textColorTextDepth1: string;
|
|
2848
|
-
textColorTextDepth2: string;
|
|
2849
|
-
textColorTextDepth3: string;
|
|
2850
2939
|
textColorTextHover: string;
|
|
2851
2940
|
textColorTextPressed: string;
|
|
2852
2941
|
textColorTextFocus: string;
|
|
@@ -2993,9 +3082,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2993
3082
|
borderDisabledError: string;
|
|
2994
3083
|
rippleColorError: string;
|
|
2995
3084
|
waveOpacity: string;
|
|
2996
|
-
fontWeightText: string;
|
|
2997
3085
|
fontWeight: string;
|
|
2998
|
-
|
|
3086
|
+
fontWeightStrong: string;
|
|
2999
3087
|
paddingTiny: string;
|
|
3000
3088
|
paddingSmall: string;
|
|
3001
3089
|
paddingMedium: string;
|
|
@@ -3126,11 +3214,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3126
3214
|
calendarLeftPaddingDaterange: string;
|
|
3127
3215
|
calendarLeftPaddingDatetimerange: string;
|
|
3128
3216
|
calendarLeftPaddingMonth: string;
|
|
3217
|
+
calendarLeftPaddingYear: string;
|
|
3129
3218
|
calendarRightPaddingDate: string;
|
|
3130
3219
|
calendarRightPaddingDatetime: string;
|
|
3131
3220
|
calendarRightPaddingDaterange: string;
|
|
3132
3221
|
calendarRightPaddingDatetimerange: string;
|
|
3133
3222
|
calendarRightPaddingMonth: string;
|
|
3223
|
+
calendarRightPaddingYear: string;
|
|
3134
3224
|
}, {
|
|
3135
3225
|
Input: import("../../_mixins").Theme<"Input", {
|
|
3136
3226
|
countTextColor: 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;
|
|
@@ -3876,11 +3988,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3876
3988
|
calendarLeftPaddingDaterange: string;
|
|
3877
3989
|
calendarLeftPaddingDatetimerange: string;
|
|
3878
3990
|
calendarLeftPaddingMonth: string;
|
|
3991
|
+
calendarLeftPaddingYear: string;
|
|
3879
3992
|
calendarRightPaddingDate: string;
|
|
3880
3993
|
calendarRightPaddingDatetime: string;
|
|
3881
3994
|
calendarRightPaddingDaterange: string;
|
|
3882
3995
|
calendarRightPaddingDatetimerange: string;
|
|
3883
3996
|
calendarRightPaddingMonth: string;
|
|
3997
|
+
calendarRightPaddingYear: string;
|
|
3884
3998
|
};
|
|
3885
3999
|
peers: {
|
|
3886
4000
|
Input: import("../../_mixins").Theme<"Input", {
|
|
@@ -3957,20 +4071,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3957
4071
|
fontSizeMedium: string;
|
|
3958
4072
|
fontSizeLarge: string;
|
|
3959
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;
|
|
3960
4086
|
color: string;
|
|
3961
4087
|
colorHover: string;
|
|
3962
4088
|
colorPressed: string;
|
|
3963
4089
|
colorFocus: string;
|
|
3964
4090
|
colorDisabled: string;
|
|
3965
4091
|
textColor: string;
|
|
4092
|
+
textColorTertiary: string;
|
|
3966
4093
|
textColorHover: string;
|
|
3967
4094
|
textColorPressed: string;
|
|
3968
4095
|
textColorFocus: string;
|
|
3969
4096
|
textColorDisabled: string;
|
|
3970
4097
|
textColorText: string;
|
|
3971
|
-
textColorTextDepth1: string;
|
|
3972
|
-
textColorTextDepth2: string;
|
|
3973
|
-
textColorTextDepth3: string;
|
|
3974
4098
|
textColorTextHover: string;
|
|
3975
4099
|
textColorTextPressed: string;
|
|
3976
4100
|
textColorTextFocus: string;
|
|
@@ -4117,9 +4241,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4117
4241
|
borderDisabledError: string;
|
|
4118
4242
|
rippleColorError: string;
|
|
4119
4243
|
waveOpacity: string;
|
|
4120
|
-
fontWeightText: string;
|
|
4121
4244
|
fontWeight: string;
|
|
4122
|
-
|
|
4245
|
+
fontWeightStrong: string;
|
|
4123
4246
|
paddingTiny: string;
|
|
4124
4247
|
paddingSmall: string;
|
|
4125
4248
|
paddingMedium: string;
|
|
@@ -4173,20 +4296,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4173
4296
|
fontSizeMedium: string;
|
|
4174
4297
|
fontSizeLarge: string;
|
|
4175
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;
|
|
4176
4311
|
color: string;
|
|
4177
4312
|
colorHover: string;
|
|
4178
4313
|
colorPressed: string;
|
|
4179
4314
|
colorFocus: string;
|
|
4180
4315
|
colorDisabled: string;
|
|
4181
4316
|
textColor: string;
|
|
4317
|
+
textColorTertiary: string;
|
|
4182
4318
|
textColorHover: string;
|
|
4183
4319
|
textColorPressed: string;
|
|
4184
4320
|
textColorFocus: string;
|
|
4185
4321
|
textColorDisabled: string;
|
|
4186
4322
|
textColorText: string;
|
|
4187
|
-
textColorTextDepth1: string;
|
|
4188
|
-
textColorTextDepth2: string;
|
|
4189
|
-
textColorTextDepth3: string;
|
|
4190
4323
|
textColorTextHover: string;
|
|
4191
4324
|
textColorTextPressed: string;
|
|
4192
4325
|
textColorTextFocus: string;
|
|
@@ -4333,9 +4466,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4333
4466
|
borderDisabledError: string;
|
|
4334
4467
|
rippleColorError: string;
|
|
4335
4468
|
waveOpacity: string;
|
|
4336
|
-
fontWeightText: string;
|
|
4337
4469
|
fontWeight: string;
|
|
4338
|
-
|
|
4470
|
+
fontWeightStrong: string;
|
|
4339
4471
|
paddingTiny: string;
|
|
4340
4472
|
paddingSmall: string;
|
|
4341
4473
|
paddingMedium: string;
|
|
@@ -4451,20 +4583,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4451
4583
|
fontSizeMedium: string;
|
|
4452
4584
|
fontSizeLarge: string;
|
|
4453
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;
|
|
4454
4598
|
color: string;
|
|
4455
4599
|
colorHover: string;
|
|
4456
4600
|
colorPressed: string;
|
|
4457
4601
|
colorFocus: string;
|
|
4458
4602
|
colorDisabled: string;
|
|
4459
4603
|
textColor: string;
|
|
4604
|
+
textColorTertiary: string;
|
|
4460
4605
|
textColorHover: string;
|
|
4461
4606
|
textColorPressed: string;
|
|
4462
4607
|
textColorFocus: string;
|
|
4463
4608
|
textColorDisabled: string;
|
|
4464
4609
|
textColorText: string;
|
|
4465
|
-
textColorTextDepth1: string;
|
|
4466
|
-
textColorTextDepth2: string;
|
|
4467
|
-
textColorTextDepth3: string;
|
|
4468
4610
|
textColorTextHover: string;
|
|
4469
4611
|
textColorTextPressed: string;
|
|
4470
4612
|
textColorTextFocus: string;
|
|
@@ -4611,9 +4753,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4611
4753
|
borderDisabledError: string;
|
|
4612
4754
|
rippleColorError: string;
|
|
4613
4755
|
waveOpacity: string;
|
|
4614
|
-
fontWeightText: string;
|
|
4615
4756
|
fontWeight: string;
|
|
4616
|
-
|
|
4757
|
+
fontWeightStrong: string;
|
|
4617
4758
|
paddingTiny: string;
|
|
4618
4759
|
paddingSmall: string;
|
|
4619
4760
|
paddingMedium: string;
|
|
@@ -4789,7 +4930,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4789
4930
|
readonly themeOverrides?: unknown;
|
|
4790
4931
|
readonly builtinThemeOverrides?: unknown;
|
|
4791
4932
|
} & {
|
|
4792
|
-
type: "date" | "datetime" | "month" | "daterange" | "datetimerange";
|
|
4933
|
+
type: "date" | "datetime" | "month" | "year" | "daterange" | "datetimerange";
|
|
4793
4934
|
placement: FollowerPlacement;
|
|
4794
4935
|
clearable: boolean;
|
|
4795
4936
|
defaultValue: Value | null;
|
|
@@ -4854,11 +4995,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4854
4995
|
calendarLeftPaddingDaterange: string;
|
|
4855
4996
|
calendarLeftPaddingDatetimerange: string;
|
|
4856
4997
|
calendarLeftPaddingMonth: string;
|
|
4998
|
+
calendarLeftPaddingYear: string;
|
|
4857
4999
|
calendarRightPaddingDate: string;
|
|
4858
5000
|
calendarRightPaddingDatetime: string;
|
|
4859
5001
|
calendarRightPaddingDaterange: string;
|
|
4860
5002
|
calendarRightPaddingDatetimerange: string;
|
|
4861
5003
|
calendarRightPaddingMonth: string;
|
|
5004
|
+
calendarRightPaddingYear: string;
|
|
4862
5005
|
}, {
|
|
4863
5006
|
Input: import("../../_mixins").Theme<"Input", {
|
|
4864
5007
|
countTextColor: string;
|
|
@@ -4934,20 +5077,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4934
5077
|
fontSizeMedium: string;
|
|
4935
5078
|
fontSizeLarge: string;
|
|
4936
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;
|
|
4937
5092
|
color: string;
|
|
4938
5093
|
colorHover: string;
|
|
4939
5094
|
colorPressed: string;
|
|
4940
5095
|
colorFocus: string;
|
|
4941
5096
|
colorDisabled: string;
|
|
4942
5097
|
textColor: string;
|
|
5098
|
+
textColorTertiary: string;
|
|
4943
5099
|
textColorHover: string;
|
|
4944
5100
|
textColorPressed: string;
|
|
4945
5101
|
textColorFocus: string;
|
|
4946
5102
|
textColorDisabled: string;
|
|
4947
5103
|
textColorText: string;
|
|
4948
|
-
textColorTextDepth1: string;
|
|
4949
|
-
textColorTextDepth2: string;
|
|
4950
|
-
textColorTextDepth3: string;
|
|
4951
5104
|
textColorTextHover: string;
|
|
4952
5105
|
textColorTextPressed: string;
|
|
4953
5106
|
textColorTextFocus: string;
|
|
@@ -5094,9 +5247,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5094
5247
|
borderDisabledError: string;
|
|
5095
5248
|
rippleColorError: string;
|
|
5096
5249
|
waveOpacity: string;
|
|
5097
|
-
fontWeightText: string;
|
|
5098
5250
|
fontWeight: string;
|
|
5099
|
-
|
|
5251
|
+
fontWeightStrong: string;
|
|
5100
5252
|
paddingTiny: string;
|
|
5101
5253
|
paddingSmall: string;
|
|
5102
5254
|
paddingMedium: string;
|
|
@@ -5150,20 +5302,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5150
5302
|
fontSizeMedium: string;
|
|
5151
5303
|
fontSizeLarge: string;
|
|
5152
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;
|
|
5153
5317
|
color: string;
|
|
5154
5318
|
colorHover: string;
|
|
5155
5319
|
colorPressed: string;
|
|
5156
5320
|
colorFocus: string;
|
|
5157
5321
|
colorDisabled: string;
|
|
5158
5322
|
textColor: string;
|
|
5323
|
+
textColorTertiary: string;
|
|
5159
5324
|
textColorHover: string;
|
|
5160
5325
|
textColorPressed: string;
|
|
5161
5326
|
textColorFocus: string;
|
|
5162
5327
|
textColorDisabled: string;
|
|
5163
5328
|
textColorText: string;
|
|
5164
|
-
textColorTextDepth1: string;
|
|
5165
|
-
textColorTextDepth2: string;
|
|
5166
|
-
textColorTextDepth3: string;
|
|
5167
5329
|
textColorTextHover: string;
|
|
5168
5330
|
textColorTextPressed: string;
|
|
5169
5331
|
textColorTextFocus: string;
|
|
@@ -5310,9 +5472,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5310
5472
|
borderDisabledError: string;
|
|
5311
5473
|
rippleColorError: string;
|
|
5312
5474
|
waveOpacity: string;
|
|
5313
|
-
fontWeightText: string;
|
|
5314
5475
|
fontWeight: string;
|
|
5315
|
-
|
|
5476
|
+
fontWeightStrong: string;
|
|
5316
5477
|
paddingTiny: string;
|
|
5317
5478
|
paddingSmall: string;
|
|
5318
5479
|
paddingMedium: string;
|
|
@@ -5443,11 +5604,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5443
5604
|
calendarLeftPaddingDaterange: string;
|
|
5444
5605
|
calendarLeftPaddingDatetimerange: string;
|
|
5445
5606
|
calendarLeftPaddingMonth: string;
|
|
5607
|
+
calendarLeftPaddingYear: string;
|
|
5446
5608
|
calendarRightPaddingDate: string;
|
|
5447
5609
|
calendarRightPaddingDatetime: string;
|
|
5448
5610
|
calendarRightPaddingDaterange: string;
|
|
5449
5611
|
calendarRightPaddingDatetimerange: string;
|
|
5450
5612
|
calendarRightPaddingMonth: string;
|
|
5613
|
+
calendarRightPaddingYear: string;
|
|
5451
5614
|
}, {
|
|
5452
5615
|
Input: import("../../_mixins").Theme<"Input", {
|
|
5453
5616
|
countTextColor: string;
|
|
@@ -5523,20 +5686,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5523
5686
|
fontSizeMedium: string;
|
|
5524
5687
|
fontSizeLarge: string;
|
|
5525
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;
|
|
5526
5701
|
color: string;
|
|
5527
5702
|
colorHover: string;
|
|
5528
5703
|
colorPressed: string;
|
|
5529
5704
|
colorFocus: string;
|
|
5530
5705
|
colorDisabled: string;
|
|
5531
5706
|
textColor: string;
|
|
5707
|
+
textColorTertiary: string;
|
|
5532
5708
|
textColorHover: string;
|
|
5533
5709
|
textColorPressed: string;
|
|
5534
5710
|
textColorFocus: string;
|
|
5535
5711
|
textColorDisabled: string;
|
|
5536
5712
|
textColorText: string;
|
|
5537
|
-
textColorTextDepth1: string;
|
|
5538
|
-
textColorTextDepth2: string;
|
|
5539
|
-
textColorTextDepth3: string;
|
|
5540
5713
|
textColorTextHover: string;
|
|
5541
5714
|
textColorTextPressed: string;
|
|
5542
5715
|
textColorTextFocus: string;
|
|
@@ -5683,9 +5856,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5683
5856
|
borderDisabledError: string;
|
|
5684
5857
|
rippleColorError: string;
|
|
5685
5858
|
waveOpacity: string;
|
|
5686
|
-
fontWeightText: string;
|
|
5687
5859
|
fontWeight: string;
|
|
5688
|
-
|
|
5860
|
+
fontWeightStrong: string;
|
|
5689
5861
|
paddingTiny: string;
|
|
5690
5862
|
paddingSmall: string;
|
|
5691
5863
|
paddingMedium: string;
|
|
@@ -5739,20 +5911,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5739
5911
|
fontSizeMedium: string;
|
|
5740
5912
|
fontSizeLarge: string;
|
|
5741
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;
|
|
5742
5926
|
color: string;
|
|
5743
5927
|
colorHover: string;
|
|
5744
5928
|
colorPressed: string;
|
|
5745
5929
|
colorFocus: string;
|
|
5746
5930
|
colorDisabled: string;
|
|
5747
5931
|
textColor: string;
|
|
5932
|
+
textColorTertiary: string;
|
|
5748
5933
|
textColorHover: string;
|
|
5749
5934
|
textColorPressed: string;
|
|
5750
5935
|
textColorFocus: string;
|
|
5751
5936
|
textColorDisabled: string;
|
|
5752
5937
|
textColorText: string;
|
|
5753
|
-
textColorTextDepth1: string;
|
|
5754
|
-
textColorTextDepth2: string;
|
|
5755
|
-
textColorTextDepth3: string;
|
|
5756
5938
|
textColorTextHover: string;
|
|
5757
5939
|
textColorTextPressed: string;
|
|
5758
5940
|
textColorTextFocus: string;
|
|
@@ -5899,9 +6081,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5899
6081
|
borderDisabledError: string;
|
|
5900
6082
|
rippleColorError: string;
|
|
5901
6083
|
waveOpacity: string;
|
|
5902
|
-
fontWeightText: string;
|
|
5903
6084
|
fontWeight: string;
|
|
5904
|
-
|
|
6085
|
+
fontWeightStrong: string;
|
|
5905
6086
|
paddingTiny: string;
|
|
5906
6087
|
paddingSmall: string;
|
|
5907
6088
|
paddingMedium: string;
|
|
@@ -6032,11 +6213,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6032
6213
|
calendarLeftPaddingDaterange: string;
|
|
6033
6214
|
calendarLeftPaddingDatetimerange: string;
|
|
6034
6215
|
calendarLeftPaddingMonth: string;
|
|
6216
|
+
calendarLeftPaddingYear: string;
|
|
6035
6217
|
calendarRightPaddingDate: string;
|
|
6036
6218
|
calendarRightPaddingDatetime: string;
|
|
6037
6219
|
calendarRightPaddingDaterange: string;
|
|
6038
6220
|
calendarRightPaddingDatetimerange: string;
|
|
6039
6221
|
calendarRightPaddingMonth: string;
|
|
6222
|
+
calendarRightPaddingYear: string;
|
|
6040
6223
|
}, {
|
|
6041
6224
|
Input: import("../../_mixins").Theme<"Input", {
|
|
6042
6225
|
countTextColor: string;
|
|
@@ -6112,20 +6295,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6112
6295
|
fontSizeMedium: string;
|
|
6113
6296
|
fontSizeLarge: string;
|
|
6114
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;
|
|
6115
6310
|
color: string;
|
|
6116
6311
|
colorHover: string;
|
|
6117
6312
|
colorPressed: string;
|
|
6118
6313
|
colorFocus: string;
|
|
6119
6314
|
colorDisabled: string;
|
|
6120
6315
|
textColor: string;
|
|
6316
|
+
textColorTertiary: string;
|
|
6121
6317
|
textColorHover: string;
|
|
6122
6318
|
textColorPressed: string;
|
|
6123
6319
|
textColorFocus: string;
|
|
6124
6320
|
textColorDisabled: string;
|
|
6125
6321
|
textColorText: string;
|
|
6126
|
-
textColorTextDepth1: string;
|
|
6127
|
-
textColorTextDepth2: string;
|
|
6128
|
-
textColorTextDepth3: string;
|
|
6129
6322
|
textColorTextHover: string;
|
|
6130
6323
|
textColorTextPressed: string;
|
|
6131
6324
|
textColorTextFocus: string;
|
|
@@ -6272,9 +6465,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6272
6465
|
borderDisabledError: string;
|
|
6273
6466
|
rippleColorError: string;
|
|
6274
6467
|
waveOpacity: string;
|
|
6275
|
-
fontWeightText: string;
|
|
6276
6468
|
fontWeight: string;
|
|
6277
|
-
|
|
6469
|
+
fontWeightStrong: string;
|
|
6278
6470
|
paddingTiny: string;
|
|
6279
6471
|
paddingSmall: string;
|
|
6280
6472
|
paddingMedium: string;
|
|
@@ -6328,20 +6520,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6328
6520
|
fontSizeMedium: string;
|
|
6329
6521
|
fontSizeLarge: string;
|
|
6330
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;
|
|
6331
6535
|
color: string;
|
|
6332
6536
|
colorHover: string;
|
|
6333
6537
|
colorPressed: string;
|
|
6334
6538
|
colorFocus: string;
|
|
6335
6539
|
colorDisabled: string;
|
|
6336
6540
|
textColor: string;
|
|
6541
|
+
textColorTertiary: string;
|
|
6337
6542
|
textColorHover: string;
|
|
6338
6543
|
textColorPressed: string;
|
|
6339
6544
|
textColorFocus: string;
|
|
6340
6545
|
textColorDisabled: string;
|
|
6341
6546
|
textColorText: string;
|
|
6342
|
-
textColorTextDepth1: string;
|
|
6343
|
-
textColorTextDepth2: string;
|
|
6344
|
-
textColorTextDepth3: string;
|
|
6345
6547
|
textColorTextHover: string;
|
|
6346
6548
|
textColorTextPressed: string;
|
|
6347
6549
|
textColorTextFocus: string;
|
|
@@ -6488,9 +6690,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6488
6690
|
borderDisabledError: string;
|
|
6489
6691
|
rippleColorError: string;
|
|
6490
6692
|
waveOpacity: string;
|
|
6491
|
-
fontWeightText: string;
|
|
6492
6693
|
fontWeight: string;
|
|
6493
|
-
|
|
6694
|
+
fontWeightStrong: string;
|
|
6494
6695
|
paddingTiny: string;
|
|
6495
6696
|
paddingSmall: string;
|
|
6496
6697
|
paddingMedium: string;
|
|
@@ -6575,6 +6776,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6575
6776
|
colorHover: string;
|
|
6576
6777
|
}, any>;
|
|
6577
6778
|
}>> | undefined;
|
|
6779
|
+
dateFormat?: string | undefined;
|
|
6780
|
+
firstDayOfWeek?: FirstDayOfWeek | undefined;
|
|
6578
6781
|
bordered?: boolean | undefined;
|
|
6579
6782
|
"onUpdate:show"?: MaybeArray<(show: boolean) => void> | undefined;
|
|
6580
6783
|
onUpdateShow?: MaybeArray<(show: boolean) => void> | undefined;
|
|
@@ -6584,14 +6787,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6584
6787
|
actions?: ("clear" | "confirm" | "now")[] | undefined;
|
|
6585
6788
|
startPlaceholder?: string | undefined;
|
|
6586
6789
|
endPlaceholder?: string | undefined;
|
|
6587
|
-
dateFormat?: string | undefined;
|
|
6588
6790
|
timeFormat?: string | undefined;
|
|
6589
6791
|
shortcuts?: Shortcuts | undefined;
|
|
6590
6792
|
isTimeDisabled?: IsTimeDisabled | undefined;
|
|
6591
6793
|
ranges?: Record<string, [number, number]> | undefined;
|
|
6592
|
-
firstDayOfWeek?: FirstDayOfWeek | undefined;
|
|
6593
6794
|
}>, {
|
|
6594
|
-
type: "date" | "datetime" | "month" | "daterange" | "datetimerange";
|
|
6795
|
+
type: "date" | "datetime" | "month" | "year" | "daterange" | "datetimerange";
|
|
6595
6796
|
show: boolean | undefined;
|
|
6596
6797
|
disabled: boolean | undefined;
|
|
6597
6798
|
onChange: MaybeArray<OnUpdateValue>;
|