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
package/lib/modal/src/Modal.d.ts
CHANGED
|
@@ -68,6 +68,10 @@ declare const modalProps: {
|
|
|
68
68
|
type: PropType<"show" | "if">;
|
|
69
69
|
default: string;
|
|
70
70
|
};
|
|
71
|
+
transformOrigin: {
|
|
72
|
+
type: PropType<"center" | "mouse">;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
71
75
|
theme: PropType<import("../../_mixins").Theme<"Modal", {
|
|
72
76
|
color: string;
|
|
73
77
|
textColor: string;
|
|
@@ -119,20 +123,30 @@ declare const modalProps: {
|
|
|
119
123
|
fontSizeMedium: string;
|
|
120
124
|
fontSizeLarge: string;
|
|
121
125
|
opacityDisabled: string;
|
|
126
|
+
colorOpacitySecondary: number;
|
|
127
|
+
colorOpacitySecondaryHover: number;
|
|
128
|
+
colorOpacitySecondaryPressed: number;
|
|
129
|
+
colorSecondary: string;
|
|
130
|
+
colorSecondaryHover: string;
|
|
131
|
+
colorSecondaryPressed: string;
|
|
132
|
+
colorTertiary: string;
|
|
133
|
+
colorTertiaryHover: string;
|
|
134
|
+
colorTertiaryPressed: string;
|
|
135
|
+
colorQuaternary: string;
|
|
136
|
+
colorQuaternaryHover: string;
|
|
137
|
+
colorQuaternaryPressed: string;
|
|
122
138
|
color: string;
|
|
123
139
|
colorHover: string;
|
|
124
140
|
colorPressed: string;
|
|
125
141
|
colorFocus: string;
|
|
126
142
|
colorDisabled: string;
|
|
127
143
|
textColor: string;
|
|
144
|
+
textColorTertiary: string;
|
|
128
145
|
textColorHover: string;
|
|
129
146
|
textColorPressed: string;
|
|
130
147
|
textColorFocus: string;
|
|
131
148
|
textColorDisabled: string;
|
|
132
149
|
textColorText: string;
|
|
133
|
-
textColorTextDepth1: string;
|
|
134
|
-
textColorTextDepth2: string;
|
|
135
|
-
textColorTextDepth3: string;
|
|
136
150
|
textColorTextHover: string;
|
|
137
151
|
textColorTextPressed: string;
|
|
138
152
|
textColorTextFocus: string;
|
|
@@ -279,9 +293,8 @@ declare const modalProps: {
|
|
|
279
293
|
borderDisabledError: string;
|
|
280
294
|
rippleColorError: string;
|
|
281
295
|
waveOpacity: string;
|
|
282
|
-
fontWeightText: string;
|
|
283
296
|
fontWeight: string;
|
|
284
|
-
|
|
297
|
+
fontWeightStrong: string;
|
|
285
298
|
paddingTiny: string;
|
|
286
299
|
paddingSmall: string;
|
|
287
300
|
paddingMedium: string;
|
|
@@ -384,20 +397,30 @@ declare const modalProps: {
|
|
|
384
397
|
fontSizeMedium: string;
|
|
385
398
|
fontSizeLarge: string;
|
|
386
399
|
opacityDisabled: string;
|
|
400
|
+
colorOpacitySecondary: number;
|
|
401
|
+
colorOpacitySecondaryHover: number;
|
|
402
|
+
colorOpacitySecondaryPressed: number;
|
|
403
|
+
colorSecondary: string;
|
|
404
|
+
colorSecondaryHover: string;
|
|
405
|
+
colorSecondaryPressed: string;
|
|
406
|
+
colorTertiary: string;
|
|
407
|
+
colorTertiaryHover: string;
|
|
408
|
+
colorTertiaryPressed: string;
|
|
409
|
+
colorQuaternary: string;
|
|
410
|
+
colorQuaternaryHover: string;
|
|
411
|
+
colorQuaternaryPressed: string;
|
|
387
412
|
color: string;
|
|
388
413
|
colorHover: string;
|
|
389
414
|
colorPressed: string;
|
|
390
415
|
colorFocus: string;
|
|
391
416
|
colorDisabled: string;
|
|
392
417
|
textColor: string;
|
|
418
|
+
textColorTertiary: string;
|
|
393
419
|
textColorHover: string;
|
|
394
420
|
textColorPressed: string;
|
|
395
421
|
textColorFocus: string;
|
|
396
422
|
textColorDisabled: string;
|
|
397
423
|
textColorText: string;
|
|
398
|
-
textColorTextDepth1: string;
|
|
399
|
-
textColorTextDepth2: string;
|
|
400
|
-
textColorTextDepth3: string;
|
|
401
424
|
textColorTextHover: string;
|
|
402
425
|
textColorTextPressed: string;
|
|
403
426
|
textColorTextFocus: string;
|
|
@@ -544,9 +567,8 @@ declare const modalProps: {
|
|
|
544
567
|
borderDisabledError: string;
|
|
545
568
|
rippleColorError: string;
|
|
546
569
|
waveOpacity: string;
|
|
547
|
-
fontWeightText: string;
|
|
548
570
|
fontWeight: string;
|
|
549
|
-
|
|
571
|
+
fontWeightStrong: string;
|
|
550
572
|
paddingTiny: string;
|
|
551
573
|
paddingSmall: string;
|
|
552
574
|
paddingMedium: string;
|
|
@@ -649,20 +671,30 @@ declare const modalProps: {
|
|
|
649
671
|
fontSizeMedium: string;
|
|
650
672
|
fontSizeLarge: string;
|
|
651
673
|
opacityDisabled: string;
|
|
674
|
+
colorOpacitySecondary: number;
|
|
675
|
+
colorOpacitySecondaryHover: number;
|
|
676
|
+
colorOpacitySecondaryPressed: number;
|
|
677
|
+
colorSecondary: string;
|
|
678
|
+
colorSecondaryHover: string;
|
|
679
|
+
colorSecondaryPressed: string;
|
|
680
|
+
colorTertiary: string;
|
|
681
|
+
colorTertiaryHover: string;
|
|
682
|
+
colorTertiaryPressed: string;
|
|
683
|
+
colorQuaternary: string;
|
|
684
|
+
colorQuaternaryHover: string;
|
|
685
|
+
colorQuaternaryPressed: string;
|
|
652
686
|
color: string;
|
|
653
687
|
colorHover: string;
|
|
654
688
|
colorPressed: string;
|
|
655
689
|
colorFocus: string;
|
|
656
690
|
colorDisabled: string;
|
|
657
691
|
textColor: string;
|
|
692
|
+
textColorTertiary: string;
|
|
658
693
|
textColorHover: string;
|
|
659
694
|
textColorPressed: string;
|
|
660
695
|
textColorFocus: string;
|
|
661
696
|
textColorDisabled: string;
|
|
662
697
|
textColorText: string;
|
|
663
|
-
textColorTextDepth1: string;
|
|
664
|
-
textColorTextDepth2: string;
|
|
665
|
-
textColorTextDepth3: string;
|
|
666
698
|
textColorTextHover: string;
|
|
667
699
|
textColorTextPressed: string;
|
|
668
700
|
textColorTextFocus: string;
|
|
@@ -809,9 +841,8 @@ declare const modalProps: {
|
|
|
809
841
|
borderDisabledError: string;
|
|
810
842
|
rippleColorError: string;
|
|
811
843
|
waveOpacity: string;
|
|
812
|
-
fontWeightText: string;
|
|
813
844
|
fontWeight: string;
|
|
814
|
-
|
|
845
|
+
fontWeightStrong: string;
|
|
815
846
|
paddingTiny: string;
|
|
816
847
|
paddingSmall: string;
|
|
817
848
|
paddingMedium: string;
|
|
@@ -933,6 +964,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
933
964
|
type: PropType<"show" | "if">;
|
|
934
965
|
default: string;
|
|
935
966
|
};
|
|
967
|
+
transformOrigin: {
|
|
968
|
+
type: PropType<"center" | "mouse">;
|
|
969
|
+
default: string;
|
|
970
|
+
};
|
|
936
971
|
theme: PropType<import("../../_mixins").Theme<"Modal", {
|
|
937
972
|
color: string;
|
|
938
973
|
textColor: string;
|
|
@@ -984,20 +1019,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
984
1019
|
fontSizeMedium: string;
|
|
985
1020
|
fontSizeLarge: string;
|
|
986
1021
|
opacityDisabled: string;
|
|
1022
|
+
colorOpacitySecondary: number;
|
|
1023
|
+
colorOpacitySecondaryHover: number;
|
|
1024
|
+
colorOpacitySecondaryPressed: number;
|
|
1025
|
+
colorSecondary: string;
|
|
1026
|
+
colorSecondaryHover: string;
|
|
1027
|
+
colorSecondaryPressed: string;
|
|
1028
|
+
colorTertiary: string;
|
|
1029
|
+
colorTertiaryHover: string;
|
|
1030
|
+
colorTertiaryPressed: string;
|
|
1031
|
+
colorQuaternary: string;
|
|
1032
|
+
colorQuaternaryHover: string;
|
|
1033
|
+
colorQuaternaryPressed: string;
|
|
987
1034
|
color: string;
|
|
988
1035
|
colorHover: string;
|
|
989
1036
|
colorPressed: string;
|
|
990
1037
|
colorFocus: string;
|
|
991
1038
|
colorDisabled: string;
|
|
992
1039
|
textColor: string;
|
|
1040
|
+
textColorTertiary: string;
|
|
993
1041
|
textColorHover: string;
|
|
994
1042
|
textColorPressed: string;
|
|
995
1043
|
textColorFocus: string;
|
|
996
1044
|
textColorDisabled: string;
|
|
997
1045
|
textColorText: string;
|
|
998
|
-
textColorTextDepth1: string;
|
|
999
|
-
textColorTextDepth2: string;
|
|
1000
|
-
textColorTextDepth3: string;
|
|
1001
1046
|
textColorTextHover: string;
|
|
1002
1047
|
textColorTextPressed: string;
|
|
1003
1048
|
textColorTextFocus: string;
|
|
@@ -1144,9 +1189,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1144
1189
|
borderDisabledError: string;
|
|
1145
1190
|
rippleColorError: string;
|
|
1146
1191
|
waveOpacity: string;
|
|
1147
|
-
fontWeightText: string;
|
|
1148
1192
|
fontWeight: string;
|
|
1149
|
-
|
|
1193
|
+
fontWeightStrong: string;
|
|
1150
1194
|
paddingTiny: string;
|
|
1151
1195
|
paddingSmall: string;
|
|
1152
1196
|
paddingMedium: string;
|
|
@@ -1249,20 +1293,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1249
1293
|
fontSizeMedium: string;
|
|
1250
1294
|
fontSizeLarge: string;
|
|
1251
1295
|
opacityDisabled: string;
|
|
1296
|
+
colorOpacitySecondary: number;
|
|
1297
|
+
colorOpacitySecondaryHover: number;
|
|
1298
|
+
colorOpacitySecondaryPressed: number;
|
|
1299
|
+
colorSecondary: string;
|
|
1300
|
+
colorSecondaryHover: string;
|
|
1301
|
+
colorSecondaryPressed: string;
|
|
1302
|
+
colorTertiary: string;
|
|
1303
|
+
colorTertiaryHover: string;
|
|
1304
|
+
colorTertiaryPressed: string;
|
|
1305
|
+
colorQuaternary: string;
|
|
1306
|
+
colorQuaternaryHover: string;
|
|
1307
|
+
colorQuaternaryPressed: string;
|
|
1252
1308
|
color: string;
|
|
1253
1309
|
colorHover: string;
|
|
1254
1310
|
colorPressed: string;
|
|
1255
1311
|
colorFocus: string;
|
|
1256
1312
|
colorDisabled: string;
|
|
1257
1313
|
textColor: string;
|
|
1314
|
+
textColorTertiary: string;
|
|
1258
1315
|
textColorHover: string;
|
|
1259
1316
|
textColorPressed: string;
|
|
1260
1317
|
textColorFocus: string;
|
|
1261
1318
|
textColorDisabled: string;
|
|
1262
1319
|
textColorText: string;
|
|
1263
|
-
textColorTextDepth1: string;
|
|
1264
|
-
textColorTextDepth2: string;
|
|
1265
|
-
textColorTextDepth3: string;
|
|
1266
1320
|
textColorTextHover: string;
|
|
1267
1321
|
textColorTextPressed: string;
|
|
1268
1322
|
textColorTextFocus: string;
|
|
@@ -1409,9 +1463,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1409
1463
|
borderDisabledError: string;
|
|
1410
1464
|
rippleColorError: string;
|
|
1411
1465
|
waveOpacity: string;
|
|
1412
|
-
fontWeightText: string;
|
|
1413
1466
|
fontWeight: string;
|
|
1414
|
-
|
|
1467
|
+
fontWeightStrong: string;
|
|
1415
1468
|
paddingTiny: string;
|
|
1416
1469
|
paddingSmall: string;
|
|
1417
1470
|
paddingMedium: string;
|
|
@@ -1514,20 +1567,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1514
1567
|
fontSizeMedium: string;
|
|
1515
1568
|
fontSizeLarge: string;
|
|
1516
1569
|
opacityDisabled: string;
|
|
1570
|
+
colorOpacitySecondary: number;
|
|
1571
|
+
colorOpacitySecondaryHover: number;
|
|
1572
|
+
colorOpacitySecondaryPressed: number;
|
|
1573
|
+
colorSecondary: string;
|
|
1574
|
+
colorSecondaryHover: string;
|
|
1575
|
+
colorSecondaryPressed: string;
|
|
1576
|
+
colorTertiary: string;
|
|
1577
|
+
colorTertiaryHover: string;
|
|
1578
|
+
colorTertiaryPressed: string;
|
|
1579
|
+
colorQuaternary: string;
|
|
1580
|
+
colorQuaternaryHover: string;
|
|
1581
|
+
colorQuaternaryPressed: string;
|
|
1517
1582
|
color: string;
|
|
1518
1583
|
colorHover: string;
|
|
1519
1584
|
colorPressed: string;
|
|
1520
1585
|
colorFocus: string;
|
|
1521
1586
|
colorDisabled: string;
|
|
1522
1587
|
textColor: string;
|
|
1588
|
+
textColorTertiary: string;
|
|
1523
1589
|
textColorHover: string;
|
|
1524
1590
|
textColorPressed: string;
|
|
1525
1591
|
textColorFocus: string;
|
|
1526
1592
|
textColorDisabled: string;
|
|
1527
1593
|
textColorText: string;
|
|
1528
|
-
textColorTextDepth1: string;
|
|
1529
|
-
textColorTextDepth2: string;
|
|
1530
|
-
textColorTextDepth3: string;
|
|
1531
1594
|
textColorTextHover: string;
|
|
1532
1595
|
textColorTextPressed: string;
|
|
1533
1596
|
textColorTextFocus: string;
|
|
@@ -1674,9 +1737,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1674
1737
|
borderDisabledError: string;
|
|
1675
1738
|
rippleColorError: string;
|
|
1676
1739
|
waveOpacity: string;
|
|
1677
|
-
fontWeightText: string;
|
|
1678
1740
|
fontWeight: string;
|
|
1679
|
-
|
|
1741
|
+
fontWeightStrong: string;
|
|
1680
1742
|
paddingTiny: string;
|
|
1681
1743
|
paddingSmall: string;
|
|
1682
1744
|
paddingMedium: string;
|
|
@@ -1740,6 +1802,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1740
1802
|
size: "small" | "medium" | "large" | "huge";
|
|
1741
1803
|
show: boolean;
|
|
1742
1804
|
icon: (() => import("vue").VNodeChild) | undefined;
|
|
1805
|
+
transformOrigin: "center" | "mouse";
|
|
1743
1806
|
appear: boolean | undefined;
|
|
1744
1807
|
onAfterEnter: (() => void) | undefined;
|
|
1745
1808
|
onBeforeLeave: (() => void) | undefined;
|
|
@@ -1799,20 +1862,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1799
1862
|
fontSizeMedium: string;
|
|
1800
1863
|
fontSizeLarge: string;
|
|
1801
1864
|
opacityDisabled: string;
|
|
1865
|
+
colorOpacitySecondary: number;
|
|
1866
|
+
colorOpacitySecondaryHover: number;
|
|
1867
|
+
colorOpacitySecondaryPressed: number;
|
|
1868
|
+
colorSecondary: string;
|
|
1869
|
+
colorSecondaryHover: string;
|
|
1870
|
+
colorSecondaryPressed: string;
|
|
1871
|
+
colorTertiary: string;
|
|
1872
|
+
colorTertiaryHover: string;
|
|
1873
|
+
colorTertiaryPressed: string;
|
|
1874
|
+
colorQuaternary: string;
|
|
1875
|
+
colorQuaternaryHover: string;
|
|
1876
|
+
colorQuaternaryPressed: string;
|
|
1802
1877
|
color: string;
|
|
1803
1878
|
colorHover: string;
|
|
1804
1879
|
colorPressed: string;
|
|
1805
1880
|
colorFocus: string;
|
|
1806
1881
|
colorDisabled: string;
|
|
1807
1882
|
textColor: string;
|
|
1883
|
+
textColorTertiary: string;
|
|
1808
1884
|
textColorHover: string;
|
|
1809
1885
|
textColorPressed: string;
|
|
1810
1886
|
textColorFocus: string;
|
|
1811
1887
|
textColorDisabled: string;
|
|
1812
1888
|
textColorText: string;
|
|
1813
|
-
textColorTextDepth1: string;
|
|
1814
|
-
textColorTextDepth2: string;
|
|
1815
|
-
textColorTextDepth3: string;
|
|
1816
1889
|
textColorTextHover: string;
|
|
1817
1890
|
textColorTextPressed: string;
|
|
1818
1891
|
textColorTextFocus: string;
|
|
@@ -1959,9 +2032,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1959
2032
|
borderDisabledError: string;
|
|
1960
2033
|
rippleColorError: string;
|
|
1961
2034
|
waveOpacity: string;
|
|
1962
|
-
fontWeightText: string;
|
|
1963
2035
|
fontWeight: string;
|
|
1964
|
-
|
|
2036
|
+
fontWeightStrong: string;
|
|
1965
2037
|
paddingTiny: string;
|
|
1966
2038
|
paddingSmall: string;
|
|
1967
2039
|
paddingMedium: string;
|
|
@@ -2064,20 +2136,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2064
2136
|
fontSizeMedium: string;
|
|
2065
2137
|
fontSizeLarge: string;
|
|
2066
2138
|
opacityDisabled: string;
|
|
2139
|
+
colorOpacitySecondary: number;
|
|
2140
|
+
colorOpacitySecondaryHover: number;
|
|
2141
|
+
colorOpacitySecondaryPressed: number;
|
|
2142
|
+
colorSecondary: string;
|
|
2143
|
+
colorSecondaryHover: string;
|
|
2144
|
+
colorSecondaryPressed: string;
|
|
2145
|
+
colorTertiary: string;
|
|
2146
|
+
colorTertiaryHover: string;
|
|
2147
|
+
colorTertiaryPressed: string;
|
|
2148
|
+
colorQuaternary: string;
|
|
2149
|
+
colorQuaternaryHover: string;
|
|
2150
|
+
colorQuaternaryPressed: string;
|
|
2067
2151
|
color: string;
|
|
2068
2152
|
colorHover: string;
|
|
2069
2153
|
colorPressed: string;
|
|
2070
2154
|
colorFocus: string;
|
|
2071
2155
|
colorDisabled: string;
|
|
2072
2156
|
textColor: string;
|
|
2157
|
+
textColorTertiary: string;
|
|
2073
2158
|
textColorHover: string;
|
|
2074
2159
|
textColorPressed: string;
|
|
2075
2160
|
textColorFocus: string;
|
|
2076
2161
|
textColorDisabled: string;
|
|
2077
2162
|
textColorText: string;
|
|
2078
|
-
textColorTextDepth1: string;
|
|
2079
|
-
textColorTextDepth2: string;
|
|
2080
|
-
textColorTextDepth3: string;
|
|
2081
2163
|
textColorTextHover: string;
|
|
2082
2164
|
textColorTextPressed: string;
|
|
2083
2165
|
textColorTextFocus: string;
|
|
@@ -2224,9 +2306,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2224
2306
|
borderDisabledError: string;
|
|
2225
2307
|
rippleColorError: string;
|
|
2226
2308
|
waveOpacity: string;
|
|
2227
|
-
fontWeightText: string;
|
|
2228
2309
|
fontWeight: string;
|
|
2229
|
-
|
|
2310
|
+
fontWeightStrong: string;
|
|
2230
2311
|
paddingTiny: string;
|
|
2231
2312
|
paddingSmall: string;
|
|
2232
2313
|
paddingMedium: string;
|
|
@@ -2329,20 +2410,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2329
2410
|
fontSizeMedium: string;
|
|
2330
2411
|
fontSizeLarge: string;
|
|
2331
2412
|
opacityDisabled: string;
|
|
2413
|
+
colorOpacitySecondary: number;
|
|
2414
|
+
colorOpacitySecondaryHover: number;
|
|
2415
|
+
colorOpacitySecondaryPressed: number;
|
|
2416
|
+
colorSecondary: string;
|
|
2417
|
+
colorSecondaryHover: string;
|
|
2418
|
+
colorSecondaryPressed: string;
|
|
2419
|
+
colorTertiary: string;
|
|
2420
|
+
colorTertiaryHover: string;
|
|
2421
|
+
colorTertiaryPressed: string;
|
|
2422
|
+
colorQuaternary: string;
|
|
2423
|
+
colorQuaternaryHover: string;
|
|
2424
|
+
colorQuaternaryPressed: string;
|
|
2332
2425
|
color: string;
|
|
2333
2426
|
colorHover: string;
|
|
2334
2427
|
colorPressed: string;
|
|
2335
2428
|
colorFocus: string;
|
|
2336
2429
|
colorDisabled: string;
|
|
2337
2430
|
textColor: string;
|
|
2431
|
+
textColorTertiary: string;
|
|
2338
2432
|
textColorHover: string;
|
|
2339
2433
|
textColorPressed: string;
|
|
2340
2434
|
textColorFocus: string;
|
|
2341
2435
|
textColorDisabled: string;
|
|
2342
2436
|
textColorText: string;
|
|
2343
|
-
textColorTextDepth1: string;
|
|
2344
|
-
textColorTextDepth2: string;
|
|
2345
|
-
textColorTextDepth3: string;
|
|
2346
2437
|
textColorTextHover: string;
|
|
2347
2438
|
textColorTextPressed: string;
|
|
2348
2439
|
textColorTextFocus: string;
|
|
@@ -2489,9 +2580,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2489
2580
|
borderDisabledError: string;
|
|
2490
2581
|
rippleColorError: string;
|
|
2491
2582
|
waveOpacity: string;
|
|
2492
|
-
fontWeightText: string;
|
|
2493
2583
|
fontWeight: string;
|
|
2494
|
-
|
|
2584
|
+
fontWeightStrong: string;
|
|
2495
2585
|
paddingTiny: string;
|
|
2496
2586
|
paddingSmall: string;
|
|
2497
2587
|
paddingMedium: string;
|
|
@@ -2543,6 +2633,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2543
2633
|
closeSize: string;
|
|
2544
2634
|
}, any>;
|
|
2545
2635
|
}>> | undefined;
|
|
2636
|
+
positiveText: string | undefined;
|
|
2637
|
+
negativeText: string | undefined;
|
|
2546
2638
|
loading: boolean;
|
|
2547
2639
|
bordered: boolean;
|
|
2548
2640
|
contentStyle: string | CSSProperties | undefined;
|
|
@@ -2560,8 +2652,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2560
2652
|
footerStyle: string | CSSProperties | undefined;
|
|
2561
2653
|
embedded: boolean;
|
|
2562
2654
|
segmented: boolean | import("../../card/src/Card").Segmented;
|
|
2563
|
-
negativeText: string | undefined;
|
|
2564
|
-
positiveText: string | undefined;
|
|
2565
2655
|
onPositiveClick: (() => any) | undefined;
|
|
2566
2656
|
onNegativeClick: (() => any) | undefined;
|
|
2567
2657
|
preset: "dialog" | "card" | "confirm" | undefined;
|
|
@@ -2570,7 +2660,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2570
2660
|
onBeforeHide: (() => void) | undefined;
|
|
2571
2661
|
unstableShowMask: boolean;
|
|
2572
2662
|
maskClosable: boolean;
|
|
2573
|
-
}>, "type" | "content" | "size" | "icon" | "title" | "action" | "loading" | "bordered" | "contentStyle" | "onClose" | "closable" | "showIcon" | "iconPlacement" | "hoverable" | "headerStyle" | "footerStyle" | "embedded" | "segmented" | "
|
|
2663
|
+
}>, "type" | "content" | "size" | "icon" | "title" | "action" | "positiveText" | "negativeText" | "loading" | "bordered" | "contentStyle" | "onClose" | "closable" | "showIcon" | "iconPlacement" | "hoverable" | "headerStyle" | "footerStyle" | "embedded" | "segmented" | "onPositiveClick" | "onNegativeClick">>;
|
|
2574
2664
|
handleAfterLeave: () => void;
|
|
2575
2665
|
handleClickoutside: (e: MouseEvent) => void;
|
|
2576
2666
|
handleBeforeLeave: () => void;
|
|
@@ -2625,6 +2715,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2625
2715
|
preset?: unknown;
|
|
2626
2716
|
to?: unknown;
|
|
2627
2717
|
displayDirective?: unknown;
|
|
2718
|
+
transformOrigin?: unknown;
|
|
2628
2719
|
theme?: unknown;
|
|
2629
2720
|
themeOverrides?: unknown;
|
|
2630
2721
|
builtinThemeOverrides?: unknown;
|
|
@@ -2632,6 +2723,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2632
2723
|
type: "default" | "error" | "info" | "success" | "warning";
|
|
2633
2724
|
size: "small" | "medium" | "large" | "huge";
|
|
2634
2725
|
show: boolean;
|
|
2726
|
+
transformOrigin: "center" | "mouse";
|
|
2635
2727
|
dialog: boolean;
|
|
2636
2728
|
loading: boolean;
|
|
2637
2729
|
bordered: boolean;
|
|
@@ -2704,20 +2796,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2704
2796
|
fontSizeMedium: string;
|
|
2705
2797
|
fontSizeLarge: string;
|
|
2706
2798
|
opacityDisabled: string;
|
|
2799
|
+
colorOpacitySecondary: number;
|
|
2800
|
+
colorOpacitySecondaryHover: number;
|
|
2801
|
+
colorOpacitySecondaryPressed: number;
|
|
2802
|
+
colorSecondary: string;
|
|
2803
|
+
colorSecondaryHover: string;
|
|
2804
|
+
colorSecondaryPressed: string;
|
|
2805
|
+
colorTertiary: string;
|
|
2806
|
+
colorTertiaryHover: string;
|
|
2807
|
+
colorTertiaryPressed: string;
|
|
2808
|
+
colorQuaternary: string;
|
|
2809
|
+
colorQuaternaryHover: string;
|
|
2810
|
+
colorQuaternaryPressed: string;
|
|
2707
2811
|
color: string;
|
|
2708
2812
|
colorHover: string;
|
|
2709
2813
|
colorPressed: string;
|
|
2710
2814
|
colorFocus: string;
|
|
2711
2815
|
colorDisabled: string;
|
|
2712
2816
|
textColor: string;
|
|
2817
|
+
textColorTertiary: string;
|
|
2713
2818
|
textColorHover: string;
|
|
2714
2819
|
textColorPressed: string;
|
|
2715
2820
|
textColorFocus: string;
|
|
2716
2821
|
textColorDisabled: string;
|
|
2717
2822
|
textColorText: string;
|
|
2718
|
-
textColorTextDepth1: string;
|
|
2719
|
-
textColorTextDepth2: string;
|
|
2720
|
-
textColorTextDepth3: string;
|
|
2721
2823
|
textColorTextHover: string;
|
|
2722
2824
|
textColorTextPressed: string;
|
|
2723
2825
|
textColorTextFocus: string;
|
|
@@ -2864,9 +2966,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2864
2966
|
borderDisabledError: string;
|
|
2865
2967
|
rippleColorError: string;
|
|
2866
2968
|
waveOpacity: string;
|
|
2867
|
-
fontWeightText: string;
|
|
2868
2969
|
fontWeight: string;
|
|
2869
|
-
|
|
2970
|
+
fontWeightStrong: string;
|
|
2870
2971
|
paddingTiny: string;
|
|
2871
2972
|
paddingSmall: string;
|
|
2872
2973
|
paddingMedium: string;
|
|
@@ -2969,20 +3070,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2969
3070
|
fontSizeMedium: string;
|
|
2970
3071
|
fontSizeLarge: string;
|
|
2971
3072
|
opacityDisabled: string;
|
|
3073
|
+
colorOpacitySecondary: number;
|
|
3074
|
+
colorOpacitySecondaryHover: number;
|
|
3075
|
+
colorOpacitySecondaryPressed: number;
|
|
3076
|
+
colorSecondary: string;
|
|
3077
|
+
colorSecondaryHover: string;
|
|
3078
|
+
colorSecondaryPressed: string;
|
|
3079
|
+
colorTertiary: string;
|
|
3080
|
+
colorTertiaryHover: string;
|
|
3081
|
+
colorTertiaryPressed: string;
|
|
3082
|
+
colorQuaternary: string;
|
|
3083
|
+
colorQuaternaryHover: string;
|
|
3084
|
+
colorQuaternaryPressed: string;
|
|
2972
3085
|
color: string;
|
|
2973
3086
|
colorHover: string;
|
|
2974
3087
|
colorPressed: string;
|
|
2975
3088
|
colorFocus: string;
|
|
2976
3089
|
colorDisabled: string;
|
|
2977
3090
|
textColor: string;
|
|
3091
|
+
textColorTertiary: string;
|
|
2978
3092
|
textColorHover: string;
|
|
2979
3093
|
textColorPressed: string;
|
|
2980
3094
|
textColorFocus: string;
|
|
2981
3095
|
textColorDisabled: string;
|
|
2982
3096
|
textColorText: string;
|
|
2983
|
-
textColorTextDepth1: string;
|
|
2984
|
-
textColorTextDepth2: string;
|
|
2985
|
-
textColorTextDepth3: string;
|
|
2986
3097
|
textColorTextHover: string;
|
|
2987
3098
|
textColorTextPressed: string;
|
|
2988
3099
|
textColorTextFocus: string;
|
|
@@ -3129,9 +3240,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3129
3240
|
borderDisabledError: string;
|
|
3130
3241
|
rippleColorError: string;
|
|
3131
3242
|
waveOpacity: string;
|
|
3132
|
-
fontWeightText: string;
|
|
3133
3243
|
fontWeight: string;
|
|
3134
|
-
|
|
3244
|
+
fontWeightStrong: string;
|
|
3135
3245
|
paddingTiny: string;
|
|
3136
3246
|
paddingSmall: string;
|
|
3137
3247
|
paddingMedium: string;
|
|
@@ -3234,20 +3344,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3234
3344
|
fontSizeMedium: string;
|
|
3235
3345
|
fontSizeLarge: string;
|
|
3236
3346
|
opacityDisabled: string;
|
|
3347
|
+
colorOpacitySecondary: number;
|
|
3348
|
+
colorOpacitySecondaryHover: number;
|
|
3349
|
+
colorOpacitySecondaryPressed: number;
|
|
3350
|
+
colorSecondary: string;
|
|
3351
|
+
colorSecondaryHover: string;
|
|
3352
|
+
colorSecondaryPressed: string;
|
|
3353
|
+
colorTertiary: string;
|
|
3354
|
+
colorTertiaryHover: string;
|
|
3355
|
+
colorTertiaryPressed: string;
|
|
3356
|
+
colorQuaternary: string;
|
|
3357
|
+
colorQuaternaryHover: string;
|
|
3358
|
+
colorQuaternaryPressed: string;
|
|
3237
3359
|
color: string;
|
|
3238
3360
|
colorHover: string;
|
|
3239
3361
|
colorPressed: string;
|
|
3240
3362
|
colorFocus: string;
|
|
3241
3363
|
colorDisabled: string;
|
|
3242
3364
|
textColor: string;
|
|
3365
|
+
textColorTertiary: string;
|
|
3243
3366
|
textColorHover: string;
|
|
3244
3367
|
textColorPressed: string;
|
|
3245
3368
|
textColorFocus: string;
|
|
3246
3369
|
textColorDisabled: string;
|
|
3247
3370
|
textColorText: string;
|
|
3248
|
-
textColorTextDepth1: string;
|
|
3249
|
-
textColorTextDepth2: string;
|
|
3250
|
-
textColorTextDepth3: string;
|
|
3251
3371
|
textColorTextHover: string;
|
|
3252
3372
|
textColorTextPressed: string;
|
|
3253
3373
|
textColorTextFocus: string;
|
|
@@ -3394,9 +3514,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3394
3514
|
borderDisabledError: string;
|
|
3395
3515
|
rippleColorError: string;
|
|
3396
3516
|
waveOpacity: string;
|
|
3397
|
-
fontWeightText: string;
|
|
3398
3517
|
fontWeight: string;
|
|
3399
|
-
|
|
3518
|
+
fontWeightStrong: string;
|
|
3400
3519
|
paddingTiny: string;
|
|
3401
3520
|
paddingSmall: string;
|
|
3402
3521
|
paddingMedium: string;
|
|
@@ -3448,6 +3567,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3448
3567
|
closeSize: string;
|
|
3449
3568
|
}, any>;
|
|
3450
3569
|
}>> | undefined;
|
|
3570
|
+
positiveText?: string | undefined;
|
|
3571
|
+
negativeText?: string | undefined;
|
|
3451
3572
|
contentStyle?: string | CSSProperties | undefined;
|
|
3452
3573
|
onClose?: (() => any) | undefined;
|
|
3453
3574
|
"onUpdate:show"?: MaybeArray<(value: boolean) => void> | undefined;
|
|
@@ -3457,8 +3578,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3457
3578
|
onAfterHide?: (() => void) | undefined;
|
|
3458
3579
|
headerStyle?: string | CSSProperties | undefined;
|
|
3459
3580
|
footerStyle?: string | CSSProperties | undefined;
|
|
3460
|
-
negativeText?: string | undefined;
|
|
3461
|
-
positiveText?: string | undefined;
|
|
3462
3581
|
onPositiveClick?: (() => any) | undefined;
|
|
3463
3582
|
onNegativeClick?: (() => any) | undefined;
|
|
3464
3583
|
preset?: "dialog" | "card" | "confirm" | undefined;
|
|
@@ -3469,6 +3588,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3469
3588
|
type: "default" | "error" | "info" | "success" | "warning";
|
|
3470
3589
|
size: "small" | "medium" | "large" | "huge";
|
|
3471
3590
|
show: boolean;
|
|
3591
|
+
transformOrigin: "center" | "mouse";
|
|
3472
3592
|
appear: boolean | undefined;
|
|
3473
3593
|
dialog: boolean;
|
|
3474
3594
|
loading: boolean;
|
package/lib/modal/src/Modal.js
CHANGED
|
@@ -24,6 +24,9 @@ const modalProps = Object.assign(Object.assign(Object.assign(Object.assign({}, _
|
|
|
24
24
|
}, preset: String, to: [String, Object], displayDirective: {
|
|
25
25
|
type: String,
|
|
26
26
|
default: 'if'
|
|
27
|
+
}, transformOrigin: {
|
|
28
|
+
type: String,
|
|
29
|
+
default: 'mouse'
|
|
27
30
|
} }), presetProps_1.presetProps), {
|
|
28
31
|
// events
|
|
29
32
|
'onUpdate:show': [Function, Array], onUpdateShow: [Function, Array], onAfterEnter: Function, onBeforeLeave: Function, onAfterLeave: Function, onClose: Function, onPositiveClick: Function, onNegativeClick: Function, onMaskClick: Function,
|
|
@@ -155,7 +158,8 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
155
158
|
mergedClsPrefixRef,
|
|
156
159
|
mergedThemeRef: themeRef,
|
|
157
160
|
isMountedRef,
|
|
158
|
-
appearRef: (0, vue_1.toRef)(props, 'appear')
|
|
161
|
+
appearRef: (0, vue_1.toRef)(props, 'appear'),
|
|
162
|
+
transformOriginRef: (0, vue_1.toRef)(props, 'transformOrigin')
|
|
159
163
|
});
|
|
160
164
|
return {
|
|
161
165
|
mergedClsPrefix: mergedClsPrefixRef,
|
|
@@ -12,5 +12,6 @@ export interface ModalInjection {
|
|
|
12
12
|
mergedThemeRef: Ref<MergedTheme<ModalTheme>>;
|
|
13
13
|
isMountedRef: Ref<boolean>;
|
|
14
14
|
appearRef: Ref<boolean | undefined>;
|
|
15
|
+
transformOriginRef: Ref<'mouse' | 'center'>;
|
|
15
16
|
}
|
|
16
17
|
export declare const modalInjectionKey: InjectionKey<ModalInjection>;
|
|
@@ -37,5 +37,5 @@ declare const presetProps: {
|
|
|
37
37
|
};
|
|
38
38
|
hoverable: BooleanConstructor;
|
|
39
39
|
};
|
|
40
|
-
declare const presetPropsKeys: ("type" | "content" | "size" | "icon" | "title" | "action" | "loading" | "bordered" | "contentStyle" | "onClose" | "closable" | "showIcon" | "iconPlacement" | "hoverable" | "headerStyle" | "footerStyle" | "embedded" | "segmented" | "
|
|
40
|
+
declare const presetPropsKeys: ("type" | "content" | "size" | "icon" | "title" | "action" | "positiveText" | "negativeText" | "loading" | "bordered" | "contentStyle" | "onClose" | "closable" | "showIcon" | "iconPlacement" | "hoverable" | "headerStyle" | "footerStyle" | "embedded" | "segmented" | "onPositiveClick" | "onNegativeClick")[];
|
|
41
41
|
export { presetProps, presetPropsKeys };
|