@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
package/README.md
CHANGED
|
@@ -4,15 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
## 组件
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
7
|
+
- [x] form表单
|
|
8
|
+
- [x] table表格
|
|
9
|
+
- [x] drawer抽屉
|
|
10
|
+
- [x] modal弹框
|
|
11
|
+
- [x] 增删改查source及curd
|
|
12
|
+
- [x] icons字体图标
|
|
13
|
+
- [x] container支持滚动事件容器
|
|
14
14
|
|
|
15
15
|
## 指令
|
|
16
16
|
|
|
17
|
-
-
|
|
18
|
-
-
|
|
17
|
+
- [x] 图标: v-icon
|
|
18
|
+
- [x] 权限: v-auth
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698312712473" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="18083" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M677.504 64a64 64 0 0 1 45.226667 18.773333l154.538666 154.453334A64 64 0 0 1 896 282.538667V896a64 64 0 0 1-64 64h-640A64 64 0 0 1 128 896V128a64 64 0 0 1 64-64h485.504z m0.298667 467.413333c-48.469333 0-76.586667 18.048-76.586667 82.773334 0 64.768 28.117333 82.816 76.586667 82.816 26.026667 0 49.066667-5.034667 58.538666-10.666667v-30.122667c-10.922667 5.290667-32.810667 10.922667-52.053333 10.922667-31.914667 0-44.928-12.117333-45.781333-39.04l104.661333-6.784c0.853333-5.632 1.450667-13.013333 1.450667-20.992 0-37.546667-11.52-68.906667-66.816-68.906667zM558.336 469.333333h-36.949333v187.477334c0 27.178667 11.264 38.997333 42.88 38.997333 6.528 0 12.416-0.554667 17.749333-1.749333v-29.013334a36.693333 36.693333 0 0 1-9.770667 1.194667c-10.325333 0-13.909333-3.242667-13.909333-18.346667V469.333333z m-155.221333 19.498667H281.6v205.226667h38.741333v-83.669334H397.226667v-33.706666H320.341333v-54.144h82.773334v-33.706667z m72.149333 45.568h-36.949333v159.658667h36.949333v-159.658667z m202.538667 25.429333c28.373333 0 32.512 16.853333 32.512 36.650667l-71.808 5.333333c0.853333-27.52 9.728-41.984 39.296-41.984z m-220.885334-89.898666c-16.554667 0-20.992 1.749333-20.992 19.797333 0 17.749333 4.437333 20.096 20.992 20.096 16.597333 0 21.034667-2.346667 21.034667-20.053333 0-18.090667-4.437333-19.84-21.034667-19.84z" fill="#A78F8F" p-id="18084"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698312399002" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6916" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M950.272 843.776H527.36c-16.384 0-29.696-13.312-29.696-29.696V210.944c0-16.384 13.312-29.696 29.696-29.696h422.912c16.384 0 29.696 13.312 29.696 29.696v603.136c0 16.384-13.312 29.696-29.696 29.696z" fill="#E8E8E8" p-id="6917"></path><path d="M829.44 361.472H527.36c-16.384 0-29.696-13.312-29.696-29.696s13.312-29.696 29.696-29.696H829.44c16.384 0 29.696 13.312 29.696 29.696 0 15.36-13.312 29.696-29.696 29.696z m0 120.832H527.36c-16.384 0-29.696-13.312-29.696-29.696s13.312-29.696 29.696-29.696H829.44c16.384 0 29.696 13.312 29.696 29.696s-13.312 29.696-29.696 29.696z m0 119.808H527.36c-16.384 0-29.696-13.312-29.696-29.696s13.312-29.696 29.696-29.696H829.44c16.384 0 29.696 13.312 29.696 29.696s-13.312 29.696-29.696 29.696z m0 120.832H527.36c-16.384 0-29.696-13.312-29.696-29.696s13.312-29.696 29.696-29.696H829.44c16.384 0 29.696 13.312 29.696 29.696s-13.312 29.696-29.696 29.696z" fill="#B2B2B2" p-id="6918"></path><path d="M607.232 995.328l-563.2-107.52V135.168l563.2-107.52v967.68z" fill="#0D47A1" p-id="6919"></path><path d="M447.488 696.32h-71.68l-47.104-236.544c-3.072-13.312-4.096-27.648-4.096-40.96h-1.024c-1.024 16.384-3.072 30.72-5.12 40.96L269.312 696.32H194.56l-74.752-368.64h70.656l39.936 245.76c2.048 10.24 3.072 24.576 4.096 41.984h1.024c0-13.312 3.072-27.648 6.144-43.008l51.2-244.736h68.608l47.104 247.808c2.048 9.216 3.072 22.528 4.096 39.936h1.024c1.024-13.312 2.048-26.624 4.096-40.96l39.936-245.76H522.24L447.488 696.32z" fill="#FFFFFF" p-id="6920"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg t="1698314002749" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="31094" width="200" height="200"><path d="M1006.933333 85.333333H580.266667V34.133333c0-6.826667-3.413333-10.24-6.826667-13.653333s-10.24-3.413333-13.653333-3.413333l-546.133334 136.533333c-6.826667 3.413333-13.653333 10.24-13.653333 17.066667v716.8c0 6.826667 6.826667 13.653333 13.653333 17.066666l546.133334 102.4h3.413333c3.413333 0 6.826667 0 10.24-3.413333 3.413333-3.413333 6.826667-6.826667 6.826667-13.653333v-51.2h426.666666c10.24 0 17.066667-6.826667 17.066667-17.066667V102.4c0-10.24-6.826667-17.066667-17.066667-17.066667z m-17.066666 682.666667h-238.933334v-102.4h238.933334v102.4zM174.08 672.426667l92.16-153.6c3.413333-6.826667 3.413333-13.653333 0-17.066667l-92.16-153.6C170.666667 344.746667 170.666667 341.333333 170.666667 337.92s3.413333-6.826667 6.826666-10.24c6.826667-3.413333 17.066667-3.413333 23.893334 6.826667L273.066667 457.386667c6.826667 10.24 23.893333 10.24 30.72 0L375.466667 334.506667c3.413333-6.826667 17.066667-10.24 23.893333-6.826667 6.826667 0 10.24 6.826667 10.24 10.24 0 3.413333 0 10.24-3.413333 13.653333l-92.16 153.6c-3.413333 6.826667-3.413333 13.653333 0 17.066667l92.16 153.6c3.413333 3.413333 3.413333 6.826667 3.413333 10.24s-3.413333 6.826667-6.826667 10.24c-6.826667 3.413333-17.066667 3.413333-23.893333-6.826667L307.2 566.613333c-3.413333-6.826667-10.24-6.826667-13.653333-6.826666s-10.24 3.413333-13.653334 6.826666l-71.68 122.88c-3.413333 6.826667-17.066667 10.24-23.893333 6.826667-10.24 0-13.653333-3.413333-13.653333-10.24 0-3.413333 0-6.826667 3.413333-13.653333zM580.266667 529.066667h136.533333v102.4h-136.533333v-102.4z m0-34.133334v-102.4h136.533333v102.4h-136.533333z m170.666666-102.4h238.933334v102.4h-238.933334v-102.4z m238.933334-34.133333h-238.933334v-102.4h238.933334v102.4z m-273.066667 0h-136.533333v-102.4h136.533333v102.4z m-136.533333 307.2h136.533333v102.4h-136.533333v-102.4z m170.666666-34.133333v-102.4h238.933334v102.4h-238.933334z m238.933334-512v102.4h-238.933334v-102.4h238.933334z m-273.066667 0v102.4h-136.533333v-102.4h136.533333z m-136.533333 682.666666h136.533333v102.4h-136.533333v-102.4z m409.6 102.4h-238.933334v-102.4h238.933334v102.4z" fill="#e16531" p-id="31095"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1697954852066" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7755" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M928 444H820V330.4c0-17.7-14.3-32-32-32H473L355.7 186.2c-1.5-1.4-3.5-2.2-5.5-2.2H96c-17.7 0-32 14.3-32 32v592c0 17.7 14.3 32 32 32h698c13 0 24.8-7.9 29.7-20l134-332c1.5-3.8 2.3-7.9 2.3-12 0-17.7-14.3-32-32-32zM136 256h188.5l119.6 114.4H748V444H238c-13 0-24.8 7.9-29.7 20L136 643.2V256z m635.3 512H159l103.3-256h612.4L771.3 768z" p-id="7756"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1697954941223" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8385" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M880 298.4H521L403.7 186.2c-1.5-1.4-3.5-2.2-5.5-2.2H144c-17.7 0-32 14.3-32 32v592c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V330.4c0-17.7-14.3-32-32-32zM840 768H184V256h188.5l119.6 114.4H840V768z" p-id="8386"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698312614169" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13003" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M910.2336 1024H113.7664C51.2 1024 0 972.8 0 910.2336V113.7664C0 51.2 51.2 0 113.7664 0h796.4672C972.8 0 1024 51.2 1024 113.7664v796.4672C1024 972.8 972.8 1024 910.2336 1024zM793.6 230.4H230.4c-28.2368 0-51.2 22.9632-51.2 51.2v460.8c0 28.2368 22.9632 51.2 51.2 51.2h563.2c28.2368 0 51.2-22.9632 51.2-51.2V281.6c0-28.2368-22.9632-51.2-51.2-51.2z m0 51.2l0.0256 416.9472L640 435.2l-128 230.4-128-128-153.6 175.5392V281.6h563.2z m-452.2752 173.5168a56.9088 56.9088 0 1 0-0.0256-113.8176 56.9088 56.9088 0 0 0 0.0256 113.8176z" fill="#1AA5DD" p-id="13004"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg t="1698313655786" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="22917" width="200" height="200"><path d="M535.198324 0h69.53853v95.276816c124.175945 0.677323 248.351891-1.354647 373.205159 0.677324a40.6394 40.6394 0 0 1 45.154889 45.154889c1.919083 234.579649 0 469.272186 1.128872 703.851835-1.128872 24.044979 2.257744 50.686363-11.288722 72.022049-17.045971 12.417595-38.946092 11.288722-58.814243 11.288722H604.962628v95.276816h-72.925146C354.917429 990.924044 177.458715 960.557381 0 928.723184V95.502591C178.361812 63.555507 356.836512 32.51152 535.198324 0z" fill="#A33639" p-id="22918"></path><path d="M604.736854 130.949179h383.816558v762.101642h-383.816558v-95.276816h302.42487v-47.638408H604.736854v-59.491567h302.42487V643.457171H604.736854v-60.056002h302.42487v-47.638409H604.736854v-59.491566h302.42487V428.971447H604.736854v-59.830228h302.42487v-47.638408H604.736854V261.898357h302.42487v597.17341H604.736854z" fill="#FFFFFF" p-id="22919"></path><path d="M645.489141 529.66685h302.424871v47.638409H645.489141zM645.489141 611.510087h302.424871v47.638408H645.489141zM645.489141 693.353324h302.424871v47.638408H645.489141zM596.383199 775.19656h351.530813v47.638409H596.383199z" fill="#A33639" p-id="22920"></path><path d="M180.619557 317.325984c59.265792 2.822181 130.949179-24.044979 180.619557 21.335685 46.961085 58.475582 34.54349 165.831331-35.107927 200.713483-24.722302 12.982031-53.169882 11.288722-80.037041 10.272737v130.949179L180.619557 675.065594c-0.903098-119.208908-1.128872-238.530702 0-357.73961z" fill="#FFFFFF" p-id="22921"></path><path d="M245.642597 377.720648c21.448572-1.015985 48.089957-5.079925 62.539522 15.578437a82.407673 82.407673 0 0 1 1.467534 73.263808c-12.417595 22.577445-40.526513 20.771249-62.313747 23.367655-2.257744-37.365671-2.03197-74.731342-1.693309-112.2099zM885.713152 379.865505a83.988094 83.988094 0 0 1-48.315732-19.642376 460.57987 460.57987 0 0 0-77.666409 24.835189c-20.3197 36.011024-39.171866 54.411641-55.540514 54.411641a17.384632 17.384632 0 0 1-9.821188-2.596406 19.416602 19.416602 0 0 1-11.288723-17.723294c0-5.870136 1.354647-22.577445 63.329733-49.105942a467.917539 467.917539 0 0 0 34.656377-81.278801c-7.902106-15.691324-24.835189-54.298754-13.094918-73.941131a20.658362 20.658362 0 0 1 20.206813-10.498511 21.900121 21.900121 0 0 1 17.045971 8.466541c8.466542 11.288722 7.789218 36.688347-3.27373 73.376695A196.988204 196.988204 0 0 0 842.70312 338.661669a221.14607 221.14607 0 0 1 41.090949-4.515489c30.705325 0.677323 35.333701 15.014001 34.656377 23.59343 0 22.577445-21.56146 22.577445-32.624407 22.577444z m-185.022159 42.106935l2.257745-0.564436a45.154889 45.154889 0 0 0 23.932091-16.820197 56.443612 56.443612 0 0 0-26.189836 17.384633z m93.357734-200.261934h-2.144858a4.402602 4.402602 0 0 0-2.82218 0.677323 52.492559 52.492559 0 0 0 4.176827 33.866167 53.282769 53.282769 0 0 0 0.790211-34.54349zM790.210561 317.551758v1.24176l-0.677323-0.677324c-5.418587 14.336677-11.288722 28.44758-18.061956 42.332709l1.128872-0.677323V361.239114A346.338 346.338 0 0 1 812.788006 348.595745l-0.677324-0.564436h1.806196a196.310881 196.310881 0 0 1-23.706317-30.479551z m94.599493 34.769265a66.151913 66.151913 0 0 0-18.174843 1.693308 50.686363 50.686363 0 0 0 20.997024 6.660347 26.076949 26.076949 0 0 0 13.885128-1.580422c-0.451549-2.596406-3.273729-6.773233-17.158858-6.773233z" fill="#A33639" p-id="22922"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698312279596" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4182" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M535.808 56.8832h58.6496v84.8896c110.5408 0.64 221.184-1.1776 331.5968 0.512 23.808-2.304 42.3936 16.64 40.0128 40.96 1.792 197.7344-0.384 427.0848 1.024 624.896-1.024 21.4016 2.048 45.1072-9.9072 64.0512-15.104 11.2128-34.7392 9.728-52.4288 10.5728-103.3984-0.512-206.7968-0.3328-310.2976-0.3328v84.6848h-64.3584c-157.5424-29.44-315.4432-56.32-473.1392-84.6848-0.1024-246.912-0.1024-493.824 0-740.6592C216.5248 113.5104 376.064 84.736 535.8336 56.8832z m63.8208 124.928v104.96c17.3312-3.712 34.688-7.2448 52.0704-10.624 1.4848 45.696 0.8448 91.5712 0.9728 137.344 46.4384 0 92.9792-0.1024 139.5456 0.2048-3.5328 45.4912-24.704 91.0848-65.3312 115.0208-37.5296 25.1392-85.376 25.4464-127.36 12.4928 0.1024 20.6336 0.1024 41.2928 0.2048 61.952h254.4384v42.112h-254.5408v52.6592h254.5408v42.112h-254.5408v110.592h336V181.8368H599.6288z m-490.24 374.784h23.2448v-47.104h15.1296c10.5216 0 18.56-0.6144 24.1152-1.792 4.352-1.1264 8.4736-3.1232 12.032-5.9136 4.1984-3.2768 7.552-7.5008 9.7792-12.3136 2.56-5.248 3.84-11.6992 3.84-19.3536 0-9.9328-2.2016-18.048-6.656-24.32a30.1056 30.1056 0 0 0-16.5632-12.2368c-4.2752-1.2544-13.4912-1.8688-27.6224-1.8688H109.3888v124.928z m23.2448-103.808h11.2384c8.3456 0 13.9264 0.2816 16.7168 0.8448a15.744 15.744 0 0 1 9.344 5.5296c2.5344 3.2 3.84 7.168 3.6864 11.264a17.8176 17.8176 0 0 1-2.6368 9.728 15.5136 15.5136 0 0 1-7.2704 6.1184c-3.072 1.3056-9.216 1.9712-18.3552 1.9712H132.608v-35.456z m83.968 103.8336h23.2448v-47.1296h15.104c10.5472 0 18.5856-0.6144 24.1408-1.792 4.352-1.1264 8.4736-3.1232 12.032-5.9136 4.1984-3.2768 7.552-7.5008 9.7792-12.3136 2.56-5.248 3.84-11.6992 3.84-19.3536 0-9.9328-2.2016-18.048-6.656-24.32a30.1056 30.1056 0 0 0-16.5632-12.2368c-4.3008-1.2544-13.4912-1.8688-27.648-1.8688H216.6272v124.928z m23.2448-103.8336h11.2128c8.3712 0 13.952 0.2816 16.7168 0.8448a15.744 15.744 0 0 1 9.344 5.5296c2.5344 3.2 3.84 7.168 3.6864 11.264a17.8176 17.8176 0 0 1-2.6368 9.728 15.5136 15.5136 0 0 1-7.2448 6.1184c-3.0976 1.3056-9.216 1.9712-18.3808 1.9712H239.872v-35.456z m109.8752 103.8336l23.2192-0.0512v-103.7824h34.048v-21.0944h-91.4176v21.0944h34.1504v103.8336zM671.872 253.184c72.6784 3.4816 133.8112 66.9696 137.7024 142.1824-45.952 0.5632-91.8784 0.3328-137.8048 0.3328 0-47.5392-0.128-95.0784 0.1024-142.5152z" fill="#E8673A" p-id="4183"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698312537282" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10895" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M0 512h1024v332.986182c0 62.231273-6.516364 84.805818-18.618182 107.566545a126.882909 126.882909 0 0 1-52.829091 52.782546c-22.760727 12.194909-45.335273 18.664727-107.52 18.664727H178.920727c-62.184727 0-84.759273-6.516364-107.52-18.618182A126.882909 126.882909 0 0 1 18.618182 952.506182C6.469818 929.792 0 907.217455 0 845.032727V512z" fill="#5CBC04" p-id="10896"></path><path d="M179.013818 0h665.972364c62.231273 0 84.805818 6.516364 107.566545 18.618182 22.807273 12.194909 40.634182 30.068364 52.782546 52.829091 12.194909 22.760727 18.664727 45.335273 18.664727 107.52V512H0V179.013818c0-62.231273 6.516364-84.805818 18.618182-107.566545A126.882909 126.882909 0 0 1 71.493818 18.618182C94.208 6.469818 116.782545 0 178.967273 0z" fill="#47A6FF" p-id="10897"></path><path d="M384 0h256v1024h-256z" fill="#FFCC00" p-id="10898"></path><path d="M0 332.8h1024v358.4H0z" fill="#EA340F" p-id="10899"></path><path d="M665.6 409.6v204.8H358.4V409.6h307.2z" fill="#FFCC00" p-id="10900"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="1291" node-id="1" sillyvg="true" template-height="1291" template-width="1430" version="1.1" viewBox="0 0 1430 1291" width="1430" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="50"><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_10" node-id="5" spreadMethod="pad" x1="714.93" x2="714.93" y1="1290.92" y2="995.69"><stop offset="0" stop-color="#f7fbff" stop-opacity="0.5"></stop><stop offset="1" stop-color="#ecf5ff"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_15" node-id="8" spreadMethod="pad" x1="1227.25" x2="1007.27" y1="66.57" y2="66.57"><stop offset="0" stop-color="#f7fbff"></stop><stop offset="1" stop-color="#ecf5ff"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_15-2" node-id="11" spreadMethod="pad" x1="344.06" x2="191.03" y1="283.66" y2="283.66"><stop offset="0" stop-color="#f7fbff"></stop><stop offset="1" stop-color="#ecf5ff"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_35" node-id="12" spreadMethod="pad" x1="676.78" x2="985.63" y1="641.95" y2="641.95"><stop offset="0" stop-color="#fafafd"></stop><stop offset="1" stop-color="#e4eaf0"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_35-2" node-id="15" spreadMethod="pad" x1="553.18" x2="553.18" y1="782.95" y2="544.24"><stop offset="0" stop-color="#fafafd"></stop><stop offset="1" stop-color="#e4eaf0"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_14" node-id="16" spreadMethod="pad" x1="851.79" x2="851.79" y1="956.19" y2="585.41"><stop offset="0" stop-color="#dcedff"></stop><stop offset="1" stop-color="#4095e6"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_14-2" node-id="19" spreadMethod="pad" x1="573.77" x2="573.77" y1="954.34" y2="597.62"><stop offset="0" stop-color="#dcedff"></stop><stop offset="1" stop-color="#4095e6"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_42" node-id="20" spreadMethod="pad" x1="650.81" x2="444.6" y1="591.69" y2="797.89"><stop offset="0" stop-color="#fafafd"></stop><stop offset="1" stop-color="#bedcfa"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_42-2" node-id="23" spreadMethod="pad" x1="789.55" x2="986.11" y1="782.46" y2="585.9"><stop offset="0" stop-color="#fafafd"></stop><stop offset="1" stop-color="#bedcfa"></stop></linearGradient></defs><g node-id="162"><path d="M 1429.86 1143.31 C 1429.86 1182.46 1354.54 1220.01 1220.46 1247.69 C 1086.39 1275.38 904.54 1290.93 714.93 1290.93 C 525.32 1290.93 343.47 1275.38 209.40 1247.69 C 75.32 1220.01 0.00 1182.46 0.00 1143.31 C 0.00 1104.16 75.32 1066.61 209.40 1038.93 C 343.47 1011.24 525.32 995.69 714.93 995.69 C 904.54 995.69 1086.39 1011.24 1220.46 1038.93 C 1354.54 1066.61 1429.86 1104.16 1429.86 1143.31 Z" fill="url(#_未命名的渐变_10)" fill-rule="nonzero" group-id="1" node-id="110" stroke="none" target-height="295.24005" target-width="1429.86" target-x="0" target-y="995.69"></path><g node-id="163"><path d="M 1162.16 989.30 L 1176.10 989.30 C 1178.02 989.30 1179.58 990.86 1179.58 992.78 L 1179.58 992.78 L 1179.58 1055.50 C 1179.58 1059.35 1176.46 1062.47 1172.61 1062.47 L 1165.64 1062.47 C 1161.79 1062.47 1158.67 1059.35 1158.67 1055.50 L 1158.67 1055.50 L 1158.67 992.78 C 1158.67 990.86 1160.23 989.30 1162.15 989.30 L 1162.15 989.30 Z" fill="#e9f0f4" fill-rule="nonzero" group-id="1,2" node-id="114" stroke="none" target-height="73.16998" target-width="20.909912" target-x="1158.67" target-y="989.3"></path><path d="M 1169.13 846.43 L 1169.13 1020.66 L 1099.44 989.30 L 1169.13 846.43 Z" fill="#e1eaef" fill-rule="nonzero" group-id="1,2" node-id="116" stroke="none" target-height="174.22998" target-width="69.69006" target-x="1099.44" target-y="846.43"></path><path d="M 1169.13 846.43 L 1169.13 1020.66 L 1238.82 989.30 L 1169.13 846.43 Z" fill="#f5f7fa" fill-rule="nonzero" group-id="1,2" node-id="118" stroke="none" target-height="174.22998" target-width="69.68994" target-x="1169.13" target-y="846.43"></path></g><g node-id="164"><path d="M 1263.74 988.50 L 1282.24 988.50 C 1284.79 988.50 1286.87 990.57 1286.87 993.13 L 1286.87 993.13 L 1286.87 1076.38 C 1286.87 1081.49 1282.73 1085.63 1277.62 1085.63 L 1268.37 1085.63 C 1263.26 1085.63 1259.12 1081.49 1259.12 1076.38 L 1259.12 1076.38 L 1259.12 993.13 C 1259.12 990.58 1261.19 988.50 1263.75 988.50 L 1263.75 988.50 Z" fill="#e9f0f4" fill-rule="nonzero" group-id="1,3" node-id="123" stroke="none" target-height="97.130005" target-width="27.75" target-x="1259.12" target-y="988.5"></path><path d="M 1272.99 798.87 L 1272.99 1030.13 L 1180.49 988.50 L 1272.99 798.87 Z" fill="#e1eaef" fill-rule="nonzero" group-id="1,3" node-id="125" stroke="none" target-height="231.26001" target-width="92.5" target-x="1180.49" target-y="798.87"></path><path d="M 1272.99 798.87 L 1272.99 1030.13 L 1365.49 988.50 L 1272.99 798.87 Z" fill="#f5f7fa" fill-rule="nonzero" group-id="1,3" node-id="127" stroke="none" target-height="231.26001" target-width="92.5" target-x="1272.99" target-y="798.87"></path></g><g node-id="165"><path d="M 244.89 976.92 L 263.39 976.92 C 265.94 976.92 268.02 978.99 268.02 981.55 L 268.02 981.55 L 268.02 1064.80 C 268.02 1069.91 263.88 1074.05 258.77 1074.05 L 249.52 1074.05 C 244.41 1074.05 240.27 1069.91 240.27 1064.80 L 240.27 1064.80 L 240.27 981.55 C 240.27 979.00 242.34 976.92 244.90 976.92 L 244.90 976.92 Z" fill="#e9f0f4" fill-rule="nonzero" group-id="1,4" node-id="132" stroke="none" target-height="97.130066" target-width="27.749985" target-x="240.27" target-y="976.92"></path><path d="M 254.14 787.29 L 254.14 1018.55 L 161.64 976.92 L 254.14 787.29 Z" fill="#e1eaef" fill-rule="nonzero" group-id="1,4" node-id="134" stroke="none" target-height="231.26001" target-width="92.5" target-x="161.64" target-y="787.29"></path><path d="M 254.14 787.29 L 254.14 1018.55 L 346.64 976.92 L 254.14 787.29 Z" fill="#f5f7fa" fill-rule="nonzero" group-id="1,4" node-id="136" stroke="none" target-height="231.26001" target-width="92.500015" target-x="254.14" target-y="787.29"></path></g><path d="M 1204.13 65.71 C 1204.05 65.68 1203.99 65.60 1203.99 65.52 C 1204.02 28.87 1175.53 0.00 1140.41 0.00 C 1119.72 0.00 1101.40 9.91 1089.77 25.19 C 1089.72 25.26 1089.63 25.29 1089.55 25.26 C 1085.52 23.92 1081.22 23.16 1076.74 23.16 C 1054.36 23.16 1036.22 41.30 1036.22 63.68 C 1036.22 63.85 1036.24 64.02 1036.25 64.20 C 1019.35 67.03 1006.57 82.02 1007.31 99.88 C 1008.09 118.79 1024.84 133.15 1043.76 133.15 L 1191.12 133.15 C 1209.06 133.15 1225.09 120.16 1227.05 102.33 C 1228.88 85.56 1218.76 70.91 1204.14 65.71 Z" fill="url(#_未命名的渐变_15)" fill-rule="nonzero" group-id="1" node-id="139" stroke="none" target-height="133.15" target-width="222.31" target-x="1006.57" target-y="0"></path><path d="M 327.98 283.05 C 327.92 283.03 327.89 282.98 327.89 282.92 C 327.91 257.43 308.09 237.34 283.66 237.34 C 269.27 237.34 256.52 244.23 248.43 254.86 C 248.39 254.91 248.33 254.93 248.27 254.91 C 245.47 253.97 242.48 253.45 239.36 253.45 C 223.79 253.45 211.17 266.07 211.17 281.64 C 211.17 281.76 211.19 281.88 211.19 282.00 C 199.43 283.97 190.55 294.39 191.06 306.82 C 191.60 319.97 203.25 329.96 216.42 329.96 L 318.93 329.96 C 331.41 329.96 342.56 320.92 343.92 308.52 C 345.20 296.85 338.15 286.66 327.99 283.05 Z" fill="url(#_未命名的渐变_15-2)" fill-rule="nonzero" group-id="1" node-id="141" stroke="none" target-height="92.619995" target-width="154.65001" target-x="190.55" target-y="237.34"></path><path d="M 431.32 1169.86 C 431.32 1182.86 557.98 1193.49 714.93 1193.49 C 871.88 1193.49 998.54 1182.85 998.54 1169.86 C 998.54 1156.87 871.86 1146.21 714.93 1146.21 C 557.98 1146.12 431.32 1156.25 431.32 1169.84" fill="#ced6dd" fill-opacity="0.3" fill-rule="nonzero" group-id="1,5" node-id="145" stroke="none" target-height="47.369995" target-width="567.22" target-x="431.32" target-y="1146.12"></path><path d="M 985.63 585.33 L 676.79 544.16 L 676.79 707.34 L 985.63 739.76 L 985.63 585.34 Z" fill="url(#_未命名的渐变_35)" fill-rule="nonzero" group-id="1,6" node-id="150" stroke="none" target-height="195.60004" target-width="308.84003" target-x="676.79" target-y="544.16"></path><path d="M 429.66 597.62 L 676.70 544.24 L 676.70 729.56 L 429.66 782.94 L 429.66 597.62 Z" fill="url(#_未命名的渐变_35-2)" fill-rule="nonzero" group-id="1,6" node-id="152" stroke="none" target-height="238.70001" target-width="247.04001" target-x="429.66" target-y="544.24"></path><path d="M 717.96 659.43 L 985.63 585.42 L 985.63 882.19 L 717.96 956.20 L 717.96 659.43 Z" fill="url(#_未命名的渐变_14)" fill-rule="nonzero" group-id="1,6" node-id="154" stroke="none" target-height="370.78003" target-width="267.66998" target-x="717.96" target-y="585.42"></path><path d="M 429.66 597.62 L 717.88 659.42 L 717.88 954.34 L 429.66 884.20 L 429.66 597.62 Z" fill="url(#_未命名的渐变_14-2)" fill-rule="nonzero" group-id="1,6" node-id="156" stroke="none" target-height="356.72003" target-width="288.22" target-x="429.66" target-y="597.62"></path><path d="M 717.96 658.84 L 429.66 597.63 L 367.86 721.15 L 666.43 791.29 L 717.96 658.84 L 717.96 658.84 Z" fill="url(#_未命名的渐变_42)" fill-rule="nonzero" group-id="1,6" node-id="158" stroke="none" target-height="193.65997" target-width="350.10004" target-x="367.86" target-y="597.63"></path><path d="M 717.96 659.43 L 985.63 585.42 L 1057.70 708.94 L 800.30 793.22 C 800.30 793.22 717.95 659.43 717.95 659.43 Z" fill="url(#_未命名的渐变_42-2)" fill-rule="nonzero" group-id="1,6" node-id="160" stroke="none" target-height="207.79999" target-width="339.74994" target-x="717.95" target-y="585.42"></path></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg t="1698313785376" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="25779" width="200" height="200"><path d="M535.94 71.69h57.58v91.4c108.56 0.61 217.22-1.12 325.68 0.51 23.36-2.23 41.64 15.95 39.3 39.3 1.73 189.71-0.41 379.52 1 569.33-1 20.51 2 43.26-9.75 61.44-14.83 10.76-34.12 9.34-51.48 10.16-101.56-0.51-203.11-0.31-304.77-0.31v101.55h-63.15C375.59 916.83 220.5 891 65.63 863.82q-0.15-355.4 0-710.69C222.34 126 379 98.39 535.94 71.69z" fill="#868695" p-id="25780"></path><path d="M138.52 547.51V444.39h-34.1v-21h91.31v21h-34v103.12zM199 547.51l39.27-64.77-35.58-59.35h27.12l23 39.88 22.57-39.88h26.89l-35.74 60.28 39.27 63.84h-28l-25.4-42.92-25.55 42.92zM343.63 547.51V444.39h-34.1v-21h91.31v21h-34v103.12zM590.14 193.55v302.14h126.94v12.69H590.14v88.86h265.74v38.08H590.14v48.24h265.74v38.08H590.14V813h335.14V193.55z m198.11 250c-4.53 6.7-10.62 17.86-12.12 31.13a8.11 8.11 0 0 1-5.17 6.88l-43.83 15.86-4.93-2.57 20.22-27.09a15.45 15.45 0 0 0 5 0.79c7.84-0.08 14.14-5.95 14.07-13.09s-6.49-12.89-14.33-12.81-14.14 5.94-14.06 13.09a11.89 11.89 0 0 0 1 4.63 8.05 8.05 0 0 1-0.55 8.14l-17.15 23-4.09-3.82-0.13-42.48a8.25 8.25 0 0 1 4.66-7.51c6.93-3.32 20.19-10.74 30.28-22.81a8.22 8.22 0 0 1 10.81-1.46l28 18.43a8.35 8.35 0 0 1 2.32 11.72z m19.94-14.67a8.35 8.35 0 0 1-11 2l-42.74-26.63a8.35 8.35 0 0 1-2.52-11.73l0.32-0.47c2.53-3.77 4.47-1.64 8.3 0.8L802.93 420c4.13 2.61 8.25 5 5.25 8.91z m36.18-53.69l-24.11 35.7a13 13 0 0 1-18 3.48l-28.55-19.27a13 13 0 0 1-3.48-18l24.11-35.69a12.94 12.94 0 0 1 18-3.48l28.56 19.29a13 13 0 0 1 3.46 18z" fill="#FFFFFF" p-id="25781"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--vxe-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;--vxe-font-size: 14px;--vxe-font-size-medium: 14px;--vxe-font-size-small: 13px;--vxe-font-size-mini: 12px;--vxe-border-radius: 4px;--vxe-icon-font-family: Verdana, Arial, Tahoma;--vxe-icon-background-color: #fff;--vxe-font-color: #606266;--vxe-primary-color: #409eff;--vxe-success-color: #67c23a;--vxe-info-color: #909399;--vxe-warning-color: #e6a23c;--vxe-danger-color: #f56c6c;--vxe-font-lighten-color: #797b80;--vxe-primary-lighten-color: #73b8ff;--vxe-success-lighten-color: #85cf60;--vxe-info-lighten-color: #abadb1;--vxe-warning-lighten-color: #ecb869;--vxe-danger-lighten-color: #f89c9c;--vxe-font-darken-color: #47494c;--vxe-primary-darken-color: #0d84ff;--vxe-success-darken-color: #529b2e;--vxe-info-darken-color: #767980;--vxe-warning-darken-color: #d48a1b;--vxe-danger-darken-color: #f23c3c;--vxe-font-disabled-color: #BFBFBF;--vxe-primary-disabled-color: #a6d2ff;--vxe-success-disabled-color: #a3db87;--vxe-info-disabled-color: #c5c7ca;--vxe-warning-disabled-color: #f2cd96;--vxe-danger-disabled-color: #fbcccc;--vxe-input-border-color: #dcdfe6;--vxe-input-disabled-color: #dcdfe6;--vxe-input-disabled-background-color: #f3f3f3;--vxe-input-placeholder-color: #C0C4CC;--vxe-table-popup-border-color: #DADCE0;--vxe-table-header-font-color: #606266;--vxe-table-footer-font-color: #606266;--vxe-table-border-radius: 4px;--vxe-table-border-width: 1px;--vxe-table-border-color: #e8eaec;--vxe-table-resizable-line-color: #D9DDDF;--vxe-table-resizable-drag-line-color: #409eff;--vxe-table-header-background-color: #f8f8f9;--vxe-table-body-background-color: #ffffff;--vxe-table-footer-background-color: #ffffff;--vxe-table-tree-node-line-color: #909399;--vxe-table-tree-node-line-style: dotted;--vxe-table-header-font-weight: 700;--vxe-table-row-height-default: 48px;--vxe-table-row-height-medium: 44px;--vxe-table-row-height-small: 40px;--vxe-table-row-height-mini: 36px;--vxe-table-row-line-height: 22px;--vxe-table-row-hover-background-color: #f5f7fa;--vxe-table-row-striped-background-color: #fafafa;--vxe-table-row-hover-striped-background-color: #f5f7fa;--vxe-table-row-radio-checked-background-color: #fff3e0;--vxe-table-row-hover-radio-checked-background-color: #ffebbc;--vxe-table-row-checkbox-checked-background-color: #fff3e0;--vxe-table-row-hover-checkbox-checked-background-color: #ffebbc;--vxe-table-row-current-background-color: #e6f7ff;--vxe-table-row-hover-current-background-color: #d7effb;--vxe-table-column-padding-default: 13px 0;--vxe-table-column-padding-medium: 11px 0;--vxe-table-column-padding-small: 9px 0;--vxe-table-column-padding-mini: 7px 0;--vxe-table-column-hover-background-color: #d7effb;--vxe-table-column-current-background-color: #e6f7ff;--vxe-table-column-icon-border-color: #c0c4cc;--vxe-table-column-icon-border-hover-color: #515A6E;--vxe-table-cell-placeholder-color: #C0C4CC;--vxe-table-cell-padding-left: 10px;--vxe-table-cell-padding-right: 10px;--vxe-table-cell-input-height-default: 42px;--vxe-table-cell-input-height-medium: 38px;--vxe-table-cell-input-height-small: 34px;--vxe-table-cell-input-height-mini: 30px;--vxe-table-cell-dirty-width: 5px;--vxe-table-cell-dirty-update-color: #f56c6c;--vxe-table-cell-dirty-insert-color: #19A15F;--vxe-table-cell-area-border-color: #409eff;--vxe-table-cell-area-border-width: 1px;--vxe-table-cell-main-area-extension-border-color: #fff;--vxe-table-cell-main-area-extension-background-color: #409eff;--vxe-table-cell-extend-area-border-width: 2px;--vxe-table-cell-copy-area-border-width: 3px;--vxe-table-cell-active-area-border-width: 2px;--vxe-table-cell-copy-area-border-color: #409eff;--vxe-table-cell-extend-area-border-color: #409eff;--vxe-table-cell-active-area-border-color: #409eff;--vxe-table-cell-area-background-color: rgba(64, 158, 255, .2);--vxe-table-checkbox-range-border-width: 1px;--vxe-table-checkbox-range-border-color: #006af1;--vxe-table-checkbox-range-background-color: rgba(50, 128, 252, .2);--vxe-table-fixed-left-scrolling-box-shadow: 8px 0px 10px -5px rgba(0, 0, 0, .12);--vxe-table-fixed-right-scrolling-box-shadow: -8px 0px 10px -5px rgba(0, 0, 0, .12);--vxe-table-filter-panel-background-color: #fff;--vxe-table-menu-item-width: 178px;--vxe-table-menu-background-color: #fff;--vxe-loading-color: #409eff;--vxe-loading-background-color: rgba(255, 255, 255, .5);--vxe-loading-z-index: 999;--vxe-table-validate-error-color: #f56c6c;--vxe-table-validate-error-background-color: #ffffff;--vxe-grid-maximize-background-color: #fff;--vxe-toolbar-background-color: #fff;--vxe-toolbar-custom-active-background-color: #D9DADB;--vxe-toolbar-panel-background-color: #fff;--vxe-tooltip-dark-color: #fff;--vxe-tooltip-dark-background-color: #303133;--vxe-tooltip-light-background-color: #fff;--vxe-pager-background-color: #fff;--vxe-pager-perfect-background-color: #fff;--vxe-pager-perfect-button-background-color: #f4f4f5;--vxe-modal-header-background-color: #F8F8F8;--vxe-modal-body-background-color: #fff;--vxe-modal-border-color: #ebeef5;--vxe-checkbox-font-size-default: 15px;--vxe-checkbox-font-size-medium: 14px;--vxe-checkbox-font-size-small: 13px;--vxe-checkbox-font-size-mini: 12px;--vxe-checkbox-checked-width: .32em;--vxe-checkbox-checked-height: .64em;--vxe-checkbox-indeterminate-width: .6em;--vxe-checkbox-indeterminate-height: 2px;--vxe-checkbox-border-width: 2px;--vxe-checkbox-border-radius: 2px;--vxe-checkbox-icon-background-color: #fff;--vxe-checkbox-checked-icon-border-color: #fff;--vxe-checkbox-indeterminate-icon-background-color: #fff;--vxe-radio-font-size-default: 15px;--vxe-radio-font-size-medium: 14px;--vxe-radio-font-size-small: 13px;--vxe-radio-font-size-mini: 12px;--vxe-radio-border-width: 2px;--vxe-radio-icon-background-color: #fff;--vxe-radio-checked-icon-background-color: #fff;--vxe-radio-indeterminate-icon-background-color: #fff;--vxe-radio-button-default-background-color: #fff;--vxe-button-max-width: 500px;--vxe-button-default-background-color: #fff;--vxe-button-dropdown-panel-background-color: #fff;--vxe-button-height-default: 34px;--vxe-button-height-medium: 32px;--vxe-button-height-small: 30px;--vxe-button-height-mini: 28px;--vxe-button-round-border-radius-default: 17px;--vxe-button-round-border-radius-medium: 16px;--vxe-button-round-border-radius-small: 15px;--vxe-button-round-border-radius-mini: 14px;--vxe-input-background-color: #fff;--vxe-input-panel-background-color: #fff;--vxe-input-number-disabled-color: #e4e7ed;--vxe-input-date-festival-color: #999999;--vxe-input-date-festival-important-color: #409eff;--vxe-input-date-notice-background-color: #FF0000;--vxe-input-date-picker-hover-background-color: #f2f6fc;--vxe-input-date-picker-selected-color: #fff;--vxe-input-date-time-confirm-button-color: #fff;--vxe-input-date-picker-festival-selected-color: #fff;--vxe-input-date-picker-notice-selected-background-color: #fff;--vxe-input-date-extra-color: #67c23a;--vxe-input-date-extra-important-color: #fd2222;--vxe-input-date-title-height-default: 30px;--vxe-input-date-title-height-medium: 29px;--vxe-input-date-title-height-small: 28px;--vxe-input-date-title-height-mini: 26px;--vxe-input-date-time-week-row-height-default: 38px;--vxe-input-date-time-week-row-height-medium: 36px;--vxe-input-date-time-week-row-height-small: 34px;--vxe-input-date-time-week-row-height-mini: 32px;--vxe-input-date-month-year-row-height-default: 48px;--vxe-input-date-month-year-row-height-medium: 46px;--vxe-input-date-month-year-row-height-small: 44px;--vxe-input-date-month-year-row-height-mini: 42px;--vxe-input-date-quarter-row-height-default: 60px;--vxe-input-date-quarter-row-height-medium: 58px;--vxe-input-date-quarter-row-height-small: 56px;--vxe-input-date-quarter-row-height-mini: 54px;--vxe-input-height-default: 34px;--vxe-input-height-medium: 32px;--vxe-input-height-small: 30px;--vxe-input-height-mini: 28px;--vxe-input-count-color: #999;--vxe-input-count-background-color: #fff;--vxe-input-count-error-color: #f56c6c;--vxe-textarea-line-height: 1.5715;--vxe-textarea-background-color: #fff;--vxe-form-item-min-height-default: 36px;--vxe-form-item-min-height-medium: 34px;--vxe-form-item-min-height-small: 32px;--vxe-form-item-min-height-mini: 30px;--vxe-form-background-color: #fff;--vxe-form-validate-error-color: #f56c6c;--vxe-form-validate-error-background-color: inherit;--vxe-select-option-height-default: 30px;--vxe-select-option-height-medium: 28px;--vxe-select-option-height-small: 26px;--vxe-select-option-height-mini: 24px;--vxe-select-option-hover-background-color: #f5f7fa;--vxe-select-panel-background-color: #fff;--vxe-select-empty-color: #C0C4CC;--vxe-optgroup-title-color: #909399;--vxe-switch-font-color: #fff;--vxe-switch-icon-background-color: #fff;--vxe-switch-open-background-color: #409eff;--vxe-switch-close-background-color: rgba(0, 0, 0, .35);--vxe-switch-disabled-background-color: rgba(0, 0, 0, .15);--vxe-pulldown-panel-background-color: #fff}
|
package/es/assets/locales/en.ts
CHANGED
|
@@ -81,6 +81,7 @@ export const EN = {
|
|
|
81
81
|
"SETTING_THEME": "Style Settings",
|
|
82
82
|
"PROJECT_SETTING": "Project Configuration",
|
|
83
83
|
"NAV_MODE": "Navigation bar mode",
|
|
84
|
+
"PRIMARY_COLOR": "Primary Color",
|
|
84
85
|
"PAGE_SHOW": "Interface Display",
|
|
85
86
|
"COPY": "Copy",
|
|
86
87
|
"DRAWER_TIPS": "The function mainly real-time preview layout effect, more complete configuration in the src/core/Settings/theme.ts. The layout preview function will be turned off in production.",
|
package/es/assets/locales/zh.ts
CHANGED
|
@@ -81,6 +81,7 @@ export const ZH = {
|
|
|
81
81
|
"SETTING_THEME": "风格设置",
|
|
82
82
|
"PROJECT_SETTING": "项目配置",
|
|
83
83
|
"NAV_MODE": "导航栏模式",
|
|
84
|
+
"PRIMARY_COLOR": "主题色",
|
|
84
85
|
"PAGE_SHOW": "界面显示",
|
|
85
86
|
"COPY": "拷贝",
|
|
86
87
|
"DRAWER_TIPS": "该功能主要实时预览各种布局效果,更多完整配置在 src/core/settings/theme.ts 中设置,在生产环境该布局预览功能将被关闭。",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const a = 1
|
|
@@ -1,94 +1,3 @@
|
|
|
1
|
-
declare const DtScrollContainer:
|
|
2
|
-
|
|
3
|
-
scrollTo: (to: number, duration?: number) => void;
|
|
4
|
-
getScrollWrap: () => any;
|
|
5
|
-
scrollBottom: () => void;
|
|
6
|
-
ScrollBar: import("vue").DefineComponent<{
|
|
7
|
-
wrapClass: {
|
|
8
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
9
|
-
default: string;
|
|
10
|
-
};
|
|
11
|
-
wrapStyle: ArrayConstructor;
|
|
12
|
-
viewClass: {
|
|
13
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
14
|
-
default: string;
|
|
15
|
-
};
|
|
16
|
-
viewStyle: {
|
|
17
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
18
|
-
default: string;
|
|
19
|
-
};
|
|
20
|
-
noresize: BooleanConstructor;
|
|
21
|
-
tag: {
|
|
22
|
-
type: StringConstructor;
|
|
23
|
-
default: string;
|
|
24
|
-
};
|
|
25
|
-
}, {
|
|
26
|
-
sizeWidth: import("vue").Ref<string>;
|
|
27
|
-
sizeHeight: import("vue").Ref<string>;
|
|
28
|
-
moveX: import("vue").Ref<number>;
|
|
29
|
-
moveY: import("vue").Ref<number>;
|
|
30
|
-
wrap: import("vue").Ref<any>;
|
|
31
|
-
resize: import("vue").Ref<any>;
|
|
32
|
-
props: any;
|
|
33
|
-
style: import("vue").ComputedRef<{}>;
|
|
34
|
-
handleScroll: () => void;
|
|
35
|
-
update: () => void;
|
|
36
|
-
readonly Bar: import("vue").DefineComponent<{
|
|
37
|
-
vertical: BooleanConstructor;
|
|
38
|
-
size: StringConstructor;
|
|
39
|
-
move: NumberConstructor;
|
|
40
|
-
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
41
|
-
[key: string]: any;
|
|
42
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
43
|
-
vertical: BooleanConstructor;
|
|
44
|
-
size: StringConstructor;
|
|
45
|
-
move: NumberConstructor;
|
|
46
|
-
}>>, {
|
|
47
|
-
vertical: boolean;
|
|
48
|
-
}>;
|
|
49
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
-
wrapClass: {
|
|
51
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
52
|
-
default: string;
|
|
53
|
-
};
|
|
54
|
-
wrapStyle: ArrayConstructor;
|
|
55
|
-
viewClass: {
|
|
56
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
57
|
-
default: string;
|
|
58
|
-
};
|
|
59
|
-
viewStyle: {
|
|
60
|
-
type: (StringConstructor | ArrayConstructor)[];
|
|
61
|
-
default: string;
|
|
62
|
-
};
|
|
63
|
-
noresize: BooleanConstructor;
|
|
64
|
-
tag: {
|
|
65
|
-
type: StringConstructor;
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
|
-
}>>, {
|
|
69
|
-
wrapClass: string | unknown[];
|
|
70
|
-
viewClass: string | unknown[];
|
|
71
|
-
viewStyle: string | unknown[];
|
|
72
|
-
noresize: boolean;
|
|
73
|
-
tag: string;
|
|
74
|
-
}>;
|
|
75
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
76
|
-
declare const DtSlotContainer: import('../../utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
|
|
77
|
-
template: {
|
|
78
|
-
type: FunctionConstructor;
|
|
79
|
-
};
|
|
80
|
-
data: {
|
|
81
|
-
type: ObjectConstructor;
|
|
82
|
-
};
|
|
83
|
-
}, {
|
|
84
|
-
props: any;
|
|
85
|
-
Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
86
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
87
|
-
template: {
|
|
88
|
-
type: FunctionConstructor;
|
|
89
|
-
};
|
|
90
|
-
data: {
|
|
91
|
-
type: ObjectConstructor;
|
|
92
|
-
};
|
|
93
|
-
}>>, {}>>;
|
|
1
|
+
declare const DtScrollContainer: any;
|
|
2
|
+
declare const DtSlotContainer: any;
|
|
94
3
|
export { DtScrollContainer, DtSlotContainer };
|
|
@@ -1,6 +1,48 @@
|
|
|
1
|
-
import { defineComponent, getCurrentInstance,
|
|
2
|
-
import { off, on } from "@dt-frames/core";
|
|
3
|
-
const
|
|
1
|
+
import { ref, unref, defineComponent, getCurrentInstance, inject, computed, onUnmounted, h, provide, onMounted, nextTick, onBeforeUnmount, openBlock, createElementBlock, createElementVNode, normalizeClass, normalizeStyle, createBlock, resolveDynamicComponent, withCtx, renderSlot, createVNode, mergeProps } from "vue";
|
|
2
|
+
import { isWindow, off, on, withInstall } from "@dt-frames/core";
|
|
3
|
+
const easeInOutQuad = (t, b, c, d) => {
|
|
4
|
+
t /= d / 2;
|
|
5
|
+
if (t < 1) {
|
|
6
|
+
return c / 2 * t * t + b;
|
|
7
|
+
}
|
|
8
|
+
t--;
|
|
9
|
+
return -c / 2 * (t * (t - 2) - 1) + b;
|
|
10
|
+
};
|
|
11
|
+
const move = (el, amount) => {
|
|
12
|
+
el.scrollTop = amount;
|
|
13
|
+
};
|
|
14
|
+
const position = (el) => {
|
|
15
|
+
return el.scrollTop;
|
|
16
|
+
};
|
|
17
|
+
function useScrollTo({ el, to, duration = 500, callback }) {
|
|
18
|
+
const isActiveRef = ref(false);
|
|
19
|
+
const start = position(el);
|
|
20
|
+
const change = to - start;
|
|
21
|
+
const increment = 20;
|
|
22
|
+
let currentTime = 0;
|
|
23
|
+
const animateScroll = function() {
|
|
24
|
+
if (!unref(isActiveRef))
|
|
25
|
+
return;
|
|
26
|
+
currentTime += increment;
|
|
27
|
+
const val = easeInOutQuad(currentTime, start, change, duration);
|
|
28
|
+
move(el, val);
|
|
29
|
+
if (currentTime < duration && unref(isActiveRef)) {
|
|
30
|
+
requestAnimationFrame(animateScroll);
|
|
31
|
+
} else {
|
|
32
|
+
if (callback && typeof callback === "function") {
|
|
33
|
+
callback();
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
const run = () => {
|
|
38
|
+
isActiveRef.value = true;
|
|
39
|
+
animateScroll();
|
|
40
|
+
};
|
|
41
|
+
const stop = () => {
|
|
42
|
+
isActiveRef.value = false;
|
|
43
|
+
};
|
|
44
|
+
return { start: run, stop };
|
|
45
|
+
}
|
|
4
46
|
const BAR_MAP = {
|
|
5
47
|
vertical: {
|
|
6
48
|
offset: "offsetHeight",
|
|
@@ -23,9 +65,9 @@ const BAR_MAP = {
|
|
|
23
65
|
direction: "left"
|
|
24
66
|
}
|
|
25
67
|
};
|
|
26
|
-
function renderThumbStyle({ move, size, bar }) {
|
|
68
|
+
function renderThumbStyle({ move: move2, size, bar }) {
|
|
27
69
|
const style = {};
|
|
28
|
-
const translate = `translate${bar.axis}(${
|
|
70
|
+
const translate = `translate${bar.axis}(${move2}%)`;
|
|
29
71
|
style[bar.size] = size;
|
|
30
72
|
style.transform = translate;
|
|
31
73
|
style.msTransform = translate;
|
|
@@ -43,7 +85,7 @@ function resizeHandler(entries) {
|
|
|
43
85
|
}
|
|
44
86
|
}
|
|
45
87
|
function addResizeListener(element, fn) {
|
|
46
|
-
if (
|
|
88
|
+
if (!isWindow())
|
|
47
89
|
return;
|
|
48
90
|
if (!element.__resizeListeners__) {
|
|
49
91
|
element.__resizeListeners__ = [];
|
|
@@ -138,7 +180,7 @@ const Bar = defineComponent({
|
|
|
138
180
|
);
|
|
139
181
|
}
|
|
140
182
|
});
|
|
141
|
-
const _hoisted_1 = { class: "scrollbar
|
|
183
|
+
const _hoisted_1 = { class: "scrollbar" };
|
|
142
184
|
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
143
185
|
__name: "scroll-bar",
|
|
144
186
|
props: {
|
|
@@ -213,7 +255,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
213
255
|
ref_key: "wrap",
|
|
214
256
|
ref: wrap,
|
|
215
257
|
class: normalizeClass([[__props.wrapClass, "scrollbar__wrap--hidden-default"], "h-full overflow-auto"]),
|
|
216
|
-
style: normalizeStyle(
|
|
258
|
+
style: normalizeStyle(style.value),
|
|
217
259
|
onScroll: handleScroll
|
|
218
260
|
}, [
|
|
219
261
|
(openBlock(), createBlock(resolveDynamicComponent(__props.tag), {
|
|
@@ -243,8 +285,49 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
243
285
|
});
|
|
244
286
|
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
245
287
|
__name: "scroll-container",
|
|
246
|
-
setup(__props) {
|
|
288
|
+
setup(__props, { expose: __expose }) {
|
|
247
289
|
const scrollbarRef = ref(null);
|
|
290
|
+
function scrollTo(to, duration = 500) {
|
|
291
|
+
const scrollbar = unref(scrollbarRef);
|
|
292
|
+
if (!scrollbar)
|
|
293
|
+
return;
|
|
294
|
+
nextTick(() => {
|
|
295
|
+
const wrap = unref(scrollbar.wrap);
|
|
296
|
+
if (!wrap)
|
|
297
|
+
return;
|
|
298
|
+
const { start } = useScrollTo({
|
|
299
|
+
el: wrap,
|
|
300
|
+
to,
|
|
301
|
+
duration
|
|
302
|
+
});
|
|
303
|
+
start();
|
|
304
|
+
});
|
|
305
|
+
}
|
|
306
|
+
function getScrollWrap() {
|
|
307
|
+
const scrollbar = unref(scrollbarRef);
|
|
308
|
+
return !scrollbar ? null : scrollbar.wrap;
|
|
309
|
+
}
|
|
310
|
+
function scrollBottom() {
|
|
311
|
+
const scrollbar = unref(scrollbarRef);
|
|
312
|
+
if (!scrollbar)
|
|
313
|
+
return;
|
|
314
|
+
nextTick(() => {
|
|
315
|
+
const wrap = unref(scrollbar.wrap);
|
|
316
|
+
if (!wrap)
|
|
317
|
+
return;
|
|
318
|
+
const scrollHeight = wrap.scrollHeight;
|
|
319
|
+
const { start } = useScrollTo({
|
|
320
|
+
el: wrap,
|
|
321
|
+
to: scrollHeight
|
|
322
|
+
});
|
|
323
|
+
start();
|
|
324
|
+
});
|
|
325
|
+
}
|
|
326
|
+
__expose({
|
|
327
|
+
scrollTo,
|
|
328
|
+
getScrollWrap,
|
|
329
|
+
scrollBottom
|
|
330
|
+
});
|
|
248
331
|
return (_ctx, _cache) => {
|
|
249
332
|
return openBlock(), createBlock(_sfc_main$2, mergeProps({
|
|
250
333
|
ref_key: "scrollbarRef",
|
|
@@ -276,12 +359,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
276
359
|
};
|
|
277
360
|
}
|
|
278
361
|
});
|
|
279
|
-
const withInstall = (comp) => {
|
|
280
|
-
comp.install = (app) => {
|
|
281
|
-
app.component(comp.name, comp);
|
|
282
|
-
};
|
|
283
|
-
return comp;
|
|
284
|
-
};
|
|
285
362
|
const DtScrollContainer = withInstall(_sfc_main$1);
|
|
286
363
|
const DtSlotContainer = withInstall(_sfc_main);
|
|
287
364
|
export {
|
|
@@ -2,7 +2,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2
2
|
vertical: BooleanConstructor;
|
|
3
3
|
size: StringConstructor;
|
|
4
4
|
move: NumberConstructor;
|
|
5
|
-
}, () =>
|
|
5
|
+
}, () => globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6
6
|
[key: string]: any;
|
|
7
7
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
8
|
vertical: BooleanConstructor;
|
|
@@ -10,5 +10,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10
10
|
move: NumberConstructor;
|
|
11
11
|
}>>, {
|
|
12
12
|
vertical: boolean;
|
|
13
|
-
}>;
|
|
13
|
+
}, {}>;
|
|
14
14
|
export default _default;
|
|
@@ -1,22 +1,18 @@
|
|
|
1
|
-
.scrollbar
|
|
1
|
+
.scrollbar{
|
|
2
|
+
@apply relative h-full overflow-hidden;
|
|
3
|
+
|
|
2
4
|
// 滚动条样式
|
|
3
|
-
&__wrap--hidden-default{
|
|
5
|
+
&__wrap--hidden-default {
|
|
4
6
|
scrollbar-width: none;
|
|
5
7
|
|
|
6
8
|
&::-webkit-scrollbar {
|
|
7
|
-
|
|
8
|
-
width: 0;
|
|
9
|
-
height: 0;
|
|
10
|
-
opacity: 0;
|
|
9
|
+
@apply hidden w-0 h-0 opacity-0;
|
|
11
10
|
}
|
|
12
11
|
}
|
|
13
12
|
|
|
14
13
|
&__thumb {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
width: 0;
|
|
18
|
-
height: 0;
|
|
19
|
-
cursor: pointer;
|
|
14
|
+
@apply relative block w-0 h-0 cursor-pointer;
|
|
15
|
+
|
|
20
16
|
background-color: rgba(144, 147, 153, 0.3);
|
|
21
17
|
border-radius: inherit;
|
|
22
18
|
transition: 0.3s background-color;
|
|
@@ -25,15 +21,12 @@
|
|
|
25
21
|
background-color: rgba(144, 147, 153, 0.5);
|
|
26
22
|
}
|
|
27
23
|
}
|
|
28
|
-
|
|
24
|
+
|
|
29
25
|
&__bar {
|
|
30
|
-
|
|
26
|
+
@apply absolute rounded-xl opacity-0;
|
|
31
27
|
right: 2px;
|
|
32
28
|
bottom: 2px;
|
|
33
29
|
z-index: 1;
|
|
34
|
-
border-radius: 4px;
|
|
35
|
-
opacity: 0;
|
|
36
|
-
-webkit-transition: opacity 80ms ease;
|
|
37
30
|
transition: opacity 80ms ease;
|
|
38
31
|
|
|
39
32
|
&.is-vertical {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BarMap, BarStyle } from "../types/
|
|
1
|
+
import { BarMap, BarStyle } from "../types/index";
|
|
2
2
|
export declare const BAR_MAP: BarMap;
|
|
3
3
|
export declare function renderThumbStyle({ move, size, bar }: BarStyle): any;
|
|
4
4
|
export declare function addResizeListener(element: any, fn: () => any): void;
|