@_tc/template-core 0.0.1-bate.2 → 0.0.1-bate.20
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/{app → cjs/app}/controller/base.d.ts +1 -2
- package/{app → cjs/app}/controller/base.js +0 -3
- package/{app → cjs/app}/controller/project.d.ts +1 -2
- package/cjs/app/controller/project.js +50 -0
- package/{app → cjs/app}/controller/view.d.ts +1 -2
- package/{app → cjs/app}/controller/view.js +1 -2
- package/cjs/app/data/signKey.d.ts +1 -0
- package/{app → cjs/app}/data/signKey.js +0 -1
- package/cjs/app/extend/db.d.ts +2 -0
- package/cjs/app/extend/db.js +12 -0
- package/cjs/app/extend/generateErrorMessage.d.ts +7 -0
- package/{app → cjs/app}/extend/generateErrorMessage.js +3 -1
- package/cjs/app/extend/logger.d.ts +11 -0
- package/{app → cjs/app}/extend/logger.js +0 -1
- package/cjs/app/extend/parsingParamsOnUrl.d.ts +2 -0
- package/{app → cjs/app}/extend/parsingParamsOnUrl.js +0 -1
- package/{app → cjs/app}/extend/render-view.d.ts +1 -2
- package/{app → cjs/app}/extend/render-view.js +8 -2
- package/{app → cjs/app}/middleware/api-params-verify.d.ts +1 -2
- package/{app → cjs/app}/middleware/api-params-verify.js +0 -1
- package/{app → cjs/app}/middleware/api-sign-verify.d.ts +1 -2
- package/{app → cjs/app}/middleware/api-sign-verify.js +0 -1
- package/{app → cjs/app}/middleware/error-handle.d.ts +1 -2
- package/{app → cjs/app}/middleware/error-handle.js +0 -1
- package/{app → cjs/app}/middleware/project-handler.d.ts +1 -2
- package/{app → cjs/app}/middleware/project-handler.js +0 -1
- package/cjs/app/middleware.d.ts +5 -0
- package/{app → cjs/app}/middleware.js +23 -2
- package/cjs/app/router/project.d.ts +4 -0
- package/{app → cjs/app}/router/project.js +0 -1
- package/cjs/app/router/view.d.ts +4 -0
- package/{app → cjs/app}/router/view.js +0 -1
- package/cjs/app/router-schema/project.d.ts +3 -0
- package/{app → cjs/app}/router-schema/project.js +0 -1
- package/cjs/app/service/bese.d.ts +10 -0
- package/{app → cjs/app}/service/bese.js +0 -1
- package/cjs/app/service/project.d.ts +27 -0
- package/cjs/app/service/project.js +42 -0
- package/cjs/app/type.d.ts +2 -0
- package/{app → cjs/app}/type.js +0 -1
- package/{app → cjs/app}/typings.d.ts +2 -2
- package/{packages/ui/react/types/index.js → cjs/app/typings.js} +0 -1
- package/cjs/app/view/entry.tpl +30 -0
- package/cjs/bundler/dev.d.ts +1 -0
- package/cjs/bundler/dev.js +19 -0
- package/cjs/bundler/index.d.ts +1 -0
- package/cjs/bundler/index.js +18 -0
- package/cjs/bundler/prod.d.ts +1 -0
- package/cjs/bundler/prod.js +19 -0
- package/cjs/bundler/utils.d.ts +9 -0
- package/cjs/bundler/utils.js +214 -0
- package/cjs/index.d.ts +28 -0
- package/{index.js → cjs/index.js} +0 -1
- package/cjs/packages/core/env.d.ts +15 -0
- package/{packages → cjs/packages}/core/env.js +0 -1
- package/cjs/packages/core/index.d.ts +6 -0
- package/{packages → cjs/packages}/core/index.js +24 -1
- package/cjs/packages/core/loader/config.d.ts +9 -0
- package/{packages → cjs/packages}/core/loader/config.js +14 -1
- package/cjs/packages/core/loader/controller.d.ts +17 -0
- package/{packages → cjs/packages}/core/loader/controller.js +23 -1
- package/cjs/packages/core/loader/extend.d.ts +8 -0
- package/{packages → cjs/packages}/core/loader/extend.js +8 -1
- package/cjs/packages/core/loader/middleware.d.ts +11 -0
- package/cjs/packages/core/loader/middleware.js +38 -0
- package/cjs/packages/core/loader/model.d.ts +36 -0
- package/{packages → cjs/packages}/core/loader/model.js +43 -1
- package/cjs/packages/core/loader/router-schema.d.ts +18 -0
- package/{packages → cjs/packages}/core/loader/router-schema.js +16 -1
- package/{packages → cjs/packages}/core/loader/router.d.ts +5 -1
- package/{packages → cjs/packages}/core/loader/router.js +20 -4
- package/cjs/packages/core/loader/service.d.ts +17 -0
- package/{packages → cjs/packages}/core/loader/service.js +14 -1
- package/cjs/packages/core/paths.d.ts +11 -0
- package/{packages → cjs/packages}/core/paths.js +0 -1
- package/{packages → cjs/packages}/core/types.d.ts +1 -1
- package/{packages → cjs/packages}/core/types.js +0 -1
- package/{packages → cjs/packages}/utils/getAllFilesInFolder.d.ts +5 -1
- package/{packages → cjs/packages}/utils/getAllFilesInFolder.js +0 -1
- package/cjs/packages/utils/getAllFnReturnValue.d.ts +0 -0
- package/cjs/packages/utils/getAllFnReturnValue.js +6 -0
- package/cjs/packages/utils/index.d.ts +4 -0
- package/{packages → cjs/packages}/utils/index.js +0 -1
- package/{packages → cjs/packages}/utils/loadFile.d.ts +6 -1
- package/{packages → cjs/packages}/utils/loadFile.js +9 -1
- package/cjs/packages/utils/path.d.ts +24 -0
- package/{packages → cjs/packages}/utils/path.js +14 -1
- package/cjs/packages/utils/runFileFn.d.ts +5 -0
- package/{packages → cjs/packages}/utils/runFileFn.js +0 -1
- package/cjs/typings/type.d.ts +4 -0
- package/{typings → cjs/typings}/type.js +0 -1
- package/esm/app/controller/base.d.ts +14 -0
- package/esm/app/controller/base.js +21 -0
- package/esm/app/controller/project.d.ts +12 -0
- package/{app → esm/app}/controller/project.js +3 -9
- package/esm/app/controller/view.d.ts +9 -0
- package/esm/app/controller/view.js +12 -0
- package/esm/app/data/signKey.js +1 -0
- package/esm/app/extend/db.js +9 -0
- package/esm/app/extend/generateErrorMessage.js +12 -0
- package/esm/app/extend/logger.js +37 -0
- package/esm/app/extend/parsingParamsOnUrl.js +20 -0
- package/esm/app/extend/render-view.d.ts +5 -0
- package/esm/app/extend/render-view.js +23 -0
- package/esm/app/middleware/api-params-verify.d.ts +6 -0
- package/esm/app/middleware/api-params-verify.js +58 -0
- package/esm/app/middleware/api-sign-verify.d.ts +6 -0
- package/esm/app/middleware/api-sign-verify.js +23 -0
- package/esm/app/middleware/error-handle.d.ts +6 -0
- package/esm/app/middleware/error-handle.js +31 -0
- package/esm/app/middleware/project-handler.d.ts +5 -0
- package/esm/app/middleware/project-handler.js +19 -0
- package/esm/app/middleware.js +55 -0
- package/esm/app/router/project.js +6 -0
- package/esm/app/router/view.js +3 -0
- package/esm/app/router-schema/project.js +31 -0
- package/esm/app/service/bese.js +12 -0
- package/{app → esm/app}/service/project.js +6 -11
- package/esm/app/type.js +1 -0
- package/esm/app/typings.d.ts +51 -0
- package/esm/app/typings.js +1 -0
- package/esm/app/view/entry.tpl +30 -0
- package/esm/bundler/dev.d.ts +2 -0
- package/esm/bundler/dev.js +16 -0
- package/esm/bundler/index.d.ts +2 -0
- package/esm/bundler/index.js +14 -0
- package/esm/bundler/prod.d.ts +2 -0
- package/esm/bundler/prod.js +16 -0
- package/esm/bundler/utils.d.ts +10 -0
- package/esm/bundler/utils.js +171 -0
- package/esm/index.js +13 -0
- package/esm/packages/core/env.js +23 -0
- package/esm/packages/core/index.js +109 -0
- package/esm/packages/core/loader/config.d.ts +10 -0
- package/esm/packages/core/loader/config.js +43 -0
- package/esm/packages/core/loader/controller.d.ts +18 -0
- package/esm/packages/core/loader/controller.js +38 -0
- package/esm/packages/core/loader/extend.d.ts +9 -0
- package/esm/packages/core/loader/extend.js +39 -0
- package/esm/packages/core/loader/middleware.d.ts +12 -0
- package/esm/packages/core/loader/middleware.js +36 -0
- package/esm/packages/core/loader/model.d.ts +37 -0
- package/esm/packages/core/loader/model.js +127 -0
- package/esm/packages/core/loader/router-schema.d.ts +19 -0
- package/esm/packages/core/loader/router-schema.js +33 -0
- package/esm/packages/core/loader/router.d.ts +9 -0
- package/esm/packages/core/loader/router.js +57 -0
- package/esm/packages/core/loader/service.d.ts +18 -0
- package/esm/packages/core/loader/service.js +28 -0
- package/esm/packages/core/paths.js +6 -0
- package/esm/packages/core/types.d.ts +75 -0
- package/esm/packages/core/types.js +1 -0
- package/esm/packages/utils/getAllFilesInFolder.d.ts +10 -0
- package/esm/packages/utils/getAllFilesInFolder.js +8 -0
- package/esm/packages/utils/getAllFnReturnValue.js +6 -0
- package/esm/packages/utils/index.js +4 -0
- package/esm/packages/utils/loadFile.d.ts +21 -0
- package/esm/packages/utils/loadFile.js +63 -0
- package/esm/packages/utils/path.d.ts +25 -0
- package/esm/packages/utils/path.js +27 -0
- package/esm/packages/utils/runFileFn.js +1 -0
- package/esm/typings/type.d.ts +5 -0
- package/esm/typings/type.js +1 -0
- package/fe/frontend/main.js +6 -0
- package/fe/frontend/testPage/index.d.ts +3 -0
- package/fe/frontend/testPage/index.js +6 -0
- package/fe/frontend/testPage/testPage.entry.d.ts +2 -0
- package/fe/frontend/testPage/testPage.entry.js +4 -0
- package/fe/packages/ui/react/assets/table/no-result.svg +5 -0
- package/{packages → fe/packages}/ui/react/components/Button/Button.d.ts +24 -0
- package/fe/packages/ui/react/components/Button/Button.js +42 -0
- package/{packages → fe/packages}/ui/react/components/Button/SumbitButton.d.ts +4 -0
- package/fe/packages/ui/react/components/Button/SumbitButton.js +32 -0
- package/fe/packages/ui/react/components/Button/index.js +2 -0
- package/{packages → fe/packages}/ui/react/components/Checkbox/Checkbox.js +9 -13
- package/fe/packages/ui/react/components/Checkbox/index.js +1 -0
- package/{packages → fe/packages}/ui/react/components/ConfirmDialog.d.ts +8 -0
- package/fe/packages/ui/react/components/ConfirmDialog.js +9 -0
- package/fe/packages/ui/react/components/DataTable/ActionBtn.js +13 -0
- package/{packages → fe/packages}/ui/react/components/DataTable/data-table.d.ts +19 -0
- package/{packages → fe/packages}/ui/react/components/DataTable/data-table.js +23 -27
- package/{packages → fe/packages}/ui/react/components/Date/Calendar.d.ts +13 -0
- package/fe/packages/ui/react/components/Date/Calendar.js +215 -0
- package/{packages → fe/packages}/ui/react/components/Date/Date.d.ts +10 -0
- package/fe/packages/ui/react/components/Date/Date.js +178 -0
- package/fe/packages/ui/react/components/Date/DateTestPage.js +29 -0
- package/fe/packages/ui/react/components/Date/LocaleContext.d.ts +6 -0
- package/fe/packages/ui/react/components/Date/LocaleContext.js +8 -0
- package/{packages → fe/packages}/ui/react/components/Date/LocaleProvider.d.ts +11 -0
- package/fe/packages/ui/react/components/Date/LocaleProvider.js +24 -0
- package/fe/packages/ui/react/components/Date/TimePicker.js +76 -0
- package/fe/packages/ui/react/components/Date/data.js +4 -0
- package/{packages → fe/packages}/ui/react/components/Date/dateLocaleStore.d.ts +6 -0
- package/fe/packages/ui/react/components/Date/dateLocaleStore.js +14 -0
- package/fe/packages/ui/react/components/Date/index.js +5 -0
- package/{packages → fe/packages}/ui/react/components/Date/locales.d.ts +19 -0
- package/{packages → fe/packages}/ui/react/components/Date/locales.js +16 -7
- package/fe/packages/ui/react/components/Dropdown.js +54 -0
- package/{packages → fe/packages}/ui/react/components/Form/Form.d.ts +6 -0
- package/fe/packages/ui/react/components/Form/Form.js +8 -0
- package/{packages → fe/packages}/ui/react/components/Form/FormItem.d.ts +21 -0
- package/fe/packages/ui/react/components/Form/FormItem.js +43 -0
- package/fe/packages/ui/react/components/Form/SchemeForm/data.js +8 -0
- package/{packages → fe/packages}/ui/react/components/Form/SchemeForm/index.d.ts +93 -0
- package/fe/packages/ui/react/components/Form/SchemeForm/index.js +69 -0
- package/fe/packages/ui/react/components/Form/index.js +4 -0
- package/fe/packages/ui/react/components/Form/useForm.js +1 -0
- package/{packages → fe/packages}/ui/react/components/ImagePreview/ImagePreview.js +46 -42
- package/{packages → fe/packages}/ui/react/components/ImagePreview/PreviewImage.d.ts +3 -0
- package/fe/packages/ui/react/components/ImagePreview/PreviewImage.js +25 -0
- package/fe/packages/ui/react/components/ImagePreview/index.js +2 -0
- package/{packages → fe/packages}/ui/react/components/Input/Input.d.ts +20 -0
- package/fe/packages/ui/react/components/Input/Input.js +60 -0
- package/fe/packages/ui/react/components/Input/index.js +1 -0
- package/{packages → fe/packages}/ui/react/components/Label/Label.d.ts +29 -0
- package/fe/packages/ui/react/components/Label/Label.js +35 -0
- package/fe/packages/ui/react/components/Label/index.js +2 -0
- package/{packages → fe/packages}/ui/react/components/Message/Message.d.ts +7 -0
- package/fe/packages/ui/react/components/Message/Message.js +55 -0
- package/{packages → fe/packages}/ui/react/components/Message/MessageManager.js +26 -22
- package/fe/packages/ui/react/components/Message/data.js +1 -0
- package/fe/packages/ui/react/components/Message/index.js +1 -0
- package/{packages → fe/packages}/ui/react/components/Modal/Modal.d.ts +6 -0
- package/fe/packages/ui/react/components/Modal/Modal.js +51 -0
- package/{packages → fe/packages}/ui/react/components/Modal/ModalManager.d.ts +12 -0
- package/{packages → fe/packages}/ui/react/components/Modal/ModalManager.js +22 -24
- package/fe/packages/ui/react/components/Modal/index.js +2 -0
- package/{packages → fe/packages}/ui/react/components/Pagination.d.ts +7 -0
- package/{packages → fe/packages}/ui/react/components/Pagination.js +19 -16
- package/{packages → fe/packages}/ui/react/components/Search/Search.d.ts +3 -0
- package/fe/packages/ui/react/components/Search/Search.js +12 -0
- package/fe/packages/ui/react/components/Search/index.js +1 -0
- package/{packages → fe/packages}/ui/react/components/Select/Select.d.ts +2 -0
- package/fe/packages/ui/react/components/Select/Select.js +180 -0
- package/fe/packages/ui/react/components/Select/index.js +1 -0
- package/{packages → fe/packages}/ui/react/components/Skeleton/Skeleton.d.ts +15 -0
- package/fe/packages/ui/react/components/Skeleton/Skeleton.js +31 -0
- package/fe/packages/ui/react/components/Skeleton/index.js +1 -0
- package/fe/packages/ui/react/components/Switch/Switch.js +20 -0
- package/fe/packages/ui/react/components/Switch/index.js +1 -0
- package/{packages → fe/packages}/ui/react/components/TableSearch/TableSearch.d.ts +37 -0
- package/{packages → fe/packages}/ui/react/components/TableSearch/TableSearch.js +22 -24
- package/fe/packages/ui/react/components/TableSearch/index.js +1 -0
- package/fe/packages/ui/react/components/TableSearch/lang.js +23 -0
- package/fe/packages/ui/react/components/TableSearch/tableSearchLocaleStore.js +11 -0
- package/{packages → fe/packages}/ui/react/components/Textarea.d.ts +40 -0
- package/fe/packages/ui/react/components/Textarea.js +35 -0
- package/{packages → fe/packages}/ui/react/components/Tooltip.d.ts +16 -0
- package/{packages → fe/packages}/ui/react/components/Tooltip.js +26 -17
- package/{packages → fe/packages}/ui/react/components/TreeSelect.d.ts +6 -0
- package/{packages → fe/packages}/ui/react/components/TreeSelect.js +27 -25
- package/fe/packages/ui/react/components/Upload/ImageUpload.js +63 -0
- package/{packages → fe/packages}/ui/react/components/Upload/Upload.d.ts +27 -0
- package/fe/packages/ui/react/components/Upload/Upload.js +5 -0
- package/fe/packages/ui/react/components/Upload/index.js +2 -0
- package/fe/packages/ui/react/components/breadcrumb.js +78 -0
- package/{packages → fe/packages}/ui/react/components/hooks/useInputController.d.ts +3 -0
- package/{packages → fe/packages}/ui/react/components/hooks/useInputController.js +15 -13
- package/fe/packages/ui/react/components/index.js +23 -0
- package/fe/packages/ui/react/components/table.js +20 -0
- package/fe/packages/ui/react/components/testPage/index.js +118 -0
- package/fe/packages/ui/react/hooks/useBreadcrumb.js +2 -0
- package/fe/packages/ui/react/hooks/useInit.js +9 -0
- package/fe/packages/ui/react/hooks/useLanguage.js +4 -0
- package/{packages → fe/packages}/ui/react/hooks/usePagination.js +7 -14
- package/fe/packages/ui/react/index.js +4 -0
- package/fe/packages/ui/react/lib/export.d.ts +66 -0
- package/{packages → fe/packages}/ui/react/lib/export.js +52 -50
- package/fe/packages/ui/react/lib/utils.d.ts +34 -0
- package/{packages → fe/packages}/ui/react/lib/utils.js +33 -16
- package/fe/packages/ui/react/locales/index.js +6 -0
- package/{packages → fe/packages}/ui/react/stores/breadcrumb.js +6 -8
- package/{packages → fe/packages}/ui/react/stores/language.js +14 -18
- package/fe/packages/ui/react/types/index.js +1 -0
- package/package.json +40 -5
- package/app/controller/base.d.ts.map +0 -1
- package/app/controller/base.js.map +0 -1
- package/app/controller/project.d.ts.map +0 -1
- package/app/controller/project.js.map +0 -1
- package/app/controller/view.d.ts.map +0 -1
- package/app/controller/view.js.map +0 -1
- package/app/data/signKey.d.ts.map +0 -1
- package/app/data/signKey.js.map +0 -1
- package/app/extend/db.d.ts.map +0 -1
- package/app/extend/db.js +0 -8
- package/app/extend/db.js.map +0 -1
- package/app/extend/generateErrorMessage.d.ts.map +0 -1
- package/app/extend/generateErrorMessage.js.map +0 -1
- package/app/extend/logger.d.ts.map +0 -1
- package/app/extend/logger.js.map +0 -1
- package/app/extend/parsingParamsOnUrl.d.ts.map +0 -1
- package/app/extend/parsingParamsOnUrl.js.map +0 -1
- package/app/extend/render-view.d.ts.map +0 -1
- package/app/extend/render-view.js.map +0 -1
- package/app/middleware/api-params-verify.d.ts.map +0 -1
- package/app/middleware/api-params-verify.js.map +0 -1
- package/app/middleware/api-sign-verify.d.ts.map +0 -1
- package/app/middleware/api-sign-verify.js.map +0 -1
- package/app/middleware/error-handle.d.ts.map +0 -1
- package/app/middleware/error-handle.js.map +0 -1
- package/app/middleware/project-handler.d.ts.map +0 -1
- package/app/middleware/project-handler.js.map +0 -1
- package/app/middleware.d.ts.map +0 -1
- package/app/middleware.js.map +0 -1
- package/app/pages/main.d.ts.map +0 -1
- package/app/pages/main.js +0 -10
- package/app/pages/main.js.map +0 -1
- package/app/router/project.d.ts.map +0 -1
- package/app/router/project.js.map +0 -1
- package/app/router/view.d.ts.map +0 -1
- package/app/router/view.js.map +0 -1
- package/app/router-schema/project.d.ts.map +0 -1
- package/app/router-schema/project.js.map +0 -1
- package/app/service/bese.d.ts.map +0 -1
- package/app/service/bese.js.map +0 -1
- package/app/service/project.d.ts.map +0 -1
- package/app/service/project.js.map +0 -1
- package/app/type.d.ts.map +0 -1
- package/app/type.js.map +0 -1
- package/app/typings.d.ts.map +0 -1
- package/app/typings.js +0 -3
- package/app/typings.js.map +0 -1
- package/app/vite/config/base.js +0 -54
- package/app/vite/config/base.js.map +0 -1
- package/app/vite/config/data.js +0 -5
- package/app/vite/config/data.js.map +0 -1
- package/app/vite/config/dev.js +0 -13
- package/app/vite/config/dev.js.map +0 -1
- package/app/vite/config/prod.js +0 -32
- package/app/vite/config/prod.js.map +0 -1
- package/app/vite/dev.js +0 -23
- package/app/vite/dev.js.map +0 -1
- package/app/vite/index.js +0 -3
- package/app/vite/index.js.map +0 -1
- package/app/vite/package.json +0 -11
- package/app/vite/prod.js +0 -76
- package/app/vite/prod.js.map +0 -1
- package/index.d.ts.map +0 -1
- package/index.js.map +0 -1
- package/model/index.d.ts +0 -2
- package/model/index.d.ts.map +0 -1
- package/model/index.js +0 -7
- package/model/index.js.map +0 -1
- package/model/test.d.ts +0 -6
- package/model/test.d.ts.map +0 -1
- package/model/test.js +0 -6
- package/model/test.js.map +0 -1
- package/model/test2.d.ts +0 -6
- package/model/test2.d.ts.map +0 -1
- package/model/test2.js +0 -6
- package/model/test2.js.map +0 -1
- package/packages/core/env.d.ts.map +0 -1
- package/packages/core/env.js.map +0 -1
- package/packages/core/index.d.ts.map +0 -1
- package/packages/core/index.js.map +0 -1
- package/packages/core/loader/config.d.ts +0 -4
- package/packages/core/loader/config.d.ts.map +0 -1
- package/packages/core/loader/config.js.map +0 -1
- package/packages/core/loader/controller.d.ts +0 -4
- package/packages/core/loader/controller.d.ts.map +0 -1
- package/packages/core/loader/controller.js.map +0 -1
- package/packages/core/loader/extend.d.ts +0 -4
- package/packages/core/loader/extend.d.ts.map +0 -1
- package/packages/core/loader/extend.js.map +0 -1
- package/packages/core/loader/middleware.d.ts +0 -4
- package/packages/core/loader/middleware.d.ts.map +0 -1
- package/packages/core/loader/middleware.js +0 -16
- package/packages/core/loader/middleware.js.map +0 -1
- package/packages/core/loader/model.d.ts +0 -15
- package/packages/core/loader/model.d.ts.map +0 -1
- package/packages/core/loader/model.js.map +0 -1
- package/packages/core/loader/router-schema.d.ts +0 -4
- package/packages/core/loader/router-schema.d.ts.map +0 -1
- package/packages/core/loader/router-schema.js.map +0 -1
- package/packages/core/loader/router.d.ts.map +0 -1
- package/packages/core/loader/router.js.map +0 -1
- package/packages/core/loader/service.d.ts +0 -4
- package/packages/core/loader/service.d.ts.map +0 -1
- package/packages/core/loader/service.js.map +0 -1
- package/packages/core/paths.d.ts.map +0 -1
- package/packages/core/paths.js.map +0 -1
- package/packages/core/types.d.ts.map +0 -1
- package/packages/core/types.js.map +0 -1
- package/packages/ui/react/components/Button/Button.d.ts.map +0 -1
- package/packages/ui/react/components/Button/Button.js +0 -36
- package/packages/ui/react/components/Button/Button.js.map +0 -1
- package/packages/ui/react/components/Button/SumbitButton.d.ts.map +0 -1
- package/packages/ui/react/components/Button/SumbitButton.js +0 -32
- package/packages/ui/react/components/Button/SumbitButton.js.map +0 -1
- package/packages/ui/react/components/Button/index.d.ts.map +0 -1
- package/packages/ui/react/components/Button/index.js +0 -21
- package/packages/ui/react/components/Button/index.js.map +0 -1
- package/packages/ui/react/components/Checkbox/Checkbox.d.ts.map +0 -1
- package/packages/ui/react/components/Checkbox/Checkbox.js.map +0 -1
- package/packages/ui/react/components/Checkbox/index.d.ts.map +0 -1
- package/packages/ui/react/components/Checkbox/index.js +0 -18
- package/packages/ui/react/components/Checkbox/index.js.map +0 -1
- package/packages/ui/react/components/ConfirmDialog.d.ts.map +0 -1
- package/packages/ui/react/components/ConfirmDialog.js +0 -13
- package/packages/ui/react/components/ConfirmDialog.js.map +0 -1
- package/packages/ui/react/components/DataTable/ActionBtn.d.ts.map +0 -1
- package/packages/ui/react/components/DataTable/ActionBtn.js +0 -18
- package/packages/ui/react/components/DataTable/ActionBtn.js.map +0 -1
- package/packages/ui/react/components/DataTable/data-table.d.ts.map +0 -1
- package/packages/ui/react/components/DataTable/data-table.js.map +0 -1
- package/packages/ui/react/components/Date/Calendar.d.ts.map +0 -1
- package/packages/ui/react/components/Date/Calendar.js +0 -210
- package/packages/ui/react/components/Date/Calendar.js.map +0 -1
- package/packages/ui/react/components/Date/Date.d.ts.map +0 -1
- package/packages/ui/react/components/Date/Date.js +0 -161
- package/packages/ui/react/components/Date/Date.js.map +0 -1
- package/packages/ui/react/components/Date/DateTestPage.d.ts.map +0 -1
- package/packages/ui/react/components/Date/DateTestPage.js +0 -33
- package/packages/ui/react/components/Date/DateTestPage.js.map +0 -1
- package/packages/ui/react/components/Date/LocaleContext.d.ts +0 -2
- package/packages/ui/react/components/Date/LocaleContext.d.ts.map +0 -1
- package/packages/ui/react/components/Date/LocaleContext.js +0 -9
- package/packages/ui/react/components/Date/LocaleContext.js.map +0 -1
- package/packages/ui/react/components/Date/LocaleProvider.d.ts.map +0 -1
- package/packages/ui/react/components/Date/LocaleProvider.js +0 -17
- package/packages/ui/react/components/Date/LocaleProvider.js.map +0 -1
- package/packages/ui/react/components/Date/TimePicker.d.ts.map +0 -1
- package/packages/ui/react/components/Date/TimePicker.js +0 -79
- package/packages/ui/react/components/Date/TimePicker.js.map +0 -1
- package/packages/ui/react/components/Date/data.d.ts.map +0 -1
- package/packages/ui/react/components/Date/data.js +0 -8
- package/packages/ui/react/components/Date/data.js.map +0 -1
- package/packages/ui/react/components/Date/dateLocaleStore.d.ts.map +0 -1
- package/packages/ui/react/components/Date/dateLocaleStore.js +0 -18
- package/packages/ui/react/components/Date/dateLocaleStore.js.map +0 -1
- package/packages/ui/react/components/Date/index.d.ts.map +0 -1
- package/packages/ui/react/components/Date/index.js +0 -24
- package/packages/ui/react/components/Date/index.js.map +0 -1
- package/packages/ui/react/components/Date/locales.d.ts.map +0 -1
- package/packages/ui/react/components/Date/locales.js.map +0 -1
- package/packages/ui/react/components/Dropdown.d.ts.map +0 -1
- package/packages/ui/react/components/Dropdown.js +0 -56
- package/packages/ui/react/components/Dropdown.js.map +0 -1
- package/packages/ui/react/components/Form/Form.d.ts.map +0 -1
- package/packages/ui/react/components/Form/Form.js +0 -15
- package/packages/ui/react/components/Form/Form.js.map +0 -1
- package/packages/ui/react/components/Form/FormItem.d.ts.map +0 -1
- package/packages/ui/react/components/Form/FormItem.js +0 -76
- package/packages/ui/react/components/Form/FormItem.js.map +0 -1
- package/packages/ui/react/components/Form/SchemeForm/data.d.ts.map +0 -1
- package/packages/ui/react/components/Form/SchemeForm/data.js +0 -48
- package/packages/ui/react/components/Form/SchemeForm/data.js.map +0 -1
- package/packages/ui/react/components/Form/SchemeForm/index.d.ts.map +0 -1
- package/packages/ui/react/components/Form/SchemeForm/index.js +0 -70
- package/packages/ui/react/components/Form/SchemeForm/index.js.map +0 -1
- package/packages/ui/react/components/Form/index.d.ts.map +0 -1
- package/packages/ui/react/components/Form/index.js +0 -21
- package/packages/ui/react/components/Form/index.js.map +0 -1
- package/packages/ui/react/components/Form/useForm.d.ts.map +0 -1
- package/packages/ui/react/components/Form/useForm.js +0 -6
- package/packages/ui/react/components/Form/useForm.js.map +0 -1
- package/packages/ui/react/components/ImagePreview/ImagePreview.d.ts.map +0 -1
- package/packages/ui/react/components/ImagePreview/ImagePreview.js.map +0 -1
- package/packages/ui/react/components/ImagePreview/PreviewImage.d.ts.map +0 -1
- package/packages/ui/react/components/ImagePreview/PreviewImage.js +0 -29
- package/packages/ui/react/components/ImagePreview/PreviewImage.js.map +0 -1
- package/packages/ui/react/components/ImagePreview/index.d.ts.map +0 -1
- package/packages/ui/react/components/ImagePreview/index.js +0 -19
- package/packages/ui/react/components/ImagePreview/index.js.map +0 -1
- package/packages/ui/react/components/Input/Input.d.ts.map +0 -1
- package/packages/ui/react/components/Input/Input.js +0 -61
- package/packages/ui/react/components/Input/Input.js.map +0 -1
- package/packages/ui/react/components/Input/index.d.ts.map +0 -1
- package/packages/ui/react/components/Input/index.js +0 -18
- package/packages/ui/react/components/Input/index.js.map +0 -1
- package/packages/ui/react/components/Label/Label.d.ts.map +0 -1
- package/packages/ui/react/components/Label/Label.js +0 -37
- package/packages/ui/react/components/Label/Label.js.map +0 -1
- package/packages/ui/react/components/Label/index.d.ts.map +0 -1
- package/packages/ui/react/components/Label/index.js +0 -21
- package/packages/ui/react/components/Label/index.js.map +0 -1
- package/packages/ui/react/components/Message/Message.d.ts.map +0 -1
- package/packages/ui/react/components/Message/Message.js +0 -56
- package/packages/ui/react/components/Message/Message.js.map +0 -1
- package/packages/ui/react/components/Message/MessageManager.d.ts.map +0 -1
- package/packages/ui/react/components/Message/MessageManager.js.map +0 -1
- package/packages/ui/react/components/Message/data.d.ts.map +0 -1
- package/packages/ui/react/components/Message/data.js +0 -5
- package/packages/ui/react/components/Message/data.js.map +0 -1
- package/packages/ui/react/components/Message/index.d.ts.map +0 -1
- package/packages/ui/react/components/Message/index.js +0 -6
- package/packages/ui/react/components/Message/index.js.map +0 -1
- package/packages/ui/react/components/Modal/Modal.d.ts.map +0 -1
- package/packages/ui/react/components/Modal/Modal.js +0 -51
- package/packages/ui/react/components/Modal/Modal.js.map +0 -1
- package/packages/ui/react/components/Modal/ModalManager.d.ts.map +0 -1
- package/packages/ui/react/components/Modal/ModalManager.js.map +0 -1
- package/packages/ui/react/components/Modal/index.d.ts.map +0 -1
- package/packages/ui/react/components/Modal/index.js +0 -8
- package/packages/ui/react/components/Modal/index.js.map +0 -1
- package/packages/ui/react/components/Pagination.d.ts.map +0 -1
- package/packages/ui/react/components/Pagination.js.map +0 -1
- package/packages/ui/react/components/Search/Search.d.ts.map +0 -1
- package/packages/ui/react/components/Search/Search.js +0 -15
- package/packages/ui/react/components/Search/Search.js.map +0 -1
- package/packages/ui/react/components/Search/index.d.ts.map +0 -1
- package/packages/ui/react/components/Search/index.js +0 -9
- package/packages/ui/react/components/Search/index.js.map +0 -1
- package/packages/ui/react/components/Select/Select.d.ts.map +0 -1
- package/packages/ui/react/components/Select/Select.js +0 -167
- package/packages/ui/react/components/Select/Select.js.map +0 -1
- package/packages/ui/react/components/Select/index.d.ts.map +0 -1
- package/packages/ui/react/components/Select/index.js +0 -18
- package/packages/ui/react/components/Select/index.js.map +0 -1
- package/packages/ui/react/components/Skeleton/Skeleton.d.ts.map +0 -1
- package/packages/ui/react/components/Skeleton/Skeleton.js +0 -36
- package/packages/ui/react/components/Skeleton/Skeleton.js.map +0 -1
- package/packages/ui/react/components/Skeleton/index.d.ts.map +0 -1
- package/packages/ui/react/components/Skeleton/index.js +0 -6
- package/packages/ui/react/components/Skeleton/index.js.map +0 -1
- package/packages/ui/react/components/Switch/Switch.d.ts.map +0 -1
- package/packages/ui/react/components/Switch/Switch.js +0 -57
- package/packages/ui/react/components/Switch/Switch.js.map +0 -1
- package/packages/ui/react/components/Switch/index.d.ts.map +0 -1
- package/packages/ui/react/components/Switch/index.js +0 -18
- package/packages/ui/react/components/Switch/index.js.map +0 -1
- package/packages/ui/react/components/TableSearch/TableSearch.d.ts.map +0 -1
- package/packages/ui/react/components/TableSearch/TableSearch.js.map +0 -1
- package/packages/ui/react/components/TableSearch/index.d.ts.map +0 -1
- package/packages/ui/react/components/TableSearch/index.js +0 -9
- package/packages/ui/react/components/TableSearch/index.js.map +0 -1
- package/packages/ui/react/components/TableSearch/lang.d.ts.map +0 -1
- package/packages/ui/react/components/TableSearch/lang.js +0 -28
- package/packages/ui/react/components/TableSearch/lang.js.map +0 -1
- package/packages/ui/react/components/TableSearch/tableSearchLocaleStore.d.ts.map +0 -1
- package/packages/ui/react/components/TableSearch/tableSearchLocaleStore.js +0 -15
- package/packages/ui/react/components/TableSearch/tableSearchLocaleStore.js.map +0 -1
- package/packages/ui/react/components/Textarea.d.ts.map +0 -1
- package/packages/ui/react/components/Textarea.js +0 -38
- package/packages/ui/react/components/Textarea.js.map +0 -1
- package/packages/ui/react/components/Tooltip.d.ts.map +0 -1
- package/packages/ui/react/components/Tooltip.js.map +0 -1
- package/packages/ui/react/components/TreeSelect.d.ts.map +0 -1
- package/packages/ui/react/components/TreeSelect.js.map +0 -1
- package/packages/ui/react/components/Upload/ImageUpload.d.ts.map +0 -1
- package/packages/ui/react/components/Upload/ImageUpload.js +0 -67
- package/packages/ui/react/components/Upload/ImageUpload.js.map +0 -1
- package/packages/ui/react/components/Upload/Upload.d.ts.map +0 -1
- package/packages/ui/react/components/Upload/Upload.js +0 -9
- package/packages/ui/react/components/Upload/Upload.js.map +0 -1
- package/packages/ui/react/components/Upload/index.d.ts.map +0 -1
- package/packages/ui/react/components/Upload/index.js +0 -19
- package/packages/ui/react/components/Upload/index.js.map +0 -1
- package/packages/ui/react/components/breadcrumb.d.ts.map +0 -1
- package/packages/ui/react/components/breadcrumb.js +0 -80
- package/packages/ui/react/components/breadcrumb.js.map +0 -1
- package/packages/ui/react/components/hooks/useInputController.d.ts.map +0 -1
- package/packages/ui/react/components/hooks/useInputController.js.map +0 -1
- package/packages/ui/react/components/index.d.ts.map +0 -1
- package/packages/ui/react/components/index.js +0 -40
- package/packages/ui/react/components/index.js.map +0 -1
- package/packages/ui/react/components/table.d.ts.map +0 -1
- package/packages/ui/react/components/table.js +0 -64
- package/packages/ui/react/components/table.js.map +0 -1
- package/packages/ui/react/components/testPage/index.d.ts.map +0 -1
- package/packages/ui/react/components/testPage/index.js +0 -124
- package/packages/ui/react/components/testPage/index.js.map +0 -1
- package/packages/ui/react/hooks/useBreadcrumb.d.ts.map +0 -1
- package/packages/ui/react/hooks/useBreadcrumb.js +0 -6
- package/packages/ui/react/hooks/useBreadcrumb.js.map +0 -1
- package/packages/ui/react/hooks/useInit.d.ts.map +0 -1
- package/packages/ui/react/hooks/useInit.js +0 -12
- package/packages/ui/react/hooks/useInit.js.map +0 -1
- package/packages/ui/react/hooks/useLanguage.d.ts.map +0 -1
- package/packages/ui/react/hooks/useLanguage.js +0 -8
- package/packages/ui/react/hooks/useLanguage.js.map +0 -1
- package/packages/ui/react/hooks/usePagination.d.ts.map +0 -1
- package/packages/ui/react/hooks/usePagination.js.map +0 -1
- package/packages/ui/react/index.d.ts.map +0 -1
- package/packages/ui/react/index.js +0 -19
- package/packages/ui/react/index.js.map +0 -1
- package/packages/ui/react/lib/export.d.ts +0 -22
- package/packages/ui/react/lib/export.d.ts.map +0 -1
- package/packages/ui/react/lib/export.js.map +0 -1
- package/packages/ui/react/lib/utils.d.ts +0 -10
- package/packages/ui/react/lib/utils.d.ts.map +0 -1
- package/packages/ui/react/lib/utils.js.map +0 -1
- package/packages/ui/react/locales/index.d.ts.map +0 -1
- package/packages/ui/react/locales/index.js +0 -10
- package/packages/ui/react/locales/index.js.map +0 -1
- package/packages/ui/react/stores/breadcrumb.d.ts.map +0 -1
- package/packages/ui/react/stores/breadcrumb.js.map +0 -1
- package/packages/ui/react/stores/language.d.ts.map +0 -1
- package/packages/ui/react/stores/language.js.map +0 -1
- package/packages/ui/react/types/index.d.ts.map +0 -1
- package/packages/ui/react/types/index.js.map +0 -1
- package/packages/utils/getAllFilesInFolder.d.ts.map +0 -1
- package/packages/utils/getAllFilesInFolder.js.map +0 -1
- package/packages/utils/getAllFnReturnValue.d.ts.map +0 -1
- package/packages/utils/getAllFnReturnValue.js +0 -2
- package/packages/utils/getAllFnReturnValue.js.map +0 -1
- package/packages/utils/index.d.ts.map +0 -1
- package/packages/utils/index.js.map +0 -1
- package/packages/utils/loadFile.d.ts.map +0 -1
- package/packages/utils/loadFile.js.map +0 -1
- package/packages/utils/path.d.ts +0 -7
- package/packages/utils/path.d.ts.map +0 -1
- package/packages/utils/path.js.map +0 -1
- package/packages/utils/runFileFn.d.ts.map +0 -1
- package/packages/utils/runFileFn.js.map +0 -1
- package/typings/type.d.ts +0 -2
- package/typings/type.d.ts.map +0 -1
- package/typings/type.js.map +0 -1
- /package/{app → esm/app}/data/signKey.d.ts +0 -0
- /package/{app → esm/app}/extend/db.d.ts +0 -0
- /package/{app → esm/app}/extend/generateErrorMessage.d.ts +0 -0
- /package/{app → esm/app}/extend/logger.d.ts +0 -0
- /package/{app → esm/app}/extend/parsingParamsOnUrl.d.ts +0 -0
- /package/{app → esm/app}/middleware.d.ts +0 -0
- /package/{app → esm/app}/router/project.d.ts +0 -0
- /package/{app → esm/app}/router/view.d.ts +0 -0
- /package/{app → esm/app}/router-schema/project.d.ts +0 -0
- /package/{app → esm/app}/service/bese.d.ts +0 -0
- /package/{app → esm/app}/service/project.d.ts +0 -0
- /package/{app → esm/app}/type.d.ts +0 -0
- /package/{index.d.ts → esm/index.d.ts} +0 -0
- /package/{packages → esm/packages}/core/env.d.ts +0 -0
- /package/{packages → esm/packages}/core/index.d.ts +0 -0
- /package/{packages → esm/packages}/core/paths.d.ts +0 -0
- /package/{packages → esm/packages}/utils/getAllFnReturnValue.d.ts +0 -0
- /package/{packages → esm/packages}/utils/index.d.ts +0 -0
- /package/{packages → esm/packages}/utils/runFileFn.d.ts +0 -0
- /package/{app/pages → fe/frontend}/main.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Button/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Checkbox/Checkbox.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Checkbox/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/DataTable/ActionBtn.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Date/DateTestPage.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Date/TimePicker.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Date/data.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Date/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Dropdown.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Form/SchemeForm/data.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Form/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Form/useForm.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/ImagePreview/ImagePreview.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/ImagePreview/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Input/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Label/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Message/MessageManager.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Message/data.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Message/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Modal/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Search/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Select/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Skeleton/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Switch/Switch.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Switch/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/TableSearch/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/TableSearch/lang.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/TableSearch/tableSearchLocaleStore.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Upload/ImageUpload.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/Upload/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/breadcrumb.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/table.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/components/testPage/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/hooks/useBreadcrumb.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/hooks/useInit.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/hooks/useLanguage.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/hooks/usePagination.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/locales/index.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/stores/breadcrumb.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/stores/language.d.ts +0 -0
- /package/{packages → fe/packages}/ui/react/types/index.d.ts +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../../../app/router-schema/project.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAEhD,QAAA,MAAM,YAAY,EAAE,gBA6BnB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"project.js","sourceRoot":"","sources":["../../../app/router-schema/project.ts"],"names":[],"mappings":";;AAEA,MAAM,YAAY,GAAqB;IACtC,mBAAmB,EAAE;QACpB,GAAG,EAAE;YACJ,MAAM,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,UAAU,EAAE;oBACX,GAAG,EAAE;wBACJ,IAAI,EAAE,QAAQ;qBACd;iBACD;gBACD,QAAQ,EAAE,CAAC,KAAK,CAAC;aACjB;SACD;KACD;IACD,mBAAmB,EAAE;QACpB,GAAG,EAAE;YACJ,KAAK,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,UAAU,EAAE;oBACX,QAAQ,EAAE;wBACT,IAAI,EAAE,QAAQ;qBACd;iBACD;aACD;SACD;KACD;IACD,yBAAyB,EAAE;QAC1B,GAAG,EAAE,EAAE;KACP;CACD,CAAC;AAEF,kBAAe,YAAY,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bese.d.ts","sourceRoot":"","sources":["../../../app/service/bese.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AACjC,OAAO,UAAU,MAAM,YAAY,CAAC;yBAEpB,KAAK,MAAM;;mBAEZ,MAAM;sBAIH,MAAM,CAAC,QAAQ,CAAC;;;;AANlC,wBAaI"}
|
package/app/service/bese.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bese.js","sourceRoot":"","sources":["../../../app/service/bese.ts"],"names":[],"mappings":";;;;;AACA,4DAAoC;AAEpC,kBAAe,CAAC,GAAW,EAAE,EAAE,CAC7B,MAAM,WAAW;IACf,IAAI,GAAG;QACL,OAAO,GAAG,CAAC;IACb,CAAC;IAED,IAAI,MAAM;QACR,OAAO,GAAG,CAAC,MAAM,CAAC;IACpB,CAAC;IAED,IAAI,IAAI;QACN,OAAO,oBAAU,CAAC;IACpB,CAAC;CACF,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../../../app/service/project.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAGjC,MAAM,WAAW,WAAW;IAC3B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,SAAS;IACzB,KAAK,EAAE;QACN,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC;KACb,CAAC;IACF,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;CACrC;AAED,QAAA,MAAM,iBAAiB,GAAI,KAAK,MAAM;;wBAMd,OAAO,CAAC,SAAS,EAAE,CAAC;kBAI/B,MAAM,MAAM,KAAG,WAAW,EAAE;qBAazB,YAAY,MAAM,KAAG,WAAW,GAAG,IAAI;;;;;CAQtD,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"project.js","sourceRoot":"","sources":["../../../app/service/project.ts"],"names":[],"mappings":";;;;;AAAA,mCAAuC;AAEvC,kDAAoC;AAmBpC,MAAM,iBAAiB,GAAG,CAAC,GAAW,EAAE,EAAE;IACzC,MAAM,WAAW,GAAG,IAAA,cAAc,EAAC,GAAG,CAAC,CAAC;IAExC,MAAM,SAAS,GAAG,CAAC,kBAAW,CAAC,CAAC,GAAG,CAA2B,CAAC;IAE/D,OAAO,MAAM,cAAe,SAAQ,WAAW;QAC9C,KAAK,CAAC,YAAY;YACjB,OAAO,SAAS,CAAC;QAClB,CAAC;QAED,OAAO,GAAG,CAAC,GAAY,EAAiB,EAAE;YACzC,OAAO,SAAS,CAAC,MAAM,CAAC,CAAC,OAAsB,EAAE,QAAQ,EAAE,EAAE;gBAC5D,MAAM,EAAE,OAAO,EAAE,GAAG,QAAQ,CAAC;gBAC7B,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC;oBAAE,OAAO,OAAO,CAAC;gBAEzC,KAAK,MAAM,IAAI,IAAI,OAAO,EAAE,CAAC;oBAC5B,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;oBAC3B,IAAI,IAAI;wBAAE,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gBAC9B,CAAC;gBACD,OAAO,OAAO,CAAC;YAChB,CAAC,EAAE,EAAE,CAAC,CAAC;QACR,CAAC,CAAC;QAEF,UAAU,GAAG,CAAC,UAAkB,EAAsB,EAAE;YACvD,OAAO,SAAS,CAAC,MAAM,CAAC,CAAC,OAA2B,EAAE,QAAQ,EAAE,EAAE;gBACjE,MAAM,IAAI,GAAG,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;gBAC1C,IAAI,IAAI;oBAAE,OAAO,IAAI,CAAC;gBACtB,OAAO,OAAO,CAAC;YAChB,CAAC,EAAE,IAAI,CAAC,CAAC;QACV,CAAC,CAAC;KACF,CAAC;AACH,CAAC,CAAC;AAEF,kBAAe,iBAAiB,CAAC"}
|
package/app/type.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../app/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,MAAM,GAAG,OAAO,WAAW,EAAE,MAAM,CAAC;AAChD,MAAM,MAAM,GAAG,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC"}
|
package/app/type.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"type.js","sourceRoot":"","sources":["../../app/type.ts"],"names":[],"mappings":""}
|
package/app/typings.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"typings.d.ts","sourceRoot":"","sources":["../../app/typings.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAE3E,OAAO,KAAK,iBAAiB,MAAM,mBAAmB,CAAC;AACvD,OAAO,KAAK,oBAAoB,MAAM,sBAAsB,CAAC;AAC7D,OAAO,KAAK,iBAAiB,MAAM,mBAAmB,CAAC;AACvD,OAAO,KAAK,KAAK,MAAM,aAAa,CAAC;AACrC,OAAO,KAAK,SAAS,MAAM,iBAAiB,CAAC;AAC7C,OAAO,KAAK,oBAAoB,MAAM,+BAA+B,CAAC;AACtE,OAAO,KAAK,kBAAkB,MAAM,6BAA6B,CAAC;AAElE,KAAK,aAAa,CAAC,CAAC,IAAI,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;AAC3D,KAAK,WAAW,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,EAAE,KAAK,OAAO,IACtD,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,EAAE,KAAK,MAAM,CAAC,GACnC,CAAC,SAAS,UAAU,MAAM,CAAC,GAAG,CAAC,GAC/B,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,UAAU,MAAM,EAAE,GAAG,EAAE,GAAG,KAAK,GACtE,KAAK,GACL,KAAK,CAAC;AAEZ,OAAO,QAAQ,UAAU,CAAC;IACxB,UAAU,gBAAgB,CAAC;QACzB,UAAU,iBAAiB;YACzB,OAAO,EAAE,WAAW,CAAC,OAAO,iBAAiB,CAAC,CAAC;SAChD;QACD,UAAU,oBAAoB;YAC5B,OAAO,EAAE,WAAW,CAAC,OAAO,oBAAoB,CAAC,CAAC;YAClD,IAAI,EAAE,WAAW,CAAC,OAAO,iBAAiB,CAAC,CAAC;SAC7C;QACD,UAAU,iBAAiB;YACzB,EAAE,EAAE,aAAa,CAAC,UAAU,CAAC,OAAO,KAAK,CAAC,CAAC,CAAC;YAC5C,MAAM,EAAE,aAAa,CAAC,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC,CAAC;YACpD,oBAAoB,EAAE,UAAU,CAAC,OAAO,oBAAoB,CAAC,CAAC;YAC9D,kBAAkB,EAAE,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAC;YAC1D,WAAW,EAAE,OAAO,UAAU,EAAE,WAAW,CAAC;YAC5C,UAAU,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,OAAO,KAAK,EAAE,cAAc,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;SAC1G;QACD,UAAU,qBAAqB;YAC7B,WAAW,EAAE,OAAO,KAAK,EAAE,UAAU,CAAC;YACtC,aAAa,EAAE,OAAO,KAAK,EAAE,UAAU,CAAC;YACxC,eAAe,EAAE,OAAO,KAAK,EAAE,UAAU,CAAC;YAC1C,cAAc,EAAE,OAAO,KAAK,EAAE,UAAU,CAAC;SAC1C;QACD,UAAU,kBAAkB;YAC1B,SAAS,EAAE,MAAM,CAAC;YAClB,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,GAAG,CAAC,EAAE,MAAM,CAAC;YACb,aAAa,CAAC,EAAE;gBACd,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;aACtB,CAAC;YACF,SAAS,CAAC,EAAE,MAAM,CAAC;YACnB,QAAQ,CAAC,EAAE,OAAO,UAAU,EAAE,gBAAgB,CAAC;SAChD;KACF;CACF;AAED,YAAY,EAAE,gBAAgB,EAAE,CAAC;AACjC,OAAO,EAAE,gBAAgB,EAAE,CAAC;AAC5B,YAAY,EAAE,MAAM,EAAE,CAAC"}
|
package/app/typings.js
DELETED
package/app/typings.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"typings.js","sourceRoot":"","sources":["../../app/typings.ts"],"names":[],"mappings":""}
|
package/app/vite/config/base.js
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import path from 'path';
|
|
2
|
-
import fs from 'fs';
|
|
3
|
-
import * as glob from 'glob';
|
|
4
|
-
import { frameBasePath, outputBasePath } from './data';
|
|
5
|
-
const generateDynamicImports = (config) => {
|
|
6
|
-
const defaultPath = path.resolve(__dirname, '../lib.js');
|
|
7
|
-
return config.reduce((preConfig, [packageName, packagePathKey]) => {
|
|
8
|
-
let dynamicPath = path.resolve(outputBasePath, packagePathKey);
|
|
9
|
-
if (!fs.existsSync(dynamicPath))
|
|
10
|
-
dynamicPath = defaultPath;
|
|
11
|
-
preConfig[packageName] = dynamicPath;
|
|
12
|
-
return preConfig;
|
|
13
|
-
}, {});
|
|
14
|
-
};
|
|
15
|
-
const pageEntry = {};
|
|
16
|
-
const htmlPlugins = [];
|
|
17
|
-
const entryFiles = [
|
|
18
|
-
...glob.sync(path.resolve(frameBasePath, './app/pages/**/entry.*.js')),
|
|
19
|
-
...glob.sync(path.resolve(outputBasePath, './app/pages/**/entry.*.js')),
|
|
20
|
-
];
|
|
21
|
-
for (const file of entryFiles) {
|
|
22
|
-
const entryName = path.basename(file, '.js');
|
|
23
|
-
pageEntry[entryName] = file;
|
|
24
|
-
}
|
|
25
|
-
let businessViteConfig = {};
|
|
26
|
-
try {
|
|
27
|
-
const customConfig = require(path.resolve(outputBasePath, './app/vite.config.ts'));
|
|
28
|
-
businessViteConfig = customConfig.default || customConfig;
|
|
29
|
-
}
|
|
30
|
-
catch { }
|
|
31
|
-
const entryNameToTplName = {};
|
|
32
|
-
for (const name of Object.keys(pageEntry)) {
|
|
33
|
-
entryNameToTplName[name] = name;
|
|
34
|
-
}
|
|
35
|
-
const sharedAlias = {
|
|
36
|
-
'@babel/runtime/helpers/asyncToGenerator': require.resolve('@babel/runtime/helpers/asyncToGenerator'),
|
|
37
|
-
'@babel/runtime/regenerator': require.resolve('@babel/runtime/regenerator'),
|
|
38
|
-
'@babel/runtime/helpers/defineProperty': require.resolve('@babel/runtime/helpers/defineProperty'),
|
|
39
|
-
$elpisPages: path.resolve(frameBasePath, './app/pages'),
|
|
40
|
-
$elpisCommon: path.resolve(frameBasePath, './app/pages/common'),
|
|
41
|
-
$elpisCurl: path.resolve(frameBasePath, './app/pages/common/curl.js'),
|
|
42
|
-
$elpisUtils: path.resolve(frameBasePath, './app/pages/common/utils.js'),
|
|
43
|
-
$elpisWidgets: path.resolve(frameBasePath, './app/pages/widgets'),
|
|
44
|
-
$elpisStore: path.resolve(frameBasePath, './app/pages/store'),
|
|
45
|
-
...generateDynamicImports([
|
|
46
|
-
['$businessDashboardRouterConfig', './app/pages/dashboard/route.js'],
|
|
47
|
-
['$businessComponentConfig', './app/pages/dashboard/complex-view/schema-view/component-config.js'],
|
|
48
|
-
['$businessFormComponentConfig', './app/pages/widgets/schema-form/component-config.js'],
|
|
49
|
-
['$businessSearchComponentConfig', './app/pages/widgets/schema-search-bar/component-config.js'],
|
|
50
|
-
['$businessHanderConfig', './app/pages/widgets/header-container/header-config.js'],
|
|
51
|
-
]),
|
|
52
|
-
};
|
|
53
|
-
export { pageEntry, htmlPlugins, entryNameToTplName, sharedAlias, businessViteConfig };
|
|
54
|
-
//# sourceMappingURL=base.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"base.js","sourceRoot":"","sources":["../../../../app/vite/config/base.ts"],"names":[],"mappings":"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"}
|
package/app/vite/config/data.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"data.js","sourceRoot":"","sources":["../../../../app/vite/config/data.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,MAAM,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,WAAW,CAAC,CAAC;AAC3D,MAAM,cAAc,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC;AAErC,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,CAAC"}
|
package/app/vite/config/dev.js
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { outputBasePath } from './data';
|
|
2
|
-
const devConfig = {
|
|
3
|
-
build: {
|
|
4
|
-
outDir: `${outputBasePath}/app/public/dist/dev`,
|
|
5
|
-
rollupOptions: {
|
|
6
|
-
output: {
|
|
7
|
-
entryFileNames: 'js/[name]_[hash:8].bundle.js',
|
|
8
|
-
},
|
|
9
|
-
},
|
|
10
|
-
},
|
|
11
|
-
};
|
|
12
|
-
export { devConfig };
|
|
13
|
-
//# sourceMappingURL=dev.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dev.js","sourceRoot":"","sources":["../../../../app/vite/config/dev.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAExC,MAAM,SAAS,GAAG;IAChB,KAAK,EAAE;QACL,MAAM,EAAE,GAAG,cAAc,sBAAsB;QAC/C,aAAa,EAAE;YACb,MAAM,EAAE;gBACN,cAAc,EAAE,8BAA8B;aAC/C;SACF;KACF;CACF,CAAC;AAEF,OAAO,EAAE,SAAS,EAAE,CAAC"}
|
package/app/vite/config/prod.js
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { outputBasePath } from './data';
|
|
2
|
-
const prodConfig = {
|
|
3
|
-
build: {
|
|
4
|
-
outDir: `${outputBasePath}/app/public/dist/prod`,
|
|
5
|
-
rollupOptions: {
|
|
6
|
-
output: {
|
|
7
|
-
entryFileNames: 'js/[name]_[hash:8].[contenthash].bundle.js',
|
|
8
|
-
chunkFileNames: 'js/[name]_[contenthash].bundle.js',
|
|
9
|
-
assetFileNames: (info) => {
|
|
10
|
-
const ext = info?.name?.split('.').pop() || '';
|
|
11
|
-
if (['css'].includes(ext)) {
|
|
12
|
-
return `css/[name]_[contenthash:8].[contenthash].bundle.css`;
|
|
13
|
-
}
|
|
14
|
-
return `assets/[name]_[contenthash][extname]`;
|
|
15
|
-
},
|
|
16
|
-
manualChunks(id) {
|
|
17
|
-
if (/[\/\\]node_modules[\/\\](@)?vue/.test(id))
|
|
18
|
-
return 'v';
|
|
19
|
-
if (/[\/\\]node_modules[\/\\](@)?element-plus/.test(id))
|
|
20
|
-
return 'ep';
|
|
21
|
-
if (/[\/\\]node_modules[\/\\]moment/.test(id))
|
|
22
|
-
return 'mmt';
|
|
23
|
-
if (/[\/\\]node_modules[\/\\]/.test(id))
|
|
24
|
-
return 'nm';
|
|
25
|
-
return 'ject';
|
|
26
|
-
},
|
|
27
|
-
},
|
|
28
|
-
},
|
|
29
|
-
},
|
|
30
|
-
};
|
|
31
|
-
export { prodConfig };
|
|
32
|
-
//# sourceMappingURL=prod.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"prod.js","sourceRoot":"","sources":["../../../../app/vite/config/prod.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAExC,MAAM,UAAU,GAAG;IACjB,KAAK,EAAE;QACL,MAAM,EAAE,GAAG,cAAc,uBAAuB;QAChD,aAAa,EAAE;YACb,MAAM,EAAE;gBACN,cAAc,EAAE,4CAA4C;gBAC5D,cAAc,EAAE,mCAAmC;gBACnD,cAAc,EAAE,CAAC,IAAuC,EAAE,EAAE;oBAC1D,MAAM,GAAG,GAAG,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,CAAC;oBAC/C,IAAI,CAAC,KAAK,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC;wBAC1B,OAAO,qDAAqD,CAAC;oBAC/D,CAAC;oBACD,OAAO,sCAAsC,CAAC;gBAChD,CAAC;gBACD,YAAY,CAAC,EAAU;oBACrB,IAAI,iCAAiC,CAAC,IAAI,CAAC,EAAE,CAAC;wBAAE,OAAO,GAAG,CAAC;oBAC3D,IAAI,0CAA0C,CAAC,IAAI,CAAC,EAAE,CAAC;wBAAE,OAAO,IAAI,CAAC;oBACrE,IAAI,gCAAgC,CAAC,IAAI,CAAC,EAAE,CAAC;wBAAE,OAAO,KAAK,CAAC;oBAC5D,IAAI,0BAA0B,CAAC,IAAI,CAAC,EAAE,CAAC;wBAAE,OAAO,IAAI,CAAC;oBACrD,OAAO,MAAM,CAAA;gBACf,CAAC;aACF;SACF;KACF;CACF,CAAC;AAEF,OAAO,EAAE,UAAU,EAAE,CAAC"}
|
package/app/vite/dev.js
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import path from 'path';
|
|
2
|
-
import { createServer } from 'vite';
|
|
3
|
-
import { frameBasePath, outputBasePath } from './config/data';
|
|
4
|
-
import { sharedAlias, businessViteConfig } from './config/base';
|
|
5
|
-
import { devConfig } from './config/dev';
|
|
6
|
-
const PROT = 9002;
|
|
7
|
-
export const buildDev = async () => {
|
|
8
|
-
console.log('Starting Vite dev server...');
|
|
9
|
-
const server = await createServer({
|
|
10
|
-
root: outputBasePath,
|
|
11
|
-
publicDir: path.resolve(frameBasePath, './app/public'),
|
|
12
|
-
resolve: {
|
|
13
|
-
alias: sharedAlias,
|
|
14
|
-
extensions: ['.js', '.jsx', '.ts', '.tsx', '.less', '.css'],
|
|
15
|
-
},
|
|
16
|
-
...devConfig,
|
|
17
|
-
...businessViteConfig,
|
|
18
|
-
});
|
|
19
|
-
await server.listen();
|
|
20
|
-
console.log(`Vite dev server listening on http://127.0.0.1:${PROT}`);
|
|
21
|
-
return server;
|
|
22
|
-
};
|
|
23
|
-
//# sourceMappingURL=dev.js.map
|
package/app/vite/dev.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dev.js","sourceRoot":"","sources":["../../../app/vite/dev.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,YAAY,EAAsB,MAAM,MAAM,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,MAAM,IAAI,GAAG,IAAI,CAAC;AAElB,MAAM,CAAC,MAAM,QAAQ,GAAG,KAAK,IAA4B,EAAE;IACzD,OAAO,CAAC,GAAG,CAAC,6BAA6B,CAAC,CAAC;IAE3C,MAAM,MAAM,GAAG,MAAM,YAAY,CAAC;QAChC,IAAI,EAAE,cAAc;QACpB,SAAS,EAAE,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,cAAc,CAAC;QACtD,OAAO,EAAE;YACP,KAAK,EAAE,WAAW;YAClB,UAAU,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC;SAC5D;QACD,GAAG,SAAS;QACZ,GAAI,kBAA6B;KAClC,CAAC,CAAC;IAEH,MAAM,MAAM,CAAC,MAAM,EAAE,CAAC;IACtB,OAAO,CAAC,GAAG,CAAC,iDAAiD,IAAI,EAAE,CAAC,CAAC;IACrE,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC"}
|
package/app/vite/index.js
DELETED
package/app/vite/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../app/vite/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACjC,OAAO,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC"}
|
package/app/vite/package.json
DELETED
package/app/vite/prod.js
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
import path from 'path';
|
|
2
|
-
import fs from 'fs';
|
|
3
|
-
import { build } from 'vite';
|
|
4
|
-
import { frameBasePath, outputBasePath } from './config/data';
|
|
5
|
-
import { pageEntry, sharedAlias, businessViteConfig } from './config/base';
|
|
6
|
-
import { prodConfig } from './config/prod';
|
|
7
|
-
const cleanDir = (dir) => {
|
|
8
|
-
if (fs.existsSync(dir)) {
|
|
9
|
-
fs.rmSync(dir, { recursive: true, force: true });
|
|
10
|
-
}
|
|
11
|
-
fs.mkdirSync(dir, { recursive: true });
|
|
12
|
-
};
|
|
13
|
-
export const buildProd = async () => {
|
|
14
|
-
console.log('\n building.. \n');
|
|
15
|
-
const outDir = `${outputBasePath}/app/public/dist/prod`;
|
|
16
|
-
cleanDir(outDir);
|
|
17
|
-
await build({
|
|
18
|
-
root: outputBasePath,
|
|
19
|
-
publicDir: path.resolve(frameBasePath, './app/public'),
|
|
20
|
-
resolve: {
|
|
21
|
-
alias: sharedAlias,
|
|
22
|
-
extensions: ['.js', '.jsx', '.ts', '.tsx', '.less', '.css'],
|
|
23
|
-
},
|
|
24
|
-
build: {
|
|
25
|
-
...prodConfig.build,
|
|
26
|
-
outDir,
|
|
27
|
-
minify: 'esbuild',
|
|
28
|
-
rollupOptions: {
|
|
29
|
-
input: pageEntry,
|
|
30
|
-
output: {
|
|
31
|
-
entryFileNames: 'js/[name]_[hash:8].[contenthash].bundle.js',
|
|
32
|
-
chunkFileNames: 'js/[name]_[contenthash].bundle.js',
|
|
33
|
-
assetFileNames: (info) => {
|
|
34
|
-
const ext = info?.name?.split('.').pop() || '';
|
|
35
|
-
if (['css'].includes(ext)) {
|
|
36
|
-
return `css/[name]_[contenthash:8].[contenthash].bundle.css`;
|
|
37
|
-
}
|
|
38
|
-
return `assets/[name]_[hash][extname]`;
|
|
39
|
-
},
|
|
40
|
-
manualChunks(id) {
|
|
41
|
-
if (/[\/\\]node_modules[\/\\](@)?react/.test(id))
|
|
42
|
-
return 'react';
|
|
43
|
-
if (/[\/\\]node_modules[\/\\](@)?element-plus/.test(id))
|
|
44
|
-
return 'ep';
|
|
45
|
-
if (/[\/\\]node_modules[\/\\]/.test(id))
|
|
46
|
-
return 'nm';
|
|
47
|
-
return 'ject';
|
|
48
|
-
},
|
|
49
|
-
},
|
|
50
|
-
},
|
|
51
|
-
},
|
|
52
|
-
...businessViteConfig,
|
|
53
|
-
});
|
|
54
|
-
const tplDir = `${outputBasePath}/app/public/dist`;
|
|
55
|
-
cleanDir(tplDir);
|
|
56
|
-
const templateContent = fs.readFileSync(path.resolve(frameBasePath, './app/view/entry.tpl'), 'utf-8');
|
|
57
|
-
for (const [entryName] of Object.entries(pageEntry)) {
|
|
58
|
-
const jsFiles = fs.readdirSync(`${outDir}/js`);
|
|
59
|
-
const jsFile = jsFiles.find((f) => f.startsWith(entryName) && f.endsWith('.js'));
|
|
60
|
-
const cssFile = fs.existsSync(`${outDir}/css`)
|
|
61
|
-
? fs.readdirSync(`${outDir}/css`).find((f) => f.startsWith(entryName))
|
|
62
|
-
: null;
|
|
63
|
-
const scriptTag = jsFile
|
|
64
|
-
? `<script crossorigin="anonymous" src="/dist/prod/js/${jsFile}"></script>`
|
|
65
|
-
: '';
|
|
66
|
-
const cssTag = cssFile
|
|
67
|
-
? `<link rel="stylesheet" href="/dist/prod/css/${cssFile}" />`
|
|
68
|
-
: '';
|
|
69
|
-
const tplContent = templateContent
|
|
70
|
-
.replace('</head>', `${cssTag}\n</head>`)
|
|
71
|
-
.replace('</body>', `${scriptTag}\n</body>`);
|
|
72
|
-
fs.writeFileSync(`${tplDir}/${entryName}.tpl`, tplContent);
|
|
73
|
-
}
|
|
74
|
-
console.log('\n build complete!');
|
|
75
|
-
};
|
|
76
|
-
//# sourceMappingURL=prod.js.map
|
package/app/vite/prod.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"prod.js","sourceRoot":"","sources":["../../../app/vite/prod.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,EAAE,KAAK,EAAE,MAAM,MAAM,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC9D,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAC3E,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C,MAAM,QAAQ,GAAG,CAAC,GAAW,EAAE,EAAE;IAC/B,IAAI,EAAE,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC;QACvB,EAAE,CAAC,MAAM,CAAC,GAAG,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;IACnD,CAAC;IACD,EAAE,CAAC,SAAS,CAAC,GAAG,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;AACzC,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAG,KAAK,IAAmB,EAAE;IACjD,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,CAAC;IAChC,MAAM,MAAM,GAAG,GAAG,cAAc,uBAAuB,CAAC;IACxD,QAAQ,CAAC,MAAM,CAAC,CAAC;IAEjB,MAAM,KAAK,CAAC;QACV,IAAI,EAAE,cAAc;QACpB,SAAS,EAAE,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,cAAc,CAAC;QACtD,OAAO,EAAE;YACP,KAAK,EAAE,WAAW;YAClB,UAAU,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC;SAC5D;QACD,KAAK,EAAE;YACL,GAAG,UAAU,CAAC,KAAK;YACnB,MAAM;YACN,MAAM,EAAE,SAAS;YACjB,aAAa,EAAE;gBACb,KAAK,EAAE,SAAS;gBAChB,MAAM,EAAE;oBACN,cAAc,EAAE,4CAA4C;oBAC5D,cAAc,EAAE,mCAAmC;oBACnD,cAAc,EAAE,CAAC,IAAuC,EAAE,EAAE;wBAC1D,MAAM,GAAG,GAAG,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,CAAC;wBAC/C,IAAI,CAAC,KAAK,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC;4BAC1B,OAAO,qDAAqD,CAAC;wBAC/D,CAAC;wBACD,OAAO,+BAA+B,CAAC;oBACzC,CAAC;oBACD,YAAY,CAAC,EAAU;wBACrB,IAAI,mCAAmC,CAAC,IAAI,CAAC,EAAE,CAAC;4BAAE,OAAO,OAAO,CAAC;wBACjE,IAAI,0CAA0C,CAAC,IAAI,CAAC,EAAE,CAAC;4BAAE,OAAO,IAAI,CAAC;wBACrE,IAAI,0BAA0B,CAAC,IAAI,CAAC,EAAE,CAAC;4BAAE,OAAO,IAAI,CAAC;wBACrD,OAAO,MAAM,CAAC;oBAChB,CAAC;iBACF;aACF;SACF;QACD,GAAI,kBAA6B;KAClC,CAAC,CAAC;IAEH,MAAM,MAAM,GAAG,GAAG,cAAc,kBAAkB,CAAC;IACnD,QAAQ,CAAC,MAAM,CAAC,CAAC;IACjB,MAAM,eAAe,GAAG,EAAE,CAAC,YAAY,CACrC,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,sBAAsB,CAAC,EACnD,OAAO,CACR,CAAC;IAEF,KAAK,MAAM,CAAC,SAAS,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,EAAE,CAAC;QACpD,MAAM,OAAO,GAAG,EAAE,CAAC,WAAW,CAAC,GAAG,MAAM,KAAK,CAAC,CAAC;QAC/C,MAAM,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC;QACjF,MAAM,OAAO,GAAG,EAAE,CAAC,UAAU,CAAC,GAAG,MAAM,MAAM,CAAC;YAC5C,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,GAAG,MAAM,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;YACtE,CAAC,CAAC,IAAI,CAAC;QAET,MAAM,SAAS,GAAG,MAAM;YACtB,CAAC,CAAC,sDAAsD,MAAM,aAAa;YAC3E,CAAC,CAAC,EAAE,CAAC;QACP,MAAM,MAAM,GAAG,OAAO;YACpB,CAAC,CAAC,+CAA+C,OAAO,MAAM;YAC9D,CAAC,CAAC,EAAE,CAAC;QAEP,MAAM,UAAU,GAAG,eAAe;aAC/B,OAAO,CAAC,SAAS,EAAE,GAAG,MAAM,WAAW,CAAC;aACxC,OAAO,CAAC,SAAS,EAAE,GAAG,SAAS,WAAW,CAAC,CAAC;QAE/C,EAAE,CAAC,aAAa,CAAC,GAAG,MAAM,IAAI,SAAS,MAAM,EAAE,UAAU,CAAC,CAAC;IAC7D,CAAC;IAED,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;AACpC,CAAC,CAAC"}
|
package/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAExC,OAAO,eAAe,CAAC;AACvB,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAIvC,YAAY,EAAE,GAAG,EAAE,MAAM,UAAU,CAAC;AACpC,YAAY,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AACzD,OAAO,KAAK,MAAM,MAAM,YAAY,CAAC;AACrC,YAAY,EAAE,MAAM,EAAE,CAAC;AAEvB,eAAO,MAAM,WAAW,GAAI,UAAU,KAAK,CAAC,YAAY,EAAE,cAAc,CAAC,8BAExE,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;CAGlB,CAAC;AAEF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,uBAAuB,CAAC"}
|
package/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;AACA,mCAAiC;AACjC,yBAAuB;AAEvB,qCAAoC;AACpC,+DAAmD;AACnD,4DAA6C;AAMtC,MAAM,WAAW,GAAG,CAAC,OAA6C,EAAE,EAAE;IAC3E,OAAO,IAAA,YAAK,EAAC,EAAE,GAAG,OAAO,EAAE,YAAY,EAAE,IAAA,eAAO,EAAC,SAAS,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC;AACtE,CAAC,CAAC;AAFW,QAAA,WAAW,eAEtB;AAEW,QAAA,MAAM,GAAG;IACpB,gBAAgB,EAAhB,cAAgB;IAChB,aAAa,EAAb,cAAa;CACd,CAAC;AAEF,+CAA+D;AAAtD,qHAAA,OAAO,OAAe"}
|
package/model/index.d.ts
DELETED
package/model/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../model/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,SAAS,CAAC"}
|
package/model/index.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = exports.test_2a = void 0;
|
|
4
|
-
var test2_1 = require("./test2");
|
|
5
|
-
Object.defineProperty(exports, "test_2a", { enumerable: true, get: function () { return test2_1.test_2a; } });
|
|
6
|
-
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return test2_1.test_2a; } });
|
|
7
|
-
//# sourceMappingURL=index.js.map
|
package/model/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../model/index.ts"],"names":[],"mappings":";;;AAAA,iCAAsD;AAA7C,gGAAA,OAAO,OAAA;AAAE,gGAAA,OAAO,OAAW"}
|
package/model/test.d.ts
DELETED
package/model/test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../../model/test.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,CAAC,IAAI,CAAC;;;;AACnB,wBAAqB"}
|
package/model/test.js
DELETED
package/model/test.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../model/test.ts"],"names":[],"mappings":";;;AAAa,QAAA,CAAC,GAAG,CAAC,CAAC;AACnB,kBAAe,EAAE,CAAC,EAAD,SAAC,EAAE,CAAC"}
|
package/model/test2.d.ts
DELETED
package/model/test2.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"test2.d.ts","sourceRoot":"","sources":["../../model/test2.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,IAAI,CAAC;;;;AACzB,wBAA8B"}
|
package/model/test2.js
DELETED
package/model/test2.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"test2.js","sourceRoot":"","sources":["../../model/test2.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,CAAC,CAAC;AACzB,kBAAe,EAAE,CAAC,EAAE,eAAO,EAAE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"env.d.ts","sourceRoot":"","sources":["../../../packages/core/env.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,OAAO,GAAG;IACrB,KAAK,EAAE,OAAO,GAAG,MAAM,CAAC;IACxB,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;IACtB,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC;AAEpC,MAAM,WAAW,SAAS;IACzB,OAAO,IAAI,OAAO,CAAC;IACnB,MAAM,IAAI,OAAO,CAAC;IAClB,MAAM,IAAI,OAAO,CAAC;IAClB,GAAG,IAAI,OAAO,CAAC,MAAM,OAAO,CAAC,CAAC;IAC9B,UAAU,IAAI,OAAO,CAAC;CACtB;8BAEkB,SAAS;AAA5B,wBAsBE"}
|
package/packages/core/env.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"env.js","sourceRoot":"","sources":["../../../packages/core/env.ts"],"names":[],"mappings":";;AAgBA,kBAAe,GAAc,EAAE;IAC9B,OAAO;QACN,OAAO;YACN,OAAO,OAAO,CAAC,GAAG,CAAC,IAAI,KAAK,OAAO,CAAC;QACrC,CAAC;QACD,MAAM;YACL,OAAO,OAAO,CAAC,GAAG,CAAC,IAAI,KAAK,MAAM,CAAC;QACpC,CAAC;QACD,MAAM;YACL,OAAO,OAAO,CAAC,GAAG,CAAC,IAAI,KAAK,MAAM,CAAC;QACpC,CAAC;QACD,GAAG;YACF,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,IAAI,OAAO,CAA2B,CAAC;QAChE,CAAC;QACD,UAAU;YACT,OAAO;gBACN,KAAK,EAAE,OAAO;gBACd,IAAI,EAAE,MAAM;gBACZ,IAAI,EAAE,MAAM;aACZ,CAAC;QACH,CAAC;KACD,CAAC;AACH,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../packages/core/index.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,CAAC;AACjB,OAAO,mBAAmB,CAAC;AAqB3B,OAAO,KAAK,EAAc,MAAM,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAEhE,eAAO,MAAM,WAAW,uDAAc,CAAC;AACvC,YAAY,EACV,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,wBAAwB,EACxB,QAAQ,EACR,WAAW,EACX,QAAQ,EACR,YAAY,EACZ,MAAM,EACN,gBAAgB,EAChB,gBAAgB,GACjB,MAAM,SAAS,CAAC;AAEjB,eAAO,MAAM,KAAK,GAAI,UAAS,YAAiB,WA8E/C,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../packages/core/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../packages/core/loader/config.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;yBAQvB,KAAK,MAAM,KAAG,IAAI;AAAlC,wBA8CE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../../packages/core/loader/config.ts"],"names":[],"mappings":";;AAAA,yCAAyC;AACzC,uEAAoE;AASpE,kBAAe,CAAC,GAAW,EAAQ,EAAE;IAKnC,MAAM,KAAK,GAAG,IAAA,yCAAmB,EAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;IAGzD,MAAM,SAAS,GAAG,IAAA,yCAAmB,EAAC,GAAG,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;IAElE,MAAM,MAAM,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;IAE9B,MAAM,SAAS,GAA4B;QACzC,OAAO,EAAE,KAAK;QAId,CAAC,MAAM,CAAC,EAAE,KAAK;KAChB,CAAC;IAEF,IAAI,SAAS,GAAwB,EAAE,CAAC;IACxC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;QACnC,MAAM,UAAU,GAAG,CAAC,GAAG,SAAS,EAAE,GAAG,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;QACzE,IAAI,UAAU,CAAC,MAAM,EAAE,CAAC;YACtB,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;YACpB,MAAM,UAAU,GAAG,UAAU,CAAC,MAAM,CAClC,CAAC,OAA4B,EAAE,WAAmB,EAAE,EAAE,CAAC,CAAC;gBACtD,GAAG,OAAO;gBACV,GAAG,OAAO,CAAC,IAAA,cAAO,EAAC,WAAW,CAAC,CAAC;aACjC,CAAC,EACF,EAAE,CACH,CAAC;YAEF,SAAS,GAAG,CAAC,SAAS,EAAE,UAAU,CAAC,CACjC,CAAC,KAAK,SAAS,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,QAAQ,CAC3C,CAAC,CAAC,CAAM,EAAE,CAAM,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC;QAC9C,CAAC;IACH,CAAC,CAAC,CAAC;IACH,IAAI,CAAC,SAAS,CAAC,OAAO,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC;QAC7C,OAAO,CAAC,KAAK,CACX,CAAC,SAAS,CAAC,OAAO;YAChB,CAAC,CAAC,0CAA0C;YAC5C,CAAC,CAAC,wCAAwC,CAC7C,CAAC;IACJ,CAAC;IACD,GAAG,CAAC,MAAM,GAAG,SAAgB,CAAC;AAChC,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"controller.d.ts","sourceRoot":"","sources":["../../../../packages/core/loader/controller.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;yBAkBvB,KAAK,MAAM,KAAG,IAAI;AAAlC,wBAwBE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"controller.js","sourceRoot":"","sources":["../../../../packages/core/loader/controller.ts"],"names":[],"mappings":";;AAAA,yCAAyC;AACzC,iDAAgD;AAEhD,oCAAuC;AACvC,qCAAsC;AAgBtC,kBAAe,CAAC,GAAW,EAAQ,EAAE;IAWpC,GAAG,CAAC,UAAU,GAAG,IAAA,mBAAW,EAAC,GAAG,CAAC,CAAC,MAAM,CACvC,CAAC,OAAO,EAAE,WAAW,EAAE,EAAE,CAAC,CAAC;QAC1B,GAAG,OAAO;QACV,GAAG,IAAA,qBAAU,EAAC,WAAW,EAAE,YAAY,EAAE;YACxC,gBAAgB,EAAE,CAAC,IAAY,EAAE,EAAE;gBAClC,MAAM,UAAU,GAAG,IAAA,iBAAS,EAAC,OAAO,CAAC,IAAA,cAAO,EAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;gBAC1D,OAAO,IAAI,UAAU,EAAE,CAAC;YACzB,CAAC;SACD,CAAC;KACF,CAAC,EAEF,EAAE,CACK,CAAC;AACV,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"extend.d.ts","sourceRoot":"","sources":["../../../../packages/core/loader/extend.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAA4B,MAAM,UAAU,CAAC;yBASjD,KAAK,MAAM,KAAG,IAAI;AAAlC,wBAyCE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"extend.js","sourceRoot":"","sources":["../../../../packages/core/loader/extend.ts"],"names":[],"mappings":";;AAAA,iDAAgD;AAChD,yCAAyC;AAEzC,oCAAuC;AACvC,qCAAsC;AAOtC,kBAAe,CAAC,GAAW,EAAQ,EAAE;IAKnC,GAAG,CAAC,OAAO,GAAG,EAAE,GAAG,GAAG,CAAC,OAAO,EAAE,CAAC;IAEjC,IAAA,mBAAW,EAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,WAAmB,EAAE,EAAE;QAC/C,IAAA,qBAAU,EAAC,WAAW,EAAE,QAAQ,EAAE;YAChC,sBAAsB,EAAE,CAAC,CACvB,QAAgB,EAChB,QAAgB,EAChB,KAAc,EACd,EAAE;gBACF,IAAI,CAAC,KAAK,EAAE,CAAC;oBACX,KAAK,MAAM,GAAG,IAAI,GAAG,EAAE,CAAC;wBACtB,IAAI,GAAG,KAAK,QAAQ,EAAE,CAAC;4BACrB,OAAO,CAAC,GAAG,CACT,mBAAmB,EACnB,8BAA8B,QAAQ,oBAAoB,CAC3D,CAAC;4BACF,OAAO,SAAS,CAAC;wBACnB,CAAC;oBACH,CAAC;oBAED,MAAM,GAAG,GAAG,IAAA,iBAAS,EAAC,OAAO,CAAC,IAAA,cAAO,EAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,GAAG,CAErC,CAAC;oBAEjB,IAAI,GAAG,YAAY,OAAO,EAAE,CAAC;wBAC3B,CAAC,KAAK,IAAI,EAAE;4BACT,GAAG,CAAC,OAAe,CAAC,QAAQ,CAAC,GAAG,MAAM,GAAG,CAAC;wBAC7C,CAAC,CAAC,EAAE,CAAC;oBACP,CAAC;yBAAM,CAAC;wBACL,GAAG,CAAC,OAAe,CAAC,QAAQ,CAAC,GAAG,GAAG,CAAC;oBACvC,CAAC;gBACH,CAAC;gBACD,OAAO,SAAS,CAAC;YACnB,CAAC,CAA6B;SAC/B,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"middleware.d.ts","sourceRoot":"","sources":["../../../../packages/core/loader/middleware.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;yBAavB,KAAK,MAAM,KAAG,IAAI;AAAlC,wBAiCE"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const loadFile_1 = require("../../utils/loadFile");
|
|
4
|
-
const paths_1 = require("../paths");
|
|
5
|
-
const utils_1 = require("../../utils/index.js");
|
|
6
|
-
exports.default = (app) => {
|
|
7
|
-
app.middlewares = (0, paths_1.getAppPaths)(app).reduce((preData, currentPath) => {
|
|
8
|
-
const middlewares = (0, loadFile_1.loadFileFn)(currentPath, 'middleware', {
|
|
9
|
-
loadFileCallback: (path) => {
|
|
10
|
-
return (0, utils_1.runFileFn)(require(path))(app);
|
|
11
|
-
},
|
|
12
|
-
});
|
|
13
|
-
return { ...preData, ...middlewares };
|
|
14
|
-
}, {});
|
|
15
|
-
};
|
|
16
|
-
//# sourceMappingURL=middleware.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"middleware.js","sourceRoot":"","sources":["../../../../packages/core/loader/middleware.ts"],"names":[],"mappings":";;AACA,iDAAgD;AAChD,oCAAuC;AACvC,qCAAsC;AAUtC,kBAAe,CAAC,GAAW,EAAQ,EAAE;IAqBpC,GAAG,CAAC,WAAW,GAAG,IAAA,mBAAW,EAAC,GAAG,CAAC,CAAC,MAAM,CACxC,CAAC,OAA4B,EAAE,WAAmB,EAAE,EAAE;QACrD,MAAM,WAAW,GAAG,IAAA,qBAAU,EAAC,WAAW,EAAE,YAAY,EAAE;YACzD,gBAAgB,EAAE,CAAC,IAAY,EAAE,EAAE;gBAClC,OAAO,IAAA,iBAAS,EAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YACtC,CAAC;SACD,CAAC,CAAC;QAEH,OAAO,EAAE,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,CAAC;IACvC,CAAC,EACD,EAAE,CACK,CAAC;AACV,CAAC,CAAC"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { KoaApp } from '../types';
|
|
2
|
-
export interface ModelItem {
|
|
3
|
-
model: {
|
|
4
|
-
key: string;
|
|
5
|
-
[k: string]: any;
|
|
6
|
-
};
|
|
7
|
-
project: {
|
|
8
|
-
key: string;
|
|
9
|
-
[k: string]: any;
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
export type ModelConfig = ModelItem[];
|
|
13
|
-
declare const modelLoader: (app: KoaApp) => ModelConfig;
|
|
14
|
-
export default modelLoader;
|
|
15
|
-
//# sourceMappingURL=model.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../../../packages/core/loader/model.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAqBlC,MAAM,WAAW,SAAS;IACzB,KAAK,EAAE;QACN,GAAG,EAAE,MAAM,CAAC;QACZ,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAC;KACjB,CAAC;IACF,OAAO,EAAE;QACR,GAAG,EAAE,MAAM,CAAC;QACZ,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAC;KACjB,CAAC;CACF;AAED,MAAM,MAAM,WAAW,GAAG,SAAS,EAAE,CAAC;AAMtC,QAAA,MAAM,WAAW,GAAI,KAAK,MAAM,KAAG,WAmDlC,CAAC;AAgHF,eAAe,WAAW,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"model.js","sourceRoot":"","sources":["../../../../packages/core/loader/model.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"router-schema.d.ts","sourceRoot":"","sources":["../../../../packages/core/loader/router-schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;yBAoBlB,KAAK,MAAM,KAAG,IAAI;AAAlC,wBAgBE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"router-schema.js","sourceRoot":"","sources":["../../../../packages/core/loader/router-schema.ts"],"names":[],"mappings":";;AACA,iDAAgD;AAChD,yCAAyC;AACzC,oCAAuC;AAiBvC,kBAAe,CAAC,GAAW,EAAQ,EAAE;IAEpC,IAAI,YAAY,GAAwB,EAAE,CAAC;IAE3C,IAAA,mBAAW,EAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,WAAmB,EAAE,EAAE;QAChD,IAAA,qBAAU,EAAC,WAAW,EAAE,eAAe,EAAE;YACxC,yBAAyB,CAAC,IAAY;gBACrC,YAAY,GAAG;oBACd,GAAG,YAAY;oBACf,GAAG,OAAO,CAAC,IAAA,cAAO,EAAC,IAAI,CAAC,CAAC;iBACzB,CAAC;YACH,CAAC;SACD,CAAC,CAAC;IACJ,CAAC,CAAC,CAAC;IAEH,GAAG,CAAC,YAAY,GAAG,YAAY,CAAC;AACjC,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"router.d.ts","sourceRoot":"","sources":["../../../../packages/core/loader/router.ts"],"names":[],"mappings":"AAGA,OAAO,EAAQ,MAAM,EAAE,MAAM,UAAU,CAAC;yBASxB,KAAK,MAAM,KAAG,IAAI;AAAlC,wBAsDE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"router.js","sourceRoot":"","sources":["../../../../packages/core/loader/router.ts"],"names":[],"mappings":";;;;;AAAA,4DAAmC;AACnC,iDAAgD;AAChD,yCAAyC;AAEzC,oCAAmD;AACnD,qCAAsC;AAOtC,kBAAe,CAAC,GAAW,EAAQ,EAAE;IAKnC,MAAM,MAAM,GAAG,IAAI,oBAAS,EAAE,CAAC;IAE/B,IAAI,WAA4D,CAAC;IACjE,IAAI,CAAC;QAEH,MAAM,YAAY,GAAG,IAAA,kBAAU,EAAC,GAAG,EAAE,UAAU,CAAC,CAAC;QACjD,IAAI,YAAY,EAAE,CAAC;YACjB,WAAW,GAAG,IAAA,iBAAS,EAAC,OAAO,CAAC,IAAA,cAAO,EAAC,YAAY,EAAE,iBAAiB,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QAClF,CAAC;IACH,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,CAAC,IAAI,CAAC,+CAA+C,CAAC,CAAC;IAChE,CAAC;IAED,IAAA,mBAAW,EAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC,WAAmB,EAAE,EAAE;QAC/C,IAAA,qBAAU,EAAC,WAAW,EAAE,QAAQ,EAAE;YAChC,yBAAyB,EAAE,CAAC,QAAgB,EAAE,EAAE;gBAM9C,IAAA,iBAAS,EAAC,OAAO,CAAC,IAAA,cAAO,EAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC;YACrD,CAAC;SACF,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,MAAM,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,KAAU,EAAE,EAAE;QAC3C,OAAO,CAAC,IAAI,CAAC,mBAAmB,EAAE,qBAAqB,GAAG,CAAC,IAAI,KAAK,CAAC,CAAC;QAEtE,GAAG,CAAC,MAAM,GAAG,GAAG,CAAC;QAEjB,MAAM,gBAAgB,GAAG,WAAW,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5C,IAAI,gBAAgB,EAAE,CAAC;YACrB,GAAG,CAAC,QAAQ,CAAC,gBAAgB,IAAI,GAAG,CAAC,CAAC;QACxC,CAAC;aAAM,CAAC;YACN,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,EAAE,QAAQ,IAAI,GAAG,CAAC,CAAC;QAC7C,CAAC;QAGD,OAAO;IAGT,CAAC,CAAC,CAAC;IAEH,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;IACzB,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC,CAAC;IAEjC,GAAG,CAAC,gBAAgB,GAAG,MAAM,CAAC;AAChC,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service.d.ts","sourceRoot":"","sources":["../../../../packages/core/loader/service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;yBAmBvB,KAAK,MAAM,KAAG,IAAI;AAAlC,wBAaE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../packages/core/loader/service.ts"],"names":[],"mappings":";;AACA,iDAAgD;AAChD,oCAAuC;AACvC,qCAAsC;AAgBtC,kBAAe,CAAC,GAAW,EAAQ,EAAE;IACpC,GAAG,CAAC,OAAO,GAAG,IAAA,mBAAW,EAAC,GAAG,CAAC,CAAC,MAAM,CACpC,CAAC,OAAO,EAAE,WAAW,EAAE,EAAE,CAAC,CAAC;QAC1B,GAAG,OAAO;QACV,GAAG,IAAA,qBAAU,EAAC,WAAW,EAAE,SAAS,EAAE;YACrC,gBAAgB,EAAE,CAAC,IAAY,EAAE,EAAE;gBAClC,MAAM,OAAO,GAAG,IAAA,iBAAS,EAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;gBAC9C,OAAO,IAAI,OAAO,EAAE,CAAC;YACtB,CAAC;SACD,CAAC;KACF,CAAC,EACF,EAAE,CACK,CAAC;AACV,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"paths.d.ts","sourceRoot":"","sources":["../../../packages/core/paths.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG,OAAO,GAAG,UAAU,CAAC;AAE/C,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,WAAW,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;CACd;AAED,wBAAgB,UAAU,CACxB,GAAG,EAAE;IAAE,KAAK,CAAC,EAAE,WAAW,EAAE,CAAA;CAAE,EAC9B,IAAI,EAAE,WAAW,GAChB,MAAM,GAAG,SAAS,CAEpB;AAED,wBAAgB,WAAW,CAAC,GAAG,EAAE;IAAE,KAAK,CAAC,EAAE,WAAW,EAAE,CAAA;CAAE,GAAG,MAAM,EAAE,CAEpE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"paths.js","sourceRoot":"","sources":["../../../packages/core/paths.ts"],"names":[],"mappings":";;AAOA,gCAKC;AAED,kCAEC;AATD,SAAgB,UAAU,CACxB,GAA8B,EAC9B,IAAiB;IAEjB,OAAO,GAAG,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,IAAI,CAAC;AACvD,CAAC;AAED,SAAgB,WAAW,CAAC,GAA8B;IACxD,OAAO,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;AAC9C,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../packages/core/types.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../../../packages/ui/react/components/Button/Button.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAG5D,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,MAAM,CAAA;AACnE,MAAM,MAAM,UAAU,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;AAE3C,MAAM,WAAW,WAAY,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IAK1E,OAAO,CAAC,EAAE,aAAa,CAAA;IAKvB,IAAI,CAAC,EAAE,UAAU,CAAA;IAIjB,OAAO,CAAC,EAAE,OAAO,CAAA;IAIjB,QAAQ,CAAC,EAAE,SAAS,CAAA;IAIpB,SAAS,CAAC,EAAE,SAAS,CAAA;IAKrB,WAAW,CAAC,EAAE,OAAO,CAAA;IAKrB,QAAQ,CAAC,EAAE,SAAS,CAAA;CACrB;AAED,QAAA,MAAM,MAAM,2GA4EX,CAAA;AAID,OAAO,EAAE,MAAM,EAAE,CAAA"}
|