@dt-frames/ui 2.0.23 → 3.0.1
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/README.md +9 -9
- package/es/assets/icons/ui-blank.svg +1 -0
- package/es/assets/icons/ui-docx.svg +1 -0
- package/es/assets/icons/ui-exl.svg +1 -0
- package/es/assets/icons/ui-forder-open.svg +1 -0
- package/es/assets/icons/ui-forder.svg +1 -0
- package/es/assets/icons/ui-jpg.svg +1 -0
- package/es/assets/icons/ui-pdf.svg +1 -0
- package/es/assets/icons/ui-ppt.svg +1 -0
- package/es/assets/icons/ui-rar.svg +1 -0
- package/es/assets/icons/ui-table-empty.svg +1 -0
- package/es/assets/icons/ui-txt.svg +1 -0
- package/es/assets/index.e67ea2f5.css +1 -0
- package/es/assets/locales/en.d.ts +1 -0
- package/es/assets/locales/en.ts +1 -0
- package/es/assets/locales/zh.d.ts +1 -0
- package/es/assets/locales/zh.ts +1 -0
- package/es/assets/test.ts +1 -0
- package/es/components/container/index.d.ts +2 -93
- package/es/components/container/index.js +92 -15
- package/es/components/container/src/components/bar.d.ts +2 -2
- package/es/components/container/{index.less → src/index.scss} +9 -16
- package/es/components/container/src/utils/scroll.d.ts +1 -1
- package/es/components/curd/index.d.ts +3 -1
- package/es/components/curd/index.js +66 -141
- package/es/components/curd/src/components/props.d.ts +53 -0
- package/es/components/curd/src/components/types/curd.type.d.ts +13 -0
- package/es/components/curd/src/hooks/useCurd.d.ts +3 -110
- package/es/components/curd/src/props.d.ts +109 -159
- package/es/components/curd/src/types/curd.type.d.ts +54 -8
- package/es/components/drawer/index.d.ts +3 -7881
- package/es/components/drawer/index.js +209 -307
- package/es/components/drawer/src/components/DrawerFooter.d.ts +19 -21
- package/es/components/drawer/src/hooks/useDrawer.d.ts +2 -2
- package/es/components/drawer/src/index.d.ts +11 -7876
- package/es/components/drawer/src/index.scss +24 -0
- package/es/components/drawer/src/props.d.ts +2 -64
- package/es/components/drawer/src/{types/index.type.d.ts → type/drawer.type.d.ts} +26 -14
- package/es/components/form/index.d.ts +5 -5
- package/es/components/form/index.js +641 -634
- package/es/components/form/src/components/DynanicInput.d.ts +2 -0
- package/es/components/form/src/components/FormButtons.d.ts +13 -3086
- package/es/components/form/src/components/FormInputUseDialog.d.ts +2 -0
- package/es/components/form/src/components/FormItem.d.ts +53 -156
- package/es/components/form/src/components/RadioButton.d.ts +26 -0
- package/es/components/form/src/components/componentMap.d.ts +2 -2
- package/es/components/form/src/components/index.d.ts +2 -4
- package/es/components/form/src/hooks/useForm.d.ts +3 -3
- package/es/components/form/src/hooks/useFormActions.d.ts +38 -5
- package/es/components/form/src/hooks/useFormEvent.d.ts +9 -7
- package/es/components/form/src/hooks/useFormValue.d.ts +2 -2
- package/es/components/form/src/hooks/useFormValues.d.ts +8 -6
- package/es/components/form/src/hooks/useLabelWidth.d.ts +1 -1
- package/es/components/form/src/index.d.ts +358 -0
- package/es/components/form/src/index.scss +162 -0
- package/es/components/form/src/props.d.ts +45 -7
- package/es/components/form/src/types/actions.type.d.ts +1 -1
- package/es/components/form/src/types/form.type.d.ts +59 -26
- package/es/components/form/src/types/items.type.d.ts +33 -33
- package/es/components/form/src/{hooks → utils}/helper.d.ts +7 -0
- package/es/components/icons/index.d.ts +2 -497
- package/es/components/icons/index.js +42 -1911
- package/es/components/icons/src/{svg-icon.d.ts → SvgIcon.d.ts} +7 -14
- package/es/components/icons/src/index.scss +3 -0
- package/es/components/iframe/index.js +40 -29
- package/es/components/iframe/src/index.d.ts +16 -11
- package/es/components/iframe/src/index.scss +20 -0
- package/es/components/modal/index.d.ts +3 -2
- package/es/components/modal/index.js +188 -198
- package/es/components/modal/src/components/CloseIcon.d.ts +4 -20
- package/es/components/modal/src/components/Modal.d.ts +201 -108
- package/es/components/modal/src/components/ModalFooter.d.ts +12 -20
- package/es/components/modal/src/hooks/useDrag.d.ts +2 -3
- package/es/components/modal/src/hooks/useFullScreen.d.ts +1 -1
- package/es/components/modal/src/hooks/useModal.d.ts +3 -3
- package/es/components/modal/src/index.d.ts +32 -359
- package/es/components/modal/{index.less → src/index.scss} +104 -82
- package/es/components/modal/src/props.d.ts +10 -17
- package/es/components/modal/src/types/{modal.type.d.ts → index.type.d.ts} +7 -6
- package/es/components/source/index.d.ts +1 -1
- package/es/components/source/index.js +142 -113
- package/es/components/source/{hooks → src/hooks}/useDownload.d.ts +1 -1
- package/es/components/source/{hooks → src/hooks}/useSource.d.ts +24 -20
- package/es/components/source/{types → src/types}/source.type.d.ts +12 -13
- package/es/components/table/index.d.ts +7 -2
- package/es/components/table/index.js +197 -286
- package/es/components/table/src/components/TableAction.d.ts +16 -24
- package/es/components/table/src/components/TableHeader.d.ts +35 -0
- package/es/components/table/src/components/TableRender.d.ts +10 -14
- package/es/components/table/src/components/editTable/CellComponent.d.ts +4 -4
- package/es/components/table/src/components/editTable/EditTableCell.d.ts +15 -57
- package/es/components/table/src/components/editTable/componentMap.d.ts +1 -1
- package/es/components/table/src/components/editTable/index.d.ts +3 -3
- package/es/components/table/src/components/editTable/props.d.ts +6 -6
- package/es/components/table/src/components/tableSetting/Column.d.ts +3 -68
- package/es/components/table/src/components/tableSetting/Download.d.ts +11 -0
- package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +2 -22
- package/es/components/table/src/components/tableSetting/Fullscreen.d.ts +2 -22
- package/es/components/table/src/components/tableSetting/index.d.ts +17 -0
- package/es/components/table/src/hooks/useDataSource.d.ts +3 -4
- package/es/components/table/src/hooks/useHeader.d.ts +3 -3
- package/es/components/table/src/hooks/useHeaderCode.d.ts +2 -2
- package/es/components/table/src/hooks/useLoading.d.ts +3 -3
- package/es/components/table/src/hooks/usePagination.d.ts +2 -2
- package/es/components/table/src/hooks/useRowSelection.d.ts +1 -1
- package/es/components/table/src/hooks/useTable.d.ts +1 -1
- package/es/components/table/src/hooks/useTableInstance.d.ts +2 -2
- package/es/components/table/src/hooks/useTableScroll.d.ts +0 -1
- package/es/components/table/src/hooks/useTableStyle.d.ts +5 -0
- package/es/components/table/src/index.d.ts +169 -324
- package/es/components/table/{index.less → src/index.scss} +309 -279
- package/es/components/table/src/props.d.ts +39 -14
- package/es/components/table/src/types/actions.type.d.ts +5 -5
- package/es/components/table/src/types/header.type.d.ts +6 -6
- package/es/components/table/src/types/table.type.d.ts +84 -21
- package/es/components/tree/index.d.ts +2 -1
- package/es/components/tree/index.js +320 -324
- package/es/components/tree/src/basicProps.d.ts +9 -9
- package/es/components/tree/src/components/ContextMenu.d.ts +17 -17
- package/es/components/tree/src/components/TreeHeader.d.ts +13 -33
- package/es/components/tree/src/hooks/useContextMenu.d.ts +2 -2
- package/es/components/tree/src/hooks/useMethod.d.ts +16 -0
- package/es/components/tree/src/hooks/useTree.d.ts +5 -15
- package/es/components/tree/src/index.d.ts +52 -6369
- package/es/components/tree/src/index.scss +178 -0
- package/es/components/tree/src/types/action.type.d.ts +64 -0
- package/es/components/tree/src/{type → types}/menu.d.ts +1 -1
- package/es/components/tree/src/types/tree.d.ts +31 -0
- package/es/components/tree/src/utils/tree.d.ts +1 -1
- package/es/components/upload/index.d.ts +1 -1
- package/es/components/upload/index.js +111 -102
- package/es/components/upload/src/basicProps.d.ts +11 -7
- package/es/components/upload/src/components/PdfView.d.ts +2 -9
- package/es/components/upload/src/components/WordView.d.ts +2 -7
- package/es/components/upload/src/hooks/useFile.d.ts +3 -3
- package/es/components/upload/src/index.d.ts +47 -96
- package/es/components/upload/{index.less → src/index.scss} +19 -13
- package/es/components/upload/src/type/file.d.ts +2 -2
- package/es/components/upload/src/utils/upload.d.ts +1 -1
- package/es/components/vxe_table/index.d.ts +4 -0
- package/es/components/vxe_table/index.js +1162 -0
- package/es/components/vxe_table/src/components/AApiSelect.d.ts +12 -0
- package/es/components/vxe_table/src/components/AAutoComplete.d.ts +2 -0
- package/es/components/vxe_table/src/components/AButton.d.ts +12 -0
- package/es/components/vxe_table/src/components/AButtonGroup.d.ts +2 -0
- package/es/components/vxe_table/src/components/ACascader.d.ts +2 -0
- package/es/components/vxe_table/src/components/ACheckbox.d.ts +2 -0
- package/es/components/vxe_table/src/components/ACheckboxGroup.d.ts +6 -0
- package/es/components/vxe_table/src/components/ADatePicker.d.ts +4 -0
- package/es/components/vxe_table/src/components/AEmpty.d.ts +6 -0
- package/es/components/vxe_table/src/components/AInput.d.ts +2 -0
- package/es/components/vxe_table/src/components/AInputNumber.d.ts +2 -0
- package/es/components/vxe_table/src/components/AInputSearch.d.ts +2 -0
- package/es/components/vxe_table/src/components/AMonthPicker.d.ts +2 -0
- package/es/components/vxe_table/src/components/ARadioGroup.d.ts +6 -0
- package/es/components/vxe_table/src/components/ARangePicker.d.ts +2 -0
- package/es/components/vxe_table/src/components/ARate.d.ts +2 -0
- package/es/components/vxe_table/src/components/ASelect.d.ts +2 -0
- package/es/components/vxe_table/src/components/ASwitch.d.ts +2 -0
- package/es/components/vxe_table/src/components/ATimePicker.d.ts +2 -0
- package/es/components/vxe_table/src/components/ATreeSelect.d.ts +2 -0
- package/es/components/vxe_table/src/components/AWeekPicker.d.ts +2 -0
- package/es/components/vxe_table/src/components/AYearPicker.d.ts +2 -0
- package/es/components/vxe_table/src/components/Select.d.ts +2 -0
- package/es/components/vxe_table/src/components/common.d.ts +52 -0
- package/es/components/vxe_table/src/components/componentMap.d.ts +3 -0
- package/es/components/vxe_table/src/components/index.d.ts +4 -0
- package/es/components/vxe_table/src/hooks/useColumns.d.ts +1 -0
- package/es/components/vxe_table/src/hooks/useComponents.d.ts +2 -0
- package/es/components/vxe_table/src/hooks/useHeader.d.ts +6 -0
- package/es/components/vxe_table/src/hooks/useProps.d.ts +3 -0
- package/es/components/vxe_table/src/hooks/useVxeTable.d.ts +7 -0
- package/es/components/vxe_table/src/index.d.ts +26 -0
- package/es/components/vxe_table/src/index.scss +13 -0
- package/es/components/vxe_table/src/props.d.ts +1 -0
- package/es/components/vxe_table/src/types/componentType.d.ts +1 -0
- package/es/components/vxe_table/src/types/vxeTable.type.d.ts +45 -0
- package/es/components/vxe_table/src/utils/index.d.ts +6 -0
- package/es/directives/index.d.ts +1 -4
- package/es/directives/index.js +6 -1991
- package/es/theme/index.d.ts +9 -9
- package/es/theme/index.js +2112 -2344
- package/es/theme/src/components/content/index.d.ts +2 -31
- package/es/theme/src/components/feature/BackTop.d.ts +2 -0
- package/es/theme/src/components/feature/index.d.ts +2 -7
- package/es/theme/src/components/footer/index.d.ts +2 -31
- package/es/theme/src/components/header/MultipleHeader.d.ts +2 -0
- package/es/theme/src/components/header/components/BreadCrumb.d.ts +2 -0
- package/es/theme/src/components/header/components/FullScreen.d.ts +2 -0
- package/es/theme/src/components/header/components/LangPicker.d.ts +12 -0
- package/es/theme/src/components/header/components/Logo.d.ts +22 -0
- package/es/theme/src/components/header/components/MenuFilter.d.ts +2 -0
- package/es/theme/src/components/header/components/Notice.d.ts +2 -0
- package/es/theme/src/components/header/components/SettintTheme.d.ts +2 -0
- package/es/theme/src/components/header/components/Size.d.ts +2 -0
- package/es/theme/src/components/header/components/Trigger.d.ts +6 -0
- package/es/theme/src/components/header/components/UserInfo.d.ts +2 -0
- package/es/theme/src/components/header/components/lock/Lockscreen.d.ts +2 -85
- package/es/theme/src/components/header/components/lock/Recharge.d.ts +4 -6
- package/es/theme/src/components/header/components/lock/useBattery.d.ts +4 -4
- package/es/theme/src/components/header/components/lock/useTime.d.ts +5 -5
- package/es/theme/src/components/header/components/theme-drawer/Color.d.ts +26 -0
- package/es/theme/src/components/header/components/theme-drawer/ColorPrimary.d.ts +27 -0
- package/es/theme/src/components/header/components/theme-drawer/Feature.d.ts +2 -0
- package/es/theme/src/components/header/components/theme-drawer/InputNumber.d.ts +28 -0
- package/es/theme/src/components/header/components/theme-drawer/MenuType.d.ts +2 -0
- package/es/theme/src/components/header/components/theme-drawer/Select.d.ts +44 -0
- package/es/theme/src/components/header/components/theme-drawer/Switch.d.ts +29 -0
- package/es/theme/src/components/header/components/theme-drawer/Var.d.ts +2 -0
- package/es/theme/src/components/header/components/theme-drawer/styles/GlobalStyle.d.ts +2 -0
- package/es/theme/src/components/header/components/theme-drawer/styles/MenuStyle.d.ts +2 -0
- package/es/theme/src/components/header/helper/changeTheme.d.ts +15 -0
- package/es/theme/src/components/header/helper/{menu-tree.d.ts → menuTree.d.ts} +1 -1
- package/es/theme/src/components/header/index.d.ts +4 -547
- package/es/theme/src/components/sider/components/DragBar.d.ts +2 -0
- package/es/theme/src/components/sider/components/{layout-menu.d.ts → LayoutMenu.d.ts} +5 -5
- package/es/theme/src/components/sider/components/MixSider.d.ts +2 -0
- package/es/theme/src/components/sider/components/SiderTrigger.d.ts +14 -0
- package/es/theme/src/components/sider/components/basic-menu/basic-menu-item.d.ts +8 -35
- package/es/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.d.ts +8 -100
- package/es/theme/src/components/sider/components/basic-menu/index.d.ts +64 -0
- package/es/theme/src/components/sider/components/basic-menu/menu-item-content.d.ts +6 -10
- package/es/theme/src/components/sider/components/{props.d.ts → basic-menu/props.d.ts} +12 -29
- package/es/theme/src/components/sider/helper/sider.d.ts +3 -3
- package/es/theme/src/components/sider/helper/split-menu.d.ts +2 -2
- package/es/theme/src/components/sider/index.d.ts +2 -235
- package/es/theme/src/components/tabs/components/TabContent.d.ts +4 -21
- package/es/theme/src/components/tabs/components/TabRedo.d.ts +2 -23
- package/es/theme/src/components/tabs/hooks/useTabDropdown.d.ts +9 -3
- package/es/theme/src/components/tabs/hooks/useTabs.d.ts +1 -1
- package/es/theme/src/components/tabs/index.d.ts +2 -86
- package/es/theme/src/consts/color.d.ts +3 -0
- package/es/theme/src/consts/index.d.ts +14 -0
- package/es/theme/src/enums/index.d.ts +34 -1
- package/es/theme/src/hooks/index.d.ts +6 -6
- package/es/theme/src/hooks/useDragLine.d.ts +1 -1
- package/es/theme/src/hooks/useHeader.d.ts +22 -23
- package/es/theme/src/hooks/useMenu.d.ts +26 -26
- package/es/theme/src/hooks/useMultifyTab.d.ts +6 -6
- package/es/theme/src/hooks/useOpenKeys.d.ts +3 -3
- package/es/theme/src/hooks/useTheme.d.ts +25 -7
- package/es/theme/src/index.d.ts +2 -1630
- package/es/theme/src/index.scss +1134 -0
- package/es/theme/src/stores/index.d.ts +2 -2
- package/es/theme/src/stores/lockscreen.store.d.ts +7 -5
- package/es/theme/src/stores/routeReuse.store.d.ts +18 -20
- package/es/theme/src/stores/theme.store.d.ts +9 -15
- package/es/theme/{transition.less → src/transition.scss} +1 -1
- package/es/theme/src/types/index.d.ts +0 -3
- package/es/theme/src/types/menu.type.d.ts +2 -1
- package/es/theme/src/types/theme.type.d.ts +31 -12
- package/es/theme/src/utils/color.d.ts +14 -0
- package/es/theme/src/utils/index.d.ts +3 -0
- package/es/theme/src/utils.ts/index.d.ts +3 -0
- package/index.d.ts +12 -13
- package/index.js +44 -62
- package/manualContentPath.js +73 -19
- package/package.json +65 -65
- package/tsconfig.json +19 -30
- package/tsconfig.tsbuildinfo +1 -0
- package/vite.config.ts +82 -68
- package/es/assets/data/icons/actions.d.ts +0 -1
- package/es/assets/data/icons/actions.ts +0 -423
- package/es/assets/data/icons/code.d.ts +0 -1
- package/es/assets/data/icons/code.ts +0 -10
- package/es/assets/data/icons/commuticate.d.ts +0 -1
- package/es/assets/data/icons/commuticate.ts +0 -182
- package/es/assets/data/icons/currency.d.ts +0 -1
- package/es/assets/data/icons/currency.ts +0 -44
- package/es/assets/data/icons/devices.d.ts +0 -1
- package/es/assets/data/icons/devices.ts +0 -126
- package/es/assets/data/icons/edit.d.ts +0 -1
- package/es/assets/data/icons/edit.ts +0 -163
- package/es/assets/data/icons/file.d.ts +0 -1
- package/es/assets/data/icons/file.ts +0 -99
- package/es/assets/data/icons/math.d.ts +0 -1
- package/es/assets/data/icons/math.ts +0 -53
- package/es/assets/data/icons/message.d.ts +0 -1
- package/es/assets/data/icons/message.ts +0 -68
- package/es/assets/data/icons/navigate.d.ts +0 -1
- package/es/assets/data/icons/navigate.ts +0 -181
- package/es/assets/data/icons/other.d.ts +0 -1
- package/es/assets/data/icons/other.ts +0 -324
- package/es/assets/data/index.d.ts +0 -4
- package/es/assets/data/index.ts +0 -58
- package/es/assets/imgs/tree/forder-open.svg +0 -1
- package/es/assets/imgs/tree/forder.svg +0 -1
- package/es/components/container/src/components/scroll-bar.d.ts +0 -70
- package/es/components/container/src/scroll-container.d.ts +0 -76
- package/es/components/container/src/slot-container.d.ts +0 -20
- package/es/components/curd/src/components/Curd.d.ts +0 -384
- package/es/components/drawer/index.less +0 -16
- package/es/components/drawer/src/components/DrawerHeader.d.ts +0 -11
- package/es/components/form/index.less +0 -361
- package/es/components/form/src/components/formIcon.d.ts +0 -14
- package/es/components/form/src/components/formInputUseDialog.d.ts +0 -17
- package/es/components/form/src/components/radioButton.d.ts +0 -34
- package/es/components/form/src/enums/index.d.ts +0 -7
- package/es/components/icons/index.less +0 -47
- package/es/components/icons/src/pick-icon.d.ts +0 -455
- package/es/components/iframe/index.less +0 -29
- package/es/components/modal/src/components/ModalWrap.d.ts +0 -79
- package/es/components/source/utils/index.d.ts +0 -8
- package/es/components/table/src/enums/table.enum.d.ts +0 -5
- package/es/components/table/src/hooks/useRow.d.ts +0 -5
- package/es/components/tree/index.less +0 -200
- package/es/components/tree/src/type/tree.d.ts +0 -50
- package/es/directives/icon.d.ts +0 -2
- package/es/global.d.ts +0 -7
- package/es/index.d.ts +0 -1
- package/es/index.js +0 -4
- package/es/theme/index.less +0 -1003
- package/es/theme/src/components/feature/back-top.d.ts +0 -5
- package/es/theme/src/components/header/components/bread-crumb.d.ts +0 -6
- package/es/theme/src/components/header/components/fullscreen.d.ts +0 -5
- package/es/theme/src/components/header/components/index.d.ts +0 -11
- package/es/theme/src/components/header/components/lang-picker.d.ts +0 -23
- package/es/theme/src/components/header/components/lock/index.d.ts +0 -2
- package/es/theme/src/components/header/components/logo.d.ts +0 -55
- package/es/theme/src/components/header/components/menu-filter.d.ts +0 -22
- package/es/theme/src/components/header/components/notify.d.ts +0 -22
- package/es/theme/src/components/header/components/setting-theme.d.ts +0 -223
- package/es/theme/src/components/header/components/size.d.ts +0 -21
- package/es/theme/src/components/header/components/theme-drawer/feature.d.ts +0 -138
- package/es/theme/src/components/header/components/theme-drawer/index.d.ts +0 -3
- package/es/theme/src/components/header/components/theme-drawer/menu-type.d.ts +0 -16
- package/es/theme/src/components/header/components/theme-drawer/select.d.ts +0 -58
- package/es/theme/src/components/header/components/theme-drawer/switch.d.ts +0 -49
- package/es/theme/src/components/header/components/trigger.d.ts +0 -10
- package/es/theme/src/components/header/components/user-info.d.ts +0 -44
- package/es/theme/src/components/header/helper/change-theme.d.ts +0 -13
- package/es/theme/src/components/header/multiple-header.d.ts +0 -660
- package/es/theme/src/components/sider/components/basic-menu/basic-menu.d.ts +0 -207
- package/es/theme/src/components/sider/components/drag-bar.d.ts +0 -14
- package/es/theme/src/components/sider/components/sider-trigger.d.ts +0 -17
- package/es/theme/src/components/sider/mix-sider.d.ts +0 -167
- package/es/theme/src/components/tabs/components/index.d.ts +0 -3
- package/es/theme/src/components/tabs/types/tabs.type.d.ts +0 -7
- package/es/theme/src/enums/theme.enum.d.ts +0 -34
- package/es/theme/src/setting/theme.setting.d.ts +0 -2
- package/es/utils/withInstall.d.ts +0 -4
- package/tailwind.config.cjs +0 -11
- package/tsconfig.node.json +0 -9
- /package/es/assets/{icons → fonts}/iconfont.css +0 -0
- /package/es/assets/{icons → fonts}/iconfont.eot +0 -0
- /package/es/assets/{icons → fonts}/iconfont.svg +0 -0
- /package/es/assets/{icons → fonts}/iconfont.ttf +0 -0
- /package/es/assets/{icons → fonts}/iconfont.woff +0 -0
- /package/es/assets/{icons → fonts}/iconfont.woff2 +0 -0
- /package/es/components/container/src/types/{scroll.type.d.ts → index.d.ts} +0 -0
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
-
getTarget: () => HTMLElement;
|
|
3
|
-
getShowBackToTop: import("vue").ComputedRef<boolean>;
|
|
4
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
5
|
-
export default _sfc_main;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
-
getIsZH: import("vue").ComputedRef<boolean>;
|
|
3
|
-
routes: import("vue").Ref<any[]>;
|
|
4
|
-
currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>;
|
|
5
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
6
|
-
export default _sfc_main;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
-
toggle: () => Promise<void>;
|
|
3
|
-
isFullscreen: import("vue").Ref<boolean>;
|
|
4
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
5
|
-
export default _sfc_main;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { default as DtFullScreen } from "./fullscreen";
|
|
2
|
-
import { default as DtLogo } from "./logo";
|
|
3
|
-
import { default as DtTrigger } from "./trigger";
|
|
4
|
-
import { default as DtBreadCrumb } from "./bread-crumb";
|
|
5
|
-
import { default as DtMenuFilter } from "./menu-filter";
|
|
6
|
-
import { default as DtLangPicker } from "./lang-picker";
|
|
7
|
-
import { default as DtNotify } from "./notify";
|
|
8
|
-
import { default as DtSize } from "./size";
|
|
9
|
-
import { default as DtUserInfo } from "./user-info";
|
|
10
|
-
import { default as DtSettingTheme } from "./setting-theme";
|
|
11
|
-
export { DtFullScreen, DtLogo, DtTrigger, DtBreadCrumb, DtMenuFilter, DtLangPicker, DtNotify, DtSize, DtUserInfo, DtSettingTheme };
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { Language } from '@dt-frames/core';
|
|
2
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
-
reload: {
|
|
4
|
-
type: BooleanConstructor;
|
|
5
|
-
};
|
|
6
|
-
}, {
|
|
7
|
-
visible: import("vue").Ref<boolean>;
|
|
8
|
-
currentLang: any;
|
|
9
|
-
props: any;
|
|
10
|
-
toggleLang: (lang: Language) => Promise<void>;
|
|
11
|
-
readonly localeList: {
|
|
12
|
-
text: string;
|
|
13
|
-
event: Language;
|
|
14
|
-
icon: string;
|
|
15
|
-
}[];
|
|
16
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
-
reload: {
|
|
18
|
-
type: BooleanConstructor;
|
|
19
|
-
};
|
|
20
|
-
}>>, {
|
|
21
|
-
reload: boolean;
|
|
22
|
-
}>;
|
|
23
|
-
export default _sfc_main;
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
-
theme: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
validator: (v: string) => boolean;
|
|
5
|
-
};
|
|
6
|
-
showTitle: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
default: boolean;
|
|
9
|
-
};
|
|
10
|
-
}, {
|
|
11
|
-
t: {
|
|
12
|
-
(key: string): string;
|
|
13
|
-
(key: string, locale: string): string;
|
|
14
|
-
(key: string, locale: string, list: unknown[]): string;
|
|
15
|
-
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
16
|
-
(key: string, list: unknown[]): string;
|
|
17
|
-
(key: string, named: Record<string, unknown>): string;
|
|
18
|
-
};
|
|
19
|
-
slots: import("vue").Ref<any>;
|
|
20
|
-
title: string;
|
|
21
|
-
getLogoWidth: import("vue").ComputedRef<string | number>;
|
|
22
|
-
props: any;
|
|
23
|
-
getLogoClass: import("vue").ComputedRef<string>;
|
|
24
|
-
readonly DtSlotContainer: import("../../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
|
|
25
|
-
template: {
|
|
26
|
-
type: FunctionConstructor;
|
|
27
|
-
};
|
|
28
|
-
data: {
|
|
29
|
-
type: ObjectConstructor;
|
|
30
|
-
};
|
|
31
|
-
}, {
|
|
32
|
-
props: any;
|
|
33
|
-
Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
34
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
-
template: {
|
|
36
|
-
type: FunctionConstructor;
|
|
37
|
-
};
|
|
38
|
-
data: {
|
|
39
|
-
type: ObjectConstructor;
|
|
40
|
-
};
|
|
41
|
-
}>>, {}>>;
|
|
42
|
-
readonly logoUrl: string;
|
|
43
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
-
theme: {
|
|
45
|
-
type: StringConstructor;
|
|
46
|
-
validator: (v: string) => boolean;
|
|
47
|
-
};
|
|
48
|
-
showTitle: {
|
|
49
|
-
type: BooleanConstructor;
|
|
50
|
-
default: boolean;
|
|
51
|
-
};
|
|
52
|
-
}>>, {
|
|
53
|
-
showTitle: boolean;
|
|
54
|
-
}>;
|
|
55
|
-
export default _sfc_main;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { UiSize } from '../../../../src/enums';
|
|
2
|
-
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
3
|
-
t: {
|
|
4
|
-
(key: string): string;
|
|
5
|
-
(key: string, locale: string): string;
|
|
6
|
-
(key: string, locale: string, list: unknown[]): string;
|
|
7
|
-
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
8
|
-
(key: string, list: unknown[]): string;
|
|
9
|
-
(key: string, named: Record<string, unknown>): string;
|
|
10
|
-
};
|
|
11
|
-
menuList: import("vue").Ref<any[]>;
|
|
12
|
-
router: import("vue-router").Router;
|
|
13
|
-
filter: import("vue").Ref<string>;
|
|
14
|
-
getShowSearch: import("vue").ComputedRef<boolean>;
|
|
15
|
-
getIsZH: import("vue").ComputedRef<boolean>;
|
|
16
|
-
isUseDef: import("vue").ComputedRef<boolean>;
|
|
17
|
-
visibleChange: (e: any) => void;
|
|
18
|
-
filterMenu: () => void;
|
|
19
|
-
navigation: (url: string) => void;
|
|
20
|
-
readonly UiSize: typeof UiSize;
|
|
21
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
22
|
-
export default _sfc_main;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
-
slots: import("vue").Ref<any>;
|
|
3
|
-
readonly DtSlotContainer: import("../../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
|
|
4
|
-
template: {
|
|
5
|
-
type: FunctionConstructor;
|
|
6
|
-
};
|
|
7
|
-
data: {
|
|
8
|
-
type: ObjectConstructor;
|
|
9
|
-
};
|
|
10
|
-
}, {
|
|
11
|
-
props: any;
|
|
12
|
-
Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
13
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
-
template: {
|
|
15
|
-
type: FunctionConstructor;
|
|
16
|
-
};
|
|
17
|
-
data: {
|
|
18
|
-
type: ObjectConstructor;
|
|
19
|
-
};
|
|
20
|
-
}>>, {}>>;
|
|
21
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
22
|
-
export default _sfc_main;
|
|
@@ -1,223 +0,0 @@
|
|
|
1
|
-
import { unref } from 'vue';
|
|
2
|
-
import { MenuType } from '../../../../src/enums';
|
|
3
|
-
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
4
|
-
t: {
|
|
5
|
-
(key: string): string;
|
|
6
|
-
(key: string, locale: string): string;
|
|
7
|
-
(key: string, locale: string, list: unknown[]): string;
|
|
8
|
-
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
9
|
-
(key: string, list: unknown[]): string;
|
|
10
|
-
(key: string, named: Record<string, unknown>): string;
|
|
11
|
-
};
|
|
12
|
-
visible: import("vue").Ref<boolean>;
|
|
13
|
-
getShowBread: import("vue").ComputedRef<boolean>;
|
|
14
|
-
getShowSearch: import("vue").ComputedRef<boolean>;
|
|
15
|
-
getShowUiSize: import("vue").ComputedRef<boolean>;
|
|
16
|
-
getShowNotice: import("vue").ComputedRef<boolean>;
|
|
17
|
-
getShowFullScreen: import("vue").ComputedRef<boolean>;
|
|
18
|
-
getShowLocale: import("vue").ComputedRef<boolean>;
|
|
19
|
-
getShowMultipleTab: import("vue").ComputedRef<boolean>;
|
|
20
|
-
getShowFooter: import("vue").ComputedRef<any>;
|
|
21
|
-
getContentMode: import("vue").ComputedRef<import('../../../../src/enums').ContentMode>;
|
|
22
|
-
getMenuType: import("vue").ComputedRef<MenuType>;
|
|
23
|
-
getMenuMode: import("vue").ComputedRef<import('../../../../src/enums').MenuMode>;
|
|
24
|
-
defaultConf: {
|
|
25
|
-
contentMode: import('../../../../src/enums').ContentMode;
|
|
26
|
-
menuOptions: {
|
|
27
|
-
mode: import('../../../../src/enums').MenuMode;
|
|
28
|
-
type: MenuType;
|
|
29
|
-
split: boolean;
|
|
30
|
-
};
|
|
31
|
-
headOptions: {
|
|
32
|
-
showBreadCrumb: boolean;
|
|
33
|
-
showSearch: boolean;
|
|
34
|
-
notice: boolean;
|
|
35
|
-
showFullScreen: boolean;
|
|
36
|
-
showLocaleSwitch: boolean;
|
|
37
|
-
};
|
|
38
|
-
mulTabsOptions: {
|
|
39
|
-
show: boolean;
|
|
40
|
-
};
|
|
41
|
-
footerOptions: {
|
|
42
|
-
show: any;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
getConfig: () => {
|
|
46
|
-
contentMode: import('../../../../src/enums').ContentMode;
|
|
47
|
-
menuOptions: {
|
|
48
|
-
mode: import('../../../../src/enums').MenuMode;
|
|
49
|
-
type: MenuType;
|
|
50
|
-
split: boolean;
|
|
51
|
-
};
|
|
52
|
-
headOptions: {
|
|
53
|
-
showBreadCrumb: boolean;
|
|
54
|
-
showSearch: boolean;
|
|
55
|
-
notice: boolean;
|
|
56
|
-
showFullScreen: boolean;
|
|
57
|
-
showLocaleSwitch: boolean;
|
|
58
|
-
};
|
|
59
|
-
mulTabsOptions: {
|
|
60
|
-
show: boolean;
|
|
61
|
-
};
|
|
62
|
-
footerOptions: {
|
|
63
|
-
show: any;
|
|
64
|
-
};
|
|
65
|
-
};
|
|
66
|
-
copy: () => void;
|
|
67
|
-
reset: () => void;
|
|
68
|
-
readonly DtMenuType: import("vue").DefineComponent<{}, {
|
|
69
|
-
getMenuType: import("vue").ComputedRef<MenuType>;
|
|
70
|
-
getMenuMode: import("vue").ComputedRef<import('../../../../src/enums').MenuMode>;
|
|
71
|
-
menuTypeList: {
|
|
72
|
-
title: string;
|
|
73
|
-
headTheme: import('../../../../src/enums').Theme;
|
|
74
|
-
menuTheme: import('../../../../src/enums').Theme;
|
|
75
|
-
mode: import('../../../../src/enums').MenuMode;
|
|
76
|
-
type: MenuType;
|
|
77
|
-
split: boolean;
|
|
78
|
-
}[];
|
|
79
|
-
changeMenuType: (item: {
|
|
80
|
-
title: string;
|
|
81
|
-
headTheme: import('../../../../src/enums').Theme;
|
|
82
|
-
menuTheme: import('../../../../src/enums').Theme;
|
|
83
|
-
mode: import('../../../../src/enums').MenuMode;
|
|
84
|
-
type: MenuType;
|
|
85
|
-
split: boolean;
|
|
86
|
-
}) => void;
|
|
87
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
88
|
-
readonly DtFeature: import("vue").DefineComponent<{}, {
|
|
89
|
-
t: {
|
|
90
|
-
(key: string): string;
|
|
91
|
-
(key: string, locale: string): string;
|
|
92
|
-
(key: string, locale: string, list: unknown[]): string;
|
|
93
|
-
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
94
|
-
(key: string, list: unknown[]): string;
|
|
95
|
-
(key: string, named: Record<string, unknown>): string;
|
|
96
|
-
};
|
|
97
|
-
getShowBread: import("vue").ComputedRef<boolean>;
|
|
98
|
-
getShowSearch: import("vue").ComputedRef<boolean>;
|
|
99
|
-
getShowUiSize: import("vue").ComputedRef<boolean>;
|
|
100
|
-
getShowNotice: import("vue").ComputedRef<boolean>;
|
|
101
|
-
getShowFullScreen: import("vue").ComputedRef<boolean>;
|
|
102
|
-
getShowLocale: import("vue").ComputedRef<boolean>;
|
|
103
|
-
getShowMultipleTab: import("vue").ComputedRef<boolean>;
|
|
104
|
-
getShowFooter: import("vue").ComputedRef<any>;
|
|
105
|
-
getContentMode: import("vue").ComputedRef<import('../../../../src/enums').ContentMode>;
|
|
106
|
-
switchItems: {
|
|
107
|
-
title: string;
|
|
108
|
-
event: import("../helper/change-theme").HandlerEnum;
|
|
109
|
-
def: import("vue").ComputedRef<any>;
|
|
110
|
-
}[];
|
|
111
|
-
selectItems: {
|
|
112
|
-
title: string;
|
|
113
|
-
event: import("../helper/change-theme").HandlerEnum;
|
|
114
|
-
def: import("vue").ComputedRef<import('../../../../src/enums').ContentMode>;
|
|
115
|
-
options: {
|
|
116
|
-
value: import('../../../../src/enums').ContentMode;
|
|
117
|
-
label: string;
|
|
118
|
-
}[];
|
|
119
|
-
}[];
|
|
120
|
-
unref: typeof unref;
|
|
121
|
-
DtTSelect: import("vue").DefineComponent<{
|
|
122
|
-
event: {
|
|
123
|
-
type: import("vue").PropType<import("../helper/change-theme").HandlerEnum>;
|
|
124
|
-
};
|
|
125
|
-
disabled: {
|
|
126
|
-
type: BooleanConstructor;
|
|
127
|
-
};
|
|
128
|
-
title: {
|
|
129
|
-
type: StringConstructor;
|
|
130
|
-
};
|
|
131
|
-
def: {
|
|
132
|
-
type: import("vue").PropType<string | number>;
|
|
133
|
-
};
|
|
134
|
-
initValue: {
|
|
135
|
-
type: import("vue").PropType<string | number>;
|
|
136
|
-
};
|
|
137
|
-
options: {
|
|
138
|
-
type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
|
|
139
|
-
default: () => any[];
|
|
140
|
-
};
|
|
141
|
-
}, {
|
|
142
|
-
props: any;
|
|
143
|
-
getBindValue: import("vue").ComputedRef<{
|
|
144
|
-
value: string | number;
|
|
145
|
-
defaultValue: string | number;
|
|
146
|
-
} | {
|
|
147
|
-
value?: undefined;
|
|
148
|
-
defaultValue?: undefined;
|
|
149
|
-
}>;
|
|
150
|
-
handleChange: (val: any) => void;
|
|
151
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
152
|
-
event: {
|
|
153
|
-
type: import("vue").PropType<import("../helper/change-theme").HandlerEnum>;
|
|
154
|
-
};
|
|
155
|
-
disabled: {
|
|
156
|
-
type: BooleanConstructor;
|
|
157
|
-
};
|
|
158
|
-
title: {
|
|
159
|
-
type: StringConstructor;
|
|
160
|
-
};
|
|
161
|
-
def: {
|
|
162
|
-
type: import("vue").PropType<string | number>;
|
|
163
|
-
};
|
|
164
|
-
initValue: {
|
|
165
|
-
type: import("vue").PropType<string | number>;
|
|
166
|
-
};
|
|
167
|
-
options: {
|
|
168
|
-
type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
|
|
169
|
-
default: () => any[];
|
|
170
|
-
};
|
|
171
|
-
}>>, {
|
|
172
|
-
disabled: boolean;
|
|
173
|
-
options: import("ant-design-vue/es/select").DefaultOptionType[];
|
|
174
|
-
}>;
|
|
175
|
-
DtTSwitch: import("vue").DefineComponent<{
|
|
176
|
-
event: {
|
|
177
|
-
type: import("vue").PropType<import("../helper/change-theme").HandlerEnum>;
|
|
178
|
-
};
|
|
179
|
-
disabled: {
|
|
180
|
-
type: BooleanConstructor;
|
|
181
|
-
};
|
|
182
|
-
title: {
|
|
183
|
-
type: StringConstructor;
|
|
184
|
-
};
|
|
185
|
-
def: {
|
|
186
|
-
type: BooleanConstructor;
|
|
187
|
-
};
|
|
188
|
-
}, {
|
|
189
|
-
t: {
|
|
190
|
-
(key: string): string;
|
|
191
|
-
(key: string, locale: string): string;
|
|
192
|
-
(key: string, locale: string, list: unknown[]): string;
|
|
193
|
-
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
194
|
-
(key: string, list: unknown[]): string;
|
|
195
|
-
(key: string, named: Record<string, unknown>): string;
|
|
196
|
-
};
|
|
197
|
-
props: any;
|
|
198
|
-
getBindValue: import("vue").ComputedRef<{
|
|
199
|
-
checked: true;
|
|
200
|
-
} | {
|
|
201
|
-
checked?: undefined;
|
|
202
|
-
}>;
|
|
203
|
-
handleChange: (e: any) => void;
|
|
204
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
205
|
-
event: {
|
|
206
|
-
type: import("vue").PropType<import("../helper/change-theme").HandlerEnum>;
|
|
207
|
-
};
|
|
208
|
-
disabled: {
|
|
209
|
-
type: BooleanConstructor;
|
|
210
|
-
};
|
|
211
|
-
title: {
|
|
212
|
-
type: StringConstructor;
|
|
213
|
-
};
|
|
214
|
-
def: {
|
|
215
|
-
type: BooleanConstructor;
|
|
216
|
-
};
|
|
217
|
-
}>>, {
|
|
218
|
-
def: boolean;
|
|
219
|
-
disabled: boolean;
|
|
220
|
-
}>;
|
|
221
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
222
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
223
|
-
export default _sfc_main;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { UiSize } from '../../../../src/enums';
|
|
2
|
-
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
3
|
-
t: {
|
|
4
|
-
(key: string): string;
|
|
5
|
-
(key: string, locale: string): string;
|
|
6
|
-
(key: string, locale: string, list: unknown[]): string;
|
|
7
|
-
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
8
|
-
(key: string, list: unknown[]): string;
|
|
9
|
-
(key: string, named: Record<string, unknown>): string;
|
|
10
|
-
};
|
|
11
|
-
setThemeConf: (options?: import("../../../types/theme.type").ThemeOptions) => void;
|
|
12
|
-
getUiSize: import("vue").ComputedRef<UiSize>;
|
|
13
|
-
sizeList: {
|
|
14
|
-
text: string;
|
|
15
|
-
event: UiSize;
|
|
16
|
-
}[];
|
|
17
|
-
visible: import("vue").Ref<boolean>;
|
|
18
|
-
toggleLang: (size: UiSize) => Promise<void>;
|
|
19
|
-
readonly Popover: any;
|
|
20
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
21
|
-
export default _sfc_main;
|
|
@@ -1,138 +0,0 @@
|
|
|
1
|
-
import { unref } from 'vue';
|
|
2
|
-
import { ContentMode } from '../../../../../src/enums';
|
|
3
|
-
import { HandlerEnum } from '../../helper/change-theme';
|
|
4
|
-
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
5
|
-
t: {
|
|
6
|
-
(key: string): string;
|
|
7
|
-
(key: string, locale: string): string;
|
|
8
|
-
(key: string, locale: string, list: unknown[]): string;
|
|
9
|
-
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
10
|
-
(key: string, list: unknown[]): string;
|
|
11
|
-
(key: string, named: Record<string, unknown>): string;
|
|
12
|
-
};
|
|
13
|
-
getShowBread: import("vue").ComputedRef<boolean>;
|
|
14
|
-
getShowSearch: import("vue").ComputedRef<boolean>;
|
|
15
|
-
getShowUiSize: import("vue").ComputedRef<boolean>;
|
|
16
|
-
getShowNotice: import("vue").ComputedRef<boolean>;
|
|
17
|
-
getShowFullScreen: import("vue").ComputedRef<boolean>;
|
|
18
|
-
getShowLocale: import("vue").ComputedRef<boolean>;
|
|
19
|
-
getShowMultipleTab: import("vue").ComputedRef<boolean>;
|
|
20
|
-
getShowFooter: import("vue").ComputedRef<any>;
|
|
21
|
-
getContentMode: import("vue").ComputedRef<ContentMode>;
|
|
22
|
-
switchItems: {
|
|
23
|
-
title: string;
|
|
24
|
-
event: HandlerEnum;
|
|
25
|
-
def: import("vue").ComputedRef<any>;
|
|
26
|
-
}[];
|
|
27
|
-
selectItems: {
|
|
28
|
-
title: string;
|
|
29
|
-
event: HandlerEnum;
|
|
30
|
-
def: import("vue").ComputedRef<ContentMode>;
|
|
31
|
-
options: {
|
|
32
|
-
value: ContentMode;
|
|
33
|
-
label: string;
|
|
34
|
-
}[];
|
|
35
|
-
}[];
|
|
36
|
-
unref: typeof unref;
|
|
37
|
-
DtTSelect: import("vue").DefineComponent<{
|
|
38
|
-
event: {
|
|
39
|
-
type: import("vue").PropType<HandlerEnum>;
|
|
40
|
-
};
|
|
41
|
-
disabled: {
|
|
42
|
-
type: BooleanConstructor;
|
|
43
|
-
};
|
|
44
|
-
title: {
|
|
45
|
-
type: StringConstructor;
|
|
46
|
-
};
|
|
47
|
-
def: {
|
|
48
|
-
type: import("vue").PropType<string | number>;
|
|
49
|
-
};
|
|
50
|
-
initValue: {
|
|
51
|
-
type: import("vue").PropType<string | number>;
|
|
52
|
-
};
|
|
53
|
-
options: {
|
|
54
|
-
type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
|
|
55
|
-
default: () => any[];
|
|
56
|
-
};
|
|
57
|
-
}, {
|
|
58
|
-
props: any;
|
|
59
|
-
getBindValue: import("vue").ComputedRef<{
|
|
60
|
-
value: string | number;
|
|
61
|
-
defaultValue: string | number;
|
|
62
|
-
} | {
|
|
63
|
-
value?: undefined;
|
|
64
|
-
defaultValue?: undefined;
|
|
65
|
-
}>;
|
|
66
|
-
handleChange: (val: any) => void;
|
|
67
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
68
|
-
event: {
|
|
69
|
-
type: import("vue").PropType<HandlerEnum>;
|
|
70
|
-
};
|
|
71
|
-
disabled: {
|
|
72
|
-
type: BooleanConstructor;
|
|
73
|
-
};
|
|
74
|
-
title: {
|
|
75
|
-
type: StringConstructor;
|
|
76
|
-
};
|
|
77
|
-
def: {
|
|
78
|
-
type: import("vue").PropType<string | number>;
|
|
79
|
-
};
|
|
80
|
-
initValue: {
|
|
81
|
-
type: import("vue").PropType<string | number>;
|
|
82
|
-
};
|
|
83
|
-
options: {
|
|
84
|
-
type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
|
|
85
|
-
default: () => any[];
|
|
86
|
-
};
|
|
87
|
-
}>>, {
|
|
88
|
-
disabled: boolean;
|
|
89
|
-
options: import("ant-design-vue/es/select").DefaultOptionType[];
|
|
90
|
-
}>;
|
|
91
|
-
DtTSwitch: import("vue").DefineComponent<{
|
|
92
|
-
event: {
|
|
93
|
-
type: import("vue").PropType<HandlerEnum>;
|
|
94
|
-
};
|
|
95
|
-
disabled: {
|
|
96
|
-
type: BooleanConstructor;
|
|
97
|
-
};
|
|
98
|
-
title: {
|
|
99
|
-
type: StringConstructor;
|
|
100
|
-
};
|
|
101
|
-
def: {
|
|
102
|
-
type: BooleanConstructor;
|
|
103
|
-
};
|
|
104
|
-
}, {
|
|
105
|
-
t: {
|
|
106
|
-
(key: string): string;
|
|
107
|
-
(key: string, locale: string): string;
|
|
108
|
-
(key: string, locale: string, list: unknown[]): string;
|
|
109
|
-
(key: string, locale: string, named: Record<string, unknown>): string;
|
|
110
|
-
(key: string, list: unknown[]): string;
|
|
111
|
-
(key: string, named: Record<string, unknown>): string;
|
|
112
|
-
};
|
|
113
|
-
props: any;
|
|
114
|
-
getBindValue: import("vue").ComputedRef<{
|
|
115
|
-
checked: true;
|
|
116
|
-
} | {
|
|
117
|
-
checked?: undefined;
|
|
118
|
-
}>;
|
|
119
|
-
handleChange: (e: any) => void;
|
|
120
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
121
|
-
event: {
|
|
122
|
-
type: import("vue").PropType<HandlerEnum>;
|
|
123
|
-
};
|
|
124
|
-
disabled: {
|
|
125
|
-
type: BooleanConstructor;
|
|
126
|
-
};
|
|
127
|
-
title: {
|
|
128
|
-
type: StringConstructor;
|
|
129
|
-
};
|
|
130
|
-
def: {
|
|
131
|
-
type: BooleanConstructor;
|
|
132
|
-
};
|
|
133
|
-
}>>, {
|
|
134
|
-
def: boolean;
|
|
135
|
-
disabled: boolean;
|
|
136
|
-
}>;
|
|
137
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
138
|
-
export default _sfc_main;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { MenuMode, MenuType, Theme } from '../../../../../src/enums';
|
|
2
|
-
declare type Menu = {
|
|
3
|
-
title: string;
|
|
4
|
-
headTheme: Theme;
|
|
5
|
-
menuTheme: Theme;
|
|
6
|
-
mode: MenuMode;
|
|
7
|
-
type: MenuType;
|
|
8
|
-
split: boolean;
|
|
9
|
-
};
|
|
10
|
-
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
11
|
-
getMenuType: import("vue").ComputedRef<MenuType>;
|
|
12
|
-
getMenuMode: import("vue").ComputedRef<MenuMode>;
|
|
13
|
-
menuTypeList: Menu[];
|
|
14
|
-
changeMenuType: (item: Menu) => void;
|
|
15
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
16
|
-
export default _sfc_main;
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
import type { DefaultOptionType } from 'ant-design-vue/es/select';
|
|
3
|
-
import { HandlerEnum } from '../../helper/change-theme';
|
|
4
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
5
|
-
event: {
|
|
6
|
-
type: PropType<HandlerEnum>;
|
|
7
|
-
};
|
|
8
|
-
disabled: {
|
|
9
|
-
type: BooleanConstructor;
|
|
10
|
-
};
|
|
11
|
-
title: {
|
|
12
|
-
type: StringConstructor;
|
|
13
|
-
};
|
|
14
|
-
def: {
|
|
15
|
-
type: PropType<string | number>;
|
|
16
|
-
};
|
|
17
|
-
initValue: {
|
|
18
|
-
type: PropType<string | number>;
|
|
19
|
-
};
|
|
20
|
-
options: {
|
|
21
|
-
type: PropType<DefaultOptionType[]>;
|
|
22
|
-
default: () => any[];
|
|
23
|
-
};
|
|
24
|
-
}, {
|
|
25
|
-
props: any;
|
|
26
|
-
getBindValue: import("vue").ComputedRef<{
|
|
27
|
-
value: string | number;
|
|
28
|
-
defaultValue: string | number;
|
|
29
|
-
} | {
|
|
30
|
-
value?: undefined;
|
|
31
|
-
defaultValue?: undefined;
|
|
32
|
-
}>;
|
|
33
|
-
handleChange: (val: any) => void;
|
|
34
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
-
event: {
|
|
36
|
-
type: PropType<HandlerEnum>;
|
|
37
|
-
};
|
|
38
|
-
disabled: {
|
|
39
|
-
type: BooleanConstructor;
|
|
40
|
-
};
|
|
41
|
-
title: {
|
|
42
|
-
type: StringConstructor;
|
|
43
|
-
};
|
|
44
|
-
def: {
|
|
45
|
-
type: PropType<string | number>;
|
|
46
|
-
};
|
|
47
|
-
initValue: {
|
|
48
|
-
type: PropType<string | number>;
|
|
49
|
-
};
|
|
50
|
-
options: {
|
|
51
|
-
type: PropType<DefaultOptionType[]>;
|
|
52
|
-
default: () => any[];
|
|
53
|
-
};
|
|
54
|
-
}>>, {
|
|
55
|
-
disabled: boolean;
|
|
56
|
-
options: DefaultOptionType[];
|
|
57
|
-
}>;
|
|
58
|
-
export default _sfc_main;
|