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
|
@@ -30,6 +30,7 @@ export declare const dataTableProps: {
|
|
|
30
30
|
readonly type: PropType<boolean | undefined>;
|
|
31
31
|
readonly default: undefined;
|
|
32
32
|
};
|
|
33
|
+
readonly striped: BooleanConstructor;
|
|
33
34
|
readonly scrollX: PropType<string | number>;
|
|
34
35
|
readonly defaultCheckedRowKeys: {
|
|
35
36
|
readonly type: PropType<RowKey[]>;
|
|
@@ -115,6 +116,7 @@ export declare const dataTableProps: {
|
|
|
115
116
|
fontSizeLarge: string;
|
|
116
117
|
borderColor: string;
|
|
117
118
|
tdColorHover: string;
|
|
119
|
+
tdColorStriped: string;
|
|
118
120
|
thColor: string;
|
|
119
121
|
thColorHover: string;
|
|
120
122
|
tdColor: string;
|
|
@@ -126,11 +128,13 @@ export declare const dataTableProps: {
|
|
|
126
128
|
thIconColorActive: string;
|
|
127
129
|
borderColorModal: string;
|
|
128
130
|
tdColorHoverModal: string;
|
|
131
|
+
tdColorStripedModal: string;
|
|
129
132
|
thColorModal: string;
|
|
130
133
|
thColorHoverModal: string;
|
|
131
134
|
tdColorModal: string;
|
|
132
135
|
borderColorPopover: string;
|
|
133
136
|
tdColorHoverPopover: string;
|
|
137
|
+
tdColorStripedPopover: string;
|
|
134
138
|
thColorPopover: string;
|
|
135
139
|
thColorHoverPopover: string;
|
|
136
140
|
tdColorPopover: string;
|
|
@@ -166,20 +170,30 @@ export declare const dataTableProps: {
|
|
|
166
170
|
fontSizeMedium: string;
|
|
167
171
|
fontSizeLarge: string;
|
|
168
172
|
opacityDisabled: string;
|
|
173
|
+
colorOpacitySecondary: number;
|
|
174
|
+
colorOpacitySecondaryHover: number;
|
|
175
|
+
colorOpacitySecondaryPressed: number;
|
|
176
|
+
colorSecondary: string;
|
|
177
|
+
colorSecondaryHover: string;
|
|
178
|
+
colorSecondaryPressed: string;
|
|
179
|
+
colorTertiary: string;
|
|
180
|
+
colorTertiaryHover: string;
|
|
181
|
+
colorTertiaryPressed: string;
|
|
182
|
+
colorQuaternary: string;
|
|
183
|
+
colorQuaternaryHover: string;
|
|
184
|
+
colorQuaternaryPressed: string;
|
|
169
185
|
color: string;
|
|
170
186
|
colorHover: string;
|
|
171
187
|
colorPressed: string;
|
|
172
188
|
colorFocus: string;
|
|
173
189
|
colorDisabled: string;
|
|
174
190
|
textColor: string;
|
|
191
|
+
textColorTertiary: string;
|
|
175
192
|
textColorHover: string;
|
|
176
193
|
textColorPressed: string;
|
|
177
194
|
textColorFocus: string;
|
|
178
195
|
textColorDisabled: string;
|
|
179
196
|
textColorText: string;
|
|
180
|
-
textColorTextDepth1: string;
|
|
181
|
-
textColorTextDepth2: string;
|
|
182
|
-
textColorTextDepth3: string;
|
|
183
197
|
textColorTextHover: string;
|
|
184
198
|
textColorTextPressed: string;
|
|
185
199
|
textColorTextFocus: string;
|
|
@@ -326,9 +340,8 @@ export declare const dataTableProps: {
|
|
|
326
340
|
borderDisabledError: string;
|
|
327
341
|
rippleColorError: string;
|
|
328
342
|
waveOpacity: string;
|
|
329
|
-
fontWeightText: string;
|
|
330
343
|
fontWeight: string;
|
|
331
|
-
|
|
344
|
+
fontWeightStrong: string;
|
|
332
345
|
paddingTiny: string;
|
|
333
346
|
paddingSmall: string;
|
|
334
347
|
paddingMedium: string;
|
|
@@ -703,6 +716,7 @@ export declare const dataTableProps: {
|
|
|
703
716
|
fontSizeLarge: string;
|
|
704
717
|
borderColor: string;
|
|
705
718
|
tdColorHover: string;
|
|
719
|
+
tdColorStriped: string;
|
|
706
720
|
thColor: string;
|
|
707
721
|
thColorHover: string;
|
|
708
722
|
tdColor: string;
|
|
@@ -714,11 +728,13 @@ export declare const dataTableProps: {
|
|
|
714
728
|
thIconColorActive: string;
|
|
715
729
|
borderColorModal: string;
|
|
716
730
|
tdColorHoverModal: string;
|
|
731
|
+
tdColorStripedModal: string;
|
|
717
732
|
thColorModal: string;
|
|
718
733
|
thColorHoverModal: string;
|
|
719
734
|
tdColorModal: string;
|
|
720
735
|
borderColorPopover: string;
|
|
721
736
|
tdColorHoverPopover: string;
|
|
737
|
+
tdColorStripedPopover: string;
|
|
722
738
|
thColorPopover: string;
|
|
723
739
|
thColorHoverPopover: string;
|
|
724
740
|
tdColorPopover: string;
|
|
@@ -754,20 +770,30 @@ export declare const dataTableProps: {
|
|
|
754
770
|
fontSizeMedium: string;
|
|
755
771
|
fontSizeLarge: string;
|
|
756
772
|
opacityDisabled: string;
|
|
773
|
+
colorOpacitySecondary: number;
|
|
774
|
+
colorOpacitySecondaryHover: number;
|
|
775
|
+
colorOpacitySecondaryPressed: number;
|
|
776
|
+
colorSecondary: string;
|
|
777
|
+
colorSecondaryHover: string;
|
|
778
|
+
colorSecondaryPressed: string;
|
|
779
|
+
colorTertiary: string;
|
|
780
|
+
colorTertiaryHover: string;
|
|
781
|
+
colorTertiaryPressed: string;
|
|
782
|
+
colorQuaternary: string;
|
|
783
|
+
colorQuaternaryHover: string;
|
|
784
|
+
colorQuaternaryPressed: string;
|
|
757
785
|
color: string;
|
|
758
786
|
colorHover: string;
|
|
759
787
|
colorPressed: string;
|
|
760
788
|
colorFocus: string;
|
|
761
789
|
colorDisabled: string;
|
|
762
790
|
textColor: string;
|
|
791
|
+
textColorTertiary: string;
|
|
763
792
|
textColorHover: string;
|
|
764
793
|
textColorPressed: string;
|
|
765
794
|
textColorFocus: string;
|
|
766
795
|
textColorDisabled: string;
|
|
767
796
|
textColorText: string;
|
|
768
|
-
textColorTextDepth1: string;
|
|
769
|
-
textColorTextDepth2: string;
|
|
770
|
-
textColorTextDepth3: string;
|
|
771
797
|
textColorTextHover: string;
|
|
772
798
|
textColorTextPressed: string;
|
|
773
799
|
textColorTextFocus: string;
|
|
@@ -914,9 +940,8 @@ export declare const dataTableProps: {
|
|
|
914
940
|
borderDisabledError: string;
|
|
915
941
|
rippleColorError: string;
|
|
916
942
|
waveOpacity: string;
|
|
917
|
-
fontWeightText: string;
|
|
918
943
|
fontWeight: string;
|
|
919
|
-
|
|
944
|
+
fontWeightStrong: string;
|
|
920
945
|
paddingTiny: string;
|
|
921
946
|
paddingSmall: string;
|
|
922
947
|
paddingMedium: string;
|
|
@@ -1291,6 +1316,7 @@ export declare const dataTableProps: {
|
|
|
1291
1316
|
fontSizeLarge: string;
|
|
1292
1317
|
borderColor: string;
|
|
1293
1318
|
tdColorHover: string;
|
|
1319
|
+
tdColorStriped: string;
|
|
1294
1320
|
thColor: string;
|
|
1295
1321
|
thColorHover: string;
|
|
1296
1322
|
tdColor: string;
|
|
@@ -1302,11 +1328,13 @@ export declare const dataTableProps: {
|
|
|
1302
1328
|
thIconColorActive: string;
|
|
1303
1329
|
borderColorModal: string;
|
|
1304
1330
|
tdColorHoverModal: string;
|
|
1331
|
+
tdColorStripedModal: string;
|
|
1305
1332
|
thColorModal: string;
|
|
1306
1333
|
thColorHoverModal: string;
|
|
1307
1334
|
tdColorModal: string;
|
|
1308
1335
|
borderColorPopover: string;
|
|
1309
1336
|
tdColorHoverPopover: string;
|
|
1337
|
+
tdColorStripedPopover: string;
|
|
1310
1338
|
thColorPopover: string;
|
|
1311
1339
|
thColorHoverPopover: string;
|
|
1312
1340
|
tdColorPopover: string;
|
|
@@ -1342,20 +1370,30 @@ export declare const dataTableProps: {
|
|
|
1342
1370
|
fontSizeMedium: string;
|
|
1343
1371
|
fontSizeLarge: string;
|
|
1344
1372
|
opacityDisabled: string;
|
|
1373
|
+
colorOpacitySecondary: number;
|
|
1374
|
+
colorOpacitySecondaryHover: number;
|
|
1375
|
+
colorOpacitySecondaryPressed: number;
|
|
1376
|
+
colorSecondary: string;
|
|
1377
|
+
colorSecondaryHover: string;
|
|
1378
|
+
colorSecondaryPressed: string;
|
|
1379
|
+
colorTertiary: string;
|
|
1380
|
+
colorTertiaryHover: string;
|
|
1381
|
+
colorTertiaryPressed: string;
|
|
1382
|
+
colorQuaternary: string;
|
|
1383
|
+
colorQuaternaryHover: string;
|
|
1384
|
+
colorQuaternaryPressed: string;
|
|
1345
1385
|
color: string;
|
|
1346
1386
|
colorHover: string;
|
|
1347
1387
|
colorPressed: string;
|
|
1348
1388
|
colorFocus: string;
|
|
1349
1389
|
colorDisabled: string;
|
|
1350
1390
|
textColor: string;
|
|
1391
|
+
textColorTertiary: string;
|
|
1351
1392
|
textColorHover: string;
|
|
1352
1393
|
textColorPressed: string;
|
|
1353
1394
|
textColorFocus: string;
|
|
1354
1395
|
textColorDisabled: string;
|
|
1355
1396
|
textColorText: string;
|
|
1356
|
-
textColorTextDepth1: string;
|
|
1357
|
-
textColorTextDepth2: string;
|
|
1358
|
-
textColorTextDepth3: string;
|
|
1359
1397
|
textColorTextHover: string;
|
|
1360
1398
|
textColorTextPressed: string;
|
|
1361
1399
|
textColorTextFocus: string;
|
|
@@ -1502,9 +1540,8 @@ export declare const dataTableProps: {
|
|
|
1502
1540
|
borderDisabledError: string;
|
|
1503
1541
|
rippleColorError: string;
|
|
1504
1542
|
waveOpacity: string;
|
|
1505
|
-
fontWeightText: string;
|
|
1506
1543
|
fontWeight: string;
|
|
1507
|
-
|
|
1544
|
+
fontWeightStrong: string;
|
|
1508
1545
|
paddingTiny: string;
|
|
1509
1546
|
paddingSmall: string;
|
|
1510
1547
|
paddingMedium: string;
|
|
@@ -1901,6 +1938,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1901
1938
|
readonly type: PropType<boolean | undefined>;
|
|
1902
1939
|
readonly default: undefined;
|
|
1903
1940
|
};
|
|
1941
|
+
readonly striped: BooleanConstructor;
|
|
1904
1942
|
readonly scrollX: PropType<string | number>;
|
|
1905
1943
|
readonly defaultCheckedRowKeys: {
|
|
1906
1944
|
readonly type: PropType<RowKey[]>;
|
|
@@ -1986,6 +2024,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1986
2024
|
fontSizeLarge: string;
|
|
1987
2025
|
borderColor: string;
|
|
1988
2026
|
tdColorHover: string;
|
|
2027
|
+
tdColorStriped: string;
|
|
1989
2028
|
thColor: string;
|
|
1990
2029
|
thColorHover: string;
|
|
1991
2030
|
tdColor: string;
|
|
@@ -1997,11 +2036,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1997
2036
|
thIconColorActive: string;
|
|
1998
2037
|
borderColorModal: string;
|
|
1999
2038
|
tdColorHoverModal: string;
|
|
2039
|
+
tdColorStripedModal: string;
|
|
2000
2040
|
thColorModal: string;
|
|
2001
2041
|
thColorHoverModal: string;
|
|
2002
2042
|
tdColorModal: string;
|
|
2003
2043
|
borderColorPopover: string;
|
|
2004
2044
|
tdColorHoverPopover: string;
|
|
2045
|
+
tdColorStripedPopover: string;
|
|
2005
2046
|
thColorPopover: string;
|
|
2006
2047
|
thColorHoverPopover: string;
|
|
2007
2048
|
tdColorPopover: string;
|
|
@@ -2037,20 +2078,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2037
2078
|
fontSizeMedium: string;
|
|
2038
2079
|
fontSizeLarge: string;
|
|
2039
2080
|
opacityDisabled: string;
|
|
2081
|
+
colorOpacitySecondary: number;
|
|
2082
|
+
colorOpacitySecondaryHover: number;
|
|
2083
|
+
colorOpacitySecondaryPressed: number;
|
|
2084
|
+
colorSecondary: string;
|
|
2085
|
+
colorSecondaryHover: string;
|
|
2086
|
+
colorSecondaryPressed: string;
|
|
2087
|
+
colorTertiary: string;
|
|
2088
|
+
colorTertiaryHover: string;
|
|
2089
|
+
colorTertiaryPressed: string;
|
|
2090
|
+
colorQuaternary: string;
|
|
2091
|
+
colorQuaternaryHover: string;
|
|
2092
|
+
colorQuaternaryPressed: string;
|
|
2040
2093
|
color: string;
|
|
2041
2094
|
colorHover: string;
|
|
2042
2095
|
colorPressed: string;
|
|
2043
2096
|
colorFocus: string;
|
|
2044
2097
|
colorDisabled: string;
|
|
2045
2098
|
textColor: string;
|
|
2099
|
+
textColorTertiary: string;
|
|
2046
2100
|
textColorHover: string;
|
|
2047
2101
|
textColorPressed: string;
|
|
2048
2102
|
textColorFocus: string;
|
|
2049
2103
|
textColorDisabled: string;
|
|
2050
2104
|
textColorText: string;
|
|
2051
|
-
textColorTextDepth1: string;
|
|
2052
|
-
textColorTextDepth2: string;
|
|
2053
|
-
textColorTextDepth3: string;
|
|
2054
2105
|
textColorTextHover: string;
|
|
2055
2106
|
textColorTextPressed: string;
|
|
2056
2107
|
textColorTextFocus: string;
|
|
@@ -2197,9 +2248,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2197
2248
|
borderDisabledError: string;
|
|
2198
2249
|
rippleColorError: string;
|
|
2199
2250
|
waveOpacity: string;
|
|
2200
|
-
fontWeightText: string;
|
|
2201
2251
|
fontWeight: string;
|
|
2202
|
-
|
|
2252
|
+
fontWeightStrong: string;
|
|
2203
2253
|
paddingTiny: string;
|
|
2204
2254
|
paddingSmall: string;
|
|
2205
2255
|
paddingMedium: string;
|
|
@@ -2574,6 +2624,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2574
2624
|
fontSizeLarge: string;
|
|
2575
2625
|
borderColor: string;
|
|
2576
2626
|
tdColorHover: string;
|
|
2627
|
+
tdColorStriped: string;
|
|
2577
2628
|
thColor: string;
|
|
2578
2629
|
thColorHover: string;
|
|
2579
2630
|
tdColor: string;
|
|
@@ -2585,11 +2636,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2585
2636
|
thIconColorActive: string;
|
|
2586
2637
|
borderColorModal: string;
|
|
2587
2638
|
tdColorHoverModal: string;
|
|
2639
|
+
tdColorStripedModal: string;
|
|
2588
2640
|
thColorModal: string;
|
|
2589
2641
|
thColorHoverModal: string;
|
|
2590
2642
|
tdColorModal: string;
|
|
2591
2643
|
borderColorPopover: string;
|
|
2592
2644
|
tdColorHoverPopover: string;
|
|
2645
|
+
tdColorStripedPopover: string;
|
|
2593
2646
|
thColorPopover: string;
|
|
2594
2647
|
thColorHoverPopover: string;
|
|
2595
2648
|
tdColorPopover: string;
|
|
@@ -2625,20 +2678,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2625
2678
|
fontSizeMedium: string;
|
|
2626
2679
|
fontSizeLarge: string;
|
|
2627
2680
|
opacityDisabled: string;
|
|
2681
|
+
colorOpacitySecondary: number;
|
|
2682
|
+
colorOpacitySecondaryHover: number;
|
|
2683
|
+
colorOpacitySecondaryPressed: number;
|
|
2684
|
+
colorSecondary: string;
|
|
2685
|
+
colorSecondaryHover: string;
|
|
2686
|
+
colorSecondaryPressed: string;
|
|
2687
|
+
colorTertiary: string;
|
|
2688
|
+
colorTertiaryHover: string;
|
|
2689
|
+
colorTertiaryPressed: string;
|
|
2690
|
+
colorQuaternary: string;
|
|
2691
|
+
colorQuaternaryHover: string;
|
|
2692
|
+
colorQuaternaryPressed: string;
|
|
2628
2693
|
color: string;
|
|
2629
2694
|
colorHover: string;
|
|
2630
2695
|
colorPressed: string;
|
|
2631
2696
|
colorFocus: string;
|
|
2632
2697
|
colorDisabled: string;
|
|
2633
2698
|
textColor: string;
|
|
2699
|
+
textColorTertiary: string;
|
|
2634
2700
|
textColorHover: string;
|
|
2635
2701
|
textColorPressed: string;
|
|
2636
2702
|
textColorFocus: string;
|
|
2637
2703
|
textColorDisabled: string;
|
|
2638
2704
|
textColorText: string;
|
|
2639
|
-
textColorTextDepth1: string;
|
|
2640
|
-
textColorTextDepth2: string;
|
|
2641
|
-
textColorTextDepth3: string;
|
|
2642
2705
|
textColorTextHover: string;
|
|
2643
2706
|
textColorTextPressed: string;
|
|
2644
2707
|
textColorTextFocus: string;
|
|
@@ -2785,9 +2848,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2785
2848
|
borderDisabledError: string;
|
|
2786
2849
|
rippleColorError: string;
|
|
2787
2850
|
waveOpacity: string;
|
|
2788
|
-
fontWeightText: string;
|
|
2789
2851
|
fontWeight: string;
|
|
2790
|
-
|
|
2852
|
+
fontWeightStrong: string;
|
|
2791
2853
|
paddingTiny: string;
|
|
2792
2854
|
paddingSmall: string;
|
|
2793
2855
|
paddingMedium: string;
|
|
@@ -3162,6 +3224,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3162
3224
|
fontSizeLarge: string;
|
|
3163
3225
|
borderColor: string;
|
|
3164
3226
|
tdColorHover: string;
|
|
3227
|
+
tdColorStriped: string;
|
|
3165
3228
|
thColor: string;
|
|
3166
3229
|
thColorHover: string;
|
|
3167
3230
|
tdColor: string;
|
|
@@ -3173,11 +3236,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3173
3236
|
thIconColorActive: string;
|
|
3174
3237
|
borderColorModal: string;
|
|
3175
3238
|
tdColorHoverModal: string;
|
|
3239
|
+
tdColorStripedModal: string;
|
|
3176
3240
|
thColorModal: string;
|
|
3177
3241
|
thColorHoverModal: string;
|
|
3178
3242
|
tdColorModal: string;
|
|
3179
3243
|
borderColorPopover: string;
|
|
3180
3244
|
tdColorHoverPopover: string;
|
|
3245
|
+
tdColorStripedPopover: string;
|
|
3181
3246
|
thColorPopover: string;
|
|
3182
3247
|
thColorHoverPopover: string;
|
|
3183
3248
|
tdColorPopover: string;
|
|
@@ -3213,20 +3278,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3213
3278
|
fontSizeMedium: string;
|
|
3214
3279
|
fontSizeLarge: string;
|
|
3215
3280
|
opacityDisabled: string;
|
|
3281
|
+
colorOpacitySecondary: number;
|
|
3282
|
+
colorOpacitySecondaryHover: number;
|
|
3283
|
+
colorOpacitySecondaryPressed: number;
|
|
3284
|
+
colorSecondary: string;
|
|
3285
|
+
colorSecondaryHover: string;
|
|
3286
|
+
colorSecondaryPressed: string;
|
|
3287
|
+
colorTertiary: string;
|
|
3288
|
+
colorTertiaryHover: string;
|
|
3289
|
+
colorTertiaryPressed: string;
|
|
3290
|
+
colorQuaternary: string;
|
|
3291
|
+
colorQuaternaryHover: string;
|
|
3292
|
+
colorQuaternaryPressed: string;
|
|
3216
3293
|
color: string;
|
|
3217
3294
|
colorHover: string;
|
|
3218
3295
|
colorPressed: string;
|
|
3219
3296
|
colorFocus: string;
|
|
3220
3297
|
colorDisabled: string;
|
|
3221
3298
|
textColor: string;
|
|
3299
|
+
textColorTertiary: string;
|
|
3222
3300
|
textColorHover: string;
|
|
3223
3301
|
textColorPressed: string;
|
|
3224
3302
|
textColorFocus: string;
|
|
3225
3303
|
textColorDisabled: string;
|
|
3226
3304
|
textColorText: string;
|
|
3227
|
-
textColorTextDepth1: string;
|
|
3228
|
-
textColorTextDepth2: string;
|
|
3229
|
-
textColorTextDepth3: string;
|
|
3230
3305
|
textColorTextHover: string;
|
|
3231
3306
|
textColorTextPressed: string;
|
|
3232
3307
|
textColorTextFocus: string;
|
|
@@ -3373,9 +3448,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3373
3448
|
borderDisabledError: string;
|
|
3374
3449
|
rippleColorError: string;
|
|
3375
3450
|
waveOpacity: string;
|
|
3376
|
-
fontWeightText: string;
|
|
3377
3451
|
fontWeight: string;
|
|
3378
|
-
|
|
3452
|
+
fontWeightStrong: string;
|
|
3379
3453
|
paddingTiny: string;
|
|
3380
3454
|
paddingSmall: string;
|
|
3381
3455
|
paddingMedium: string;
|
|
@@ -3779,13 +3853,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3779
3853
|
'--loading-size': string;
|
|
3780
3854
|
'--loading-color': string;
|
|
3781
3855
|
'--opacity-loading': string;
|
|
3856
|
+
'--td-color-striped': string;
|
|
3857
|
+
'--td-color-striped-modal': string;
|
|
3858
|
+
'--td-color-striped-popover': string;
|
|
3782
3859
|
}>;
|
|
3783
3860
|
filter: (filters: import("./interface").FilterState | null) => void;
|
|
3784
3861
|
filters: (filters: import("./interface").FilterState | null) => void;
|
|
3785
|
-
clearFilter: () => void;
|
|
3786
3862
|
clearFilters: () => void;
|
|
3863
|
+
clearSorter: () => void;
|
|
3787
3864
|
page: (page: number) => void;
|
|
3788
3865
|
sort: (columnKey: import("./interface").ColumnKey, order: import("./interface").SortOrder) => void;
|
|
3866
|
+
clearFilter: () => void;
|
|
3789
3867
|
mainTableInstRef: import("vue").Ref<{
|
|
3790
3868
|
getHeaderElement: () => HTMLElement | null;
|
|
3791
3869
|
getBodyElement: () => HTMLElement | null;
|
|
@@ -3864,6 +3942,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3864
3942
|
pressedColor: string;
|
|
3865
3943
|
opacityDisabled: string;
|
|
3866
3944
|
inputColorDisabled: string;
|
|
3945
|
+
buttonColor2: string;
|
|
3946
|
+
buttonColor2Hover: string;
|
|
3947
|
+
buttonColor2Pressed: string;
|
|
3867
3948
|
boxShadow1: string;
|
|
3868
3949
|
boxShadow2: string;
|
|
3869
3950
|
boxShadow3: string;
|
|
@@ -3900,6 +3981,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3900
3981
|
fontSizeLarge: string;
|
|
3901
3982
|
borderColor: string;
|
|
3902
3983
|
tdColorHover: string;
|
|
3984
|
+
tdColorStriped: string;
|
|
3903
3985
|
thColor: string;
|
|
3904
3986
|
thColorHover: string;
|
|
3905
3987
|
tdColor: string;
|
|
@@ -3911,11 +3993,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3911
3993
|
thIconColorActive: string;
|
|
3912
3994
|
borderColorModal: string;
|
|
3913
3995
|
tdColorHoverModal: string;
|
|
3996
|
+
tdColorStripedModal: string;
|
|
3914
3997
|
thColorModal: string;
|
|
3915
3998
|
thColorHoverModal: string;
|
|
3916
3999
|
tdColorModal: string;
|
|
3917
4000
|
borderColorPopover: string;
|
|
3918
4001
|
tdColorHoverPopover: string;
|
|
4002
|
+
tdColorStripedPopover: string;
|
|
3919
4003
|
thColorPopover: string;
|
|
3920
4004
|
thColorHoverPopover: string;
|
|
3921
4005
|
tdColorPopover: string;
|
|
@@ -3952,20 +4036,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3952
4036
|
fontSizeMedium: string;
|
|
3953
4037
|
fontSizeLarge: string;
|
|
3954
4038
|
opacityDisabled: string;
|
|
4039
|
+
colorOpacitySecondary: number;
|
|
4040
|
+
colorOpacitySecondaryHover: number;
|
|
4041
|
+
colorOpacitySecondaryPressed: number;
|
|
4042
|
+
colorSecondary: string;
|
|
4043
|
+
colorSecondaryHover: string;
|
|
4044
|
+
colorSecondaryPressed: string;
|
|
4045
|
+
colorTertiary: string;
|
|
4046
|
+
colorTertiaryHover: string;
|
|
4047
|
+
colorTertiaryPressed: string;
|
|
4048
|
+
colorQuaternary: string;
|
|
4049
|
+
colorQuaternaryHover: string;
|
|
4050
|
+
colorQuaternaryPressed: string;
|
|
3955
4051
|
color: string;
|
|
3956
4052
|
colorHover: string;
|
|
3957
4053
|
colorPressed: string;
|
|
3958
4054
|
colorFocus: string;
|
|
3959
4055
|
colorDisabled: string;
|
|
3960
4056
|
textColor: string;
|
|
4057
|
+
textColorTertiary: string;
|
|
3961
4058
|
textColorHover: string;
|
|
3962
4059
|
textColorPressed: string;
|
|
3963
4060
|
textColorFocus: string;
|
|
3964
4061
|
textColorDisabled: string;
|
|
3965
4062
|
textColorText: string;
|
|
3966
|
-
textColorTextDepth1: string;
|
|
3967
|
-
textColorTextDepth2: string;
|
|
3968
|
-
textColorTextDepth3: string;
|
|
3969
4063
|
textColorTextHover: string;
|
|
3970
4064
|
textColorTextPressed: string;
|
|
3971
4065
|
textColorTextFocus: string;
|
|
@@ -4112,9 +4206,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4112
4206
|
borderDisabledError: string;
|
|
4113
4207
|
rippleColorError: string;
|
|
4114
4208
|
waveOpacity: string;
|
|
4115
|
-
fontWeightText: string;
|
|
4116
4209
|
fontWeight: string;
|
|
4117
|
-
|
|
4210
|
+
fontWeightStrong: string;
|
|
4118
4211
|
paddingTiny: string;
|
|
4119
4212
|
paddingSmall: string;
|
|
4120
4213
|
paddingMedium: string;
|
|
@@ -4744,6 +4837,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4744
4837
|
readonly loading?: unknown;
|
|
4745
4838
|
readonly bordered?: unknown;
|
|
4746
4839
|
readonly bottomBordered?: unknown;
|
|
4840
|
+
readonly striped?: unknown;
|
|
4747
4841
|
readonly scrollX?: unknown;
|
|
4748
4842
|
readonly defaultCheckedRowKeys?: unknown;
|
|
4749
4843
|
readonly checkedRowKeys?: unknown;
|
|
@@ -4788,6 +4882,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4788
4882
|
virtualScroll: boolean;
|
|
4789
4883
|
remote: boolean;
|
|
4790
4884
|
pagination: false | PaginationProps;
|
|
4885
|
+
striped: boolean;
|
|
4791
4886
|
defaultCheckedRowKeys: RowKey[];
|
|
4792
4887
|
singleLine: boolean;
|
|
4793
4888
|
singleColumn: boolean;
|
|
@@ -4809,6 +4904,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4809
4904
|
fontSizeLarge: string;
|
|
4810
4905
|
borderColor: string;
|
|
4811
4906
|
tdColorHover: string;
|
|
4907
|
+
tdColorStriped: string;
|
|
4812
4908
|
thColor: string;
|
|
4813
4909
|
thColorHover: string;
|
|
4814
4910
|
tdColor: string;
|
|
@@ -4820,11 +4916,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4820
4916
|
thIconColorActive: string;
|
|
4821
4917
|
borderColorModal: string;
|
|
4822
4918
|
tdColorHoverModal: string;
|
|
4919
|
+
tdColorStripedModal: string;
|
|
4823
4920
|
thColorModal: string;
|
|
4824
4921
|
thColorHoverModal: string;
|
|
4825
4922
|
tdColorModal: string;
|
|
4826
4923
|
borderColorPopover: string;
|
|
4827
4924
|
tdColorHoverPopover: string;
|
|
4925
|
+
tdColorStripedPopover: string;
|
|
4828
4926
|
thColorPopover: string;
|
|
4829
4927
|
thColorHoverPopover: string;
|
|
4830
4928
|
tdColorPopover: string;
|
|
@@ -4860,20 +4958,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4860
4958
|
fontSizeMedium: string;
|
|
4861
4959
|
fontSizeLarge: string;
|
|
4862
4960
|
opacityDisabled: string;
|
|
4961
|
+
colorOpacitySecondary: number;
|
|
4962
|
+
colorOpacitySecondaryHover: number;
|
|
4963
|
+
colorOpacitySecondaryPressed: number;
|
|
4964
|
+
colorSecondary: string;
|
|
4965
|
+
colorSecondaryHover: string;
|
|
4966
|
+
colorSecondaryPressed: string;
|
|
4967
|
+
colorTertiary: string;
|
|
4968
|
+
colorTertiaryHover: string;
|
|
4969
|
+
colorTertiaryPressed: string;
|
|
4970
|
+
colorQuaternary: string;
|
|
4971
|
+
colorQuaternaryHover: string;
|
|
4972
|
+
colorQuaternaryPressed: string;
|
|
4863
4973
|
color: string;
|
|
4864
4974
|
colorHover: string;
|
|
4865
4975
|
colorPressed: string;
|
|
4866
4976
|
colorFocus: string;
|
|
4867
4977
|
colorDisabled: string;
|
|
4868
4978
|
textColor: string;
|
|
4979
|
+
textColorTertiary: string;
|
|
4869
4980
|
textColorHover: string;
|
|
4870
4981
|
textColorPressed: string;
|
|
4871
4982
|
textColorFocus: string;
|
|
4872
4983
|
textColorDisabled: string;
|
|
4873
4984
|
textColorText: string;
|
|
4874
|
-
textColorTextDepth1: string;
|
|
4875
|
-
textColorTextDepth2: string;
|
|
4876
|
-
textColorTextDepth3: string;
|
|
4877
4985
|
textColorTextHover: string;
|
|
4878
4986
|
textColorTextPressed: string;
|
|
4879
4987
|
textColorTextFocus: string;
|
|
@@ -5020,9 +5128,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5020
5128
|
borderDisabledError: string;
|
|
5021
5129
|
rippleColorError: string;
|
|
5022
5130
|
waveOpacity: string;
|
|
5023
|
-
fontWeightText: string;
|
|
5024
5131
|
fontWeight: string;
|
|
5025
|
-
|
|
5132
|
+
fontWeightStrong: string;
|
|
5026
5133
|
paddingTiny: string;
|
|
5027
5134
|
paddingSmall: string;
|
|
5028
5135
|
paddingMedium: string;
|
|
@@ -5397,6 +5504,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5397
5504
|
fontSizeLarge: string;
|
|
5398
5505
|
borderColor: string;
|
|
5399
5506
|
tdColorHover: string;
|
|
5507
|
+
tdColorStriped: string;
|
|
5400
5508
|
thColor: string;
|
|
5401
5509
|
thColorHover: string;
|
|
5402
5510
|
tdColor: string;
|
|
@@ -5408,11 +5516,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5408
5516
|
thIconColorActive: string;
|
|
5409
5517
|
borderColorModal: string;
|
|
5410
5518
|
tdColorHoverModal: string;
|
|
5519
|
+
tdColorStripedModal: string;
|
|
5411
5520
|
thColorModal: string;
|
|
5412
5521
|
thColorHoverModal: string;
|
|
5413
5522
|
tdColorModal: string;
|
|
5414
5523
|
borderColorPopover: string;
|
|
5415
5524
|
tdColorHoverPopover: string;
|
|
5525
|
+
tdColorStripedPopover: string;
|
|
5416
5526
|
thColorPopover: string;
|
|
5417
5527
|
thColorHoverPopover: string;
|
|
5418
5528
|
tdColorPopover: string;
|
|
@@ -5448,20 +5558,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5448
5558
|
fontSizeMedium: string;
|
|
5449
5559
|
fontSizeLarge: string;
|
|
5450
5560
|
opacityDisabled: string;
|
|
5561
|
+
colorOpacitySecondary: number;
|
|
5562
|
+
colorOpacitySecondaryHover: number;
|
|
5563
|
+
colorOpacitySecondaryPressed: number;
|
|
5564
|
+
colorSecondary: string;
|
|
5565
|
+
colorSecondaryHover: string;
|
|
5566
|
+
colorSecondaryPressed: string;
|
|
5567
|
+
colorTertiary: string;
|
|
5568
|
+
colorTertiaryHover: string;
|
|
5569
|
+
colorTertiaryPressed: string;
|
|
5570
|
+
colorQuaternary: string;
|
|
5571
|
+
colorQuaternaryHover: string;
|
|
5572
|
+
colorQuaternaryPressed: string;
|
|
5451
5573
|
color: string;
|
|
5452
5574
|
colorHover: string;
|
|
5453
5575
|
colorPressed: string;
|
|
5454
5576
|
colorFocus: string;
|
|
5455
5577
|
colorDisabled: string;
|
|
5456
5578
|
textColor: string;
|
|
5579
|
+
textColorTertiary: string;
|
|
5457
5580
|
textColorHover: string;
|
|
5458
5581
|
textColorPressed: string;
|
|
5459
5582
|
textColorFocus: string;
|
|
5460
5583
|
textColorDisabled: string;
|
|
5461
5584
|
textColorText: string;
|
|
5462
|
-
textColorTextDepth1: string;
|
|
5463
|
-
textColorTextDepth2: string;
|
|
5464
|
-
textColorTextDepth3: string;
|
|
5465
5585
|
textColorTextHover: string;
|
|
5466
5586
|
textColorTextPressed: string;
|
|
5467
5587
|
textColorTextFocus: string;
|
|
@@ -5608,9 +5728,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5608
5728
|
borderDisabledError: string;
|
|
5609
5729
|
rippleColorError: string;
|
|
5610
5730
|
waveOpacity: string;
|
|
5611
|
-
fontWeightText: string;
|
|
5612
5731
|
fontWeight: string;
|
|
5613
|
-
|
|
5732
|
+
fontWeightStrong: string;
|
|
5614
5733
|
paddingTiny: string;
|
|
5615
5734
|
paddingSmall: string;
|
|
5616
5735
|
paddingMedium: string;
|
|
@@ -5985,6 +6104,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5985
6104
|
fontSizeLarge: string;
|
|
5986
6105
|
borderColor: string;
|
|
5987
6106
|
tdColorHover: string;
|
|
6107
|
+
tdColorStriped: string;
|
|
5988
6108
|
thColor: string;
|
|
5989
6109
|
thColorHover: string;
|
|
5990
6110
|
tdColor: string;
|
|
@@ -5996,11 +6116,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5996
6116
|
thIconColorActive: string;
|
|
5997
6117
|
borderColorModal: string;
|
|
5998
6118
|
tdColorHoverModal: string;
|
|
6119
|
+
tdColorStripedModal: string;
|
|
5999
6120
|
thColorModal: string;
|
|
6000
6121
|
thColorHoverModal: string;
|
|
6001
6122
|
tdColorModal: string;
|
|
6002
6123
|
borderColorPopover: string;
|
|
6003
6124
|
tdColorHoverPopover: string;
|
|
6125
|
+
tdColorStripedPopover: string;
|
|
6004
6126
|
thColorPopover: string;
|
|
6005
6127
|
thColorHoverPopover: string;
|
|
6006
6128
|
tdColorPopover: string;
|
|
@@ -6036,20 +6158,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6036
6158
|
fontSizeMedium: string;
|
|
6037
6159
|
fontSizeLarge: string;
|
|
6038
6160
|
opacityDisabled: string;
|
|
6161
|
+
colorOpacitySecondary: number;
|
|
6162
|
+
colorOpacitySecondaryHover: number;
|
|
6163
|
+
colorOpacitySecondaryPressed: number;
|
|
6164
|
+
colorSecondary: string;
|
|
6165
|
+
colorSecondaryHover: string;
|
|
6166
|
+
colorSecondaryPressed: string;
|
|
6167
|
+
colorTertiary: string;
|
|
6168
|
+
colorTertiaryHover: string;
|
|
6169
|
+
colorTertiaryPressed: string;
|
|
6170
|
+
colorQuaternary: string;
|
|
6171
|
+
colorQuaternaryHover: string;
|
|
6172
|
+
colorQuaternaryPressed: string;
|
|
6039
6173
|
color: string;
|
|
6040
6174
|
colorHover: string;
|
|
6041
6175
|
colorPressed: string;
|
|
6042
6176
|
colorFocus: string;
|
|
6043
6177
|
colorDisabled: string;
|
|
6044
6178
|
textColor: string;
|
|
6179
|
+
textColorTertiary: string;
|
|
6045
6180
|
textColorHover: string;
|
|
6046
6181
|
textColorPressed: string;
|
|
6047
6182
|
textColorFocus: string;
|
|
6048
6183
|
textColorDisabled: string;
|
|
6049
6184
|
textColorText: string;
|
|
6050
|
-
textColorTextDepth1: string;
|
|
6051
|
-
textColorTextDepth2: string;
|
|
6052
|
-
textColorTextDepth3: string;
|
|
6053
6185
|
textColorTextHover: string;
|
|
6054
6186
|
textColorTextPressed: string;
|
|
6055
6187
|
textColorTextFocus: string;
|
|
@@ -6196,9 +6328,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6196
6328
|
borderDisabledError: string;
|
|
6197
6329
|
rippleColorError: string;
|
|
6198
6330
|
waveOpacity: string;
|
|
6199
|
-
fontWeightText: string;
|
|
6200
6331
|
fontWeight: string;
|
|
6201
|
-
|
|
6332
|
+
fontWeightStrong: string;
|
|
6202
6333
|
paddingTiny: string;
|
|
6203
6334
|
paddingSmall: string;
|
|
6204
6335
|
paddingMedium: string;
|
|
@@ -6601,6 +6732,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6601
6732
|
pagination: false | PaginationProps;
|
|
6602
6733
|
onPageSizeChange: MaybeArray<(pageSize: number) => void> | undefined;
|
|
6603
6734
|
bottomBordered: boolean | undefined;
|
|
6735
|
+
striped: boolean;
|
|
6604
6736
|
defaultCheckedRowKeys: RowKey[];
|
|
6605
6737
|
singleLine: boolean;
|
|
6606
6738
|
singleColumn: boolean;
|