zova-ui-vuetify 5.0.97
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/.editorconfig +9 -0
- package/.eslintignore +8 -0
- package/.eslintrc.cjs +4 -0
- package/.gitattributes +2 -0
- package/.gitignore +66 -0
- package/.npmrc +29 -0
- package/.vscode/extensions.json +9 -0
- package/.vscode/settings.json +57 -0
- package/.vscode/zova.code-snippets +18 -0
- package/LICENSE +21 -0
- package/README.md +124 -0
- package/env/.env +29 -0
- package/env/.env.development +0 -0
- package/env/.env.production +0 -0
- package/index.html +14 -0
- package/package.json +53 -0
- package/pnpm-workspace.yaml +7 -0
- package/prettier.config.cjs +2 -0
- package/public/favicon.ico +0 -0
- package/src/boot/app.vue +9 -0
- package/src/boot/main.ts +22 -0
- package/src/boot/router.ts +14 -0
- package/src/boot/vuetify.ts +18 -0
- package/src/boot/zova.ts +14 -0
- package/src/css/settings.scss +10 -0
- package/src/front/_config/config/config.app.ts +16 -0
- package/src/front/_config/config/config.ts +17 -0
- package/src/front/_config/config/config.web.ts +15 -0
- package/src/front/_config/locale/en-us.ts +5 -0
- package/src/front/_config/locale/zh-cn.ts +5 -0
- package/src/front/_config/locales.ts +7 -0
- package/src/front/_config/monkey.ts +24 -0
- package/src/front/typing/env.d.ts +5 -0
- package/src/front/typing/shims-vue.d.ts +10 -0
- package/src/front/typing/types.d.ts +2 -0
- package/src/module/.gitkeep +0 -0
- package/src/module-vendor/.gitkeep +0 -0
- package/src/suite/a-demo/modules/a-demo/package.json +29 -0
- package/src/suite/a-demo/modules/a-demo/src/assets/css/module.scss +0 -0
- package/src/suite/a-demo/modules/a-demo/src/bean/.gitkeep +0 -0
- package/src/suite/a-demo/modules/a-demo/src/component/card/controller.ts +25 -0
- package/src/suite/a-demo/modules/a-demo/src/component/card/index.vue +12 -0
- package/src/suite/a-demo/modules/a-demo/src/component/card/render.tsx +37 -0
- package/src/suite/a-demo/modules/a-demo/src/config/config.ts +5 -0
- package/src/suite/a-demo/modules/a-demo/src/config/constants.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/errors.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/index.ts +4 -0
- package/src/suite/a-demo/modules/a-demo/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/config/locales.ts +7 -0
- package/src/suite/a-demo/modules/a-demo/src/index.ts +7 -0
- package/src/suite/a-demo/modules/a-demo/src/page/component/controller.ts +9 -0
- package/src/suite/a-demo/modules/a-demo/src/page/component/index.vue +10 -0
- package/src/suite/a-demo/modules/a-demo/src/page/component/render.tsx +39 -0
- package/src/suite/a-demo/modules/a-demo/src/page/state/controller.ts +21 -0
- package/src/suite/a-demo/modules/a-demo/src/page/state/index.vue +10 -0
- package/src/suite/a-demo/modules/a-demo/src/page/state/render.tsx +23 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/beans.ts +4 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/components.ts +3 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/index.ts +3 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/scope.ts +30 -0
- package/src/suite/a-demo/modules/a-demo/src/resource/this.ts +4 -0
- package/src/suite/a-demo/modules/a-demo/src/routes.ts +8 -0
- package/src/suite/a-demo/modules/a-demo/src/types.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/src/typings.ts +1 -0
- package/src/suite/a-demo/modules/a-demo/tsconfig.json +5 -0
- package/src/suite/a-demo/package.json +11 -0
- package/src/suite/a-demo/tsconfig.base.json +4 -0
- package/src/suite/a-home/README.md +1 -0
- package/src/suite/a-home/modules/a-home/README.md +1 -0
- package/src/suite/a-home/modules/a-home/package.json +28 -0
- package/src/suite/a-home/modules/a-home/src/assets/css/module.scss +0 -0
- package/src/suite/a-home/modules/a-home/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/a-home/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/a-home/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/a-home/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/a-home/src/index.ts +7 -0
- package/src/suite/a-home/modules/a-home/src/page/home/controller.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/page/home/index.vue +10 -0
- package/src/suite/a-home/modules/a-home/src/page/home/render.tsx +21 -0
- package/src/suite/a-home/modules/a-home/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/a-home/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/a-home/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/routes.ts +4 -0
- package/src/suite/a-home/modules/a-home/src/types.ts +1 -0
- package/src/suite/a-home/modules/a-home/src/typings.ts +5 -0
- package/src/suite/a-home/modules/a-home/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-api/package.json +34 -0
- package/src/suite/a-home/modules/home-api/src/bean/store.api.ts +22 -0
- package/src/suite/a-home/modules/home-api/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-api/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-api/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-api/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-api/src/index.ts +7 -0
- package/src/suite/a-home/modules/home-api/src/monkey.ts +24 -0
- package/src/suite/a-home/modules/home-api/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-api/src/resource/beans.ts +8 -0
- package/src/suite/a-home/modules/home-api/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-api/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-api/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-api/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-api/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-api/src/types.ts +13 -0
- package/src/suite/a-home/modules/home-api/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-api/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/dingtalk-square.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/github.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/password.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/sms.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/wechat-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/auth/wxwork-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/coupon.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/course.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/distribution.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/hotsprings.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/kitchen-set.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/money-bag.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/party.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/provider.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/purchase.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/business/store.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/add.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/alert.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/archive.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-back.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-cycle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-down-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-down-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-down.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-drop-down.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-drop-up.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-forward.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-repeat.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-right-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-shuffle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-down.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/arrow-up.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/article.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/attachment-line.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/book.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/cabloy.svg +4 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox-checked.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox-intermediate.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox-off.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/checkbox.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/chevron-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/chevron-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/close.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/comment-dots.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/construction.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/copyright.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/cross-circle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/dashboard.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/database.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/delete-forever.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/delete.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/developer-board.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/done.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/dot.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/draft.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/drive-file-move.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/edit.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/expand-more.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/export.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/fast-forward.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/flow-chart.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/folder-open.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/folder.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/fullscreen-exit.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/fullscreen.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/grading.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/group-work.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/group.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/groups.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/heart.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/home.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/identification.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/import.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/info-circle.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/information-filled.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/information.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/label.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/language.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/layers.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/layout-columns.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/location-on.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/lock-open.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/lock.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/mail.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/mark-as-unread.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/mark-email-read.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/menu.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/message.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/module.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/more-horiz.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/notebook.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/open-in-new.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/open-with.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/people.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/person.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/play-arrow.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/popup.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/preview.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/radio-button-checked.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/radio-button-unchecked.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/redo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/remove.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/reply.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/reset.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/round-person-add.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save-and-return.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save-and-submit.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save-as-draft.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/save.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/search.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/send.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/settings.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/share.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/sort.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/star.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/stats-chart.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/stop.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/text-fields.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/timeline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/undo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/view-list.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/visibility.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/zoom-in.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/default/zoom-out.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/add-box-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/add-box.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/bookmark-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/bookmark.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/code-block.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/code.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-align-center.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-align-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-align-right.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-bold.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-italic.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-list-bulleted.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-list-numbered.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-quote.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-strikethrough.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/format-underlined.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/grid-on.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/horizontal-rule.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/image-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/image.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/insert-link-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/paragraph-break.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/paragraph.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/redo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/source-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/subscript.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/superscript.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/task-alt.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/title.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/editor/undo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/activity-none.svg +17 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/activity-service.svg +30 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/activity-user-task.svg +27 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/end-event-atom.svg +24 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/end-event-none.svg +22 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/gateway-exclusive.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/gateway-inclusive.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/gateway-parallel.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/start-event-atom.svg +16 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/start-event-none.svg +16 -0
- package/src/suite/a-home/modules/home-icon/icons/flow/start-event-timer.svg +16 -0
- package/src/suite/a-home/modules/home-icon/icons/login/call-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/chevron-left.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/done.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/lock-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/login/person-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/add-circle-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/alert-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/apps-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/archive-lock-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/archive-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/article-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/backspace-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/build-circle-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/calendar-today-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/check-circle-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-checked-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-off-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/copy-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/data-list-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/database-lock-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/delete-forever-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/delete-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/dict-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/draft-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/folder-transfer-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/group-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/heart-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/insert-emoticon-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/key-reset-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/label-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/layout-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/login-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/logout-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/mail-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/note-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/software-resource-cluster-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/software-resource-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/star-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/theme-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/timer-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/visibility-off-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/visibility-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/outline/work-history-outline.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/collaboration.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/level.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/organization.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/position.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/relation.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/role.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/shield-key.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/role/template.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/chat.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/facebook.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/github.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/public.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/record-voice-over.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/school.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/social/twitter.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/tools/pomotodo.svg +1 -0
- package/src/suite/a-home/modules/home-icon/icons/tools/spreadsheet.svg +1 -0
- package/src/suite/a-home/modules/home-icon/package.json +34 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/auth.svg +8 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/business.svg +12 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/default.svg +114 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/editor.svg +32 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/flow.svg +13 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/login.svg +7 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/outline.svg +41 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/role.svg +10 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/social.svg +9 -0
- package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/tools.svg +4 -0
- package/src/suite/a-home/modules/home-icon/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-icon/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-icon/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-icon/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/icons.ts +23 -0
- package/src/suite/a-home/modules/home-icon/src/config/index.ts +5 -0
- package/src/suite/a-home/modules/home-icon/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-icon/src/index.ts +6 -0
- package/src/suite/a-home/modules/home-icon/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-icon/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-icon/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/resource/icons.ts +235 -0
- package/src/suite/a-home/modules/home-icon/src/resource/index.ts +4 -0
- package/src/suite/a-home/modules/home-icon/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-icon/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-icon/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-icon/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-icon/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-icon/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-layout/package.json +29 -0
- package/src/suite/a-home/modules/home-layout/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-layout/src/component/essentialLink/controller.ts +21 -0
- package/src/suite/a-home/modules/home-layout/src/component/essentialLink/index.vue +12 -0
- package/src/suite/a-home/modules/home-layout/src/component/essentialLink/render.tsx +21 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/controller.ts +31 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/index.vue +12 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/render.tsx +68 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/controller.ts +16 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/index.vue +12 -0
- package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/render.tsx +18 -0
- package/src/suite/a-home/modules/home-layout/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-layout/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-layout/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-layout/src/index.ts +6 -0
- package/src/suite/a-home/modules/home-layout/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-layout/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-layout/src/resource/components.ts +7 -0
- package/src/suite/a-home/modules/home-layout/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-layout/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-layout/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-layout/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-layout/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-layout/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-layout/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-mock/package.json +30 -0
- package/src/suite/a-home/modules/home-mock/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-mock/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-mock/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-mock/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-mock/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-mock/src/index.ts +6 -0
- package/src/suite/a-home/modules/home-mock/src/mock/menu.fake.ts +65 -0
- package/src/suite/a-home/modules/home-mock/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-mock/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-mock/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-mock/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-mock/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-mock/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-mock/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-mock/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-mock/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-pagesystem/package.json +34 -0
- package/src/suite/a-home/modules/home-pagesystem/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-pagesystem/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-pagesystem/src/index.ts +6 -0
- package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/controller.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/index.vue +10 -0
- package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/render.tsx +24 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-pagesystem/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-pagesystem/src/routes.ts +22 -0
- package/src/suite/a-home/modules/home-pagesystem/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-pagesystem/tsconfig.json +5 -0
- package/src/suite/a-home/modules/home-router/package.json +37 -0
- package/src/suite/a-home/modules/home-router/src/bean/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-router/src/component/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-router/src/config/config.ts +5 -0
- package/src/suite/a-home/modules/home-router/src/config/constants.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/errors.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/index.ts +4 -0
- package/src/suite/a-home/modules/home-router/src/config/locale/en-us.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/locale/zh-cn.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/config/locales.ts +7 -0
- package/src/suite/a-home/modules/home-router/src/index.ts +7 -0
- package/src/suite/a-home/modules/home-router/src/local/router.ts +12 -0
- package/src/suite/a-home/modules/home-router/src/monkey.ts +17 -0
- package/src/suite/a-home/modules/home-router/src/page/.gitkeep +0 -0
- package/src/suite/a-home/modules/home-router/src/resource/beans.ts +4 -0
- package/src/suite/a-home/modules/home-router/src/resource/components.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/resource/index.ts +3 -0
- package/src/suite/a-home/modules/home-router/src/resource/scope.ts +30 -0
- package/src/suite/a-home/modules/home-router/src/resource/this.ts +4 -0
- package/src/suite/a-home/modules/home-router/src/routes.ts +3 -0
- package/src/suite/a-home/modules/home-router/src/types.ts +1 -0
- package/src/suite/a-home/modules/home-router/src/typings.ts +1 -0
- package/src/suite/a-home/modules/home-router/tsconfig.json +5 -0
- package/src/suite/a-home/package.json +17 -0
- package/src/suite/a-home/tsconfig.base.json +4 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/package.json +34 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/bean/.gitkeep +0 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/component/.gitkeep +0 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/config.ts +5 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/constants.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/errors.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/index.ts +4 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/locale/en-us.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/locale/zh-cn.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/config/locales.ts +7 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/index.ts +7 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/monkey.ts +37 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/page/.gitkeep +0 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/patch/icon.tsx +89 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/patch/svg.ts +29 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/resource/beans.ts +4 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/resource/components.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/resource/index.ts +3 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/resource/scope.ts +30 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/resource/this.ts +4 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/routes.ts +3 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/types.ts +18 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/src/typings.ts +1 -0
- package/src/suite-vendor/a-vuetify/modules/a-vuetify/tsconfig.json +5 -0
- package/src/suite-vendor/a-vuetify/package.json +11 -0
- package/src/suite-vendor/a-vuetify/tsconfig.base.json +4 -0
- package/tsconfig.base.cjs.json +3 -0
- package/tsconfig.base.esm.json +12 -0
- package/tsconfig.base.json +6 -0
- package/tsconfig.json +5 -0
- package/tsconfig.vue-tsc.json +5 -0
- package/vite.config.ts +53 -0
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
import 'zova';
|
|
2
|
+
declare module 'zova' {
|
|
3
|
+
export interface IIconRecord {
|
|
4
|
+
':auth:dingtalk-square': true;
|
|
5
|
+
':auth:github': true;
|
|
6
|
+
':auth:password': true;
|
|
7
|
+
':auth:sms': true;
|
|
8
|
+
':auth:wechat-outline': true;
|
|
9
|
+
':auth:wxwork-outline': true;
|
|
10
|
+
':business:coupon': true;
|
|
11
|
+
':business:course': true;
|
|
12
|
+
':business:distribution': true;
|
|
13
|
+
':business:hotsprings': true;
|
|
14
|
+
':business:kitchen-set': true;
|
|
15
|
+
':business:money-bag': true;
|
|
16
|
+
':business:party': true;
|
|
17
|
+
':business:provider': true;
|
|
18
|
+
':business:purchase': true;
|
|
19
|
+
':business:store': true;
|
|
20
|
+
'::add': true;
|
|
21
|
+
'::alert': true;
|
|
22
|
+
'::archive': true;
|
|
23
|
+
'::arrow-back': true;
|
|
24
|
+
'::arrow-cycle': true;
|
|
25
|
+
'::arrow-down-left': true;
|
|
26
|
+
'::arrow-down-right': true;
|
|
27
|
+
'::arrow-down': true;
|
|
28
|
+
'::arrow-drop-down': true;
|
|
29
|
+
'::arrow-drop-up': true;
|
|
30
|
+
'::arrow-forward': true;
|
|
31
|
+
'::arrow-left': true;
|
|
32
|
+
'::arrow-repeat': true;
|
|
33
|
+
'::arrow-right-left': true;
|
|
34
|
+
'::arrow-right': true;
|
|
35
|
+
'::arrow-shuffle': true;
|
|
36
|
+
'::arrow-up-down': true;
|
|
37
|
+
'::arrow-up-left': true;
|
|
38
|
+
'::arrow-up-right': true;
|
|
39
|
+
'::arrow-up': true;
|
|
40
|
+
'::article': true;
|
|
41
|
+
'::attachment-line': true;
|
|
42
|
+
'::book': true;
|
|
43
|
+
'::cabloy': true;
|
|
44
|
+
'::checkbox-checked': true;
|
|
45
|
+
'::checkbox-intermediate': true;
|
|
46
|
+
'::checkbox-off': true;
|
|
47
|
+
'::checkbox': true;
|
|
48
|
+
'::chevron-left': true;
|
|
49
|
+
'::chevron-right': true;
|
|
50
|
+
'::close': true;
|
|
51
|
+
'::comment-dots': true;
|
|
52
|
+
'::construction': true;
|
|
53
|
+
'::copyright': true;
|
|
54
|
+
'::cross-circle': true;
|
|
55
|
+
'::dashboard': true;
|
|
56
|
+
'::database': true;
|
|
57
|
+
'::delete-forever': true;
|
|
58
|
+
'::delete': true;
|
|
59
|
+
'::developer-board': true;
|
|
60
|
+
'::done': true;
|
|
61
|
+
'::dot': true;
|
|
62
|
+
'::draft': true;
|
|
63
|
+
'::drive-file-move': true;
|
|
64
|
+
'::edit': true;
|
|
65
|
+
'::expand-more': true;
|
|
66
|
+
'::export': true;
|
|
67
|
+
'::fast-forward': true;
|
|
68
|
+
'::flow-chart': true;
|
|
69
|
+
'::folder-open': true;
|
|
70
|
+
'::folder': true;
|
|
71
|
+
'::fullscreen-exit': true;
|
|
72
|
+
'::fullscreen': true;
|
|
73
|
+
'::grading': true;
|
|
74
|
+
'::group-work': true;
|
|
75
|
+
'::group': true;
|
|
76
|
+
'::groups': true;
|
|
77
|
+
'::heart': true;
|
|
78
|
+
'::home': true;
|
|
79
|
+
'::identification': true;
|
|
80
|
+
'::import': true;
|
|
81
|
+
'::info-circle': true;
|
|
82
|
+
'::information-filled': true;
|
|
83
|
+
'::information': true;
|
|
84
|
+
'::label': true;
|
|
85
|
+
'::language': true;
|
|
86
|
+
'::layers': true;
|
|
87
|
+
'::layout-columns': true;
|
|
88
|
+
'::location-on': true;
|
|
89
|
+
'::lock-open': true;
|
|
90
|
+
'::lock': true;
|
|
91
|
+
'::mail': true;
|
|
92
|
+
'::mark-as-unread': true;
|
|
93
|
+
'::mark-email-read': true;
|
|
94
|
+
'::menu': true;
|
|
95
|
+
'::message': true;
|
|
96
|
+
'::module': true;
|
|
97
|
+
'::more-horiz': true;
|
|
98
|
+
'::notebook': true;
|
|
99
|
+
'::open-in-new': true;
|
|
100
|
+
'::open-with': true;
|
|
101
|
+
'::people': true;
|
|
102
|
+
'::person': true;
|
|
103
|
+
'::play-arrow': true;
|
|
104
|
+
'::popup': true;
|
|
105
|
+
'::preview': true;
|
|
106
|
+
'::radio-button-checked': true;
|
|
107
|
+
'::radio-button-unchecked': true;
|
|
108
|
+
'::redo': true;
|
|
109
|
+
'::remove': true;
|
|
110
|
+
'::reply': true;
|
|
111
|
+
'::reset': true;
|
|
112
|
+
'::round-person-add': true;
|
|
113
|
+
'::save-and-return': true;
|
|
114
|
+
'::save-and-submit': true;
|
|
115
|
+
'::save-as-draft': true;
|
|
116
|
+
'::save': true;
|
|
117
|
+
'::search': true;
|
|
118
|
+
'::send': true;
|
|
119
|
+
'::settings': true;
|
|
120
|
+
'::share': true;
|
|
121
|
+
'::sort': true;
|
|
122
|
+
'::star': true;
|
|
123
|
+
'::stats-chart': true;
|
|
124
|
+
'::stop': true;
|
|
125
|
+
'::text-fields': true;
|
|
126
|
+
'::timeline': true;
|
|
127
|
+
'::undo': true;
|
|
128
|
+
'::view-list': true;
|
|
129
|
+
'::visibility': true;
|
|
130
|
+
'::zoom-in': true;
|
|
131
|
+
'::zoom-out': true;
|
|
132
|
+
':editor:add-box-outline': true;
|
|
133
|
+
':editor:add-box': true;
|
|
134
|
+
':editor:bookmark-outline': true;
|
|
135
|
+
':editor:bookmark': true;
|
|
136
|
+
':editor:code-block': true;
|
|
137
|
+
':editor:code': true;
|
|
138
|
+
':editor:format-align-center': true;
|
|
139
|
+
':editor:format-align-left': true;
|
|
140
|
+
':editor:format-align-right': true;
|
|
141
|
+
':editor:format-bold': true;
|
|
142
|
+
':editor:format-italic': true;
|
|
143
|
+
':editor:format-list-bulleted': true;
|
|
144
|
+
':editor:format-list-numbered': true;
|
|
145
|
+
':editor:format-quote': true;
|
|
146
|
+
':editor:format-strikethrough': true;
|
|
147
|
+
':editor:format-underlined': true;
|
|
148
|
+
':editor:grid-on': true;
|
|
149
|
+
':editor:horizontal-rule': true;
|
|
150
|
+
':editor:image-outline': true;
|
|
151
|
+
':editor:image': true;
|
|
152
|
+
':editor:insert-link-outline': true;
|
|
153
|
+
':editor:paragraph-break': true;
|
|
154
|
+
':editor:paragraph': true;
|
|
155
|
+
':editor:redo': true;
|
|
156
|
+
':editor:source-outline': true;
|
|
157
|
+
':editor:subscript': true;
|
|
158
|
+
':editor:superscript': true;
|
|
159
|
+
':editor:task-alt': true;
|
|
160
|
+
':editor:title': true;
|
|
161
|
+
':editor:undo': true;
|
|
162
|
+
':flow:activity-none': true;
|
|
163
|
+
':flow:activity-service': true;
|
|
164
|
+
':flow:activity-user-task': true;
|
|
165
|
+
':flow:end-event-atom': true;
|
|
166
|
+
':flow:end-event-none': true;
|
|
167
|
+
':flow:gateway-exclusive': true;
|
|
168
|
+
':flow:gateway-inclusive': true;
|
|
169
|
+
':flow:gateway-parallel': true;
|
|
170
|
+
':flow:start-event-atom': true;
|
|
171
|
+
':flow:start-event-none': true;
|
|
172
|
+
':flow:start-event-timer': true;
|
|
173
|
+
':login:call-outline': true;
|
|
174
|
+
':login:chevron-left': true;
|
|
175
|
+
':login:done': true;
|
|
176
|
+
':login:lock-outline': true;
|
|
177
|
+
':login:person-outline': true;
|
|
178
|
+
':outline:add-circle-outline': true;
|
|
179
|
+
':outline:alert-outline': true;
|
|
180
|
+
':outline:apps-outline': true;
|
|
181
|
+
':outline:archive-lock-outline': true;
|
|
182
|
+
':outline:archive-outline': true;
|
|
183
|
+
':outline:article-outline': true;
|
|
184
|
+
':outline:backspace-outline': true;
|
|
185
|
+
':outline:build-circle-outline': true;
|
|
186
|
+
':outline:calendar-today-outline': true;
|
|
187
|
+
':outline:check-circle-outline': true;
|
|
188
|
+
':outline:checkbox-checked-outline': true;
|
|
189
|
+
':outline:checkbox-off-outline': true;
|
|
190
|
+
':outline:checkbox-outline': true;
|
|
191
|
+
':outline:copy-outline': true;
|
|
192
|
+
':outline:data-list-outline': true;
|
|
193
|
+
':outline:database-lock-outline': true;
|
|
194
|
+
':outline:delete-forever-outline': true;
|
|
195
|
+
':outline:delete-outline': true;
|
|
196
|
+
':outline:dict-outline': true;
|
|
197
|
+
':outline:draft-outline': true;
|
|
198
|
+
':outline:folder-transfer-outline': true;
|
|
199
|
+
':outline:group-outline': true;
|
|
200
|
+
':outline:heart-outline': true;
|
|
201
|
+
':outline:insert-emoticon-outline': true;
|
|
202
|
+
':outline:key-reset-outline': true;
|
|
203
|
+
':outline:label-outline': true;
|
|
204
|
+
':outline:layout-outline': true;
|
|
205
|
+
':outline:login-outline': true;
|
|
206
|
+
':outline:logout-outline': true;
|
|
207
|
+
':outline:mail-outline': true;
|
|
208
|
+
':outline:note-outline': true;
|
|
209
|
+
':outline:software-resource-cluster-outline': true;
|
|
210
|
+
':outline:software-resource-outline': true;
|
|
211
|
+
':outline:star-outline': true;
|
|
212
|
+
':outline:theme-outline': true;
|
|
213
|
+
':outline:timer-outline': true;
|
|
214
|
+
':outline:visibility-off-outline': true;
|
|
215
|
+
':outline:visibility-outline': true;
|
|
216
|
+
':outline:work-history-outline': true;
|
|
217
|
+
':role:collaboration': true;
|
|
218
|
+
':role:level': true;
|
|
219
|
+
':role:organization': true;
|
|
220
|
+
':role:position': true;
|
|
221
|
+
':role:relation': true;
|
|
222
|
+
':role:role': true;
|
|
223
|
+
':role:shield-key': true;
|
|
224
|
+
':role:template': true;
|
|
225
|
+
':social:chat': true;
|
|
226
|
+
':social:facebook': true;
|
|
227
|
+
':social:github': true;
|
|
228
|
+
':social:public': true;
|
|
229
|
+
':social:record-voice-over': true;
|
|
230
|
+
':social:school': true;
|
|
231
|
+
':social:twitter': true;
|
|
232
|
+
':tools:pomotodo': true;
|
|
233
|
+
':tools:spreadsheet': true;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { BeanScopeBase, Scope, TypeLocaleBase, TypeModuleResource } from 'zova';
|
|
2
|
+
import { config, Errors, locales, constants } from '../config/index.js';
|
|
3
|
+
import { components } from './components.js';
|
|
4
|
+
|
|
5
|
+
@Scope()
|
|
6
|
+
export class ScopeModuleHomeIcon extends BeanScopeBase {}
|
|
7
|
+
|
|
8
|
+
export interface ScopeModuleHomeIcon
|
|
9
|
+
extends TypeModuleResource<
|
|
10
|
+
typeof components,
|
|
11
|
+
typeof config,
|
|
12
|
+
typeof Errors,
|
|
13
|
+
(typeof locales)[TypeLocaleBase],
|
|
14
|
+
typeof constants
|
|
15
|
+
> {}
|
|
16
|
+
|
|
17
|
+
import 'zova';
|
|
18
|
+
declare module 'zova' {
|
|
19
|
+
export interface IBeanScopeRecord {
|
|
20
|
+
'home-icon': ScopeModuleHomeIcon;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface IBeanScopeConfig {
|
|
24
|
+
'home-icon': ReturnType<typeof config>;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export interface IBeanScopeLocale {
|
|
28
|
+
'home-icon': (typeof locales)[TypeLocaleBase];
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * as AHome from 'zova-module-a-home';
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zova-module-home-layout",
|
|
3
|
+
"version": "5.0.0",
|
|
4
|
+
"title": "home-layout",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": [
|
|
9
|
+
"./src/index.ts",
|
|
10
|
+
"./dist/index.d.ts"
|
|
11
|
+
],
|
|
12
|
+
"import": "./src/index.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./*": "./*"
|
|
16
|
+
},
|
|
17
|
+
"description": "layout",
|
|
18
|
+
"keywords": [
|
|
19
|
+
"Cabloy Module"
|
|
20
|
+
],
|
|
21
|
+
"author": "zhennann",
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"zod": "^3.23.8"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { BeanControllerBase, Local } from 'zova';
|
|
2
|
+
|
|
3
|
+
export interface Props {
|
|
4
|
+
title: string;
|
|
5
|
+
caption?: string;
|
|
6
|
+
icon?: string;
|
|
7
|
+
href?: string;
|
|
8
|
+
to?: string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export type Emits = {};
|
|
12
|
+
|
|
13
|
+
export interface Slots {}
|
|
14
|
+
|
|
15
|
+
@Local()
|
|
16
|
+
export class ControllerEssentialLink extends BeanControllerBase<unknown, Props, Emits, Slots> {
|
|
17
|
+
static $propsDefault = {
|
|
18
|
+
caption: '',
|
|
19
|
+
icon: '',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<template></template>
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script setup lang="ts">
|
|
6
|
+
import { useController } from 'zova';
|
|
7
|
+
import { ControllerEssentialLink, Props, Emits } from './controller.js';
|
|
8
|
+
import { RenderEssentialLink } from './render.jsx';
|
|
9
|
+
const props = withDefaults(defineProps<Props>(), ControllerEssentialLink.$propsDefault);
|
|
10
|
+
const emit = defineEmits<Emits>();
|
|
11
|
+
useController(props, emit, ControllerEssentialLink, RenderEssentialLink);
|
|
12
|
+
</script>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { BeanRenderBase, Local } from 'zova';
|
|
2
|
+
import type { ControllerEssentialLink } from './controller.js';
|
|
3
|
+
import { VIcon, VListItem, VListItemTitle } from 'vuetify/components';
|
|
4
|
+
|
|
5
|
+
export interface RenderEssentialLink extends ControllerEssentialLink {}
|
|
6
|
+
|
|
7
|
+
@Local()
|
|
8
|
+
export class RenderEssentialLink extends BeanRenderBase {
|
|
9
|
+
render() {
|
|
10
|
+
const slots = {
|
|
11
|
+
prepend: () => {
|
|
12
|
+
return <VIcon icon={this.$props.icon}></VIcon>;
|
|
13
|
+
},
|
|
14
|
+
};
|
|
15
|
+
return (
|
|
16
|
+
<VListItem tag="a" href={this.$props.href} to={this.$props.to} subtitle={this.$props.caption} v-slots={slots}>
|
|
17
|
+
<VListItemTitle>{this.$props.title}</VListItemTitle>
|
|
18
|
+
</VListItem>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { BeanControllerBase, Local } from 'zova';
|
|
2
|
+
import * as ControllerEssentialLink from '../../component/essentialLink/controller.js';
|
|
3
|
+
|
|
4
|
+
export interface Props {}
|
|
5
|
+
|
|
6
|
+
export type Emits = {};
|
|
7
|
+
|
|
8
|
+
export interface Slots {}
|
|
9
|
+
|
|
10
|
+
export type TypeMenuItem = ControllerEssentialLink.Props & { folder?: boolean; separator?: boolean };
|
|
11
|
+
|
|
12
|
+
@Local()
|
|
13
|
+
export class ControllerLayoutDefault extends BeanControllerBase<unknown, Props, Emits, Slots> {
|
|
14
|
+
static $propsDefault = {};
|
|
15
|
+
|
|
16
|
+
leftDrawerOpen: boolean = false;
|
|
17
|
+
menu: TypeMenuItem[];
|
|
18
|
+
|
|
19
|
+
protected async __init__() {
|
|
20
|
+
await this.loadMenu();
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
async loadMenu() {
|
|
24
|
+
const res = await this.$api.get('/home/mock/getMenu');
|
|
25
|
+
this.menu = res.data.data;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
toggleLeftDrawer() {
|
|
29
|
+
this.leftDrawerOpen = !this.leftDrawerOpen;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<template></template>
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script setup lang="ts">
|
|
6
|
+
import { useController } from 'zova';
|
|
7
|
+
import { ControllerLayoutDefault, Props, Emits } from './controller.js';
|
|
8
|
+
import { RenderLayoutDefault } from './render.jsx';
|
|
9
|
+
const props = withDefaults(defineProps<Props>(), ControllerLayoutDefault.$propsDefault);
|
|
10
|
+
const emit = defineEmits<Emits>();
|
|
11
|
+
useController(props, emit, ControllerLayoutDefault, RenderLayoutDefault);
|
|
12
|
+
</script>
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { BeanRenderBase, Local } from 'zova';
|
|
2
|
+
import type { ControllerLayoutDefault, TypeMenuItem } from './controller.js';
|
|
3
|
+
import {
|
|
4
|
+
VApp,
|
|
5
|
+
VAppBar,
|
|
6
|
+
VAppBarNavIcon,
|
|
7
|
+
VBtn,
|
|
8
|
+
VDivider,
|
|
9
|
+
VList,
|
|
10
|
+
VListSubheader,
|
|
11
|
+
VMain,
|
|
12
|
+
VNavigationDrawer,
|
|
13
|
+
VSpacer,
|
|
14
|
+
VToolbarTitle,
|
|
15
|
+
} from 'vuetify/components';
|
|
16
|
+
import { JSX } from 'vue/jsx-runtime';
|
|
17
|
+
import EssentialLink from '../essentialLink/index.vue';
|
|
18
|
+
|
|
19
|
+
export interface RenderLayoutDefault extends ControllerLayoutDefault {}
|
|
20
|
+
|
|
21
|
+
@Local()
|
|
22
|
+
export class RenderLayoutDefault extends BeanRenderBase {
|
|
23
|
+
_renderMenuItem(item: TypeMenuItem) {
|
|
24
|
+
if (item.separator) {
|
|
25
|
+
return <VDivider></VDivider>;
|
|
26
|
+
}
|
|
27
|
+
if (item.folder) {
|
|
28
|
+
return <VListSubheader>{item.title}</VListSubheader>;
|
|
29
|
+
}
|
|
30
|
+
return (
|
|
31
|
+
<EssentialLink
|
|
32
|
+
key={item.title}
|
|
33
|
+
title={item.title}
|
|
34
|
+
caption={item.caption}
|
|
35
|
+
icon={item.icon}
|
|
36
|
+
href={item.href}
|
|
37
|
+
to={item.to}
|
|
38
|
+
/>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
_renderMenu() {
|
|
42
|
+
const domItems: JSX.Element[] = [];
|
|
43
|
+
for (const item of this.menu) {
|
|
44
|
+
domItems.push(this._renderMenuItem(item));
|
|
45
|
+
}
|
|
46
|
+
return <VList>{domItems}</VList>;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
render() {
|
|
50
|
+
return (
|
|
51
|
+
<VApp>
|
|
52
|
+
<VNavigationDrawer v-model={this.leftDrawerOpen} width="360">
|
|
53
|
+
{this._renderMenu()}
|
|
54
|
+
</VNavigationDrawer>
|
|
55
|
+
<VAppBar>
|
|
56
|
+
<VAppBarNavIcon icon="::menu" variant="text" onClick={() => this.toggleLeftDrawer()}></VAppBarNavIcon>
|
|
57
|
+
<VToolbarTitle>CabloyJS</VToolbarTitle>
|
|
58
|
+
<VSpacer></VSpacer>
|
|
59
|
+
<VBtn icon="::search" variant="text"></VBtn>
|
|
60
|
+
<VBtn icon="::more-horiz" variant="text"></VBtn>
|
|
61
|
+
</VAppBar>
|
|
62
|
+
<VMain>
|
|
63
|
+
<router-view />
|
|
64
|
+
</VMain>
|
|
65
|
+
</VApp>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { BeanControllerBase, Local } from 'zova';
|
|
2
|
+
|
|
3
|
+
export interface Props {
|
|
4
|
+
name?: string;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export type Emits = {};
|
|
8
|
+
|
|
9
|
+
export interface Slots {}
|
|
10
|
+
|
|
11
|
+
@Local()
|
|
12
|
+
export class ControllerLayoutEmpty extends BeanControllerBase<unknown, Props, Emits, Slots> {
|
|
13
|
+
static $propsDefault = {
|
|
14
|
+
name: '',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<template></template>
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script setup lang="ts">
|
|
6
|
+
import { useController } from 'zova';
|
|
7
|
+
import { ControllerLayoutEmpty, Props, Emits } from './controller.js';
|
|
8
|
+
import { RenderLayoutEmpty } from './render.jsx';
|
|
9
|
+
const props = withDefaults(defineProps<Props>(), ControllerLayoutEmpty.$propsDefault);
|
|
10
|
+
const emit = defineEmits<Emits>();
|
|
11
|
+
useController(props, emit, ControllerLayoutEmpty, RenderLayoutEmpty);
|
|
12
|
+
</script>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { BeanRenderBase, Local } from 'zova';
|
|
2
|
+
import type { ControllerLayoutEmpty } from './controller.js';
|
|
3
|
+
import { VApp, VMain } from 'vuetify/components';
|
|
4
|
+
|
|
5
|
+
export interface RenderLayoutEmpty extends ControllerLayoutEmpty {}
|
|
6
|
+
|
|
7
|
+
@Local()
|
|
8
|
+
export class RenderLayoutEmpty extends BeanRenderBase {
|
|
9
|
+
render() {
|
|
10
|
+
return (
|
|
11
|
+
<VApp>
|
|
12
|
+
<VMain>
|
|
13
|
+
<router-view />
|
|
14
|
+
</VMain>
|
|
15
|
+
</VApp>
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const constants = null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export enum Errors {}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default {};
|
|
File without changes
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { BeanScopeBase, Scope, TypeLocaleBase, TypeModuleResource } from 'zova';
|
|
2
|
+
import { config, Errors, locales, constants } from '../config/index.js';
|
|
3
|
+
import { components } from './components.js';
|
|
4
|
+
|
|
5
|
+
@Scope()
|
|
6
|
+
export class ScopeModuleHomeLayout extends BeanScopeBase {}
|
|
7
|
+
|
|
8
|
+
export interface ScopeModuleHomeLayout
|
|
9
|
+
extends TypeModuleResource<
|
|
10
|
+
typeof components,
|
|
11
|
+
typeof config,
|
|
12
|
+
typeof Errors,
|
|
13
|
+
(typeof locales)[TypeLocaleBase],
|
|
14
|
+
typeof constants
|
|
15
|
+
> {}
|
|
16
|
+
|
|
17
|
+
import 'zova';
|
|
18
|
+
declare module 'zova' {
|
|
19
|
+
export interface IBeanScopeRecord {
|
|
20
|
+
'home-layout': ScopeModuleHomeLayout;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface IBeanScopeConfig {
|
|
24
|
+
'home-layout': ReturnType<typeof config>;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export interface IBeanScopeLocale {
|
|
28
|
+
'home-layout': (typeof locales)[TypeLocaleBase];
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * as AHome from 'zova-module-a-home';
|