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
|
@@ -243,7 +243,8 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
243
243
|
}),
|
|
244
244
|
(0, vue_1.h)(_internal_1.NBaseIcon, { clsPrefix: clsPrefix, onClick: this.rotateClockwise }, { default: () => (0, vue_1.h)(icons_1.RotateClockwiseIcon, null) }),
|
|
245
245
|
(0, vue_1.h)(_internal_1.NBaseIcon, { clsPrefix: clsPrefix, onClick: this.zoomOut }, { default: () => (0, vue_1.h)(icons_1.ZoomOutIcon, null) }),
|
|
246
|
-
(0, vue_1.h)(_internal_1.NBaseIcon, { clsPrefix: clsPrefix, onClick: this.zoomIn }, { default: () => (0, vue_1.h)(icons_1.ZoomInIcon, null) })
|
|
246
|
+
(0, vue_1.h)(_internal_1.NBaseIcon, { clsPrefix: clsPrefix, onClick: this.zoomIn }, { default: () => (0, vue_1.h)(icons_1.ZoomInIcon, null) }),
|
|
247
|
+
(0, vue_1.h)(_internal_1.NBaseIcon, { clsPrefix: clsPrefix, onClick: this.toggleShow }, { default: () => icons_2.closeIcon }))) : null
|
|
247
248
|
})) : null,
|
|
248
249
|
(0, vue_1.h)(vue_1.Transition, { name: "fade-in-scale-up-transition", onAfterLeave: this.handleAfterLeave, appear: this.appear,
|
|
249
250
|
// BUG:
|
package/lib/image/src/icons.d.ts
CHANGED
package/lib/image/src/icons.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.nextIcon = exports.prevIcon = void 0;
|
|
3
|
+
exports.closeIcon = exports.nextIcon = exports.prevIcon = void 0;
|
|
4
4
|
const vue_1 = require("vue");
|
|
5
5
|
exports.prevIcon = ((0, vue_1.h)("svg", { viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
6
6
|
(0, vue_1.h)("path", { d: "M6 5C5.75454 5 5.55039 5.17688 5.50806 5.41012L5.5 5.5V14.5C5.5 14.7761 5.72386 15 6 15C6.24546 15 6.44961 14.8231 6.49194 14.5899L6.5 14.5V5.5C6.5 5.22386 6.27614 5 6 5ZM13.8536 5.14645C13.68 4.97288 13.4106 4.9536 13.2157 5.08859L13.1464 5.14645L8.64645 9.64645C8.47288 9.82001 8.4536 10.0894 8.58859 10.2843L8.64645 10.3536L13.1464 14.8536C13.3417 15.0488 13.6583 15.0488 13.8536 14.8536C14.0271 14.68 14.0464 14.4106 13.9114 14.2157L13.8536 14.1464L9.70711 10L13.8536 5.85355C14.0488 5.65829 14.0488 5.34171 13.8536 5.14645Z", fill: "currentColor" })));
|
|
7
7
|
exports.nextIcon = ((0, vue_1.h)("svg", { viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
8
8
|
(0, vue_1.h)("path", { d: "M13.5 5C13.7455 5 13.9496 5.17688 13.9919 5.41012L14 5.5V14.5C14 14.7761 13.7761 15 13.5 15C13.2545 15 13.0504 14.8231 13.0081 14.5899L13 14.5V5.5C13 5.22386 13.2239 5 13.5 5ZM5.64645 5.14645C5.82001 4.97288 6.08944 4.9536 6.28431 5.08859L6.35355 5.14645L10.8536 9.64645C11.0271 9.82001 11.0464 10.0894 10.9114 10.2843L10.8536 10.3536L6.35355 14.8536C6.15829 15.0488 5.84171 15.0488 5.64645 14.8536C5.47288 14.68 5.4536 14.4106 5.58859 14.2157L5.64645 14.1464L9.79289 10L5.64645 5.85355C5.45118 5.65829 5.45118 5.34171 5.64645 5.14645Z", fill: "currentColor" })));
|
|
9
|
+
exports.closeIcon = ((0, vue_1.h)("svg", { viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
10
|
+
(0, vue_1.h)("path", { d: "M4.089 4.216l.057-.07a.5.5 0 0 1 .638-.057l.07.057L10 9.293l5.146-5.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 .057.638l-.057.07L10.707 10l5.147 5.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.638.057l-.07-.057L10 10.707l-5.146 5.147a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1-.057-.638l.057-.07L9.293 10L4.146 4.854a.5.5 0 0 1-.057-.638l.057-.07l-.057.07z", fill: "currentColor" })));
|
package/lib/input/src/Input.d.ts
CHANGED
|
@@ -649,6 +649,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
649
649
|
pressedColor: string;
|
|
650
650
|
opacityDisabled: string;
|
|
651
651
|
inputColorDisabled: string;
|
|
652
|
+
buttonColor2: string;
|
|
653
|
+
buttonColor2Hover: string;
|
|
654
|
+
buttonColor2Pressed: string;
|
|
652
655
|
boxShadow1: string;
|
|
653
656
|
boxShadow2: string;
|
|
654
657
|
boxShadow3: string;
|
|
@@ -793,6 +796,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
793
796
|
isCompositing: import("vue").Ref<boolean>;
|
|
794
797
|
blur: () => void;
|
|
795
798
|
focus: () => void;
|
|
799
|
+
select: () => void;
|
|
796
800
|
activate: () => void;
|
|
797
801
|
deactivate: () => void;
|
|
798
802
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
package/lib/input/src/Input.js
CHANGED
|
@@ -519,6 +519,11 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
519
519
|
document.activeElement.blur();
|
|
520
520
|
}
|
|
521
521
|
}
|
|
522
|
+
function select() {
|
|
523
|
+
var _a, _b;
|
|
524
|
+
(_a = textareaElRef.value) === null || _a === void 0 ? void 0 : _a.select();
|
|
525
|
+
(_b = inputElRef.value) === null || _b === void 0 ? void 0 : _b.select();
|
|
526
|
+
}
|
|
522
527
|
function activate() {
|
|
523
528
|
if (mergedDisabledRef.value)
|
|
524
529
|
return;
|
|
@@ -585,6 +590,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
585
590
|
isCompositing: isComposingRef,
|
|
586
591
|
focus,
|
|
587
592
|
blur,
|
|
593
|
+
select,
|
|
588
594
|
deactivate,
|
|
589
595
|
activate
|
|
590
596
|
};
|
|
@@ -700,13 +706,13 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
700
706
|
this.autosize ? ((0, vue_1.h)(vueuc_1.VResizeObserver, { onResize: this.handleTextAreaMirrorResize }, {
|
|
701
707
|
default: () => ((0, vue_1.h)("div", { ref: "textareaMirrorElRef", class: `${mergedClsPrefix}-input__textarea-mirror`, key: "mirror" }))
|
|
702
708
|
})) : null)) : ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-input__input` },
|
|
703
|
-
(0, vue_1.h)("input", Object.assign({
|
|
709
|
+
(0, vue_1.h)("input", Object.assign({ type: this.type === 'password' &&
|
|
704
710
|
this.mergedShowPasswordOn &&
|
|
705
711
|
this.passwordVisible
|
|
706
712
|
? 'text'
|
|
707
|
-
: this.type, class: `${mergedClsPrefix}-input__input-el`, tabindex: this.passivelyActivated && !this.activated ? -1 : undefined, placeholder: this.mergedPlaceholder[0], disabled: this.mergedDisabled, maxlength: this.maxlength, minlength: this.minlength, value: Array.isArray(this.mergedValue)
|
|
713
|
+
: this.type }, this.inputProps, { ref: "inputElRef", class: `${mergedClsPrefix}-input__input-el`, style: this.textDecorationStyle[0], tabindex: this.passivelyActivated && !this.activated ? -1 : undefined, placeholder: this.mergedPlaceholder[0], disabled: this.mergedDisabled, maxlength: this.maxlength, minlength: this.minlength, value: Array.isArray(this.mergedValue)
|
|
708
714
|
? this.mergedValue[0]
|
|
709
|
-
: this.mergedValue, readonly: this.readonly, autofocus: this.autofocus, size: this.attrSize,
|
|
715
|
+
: this.mergedValue, readonly: this.readonly, autofocus: this.autofocus, size: this.attrSize, onBlur: this.handleInputBlur, onFocus: this.handleInputFocus, onInput: (e) => this.handleInput(e, 0), onChange: (e) => this.handleChange(e, 0) })),
|
|
710
716
|
this.showPlaceholder1 ? ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-input__placeholder` },
|
|
711
717
|
(0, vue_1.h)("span", null, this.mergedPlaceholder[0]))) : null,
|
|
712
718
|
this.autosize ? ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-input__input-mirror`, key: "mirror", ref: "inputMirrorElRef" }, "\u00A0")) : null)),
|
|
@@ -57,20 +57,30 @@ declare const inputNumberProps: {
|
|
|
57
57
|
fontSizeMedium: string;
|
|
58
58
|
fontSizeLarge: string;
|
|
59
59
|
opacityDisabled: string;
|
|
60
|
+
colorOpacitySecondary: number;
|
|
61
|
+
colorOpacitySecondaryHover: number;
|
|
62
|
+
colorOpacitySecondaryPressed: number;
|
|
63
|
+
colorSecondary: string;
|
|
64
|
+
colorSecondaryHover: string;
|
|
65
|
+
colorSecondaryPressed: string;
|
|
66
|
+
colorTertiary: string;
|
|
67
|
+
colorTertiaryHover: string;
|
|
68
|
+
colorTertiaryPressed: string;
|
|
69
|
+
colorQuaternary: string;
|
|
70
|
+
colorQuaternaryHover: string;
|
|
71
|
+
colorQuaternaryPressed: string;
|
|
60
72
|
color: string;
|
|
61
73
|
colorHover: string;
|
|
62
74
|
colorPressed: string;
|
|
63
75
|
colorFocus: string;
|
|
64
76
|
colorDisabled: string;
|
|
65
77
|
textColor: string;
|
|
78
|
+
textColorTertiary: string;
|
|
66
79
|
textColorHover: string;
|
|
67
80
|
textColorPressed: string;
|
|
68
81
|
textColorFocus: string;
|
|
69
82
|
textColorDisabled: string;
|
|
70
83
|
textColorText: string;
|
|
71
|
-
textColorTextDepth1: string;
|
|
72
|
-
textColorTextDepth2: string;
|
|
73
|
-
textColorTextDepth3: string;
|
|
74
84
|
textColorTextHover: string;
|
|
75
85
|
textColorTextPressed: string;
|
|
76
86
|
textColorTextFocus: string;
|
|
@@ -217,9 +227,8 @@ declare const inputNumberProps: {
|
|
|
217
227
|
borderDisabledError: string;
|
|
218
228
|
rippleColorError: string;
|
|
219
229
|
waveOpacity: string;
|
|
220
|
-
fontWeightText: string;
|
|
221
230
|
fontWeight: string;
|
|
222
|
-
|
|
231
|
+
fontWeightStrong: string;
|
|
223
232
|
paddingTiny: string;
|
|
224
233
|
paddingSmall: string;
|
|
225
234
|
paddingMedium: string;
|
|
@@ -316,20 +325,30 @@ declare const inputNumberProps: {
|
|
|
316
325
|
fontSizeMedium: string;
|
|
317
326
|
fontSizeLarge: string;
|
|
318
327
|
opacityDisabled: string;
|
|
328
|
+
colorOpacitySecondary: number;
|
|
329
|
+
colorOpacitySecondaryHover: number;
|
|
330
|
+
colorOpacitySecondaryPressed: number;
|
|
331
|
+
colorSecondary: string;
|
|
332
|
+
colorSecondaryHover: string;
|
|
333
|
+
colorSecondaryPressed: string;
|
|
334
|
+
colorTertiary: string;
|
|
335
|
+
colorTertiaryHover: string;
|
|
336
|
+
colorTertiaryPressed: string;
|
|
337
|
+
colorQuaternary: string;
|
|
338
|
+
colorQuaternaryHover: string;
|
|
339
|
+
colorQuaternaryPressed: string;
|
|
319
340
|
color: string;
|
|
320
341
|
colorHover: string;
|
|
321
342
|
colorPressed: string;
|
|
322
343
|
colorFocus: string;
|
|
323
344
|
colorDisabled: string;
|
|
324
345
|
textColor: string;
|
|
346
|
+
textColorTertiary: string;
|
|
325
347
|
textColorHover: string;
|
|
326
348
|
textColorPressed: string;
|
|
327
349
|
textColorFocus: string;
|
|
328
350
|
textColorDisabled: string;
|
|
329
351
|
textColorText: string;
|
|
330
|
-
textColorTextDepth1: string;
|
|
331
|
-
textColorTextDepth2: string;
|
|
332
|
-
textColorTextDepth3: string;
|
|
333
352
|
textColorTextHover: string;
|
|
334
353
|
textColorTextPressed: string;
|
|
335
354
|
textColorTextFocus: string;
|
|
@@ -476,9 +495,8 @@ declare const inputNumberProps: {
|
|
|
476
495
|
borderDisabledError: string;
|
|
477
496
|
rippleColorError: string;
|
|
478
497
|
waveOpacity: string;
|
|
479
|
-
fontWeightText: string;
|
|
480
498
|
fontWeight: string;
|
|
481
|
-
|
|
499
|
+
fontWeightStrong: string;
|
|
482
500
|
paddingTiny: string;
|
|
483
501
|
paddingSmall: string;
|
|
484
502
|
paddingMedium: string;
|
|
@@ -575,20 +593,30 @@ declare const inputNumberProps: {
|
|
|
575
593
|
fontSizeMedium: string;
|
|
576
594
|
fontSizeLarge: string;
|
|
577
595
|
opacityDisabled: string;
|
|
596
|
+
colorOpacitySecondary: number;
|
|
597
|
+
colorOpacitySecondaryHover: number;
|
|
598
|
+
colorOpacitySecondaryPressed: number;
|
|
599
|
+
colorSecondary: string;
|
|
600
|
+
colorSecondaryHover: string;
|
|
601
|
+
colorSecondaryPressed: string;
|
|
602
|
+
colorTertiary: string;
|
|
603
|
+
colorTertiaryHover: string;
|
|
604
|
+
colorTertiaryPressed: string;
|
|
605
|
+
colorQuaternary: string;
|
|
606
|
+
colorQuaternaryHover: string;
|
|
607
|
+
colorQuaternaryPressed: string;
|
|
578
608
|
color: string;
|
|
579
609
|
colorHover: string;
|
|
580
610
|
colorPressed: string;
|
|
581
611
|
colorFocus: string;
|
|
582
612
|
colorDisabled: string;
|
|
583
613
|
textColor: string;
|
|
614
|
+
textColorTertiary: string;
|
|
584
615
|
textColorHover: string;
|
|
585
616
|
textColorPressed: string;
|
|
586
617
|
textColorFocus: string;
|
|
587
618
|
textColorDisabled: string;
|
|
588
619
|
textColorText: string;
|
|
589
|
-
textColorTextDepth1: string;
|
|
590
|
-
textColorTextDepth2: string;
|
|
591
|
-
textColorTextDepth3: string;
|
|
592
620
|
textColorTextHover: string;
|
|
593
621
|
textColorTextPressed: string;
|
|
594
622
|
textColorTextFocus: string;
|
|
@@ -735,9 +763,8 @@ declare const inputNumberProps: {
|
|
|
735
763
|
borderDisabledError: string;
|
|
736
764
|
rippleColorError: string;
|
|
737
765
|
waveOpacity: string;
|
|
738
|
-
fontWeightText: string;
|
|
739
766
|
fontWeight: string;
|
|
740
|
-
|
|
767
|
+
fontWeightStrong: string;
|
|
741
768
|
paddingTiny: string;
|
|
742
769
|
paddingSmall: string;
|
|
743
770
|
paddingMedium: string;
|
|
@@ -875,20 +902,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
875
902
|
fontSizeMedium: string;
|
|
876
903
|
fontSizeLarge: string;
|
|
877
904
|
opacityDisabled: string;
|
|
905
|
+
colorOpacitySecondary: number;
|
|
906
|
+
colorOpacitySecondaryHover: number;
|
|
907
|
+
colorOpacitySecondaryPressed: number;
|
|
908
|
+
colorSecondary: string;
|
|
909
|
+
colorSecondaryHover: string;
|
|
910
|
+
colorSecondaryPressed: string;
|
|
911
|
+
colorTertiary: string;
|
|
912
|
+
colorTertiaryHover: string;
|
|
913
|
+
colorTertiaryPressed: string;
|
|
914
|
+
colorQuaternary: string;
|
|
915
|
+
colorQuaternaryHover: string;
|
|
916
|
+
colorQuaternaryPressed: string;
|
|
878
917
|
color: string;
|
|
879
918
|
colorHover: string;
|
|
880
919
|
colorPressed: string;
|
|
881
920
|
colorFocus: string;
|
|
882
921
|
colorDisabled: string;
|
|
883
922
|
textColor: string;
|
|
923
|
+
textColorTertiary: string;
|
|
884
924
|
textColorHover: string;
|
|
885
925
|
textColorPressed: string;
|
|
886
926
|
textColorFocus: string;
|
|
887
927
|
textColorDisabled: string;
|
|
888
928
|
textColorText: string;
|
|
889
|
-
textColorTextDepth1: string;
|
|
890
|
-
textColorTextDepth2: string;
|
|
891
|
-
textColorTextDepth3: string;
|
|
892
929
|
textColorTextHover: string;
|
|
893
930
|
textColorTextPressed: string;
|
|
894
931
|
textColorTextFocus: string;
|
|
@@ -1035,9 +1072,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1035
1072
|
borderDisabledError: string;
|
|
1036
1073
|
rippleColorError: string;
|
|
1037
1074
|
waveOpacity: string;
|
|
1038
|
-
fontWeightText: string;
|
|
1039
1075
|
fontWeight: string;
|
|
1040
|
-
|
|
1076
|
+
fontWeightStrong: string;
|
|
1041
1077
|
paddingTiny: string;
|
|
1042
1078
|
paddingSmall: string;
|
|
1043
1079
|
paddingMedium: string;
|
|
@@ -1134,20 +1170,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1134
1170
|
fontSizeMedium: string;
|
|
1135
1171
|
fontSizeLarge: string;
|
|
1136
1172
|
opacityDisabled: string;
|
|
1173
|
+
colorOpacitySecondary: number;
|
|
1174
|
+
colorOpacitySecondaryHover: number;
|
|
1175
|
+
colorOpacitySecondaryPressed: number;
|
|
1176
|
+
colorSecondary: string;
|
|
1177
|
+
colorSecondaryHover: string;
|
|
1178
|
+
colorSecondaryPressed: string;
|
|
1179
|
+
colorTertiary: string;
|
|
1180
|
+
colorTertiaryHover: string;
|
|
1181
|
+
colorTertiaryPressed: string;
|
|
1182
|
+
colorQuaternary: string;
|
|
1183
|
+
colorQuaternaryHover: string;
|
|
1184
|
+
colorQuaternaryPressed: string;
|
|
1137
1185
|
color: string;
|
|
1138
1186
|
colorHover: string;
|
|
1139
1187
|
colorPressed: string;
|
|
1140
1188
|
colorFocus: string;
|
|
1141
1189
|
colorDisabled: string;
|
|
1142
1190
|
textColor: string;
|
|
1191
|
+
textColorTertiary: string;
|
|
1143
1192
|
textColorHover: string;
|
|
1144
1193
|
textColorPressed: string;
|
|
1145
1194
|
textColorFocus: string;
|
|
1146
1195
|
textColorDisabled: string;
|
|
1147
1196
|
textColorText: string;
|
|
1148
|
-
textColorTextDepth1: string;
|
|
1149
|
-
textColorTextDepth2: string;
|
|
1150
|
-
textColorTextDepth3: string;
|
|
1151
1197
|
textColorTextHover: string;
|
|
1152
1198
|
textColorTextPressed: string;
|
|
1153
1199
|
textColorTextFocus: string;
|
|
@@ -1294,9 +1340,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1294
1340
|
borderDisabledError: string;
|
|
1295
1341
|
rippleColorError: string;
|
|
1296
1342
|
waveOpacity: string;
|
|
1297
|
-
fontWeightText: string;
|
|
1298
1343
|
fontWeight: string;
|
|
1299
|
-
|
|
1344
|
+
fontWeightStrong: string;
|
|
1300
1345
|
paddingTiny: string;
|
|
1301
1346
|
paddingSmall: string;
|
|
1302
1347
|
paddingMedium: string;
|
|
@@ -1393,20 +1438,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1393
1438
|
fontSizeMedium: string;
|
|
1394
1439
|
fontSizeLarge: string;
|
|
1395
1440
|
opacityDisabled: string;
|
|
1441
|
+
colorOpacitySecondary: number;
|
|
1442
|
+
colorOpacitySecondaryHover: number;
|
|
1443
|
+
colorOpacitySecondaryPressed: number;
|
|
1444
|
+
colorSecondary: string;
|
|
1445
|
+
colorSecondaryHover: string;
|
|
1446
|
+
colorSecondaryPressed: string;
|
|
1447
|
+
colorTertiary: string;
|
|
1448
|
+
colorTertiaryHover: string;
|
|
1449
|
+
colorTertiaryPressed: string;
|
|
1450
|
+
colorQuaternary: string;
|
|
1451
|
+
colorQuaternaryHover: string;
|
|
1452
|
+
colorQuaternaryPressed: string;
|
|
1396
1453
|
color: string;
|
|
1397
1454
|
colorHover: string;
|
|
1398
1455
|
colorPressed: string;
|
|
1399
1456
|
colorFocus: string;
|
|
1400
1457
|
colorDisabled: string;
|
|
1401
1458
|
textColor: string;
|
|
1459
|
+
textColorTertiary: string;
|
|
1402
1460
|
textColorHover: string;
|
|
1403
1461
|
textColorPressed: string;
|
|
1404
1462
|
textColorFocus: string;
|
|
1405
1463
|
textColorDisabled: string;
|
|
1406
1464
|
textColorText: string;
|
|
1407
|
-
textColorTextDepth1: string;
|
|
1408
|
-
textColorTextDepth2: string;
|
|
1409
|
-
textColorTextDepth3: string;
|
|
1410
1465
|
textColorTextHover: string;
|
|
1411
1466
|
textColorTextPressed: string;
|
|
1412
1467
|
textColorTextFocus: string;
|
|
@@ -1553,9 +1608,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1553
1608
|
borderDisabledError: string;
|
|
1554
1609
|
rippleColorError: string;
|
|
1555
1610
|
waveOpacity: string;
|
|
1556
|
-
fontWeightText: string;
|
|
1557
1611
|
fontWeight: string;
|
|
1558
|
-
|
|
1612
|
+
fontWeightStrong: string;
|
|
1559
1613
|
paddingTiny: string;
|
|
1560
1614
|
paddingSmall: string;
|
|
1561
1615
|
paddingMedium: string;
|
|
@@ -1643,6 +1697,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1643
1697
|
isCompositing: boolean;
|
|
1644
1698
|
blur: () => void;
|
|
1645
1699
|
focus: () => void;
|
|
1700
|
+
select: () => void;
|
|
1646
1701
|
activate: () => void;
|
|
1647
1702
|
deactivate: () => void;
|
|
1648
1703
|
} | null>;
|
|
@@ -1744,6 +1799,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1744
1799
|
pressedColor: string;
|
|
1745
1800
|
opacityDisabled: string;
|
|
1746
1801
|
inputColorDisabled: string;
|
|
1802
|
+
buttonColor2: string;
|
|
1803
|
+
buttonColor2Hover: string;
|
|
1804
|
+
buttonColor2Pressed: string;
|
|
1747
1805
|
boxShadow1: string;
|
|
1748
1806
|
boxShadow2: string;
|
|
1749
1807
|
boxShadow3: string;
|
|
@@ -1789,20 +1847,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1789
1847
|
fontSizeMedium: string;
|
|
1790
1848
|
fontSizeLarge: string;
|
|
1791
1849
|
opacityDisabled: string;
|
|
1850
|
+
colorOpacitySecondary: number;
|
|
1851
|
+
colorOpacitySecondaryHover: number;
|
|
1852
|
+
colorOpacitySecondaryPressed: number;
|
|
1853
|
+
colorSecondary: string;
|
|
1854
|
+
colorSecondaryHover: string;
|
|
1855
|
+
colorSecondaryPressed: string;
|
|
1856
|
+
colorTertiary: string;
|
|
1857
|
+
colorTertiaryHover: string;
|
|
1858
|
+
colorTertiaryPressed: string;
|
|
1859
|
+
colorQuaternary: string;
|
|
1860
|
+
colorQuaternaryHover: string;
|
|
1861
|
+
colorQuaternaryPressed: string;
|
|
1792
1862
|
color: string;
|
|
1793
1863
|
colorHover: string;
|
|
1794
1864
|
colorPressed: string;
|
|
1795
1865
|
colorFocus: string;
|
|
1796
1866
|
colorDisabled: string;
|
|
1797
1867
|
textColor: string;
|
|
1868
|
+
textColorTertiary: string;
|
|
1798
1869
|
textColorHover: string;
|
|
1799
1870
|
textColorPressed: string;
|
|
1800
1871
|
textColorFocus: string;
|
|
1801
1872
|
textColorDisabled: string;
|
|
1802
1873
|
textColorText: string;
|
|
1803
|
-
textColorTextDepth1: string;
|
|
1804
|
-
textColorTextDepth2: string;
|
|
1805
|
-
textColorTextDepth3: string;
|
|
1806
1874
|
textColorTextHover: string;
|
|
1807
1875
|
textColorTextPressed: string;
|
|
1808
1876
|
textColorTextFocus: string;
|
|
@@ -1949,9 +2017,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1949
2017
|
borderDisabledError: string;
|
|
1950
2018
|
rippleColorError: string;
|
|
1951
2019
|
waveOpacity: string;
|
|
1952
|
-
fontWeightText: string;
|
|
1953
2020
|
fontWeight: string;
|
|
1954
|
-
|
|
2021
|
+
fontWeightStrong: string;
|
|
1955
2022
|
paddingTiny: string;
|
|
1956
2023
|
paddingSmall: string;
|
|
1957
2024
|
paddingMedium: string;
|
|
@@ -2111,20 +2178,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2111
2178
|
fontSizeMedium: string;
|
|
2112
2179
|
fontSizeLarge: string;
|
|
2113
2180
|
opacityDisabled: string;
|
|
2181
|
+
colorOpacitySecondary: number;
|
|
2182
|
+
colorOpacitySecondaryHover: number;
|
|
2183
|
+
colorOpacitySecondaryPressed: number;
|
|
2184
|
+
colorSecondary: string;
|
|
2185
|
+
colorSecondaryHover: string;
|
|
2186
|
+
colorSecondaryPressed: string;
|
|
2187
|
+
colorTertiary: string;
|
|
2188
|
+
colorTertiaryHover: string;
|
|
2189
|
+
colorTertiaryPressed: string;
|
|
2190
|
+
colorQuaternary: string;
|
|
2191
|
+
colorQuaternaryHover: string;
|
|
2192
|
+
colorQuaternaryPressed: string;
|
|
2114
2193
|
color: string;
|
|
2115
2194
|
colorHover: string;
|
|
2116
2195
|
colorPressed: string;
|
|
2117
2196
|
colorFocus: string;
|
|
2118
2197
|
colorDisabled: string;
|
|
2119
2198
|
textColor: string;
|
|
2199
|
+
textColorTertiary: string;
|
|
2120
2200
|
textColorHover: string;
|
|
2121
2201
|
textColorPressed: string;
|
|
2122
2202
|
textColorFocus: string;
|
|
2123
2203
|
textColorDisabled: string;
|
|
2124
2204
|
textColorText: string;
|
|
2125
|
-
textColorTextDepth1: string;
|
|
2126
|
-
textColorTextDepth2: string;
|
|
2127
|
-
textColorTextDepth3: string;
|
|
2128
2205
|
textColorTextHover: string;
|
|
2129
2206
|
textColorTextPressed: string;
|
|
2130
2207
|
textColorTextFocus: string;
|
|
@@ -2271,9 +2348,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2271
2348
|
borderDisabledError: string;
|
|
2272
2349
|
rippleColorError: string;
|
|
2273
2350
|
waveOpacity: string;
|
|
2274
|
-
fontWeightText: string;
|
|
2275
2351
|
fontWeight: string;
|
|
2276
|
-
|
|
2352
|
+
fontWeightStrong: string;
|
|
2277
2353
|
paddingTiny: string;
|
|
2278
2354
|
paddingSmall: string;
|
|
2279
2355
|
paddingMedium: string;
|
|
@@ -2370,20 +2446,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2370
2446
|
fontSizeMedium: string;
|
|
2371
2447
|
fontSizeLarge: string;
|
|
2372
2448
|
opacityDisabled: string;
|
|
2449
|
+
colorOpacitySecondary: number;
|
|
2450
|
+
colorOpacitySecondaryHover: number;
|
|
2451
|
+
colorOpacitySecondaryPressed: number;
|
|
2452
|
+
colorSecondary: string;
|
|
2453
|
+
colorSecondaryHover: string;
|
|
2454
|
+
colorSecondaryPressed: string;
|
|
2455
|
+
colorTertiary: string;
|
|
2456
|
+
colorTertiaryHover: string;
|
|
2457
|
+
colorTertiaryPressed: string;
|
|
2458
|
+
colorQuaternary: string;
|
|
2459
|
+
colorQuaternaryHover: string;
|
|
2460
|
+
colorQuaternaryPressed: string;
|
|
2373
2461
|
color: string;
|
|
2374
2462
|
colorHover: string;
|
|
2375
2463
|
colorPressed: string;
|
|
2376
2464
|
colorFocus: string;
|
|
2377
2465
|
colorDisabled: string;
|
|
2378
2466
|
textColor: string;
|
|
2467
|
+
textColorTertiary: string;
|
|
2379
2468
|
textColorHover: string;
|
|
2380
2469
|
textColorPressed: string;
|
|
2381
2470
|
textColorFocus: string;
|
|
2382
2471
|
textColorDisabled: string;
|
|
2383
2472
|
textColorText: string;
|
|
2384
|
-
textColorTextDepth1: string;
|
|
2385
|
-
textColorTextDepth2: string;
|
|
2386
|
-
textColorTextDepth3: string;
|
|
2387
2473
|
textColorTextHover: string;
|
|
2388
2474
|
textColorTextPressed: string;
|
|
2389
2475
|
textColorTextFocus: string;
|
|
@@ -2530,9 +2616,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2530
2616
|
borderDisabledError: string;
|
|
2531
2617
|
rippleColorError: string;
|
|
2532
2618
|
waveOpacity: string;
|
|
2533
|
-
fontWeightText: string;
|
|
2534
2619
|
fontWeight: string;
|
|
2535
|
-
|
|
2620
|
+
fontWeightStrong: string;
|
|
2536
2621
|
paddingTiny: string;
|
|
2537
2622
|
paddingSmall: string;
|
|
2538
2623
|
paddingMedium: string;
|
|
@@ -2629,20 +2714,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2629
2714
|
fontSizeMedium: string;
|
|
2630
2715
|
fontSizeLarge: string;
|
|
2631
2716
|
opacityDisabled: string;
|
|
2717
|
+
colorOpacitySecondary: number;
|
|
2718
|
+
colorOpacitySecondaryHover: number;
|
|
2719
|
+
colorOpacitySecondaryPressed: number;
|
|
2720
|
+
colorSecondary: string;
|
|
2721
|
+
colorSecondaryHover: string;
|
|
2722
|
+
colorSecondaryPressed: string;
|
|
2723
|
+
colorTertiary: string;
|
|
2724
|
+
colorTertiaryHover: string;
|
|
2725
|
+
colorTertiaryPressed: string;
|
|
2726
|
+
colorQuaternary: string;
|
|
2727
|
+
colorQuaternaryHover: string;
|
|
2728
|
+
colorQuaternaryPressed: string;
|
|
2632
2729
|
color: string;
|
|
2633
2730
|
colorHover: string;
|
|
2634
2731
|
colorPressed: string;
|
|
2635
2732
|
colorFocus: string;
|
|
2636
2733
|
colorDisabled: string;
|
|
2637
2734
|
textColor: string;
|
|
2735
|
+
textColorTertiary: string;
|
|
2638
2736
|
textColorHover: string;
|
|
2639
2737
|
textColorPressed: string;
|
|
2640
2738
|
textColorFocus: string;
|
|
2641
2739
|
textColorDisabled: string;
|
|
2642
2740
|
textColorText: string;
|
|
2643
|
-
textColorTextDepth1: string;
|
|
2644
|
-
textColorTextDepth2: string;
|
|
2645
|
-
textColorTextDepth3: string;
|
|
2646
2741
|
textColorTextHover: string;
|
|
2647
2742
|
textColorTextPressed: string;
|
|
2648
2743
|
textColorTextFocus: string;
|
|
@@ -2789,9 +2884,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2789
2884
|
borderDisabledError: string;
|
|
2790
2885
|
rippleColorError: string;
|
|
2791
2886
|
waveOpacity: string;
|
|
2792
|
-
fontWeightText: string;
|
|
2793
2887
|
fontWeight: string;
|
|
2794
|
-
|
|
2888
|
+
fontWeightStrong: string;
|
|
2795
2889
|
paddingTiny: string;
|
|
2796
2890
|
paddingSmall: string;
|
|
2797
2891
|
paddingMedium: string;
|
|
@@ -20,20 +20,30 @@ declare const inputNumberLight: import("../../_mixins").Theme<"InputNumber", {
|
|
|
20
20
|
fontSizeMedium: string;
|
|
21
21
|
fontSizeLarge: string;
|
|
22
22
|
opacityDisabled: string;
|
|
23
|
+
colorOpacitySecondary: number;
|
|
24
|
+
colorOpacitySecondaryHover: number;
|
|
25
|
+
colorOpacitySecondaryPressed: number;
|
|
26
|
+
colorSecondary: string;
|
|
27
|
+
colorSecondaryHover: string;
|
|
28
|
+
colorSecondaryPressed: string;
|
|
29
|
+
colorTertiary: string;
|
|
30
|
+
colorTertiaryHover: string;
|
|
31
|
+
colorTertiaryPressed: string;
|
|
32
|
+
colorQuaternary: string;
|
|
33
|
+
colorQuaternaryHover: string;
|
|
34
|
+
colorQuaternaryPressed: string;
|
|
23
35
|
color: string;
|
|
24
36
|
colorHover: string;
|
|
25
37
|
colorPressed: string;
|
|
26
38
|
colorFocus: string;
|
|
27
39
|
colorDisabled: string;
|
|
28
40
|
textColor: string;
|
|
41
|
+
textColorTertiary: string;
|
|
29
42
|
textColorHover: string;
|
|
30
43
|
textColorPressed: string;
|
|
31
44
|
textColorFocus: string;
|
|
32
45
|
textColorDisabled: string;
|
|
33
46
|
textColorText: string;
|
|
34
|
-
textColorTextDepth1: string;
|
|
35
|
-
textColorTextDepth2: string;
|
|
36
|
-
textColorTextDepth3: string;
|
|
37
47
|
textColorTextHover: string;
|
|
38
48
|
textColorTextPressed: string;
|
|
39
49
|
textColorTextFocus: string;
|
|
@@ -180,9 +190,8 @@ declare const inputNumberLight: import("../../_mixins").Theme<"InputNumber", {
|
|
|
180
190
|
borderDisabledError: string;
|
|
181
191
|
rippleColorError: string;
|
|
182
192
|
waveOpacity: string;
|
|
183
|
-
fontWeightText: string;
|
|
184
193
|
fontWeight: string;
|
|
185
|
-
|
|
194
|
+
fontWeightStrong: string;
|
|
186
195
|
paddingTiny: string;
|
|
187
196
|
paddingSmall: string;
|
|
188
197
|
paddingMedium: string;
|
|
@@ -221,6 +221,9 @@ export declare function createLayoutComponent(isContent: boolean): import("vue")
|
|
|
221
221
|
pressedColor: string;
|
|
222
222
|
opacityDisabled: string;
|
|
223
223
|
inputColorDisabled: string;
|
|
224
|
+
buttonColor2: string;
|
|
225
|
+
buttonColor2Hover: string;
|
|
226
|
+
buttonColor2Pressed: string;
|
|
224
227
|
boxShadow1: string;
|
|
225
228
|
boxShadow2: string;
|
|
226
229
|
boxShadow3: string;
|
|
@@ -608,6 +611,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
608
611
|
pressedColor: string;
|
|
609
612
|
opacityDisabled: string;
|
|
610
613
|
inputColorDisabled: string;
|
|
614
|
+
buttonColor2: string;
|
|
615
|
+
buttonColor2Hover: string;
|
|
616
|
+
buttonColor2Pressed: string;
|
|
611
617
|
boxShadow1: string;
|
|
612
618
|
boxShadow2: string;
|
|
613
619
|
boxShadow3: string;
|
|
@@ -194,6 +194,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
194
194
|
pressedColor: string;
|
|
195
195
|
opacityDisabled: string;
|
|
196
196
|
inputColorDisabled: string;
|
|
197
|
+
buttonColor2: string;
|
|
198
|
+
buttonColor2Hover: string;
|
|
199
|
+
buttonColor2Pressed: string;
|
|
197
200
|
boxShadow1: string;
|
|
198
201
|
boxShadow2: string;
|
|
199
202
|
boxShadow3: string;
|
|
@@ -281,6 +281,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
281
281
|
pressedColor: string;
|
|
282
282
|
opacityDisabled: string;
|
|
283
283
|
inputColorDisabled: string;
|
|
284
|
+
buttonColor2: string;
|
|
285
|
+
buttonColor2Hover: string;
|
|
286
|
+
buttonColor2Pressed: string;
|
|
284
287
|
boxShadow1: string;
|
|
285
288
|
boxShadow2: string;
|
|
286
289
|
boxShadow3: string;
|