naive-ui 2.41.1 → 2.43.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/dist/index.js +3349 -1068
- package/dist/index.mjs +3339 -1070
- package/dist/index.prod.js +1 -1
- package/dist/index.prod.mjs +1 -1
- package/es/_internal/icon/src/styles/index.cssr.mjs +0 -1
- package/es/_internal/icons/replaceable.mjs +1 -1
- package/es/_internal/scrollbar/src/Scrollbar.d.ts +3 -3
- package/es/_internal/select-menu/src/SelectMenu.d.ts +4 -4
- package/es/_internal/selection/src/Selection.d.ts +115 -13
- package/es/_internal/selection/styles/light.d.ts +14 -1
- package/es/_mixins/use-theme.mjs +1 -1
- package/es/_utils/index.d.ts +1 -0
- package/es/_utils/naive/prop.d.ts +19 -10
- package/es/_utils/naive/prop.mjs +21 -21
- package/es/_utils/ts/ts.d.ts +3 -0
- package/es/alert/src/Alert.d.ts +2 -2
- package/es/anchor/index.d.ts +1 -0
- package/es/anchor/src/AnchorAdapter.d.ts +1 -1
- package/es/anchor/src/BaseAnchor.mjs +29 -5
- package/es/anchor/src/Link.d.ts +3 -2
- package/es/anchor/src/Link.mjs +5 -2
- package/es/anchor/src/public-types.d.ts +5 -0
- package/es/anchor/src/public-types.mjs +1 -0
- package/es/auto-complete/src/AutoComplete.d.ts +155 -14
- package/es/auto-complete/styles/light.d.ts +14 -1
- package/es/avatar-group/index.d.ts +3 -2
- package/es/avatar-group/src/AvatarGroup.d.ts +1 -4
- package/es/avatar-group/src/generic-public-types.d.ts +18 -0
- package/es/avatar-group/src/generic-public-types.mjs +1 -0
- package/es/avatar-group/src/public-types.d.ts +10 -0
- package/es/avatar-group/src/public-types.mjs +1 -0
- package/es/back-top/src/BackTop.d.ts +1 -1
- package/es/badge/src/Badge.d.ts +1 -1
- package/es/button/src/Button.d.ts +1 -1
- package/es/card/src/Card.d.ts +7 -2
- package/es/card/src/Card.mjs +3 -1
- package/es/carousel/src/Carousel.d.ts +4 -4
- package/es/carousel/src/Carousel.mjs +2 -2
- package/es/carousel/src/CarouselDots.d.ts +2 -2
- package/es/carousel/src/CarouselItem.mjs +1 -1
- package/es/cascader/src/Cascader.d.ts +163 -20
- package/es/cascader/src/CascaderMenu.d.ts +56 -4
- package/es/cascader/src/CascaderOption.d.ts +56 -4
- package/es/cascader/src/CascaderSelectMenu.d.ts +57 -5
- package/es/cascader/src/CascaderSubmenu.d.ts +56 -4
- package/es/cascader/styles/light.d.ts +14 -1
- package/es/color-picker/src/ColorInputUnit.d.ts +26 -2
- package/es/color-picker/src/ColorPicker.d.ts +128 -11
- package/es/color-picker/src/ColorPickerTrigger.mjs +2 -1
- package/es/color-picker/src/utils.d.ts +2 -0
- package/es/color-picker/src/utils.mjs +23 -0
- package/es/color-picker/styles/light.d.ts +17 -4
- package/es/components.d.ts +1 -0
- package/es/components.mjs +1 -0
- package/es/config-provider/src/ConfigProvider.d.ts +1 -1
- package/es/config-provider/src/ConfigProvider.mjs +1 -1
- package/es/config-provider/src/internal-interface.d.ts +2 -0
- package/es/data-table/src/DataTable.d.ts +690 -68
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +334 -26
- package/es/data-table/src/HeaderButton/FilterMenu.d.ts +332 -24
- package/es/data-table/src/TableParts/Body.d.ts +332 -24
- package/es/data-table/src/TableParts/Cell.mjs +1 -1
- package/es/data-table/src/TableParts/Header.d.ts +332 -24
- package/es/data-table/src/interface.d.ts +253 -18
- package/es/data-table/src/use-sorter.d.ts +2 -5
- package/es/data-table/src/use-table-data.d.ts +1 -4
- package/es/data-table/src/utils.mjs +4 -1
- package/es/data-table/styles/light.d.ts +84 -6
- package/es/date-picker/src/DatePicker.d.ts +229 -23
- package/es/date-picker/src/DatePicker.mjs +1 -1
- package/es/date-picker/src/panel/date.d.ts +110 -10
- package/es/date-picker/src/panel/daterange.d.ts +111 -11
- package/es/date-picker/src/panel/datetime.d.ts +111 -11
- package/es/date-picker/src/panel/datetime.mjs +1 -1
- package/es/date-picker/src/panel/datetimerange.d.ts +112 -12
- package/es/date-picker/src/panel/datetimerange.mjs +2 -2
- package/es/date-picker/src/panel/month.d.ts +110 -10
- package/es/date-picker/src/panel/monthrange.d.ts +111 -11
- package/es/date-picker/src/panel/panelHeader.d.ts +436 -36
- package/es/date-picker/src/panel/use-calendar.d.ts +109 -9
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +110 -10
- package/es/date-picker/src/panel/use-dual-calendar.mjs +3 -3
- package/es/date-picker/src/panel/use-panel-common.d.ts +109 -9
- package/es/date-picker/src/panel/use-panel-common.mjs +1 -1
- package/es/date-picker/src/props.d.ts +85 -7
- package/es/date-picker/src/props.mjs +1 -1
- package/es/date-picker/src/utils.d.ts +2 -1
- package/es/date-picker/src/utils.mjs +4 -1
- package/es/date-picker/styles/light.d.ts +28 -2
- package/es/dialog/src/Dialog.d.ts +9 -6
- package/es/dialog/src/Dialog.mjs +1 -0
- package/es/dialog/src/DialogEnvironment.d.ts +11 -4
- package/es/dialog/src/DialogEnvironment.mjs +3 -0
- package/es/dialog/src/DialogProvider.d.ts +38 -34
- package/es/dialog/src/dialogProps.d.ts +2 -1
- package/es/dialog/src/dialogProps.mjs +2 -1
- package/es/drawer/src/Drawer.d.ts +4 -4
- package/es/drawer/src/DrawerBodyWrapper.d.ts +1 -1
- package/es/dropdown/src/Dropdown.d.ts +165 -24
- package/es/dropdown/src/DropdownMenu.d.ts +2 -2
- package/es/dropdown/src/DropdownOption.d.ts +2 -2
- package/es/dropdown/styles/light.d.ts +16 -3
- package/es/dynamic-input/src/DynamicInput.d.ts +153 -12
- package/es/dynamic-input/src/InputPreset.d.ts +52 -4
- package/es/dynamic-input/src/PairPreset.d.ts +52 -4
- package/es/dynamic-input/styles/light.d.ts +14 -1
- package/es/dynamic-tags/src/DynamicTags.d.ts +153 -12
- package/es/dynamic-tags/styles/light.d.ts +14 -1
- package/es/element/src/Element.mjs +1 -1
- package/es/ellipsis/src/Ellipsis.d.ts +154 -11
- package/es/ellipsis/src/PerformantEllipsis.d.ts +84 -6
- package/es/ellipsis/styles/light.d.ts +14 -1
- package/es/empty/src/Empty.d.ts +1 -1
- package/es/form/src/FormItem.d.ts +8 -2
- package/es/form/src/FormItem.mjs +6 -3
- package/es/form/src/FormItemCol.d.ts +7 -1
- package/es/form/src/FormItemGridItem.d.ts +7 -1
- package/es/form/src/FormItemRow.d.ts +7 -1
- package/es/form/src/utils.d.ts +1 -1
- package/es/form/src/utils.mjs +1 -1
- package/es/global-style/src/GlobalStyle.mjs +1 -1
- package/es/gradient-text/src/GradientText.d.ts +2 -2
- package/es/grid/src/GridItem.d.ts +1 -1
- package/es/heatmap/index.d.ts +6 -0
- package/es/heatmap/index.mjs +4 -0
- package/es/heatmap/src/ColorIndicator.d.ts +25 -0
- package/es/heatmap/src/ColorIndicator.mjs +41 -0
- package/es/heatmap/src/Heatmap.d.ts +385 -0
- package/es/heatmap/src/Heatmap.mjs +333 -0
- package/es/heatmap/src/Rect.d.ts +57 -0
- package/es/heatmap/src/Rect.mjs +67 -0
- package/es/heatmap/src/animationStyle.d.ts +6 -0
- package/es/heatmap/src/animationStyle.mjs +51 -0
- package/es/heatmap/src/interface.d.ts +7 -0
- package/es/heatmap/src/interface.mjs +1 -0
- package/es/heatmap/src/public-types.d.ts +16 -0
- package/es/heatmap/src/public-types.mjs +1 -0
- package/es/heatmap/src/styles/index.cssr.d.ts +2 -0
- package/es/heatmap/src/styles/index.cssr.mjs +102 -0
- package/es/heatmap/src/styles/rtl.cssr.d.ts +2 -0
- package/es/heatmap/src/styles/rtl.cssr.mjs +4 -0
- package/es/heatmap/src/theme.d.ts +8 -0
- package/es/heatmap/src/theme.mjs +7 -0
- package/es/heatmap/src/utils/index.d.ts +32 -0
- package/es/heatmap/src/utils/index.mjs +148 -0
- package/es/heatmap/styles/dark.d.ts +3 -0
- package/es/heatmap/styles/dark.mjs +16 -0
- package/es/heatmap/styles/index.d.ts +3 -0
- package/es/heatmap/styles/index.mjs +2 -0
- package/es/heatmap/styles/light.d.ts +31 -0
- package/es/heatmap/styles/light.mjs +45 -0
- package/es/heatmap/styles/rtl.d.ts +2 -0
- package/es/heatmap/styles/rtl.mjs +5 -0
- package/es/highlight/src/utils.mjs +10 -10
- package/es/icon/src/styles/index.cssr.mjs +0 -1
- package/es/image/index.d.ts +3 -1
- package/es/image/index.mjs +2 -1
- package/es/image/src/Image.d.ts +133 -23
- package/es/image/src/Image.mjs +48 -23
- package/es/image/src/ImageGroup.d.ts +200 -35
- package/es/image/src/ImageGroup.mjs +130 -26
- package/es/image/src/ImagePreview.d.ts +258 -23
- package/es/image/src/ImagePreview.mjs +84 -42
- package/es/image/src/interface.d.ts +42 -3
- package/es/image/src/public-types.d.ts +14 -0
- package/es/image/styles/light.d.ts +14 -1
- package/es/input/src/Input.d.ts +146 -12
- package/es/input/src/Input.mjs +6 -4
- package/es/input/src/InputGroupLabel.d.ts +129 -22
- package/es/input/src/InputGroupLabel.mjs +14 -8
- package/es/input/styles/dark.d.ts +139 -2
- package/es/input/styles/dark.mjs +114 -108
- package/es/input/styles/light.d.ts +76 -3
- package/es/input/styles/light.mjs +7 -2
- package/es/input-number/src/InputNumber.d.ts +152 -11
- package/es/input-number/styles/light.d.ts +14 -1
- package/es/input-otp/src/InputOtp.d.ts +158 -12
- package/es/input-otp/src/InputOtp.mjs +12 -4
- package/es/input-otp/src/public-types.d.ts +1 -0
- package/es/input-otp/src/styles/index.cssr.mjs +12 -3
- package/es/input-otp/styles/dark.mjs +1 -1
- package/es/input-otp/styles/light.d.ts +14 -1
- package/es/layout/src/LayoutSider.d.ts +1 -1
- package/es/legacy-transfer/src/Transfer.d.ts +154 -13
- package/es/legacy-transfer/src/TransferFilter.d.ts +52 -4
- package/es/legacy-transfer/src/TransferList.d.ts +52 -4
- package/es/legacy-transfer/src/TransferListItem.d.ts +52 -4
- package/es/legacy-transfer/styles/light.d.ts +14 -1
- package/es/locales/common/arDZ.mjs +6 -0
- package/es/locales/common/azAZ.mjs +6 -0
- package/es/locales/common/csCZ.mjs +6 -0
- package/es/locales/common/daDK.d.ts +3 -0
- package/es/locales/common/daDK.mjs +130 -0
- package/es/locales/common/deDE.mjs +6 -0
- package/es/locales/common/enGB.mjs +6 -0
- package/es/locales/common/enUS.d.ts +6 -0
- package/es/locales/common/enUS.mjs +6 -0
- package/es/locales/common/eo.mjs +6 -0
- package/es/locales/common/esAR.mjs +6 -0
- package/es/locales/common/etEE.mjs +6 -0
- package/es/locales/common/faIR.mjs +6 -0
- package/es/locales/common/frFR.mjs +6 -0
- package/es/locales/common/idID.mjs +6 -0
- package/es/locales/common/itIT.mjs +6 -0
- package/es/locales/common/jaJP.mjs +6 -0
- package/es/locales/common/kmKH.mjs +6 -0
- package/es/locales/common/koKR.mjs +6 -0
- package/es/locales/common/nbNO.mjs +6 -0
- package/es/locales/common/nlNL.mjs +6 -0
- package/es/locales/common/plPL.mjs +6 -0
- package/es/locales/common/ptBR.mjs +6 -0
- package/es/locales/common/ruRU.mjs +6 -0
- package/es/locales/common/skSK.mjs +6 -0
- package/es/locales/common/svSE.mjs +8 -2
- package/es/locales/common/thTH.mjs +6 -0
- package/es/locales/common/trTR.mjs +6 -0
- package/es/locales/common/ugCN.mjs +6 -0
- package/es/locales/common/ukUA.mjs +6 -0
- package/es/locales/common/uzUZ.mjs +6 -0
- package/es/locales/common/viVN.mjs +6 -0
- package/es/locales/common/zhCN.mjs +6 -0
- package/es/locales/common/zhTW.mjs +6 -0
- package/es/locales/date/daDK.d.ts +3 -0
- package/es/locales/date/daDK.mjs +6 -0
- package/es/locales/index.d.ts +2 -0
- package/es/locales/index.mjs +2 -0
- package/es/locales/utils/index.mjs +1 -1
- package/es/log/src/Log.d.ts +1 -1
- package/es/log/src/Log.mjs +1 -1
- package/es/marquee/src/Marquee.mjs +12 -10
- package/es/mention/src/Mention.d.ts +155 -14
- package/es/mention/styles/light.d.ts +14 -1
- package/es/menu/src/Menu.d.ts +314 -28
- package/es/menu/src/MenuOption.d.ts +113 -9
- package/es/menu/src/MenuOption.mjs +4 -3
- package/es/menu/src/MenuOptionContent.d.ts +1 -1
- package/es/menu/src/MenuOptionGroup.d.ts +1 -1
- package/es/menu/src/MenuOptionGroup.mjs +11 -4
- package/es/menu/src/Submenu.d.ts +114 -10
- package/es/menu/src/use-menu-child.d.ts +2 -0
- package/es/menu/src/use-menu-child.mjs +2 -1
- package/es/menu/styles/light.d.ts +33 -7
- package/es/message/src/Message.d.ts +1 -0
- package/es/message/src/Message.mjs +3 -1
- package/es/message/src/MessageProvider.d.ts +10 -1
- package/es/message/src/styles/index.cssr.mjs +1 -0
- package/es/message/styles/light.d.ts +1 -0
- package/es/message/styles/light.mjs +2 -1
- package/es/modal/src/BodyWrapper.d.ts +13 -7
- package/es/modal/src/BodyWrapper.mjs +4 -3
- package/es/modal/src/Modal.d.ts +32 -15
- package/es/modal/src/Modal.mjs +14 -6
- package/es/modal/src/ModalEnvironment.d.ts +22 -10
- package/es/modal/src/ModalEnvironment.mjs +1 -1
- package/es/modal/src/ModalProvider.d.ts +2 -1
- package/es/modal/src/ModalProvider.mjs +4 -2
- package/es/modal/src/presetProps.d.ts +3 -2
- package/es/modal/src/styles/index.cssr.mjs +4 -2
- package/es/notification/src/Notification.d.ts +2 -2
- package/es/notification/src/NotificationEnvironment.d.ts +1 -1
- package/es/notification/src/NotificationProvider.d.ts +5 -5
- package/es/number-animation/src/NumberAnimation.mjs +1 -1
- package/es/pagination/src/Pagination.d.ts +460 -33
- package/es/pagination/styles/light.d.ts +42 -3
- package/es/popconfirm/src/Popconfirm.d.ts +163 -22
- package/es/popconfirm/src/Popconfirm.mjs +3 -3
- package/es/popconfirm/src/PopconfirmPanel.d.ts +3 -3
- package/es/popconfirm/styles/light.d.ts +14 -1
- package/es/popover/src/Popover.d.ts +133 -16
- package/es/popover/src/PopoverBody.d.ts +129 -12
- package/es/popover/src/PopoverBody.mjs +8 -4
- package/es/popover/src/styles/index.cssr.mjs +1 -1
- package/es/popover/src/styles/rtl.cssr.d.ts +2 -0
- package/es/popover/src/styles/rtl.cssr.mjs +5 -0
- package/es/popover/styles/dark.mjs +4 -0
- package/es/popover/styles/index.d.ts +1 -0
- package/es/popover/styles/index.mjs +2 -1
- package/es/popover/styles/light.d.ts +27 -2
- package/es/popover/styles/light.mjs +7 -2
- package/es/popover/styles/rtl.d.ts +2 -0
- package/es/popover/styles/rtl.mjs +7 -0
- package/es/popselect/src/Popselect.d.ts +217 -76
- package/es/popselect/src/PopselectPanel.d.ts +55 -7
- package/es/popselect/styles/light.d.ts +14 -1
- package/es/progress/src/Circle.d.ts +1 -1
- package/es/progress/src/Circle.mjs +14 -3
- package/es/progress/src/Progress.d.ts +1 -1
- package/es/radio/src/Radio.mjs +5 -5
- package/es/radio/src/RadioButton.d.ts +2 -2
- package/es/radio/src/styles/radio.cssr.mjs +3 -7
- package/es/rate/src/Rate.d.ts +1 -1
- package/es/result/src/Result.d.ts +1 -1
- package/es/select/src/Select.d.ts +164 -21
- package/es/select/styles/light.d.ts +14 -1
- package/es/styles.d.ts +3 -3
- package/es/styles.mjs +3 -3
- package/es/tabs/src/Tab.d.ts +3 -3
- package/es/tabs/src/Tabs.d.ts +1 -1
- package/es/tabs/src/Tabs.mjs +1 -1
- package/es/tabs/src/styles/index.cssr.mjs +4 -4
- package/es/tag/src/Tag.d.ts +1 -1
- package/es/theme-editor/src/ThemeEditor.mjs +1 -1
- package/es/themes/dark.mjs +2 -0
- package/es/themes/light.mjs +2 -0
- package/es/time-picker/src/Panel.d.ts +59 -11
- package/es/time-picker/src/TimePicker.d.ts +156 -15
- package/es/time-picker/styles/light.d.ts +14 -1
- package/es/timeline/src/TimelineItem.d.ts +1 -1
- package/es/tooltip/src/Tooltip.d.ts +166 -25
- package/es/tooltip/styles/light.d.ts +16 -3
- package/es/transfer/src/Transfer.d.ts +154 -13
- package/es/transfer/src/TransferFilter.d.ts +52 -4
- package/es/transfer/src/TransferList.d.ts +52 -4
- package/es/transfer/src/TransferListItem.d.ts +52 -4
- package/es/transfer/styles/light.d.ts +14 -1
- package/es/tree/src/Tree.d.ts +42 -38
- package/es/tree/src/Tree.mjs +3 -1
- package/es/tree/src/TreeNode.d.ts +2 -2
- package/es/tree/src/TreeNodeContent.d.ts +3 -3
- package/es/tree/src/styles/index.cssr.mjs +7 -2
- package/es/tree/styles/light.d.ts +4 -4
- package/es/tree-select/src/TreeSelect.d.ts +172 -29
- package/es/tree-select/styles/index.d.ts +1 -0
- package/es/tree-select/styles/index.mjs +2 -1
- package/es/tree-select/styles/light.d.ts +22 -9
- package/es/tree-select/styles/rtl.d.ts +2 -0
- package/es/tree-select/styles/rtl.mjs +11 -0
- package/es/typography/src/create-header.d.ts +1 -1
- package/es/typography/src/headers.d.ts +6 -6
- package/es/upload/src/Upload.d.ts +1 -0
- package/es/upload/src/Upload.mjs +6 -3
- package/es/upload/src/UploadFile.d.ts +8 -6
- package/es/upload/src/UploadFile.mjs +1 -1
- package/es/upload/src/icons.d.ts +2 -2
- package/es/upload/src/icons.mjs +22 -18
- package/es/upload/src/styles/rtl.cssr.d.ts +2 -0
- package/es/upload/src/styles/rtl.cssr.mjs +5 -0
- package/es/upload/styles/index.d.ts +1 -0
- package/es/upload/styles/index.mjs +2 -1
- package/es/upload/styles/rtl.d.ts +2 -0
- package/es/upload/styles/rtl.mjs +5 -0
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/es/virtual-list/src/VirtualList.d.ts +1 -1
- package/generic/AvatarGroup.vue +26 -0
- package/generic/index.ts +1 -0
- package/lib/_internal/icon/src/styles/index.cssr.js +0 -1
- package/lib/_internal/scrollbar/src/Scrollbar.d.ts +3 -3
- package/lib/_internal/select-menu/src/SelectMenu.d.ts +4 -4
- package/lib/_internal/selection/src/Selection.d.ts +115 -13
- package/lib/_internal/selection/styles/light.d.ts +14 -1
- package/lib/_utils/index.d.ts +1 -0
- package/lib/_utils/naive/prop.d.ts +19 -10
- package/lib/_utils/naive/prop.js +21 -21
- package/lib/_utils/ts/ts.d.ts +3 -0
- package/lib/alert/src/Alert.d.ts +2 -2
- package/lib/anchor/index.d.ts +1 -0
- package/lib/anchor/src/AnchorAdapter.d.ts +1 -1
- package/lib/anchor/src/AnchorAdapter.js +17 -7
- package/lib/anchor/src/BaseAnchor.js +30 -5
- package/lib/anchor/src/Link.d.ts +3 -2
- package/lib/anchor/src/Link.js +4 -1
- package/lib/anchor/src/public-types.d.ts +5 -0
- package/lib/anchor/src/public-types.js +2 -0
- package/lib/auto-complete/src/AutoComplete.d.ts +155 -14
- package/lib/auto-complete/styles/light.d.ts +14 -1
- package/lib/avatar-group/index.d.ts +3 -2
- package/lib/avatar-group/src/AvatarGroup.d.ts +1 -4
- package/lib/avatar-group/src/generic-public-types.d.ts +18 -0
- package/lib/avatar-group/src/generic-public-types.js +2 -0
- package/lib/avatar-group/src/public-types.d.ts +10 -0
- package/lib/avatar-group/src/public-types.js +2 -0
- package/lib/back-top/src/BackTop.d.ts +1 -1
- package/lib/badge/src/Badge.d.ts +1 -1
- package/lib/button/src/Button.d.ts +1 -1
- package/lib/card/src/Card.d.ts +7 -2
- package/lib/card/src/Card.js +3 -2
- package/lib/carousel/src/Carousel.d.ts +4 -4
- package/lib/carousel/src/Carousel.js +19 -9
- package/lib/carousel/src/CarouselDots.d.ts +2 -2
- package/lib/cascader/src/Cascader.d.ts +163 -20
- package/lib/cascader/src/CascaderMenu.d.ts +56 -4
- package/lib/cascader/src/CascaderOption.d.ts +56 -4
- package/lib/cascader/src/CascaderSelectMenu.d.ts +57 -5
- package/lib/cascader/src/CascaderSubmenu.d.ts +56 -4
- package/lib/cascader/styles/light.d.ts +14 -1
- package/lib/color-picker/src/ColorInputUnit.d.ts +26 -2
- package/lib/color-picker/src/ColorPicker.d.ts +128 -11
- package/lib/color-picker/src/ColorPickerTrigger.js +2 -1
- package/lib/color-picker/src/utils.d.ts +2 -0
- package/lib/color-picker/src/utils.js +26 -0
- package/lib/color-picker/styles/light.d.ts +14 -1
- package/lib/components.d.ts +1 -0
- package/lib/components.js +1 -0
- package/lib/config-provider/src/ConfigProvider.d.ts +1 -1
- package/lib/config-provider/src/internal-interface.d.ts +2 -0
- package/lib/data-table/src/DataTable.d.ts +674 -52
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +333 -25
- package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +332 -24
- package/lib/data-table/src/TableParts/Body.d.ts +332 -24
- package/lib/data-table/src/TableParts/Header.d.ts +332 -24
- package/lib/data-table/src/interface.d.ts +253 -18
- package/lib/data-table/src/use-sorter.d.ts +2 -5
- package/lib/data-table/src/use-table-data.d.ts +1 -4
- package/lib/data-table/src/utils.js +2 -1
- package/lib/data-table/styles/light.d.ts +84 -6
- package/lib/date-picker/src/DatePicker.d.ts +229 -23
- package/lib/date-picker/src/DatePicker.js +1 -1
- package/lib/date-picker/src/panel/date.d.ts +110 -10
- package/lib/date-picker/src/panel/daterange.d.ts +111 -11
- package/lib/date-picker/src/panel/datetime.d.ts +110 -10
- package/lib/date-picker/src/panel/datetime.js +1 -1
- package/lib/date-picker/src/panel/datetimerange.d.ts +111 -11
- package/lib/date-picker/src/panel/datetimerange.js +2 -2
- package/lib/date-picker/src/panel/month.d.ts +110 -10
- package/lib/date-picker/src/panel/monthrange.d.ts +111 -11
- package/lib/date-picker/src/panel/panelHeader.d.ts +436 -36
- package/lib/date-picker/src/panel/use-calendar.d.ts +109 -9
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +110 -10
- package/lib/date-picker/src/panel/use-dual-calendar.js +3 -3
- package/lib/date-picker/src/panel/use-panel-common.d.ts +109 -9
- package/lib/date-picker/src/panel/use-panel-common.js +1 -1
- package/lib/date-picker/src/props.d.ts +85 -7
- package/lib/date-picker/src/props.js +1 -1
- package/lib/date-picker/src/utils.d.ts +2 -1
- package/lib/date-picker/src/utils.js +5 -1
- package/lib/date-picker/styles/light.d.ts +28 -2
- package/lib/dialog/src/Dialog.d.ts +5 -2
- package/lib/dialog/src/Dialog.js +1 -1
- package/lib/dialog/src/DialogEnvironment.d.ts +11 -4
- package/lib/dialog/src/DialogEnvironment.js +3 -3
- package/lib/dialog/src/DialogProvider.d.ts +38 -34
- package/lib/dialog/src/dialogProps.d.ts +2 -1
- package/lib/dialog/src/dialogProps.js +2 -1
- package/lib/drawer/src/Drawer.d.ts +4 -4
- package/lib/drawer/src/DrawerBodyWrapper.d.ts +1 -1
- package/lib/dropdown/src/Dropdown.d.ts +162 -21
- package/lib/dropdown/src/DropdownMenu.d.ts +2 -2
- package/lib/dropdown/styles/light.d.ts +14 -1
- package/lib/dynamic-input/src/DynamicInput.d.ts +153 -12
- package/lib/dynamic-input/src/InputPreset.d.ts +52 -4
- package/lib/dynamic-input/src/PairPreset.d.ts +52 -4
- package/lib/dynamic-input/styles/light.d.ts +14 -1
- package/lib/dynamic-tags/src/DynamicTags.d.ts +153 -12
- package/lib/dynamic-tags/styles/light.d.ts +14 -1
- package/lib/ellipsis/src/Ellipsis.d.ts +154 -11
- package/lib/ellipsis/src/PerformantEllipsis.d.ts +84 -6
- package/lib/ellipsis/src/PerformantEllipsis.js +17 -7
- package/lib/ellipsis/styles/light.d.ts +14 -1
- package/lib/empty/src/Empty.d.ts +1 -1
- package/lib/form/src/FormItem.d.ts +8 -2
- package/lib/form/src/FormItem.js +3 -2
- package/lib/form/src/FormItemCol.d.ts +7 -1
- package/lib/form/src/FormItemCol.js +17 -7
- package/lib/form/src/FormItemGridItem.d.ts +7 -1
- package/lib/form/src/FormItemGridItem.js +17 -7
- package/lib/form/src/FormItemRow.d.ts +7 -1
- package/lib/form/src/FormItemRow.js +17 -7
- package/lib/form/src/utils.d.ts +1 -1
- package/lib/gradient-text/src/GradientText.d.ts +2 -2
- package/lib/grid/src/GridItem.d.ts +1 -1
- package/lib/heatmap/index.d.ts +6 -0
- package/lib/heatmap/index.js +27 -0
- package/lib/heatmap/src/ColorIndicator.d.ts +25 -0
- package/lib/heatmap/src/ColorIndicator.js +27 -0
- package/lib/heatmap/src/Heatmap.d.ts +385 -0
- package/lib/heatmap/src/Heatmap.js +248 -0
- package/lib/heatmap/src/Rect.d.ts +57 -0
- package/lib/heatmap/src/Rect.js +64 -0
- package/lib/heatmap/src/animationStyle.d.ts +6 -0
- package/lib/heatmap/src/animationStyle.js +52 -0
- package/lib/heatmap/src/interface.d.ts +7 -0
- package/lib/heatmap/src/interface.js +2 -0
- package/lib/heatmap/src/public-types.d.ts +16 -0
- package/lib/heatmap/src/public-types.js +2 -0
- package/lib/heatmap/src/styles/index.cssr.d.ts +2 -0
- package/lib/heatmap/src/styles/index.cssr.js +107 -0
- package/lib/heatmap/src/styles/rtl.cssr.d.ts +2 -0
- package/lib/heatmap/src/styles/rtl.cssr.js +9 -0
- package/lib/heatmap/src/theme.d.ts +8 -0
- package/lib/heatmap/src/theme.js +10 -0
- package/lib/heatmap/src/utils/index.d.ts +32 -0
- package/lib/heatmap/src/utils/index.js +135 -0
- package/lib/heatmap/styles/dark.d.ts +3 -0
- package/lib/heatmap/styles/dark.js +13 -0
- package/lib/heatmap/styles/index.d.ts +3 -0
- package/lib/heatmap/styles/index.js +10 -0
- package/lib/heatmap/styles/light.d.ts +31 -0
- package/lib/heatmap/styles/light.js +39 -0
- package/lib/heatmap/styles/rtl.d.ts +2 -0
- package/lib/heatmap/styles/rtl.js +11 -0
- package/lib/highlight/src/utils.js +10 -21
- package/lib/icon/src/styles/index.cssr.js +0 -1
- package/lib/image/index.d.ts +3 -1
- package/lib/image/index.js +4 -1
- package/lib/image/src/Image.d.ts +133 -23
- package/lib/image/src/Image.js +43 -23
- package/lib/image/src/ImageGroup.d.ts +200 -35
- package/lib/image/src/ImageGroup.js +111 -26
- package/lib/image/src/ImagePreview.d.ts +258 -23
- package/lib/image/src/ImagePreview.js +60 -33
- package/lib/image/src/interface.d.ts +42 -3
- package/lib/image/src/public-types.d.ts +14 -0
- package/lib/image/styles/light.d.ts +14 -1
- package/lib/input/src/Input.d.ts +146 -12
- package/lib/input/src/Input.js +24 -12
- package/lib/input/src/InputGroupLabel.d.ts +129 -22
- package/lib/input/src/InputGroupLabel.js +8 -6
- package/lib/input/styles/dark.d.ts +139 -2
- package/lib/input/styles/dark.js +35 -29
- package/lib/input/styles/light.d.ts +76 -3
- package/lib/input/styles/light.js +7 -2
- package/lib/input-number/src/InputNumber.d.ts +152 -11
- package/lib/input-number/styles/light.d.ts +14 -1
- package/lib/input-otp/src/InputOtp.d.ts +158 -12
- package/lib/input-otp/src/InputOtp.js +12 -16
- package/lib/input-otp/src/public-types.d.ts +1 -0
- package/lib/input-otp/src/styles/index.cssr.js +11 -2
- package/lib/input-otp/styles/dark.js +1 -1
- package/lib/input-otp/styles/light.d.ts +14 -1
- package/lib/layout/src/LayoutSider.d.ts +1 -1
- package/lib/legacy-transfer/src/Transfer.d.ts +154 -13
- package/lib/legacy-transfer/src/TransferFilter.d.ts +52 -4
- package/lib/legacy-transfer/src/TransferList.d.ts +52 -4
- package/lib/legacy-transfer/src/TransferListItem.d.ts +52 -4
- package/lib/legacy-transfer/styles/light.d.ts +14 -1
- package/lib/locales/common/arDZ.js +6 -0
- package/lib/locales/common/azAZ.js +6 -0
- package/lib/locales/common/csCZ.js +6 -0
- package/lib/locales/common/daDK.d.ts +3 -0
- package/lib/locales/common/daDK.js +132 -0
- package/lib/locales/common/deDE.js +6 -0
- package/lib/locales/common/enGB.js +6 -0
- package/lib/locales/common/enUS.d.ts +6 -0
- package/lib/locales/common/enUS.js +6 -0
- package/lib/locales/common/eo.js +6 -0
- package/lib/locales/common/esAR.js +6 -0
- package/lib/locales/common/etEE.js +6 -0
- package/lib/locales/common/faIR.js +6 -0
- package/lib/locales/common/frFR.js +6 -0
- package/lib/locales/common/idID.js +6 -0
- package/lib/locales/common/itIT.js +6 -0
- package/lib/locales/common/jaJP.js +6 -0
- package/lib/locales/common/kmKH.js +6 -0
- package/lib/locales/common/koKR.js +6 -0
- package/lib/locales/common/nbNO.js +6 -0
- package/lib/locales/common/nlNL.js +6 -0
- package/lib/locales/common/plPL.js +6 -0
- package/lib/locales/common/ptBR.js +6 -0
- package/lib/locales/common/ruRU.js +6 -0
- package/lib/locales/common/skSK.js +6 -0
- package/lib/locales/common/svSE.js +8 -2
- package/lib/locales/common/thTH.js +6 -0
- package/lib/locales/common/trTR.js +6 -0
- package/lib/locales/common/ugCN.js +6 -0
- package/lib/locales/common/ukUA.js +6 -0
- package/lib/locales/common/uzUZ.js +6 -0
- package/lib/locales/common/viVN.js +6 -0
- package/lib/locales/common/zhCN.js +6 -0
- package/lib/locales/common/zhTW.js +6 -0
- package/lib/locales/date/daDK.d.ts +3 -0
- package/lib/locales/date/daDK.js +8 -0
- package/lib/locales/index.d.ts +2 -0
- package/lib/locales/index.js +6 -2
- package/lib/log/src/Log.d.ts +1 -1
- package/lib/marquee/src/Marquee.js +4 -3
- package/lib/mention/src/Mention.d.ts +155 -14
- package/lib/mention/styles/light.d.ts +14 -1
- package/lib/menu/src/Menu.d.ts +314 -28
- package/lib/menu/src/MenuOption.d.ts +113 -9
- package/lib/menu/src/MenuOption.js +6 -4
- package/lib/menu/src/MenuOptionContent.d.ts +1 -1
- package/lib/menu/src/MenuOptionGroup.d.ts +1 -1
- package/lib/menu/src/MenuOptionGroup.js +8 -2
- package/lib/menu/src/Submenu.d.ts +114 -10
- package/lib/menu/src/use-menu-child.d.ts +2 -0
- package/lib/menu/src/use-menu-child.js +2 -1
- package/lib/menu/styles/light.d.ts +28 -2
- package/lib/message/src/Message.d.ts +1 -0
- package/lib/message/src/Message.js +3 -2
- package/lib/message/src/MessageProvider.d.ts +10 -1
- package/lib/message/src/styles/index.cssr.js +1 -0
- package/lib/message/styles/light.d.ts +1 -0
- package/lib/message/styles/light.js +1 -1
- package/lib/modal/src/BodyWrapper.d.ts +10 -4
- package/lib/modal/src/BodyWrapper.js +7 -3
- package/lib/modal/src/Modal.d.ts +28 -11
- package/lib/modal/src/Modal.js +10 -4
- package/lib/modal/src/ModalEnvironment.d.ts +22 -10
- package/lib/modal/src/ModalEnvironment.js +18 -8
- package/lib/modal/src/ModalProvider.d.ts +2 -1
- package/lib/modal/src/ModalProvider.js +4 -2
- package/lib/modal/src/presetProps.d.ts +2 -1
- package/lib/modal/src/styles/index.cssr.js +3 -1
- package/lib/notification/src/Notification.d.ts +2 -2
- package/lib/notification/src/NotificationEnvironment.d.ts +1 -1
- package/lib/notification/src/NotificationProvider.d.ts +5 -5
- package/lib/pagination/src/Pagination.d.ts +460 -33
- package/lib/pagination/styles/light.d.ts +42 -3
- package/lib/popconfirm/src/Popconfirm.d.ts +159 -18
- package/lib/popconfirm/src/Popconfirm.js +20 -15
- package/lib/popconfirm/src/PopconfirmPanel.d.ts +1 -1
- package/lib/popconfirm/styles/light.d.ts +14 -1
- package/lib/popover/src/Popover.d.ts +133 -16
- package/lib/popover/src/Popover.js +17 -7
- package/lib/popover/src/PopoverBody.d.ts +129 -12
- package/lib/popover/src/PopoverBody.js +5 -2
- package/lib/popover/src/styles/rtl.cssr.d.ts +2 -0
- package/lib/popover/src/styles/rtl.cssr.js +10 -0
- package/lib/popover/styles/dark.js +4 -0
- package/lib/popover/styles/index.d.ts +1 -0
- package/lib/popover/styles/index.js +3 -1
- package/lib/popover/styles/light.d.ts +27 -2
- package/lib/popover/styles/light.js +7 -2
- package/lib/popover/styles/rtl.d.ts +2 -0
- package/lib/popover/styles/rtl.js +13 -0
- package/lib/popselect/src/Popselect.d.ts +213 -72
- package/lib/popselect/src/Popselect.js +17 -7
- package/lib/popselect/src/PopselectPanel.d.ts +55 -7
- package/lib/popselect/styles/light.d.ts +14 -1
- package/lib/preset.js +17 -7
- package/lib/progress/src/Circle.d.ts +1 -1
- package/lib/progress/src/Circle.js +11 -2
- package/lib/progress/src/Progress.d.ts +1 -1
- package/lib/radio/src/Radio.js +2 -2
- package/lib/radio/src/RadioButton.d.ts +2 -2
- package/lib/radio/src/styles/radio.cssr.js +3 -7
- package/lib/rate/src/Rate.d.ts +1 -1
- package/lib/result/src/Result.d.ts +1 -1
- package/lib/select/src/Select.d.ts +164 -21
- package/lib/select/styles/light.d.ts +14 -1
- package/lib/styles.d.ts +3 -3
- package/lib/styles.js +5 -2
- package/lib/tabs/src/Tab.d.ts +3 -3
- package/lib/tabs/src/Tabs.d.ts +1 -1
- package/lib/tabs/src/styles/index.cssr.js +4 -4
- package/lib/tag/src/Tag.d.ts +1 -1
- package/lib/themes/dark.js +103 -101
- package/lib/themes/light.js +102 -100
- package/lib/time-picker/src/Panel.d.ts +59 -11
- package/lib/time-picker/src/TimePicker.d.ts +156 -15
- package/lib/time-picker/styles/light.d.ts +14 -1
- package/lib/timeline/src/TimelineItem.d.ts +1 -1
- package/lib/tooltip/src/Tooltip.d.ts +159 -18
- package/lib/tooltip/styles/light.d.ts +14 -1
- package/lib/transfer/src/Transfer.d.ts +154 -13
- package/lib/transfer/src/TransferFilter.d.ts +52 -4
- package/lib/transfer/src/TransferList.d.ts +52 -4
- package/lib/transfer/src/TransferListItem.d.ts +52 -4
- package/lib/transfer/styles/light.d.ts +14 -1
- package/lib/tree/src/Tree.d.ts +42 -38
- package/lib/tree/src/Tree.js +4 -3
- package/lib/tree/src/TreeNode.d.ts +2 -2
- package/lib/tree/src/TreeNodeContent.d.ts +3 -3
- package/lib/tree/src/styles/index.cssr.js +7 -2
- package/lib/tree-select/src/TreeSelect.d.ts +169 -26
- package/lib/tree-select/styles/index.d.ts +1 -0
- package/lib/tree-select/styles/index.js +3 -1
- package/lib/tree-select/styles/light.d.ts +14 -1
- package/lib/tree-select/styles/rtl.d.ts +2 -0
- package/lib/tree-select/styles/rtl.js +20 -0
- package/lib/typography/src/create-header.d.ts +1 -1
- package/lib/typography/src/headers.d.ts +6 -6
- package/lib/upload/src/Upload.d.ts +1 -0
- package/lib/upload/src/Upload.js +4 -3
- package/lib/upload/src/UploadFile.d.ts +4 -2
- package/lib/upload/src/UploadFile.js +1 -1
- package/lib/upload/src/icons.d.ts +2 -2
- package/lib/upload/src/icons.js +12 -7
- package/lib/upload/src/styles/rtl.cssr.d.ts +2 -0
- package/lib/upload/src/styles/rtl.cssr.js +10 -0
- package/lib/upload/styles/index.d.ts +1 -0
- package/lib/upload/styles/index.js +3 -1
- package/lib/upload/styles/rtl.d.ts +2 -0
- package/lib/upload/styles/rtl.js +11 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/virtual-list/src/VirtualList.d.ts +1 -1
- package/package.json +30 -19
- package/volar.d.ts +24 -22
- package/web-types.json +599 -61
- package/es/avatar-group/src/interface.d.ts +0 -8
- package/lib/avatar-group/src/interface.d.ts +0 -8
- /package/es/{avatar-group/src/interface.mjs → _utils/ts/ts.mjs} +0 -0
- /package/lib/{avatar-group/src/interface.js → _utils/ts/ts.js} +0 -0
|
@@ -183,7 +183,20 @@ declare const treeSelectLight: import("../../_mixins/use-theme").Theme<"TreeSele
|
|
|
183
183
|
arrowOffsetVertical: string;
|
|
184
184
|
arrowHeight: string;
|
|
185
185
|
padding: string;
|
|
186
|
-
},
|
|
186
|
+
}, {
|
|
187
|
+
Scrollbar: import("../../_mixins/use-theme").Theme<"Scrollbar", {
|
|
188
|
+
height: string;
|
|
189
|
+
width: string;
|
|
190
|
+
borderRadius: string;
|
|
191
|
+
color: string;
|
|
192
|
+
colorHover: string;
|
|
193
|
+
railInsetHorizontalBottom: string;
|
|
194
|
+
railInsetHorizontalTop: string;
|
|
195
|
+
railInsetVerticalRight: string;
|
|
196
|
+
railInsetVerticalLeft: string;
|
|
197
|
+
railColor: string;
|
|
198
|
+
}, any>;
|
|
199
|
+
}>;
|
|
187
200
|
}>;
|
|
188
201
|
}>;
|
|
189
202
|
export default treeSelectLight;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.treeSelectRtl = void 0;
|
|
4
|
+
const styles_1 = require("../../_internal/scrollbar/styles");
|
|
5
|
+
const styles_2 = require("../../_internal/select-menu/styles");
|
|
6
|
+
const styles_3 = require("../../_internal/selection/styles");
|
|
7
|
+
const cssr_1 = require("../../_utils/cssr");
|
|
8
|
+
const styles_4 = require("../../tag/styles");
|
|
9
|
+
const styles_5 = require("../../tree/styles");
|
|
10
|
+
exports.treeSelectRtl = {
|
|
11
|
+
name: 'Select',
|
|
12
|
+
style: (0, cssr_1.c)([]),
|
|
13
|
+
peers: [
|
|
14
|
+
styles_3.internalSelectionRtl,
|
|
15
|
+
styles_2.internalSelectMenuRtl,
|
|
16
|
+
styles_4.tagRtl,
|
|
17
|
+
styles_1.scrollbarRtl,
|
|
18
|
+
styles_5.treeRtl
|
|
19
|
+
]
|
|
20
|
+
};
|
|
@@ -632,7 +632,7 @@ declare const _default: (level: "1" | "2" | "3" | "4" | "5" | "6") => import("vu
|
|
|
632
632
|
ulPadding: string;
|
|
633
633
|
}, any>>>;
|
|
634
634
|
}>> & Readonly<{}>, {
|
|
635
|
-
readonly type: "error" | "default" | "info" | "
|
|
635
|
+
readonly type: "error" | "default" | "info" | "warning" | "success";
|
|
636
636
|
readonly alignText: boolean;
|
|
637
637
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
638
638
|
export default _default;
|
|
@@ -423,7 +423,7 @@ export declare const NH1: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
423
423
|
ulPadding: string;
|
|
424
424
|
}, any>>>;
|
|
425
425
|
}>> & Readonly<{}>, {
|
|
426
|
-
readonly type: "error" | "default" | "info" | "
|
|
426
|
+
readonly type: "error" | "default" | "info" | "warning" | "success";
|
|
427
427
|
readonly alignText: boolean;
|
|
428
428
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
429
429
|
export declare const NH2: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -851,7 +851,7 @@ export declare const NH2: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
851
851
|
ulPadding: string;
|
|
852
852
|
}, any>>>;
|
|
853
853
|
}>> & Readonly<{}>, {
|
|
854
|
-
readonly type: "error" | "default" | "info" | "
|
|
854
|
+
readonly type: "error" | "default" | "info" | "warning" | "success";
|
|
855
855
|
readonly alignText: boolean;
|
|
856
856
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
857
857
|
export declare const NH3: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -1279,7 +1279,7 @@ export declare const NH3: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
1279
1279
|
ulPadding: string;
|
|
1280
1280
|
}, any>>>;
|
|
1281
1281
|
}>> & Readonly<{}>, {
|
|
1282
|
-
readonly type: "error" | "default" | "info" | "
|
|
1282
|
+
readonly type: "error" | "default" | "info" | "warning" | "success";
|
|
1283
1283
|
readonly alignText: boolean;
|
|
1284
1284
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1285
1285
|
export declare const NH4: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -1707,7 +1707,7 @@ export declare const NH4: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
1707
1707
|
ulPadding: string;
|
|
1708
1708
|
}, any>>>;
|
|
1709
1709
|
}>> & Readonly<{}>, {
|
|
1710
|
-
readonly type: "error" | "default" | "info" | "
|
|
1710
|
+
readonly type: "error" | "default" | "info" | "warning" | "success";
|
|
1711
1711
|
readonly alignText: boolean;
|
|
1712
1712
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1713
1713
|
export declare const NH5: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -2135,7 +2135,7 @@ export declare const NH5: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
2135
2135
|
ulPadding: string;
|
|
2136
2136
|
}, any>>>;
|
|
2137
2137
|
}>> & Readonly<{}>, {
|
|
2138
|
-
readonly type: "error" | "default" | "info" | "
|
|
2138
|
+
readonly type: "error" | "default" | "info" | "warning" | "success";
|
|
2139
2139
|
readonly alignText: boolean;
|
|
2140
2140
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2141
2141
|
export declare const NH6: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -2563,6 +2563,6 @@ export declare const NH6: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
2563
2563
|
ulPadding: string;
|
|
2564
2564
|
}, any>>>;
|
|
2565
2565
|
}>> & Readonly<{}>, {
|
|
2566
|
-
readonly type: "error" | "default" | "info" | "
|
|
2566
|
+
readonly type: "error" | "default" | "info" | "warning" | "success";
|
|
2567
2567
|
readonly alignText: boolean;
|
|
2568
2568
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -1671,6 +1671,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1671
1671
|
draggerInsideRef: {
|
|
1672
1672
|
value: boolean;
|
|
1673
1673
|
};
|
|
1674
|
+
rtlEnabled: import("vue").Ref<import("../../config-provider/src/internal-interface").RtlItem | undefined, import("../../config-provider/src/internal-interface").RtlItem | undefined> | undefined;
|
|
1674
1675
|
inputElRef: import("vue").Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
1675
1676
|
mergedTheme: import("vue").ComputedRef<{
|
|
1676
1677
|
common: import("../..").ThemeCommonVars;
|
package/lib/upload/src/Upload.js
CHANGED
|
@@ -237,8 +237,9 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
237
237
|
if (props.abstract && props.listType === 'image-card') {
|
|
238
238
|
(0, _utils_1.throwError)('upload', 'when the list-type is image-card, abstract is not supported.');
|
|
239
239
|
}
|
|
240
|
-
const { mergedClsPrefixRef, inlineThemeDisabled } = (0, _mixins_1.useConfig)(props);
|
|
240
|
+
const { mergedClsPrefixRef, inlineThemeDisabled, mergedRtlRef } = (0, _mixins_1.useConfig)(props);
|
|
241
241
|
const themeRef = (0, _mixins_1.useTheme)('Upload', '-upload', index_cssr_1.default, styles_1.uploadLight, props, mergedClsPrefixRef);
|
|
242
|
+
const rtlEnabledRef = (0, _mixins_1.useRtl)('Upload', mergedRtlRef, mergedClsPrefixRef);
|
|
242
243
|
const formItem = (0, _mixins_1.useFormItem)(props);
|
|
243
244
|
const uncontrolledFileListRef = (0, vue_1.ref)(props.defaultFileList);
|
|
244
245
|
const controlledFileListRef = (0, vue_1.toRef)(props, 'fileList');
|
|
@@ -509,8 +510,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
509
510
|
submit,
|
|
510
511
|
openOpenFileDialog
|
|
511
512
|
};
|
|
512
|
-
return Object.assign({ mergedClsPrefix: mergedClsPrefixRef, draggerInsideRef,
|
|
513
|
-
inputElRef, mergedTheme: themeRef, dragOver: dragOverRef, mergedMultiple: mergedMultipleRef, cssVars: inlineThemeDisabled ? undefined : cssVarsRef, themeClass: themeClassHandle === null || themeClassHandle === void 0 ? void 0 : themeClassHandle.themeClass, onRender: themeClassHandle === null || themeClassHandle === void 0 ? void 0 : themeClassHandle.onRender, handleFileInputChange }, exposedMethods);
|
|
513
|
+
return Object.assign({ mergedClsPrefix: mergedClsPrefixRef, draggerInsideRef, rtlEnabled: rtlEnabledRef, inputElRef, mergedTheme: themeRef, dragOver: dragOverRef, mergedMultiple: mergedMultipleRef, cssVars: inlineThemeDisabled ? undefined : cssVarsRef, themeClass: themeClassHandle === null || themeClassHandle === void 0 ? void 0 : themeClassHandle.themeClass, onRender: themeClassHandle === null || themeClassHandle === void 0 ? void 0 : themeClassHandle.onRender, handleFileInputChange }, exposedMethods);
|
|
514
514
|
},
|
|
515
515
|
render() {
|
|
516
516
|
var _a, _b;
|
|
@@ -532,6 +532,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
532
532
|
onRender === null || onRender === void 0 ? void 0 : onRender();
|
|
533
533
|
return ((0, vue_1.h)("div", { class: [
|
|
534
534
|
`${mergedClsPrefix}-upload`,
|
|
535
|
+
this.rtlEnabled && `${mergedClsPrefix}-upload--rtl`,
|
|
535
536
|
draggerInsideRef.value && `${mergedClsPrefix}-upload--dragger-inside`,
|
|
536
537
|
this.dragOver && `${mergedClsPrefix}-upload--drag-over`,
|
|
537
538
|
this.themeClass
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ImageInst } from '../../image
|
|
1
|
+
import type { ImageInst } from '../../image';
|
|
2
2
|
import type { ListType } from './interface';
|
|
3
3
|
import type { UploadSettledFileInfo } from './public-types';
|
|
4
4
|
import { type PropType } from 'vue';
|
|
@@ -541,7 +541,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
541
541
|
} | undefined;
|
|
542
542
|
};
|
|
543
543
|
}>;
|
|
544
|
-
progressStatus: import("vue").ComputedRef<"info" | "
|
|
544
|
+
progressStatus: import("vue").ComputedRef<"info" | "error" | "success">;
|
|
545
545
|
buttonType: import("vue").ComputedRef<"error" | undefined>;
|
|
546
546
|
showProgress: import("vue").ComputedRef<boolean>;
|
|
547
547
|
disabled: import("vue").Ref<boolean, boolean>;
|
|
@@ -555,8 +555,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
555
555
|
renderIcon: import("vue").Ref<import("./interface").RenderIcon | undefined, import("./interface").RenderIcon | undefined>;
|
|
556
556
|
imageRef: import("vue").Ref<{
|
|
557
557
|
click: () => void;
|
|
558
|
+
showPreview: () => void;
|
|
558
559
|
} | null, ImageInst | {
|
|
559
560
|
click: () => void;
|
|
561
|
+
showPreview: () => void;
|
|
560
562
|
} | null>;
|
|
561
563
|
handleRemoveOrCancelClick: (e: MouseEvent) => void;
|
|
562
564
|
handleDownloadClick: (e: MouseEvent) => void;
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* Since image is too large compared with normal icons, we keep it inside upload
|
|
3
3
|
* now.
|
|
4
4
|
*/
|
|
5
|
-
export declare
|
|
6
|
-
export declare
|
|
5
|
+
export declare function renderImageIcon(): JSX.Element;
|
|
6
|
+
export declare function renderDocumentIcon(): JSX.Element;
|
package/lib/upload/src/icons.js
CHANGED
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.renderImageIcon = renderImageIcon;
|
|
4
|
+
exports.renderDocumentIcon = renderDocumentIcon;
|
|
4
5
|
const vue_1 = require("vue");
|
|
5
6
|
/**
|
|
6
7
|
* Since image is too large compared with normal icons, we keep it inside upload
|
|
7
8
|
* now.
|
|
8
9
|
*/
|
|
9
|
-
|
|
10
|
-
(0, vue_1.h)("
|
|
11
|
-
(0, vue_1.h)("
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
10
|
+
function renderImageIcon() {
|
|
11
|
+
return ((0, vue_1.h)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 28 28" },
|
|
12
|
+
(0, vue_1.h)("g", { fill: "none" },
|
|
13
|
+
(0, vue_1.h)("path", { d: "M21.75 3A3.25 3.25 0 0 1 25 6.25v15.5A3.25 3.25 0 0 1 21.75 25H6.25A3.25 3.25 0 0 1 3 21.75V6.25A3.25 3.25 0 0 1 6.25 3h15.5zm.583 20.4l-7.807-7.68a.75.75 0 0 0-.968-.07l-.084.07l-7.808 7.68c.183.065.38.1.584.1h15.5c.204 0 .4-.035.583-.1l-7.807-7.68l7.807 7.68zM21.75 4.5H6.25A1.75 1.75 0 0 0 4.5 6.25v15.5c0 .208.036.408.103.593l7.82-7.692a2.25 2.25 0 0 1 3.026-.117l.129.117l7.82 7.692c.066-.185.102-.385.102-.593V6.25a1.75 1.75 0 0 0-1.75-1.75zm-3.25 3a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0-5zm0 1.5a1 1 0 1 0 0 2a1 1 0 0 0 0-2z", fill: "currentColor" }))));
|
|
14
|
+
}
|
|
15
|
+
function renderDocumentIcon() {
|
|
16
|
+
return ((0, vue_1.h)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 28 28" },
|
|
17
|
+
(0, vue_1.h)("g", { fill: "none" },
|
|
18
|
+
(0, vue_1.h)("path", { d: "M6.4 2A2.4 2.4 0 0 0 4 4.4v19.2A2.4 2.4 0 0 0 6.4 26h15.2a2.4 2.4 0 0 0 2.4-2.4V11.578c0-.729-.29-1.428-.805-1.944l-6.931-6.931A2.4 2.4 0 0 0 14.567 2H6.4zm-.9 2.4a.9.9 0 0 1 .9-.9H14V10a2 2 0 0 0 2 2h6.5v11.6a.9.9 0 0 1-.9.9H6.4a.9.9 0 0 1-.9-.9V4.4zm16.44 6.1H16a.5.5 0 0 1-.5-.5V4.06l6.44 6.44z", fill: "currentColor" }))));
|
|
19
|
+
}
|
|
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.uploadLight = exports.uploadDark = void 0;
|
|
6
|
+
exports.uploadRtl = exports.uploadLight = exports.uploadDark = void 0;
|
|
7
7
|
var dark_1 = require("./dark");
|
|
8
8
|
Object.defineProperty(exports, "uploadDark", { enumerable: true, get: function () { return __importDefault(dark_1).default; } });
|
|
9
9
|
var light_1 = require("./light");
|
|
10
10
|
Object.defineProperty(exports, "uploadLight", { enumerable: true, get: function () { return __importDefault(light_1).default; } });
|
|
11
|
+
var rtl_1 = require("./rtl");
|
|
12
|
+
Object.defineProperty(exports, "uploadRtl", { enumerable: true, get: function () { return rtl_1.uploadRtl; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.uploadRtl = void 0;
|
|
7
|
+
const rtl_cssr_1 = __importDefault(require("../src/styles/rtl.cssr"));
|
|
8
|
+
exports.uploadRtl = {
|
|
9
|
+
name: 'Upload',
|
|
10
|
+
style: rtl_cssr_1.default
|
|
11
|
+
};
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.
|
|
1
|
+
declare const _default: "2.43.0";
|
|
2
2
|
export default _default;
|
package/lib/version.js
CHANGED
|
@@ -154,9 +154,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
154
154
|
readonly paddingBottom: string | number;
|
|
155
155
|
readonly paddingTop: string | number;
|
|
156
156
|
readonly items: VirtualListItemData[];
|
|
157
|
+
readonly keyField: string;
|
|
157
158
|
readonly itemResizable: boolean;
|
|
158
159
|
readonly visibleItemsTag: string | object;
|
|
159
160
|
readonly ignoreItemResize: boolean;
|
|
160
|
-
readonly keyField: string;
|
|
161
161
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
162
162
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "naive-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.43.0",
|
|
4
4
|
"description": "A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast",
|
|
5
5
|
"author": "07akioni",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"README.md",
|
|
27
27
|
"dist",
|
|
28
28
|
"es",
|
|
29
|
+
"generic",
|
|
29
30
|
"lib",
|
|
30
31
|
"volar.d.ts",
|
|
31
32
|
"web-types.json"
|
|
@@ -53,23 +54,29 @@
|
|
|
53
54
|
"treemate": "^0.3.11",
|
|
54
55
|
"vdirs": "^0.1.8",
|
|
55
56
|
"vooks": "^0.2.12",
|
|
56
|
-
"vueuc": "^0.4.
|
|
57
|
+
"vueuc": "^0.4.65"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
60
|
"@antfu/eslint-config": "^3.9.2",
|
|
60
|
-
"@babel/core": "^7.
|
|
61
|
-
"@babel/generator": "^7.
|
|
62
|
-
"@babel/parser": "^7.
|
|
61
|
+
"@babel/core": "^7.28.0",
|
|
62
|
+
"@babel/generator": "^7.28.0",
|
|
63
|
+
"@babel/parser": "^7.28.0",
|
|
63
64
|
"@babel/preset-env": "^7.22.15",
|
|
64
|
-
"@babel/traverse": "^7.
|
|
65
|
+
"@babel/traverse": "^7.28.0",
|
|
65
66
|
"@lylajs/web": "^1.2.2",
|
|
66
67
|
"@rollup/plugin-babel": "^6.0.3",
|
|
67
68
|
"@rollup/plugin-commonjs": "^26.0.1",
|
|
68
69
|
"@rollup/plugin-node-resolve": "^15.2.1",
|
|
69
70
|
"@rollup/plugin-replace": "^5.0.2",
|
|
70
71
|
"@rollup/plugin-terser": "^0.4.3",
|
|
72
|
+
"@types/babel__core": "^7.20.5",
|
|
73
|
+
"@types/babel__generator": "^7.27.0",
|
|
74
|
+
"@types/babel__traverse": "^7.20.7",
|
|
71
75
|
"@types/estree": "^1.0.1",
|
|
76
|
+
"@types/fs-extra": "^11.0.4",
|
|
72
77
|
"@types/jest": "^29.5.4",
|
|
78
|
+
"@types/node": "^24.0.12",
|
|
79
|
+
"@types/superagent": "^8.1.9",
|
|
73
80
|
"@vicons/fluent": "^0.13.0",
|
|
74
81
|
"@vicons/ionicons4": "^0.13.0",
|
|
75
82
|
"@vicons/ionicons5": "^0.13.0",
|
|
@@ -82,10 +89,11 @@
|
|
|
82
89
|
"codesandbox": "^2.2.3",
|
|
83
90
|
"cssnano": "^7.0.4",
|
|
84
91
|
"deepmerge": "^4.3.1",
|
|
85
|
-
"esbuild": "0.
|
|
92
|
+
"esbuild": "0.25.0",
|
|
86
93
|
"eslint": "^9.6.0",
|
|
87
|
-
"express": "^
|
|
94
|
+
"express": "^5.1.0",
|
|
88
95
|
"fast-glob": "^3.3.1",
|
|
96
|
+
"fflate": "^0.8.2",
|
|
89
97
|
"fs-extra": "^11.1.1",
|
|
90
98
|
"grapheme-splitter": "^1.0.4",
|
|
91
99
|
"husky": "^9.0.6",
|
|
@@ -98,16 +106,17 @@
|
|
|
98
106
|
"marked": "^12.0.2",
|
|
99
107
|
"prettier": "^3.0.3",
|
|
100
108
|
"rimraf": "^6.0.1",
|
|
101
|
-
"rollup": "^4.
|
|
109
|
+
"rollup": "^4.44.2",
|
|
102
110
|
"rollup-plugin-esbuild": "^6.1.0",
|
|
103
111
|
"superagent": "^10.0.0",
|
|
104
112
|
"ts-jest": "^29.1.1",
|
|
105
|
-
"
|
|
113
|
+
"tsx": "^4.20.3",
|
|
114
|
+
"typescript": "^5.8.3",
|
|
106
115
|
"vfonts": "^0.0.3",
|
|
107
|
-
"vite": "^5.
|
|
108
|
-
"vue": "
|
|
116
|
+
"vite": "^5.4.19",
|
|
117
|
+
"vue": "^3.5.13",
|
|
109
118
|
"vue-router": "^4.2.4",
|
|
110
|
-
"vue-tsc": "^
|
|
119
|
+
"vue-tsc": "^3.0.7"
|
|
111
120
|
},
|
|
112
121
|
"lint-staged": {
|
|
113
122
|
"*.js": [
|
|
@@ -137,11 +146,12 @@
|
|
|
137
146
|
"scripts": {
|
|
138
147
|
"start": "pnpm run dev",
|
|
139
148
|
"dev": "pnpm run clean && pnpm run gen-version && pnpm run gen-volar-dts && NODE_ENV=development vite",
|
|
140
|
-
"build:package": "pnpm run gen-version && pnpm run clean && pnpm run gen-volar-dts && tsc -b --force tsconfig.esm.json &&
|
|
149
|
+
"build:package": "pnpm run gen-version && pnpm run clean && pnpm run gen-volar-dts && tsc -b --force tsconfig.esm.json && tsx scripts/pre-build/pre-cjs-build.ts && tsc -b --force tsconfig.cjs.json && rollup -c && pnpm run build:themes && pnpm run test:umd && pnpm run test:esm && pnpm run post-build && rimraf {es,lib}/*.tsbuildinfo",
|
|
150
|
+
"build:themes": "tsc -b --force themes/tusimple/tsconfig.esm.json && tsc -b --force themes/tusimple/tsconfig.cjs.json",
|
|
141
151
|
"build:site": "bash ./scripts/pre-build-site/pre-build-site.sh && NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 vite build && bash ./scripts/post-build-site/post-build-site.sh",
|
|
142
152
|
"clean": "rimraf site lib es dist node_modules/naive-ui themes/tusimple/es themes/tusimple/lib",
|
|
143
153
|
"release:package": "pnpm run test && pnpm run build:package && pnpm publish --no-git-checks",
|
|
144
|
-
"release:changelog": "
|
|
154
|
+
"release:changelog": "tsx scripts/release-changelog.ts",
|
|
145
155
|
"lint": "pnpm run lint:code && pnpm run lint:type",
|
|
146
156
|
"lint:type": "pnpm run lint:src-type && pnpm run lint:demo-type",
|
|
147
157
|
"lint:code": "eslint \"{src,build,scripts,demo}/**/*.{ts,tsx,js,vue,md}\"",
|
|
@@ -149,7 +159,7 @@
|
|
|
149
159
|
"lint:src-type": "tsc -b --force tsconfig.esm.json",
|
|
150
160
|
"lint:demo-type": "NODE_OPTIONS=--max-old-space-size=4096 vue-tsc -p src/tsconfig.demo.json",
|
|
151
161
|
"format": "pnpm run format:code && pnpm run format:md && pnpm run lint:fix",
|
|
152
|
-
"format:code": "prettier --write \"
|
|
162
|
+
"format:code": "prettier --write \"{src,demo,scripts,build}/**/*.{vue,js,ts,tsx}\"",
|
|
153
163
|
"format:md": "prettier --write --parser markdown --prose-wrap never \"(src|demo)/**/*.md\"",
|
|
154
164
|
"test": "NODE_ENV=test jest --collectCoverage=false",
|
|
155
165
|
"test:update": "NODE_ENV=test jest -u --collectCoverage=false",
|
|
@@ -157,10 +167,11 @@
|
|
|
157
167
|
"test:watch": "NODE_ENV=test jest ---watch --verbose --coverage",
|
|
158
168
|
"test:umd": "jest --collectCoverage=false --testMatch=\"<rootDir>/umd-test/index.spec.js\"",
|
|
159
169
|
"test:esm": "jest --collectCoverage=false --testMatch=\"<rootDir>/esm-test/index.spec.js\"",
|
|
160
|
-
"gen-version": "
|
|
161
|
-
"gen-volar-dts": "
|
|
170
|
+
"gen-version": "tsx scripts/gen-version.ts",
|
|
171
|
+
"gen-volar-dts": "tsx scripts/gen-component-declaration.ts",
|
|
172
|
+
"post-build": "tsx scripts/post-build/index.ts",
|
|
162
173
|
"build:site:ts": "bash ./scripts/pre-build-site/pre-build-site.sh && TUSIMPLE=true NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 vite build && bash ./scripts/post-build-site/post-build-site.sh",
|
|
163
|
-
"transpile-docs": "
|
|
174
|
+
"transpile-docs": "tsx scripts/md-to-vue.ts",
|
|
164
175
|
"release:site": "TUSIMPLE=true pnpm run build:site && node build-doc/generate-deploy-sh.js && sudo bash build-doc/deploy-doc.sh"
|
|
165
176
|
}
|
|
166
177
|
}
|
package/volar.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
// Auto generated component declarations
|
|
2
2
|
declare module 'vue' {
|
|
3
3
|
export interface GlobalComponents {
|
|
4
|
-
NA: (typeof import('naive-ui'))['NA']
|
|
5
4
|
NAffix: (typeof import('naive-ui'))['NAffix']
|
|
6
5
|
NAlert: (typeof import('naive-ui'))['NAlert']
|
|
7
6
|
NAnchor: (typeof import('naive-ui'))['NAnchor']
|
|
@@ -11,7 +10,6 @@ declare module 'vue' {
|
|
|
11
10
|
NAvatarGroup: (typeof import('naive-ui'))['NAvatarGroup']
|
|
12
11
|
NBackTop: (typeof import('naive-ui'))['NBackTop']
|
|
13
12
|
NBadge: (typeof import('naive-ui'))['NBadge']
|
|
14
|
-
NBlockquote: (typeof import('naive-ui'))['NBlockquote']
|
|
15
13
|
NBreadcrumb: (typeof import('naive-ui'))['NBreadcrumb']
|
|
16
14
|
NBreadcrumbItem: (typeof import('naive-ui'))['NBreadcrumbItem']
|
|
17
15
|
NButton: (typeof import('naive-ui'))['NButton']
|
|
@@ -24,7 +22,6 @@ declare module 'vue' {
|
|
|
24
22
|
NCheckbox: (typeof import('naive-ui'))['NCheckbox']
|
|
25
23
|
NCheckboxGroup: (typeof import('naive-ui'))['NCheckboxGroup']
|
|
26
24
|
NCode: (typeof import('naive-ui'))['NCode']
|
|
27
|
-
NCol: (typeof import('naive-ui'))['NCol']
|
|
28
25
|
NCollapse: (typeof import('naive-ui'))['NCollapse']
|
|
29
26
|
NCollapseItem: (typeof import('naive-ui'))['NCollapseItem']
|
|
30
27
|
NCollapseTransition: (typeof import('naive-ui'))['NCollapseTransition']
|
|
@@ -46,6 +43,7 @@ declare module 'vue' {
|
|
|
46
43
|
NEl: (typeof import('naive-ui'))['NEl']
|
|
47
44
|
NElement: (typeof import('naive-ui'))['NElement']
|
|
48
45
|
NEllipsis: (typeof import('naive-ui'))['NEllipsis']
|
|
46
|
+
NPerformantEllipsis: (typeof import('naive-ui'))['NPerformantEllipsis']
|
|
49
47
|
NEmpty: (typeof import('naive-ui'))['NEmpty']
|
|
50
48
|
NEquation: (typeof import('naive-ui'))['NEquation']
|
|
51
49
|
NFlex: (typeof import('naive-ui'))['NFlex']
|
|
@@ -57,23 +55,18 @@ declare module 'vue' {
|
|
|
57
55
|
NFormItemGi: (typeof import('naive-ui'))['NFormItemGi']
|
|
58
56
|
NFormItemGridItem: (typeof import('naive-ui'))['NFormItemGridItem']
|
|
59
57
|
NFormItemRow: (typeof import('naive-ui'))['NFormItemRow']
|
|
60
|
-
NGi: (typeof import('naive-ui'))['NGi']
|
|
61
58
|
NGlobalStyle: (typeof import('naive-ui'))['NGlobalStyle']
|
|
62
59
|
NGradientText: (typeof import('naive-ui'))['NGradientText']
|
|
60
|
+
NGi: (typeof import('naive-ui'))['NGi']
|
|
63
61
|
NGrid: (typeof import('naive-ui'))['NGrid']
|
|
64
62
|
NGridItem: (typeof import('naive-ui'))['NGridItem']
|
|
65
|
-
|
|
66
|
-
NH2: (typeof import('naive-ui'))['NH2']
|
|
67
|
-
NH3: (typeof import('naive-ui'))['NH3']
|
|
68
|
-
NH4: (typeof import('naive-ui'))['NH4']
|
|
69
|
-
NH5: (typeof import('naive-ui'))['NH5']
|
|
70
|
-
NH6: (typeof import('naive-ui'))['NH6']
|
|
63
|
+
NHeatmap: (typeof import('naive-ui'))['NHeatmap']
|
|
71
64
|
NHighlight: (typeof import('naive-ui'))['NHighlight']
|
|
72
|
-
NHr: (typeof import('naive-ui'))['NHr']
|
|
73
65
|
NIcon: (typeof import('naive-ui'))['NIcon']
|
|
74
66
|
NIconWrapper: (typeof import('naive-ui'))['NIconWrapper']
|
|
75
67
|
NImage: (typeof import('naive-ui'))['NImage']
|
|
76
68
|
NImageGroup: (typeof import('naive-ui'))['NImageGroup']
|
|
69
|
+
NImagePreview: (typeof import('naive-ui'))['NImagePreview']
|
|
77
70
|
NInfiniteScroll: (typeof import('naive-ui'))['NInfiniteScroll']
|
|
78
71
|
NInput: (typeof import('naive-ui'))['NInput']
|
|
79
72
|
NInputGroup: (typeof import('naive-ui'))['NInputGroup']
|
|
@@ -85,8 +78,9 @@ declare module 'vue' {
|
|
|
85
78
|
NLayoutFooter: (typeof import('naive-ui'))['NLayoutFooter']
|
|
86
79
|
NLayoutHeader: (typeof import('naive-ui'))['NLayoutHeader']
|
|
87
80
|
NLayoutSider: (typeof import('naive-ui'))['NLayoutSider']
|
|
81
|
+
NCol: (typeof import('naive-ui'))['NCol']
|
|
82
|
+
NRow: (typeof import('naive-ui'))['NRow']
|
|
88
83
|
NLegacyTransfer: (typeof import('naive-ui'))['NLegacyTransfer']
|
|
89
|
-
NLi: (typeof import('naive-ui'))['NLi']
|
|
90
84
|
NList: (typeof import('naive-ui'))['NList']
|
|
91
85
|
NListItem: (typeof import('naive-ui'))['NListItem']
|
|
92
86
|
NLoadingBarProvider: (typeof import('naive-ui'))['NLoadingBarProvider']
|
|
@@ -99,11 +93,8 @@ declare module 'vue' {
|
|
|
99
93
|
NModalProvider: (typeof import('naive-ui'))['NModalProvider']
|
|
100
94
|
NNotificationProvider: (typeof import('naive-ui'))['NNotificationProvider']
|
|
101
95
|
NNumberAnimation: (typeof import('naive-ui'))['NNumberAnimation']
|
|
102
|
-
NOl: (typeof import('naive-ui'))['NOl']
|
|
103
|
-
NP: (typeof import('naive-ui'))['NP']
|
|
104
96
|
NPageHeader: (typeof import('naive-ui'))['NPageHeader']
|
|
105
97
|
NPagination: (typeof import('naive-ui'))['NPagination']
|
|
106
|
-
NPerformantEllipsis: (typeof import('naive-ui'))['NPerformantEllipsis']
|
|
107
98
|
NPopconfirm: (typeof import('naive-ui'))['NPopconfirm']
|
|
108
99
|
NPopover: (typeof import('naive-ui'))['NPopover']
|
|
109
100
|
NPopselect: (typeof import('naive-ui'))['NPopselect']
|
|
@@ -114,7 +105,6 @@ declare module 'vue' {
|
|
|
114
105
|
NRadioGroup: (typeof import('naive-ui'))['NRadioGroup']
|
|
115
106
|
NRate: (typeof import('naive-ui'))['NRate']
|
|
116
107
|
NResult: (typeof import('naive-ui'))['NResult']
|
|
117
|
-
NRow: (typeof import('naive-ui'))['NRow']
|
|
118
108
|
NScrollbar: (typeof import('naive-ui'))['NScrollbar']
|
|
119
109
|
NSelect: (typeof import('naive-ui'))['NSelect']
|
|
120
110
|
NSkeleton: (typeof import('naive-ui'))['NSkeleton']
|
|
@@ -126,26 +116,38 @@ declare module 'vue' {
|
|
|
126
116
|
NStep: (typeof import('naive-ui'))['NStep']
|
|
127
117
|
NSteps: (typeof import('naive-ui'))['NSteps']
|
|
128
118
|
NSwitch: (typeof import('naive-ui'))['NSwitch']
|
|
129
|
-
NTab: (typeof import('naive-ui'))['NTab']
|
|
130
|
-
NTabPane: (typeof import('naive-ui'))['NTabPane']
|
|
131
119
|
NTable: (typeof import('naive-ui'))['NTable']
|
|
132
|
-
NTabs: (typeof import('naive-ui'))['NTabs']
|
|
133
|
-
NTag: (typeof import('naive-ui'))['NTag']
|
|
134
120
|
NTbody: (typeof import('naive-ui'))['NTbody']
|
|
135
121
|
NTd: (typeof import('naive-ui'))['NTd']
|
|
136
|
-
NText: (typeof import('naive-ui'))['NText']
|
|
137
122
|
NTh: (typeof import('naive-ui'))['NTh']
|
|
138
123
|
NThead: (typeof import('naive-ui'))['NThead']
|
|
124
|
+
NTr: (typeof import('naive-ui'))['NTr']
|
|
125
|
+
NTab: (typeof import('naive-ui'))['NTab']
|
|
126
|
+
NTabPane: (typeof import('naive-ui'))['NTabPane']
|
|
127
|
+
NTabs: (typeof import('naive-ui'))['NTabs']
|
|
128
|
+
NTag: (typeof import('naive-ui'))['NTag']
|
|
139
129
|
NThing: (typeof import('naive-ui'))['NThing']
|
|
140
130
|
NTime: (typeof import('naive-ui'))['NTime']
|
|
141
131
|
NTimePicker: (typeof import('naive-ui'))['NTimePicker']
|
|
142
132
|
NTimeline: (typeof import('naive-ui'))['NTimeline']
|
|
143
133
|
NTimelineItem: (typeof import('naive-ui'))['NTimelineItem']
|
|
144
134
|
NTooltip: (typeof import('naive-ui'))['NTooltip']
|
|
145
|
-
NTr: (typeof import('naive-ui'))['NTr']
|
|
146
135
|
NTransfer: (typeof import('naive-ui'))['NTransfer']
|
|
147
136
|
NTree: (typeof import('naive-ui'))['NTree']
|
|
148
137
|
NTreeSelect: (typeof import('naive-ui'))['NTreeSelect']
|
|
138
|
+
NA: (typeof import('naive-ui'))['NA']
|
|
139
|
+
NBlockquote: (typeof import('naive-ui'))['NBlockquote']
|
|
140
|
+
NH1: (typeof import('naive-ui'))['NH1']
|
|
141
|
+
NH2: (typeof import('naive-ui'))['NH2']
|
|
142
|
+
NH3: (typeof import('naive-ui'))['NH3']
|
|
143
|
+
NH4: (typeof import('naive-ui'))['NH4']
|
|
144
|
+
NH5: (typeof import('naive-ui'))['NH5']
|
|
145
|
+
NH6: (typeof import('naive-ui'))['NH6']
|
|
146
|
+
NHr: (typeof import('naive-ui'))['NHr']
|
|
147
|
+
NLi: (typeof import('naive-ui'))['NLi']
|
|
148
|
+
NOl: (typeof import('naive-ui'))['NOl']
|
|
149
|
+
NP: (typeof import('naive-ui'))['NP']
|
|
150
|
+
NText: (typeof import('naive-ui'))['NText']
|
|
149
151
|
NUl: (typeof import('naive-ui'))['NUl']
|
|
150
152
|
NUpload: (typeof import('naive-ui'))['NUpload']
|
|
151
153
|
NUploadDragger: (typeof import('naive-ui'))['NUploadDragger']
|