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
|
@@ -48,20 +48,30 @@ declare const uploadLight: import("../../_mixins").Theme<"Upload", {
|
|
|
48
48
|
fontSizeMedium: string;
|
|
49
49
|
fontSizeLarge: string;
|
|
50
50
|
opacityDisabled: string;
|
|
51
|
+
colorOpacitySecondary: number;
|
|
52
|
+
colorOpacitySecondaryHover: number;
|
|
53
|
+
colorOpacitySecondaryPressed: number;
|
|
54
|
+
colorSecondary: string;
|
|
55
|
+
colorSecondaryHover: string;
|
|
56
|
+
colorSecondaryPressed: string;
|
|
57
|
+
colorTertiary: string;
|
|
58
|
+
colorTertiaryHover: string;
|
|
59
|
+
colorTertiaryPressed: string;
|
|
60
|
+
colorQuaternary: string;
|
|
61
|
+
colorQuaternaryHover: string;
|
|
62
|
+
colorQuaternaryPressed: string;
|
|
51
63
|
color: string;
|
|
52
64
|
colorHover: string;
|
|
53
65
|
colorPressed: string;
|
|
54
66
|
colorFocus: string;
|
|
55
67
|
colorDisabled: string;
|
|
56
68
|
textColor: string;
|
|
69
|
+
textColorTertiary: string;
|
|
57
70
|
textColorHover: string;
|
|
58
71
|
textColorPressed: string;
|
|
59
72
|
textColorFocus: string;
|
|
60
73
|
textColorDisabled: string;
|
|
61
74
|
textColorText: string;
|
|
62
|
-
textColorTextDepth1: string;
|
|
63
|
-
textColorTextDepth2: string;
|
|
64
|
-
textColorTextDepth3: string;
|
|
65
75
|
textColorTextHover: string;
|
|
66
76
|
textColorTextPressed: string;
|
|
67
77
|
textColorTextFocus: string;
|
|
@@ -208,9 +218,8 @@ declare const uploadLight: import("../../_mixins").Theme<"Upload", {
|
|
|
208
218
|
borderDisabledError: string;
|
|
209
219
|
rippleColorError: string;
|
|
210
220
|
waveOpacity: string;
|
|
211
|
-
fontWeightText: string;
|
|
212
221
|
fontWeight: string;
|
|
213
|
-
|
|
222
|
+
fontWeightStrong: string;
|
|
214
223
|
paddingTiny: string;
|
|
215
224
|
paddingSmall: string;
|
|
216
225
|
paddingMedium: string;
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.
|
|
1
|
+
declare const _default: "2.21.0";
|
|
2
2
|
export default _default;
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "naive-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.21.0",
|
|
4
4
|
"description": "A Vue 3 Component Library. Fairly Complete, Customizable Themes, Uses TypeScript, Not Too Slow",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"format:code": "prettier --write \"(src|demo)/**/*.(vue|js)\"",
|
|
21
21
|
"format:md": "prettier --write --parser markdown --prose-wrap never \"(src|demo)/**/*.md\"",
|
|
22
22
|
"test": "cross-env NODE_ENV=test jest --collectCoverage=false",
|
|
23
|
-
"test:cov": "cross-env NODE_ENV=test jest",
|
|
23
|
+
"test:cov": "cross-env NODE_ENV=test NODE_OPTIONS=--unhandled-rejections=warn jest",
|
|
24
24
|
"test:watch": "cross-env NODE_ENV=test jest ---watch --verbose --coverage",
|
|
25
25
|
"gen-version": "node scripts/gen-version",
|
|
26
26
|
"release-changelog": "node scripts/release-changelog",
|
|
@@ -100,8 +100,8 @@
|
|
|
100
100
|
"inquirer": "^8.1.0",
|
|
101
101
|
"jest": "^27.0.4",
|
|
102
102
|
"jest-canvas-mock": "^2.3.1",
|
|
103
|
-
"lint-staged": "^
|
|
104
|
-
"marked": "^
|
|
103
|
+
"lint-staged": "^12.0.3",
|
|
104
|
+
"marked": "^4.0.4",
|
|
105
105
|
"prettier": "^2.2.1",
|
|
106
106
|
"rimraf": "^3.0.2",
|
|
107
107
|
"superagent": "^6.1.0",
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"css-render": "^0.15.6",
|
|
125
125
|
"date-fns": "^2.19.0",
|
|
126
126
|
"date-fns-tz": "^1.1.6",
|
|
127
|
-
"evtd": "^0.2.
|
|
127
|
+
"evtd": "^0.2.3",
|
|
128
128
|
"highlight.js": "^11.0.1",
|
|
129
129
|
"lodash": "^4.17.21",
|
|
130
130
|
"lodash-es": "^4.17.21",
|
package/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "naive-ui",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.21.0",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"tags": [
|
|
@@ -429,6 +429,15 @@
|
|
|
429
429
|
"kind": "expression"
|
|
430
430
|
}
|
|
431
431
|
},
|
|
432
|
+
{
|
|
433
|
+
"name": "input-props",
|
|
434
|
+
"default": "-",
|
|
435
|
+
"description": "-",
|
|
436
|
+
"value": {
|
|
437
|
+
"type": "object",
|
|
438
|
+
"kind": "expression"
|
|
439
|
+
}
|
|
440
|
+
},
|
|
432
441
|
{
|
|
433
442
|
"name": "size",
|
|
434
443
|
"default": "-",
|
|
@@ -541,6 +550,15 @@
|
|
|
541
550
|
"type": "boolean",
|
|
542
551
|
"kind": "expression"
|
|
543
552
|
}
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"name": "fallback-src",
|
|
556
|
+
"default": "-",
|
|
557
|
+
"description": "-",
|
|
558
|
+
"value": {
|
|
559
|
+
"type": "string",
|
|
560
|
+
"kind": "expression"
|
|
561
|
+
}
|
|
544
562
|
}
|
|
545
563
|
],
|
|
546
564
|
"events": [
|
|
@@ -848,11 +866,38 @@
|
|
|
848
866
|
}
|
|
849
867
|
},
|
|
850
868
|
{
|
|
851
|
-
"name": "
|
|
869
|
+
"name": "secondary",
|
|
852
870
|
"default": "-",
|
|
853
871
|
"description": "-",
|
|
854
872
|
"value": {
|
|
855
|
-
"type": "
|
|
873
|
+
"type": "boolean",
|
|
874
|
+
"kind": "expression"
|
|
875
|
+
}
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"name": "tertiary",
|
|
879
|
+
"default": "-",
|
|
880
|
+
"description": "-",
|
|
881
|
+
"value": {
|
|
882
|
+
"type": "boolean",
|
|
883
|
+
"kind": "expression"
|
|
884
|
+
}
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
"name": "quaternary",
|
|
888
|
+
"default": "-",
|
|
889
|
+
"description": "-",
|
|
890
|
+
"value": {
|
|
891
|
+
"type": "boolean",
|
|
892
|
+
"kind": "expression"
|
|
893
|
+
}
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"name": "strong",
|
|
897
|
+
"default": "-",
|
|
898
|
+
"description": "-",
|
|
899
|
+
"value": {
|
|
900
|
+
"type": "boolean",
|
|
856
901
|
"kind": "expression"
|
|
857
902
|
}
|
|
858
903
|
},
|
|
@@ -1646,7 +1691,7 @@
|
|
|
1646
1691
|
}
|
|
1647
1692
|
},
|
|
1648
1693
|
{
|
|
1649
|
-
"name": "private-table
|
|
1694
|
+
"name": "private-inside-table",
|
|
1650
1695
|
"default": "-",
|
|
1651
1696
|
"description": "-",
|
|
1652
1697
|
"value": {
|
|
@@ -2178,6 +2223,15 @@
|
|
|
2178
2223
|
"kind": "expression"
|
|
2179
2224
|
}
|
|
2180
2225
|
},
|
|
2226
|
+
{
|
|
2227
|
+
"name": "striped",
|
|
2228
|
+
"default": "-",
|
|
2229
|
+
"description": "-",
|
|
2230
|
+
"value": {
|
|
2231
|
+
"type": "boolean",
|
|
2232
|
+
"kind": "expression"
|
|
2233
|
+
}
|
|
2234
|
+
},
|
|
2181
2235
|
{
|
|
2182
2236
|
"name": "scroll-x",
|
|
2183
2237
|
"default": "-",
|
|
@@ -6677,6 +6731,15 @@
|
|
|
6677
6731
|
"kind": "expression"
|
|
6678
6732
|
}
|
|
6679
6733
|
},
|
|
6734
|
+
{
|
|
6735
|
+
"name": "watch-props",
|
|
6736
|
+
"default": "-",
|
|
6737
|
+
"description": "-",
|
|
6738
|
+
"value": {
|
|
6739
|
+
"type": "Array",
|
|
6740
|
+
"kind": "expression"
|
|
6741
|
+
}
|
|
6742
|
+
},
|
|
6680
6743
|
{
|
|
6681
6744
|
"name": "disabled",
|
|
6682
6745
|
"default": "-",
|
|
@@ -7103,6 +7166,15 @@
|
|
|
7103
7166
|
"kind": "expression"
|
|
7104
7167
|
}
|
|
7105
7168
|
},
|
|
7169
|
+
{
|
|
7170
|
+
"name": "transform-origin",
|
|
7171
|
+
"default": "-",
|
|
7172
|
+
"description": "-",
|
|
7173
|
+
"value": {
|
|
7174
|
+
"type": "string",
|
|
7175
|
+
"kind": "expression"
|
|
7176
|
+
}
|
|
7177
|
+
},
|
|
7106
7178
|
{
|
|
7107
7179
|
"name": "title",
|
|
7108
7180
|
"default": "-",
|
|
@@ -8654,6 +8726,10 @@
|
|
|
8654
8726
|
}
|
|
8655
8727
|
],
|
|
8656
8728
|
"events": [
|
|
8729
|
+
{
|
|
8730
|
+
"name": "update-checked",
|
|
8731
|
+
"description": "-"
|
|
8732
|
+
},
|
|
8657
8733
|
{
|
|
8658
8734
|
"name": "update-checked",
|
|
8659
8735
|
"description": "-"
|
|
@@ -8790,6 +8866,10 @@
|
|
|
8790
8866
|
}
|
|
8791
8867
|
],
|
|
8792
8868
|
"events": [
|
|
8869
|
+
{
|
|
8870
|
+
"name": "update-checked",
|
|
8871
|
+
"description": "-"
|
|
8872
|
+
},
|
|
8793
8873
|
{
|
|
8794
8874
|
"name": "update-checked",
|
|
8795
8875
|
"description": "-"
|
|
@@ -9006,6 +9086,15 @@
|
|
|
9006
9086
|
"kind": "expression"
|
|
9007
9087
|
}
|
|
9008
9088
|
},
|
|
9089
|
+
{
|
|
9090
|
+
"name": "menu-props",
|
|
9091
|
+
"default": "-",
|
|
9092
|
+
"description": "-",
|
|
9093
|
+
"value": {
|
|
9094
|
+
"type": "object",
|
|
9095
|
+
"kind": "expression"
|
|
9096
|
+
}
|
|
9097
|
+
},
|
|
9009
9098
|
{
|
|
9010
9099
|
"name": "multiple",
|
|
9011
9100
|
"default": "-",
|
|
@@ -9412,7 +9501,7 @@
|
|
|
9412
9501
|
"default": "-",
|
|
9413
9502
|
"description": "-",
|
|
9414
9503
|
"value": {
|
|
9415
|
-
"type": "number",
|
|
9504
|
+
"type": "number | string",
|
|
9416
9505
|
"kind": "expression"
|
|
9417
9506
|
}
|
|
9418
9507
|
},
|
|
@@ -9460,6 +9549,24 @@
|
|
|
9460
9549
|
"type": "boolean",
|
|
9461
9550
|
"kind": "expression"
|
|
9462
9551
|
}
|
|
9552
|
+
},
|
|
9553
|
+
{
|
|
9554
|
+
"name": "vertical",
|
|
9555
|
+
"default": "-",
|
|
9556
|
+
"description": "-",
|
|
9557
|
+
"value": {
|
|
9558
|
+
"type": "boolean",
|
|
9559
|
+
"kind": "expression"
|
|
9560
|
+
}
|
|
9561
|
+
},
|
|
9562
|
+
{
|
|
9563
|
+
"name": "reverse",
|
|
9564
|
+
"default": "-",
|
|
9565
|
+
"description": "-",
|
|
9566
|
+
"value": {
|
|
9567
|
+
"type": "boolean",
|
|
9568
|
+
"kind": "expression"
|
|
9569
|
+
}
|
|
9463
9570
|
}
|
|
9464
9571
|
],
|
|
9465
9572
|
"events": [
|
|
@@ -9470,10 +9577,6 @@
|
|
|
9470
9577
|
{
|
|
9471
9578
|
"name": "update-value",
|
|
9472
9579
|
"description": "-"
|
|
9473
|
-
},
|
|
9474
|
-
{
|
|
9475
|
-
"name": "change",
|
|
9476
|
-
"description": "-"
|
|
9477
9580
|
}
|
|
9478
9581
|
]
|
|
9479
9582
|
},
|
|
@@ -9851,6 +9954,15 @@
|
|
|
9851
9954
|
"kind": "expression"
|
|
9852
9955
|
}
|
|
9853
9956
|
},
|
|
9957
|
+
{
|
|
9958
|
+
"name": "striped",
|
|
9959
|
+
"default": "-",
|
|
9960
|
+
"description": "-",
|
|
9961
|
+
"value": {
|
|
9962
|
+
"type": "boolean",
|
|
9963
|
+
"kind": "expression"
|
|
9964
|
+
}
|
|
9965
|
+
},
|
|
9854
9966
|
{
|
|
9855
9967
|
"name": "single-column",
|
|
9856
9968
|
"default": "-",
|
|
@@ -9969,6 +10081,15 @@
|
|
|
9969
10081
|
"kind": "expression"
|
|
9970
10082
|
}
|
|
9971
10083
|
},
|
|
10084
|
+
{
|
|
10085
|
+
"name": "pane-class",
|
|
10086
|
+
"default": "-",
|
|
10087
|
+
"description": "-",
|
|
10088
|
+
"value": {
|
|
10089
|
+
"type": "string",
|
|
10090
|
+
"kind": "expression"
|
|
10091
|
+
}
|
|
10092
|
+
},
|
|
9972
10093
|
{
|
|
9973
10094
|
"name": "pane-style",
|
|
9974
10095
|
"default": "-",
|
|
@@ -10103,6 +10224,58 @@
|
|
|
10103
10224
|
],
|
|
10104
10225
|
"events": []
|
|
10105
10226
|
},
|
|
10227
|
+
{
|
|
10228
|
+
"name": "n-tab",
|
|
10229
|
+
"slots": [],
|
|
10230
|
+
"attributes": [
|
|
10231
|
+
{
|
|
10232
|
+
"name": "label",
|
|
10233
|
+
"default": "-",
|
|
10234
|
+
"description": "-",
|
|
10235
|
+
"value": {
|
|
10236
|
+
"type": "string | number | object | Function",
|
|
10237
|
+
"kind": "expression"
|
|
10238
|
+
}
|
|
10239
|
+
},
|
|
10240
|
+
{
|
|
10241
|
+
"name": "tab",
|
|
10242
|
+
"default": "-",
|
|
10243
|
+
"description": "-",
|
|
10244
|
+
"value": {
|
|
10245
|
+
"type": "string | number | object | Function",
|
|
10246
|
+
"kind": "expression"
|
|
10247
|
+
}
|
|
10248
|
+
},
|
|
10249
|
+
{
|
|
10250
|
+
"name": "name",
|
|
10251
|
+
"default": "-",
|
|
10252
|
+
"description": "-",
|
|
10253
|
+
"value": {
|
|
10254
|
+
"type": "string | number",
|
|
10255
|
+
"kind": "expression"
|
|
10256
|
+
}
|
|
10257
|
+
},
|
|
10258
|
+
{
|
|
10259
|
+
"name": "disabled",
|
|
10260
|
+
"default": "-",
|
|
10261
|
+
"description": "-",
|
|
10262
|
+
"value": {
|
|
10263
|
+
"type": "boolean",
|
|
10264
|
+
"kind": "expression"
|
|
10265
|
+
}
|
|
10266
|
+
},
|
|
10267
|
+
{
|
|
10268
|
+
"name": "closable",
|
|
10269
|
+
"default": "-",
|
|
10270
|
+
"description": "-",
|
|
10271
|
+
"value": {
|
|
10272
|
+
"type": "boolean",
|
|
10273
|
+
"kind": "expression"
|
|
10274
|
+
}
|
|
10275
|
+
}
|
|
10276
|
+
],
|
|
10277
|
+
"events": []
|
|
10278
|
+
},
|
|
10106
10279
|
{
|
|
10107
10280
|
"name": "n-tag",
|
|
10108
10281
|
"slots": [],
|