zova-ui-empty 5.0.93

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.
Files changed (485) hide show
  1. package/.editorconfig +9 -0
  2. package/.eslintignore +8 -0
  3. package/.eslintrc.cjs +4 -0
  4. package/.gitattributes +2 -0
  5. package/.gitignore +65 -0
  6. package/.npmrc +27 -0
  7. package/.vscode/extensions.json +9 -0
  8. package/.vscode/settings.json +57 -0
  9. package/.vscode/zova.code-snippets +18 -0
  10. package/LICENSE +21 -0
  11. package/README.md +1 -0
  12. package/env/.env +29 -0
  13. package/env/.env.development +0 -0
  14. package/env/.env.production +0 -0
  15. package/index.html +14 -0
  16. package/package.json +50 -0
  17. package/pnpm-workspace.yaml +7 -0
  18. package/prettier.config.cjs +2 -0
  19. package/public/favicon.ico +0 -0
  20. package/src/boot/app.vue +9 -0
  21. package/src/boot/main.ts +15 -0
  22. package/src/boot/router.ts +14 -0
  23. package/src/boot/zova.ts +14 -0
  24. package/src/css/settings.scss +19 -0
  25. package/src/front/_config/config/config.app.ts +16 -0
  26. package/src/front/_config/config/config.ts +17 -0
  27. package/src/front/_config/config/config.web.ts +15 -0
  28. package/src/front/_config/locale/en-us.ts +5 -0
  29. package/src/front/_config/locale/zh-cn.ts +5 -0
  30. package/src/front/_config/locales.ts +7 -0
  31. package/src/front/_config/monkey.ts +24 -0
  32. package/src/front/typing/env.d.ts +5 -0
  33. package/src/front/typing/shims-vue.d.ts +10 -0
  34. package/src/front/typing/types.d.ts +2 -0
  35. package/src/module/.gitkeep +0 -0
  36. package/src/module-vendor/.gitkeep +0 -0
  37. package/src/suite/a-demo/modules/a-demo/package.json +29 -0
  38. package/src/suite/a-demo/modules/a-demo/src/assets/css/module.scss +0 -0
  39. package/src/suite/a-demo/modules/a-demo/src/bean/.gitkeep +0 -0
  40. package/src/suite/a-demo/modules/a-demo/src/component/card/controller.ts +25 -0
  41. package/src/suite/a-demo/modules/a-demo/src/component/card/index.vue +12 -0
  42. package/src/suite/a-demo/modules/a-demo/src/component/card/render.tsx +35 -0
  43. package/src/suite/a-demo/modules/a-demo/src/config/config.ts +5 -0
  44. package/src/suite/a-demo/modules/a-demo/src/config/constants.ts +1 -0
  45. package/src/suite/a-demo/modules/a-demo/src/config/errors.ts +1 -0
  46. package/src/suite/a-demo/modules/a-demo/src/config/index.ts +4 -0
  47. package/src/suite/a-demo/modules/a-demo/src/config/locale/en-us.ts +1 -0
  48. package/src/suite/a-demo/modules/a-demo/src/config/locale/zh-cn.ts +1 -0
  49. package/src/suite/a-demo/modules/a-demo/src/config/locales.ts +7 -0
  50. package/src/suite/a-demo/modules/a-demo/src/index.ts +7 -0
  51. package/src/suite/a-demo/modules/a-demo/src/page/component/controller.ts +9 -0
  52. package/src/suite/a-demo/modules/a-demo/src/page/component/index.vue +10 -0
  53. package/src/suite/a-demo/modules/a-demo/src/page/component/render.tsx +39 -0
  54. package/src/suite/a-demo/modules/a-demo/src/page/state/controller.ts +21 -0
  55. package/src/suite/a-demo/modules/a-demo/src/page/state/index.vue +10 -0
  56. package/src/suite/a-demo/modules/a-demo/src/page/state/render.tsx +18 -0
  57. package/src/suite/a-demo/modules/a-demo/src/resource/beans.ts +4 -0
  58. package/src/suite/a-demo/modules/a-demo/src/resource/components.ts +3 -0
  59. package/src/suite/a-demo/modules/a-demo/src/resource/index.ts +3 -0
  60. package/src/suite/a-demo/modules/a-demo/src/resource/scope.ts +30 -0
  61. package/src/suite/a-demo/modules/a-demo/src/resource/this.ts +4 -0
  62. package/src/suite/a-demo/modules/a-demo/src/routes.ts +8 -0
  63. package/src/suite/a-demo/modules/a-demo/src/types.ts +1 -0
  64. package/src/suite/a-demo/modules/a-demo/src/typings.ts +1 -0
  65. package/src/suite/a-demo/modules/a-demo/tsconfig.json +5 -0
  66. package/src/suite/a-demo/package.json +11 -0
  67. package/src/suite/a-demo/tsconfig.base.json +4 -0
  68. package/src/suite/a-home/README.md +1 -0
  69. package/src/suite/a-home/modules/a-home/README.md +1 -0
  70. package/src/suite/a-home/modules/a-home/package.json +28 -0
  71. package/src/suite/a-home/modules/a-home/src/assets/css/module.scss +0 -0
  72. package/src/suite/a-home/modules/a-home/src/bean/.gitkeep +0 -0
  73. package/src/suite/a-home/modules/a-home/src/component/.gitkeep +0 -0
  74. package/src/suite/a-home/modules/a-home/src/config/config.ts +5 -0
  75. package/src/suite/a-home/modules/a-home/src/config/constants.ts +1 -0
  76. package/src/suite/a-home/modules/a-home/src/config/errors.ts +1 -0
  77. package/src/suite/a-home/modules/a-home/src/config/index.ts +4 -0
  78. package/src/suite/a-home/modules/a-home/src/config/locale/en-us.ts +1 -0
  79. package/src/suite/a-home/modules/a-home/src/config/locale/zh-cn.ts +1 -0
  80. package/src/suite/a-home/modules/a-home/src/config/locales.ts +7 -0
  81. package/src/suite/a-home/modules/a-home/src/index.ts +7 -0
  82. package/src/suite/a-home/modules/a-home/src/page/home/controller.ts +4 -0
  83. package/src/suite/a-home/modules/a-home/src/page/home/index.vue +10 -0
  84. package/src/suite/a-home/modules/a-home/src/page/home/render.tsx +21 -0
  85. package/src/suite/a-home/modules/a-home/src/resource/beans.ts +4 -0
  86. package/src/suite/a-home/modules/a-home/src/resource/components.ts +1 -0
  87. package/src/suite/a-home/modules/a-home/src/resource/index.ts +3 -0
  88. package/src/suite/a-home/modules/a-home/src/resource/scope.ts +30 -0
  89. package/src/suite/a-home/modules/a-home/src/resource/this.ts +4 -0
  90. package/src/suite/a-home/modules/a-home/src/routes.ts +4 -0
  91. package/src/suite/a-home/modules/a-home/src/types.ts +1 -0
  92. package/src/suite/a-home/modules/a-home/src/typings.ts +4 -0
  93. package/src/suite/a-home/modules/a-home/tsconfig.json +5 -0
  94. package/src/suite/a-home/modules/home-api/package.json +34 -0
  95. package/src/suite/a-home/modules/home-api/src/bean/store.api.ts +22 -0
  96. package/src/suite/a-home/modules/home-api/src/component/.gitkeep +0 -0
  97. package/src/suite/a-home/modules/home-api/src/config/config.ts +5 -0
  98. package/src/suite/a-home/modules/home-api/src/config/constants.ts +1 -0
  99. package/src/suite/a-home/modules/home-api/src/config/errors.ts +1 -0
  100. package/src/suite/a-home/modules/home-api/src/config/index.ts +4 -0
  101. package/src/suite/a-home/modules/home-api/src/config/locale/en-us.ts +1 -0
  102. package/src/suite/a-home/modules/home-api/src/config/locale/zh-cn.ts +1 -0
  103. package/src/suite/a-home/modules/home-api/src/config/locales.ts +7 -0
  104. package/src/suite/a-home/modules/home-api/src/index.ts +7 -0
  105. package/src/suite/a-home/modules/home-api/src/monkey.ts +24 -0
  106. package/src/suite/a-home/modules/home-api/src/page/.gitkeep +0 -0
  107. package/src/suite/a-home/modules/home-api/src/resource/beans.ts +8 -0
  108. package/src/suite/a-home/modules/home-api/src/resource/components.ts +1 -0
  109. package/src/suite/a-home/modules/home-api/src/resource/index.ts +3 -0
  110. package/src/suite/a-home/modules/home-api/src/resource/scope.ts +26 -0
  111. package/src/suite/a-home/modules/home-api/src/resource/this.ts +4 -0
  112. package/src/suite/a-home/modules/home-api/src/routes.ts +3 -0
  113. package/src/suite/a-home/modules/home-api/src/types.ts +13 -0
  114. package/src/suite/a-home/modules/home-api/src/typings.ts +1 -0
  115. package/src/suite/a-home/modules/home-api/tsconfig.json +5 -0
  116. package/src/suite/a-home/modules/home-icon/icons/auth/dingtalk-square.svg +1 -0
  117. package/src/suite/a-home/modules/home-icon/icons/auth/github.svg +1 -0
  118. package/src/suite/a-home/modules/home-icon/icons/auth/password.svg +1 -0
  119. package/src/suite/a-home/modules/home-icon/icons/auth/sms.svg +1 -0
  120. package/src/suite/a-home/modules/home-icon/icons/auth/wechat-outline.svg +1 -0
  121. package/src/suite/a-home/modules/home-icon/icons/auth/wxwork-outline.svg +1 -0
  122. package/src/suite/a-home/modules/home-icon/icons/business/coupon.svg +1 -0
  123. package/src/suite/a-home/modules/home-icon/icons/business/course.svg +1 -0
  124. package/src/suite/a-home/modules/home-icon/icons/business/distribution.svg +1 -0
  125. package/src/suite/a-home/modules/home-icon/icons/business/hotsprings.svg +1 -0
  126. package/src/suite/a-home/modules/home-icon/icons/business/kitchen-set.svg +1 -0
  127. package/src/suite/a-home/modules/home-icon/icons/business/money-bag.svg +1 -0
  128. package/src/suite/a-home/modules/home-icon/icons/business/party.svg +1 -0
  129. package/src/suite/a-home/modules/home-icon/icons/business/provider.svg +1 -0
  130. package/src/suite/a-home/modules/home-icon/icons/business/purchase.svg +1 -0
  131. package/src/suite/a-home/modules/home-icon/icons/business/store.svg +1 -0
  132. package/src/suite/a-home/modules/home-icon/icons/default/add.svg +1 -0
  133. package/src/suite/a-home/modules/home-icon/icons/default/alert.svg +1 -0
  134. package/src/suite/a-home/modules/home-icon/icons/default/archive.svg +1 -0
  135. package/src/suite/a-home/modules/home-icon/icons/default/arrow-back.svg +1 -0
  136. package/src/suite/a-home/modules/home-icon/icons/default/arrow-cycle.svg +1 -0
  137. package/src/suite/a-home/modules/home-icon/icons/default/arrow-down-left.svg +1 -0
  138. package/src/suite/a-home/modules/home-icon/icons/default/arrow-down-right.svg +1 -0
  139. package/src/suite/a-home/modules/home-icon/icons/default/arrow-down.svg +1 -0
  140. package/src/suite/a-home/modules/home-icon/icons/default/arrow-drop-down.svg +1 -0
  141. package/src/suite/a-home/modules/home-icon/icons/default/arrow-drop-up.svg +1 -0
  142. package/src/suite/a-home/modules/home-icon/icons/default/arrow-forward.svg +1 -0
  143. package/src/suite/a-home/modules/home-icon/icons/default/arrow-left.svg +1 -0
  144. package/src/suite/a-home/modules/home-icon/icons/default/arrow-repeat.svg +1 -0
  145. package/src/suite/a-home/modules/home-icon/icons/default/arrow-right-left.svg +1 -0
  146. package/src/suite/a-home/modules/home-icon/icons/default/arrow-right.svg +1 -0
  147. package/src/suite/a-home/modules/home-icon/icons/default/arrow-shuffle.svg +1 -0
  148. package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-down.svg +1 -0
  149. package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-left.svg +1 -0
  150. package/src/suite/a-home/modules/home-icon/icons/default/arrow-up-right.svg +1 -0
  151. package/src/suite/a-home/modules/home-icon/icons/default/arrow-up.svg +1 -0
  152. package/src/suite/a-home/modules/home-icon/icons/default/article.svg +1 -0
  153. package/src/suite/a-home/modules/home-icon/icons/default/attachment-line.svg +1 -0
  154. package/src/suite/a-home/modules/home-icon/icons/default/book.svg +1 -0
  155. package/src/suite/a-home/modules/home-icon/icons/default/cabloy.svg +4 -0
  156. package/src/suite/a-home/modules/home-icon/icons/default/checkbox-checked.svg +1 -0
  157. package/src/suite/a-home/modules/home-icon/icons/default/checkbox-intermediate.svg +1 -0
  158. package/src/suite/a-home/modules/home-icon/icons/default/checkbox-off.svg +1 -0
  159. package/src/suite/a-home/modules/home-icon/icons/default/checkbox.svg +1 -0
  160. package/src/suite/a-home/modules/home-icon/icons/default/chevron-left.svg +1 -0
  161. package/src/suite/a-home/modules/home-icon/icons/default/chevron-right.svg +1 -0
  162. package/src/suite/a-home/modules/home-icon/icons/default/close.svg +1 -0
  163. package/src/suite/a-home/modules/home-icon/icons/default/comment-dots.svg +1 -0
  164. package/src/suite/a-home/modules/home-icon/icons/default/construction.svg +1 -0
  165. package/src/suite/a-home/modules/home-icon/icons/default/copyright.svg +1 -0
  166. package/src/suite/a-home/modules/home-icon/icons/default/cross-circle.svg +1 -0
  167. package/src/suite/a-home/modules/home-icon/icons/default/dashboard.svg +1 -0
  168. package/src/suite/a-home/modules/home-icon/icons/default/database.svg +1 -0
  169. package/src/suite/a-home/modules/home-icon/icons/default/delete-forever.svg +1 -0
  170. package/src/suite/a-home/modules/home-icon/icons/default/delete.svg +1 -0
  171. package/src/suite/a-home/modules/home-icon/icons/default/developer-board.svg +1 -0
  172. package/src/suite/a-home/modules/home-icon/icons/default/done.svg +1 -0
  173. package/src/suite/a-home/modules/home-icon/icons/default/dot.svg +1 -0
  174. package/src/suite/a-home/modules/home-icon/icons/default/draft.svg +1 -0
  175. package/src/suite/a-home/modules/home-icon/icons/default/drive-file-move.svg +1 -0
  176. package/src/suite/a-home/modules/home-icon/icons/default/edit.svg +1 -0
  177. package/src/suite/a-home/modules/home-icon/icons/default/expand-more.svg +1 -0
  178. package/src/suite/a-home/modules/home-icon/icons/default/export.svg +1 -0
  179. package/src/suite/a-home/modules/home-icon/icons/default/fast-forward.svg +1 -0
  180. package/src/suite/a-home/modules/home-icon/icons/default/flow-chart.svg +1 -0
  181. package/src/suite/a-home/modules/home-icon/icons/default/folder-open.svg +1 -0
  182. package/src/suite/a-home/modules/home-icon/icons/default/folder.svg +1 -0
  183. package/src/suite/a-home/modules/home-icon/icons/default/fullscreen-exit.svg +1 -0
  184. package/src/suite/a-home/modules/home-icon/icons/default/fullscreen.svg +1 -0
  185. package/src/suite/a-home/modules/home-icon/icons/default/grading.svg +1 -0
  186. package/src/suite/a-home/modules/home-icon/icons/default/group-work.svg +1 -0
  187. package/src/suite/a-home/modules/home-icon/icons/default/group.svg +1 -0
  188. package/src/suite/a-home/modules/home-icon/icons/default/groups.svg +1 -0
  189. package/src/suite/a-home/modules/home-icon/icons/default/heart.svg +1 -0
  190. package/src/suite/a-home/modules/home-icon/icons/default/home.svg +1 -0
  191. package/src/suite/a-home/modules/home-icon/icons/default/identification.svg +1 -0
  192. package/src/suite/a-home/modules/home-icon/icons/default/import.svg +1 -0
  193. package/src/suite/a-home/modules/home-icon/icons/default/info-circle.svg +1 -0
  194. package/src/suite/a-home/modules/home-icon/icons/default/information-filled.svg +1 -0
  195. package/src/suite/a-home/modules/home-icon/icons/default/information.svg +1 -0
  196. package/src/suite/a-home/modules/home-icon/icons/default/label.svg +1 -0
  197. package/src/suite/a-home/modules/home-icon/icons/default/language.svg +1 -0
  198. package/src/suite/a-home/modules/home-icon/icons/default/layers.svg +1 -0
  199. package/src/suite/a-home/modules/home-icon/icons/default/layout-columns.svg +1 -0
  200. package/src/suite/a-home/modules/home-icon/icons/default/location-on.svg +1 -0
  201. package/src/suite/a-home/modules/home-icon/icons/default/lock-open.svg +1 -0
  202. package/src/suite/a-home/modules/home-icon/icons/default/lock.svg +1 -0
  203. package/src/suite/a-home/modules/home-icon/icons/default/mail.svg +1 -0
  204. package/src/suite/a-home/modules/home-icon/icons/default/mark-as-unread.svg +1 -0
  205. package/src/suite/a-home/modules/home-icon/icons/default/mark-email-read.svg +1 -0
  206. package/src/suite/a-home/modules/home-icon/icons/default/menu.svg +1 -0
  207. package/src/suite/a-home/modules/home-icon/icons/default/message.svg +1 -0
  208. package/src/suite/a-home/modules/home-icon/icons/default/module.svg +1 -0
  209. package/src/suite/a-home/modules/home-icon/icons/default/more-horiz.svg +1 -0
  210. package/src/suite/a-home/modules/home-icon/icons/default/notebook.svg +1 -0
  211. package/src/suite/a-home/modules/home-icon/icons/default/open-in-new.svg +1 -0
  212. package/src/suite/a-home/modules/home-icon/icons/default/open-with.svg +1 -0
  213. package/src/suite/a-home/modules/home-icon/icons/default/people.svg +1 -0
  214. package/src/suite/a-home/modules/home-icon/icons/default/person.svg +1 -0
  215. package/src/suite/a-home/modules/home-icon/icons/default/play-arrow.svg +1 -0
  216. package/src/suite/a-home/modules/home-icon/icons/default/popup.svg +1 -0
  217. package/src/suite/a-home/modules/home-icon/icons/default/preview.svg +1 -0
  218. package/src/suite/a-home/modules/home-icon/icons/default/radio-button-checked.svg +1 -0
  219. package/src/suite/a-home/modules/home-icon/icons/default/radio-button-unchecked.svg +1 -0
  220. package/src/suite/a-home/modules/home-icon/icons/default/redo.svg +1 -0
  221. package/src/suite/a-home/modules/home-icon/icons/default/remove.svg +1 -0
  222. package/src/suite/a-home/modules/home-icon/icons/default/reply.svg +1 -0
  223. package/src/suite/a-home/modules/home-icon/icons/default/reset.svg +1 -0
  224. package/src/suite/a-home/modules/home-icon/icons/default/round-person-add.svg +1 -0
  225. package/src/suite/a-home/modules/home-icon/icons/default/save-and-return.svg +1 -0
  226. package/src/suite/a-home/modules/home-icon/icons/default/save-and-submit.svg +1 -0
  227. package/src/suite/a-home/modules/home-icon/icons/default/save-as-draft.svg +1 -0
  228. package/src/suite/a-home/modules/home-icon/icons/default/save.svg +1 -0
  229. package/src/suite/a-home/modules/home-icon/icons/default/search.svg +1 -0
  230. package/src/suite/a-home/modules/home-icon/icons/default/send.svg +1 -0
  231. package/src/suite/a-home/modules/home-icon/icons/default/settings.svg +1 -0
  232. package/src/suite/a-home/modules/home-icon/icons/default/share.svg +1 -0
  233. package/src/suite/a-home/modules/home-icon/icons/default/sort.svg +1 -0
  234. package/src/suite/a-home/modules/home-icon/icons/default/star.svg +1 -0
  235. package/src/suite/a-home/modules/home-icon/icons/default/stats-chart.svg +1 -0
  236. package/src/suite/a-home/modules/home-icon/icons/default/stop.svg +1 -0
  237. package/src/suite/a-home/modules/home-icon/icons/default/text-fields.svg +1 -0
  238. package/src/suite/a-home/modules/home-icon/icons/default/timeline.svg +1 -0
  239. package/src/suite/a-home/modules/home-icon/icons/default/undo.svg +1 -0
  240. package/src/suite/a-home/modules/home-icon/icons/default/view-list.svg +1 -0
  241. package/src/suite/a-home/modules/home-icon/icons/default/visibility.svg +1 -0
  242. package/src/suite/a-home/modules/home-icon/icons/default/zoom-in.svg +1 -0
  243. package/src/suite/a-home/modules/home-icon/icons/default/zoom-out.svg +1 -0
  244. package/src/suite/a-home/modules/home-icon/icons/editor/add-box-outline.svg +1 -0
  245. package/src/suite/a-home/modules/home-icon/icons/editor/add-box.svg +1 -0
  246. package/src/suite/a-home/modules/home-icon/icons/editor/bookmark-outline.svg +1 -0
  247. package/src/suite/a-home/modules/home-icon/icons/editor/bookmark.svg +1 -0
  248. package/src/suite/a-home/modules/home-icon/icons/editor/code-block.svg +1 -0
  249. package/src/suite/a-home/modules/home-icon/icons/editor/code.svg +1 -0
  250. package/src/suite/a-home/modules/home-icon/icons/editor/format-align-center.svg +1 -0
  251. package/src/suite/a-home/modules/home-icon/icons/editor/format-align-left.svg +1 -0
  252. package/src/suite/a-home/modules/home-icon/icons/editor/format-align-right.svg +1 -0
  253. package/src/suite/a-home/modules/home-icon/icons/editor/format-bold.svg +1 -0
  254. package/src/suite/a-home/modules/home-icon/icons/editor/format-italic.svg +1 -0
  255. package/src/suite/a-home/modules/home-icon/icons/editor/format-list-bulleted.svg +1 -0
  256. package/src/suite/a-home/modules/home-icon/icons/editor/format-list-numbered.svg +1 -0
  257. package/src/suite/a-home/modules/home-icon/icons/editor/format-quote.svg +1 -0
  258. package/src/suite/a-home/modules/home-icon/icons/editor/format-strikethrough.svg +1 -0
  259. package/src/suite/a-home/modules/home-icon/icons/editor/format-underlined.svg +1 -0
  260. package/src/suite/a-home/modules/home-icon/icons/editor/grid-on.svg +1 -0
  261. package/src/suite/a-home/modules/home-icon/icons/editor/horizontal-rule.svg +1 -0
  262. package/src/suite/a-home/modules/home-icon/icons/editor/image-outline.svg +1 -0
  263. package/src/suite/a-home/modules/home-icon/icons/editor/image.svg +1 -0
  264. package/src/suite/a-home/modules/home-icon/icons/editor/insert-link-outline.svg +1 -0
  265. package/src/suite/a-home/modules/home-icon/icons/editor/paragraph-break.svg +1 -0
  266. package/src/suite/a-home/modules/home-icon/icons/editor/paragraph.svg +1 -0
  267. package/src/suite/a-home/modules/home-icon/icons/editor/redo.svg +1 -0
  268. package/src/suite/a-home/modules/home-icon/icons/editor/source-outline.svg +1 -0
  269. package/src/suite/a-home/modules/home-icon/icons/editor/subscript.svg +1 -0
  270. package/src/suite/a-home/modules/home-icon/icons/editor/superscript.svg +1 -0
  271. package/src/suite/a-home/modules/home-icon/icons/editor/task-alt.svg +1 -0
  272. package/src/suite/a-home/modules/home-icon/icons/editor/title.svg +1 -0
  273. package/src/suite/a-home/modules/home-icon/icons/editor/undo.svg +1 -0
  274. package/src/suite/a-home/modules/home-icon/icons/flow/activity-none.svg +17 -0
  275. package/src/suite/a-home/modules/home-icon/icons/flow/activity-service.svg +30 -0
  276. package/src/suite/a-home/modules/home-icon/icons/flow/activity-user-task.svg +27 -0
  277. package/src/suite/a-home/modules/home-icon/icons/flow/end-event-atom.svg +24 -0
  278. package/src/suite/a-home/modules/home-icon/icons/flow/end-event-none.svg +22 -0
  279. package/src/suite/a-home/modules/home-icon/icons/flow/gateway-exclusive.svg +1 -0
  280. package/src/suite/a-home/modules/home-icon/icons/flow/gateway-inclusive.svg +1 -0
  281. package/src/suite/a-home/modules/home-icon/icons/flow/gateway-parallel.svg +1 -0
  282. package/src/suite/a-home/modules/home-icon/icons/flow/start-event-atom.svg +16 -0
  283. package/src/suite/a-home/modules/home-icon/icons/flow/start-event-none.svg +16 -0
  284. package/src/suite/a-home/modules/home-icon/icons/flow/start-event-timer.svg +16 -0
  285. package/src/suite/a-home/modules/home-icon/icons/login/call-outline.svg +1 -0
  286. package/src/suite/a-home/modules/home-icon/icons/login/chevron-left.svg +1 -0
  287. package/src/suite/a-home/modules/home-icon/icons/login/done.svg +1 -0
  288. package/src/suite/a-home/modules/home-icon/icons/login/lock-outline.svg +1 -0
  289. package/src/suite/a-home/modules/home-icon/icons/login/person-outline.svg +1 -0
  290. package/src/suite/a-home/modules/home-icon/icons/outline/add-circle-outline.svg +1 -0
  291. package/src/suite/a-home/modules/home-icon/icons/outline/alert-outline.svg +1 -0
  292. package/src/suite/a-home/modules/home-icon/icons/outline/apps-outline.svg +1 -0
  293. package/src/suite/a-home/modules/home-icon/icons/outline/archive-lock-outline.svg +1 -0
  294. package/src/suite/a-home/modules/home-icon/icons/outline/archive-outline.svg +1 -0
  295. package/src/suite/a-home/modules/home-icon/icons/outline/article-outline.svg +1 -0
  296. package/src/suite/a-home/modules/home-icon/icons/outline/backspace-outline.svg +1 -0
  297. package/src/suite/a-home/modules/home-icon/icons/outline/build-circle-outline.svg +1 -0
  298. package/src/suite/a-home/modules/home-icon/icons/outline/calendar-today-outline.svg +1 -0
  299. package/src/suite/a-home/modules/home-icon/icons/outline/check-circle-outline.svg +1 -0
  300. package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-checked-outline.svg +1 -0
  301. package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-off-outline.svg +1 -0
  302. package/src/suite/a-home/modules/home-icon/icons/outline/checkbox-outline.svg +1 -0
  303. package/src/suite/a-home/modules/home-icon/icons/outline/copy-outline.svg +1 -0
  304. package/src/suite/a-home/modules/home-icon/icons/outline/data-list-outline.svg +1 -0
  305. package/src/suite/a-home/modules/home-icon/icons/outline/database-lock-outline.svg +1 -0
  306. package/src/suite/a-home/modules/home-icon/icons/outline/delete-forever-outline.svg +1 -0
  307. package/src/suite/a-home/modules/home-icon/icons/outline/delete-outline.svg +1 -0
  308. package/src/suite/a-home/modules/home-icon/icons/outline/dict-outline.svg +1 -0
  309. package/src/suite/a-home/modules/home-icon/icons/outline/draft-outline.svg +1 -0
  310. package/src/suite/a-home/modules/home-icon/icons/outline/folder-transfer-outline.svg +1 -0
  311. package/src/suite/a-home/modules/home-icon/icons/outline/group-outline.svg +1 -0
  312. package/src/suite/a-home/modules/home-icon/icons/outline/heart-outline.svg +1 -0
  313. package/src/suite/a-home/modules/home-icon/icons/outline/insert-emoticon-outline.svg +1 -0
  314. package/src/suite/a-home/modules/home-icon/icons/outline/key-reset-outline.svg +1 -0
  315. package/src/suite/a-home/modules/home-icon/icons/outline/label-outline.svg +1 -0
  316. package/src/suite/a-home/modules/home-icon/icons/outline/layout-outline.svg +1 -0
  317. package/src/suite/a-home/modules/home-icon/icons/outline/login-outline.svg +1 -0
  318. package/src/suite/a-home/modules/home-icon/icons/outline/logout-outline.svg +1 -0
  319. package/src/suite/a-home/modules/home-icon/icons/outline/mail-outline.svg +1 -0
  320. package/src/suite/a-home/modules/home-icon/icons/outline/note-outline.svg +1 -0
  321. package/src/suite/a-home/modules/home-icon/icons/outline/software-resource-cluster-outline.svg +1 -0
  322. package/src/suite/a-home/modules/home-icon/icons/outline/software-resource-outline.svg +1 -0
  323. package/src/suite/a-home/modules/home-icon/icons/outline/star-outline.svg +1 -0
  324. package/src/suite/a-home/modules/home-icon/icons/outline/theme-outline.svg +1 -0
  325. package/src/suite/a-home/modules/home-icon/icons/outline/timer-outline.svg +1 -0
  326. package/src/suite/a-home/modules/home-icon/icons/outline/visibility-off-outline.svg +1 -0
  327. package/src/suite/a-home/modules/home-icon/icons/outline/visibility-outline.svg +1 -0
  328. package/src/suite/a-home/modules/home-icon/icons/outline/work-history-outline.svg +1 -0
  329. package/src/suite/a-home/modules/home-icon/icons/role/collaboration.svg +1 -0
  330. package/src/suite/a-home/modules/home-icon/icons/role/level.svg +1 -0
  331. package/src/suite/a-home/modules/home-icon/icons/role/organization.svg +1 -0
  332. package/src/suite/a-home/modules/home-icon/icons/role/position.svg +1 -0
  333. package/src/suite/a-home/modules/home-icon/icons/role/relation.svg +1 -0
  334. package/src/suite/a-home/modules/home-icon/icons/role/role.svg +1 -0
  335. package/src/suite/a-home/modules/home-icon/icons/role/shield-key.svg +1 -0
  336. package/src/suite/a-home/modules/home-icon/icons/role/template.svg +1 -0
  337. package/src/suite/a-home/modules/home-icon/icons/social/chat.svg +1 -0
  338. package/src/suite/a-home/modules/home-icon/icons/social/facebook.svg +1 -0
  339. package/src/suite/a-home/modules/home-icon/icons/social/github.svg +1 -0
  340. package/src/suite/a-home/modules/home-icon/icons/social/public.svg +1 -0
  341. package/src/suite/a-home/modules/home-icon/icons/social/record-voice-over.svg +1 -0
  342. package/src/suite/a-home/modules/home-icon/icons/social/school.svg +1 -0
  343. package/src/suite/a-home/modules/home-icon/icons/social/twitter.svg +1 -0
  344. package/src/suite/a-home/modules/home-icon/icons/tools/pomotodo.svg +1 -0
  345. package/src/suite/a-home/modules/home-icon/icons/tools/spreadsheet.svg +1 -0
  346. package/src/suite/a-home/modules/home-icon/package.json +34 -0
  347. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/auth.svg +8 -0
  348. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/business.svg +12 -0
  349. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/default.svg +114 -0
  350. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/editor.svg +32 -0
  351. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/flow.svg +13 -0
  352. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/login.svg +7 -0
  353. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/outline.svg +41 -0
  354. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/role.svg +10 -0
  355. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/social.svg +9 -0
  356. package/src/suite/a-home/modules/home-icon/src/assets/icons/groups/tools.svg +4 -0
  357. package/src/suite/a-home/modules/home-icon/src/bean/.gitkeep +0 -0
  358. package/src/suite/a-home/modules/home-icon/src/component/.gitkeep +0 -0
  359. package/src/suite/a-home/modules/home-icon/src/config/config.ts +5 -0
  360. package/src/suite/a-home/modules/home-icon/src/config/constants.ts +1 -0
  361. package/src/suite/a-home/modules/home-icon/src/config/errors.ts +1 -0
  362. package/src/suite/a-home/modules/home-icon/src/config/icons.ts +23 -0
  363. package/src/suite/a-home/modules/home-icon/src/config/index.ts +5 -0
  364. package/src/suite/a-home/modules/home-icon/src/config/locale/en-us.ts +1 -0
  365. package/src/suite/a-home/modules/home-icon/src/config/locale/zh-cn.ts +1 -0
  366. package/src/suite/a-home/modules/home-icon/src/config/locales.ts +7 -0
  367. package/src/suite/a-home/modules/home-icon/src/index.ts +6 -0
  368. package/src/suite/a-home/modules/home-icon/src/page/.gitkeep +0 -0
  369. package/src/suite/a-home/modules/home-icon/src/resource/beans.ts +4 -0
  370. package/src/suite/a-home/modules/home-icon/src/resource/components.ts +1 -0
  371. package/src/suite/a-home/modules/home-icon/src/resource/icons.ts +235 -0
  372. package/src/suite/a-home/modules/home-icon/src/resource/index.ts +4 -0
  373. package/src/suite/a-home/modules/home-icon/src/resource/scope.ts +26 -0
  374. package/src/suite/a-home/modules/home-icon/src/resource/this.ts +4 -0
  375. package/src/suite/a-home/modules/home-icon/src/routes.ts +3 -0
  376. package/src/suite/a-home/modules/home-icon/src/types.ts +1 -0
  377. package/src/suite/a-home/modules/home-icon/src/typings.ts +1 -0
  378. package/src/suite/a-home/modules/home-icon/tsconfig.json +5 -0
  379. package/src/suite/a-home/modules/home-layout/package.json +29 -0
  380. package/src/suite/a-home/modules/home-layout/src/assets/css/module.scss +14 -0
  381. package/src/suite/a-home/modules/home-layout/src/bean/.gitkeep +0 -0
  382. package/src/suite/a-home/modules/home-layout/src/component/essentialLink/controller.ts +21 -0
  383. package/src/suite/a-home/modules/home-layout/src/component/essentialLink/index.vue +12 -0
  384. package/src/suite/a-home/modules/home-layout/src/component/essentialLink/render.tsx +27 -0
  385. package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/controller.ts +31 -0
  386. package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/index.vue +12 -0
  387. package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/render.tsx +46 -0
  388. package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/controller.ts +16 -0
  389. package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/index.vue +12 -0
  390. package/src/suite/a-home/modules/home-layout/src/component/layoutEmpty/render.tsx +15 -0
  391. package/src/suite/a-home/modules/home-layout/src/config/config.ts +5 -0
  392. package/src/suite/a-home/modules/home-layout/src/config/constants.ts +1 -0
  393. package/src/suite/a-home/modules/home-layout/src/config/errors.ts +1 -0
  394. package/src/suite/a-home/modules/home-layout/src/config/index.ts +4 -0
  395. package/src/suite/a-home/modules/home-layout/src/config/locale/en-us.ts +1 -0
  396. package/src/suite/a-home/modules/home-layout/src/config/locale/zh-cn.ts +1 -0
  397. package/src/suite/a-home/modules/home-layout/src/config/locales.ts +7 -0
  398. package/src/suite/a-home/modules/home-layout/src/index.ts +7 -0
  399. package/src/suite/a-home/modules/home-layout/src/page/.gitkeep +0 -0
  400. package/src/suite/a-home/modules/home-layout/src/resource/beans.ts +4 -0
  401. package/src/suite/a-home/modules/home-layout/src/resource/components.ts +7 -0
  402. package/src/suite/a-home/modules/home-layout/src/resource/index.ts +3 -0
  403. package/src/suite/a-home/modules/home-layout/src/resource/scope.ts +30 -0
  404. package/src/suite/a-home/modules/home-layout/src/resource/this.ts +4 -0
  405. package/src/suite/a-home/modules/home-layout/src/routes.ts +3 -0
  406. package/src/suite/a-home/modules/home-layout/src/types.ts +1 -0
  407. package/src/suite/a-home/modules/home-layout/src/typings.ts +1 -0
  408. package/src/suite/a-home/modules/home-layout/tsconfig.json +5 -0
  409. package/src/suite/a-home/modules/home-mock/package.json +30 -0
  410. package/src/suite/a-home/modules/home-mock/src/bean/.gitkeep +0 -0
  411. package/src/suite/a-home/modules/home-mock/src/component/.gitkeep +0 -0
  412. package/src/suite/a-home/modules/home-mock/src/config/config.ts +5 -0
  413. package/src/suite/a-home/modules/home-mock/src/config/constants.ts +1 -0
  414. package/src/suite/a-home/modules/home-mock/src/config/errors.ts +1 -0
  415. package/src/suite/a-home/modules/home-mock/src/config/index.ts +4 -0
  416. package/src/suite/a-home/modules/home-mock/src/config/locale/en-us.ts +1 -0
  417. package/src/suite/a-home/modules/home-mock/src/config/locale/zh-cn.ts +1 -0
  418. package/src/suite/a-home/modules/home-mock/src/config/locales.ts +7 -0
  419. package/src/suite/a-home/modules/home-mock/src/index.ts +6 -0
  420. package/src/suite/a-home/modules/home-mock/src/mock/menu.fake.ts +42 -0
  421. package/src/suite/a-home/modules/home-mock/src/page/.gitkeep +0 -0
  422. package/src/suite/a-home/modules/home-mock/src/resource/beans.ts +4 -0
  423. package/src/suite/a-home/modules/home-mock/src/resource/components.ts +1 -0
  424. package/src/suite/a-home/modules/home-mock/src/resource/index.ts +3 -0
  425. package/src/suite/a-home/modules/home-mock/src/resource/scope.ts +30 -0
  426. package/src/suite/a-home/modules/home-mock/src/resource/this.ts +4 -0
  427. package/src/suite/a-home/modules/home-mock/src/routes.ts +3 -0
  428. package/src/suite/a-home/modules/home-mock/src/types.ts +1 -0
  429. package/src/suite/a-home/modules/home-mock/src/typings.ts +1 -0
  430. package/src/suite/a-home/modules/home-mock/tsconfig.json +5 -0
  431. package/src/suite/a-home/modules/home-pagesystem/package.json +34 -0
  432. package/src/suite/a-home/modules/home-pagesystem/src/bean/.gitkeep +0 -0
  433. package/src/suite/a-home/modules/home-pagesystem/src/component/.gitkeep +0 -0
  434. package/src/suite/a-home/modules/home-pagesystem/src/config/config.ts +5 -0
  435. package/src/suite/a-home/modules/home-pagesystem/src/config/constants.ts +1 -0
  436. package/src/suite/a-home/modules/home-pagesystem/src/config/errors.ts +1 -0
  437. package/src/suite/a-home/modules/home-pagesystem/src/config/index.ts +4 -0
  438. package/src/suite/a-home/modules/home-pagesystem/src/config/locale/en-us.ts +1 -0
  439. package/src/suite/a-home/modules/home-pagesystem/src/config/locale/zh-cn.ts +1 -0
  440. package/src/suite/a-home/modules/home-pagesystem/src/config/locales.ts +7 -0
  441. package/src/suite/a-home/modules/home-pagesystem/src/index.ts +6 -0
  442. package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/controller.ts +4 -0
  443. package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/index.vue +10 -0
  444. package/src/suite/a-home/modules/home-pagesystem/src/page/errorNotFound/render.tsx +24 -0
  445. package/src/suite/a-home/modules/home-pagesystem/src/resource/beans.ts +4 -0
  446. package/src/suite/a-home/modules/home-pagesystem/src/resource/components.ts +1 -0
  447. package/src/suite/a-home/modules/home-pagesystem/src/resource/index.ts +3 -0
  448. package/src/suite/a-home/modules/home-pagesystem/src/resource/scope.ts +30 -0
  449. package/src/suite/a-home/modules/home-pagesystem/src/resource/this.ts +4 -0
  450. package/src/suite/a-home/modules/home-pagesystem/src/routes.ts +22 -0
  451. package/src/suite/a-home/modules/home-pagesystem/src/types.ts +1 -0
  452. package/src/suite/a-home/modules/home-pagesystem/src/typings.ts +1 -0
  453. package/src/suite/a-home/modules/home-pagesystem/tsconfig.json +5 -0
  454. package/src/suite/a-home/modules/home-router/package.json +37 -0
  455. package/src/suite/a-home/modules/home-router/src/bean/.gitkeep +0 -0
  456. package/src/suite/a-home/modules/home-router/src/component/.gitkeep +0 -0
  457. package/src/suite/a-home/modules/home-router/src/config/config.ts +5 -0
  458. package/src/suite/a-home/modules/home-router/src/config/constants.ts +1 -0
  459. package/src/suite/a-home/modules/home-router/src/config/errors.ts +1 -0
  460. package/src/suite/a-home/modules/home-router/src/config/index.ts +4 -0
  461. package/src/suite/a-home/modules/home-router/src/config/locale/en-us.ts +1 -0
  462. package/src/suite/a-home/modules/home-router/src/config/locale/zh-cn.ts +1 -0
  463. package/src/suite/a-home/modules/home-router/src/config/locales.ts +7 -0
  464. package/src/suite/a-home/modules/home-router/src/index.ts +7 -0
  465. package/src/suite/a-home/modules/home-router/src/local/router.ts +12 -0
  466. package/src/suite/a-home/modules/home-router/src/monkey.ts +17 -0
  467. package/src/suite/a-home/modules/home-router/src/page/.gitkeep +0 -0
  468. package/src/suite/a-home/modules/home-router/src/resource/beans.ts +4 -0
  469. package/src/suite/a-home/modules/home-router/src/resource/components.ts +1 -0
  470. package/src/suite/a-home/modules/home-router/src/resource/index.ts +3 -0
  471. package/src/suite/a-home/modules/home-router/src/resource/scope.ts +26 -0
  472. package/src/suite/a-home/modules/home-router/src/resource/this.ts +4 -0
  473. package/src/suite/a-home/modules/home-router/src/routes.ts +3 -0
  474. package/src/suite/a-home/modules/home-router/src/types.ts +1 -0
  475. package/src/suite/a-home/modules/home-router/src/typings.ts +1 -0
  476. package/src/suite/a-home/modules/home-router/tsconfig.json +5 -0
  477. package/src/suite/a-home/package.json +17 -0
  478. package/src/suite/a-home/tsconfig.base.json +4 -0
  479. package/src/suite-vendor/.gitkeep +0 -0
  480. package/tsconfig.base.cjs.json +3 -0
  481. package/tsconfig.base.esm.json +12 -0
  482. package/tsconfig.base.json +6 -0
  483. package/tsconfig.json +5 -0
  484. package/tsconfig.vue-tsc.json +5 -0
  485. package/vite.config.ts +41 -0
@@ -0,0 +1,32 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-add-box-outline"><path fill="currentColor" d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H5V5h14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z" /></symbol>
3
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-add-box"><path fill="currentColor" d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-3 10h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1" /></symbol>
4
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-bookmark-outline"><path fill="currentColor" d="M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2m0 15-5-2.18L7 18V5h10z" /></symbol>
5
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-bookmark"><path fill="currentColor" d="M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2" /></symbol>
6
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-code-block"><path fill="currentColor" d="M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M4 19V7h16l.002 12z" /><path fill="currentColor" d="M9.293 9.293 5.586 13l3.707 3.707 1.414-1.414L8.414 13l2.293-2.293zm5.414 0-1.414 1.414L15.586 13l-2.293 2.293 1.414 1.414L18.414 13z" /></symbol>
7
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-code"><path fill="currentColor" d="M8.7 15.9 4.8 12l3.9-3.9a.984.984 0 0 0 0-1.4.984.984 0 0 0-1.4 0l-4.59 4.59a.996.996 0 0 0 0 1.41l4.59 4.6c.39.39 1.01.39 1.4 0a.984.984 0 0 0 0-1.4m6.6 0 3.9-3.9-3.9-3.9a.984.984 0 0 1 0-1.4.984.984 0 0 1 1.4 0l4.59 4.59c.39.39.39 1.02 0 1.41l-4.59 4.6a.984.984 0 0 1-1.4 0 .984.984 0 0 1 0-1.4" /></symbol>
8
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-format-align-center"><path fill="currentColor" d="M7 16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1m-3 5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1m0-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1m3-5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1M3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1" /></symbol>
9
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-format-align-left"><path fill="currentColor" d="M14 15H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1m0-8H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1M4 13h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1m0 8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1M3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1" /></symbol>
10
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-format-align-right"><path fill="currentColor" d="M4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1m6-4h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1m-6-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1m6-4h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1M3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1" /></symbol>
11
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-format-bold"><path fill="currentColor" d="M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H8c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h5.78c2.07 0 3.96-1.69 3.97-3.77.01-1.53-.85-2.84-2.15-3.44M10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5" /></symbol>
12
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-format-italic"><path fill="currentColor" d="M10 5.5c0 .83.67 1.5 1.5 1.5h.71l-3.42 8H7.5c-.83 0-1.5.67-1.5 1.5S6.67 18 7.5 18h5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.71l3.42-8h1.29c.83 0 1.5-.67 1.5-1.5S17.33 4 16.5 4h-5c-.83 0-1.5.67-1.5 1.5" /></symbol>
13
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-format-list-bulleted"><path fill="currentColor" d="M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5m0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5m0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5M8 19h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1m0-6h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1M7 6c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1" /></symbol>
14
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-format-list-numbered"><path fill="currentColor" d="M8 7h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1m12 10H8c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1m0-6H8c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1M4.5 16h-2c-.28 0-.5.22-.5.5s.22.5.5.5H4v.5h-.5c-.28 0-.5.22-.5.5s.22.5.5.5H4v.5H2.5c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5m-2-11H3v2.5c0 .28.22.5.5.5s.5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5m2 5h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.3l-1.68 1.96a.5.5 0 0 0-.12.32v.22c0 .28.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H3.2l1.68-1.96a.5.5 0 0 0 .12-.32v-.22c0-.28-.22-.5-.5-.5" /></symbol>
15
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-format-quote"><path fill="currentColor" d="M7.17 17c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94m10 0c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94" /></symbol>
16
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-format-strikethrough"><path fill="currentColor" d="M12 19c1.1 0 2-.9 2-2v-1h-4v1c0 1.1.9 2 2 2M5 5.5C5 6.33 5.67 7 6.5 7H10v3h4V7h3.5c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5M4 14h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1" /></symbol>
17
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-format-underlined"><path fill="currentColor" d="M12.79 16.95c3.03-.39 5.21-3.11 5.21-6.16V4.25a1.25 1.25 0 0 0-2.5 0v6.65c0 1.67-1.13 3.19-2.77 3.52A3.494 3.494 0 0 1 8.5 11V4.25a1.25 1.25 0 0 0-2.5 0V11c0 3.57 3.13 6.42 6.79 5.95M5 20c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1" /></symbol>
18
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-grid-on"><path fill="currentColor" d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2M8 20H5c-.55 0-1-.45-1-1v-3h4zm0-6H4v-4h4zm0-6H4V5c0-.55.45-1 1-1h3zm6 12h-4v-4h4zm0-6h-4v-4h4zm0-6h-4V4h4zm5 12h-3v-4h4v3c0 .55-.45 1-1 1m1-6h-4v-4h4zm0-6h-4V4h3c.55 0 1 .45 1 1z" /></symbol>
19
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-horizontal-rule"><path fill="currentColor" fill-rule="evenodd" d="M19 13H5c-.55 0-1-.45-1-1s.45-1 1-1h14c.55 0 1 .45 1 1s-.45 1-1 1" /></symbol>
20
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-image-outline"><path fill="currentColor" d="M19 5v14H5V5zm0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-4.86 8.86-3 3.87L9 13.14 6 17h12z" /></symbol>
21
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-image"><path fill="currentColor" d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2M8.9 13.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68a.5.5 0 0 1-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 14c.19-.26.57-.27.78-.02" /></symbol>
22
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-insert-link-outline"><path fill="currentColor" d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1M8 13h8v-2H8zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5" /></symbol>
23
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 48 48" id="zova-svg-icon-home-icon-editor-paragraph-break"><g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"><path d="M6 9h36M6 19h36M6 29h18M6 39h10M24 39h13a5 5 0 0 0 0-10h-5m-8 10 4-4m-4 4 4 4" /></g></symbol>
24
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-paragraph"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 5h-3m-5 0h5m-5 0v10m0-10h-1c-1.667 0-5 1-5 5s3.333 5 5 5h1m0 4v-4m5 4V5" /></symbol>
25
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-redo"><path fill="currentColor" d="M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.16 0-7.74 2.42-9.44 5.93-.32.67.04 1.47.75 1.71.59.2 1.23-.08 1.5-.64 1.3-2.66 4.03-4.5 7.19-4.5 1.95 0 3.73.72 5.12 1.88l-1.91 1.91c-.63.63-.19 1.71.7 1.71H21c.55 0 1-.45 1-1V9.41c0-.89-1.08-1.34-1.71-.71z" /></symbol>
26
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-source-outline"><path fill="currentColor" d="M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m0 12H4V6h5.17l2 2H20zm-2-6H6v-2h12zm-4 4H6v-2h8z" /></symbol>
27
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-subscript"><path fill="currentColor" d="M10.52 10.73 7.3 5.72a1.112 1.112 0 1 1 1.88-1.19l2.76 4.46h.12l2.74-4.45c.21-.34.57-.54.96-.54.88 0 1.42.98.94 1.72l-3.23 5 3.55 5.55c.48.75-.06 1.73-.94 1.73-.38 0-.74-.2-.95-.52l-3.07-4.89h-.12l-3.07 4.89c-.2.32-.56.52-.95.52-.88 0-1.42-.97-.94-1.72zM23 19.5c0-.28-.22-.5-.5-.5H20v-1h2c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1h-2.5c-.28 0-.5.22-.5.5s.22.5.5.5H22v1h-2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h2.5c.28 0 .5-.22.5-.5" /></symbol>
28
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-superscript"><path fill="currentColor" d="M10.51 12.73 7.3 7.72a1.112 1.112 0 1 1 1.88-1.19l2.76 4.46h.12l2.74-4.45c.2-.34.56-.54.95-.54.88 0 1.42.98.94 1.72l-3.23 5 3.55 5.55c.49.75-.05 1.73-.93 1.73-.38 0-.74-.2-.95-.52l-3.07-4.89h-.12l-3.07 4.89c-.21.32-.56.52-.95.52-.88 0-1.42-.97-.94-1.72zM23 8.5c0-.28-.22-.5-.5-.5H20V7h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-2.5c-.28 0-.5.22-.5.5s.22.5.5.5H22v1h-2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h2.5c.28 0 .5-.22.5-.5" /></symbol>
29
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-task-alt"><path fill="currentColor" d="m21.29 5.89-10 10a.996.996 0 0 1-1.41 0l-2.83-2.83a.996.996 0 1 1 1.41-1.41l2.12 2.12 9.29-9.29a.996.996 0 0 1 1.41 0c.4.39.4 1.02.01 1.41m-5.52-3.15c-1.69-.69-3.61-.93-5.61-.57-4.07.73-7.32 4.01-8.01 8.08a10.01 10.01 0 0 0 11.19 11.66c3.96-.51 7.28-3.46 8.32-7.31.4-1.47.44-2.89.21-4.22-.13-.8-1.12-1.11-1.7-.54-.23.23-.33.57-.27.89.22 1.33.12 2.75-.52 4.26-1.16 2.71-3.68 4.7-6.61 4.97-5.1.47-9.33-3.85-8.7-8.98.43-3.54 3.28-6.42 6.81-6.91 1.73-.24 3.37.09 4.77.81a1.003 1.003 0 0 0 .93-1.78c-.27-.12-.54-.25-.81-.36" /></symbol>
30
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-title"><path fill="currentColor" d="M5 5.5C5 6.33 5.67 7 6.5 7h4v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h4c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5" /></symbol>
31
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-editor-undo"><path fill="currentColor" d="M12.5 8c-2.65 0-5.05.99-6.9 2.6L3.71 8.71C3.08 8.08 2 8.52 2 9.41V15c0 .55.45 1 1 1h5.59c.89 0 1.34-1.08.71-1.71l-1.91-1.91c1.39-1.16 3.16-1.88 5.12-1.88 3.16 0 5.89 1.84 7.19 4.5.27.56.91.84 1.5.64.71-.23 1.07-1.04.75-1.72C20.23 10.42 16.65 8 12.5 8" /></symbol>
32
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="-894 -133 1920 1580" id="zova-svg-icon-home-icon-flow-activity-none"><g fill="none"><path fill="#fff" d="M-472.663-23H604.663C776.61-23 916 116.39 916 288.337v737.326C916 1197.61 776.61 1337 604.663 1337H-472.663C-644.61 1337-784 1197.61-784 1025.663V288.337C-784 116.39-644.61-23-472.663-23" /><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="220" d="M-472.663-23H604.663C776.61-23 916 116.39 916 288.337v737.326C916 1197.61 776.61 1337 604.663 1337H-472.663C-644.61 1337-784 1197.61-784 1025.663V288.337C-784 116.39-644.61-23-472.663-23" /></g></symbol>
3
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="40 210 1920 1580" id="zova-svg-icon-home-icon-flow-activity-service"><g fill="none"><path fill="#fff" d="M429.651 270H1570.35C1752.41 270 1900 417.59 1900 599.651v800.698C1900 1582.41 1752.41 1730 1570.349 1730H429.65C247.59 1730 100 1582.41 100 1400.349V599.65C100 417.59 247.59 270 429.651 270" /><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="120" d="M429.651 270H1570.35C1752.41 270 1900 417.59 1900 599.651v800.698C1900 1582.41 1752.41 1730 1570.349 1730H429.65C247.59 1730 100 1582.41 100 1400.349V599.65C100 417.59 247.59 270 429.651 270" /><path fill="#000" d="M502.79 430.868c-.028 23.168.007 46.336.067 69.504-19.758 5.59-37.813 13.39-54.864 22.946l-49.833-49.233-93.18 93.72 49.829 49.225a246.4 246.4 0 0 0-22.387 54.63l-70.587.128v131.994l71.324-.257c6.522 25.86 20.717 49.108 34.855 69.897V759.566l-62.346.223v-44.247l62.035-.113 3.482-17.64c5.078-25.727 15.135-50.252 29.584-72.196l9.884-15.01-43.584-43.058 31.368-31.55 43.664 43.139 14.86-9.916c22.707-14.982 47.545-25.025 72.312-30.255l17.507-3.635-.156-60.606h45.064l-.348 60.29h118.245c-11.092-13.24-57.058-30.469-74.208-35.27l.398-68.853c-49.093-.001-87.582.003-132.984-.001M627.5 557.144l.18 69.501c-19.758 5.59-37.813 13.39-54.864 22.947l-49.834-49.234-93.181 93.72 49.83 49.225a246.4 246.4 0 0 0-22.388 54.631l-70.585.127v131.994l71.323-.256c5.614 19.573 13.396 37.446 22.934 54.32l-51.03 50.83 94.218 92.6 50.847-50.61a247.4 247.4 0 0 0 55.125 22.405l.034 71.832c45.33.396 93.594.192 132.335.188v-72.682c19.774-5.575 37.885-13.432 54.94-22.984l50.805 50.092 93.242-93.602-50.912-50.172a247 247 0 0 0 22.417-54.728l69.117-.427V794.995l-69.893.426c-5.618-19.592-13.288-37.344-22.952-54.33l48.292-48.415-94.166-92.757-48.23 48.395a249.6 249.6 0 0 0-54.904-22.317l.396-68.853H627.501Zm43.947 43.833h45.064l-.347 60.29 17.8 3.494c25.844 5.071 50.615 15.115 72.647 29.476l14.918 9.724 42.09-42.233 31.697 31.222-42.15 42.257 10.142 14.97c14.88 22.463 24.752 46.744 30.325 71.748l3.666 17.54 60.916-.37v44.202l-60.576.373-3.48 17.54a203.3 203.3 0 0 1-29.617 72.262l-9.896 15.032 44.621 43.972-31.363 31.485-44.626-44-14.834 9.855c-22.715 14.845-47.355 25.125-72.214 30.19l-17.624 3.52v64.005c-12.048.03-25.192.01-44.69-.017l-.028-63.526-17.704-3.458c-25.88-5.053-50.61-15.052-72.604-29.472l-14.875-9.752-44.798 44.59-31.7-31.157 44.86-44.685-10.237-15.031c-14.895-22.414-24.748-46.721-30.33-71.696l-3.663-17.487-62.346.223v-44.247l62.035-.113 3.482-17.639a202.7 202.7 0 0 1 29.584-72.196l9.884-15.012-43.586-43.058 31.368-31.55 43.665 43.14 14.86-9.916c22.737-14.884 46.865-24.76 72.312-30.254l17.51-3.634zm23.272 161.057c-54.257 0-98.71 44.455-98.71 98.712s44.453 98.71 98.71 98.71 98.712-44.453 98.712-98.71-44.455-98.712-98.712-98.712m0 43.833c30.568 0 54.878 24.311 54.878 54.88 0 30.567-24.31 54.876-54.878 54.876s-54.877-24.309-54.877-54.877 24.31-54.88 54.877-54.88" /></g></symbol>
4
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="40 210 1920 1580" id="zova-svg-icon-home-icon-flow-activity-user-task"><g fill="none"><path fill="#fff" d="M429.651 270H1570.35C1752.41 270 1900 417.59 1900 599.651v800.698C1900 1582.41 1752.41 1730 1570.349 1730H429.65C247.59 1730 100 1582.41 100 1400.349V599.65C100 417.59 247.59 270 429.651 270" /><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="120" d="M429.651 270H1570.35C1752.41 270 1900 417.59 1900 599.651v800.698C1900 1582.41 1752.41 1730 1570.349 1730H429.65C247.59 1730 100 1582.41 100 1400.349V599.65C100 417.59 247.59 270 429.651 270" /><path fill="#000" d="M655.765 478.092c-101.845 0-174.703 78.293-174.907 167.474v.05c.006 26.97 7.304 55.433 18.706 81.106 8.233 18.538 18.468 35.58 30.94 49.232-74.126 25.36-160.969 67.099-204.863 149.4l-2.366 4.436v266.423h664.98V929.79l-2.365-4.435c-43.263-81.119-128.227-122.799-201.637-148.264 35.837-36.442 46.408-83.478 46.42-131.475v-.05c-.205-89.181-73.062-167.474-174.908-167.474m-69.537 94.964c4.707.012 9.876.169 15.574.505 45.398 2.675 60.678 10.847 72.422 18.598s20.025 15.128 51.063 16.033h.02c24.187-.905 35.82-5.217 44.16-10.102 3.38-1.98 6.22-4.037 9.128-6.002 7.687 16.478 11.815 34.693 11.862 53.545-.016 53.681-9.245 91.274-58.465 122.037l4.815 36.29a825 825 0 0 1 31.582 10.269c1.502 6.262 3.236 14.475 4.402 23.206 1.222 9.148 1.703 18.665.95 25.811s-2.972 11.004-3.362 11.394c-25.018 25.017-69.426 39.607-114.47 39.607s-89.452-14.59-114.47-39.607c-.389-.39-2.608-4.248-3.361-11.394s-.273-16.663.95-25.81c1.172-8.78 2.92-17.042 4.427-23.316a826 826 0 0 1 31.27-10.16l2.87-38.886c-2.337-2.997-4.718-4.982-7.56-7.114-10.986-8.242-24.308-26.372-33.717-47.56-9.407-21.181-15.235-45.391-15.244-64.771.059-23.236 6.312-45.507 17.796-64.745 2.055-.765 4.222-1.573 6.657-2.374 8.565-2.817 20.301-5.506 40.701-5.454Zm-86.95 258.268c-.035.264-.076.521-.111.786-1.486 11.124-2.36 23.233-1.082 35.353s4.476 25.169 14.919 35.612c35.646 35.646 89.593 51.387 142.905 51.387s107.259-15.74 142.905-51.387c10.443-10.443 13.641-23.492 14.919-35.612s.404-24.229-1.082-35.353c-.03-.22-.063-.432-.093-.65 54.194 23.765 106.578 57.802 135.482 108.622v215.916h-96.228v-152.242h-40.215v152.242H499.071v-152.242h-40.215v152.242H363.49V940.082c28.96-50.915 81.486-84.985 135.789-108.758" /></g></symbol>
5
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="98.417 98.98 1851.728 1849.278" id="zova-svg-icon-home-icon-flow-end-event-atom"><g fill="none"><path fill="#000" d="M1015.043 99.002C599.21 95.906 209.098 411.146 121.606 817.247c-84.386 356.719 66.704 754.625 369.312 962.585 293.721 210.37 712.33 226.857 1017.865 31.474 307.224-188.136 488.14-563.828 430.814-921.32-52.494-370.583-348.523-692.886-716.13-769.06-68.345-15.248-138.415-22.388-208.424-21.924m22.08 289.882c305.56-.968 586.24 251.915 617.383 556.116 39.755 290.762-147.702 594.914-429.537 682.33-275.076 93.609-606.772-25.852-750.075-281.009-158.564-264.725-91.1-641.965 160.165-825.757 113.947-87.92 258.202-134.99 402.064-131.68" /><path fill="#000" d="M720 646v804.178h596.718V646Zm48.013 51.618h500.509v700.932H768.013Zm51.651 78.906v51.427h397.208v-51.427Zm0 155.26v51.626h397.208v-51.626Zm0 179.418v51.436h397.208v-51.436Zm0 162.081v51.439h397.208v-51.439Z" /></g></symbol>
6
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="98.417 98.98 1851.728 1849.278" id="zova-svg-icon-home-icon-flow-end-event-none"><g fill="none"><path fill="#000" d="M1015.043 99.002C599.21 95.906 209.098 411.146 121.606 817.247c-84.386 356.719 66.704 754.625 369.312 962.585 293.721 210.37 712.33 226.857 1017.865 31.474 307.224-188.136 488.14-563.828 430.814-921.32-52.494-370.583-348.523-692.886-716.13-769.06-68.345-15.248-138.415-22.388-208.424-21.924m22.08 289.882c305.56-.968 586.24 251.915 617.383 556.116 39.755 290.762-147.702 594.914-429.537 682.33-275.076 93.609-606.772-25.852-750.075-281.009-158.564-264.725-91.1-641.965 160.165-825.757 113.947-87.92 258.202-134.99 402.064-131.68" /></g></symbol>
7
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 48 48" id="zova-svg-icon-home-icon-flow-gateway-exclusive"><g fill="none" stroke="currentColor" stroke-width="4"><path stroke-linejoin="round" d="M22.799 4.201 4.414 22.586a2 2 0 0 0 0 2.828L22.8 43.8a2 2 0 0 0 2.828 0l18.385-18.385a2 2 0 0 0 0-2.828L25.627 4.2a2 2 0 0 0-2.828 0Z" /><path stroke-linecap="round" d="m18.043 29.987 12-11.962m-11.991-.01 11.982 11.981" /></g></symbol>
8
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 48 48" id="zova-svg-icon-home-icon-flow-gateway-inclusive"><g fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="4"><path d="M22.799 4.201 4.414 22.586a2 2 0 0 0 0 2.828L22.8 43.8a2 2 0 0 0 2.828 0l18.385-18.385a2 2 0 0 0 0-2.828L25.627 4.2a2 2 0 0 0-2.828 0Z" /><path d="M24 32a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z" /></g></symbol>
9
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 48 48" id="zova-svg-icon-home-icon-flow-gateway-parallel"><g fill="none" stroke="currentColor" stroke-width="4"><path stroke-linejoin="round" d="M22.799 4.201 4.414 22.586a2 2 0 0 0 0 2.828L22.8 43.8a2 2 0 0 0 2.828 0l18.385-18.385a2 2 0 0 0 0-2.828L25.627 4.2a2 2 0 0 0-2.828 0Z" /><path stroke-linecap="round" d="M24.043 15.534v16.944m-8.472-8.472h16.944" /></g></symbol>
10
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="71.5 95.5 1850 1849.998" id="zova-svg-icon-home-icon-flow-start-event-atom"><g fill="none"><path fill="#000" d="M996.5 95.5c-510.27 0-925 414.72-925 924.994s414.729 925.004 925 925.004 925-414.73 925-925.004S1506.77 95.5 996.5 95.5m0 100c456.228 0 825 368.764 825 824.994s-368.773 825.004-825 825.004-825-368.774-825-825.004S540.272 195.5 996.5 195.5M686.494 630.46v780.071h620.012v-780.07Zm49.887 50.071h520.047v679.92H736.38Zm53.668 76.541v49.885h412.713v-49.885Zm0 150.606v50.078h412.713v-50.078Zm0 174.039v49.894h412.713v-49.894Zm0 157.222v49.897h412.713v-49.897Z" /></g></symbol>
11
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="99.081 98.923 1850.466 1850.259" id="zova-svg-icon-home-icon-flow-start-event-none"><g fill="none"><path fill="#000" d="M1015.477 98.928C654.779 97.73 308.674 330.794 171.775 664.19c-144.118 330.153-69.237 740.284 182.862 997.772 242.463 260.992 641.949 356.786 976.52 234.672 346.739-118.074 602.723-458.594 616.638-825.092 23.34-360.13-188.535-719.421-512.953-876.293C1307.807 131.856 1165.949 98.797 1024 99a832 832 0 0 0-8.523-.072m25.351 99.972c353.073 1.939 685.605 257.36 776.918 599.03 97.03 326.907-34.214 705.405-315.906 899.025-292.613 215.075-726.54 199.514-1002.863-36.156-278.414-221.98-378.072-632.576-235.227-958.182C387.557 401.605 698.338 195.18 1024 199a736 736 0 0 1 16.828-.1" /></g></symbol>
12
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="51.5 80 1850 1849.998" id="zova-svg-icon-home-icon-flow-start-event-timer"><g fill="none"><path fill="#000" d="M976.5 80c-510.27 0-925 414.72-925 924.994s414.729 925.004 925 925.004 925-414.73 925-925.004S1486.77 80 976.5 80m0 100c456.228 0 825 368.764 825 824.994s-368.773 825.004-825 825.004-825-368.774-825-825.004S520.272 180 976.5 180m-8.29 385.945c-171.528 1.212-335.1 113.885-398.317 273.285-65.79 155.801-29.42 347.57 88.884 468.442 115.027 123.83 304.555 169.464 463.307 111.428 166.36-56.675 288.573-221.231 292.977-397.19 8.862-170.945-93.875-339.969-248.559-412.566-59.027-28.58-124.545-43.458-190.117-43.371a395 395 0 0 0-8.174-.028m15.644 79.973c156.706.701 303.714 116.52 340.257 269.176 40.7 149.018-27.87 318.936-161.361 397.015-136.3 85.544-328.47 62.745-440.394-53.109-118.115-113.944-139.148-311.085-48.532-447.734 64.179-101.947 182.05-166.467 302.56-165.293q3.739-.071 7.47-.055m105.95 102.072L969.903 965.518c-37.032 3.937-45.83 60.12-11.662 75.105 22.57 15.666 40.247-10.392 60.793-9.494h183.293v-50H1018.39l115.205-209.004z" /></g></symbol>
13
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 16 16" id="zova-svg-icon-home-icon-login-call-outline"><path fill="currentColor" d="M3.714 5.258C3.523 4 4.41 2.87 5.765 2.456a.99.99 0 0 1 1.214.598l.435 1.16a1 1 0 0 1-.26 1.088L5.86 6.487a.5.5 0 0 0-.152.47l.012.052.031.13a7.3 7.3 0 0 0 .729 1.805 7.3 7.3 0 0 0 1.296 1.627l.04.036a.5.5 0 0 0 .482.103l1.673-.527a1 1 0 0 1 1.072.319l.792.961c.33.4.29.988-.089 1.341-1.037.967-2.463 1.165-3.455.368a12.7 12.7 0 0 1-3.024-3.529 12.4 12.4 0 0 1-1.554-4.385Zm3.043 1.765 1.072-.984a2 2 0 0 0 .521-2.176l-.434-1.16A1.99 1.99 0 0 0 5.473 1.5c-1.683.515-3.034 2.024-2.748 3.909.2 1.316.661 2.99 1.678 4.738a13.7 13.7 0 0 0 3.262 3.805c1.488 1.195 3.474.787 4.764-.415a1.98 1.98 0 0 0 .179-2.708l-.792-.962a2 2 0 0 0-2.144-.636l-1.389.437a6.6 6.6 0 0 1-.936-1.223 6.3 6.3 0 0 1-.59-1.421Z" /></symbol>
3
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 20 20" id="zova-svg-icon-home-icon-login-chevron-left"><path fill="currentColor" d="M12.452 4.516c.446.436.481 1.043 0 1.576L8.705 10l3.747 3.908c.481.533.446 1.141 0 1.574-.445.436-1.197.408-1.615 0-.418-.406-4.502-4.695-4.502-4.695a1.095 1.095 0 0 1 0-1.576s4.084-4.287 4.502-4.695 1.17-.436 1.615 0" /></symbol>
4
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-login-done"><path fill="currentColor" d="m9 16.2-3.5-3.5a.984.984 0 0 0-1.4 0 .984.984 0 0 0 0 1.4l4.19 4.19c.39.39 1.02.39 1.41 0L20.3 7.7a.984.984 0 0 0 0-1.4.984.984 0 0 0-1.4 0z" /></symbol>
5
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 1024 1024" id="zova-svg-icon-home-icon-login-lock-outline"><path fill="currentColor" d="M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96" /><path fill="currentColor" d="M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32m192-160v-64a192 192 0 1 0-384 0v64zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64" /></symbol>
6
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 48 48" id="zova-svg-icon-home-icon-login-person-outline"><path fill="currentColor" fill-rule="evenodd" d="M24 24c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8m10-8c0 5.525-4.475 10-10 10s-10-4.475-10-10S18.475 6 24 6s10 4.475 10 10M9.223 34.212C8.22 35.022 8 35.629 8 36v4h32v-4c0-.37-.22-.979-1.224-1.788-.98-.791-2.442-1.545-4.214-2.197C31.02 30.712 26.753 30 24 30s-7.02.712-10.562 2.015c-1.772.652-3.234 1.406-4.215 2.197M24 28c-6.008 0-18 3.035-18 8v6h36v-6c0-4.965-11.992-8-18-8" clip-rule="evenodd" /></symbol>
7
+ </svg>
@@ -0,0 +1,41 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ic" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-add-circle-outline"><path fill="currentColor" d="M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1m0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8" /></symbol>
3
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--fluent" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-alert-outline"><path fill="currentColor" d="M12 1.996a7.49 7.49 0 0 1 7.496 7.25l.004.25v4.097l1.38 3.156a1.25 1.25 0 0 1-1.145 1.75L15 18.502a3 3 0 0 1-5.995.177L9 18.499H4.275a1.25 1.25 0 0 1-1.147-1.747L4.5 13.594V9.496c0-4.155 3.352-7.5 7.5-7.5M13.5 18.5l-3 .002a1.5 1.5 0 0 0 2.993.145zM12 3.496c-3.32 0-6 2.674-6 6v4.41L4.656 17h14.697L18 13.907V9.509l-.003-.225A5.99 5.99 0 0 0 12 3.496" /></symbol>
4
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ant-design" viewBox="0 0 1024 1024" id="zova-svg-icon-home-icon-outline-apps-outline"><path fill="currentColor" d="M464 144H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16m-52 268H212V212h200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16m-52 268H612V212h200zM464 544H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16m-52 268H212V612h200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16m-52 268H612V612h200z" /></symbol>
5
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--mdi" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-archive-lock-outline"><path fill="currentColor" d="M15 12.06c-.21.29-.36.61-.5.94H9v-1.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5zM21 9H3V3h18zm-2-4H5v2h14zm-6 14H6v-9H4v11h9.03c-.03-.1-.03-.2-.03-.3zm10-1.7v3.5c0 .6-.6 1.2-1.3 1.2h-5.5c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2v-1.5c0-1.4 1.4-2.5 2.8-2.5s2.8 1.1 2.8 2.5V16c.6 0 1.2.6 1.2 1.3m-2.5-2.8c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V16h3z" /></symbol>
6
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-archive-outline"><path fill="currentColor" d="m21.706 5.291-2.999-2.998A1 1 0 0 0 18 2H6a1 1 0 0 0-.707.293L2.294 5.291A1 1 0 0 0 2 5.999V19c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5.999a1 1 0 0 0-.294-.708M6.414 4h11.172l.999.999H5.415zM4 19V6.999h16L20.002 19z" /><path fill="currentColor" d="M15 12H9v-2H7v4h10v-4h-2z" /></symbol>
7
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ri" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-article-outline"><path fill="currentColor" d="M20 22H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1m-1-2V4H5v16zM7 6h4v4H7zm0 6h10v2H7zm0 4h10v2H7zm6-9h4v2h-4z" /></symbol>
8
+ <symbol viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-backspace-outline"><path fill="currentColor" d="M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H7.07L2.4 12l4.66-7H22zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z" /></symbol>
9
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-build-circle-outline"><path fill="currentColor" fill-rule="evenodd" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8" /><path fill="currentColor" fill-rule="evenodd" d="M13.49 11.38c.43-1.22.17-2.64-.81-3.62a3.47 3.47 0 0 0-4.1-.59l2.35 2.35-1.41 1.41-2.35-2.35c-.71 1.32-.52 2.99.59 4.1.98.98 2.4 1.24 3.62.81l3.41 3.41c.2.2.51.2.71 0l1.4-1.4c.2-.2.2-.51 0-.71z" /></symbol>
10
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ic" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-calendar-today-outline"><path fill="currentColor" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 18H4V10h16zm0-13H4V5h16z" /></symbol>
11
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-check-circle-outline"><path fill="currentColor" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m3.88-11.71L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0" /></symbol>
12
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-checkbox-checked-outline"><path fill="currentColor" d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 2v14H5V5zm-9 12-4-4 1.41-1.42L10 14.17l6.59-6.59L18 9" /></symbol>
13
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-checkbox-off-outline"><path fill="currentColor" d="M22.11 21.46 2.39 1.73 1.11 3 3 4.9V19a2 2 0 0 0 2 2h14.1l1.74 1.73zM5 19V6.89L17.11 19zM8.2 5l-2-2H19a2 2 0 0 1 2 2v12.8l-2-2V5z" /></symbol>
14
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-checkbox-outline"><path fill="currentColor" d="M19 3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 2v14H5V5z" /></symbol>
15
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-copy-outline"><path fill="currentColor" d="M5.503 4.627 5.5 6.75v10.504a3.25 3.25 0 0 0 3.25 3.25h8.616a2.25 2.25 0 0 1-2.122 1.5H8.75A4.75 4.75 0 0 1 4 17.254V6.75c0-.98.627-1.815 1.503-2.123M17.75 2A2.25 2.25 0 0 1 20 4.25v13a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25v-13A2.25 2.25 0 0 1 8.75 2zm0 1.5h-9a.75.75 0 0 0-.75.75v13c0 .414.336.75.75.75h9a.75.75 0 0 0 .75-.75v-13a.75.75 0 0 0-.75-.75" /></symbol>
16
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--material-symbols" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-data-list-outline"><path fill="currentColor" d="M7 13h7q.425 0 .713-.288Q15 12.425 15 12t-.287-.713T14 11H7q-.425 0-.713.287Q6 11.575 6 12t.287.712Q6.575 13 7 13m0-3h7q.425 0 .713-.288Q15 9.425 15 9t-.287-.713T14 8H7q-.425 0-.713.287Q6 8.575 6 9t.287.712Q6.575 10 7 10M4 20q-.825 0-1.412-.587Q2 18.825 2 18V6q0-.825.588-1.412Q3.175 4 4 4h16q.825 0 1.413.588Q22 5.175 22 6v12q0 .825-.587 1.413Q20.825 20 20 20Zm0-2V6zm0 0h16V6H4z" /></symbol>
17
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--mdi" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-database-lock-outline"><path fill="currentColor" d="M6 12.45V9.64c1.47.83 3.61 1.36 6 1.36s4.53-.53 6-1.36v1.41c.17-.02.33-.05.5-.05.53 0 1.03.1 1.5.26V7c0-2.21-3.58-4-8-4S4 4.79 4 7v10c0 2.21 3.59 4 8 4 .34 0 .67 0 1-.03v-2.02c-.32.05-.65.05-1 .05-3.87 0-6-1.5-6-2v-2.23c1.61.78 3.72 1.23 6 1.23.41 0 .81-.03 1.21-.06.19-.48.47-.91.86-1.24.06-.31.16-.61.27-.9-.74.13-1.53.2-2.34.2-2.42 0-4.7-.6-6-1.55M12 5c3.87 0 6 1.5 6 2s-2.13 2-6 2-6-1.5-6-2 2.13-2 6-2m9 11v-.5a2.5 2.5 0 0 0-5 0v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1m-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5z" /></symbol>
18
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-delete-forever-outline"><path fill="currentColor" d="M14.12 10.47 12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6zM8 9h8v10H8z" /></symbol>
19
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-delete-outline"><path fill="currentColor" d="M6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6zM8 9h8v10H8zm7.5-5-1-1h-5l-1 1H5v2h14V4z" /></symbol>
20
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--arcticons" viewBox="0 0 48 48" id="zova-svg-icon-home-icon-outline-dict-outline"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8.4 6.5v35a2 2 0 0 0 2 2h2.33v-39H10.4a2 2 0 0 0-2 2m4.33-2v39H37.6a2 2 0 0 0 2-2v-35a2 2 0 0 0-2-2Z" /><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M32.165 26.1a6 6 0 0 0-6-6h0a6 6 0 0 0-6 6V30a6 6 0 0 0 6 6h0a6 6 0 0 0 6-6m0 6V12" /></symbol>
21
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-draft-outline"><path fill="currentColor" d="M20 2a1 1 0 0 1 1 1v3.757l-2 2V4H5v16h14v-2.758l2-2V21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zm1.778 6.808 1.414 1.414L15.414 18l-1.416-.002.002-1.412zM13 12v2H8v-2zm3-4v2H8V8z" /></symbol>
22
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ri" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-folder-transfer-outline"><path fill="currentColor" d="M12.414 5H21a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h7.414zM4 5v14h16V7h-8.414l-2-2zm8 7V9l4 4-4 4v-3H8v-2z" /></symbol>
23
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ri" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-group-outline"><path fill="currentColor" d="M2 22a8 8 0 1 1 16 0h-2a6 6 0 1 0-12 0zm8-9c-3.315 0-6-2.685-6-6s2.685-6 6-6 6 2.685 6 6-2.685 6-6 6m0-2c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m8.284 3.703A8 8 0 0 1 23 22h-2a6 6 0 0 0-3.537-5.473zm-.688-11.29A5.5 5.5 0 0 1 21 8.5a5.5 5.5 0 0 1-5 5.478v-2.013a3.5 3.5 0 0 0 1.041-6.609z" /></symbol>
24
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-heart-outline"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 3C4.239 3 2 5.216 2 7.95c0 2.207.875 7.445 9.488 12.74a.99.99 0 0 0 1.024 0C21.125 15.395 22 10.157 22 7.95 22 5.216 19.761 3 17 3s-5 3-5 3-2.239-3-5-3" /></symbol>
25
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ic" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-insert-emoticon-outline"><path fill="currentColor" d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2M12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8m3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5m-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11m3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5" /></symbol>
26
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--fluent" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-key-reset-outline"><path fill="currentColor" d="M17 8.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5m-8.05.35a6.554 6.554 0 0 1 6.55-6.55c3.596 0 6.55 2.819 6.55 6.45a6.5 6.5 0 0 1-1.255 3.852 6 6 0 0 0-1.276-.798 5.03 5.03 0 0 0 1.03-3.054c0-2.769-2.247-4.95-5.05-4.95a5.054 5.054 0 0 0-5.05 5.05c0 .262.034.539.088.845a1.77 1.77 0 0 1-.486 1.564l-6.236 6.235a1.25 1.25 0 0 0-.366.884V20.3c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25v-1.5c0-.69.56-1.25 1.25-1.25h1.75V15.8c0-.65.497-1.185 1.132-1.245l1.077 1.078a1.8 1.8 0 0 0-.378.417h-.33v1.75c0 .69-.56 1.25-1.25 1.25H7.95v1.25a1.75 1.75 0 0 1-1.75 1.75H3.7a1.75 1.75 0 0 1-1.75-1.75v-2.172c0-.73.289-1.429.805-1.944L8.99 9.948a.28.28 0 0 0 .07-.244A6.4 6.4 0 0 1 8.95 8.6m4.83 2.68a.75.75 0 1 0-1.06-1.06l-2 2a.75.75 0 0 0 0 1.06l2 2a.75.75 0 1 0 1.06-1.06l-.72-.72H17a3.5 3.5 0 1 1-3.5 3.5.75.75 0 0 0-1.5 0 5 5 0 1 0 5-5h-3.94z" /></symbol>
27
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-label-outline"><path fill="currentColor" d="M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12zM16 17H5V7h11l3.55 5z" /></symbol>
28
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ph" viewBox="0 0 256 256" id="zova-svg-icon-home-icon-outline-layout-outline"><path fill="currentColor" d="M216 40H40a16 16 0 0 0-16 16v144a16 16 0 0 0 16 16h176a16 16 0 0 0 16-16V56a16 16 0 0 0-16-16M40 56h176v40H40Zm0 56h56v88H40Zm176 88H112v-88h104z" /></symbol>
29
+ <symbol viewBox="0 0 1024 1024" id="zova-svg-icon-home-icon-outline-login-outline"><path fill="currentColor" d="M521.7 82c-152.5-.4-286.7 78.5-363.4 197.7-3.4 5.3.4 12.3 6.7 12.3h70.3c4.8 0 9.3-2.1 12.3-5.8 7-8.5 14.5-16.7 22.4-24.5 32.6-32.5 70.5-58.1 112.7-75.9 43.6-18.4 90-27.8 137.9-27.8s94.3 9.3 137.9 27.8c42.2 17.8 80.1 43.4 112.7 75.9s58.1 70.4 76 112.5C865.7 417.8 875 464.1 875 512s-9.4 94.2-27.8 137.8c-17.8 42.1-43.4 80-76 112.5s-70.5 58.1-112.7 75.9A352.8 352.8 0 0 1 520.6 866c-47.9 0-94.3-9.4-137.9-27.8A353.8 353.8 0 0 1 270 762.3c-7.9-7.9-15.3-16.1-22.4-24.5-3-3.7-7.6-5.8-12.3-5.8H165c-6.3 0-10.2 7-6.7 12.3C234.9 863.2 368.5 942 520.6 942c236.2 0 428-190.1 430.4-425.6C953.4 277.1 761.3 82.6 521.7 82M395.02 624v-76h-314c-4.4 0-8-3.6-8-8v-56c0-4.4 3.6-8 8-8h314v-76c0-6.7 7.8-10.5 13-6.3l141.9 112a8 8 0 0 1 0 12.6l-141.9 112c-5.2 4.1-13 .4-13-6.3" /></symbol>
30
+ <symbol viewBox="0 0 1024 1024" id="zova-svg-icon-home-icon-outline-logout-outline"><path fill="currentColor" d="M868 732h-70.3c-4.8 0-9.3 2.1-12.3 5.8-7 8.5-14.5 16.7-22.4 24.5a353.8 353.8 0 0 1-112.7 75.9A352.8 352.8 0 0 1 512.4 866c-47.9 0-94.3-9.4-137.9-27.8a353.8 353.8 0 0 1-112.7-75.9 353.3 353.3 0 0 1-76-112.5C167.3 606.2 158 559.9 158 512s9.4-94.2 27.8-137.8c17.8-42.1 43.4-80 76-112.5s70.5-58.1 112.7-75.9c43.6-18.4 90-27.8 137.9-27.8s94.3 9.3 137.9 27.8c42.2 17.8 80.1 43.4 112.7 75.9 7.9 7.9 15.3 16.1 22.4 24.5 3 3.7 7.6 5.8 12.3 5.8H868c6.3 0 10.2-7 6.7-12.3C798 160.5 663.8 81.6 511.3 82 271.7 82.6 79.6 277.1 82 516.4 84.4 751.9 276.2 942 512.4 942c152.1 0 285.7-78.8 362.3-197.7 3.4-5.3-.4-12.3-6.7-12.3m88.9-226.3L815 393.7c-5.3-4.2-13-.4-13 6.3v76H488c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h314v76c0 6.7 7.8 10.5 13 6.3l141.9-112a8 8 0 0 0 0-12.6" /></symbol>
31
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-mail-outline"><path fill="currentColor" d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 14H4V8l8 5 8-5zm-8-7L4 6h16z" /></symbol>
32
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ic" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-note-outline"><path fill="currentColor" d="M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75M19 19H5V5h14z" /><path fill="currentColor" d="m15.08 11.03-2.12-2.12L7 14.86V17h2.1zm1.77-1.76c.2-.2.2-.51 0-.71l-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06 2.12 2.12z" /></symbol>
33
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--carbon" viewBox="0 0 32 32" id="zova-svg-icon-home-icon-outline-software-resource-cluster-outline"><path fill="currentColor" d="M24 21c-.5 0-1-.2-1.4-.6l-3-3c-.4-.4-.6-.9-.6-1.4s.2-1 .6-1.4l3-3c.4-.4.9-.6 1.4-.6s1 .2 1.4.6l3 3c.4.4.6.9.6 1.4s-.2 1-.6 1.4l-3 3c-.4.4-.9.6-1.4.6m0-8-3 3 3 3 3-3zm-8 0c-.5 0-1-.2-1.4-.6l-3-3C11.2 9 11 8.5 11 8s.2-1 .6-1.4l3-3c.4-.4.9-.6 1.4-.6s1 .2 1.4.6l3 3c.4.4.6.9.6 1.4s-.2 1-.6 1.4l-3 3c-.4.4-.9.6-1.4.6m0-8-3 3 3 3 3-3zm0 24c-.5 0-1-.2-1.4-.6l-3-3c-.4-.4-.6-.9-.6-1.4s.2-1 .6-1.4l3-3c.4-.4.9-.6 1.4-.6s1 .2 1.4.6l3 3c.4.4.6.9.6 1.4s-.2 1-.6 1.4l-3 3c-.4.4-.9.6-1.4.6m0-8-3 3 3 3 3-3zm-8 0c-.5 0-1-.2-1.4-.6l-3-3C3.2 17 3 16.5 3 16s.2-1 .6-1.4l3-3c.4-.4.9-.6 1.4-.6s1 .2 1.4.6l3 3c.4.4.6.9.6 1.4s-.2 1-.6 1.4l-3 3c-.4.4-.9.6-1.4.6m0-8-3 3 3 3 3-3z" /></symbol>
34
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--carbon" viewBox="0 0 32 32" id="zova-svg-icon-home-icon-outline-software-resource-outline"><path fill="currentColor" d="M29.391 14.527 17.473 2.609A2.08 2.08 0 0 0 16 2c-.533 0-1.067.203-1.473.609L2.609 14.527C2.203 14.933 2 15.466 2 16s.203 1.067.609 1.473L14.526 29.39c.407.407.941.61 1.474.61s1.067-.203 1.473-.609L29.39 17.474c.407-.407.61-.94.61-1.474s-.203-1.067-.609-1.473M16 28.036 3.965 16 16 3.964 28.036 16z" /></symbol>
35
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 32 32" id="zova-svg-icon-home-icon-outline-star-outline"><path fill="currentColor" d="m16 6.52 2.76 5.58.46 1 1 .15 6.16.89-4.38 4.3-.75.73.18 1 1.05 6.13-5.51-2.89L16 23l-.93.49-5.51 2.85 1-6.13.18-1-.74-.77-4.42-4.35 6.16-.89 1-.15.46-1zM16 2l-4.55 9.22-10.17 1.47 7.36 7.18L6.9 30l9.1-4.78L25.1 30l-1.74-10.13 7.36-7.17-10.17-1.48Z" /></symbol>
36
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--icon-park-outline" viewBox="0 0 48 48" id="zova-svg-icon-home-icon-outline-theme-outline"><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="4" d="M18 6a6 6 0 1 0 12 0h5.455L42 15.818l-5.727 4.91V42H11.727V20.727L6 15.818 12.545 6z" /></symbol>
37
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-timer-outline"><path fill="currentColor" d="M12 5a8.5 8.5 0 1 1 0 17 8.5 8.5 0 0 1 0-17m0 1.5a7 7 0 1 0 0 14 7 7 0 0 0 0-14M12 8a.75.75 0 0 1 .743.648l.007.102v4.5a.75.75 0 0 1-1.493.102l-.007-.102v-4.5A.75.75 0 0 1 12 8m7.147-2.886.083.06 1.158.964a.75.75 0 0 1-.877 1.212l-.082-.06-1.159-.964a.75.75 0 0 1 .877-1.212M14.25 2.5a.75.75 0 0 1 .102 1.493L14.25 4h-4.5a.75.75 0 0 1-.102-1.493L9.75 2.5z" /></symbol>
38
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ic" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-visibility-off-outline"><path fill="currentColor" d="M12 6a9.77 9.77 0 0 1 8.82 5.5 9.65 9.65 0 0 1-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6m-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14M2.01 3.87l2.68 2.68A11.74 11.74 0 0 0 1 11.5C2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45zm7.5 7.5 2.61 2.61c-.04.01-.08.02-.12.02a2.5 2.5 0 0 1-2.5-2.5c0-.05.01-.08.01-.13m-3.4-3.4 1.75 1.75a4.6 4.6 0 0 0-.36 1.78 4.507 4.507 0 0 0 6.27 4.14l.98.98c-.88.24-1.8.38-2.75.38a9.77 9.77 0 0 1-8.82-5.5c.7-1.43 1.72-2.61 2.93-3.53" /></symbol>
39
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ic" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-visibility-outline"><path fill="currentColor" d="M12 6a9.77 9.77 0 0 1 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5A9.77 9.77 0 0 1 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4m0 5a2.5 2.5 0 0 1 0 5 2.5 2.5 0 0 1 0-5m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7" /></symbol>
40
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-outline-work-history-outline"><path fill="currentColor" d="M4 19V8h16v3.29c.72.22 1.4.54 2 .97V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h7.68c-.3-.62-.5-1.29-.6-2zm6-15h4v2h-4z" /><path fill="currentColor" d="M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85z" /></symbol>
41
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" id="zova-svg-icon-home-icon-role-collaboration"><path fill="currentColor" d="M6 21v-1H4v1a7 7 0 0 0 7 7h3v-2h-3a5 5 0 0 1-5-5m18-10v1h2v-1a7 7 0 0 0-7-7h-3v2h3a5 5 0 0 1 5 5m-13 0H5a3 3 0 0 0-3 3v2h2v-2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2h2v-2a3 3 0 0 0-3-3m-3-1a4 4 0 1 0-4-4 4 4 0 0 0 4 4m0-6a2 2 0 1 1-2 2 2 2 0 0 1 2-2m19 21h-6a3 3 0 0 0-3 3v2h2v-2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2h2v-2a3 3 0 0 0-3-3m-7-5a4 4 0 1 0 4-4 4 4 0 0 0-4 4m6 0a2 2 0 1 1-2-2 2 2 0 0 1 2 2" /></symbol>
3
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--icon-park-outline" viewBox="0 0 48 48" id="zova-svg-icon-home-icon-role-level"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="4"><path stroke-linejoin="round" d="M6 8v32M24 8v32M7 24h16" /><path d="M32 24v16m0-8.976C32 28.46 34 26 37 26s5 2.358 5 5.024v8.99" /></g></symbol>
4
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--fluent" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-role-organization"><path fill="currentColor" d="M11.75 1.998a3.752 3.752 0 0 0-.75 7.43V11.5H7.75a2.25 2.25 0 0 0-2.25 2.25v.826a3.754 3.754 0 0 0 .752 7.429A3.752 3.752 0 0 0 7 14.575v-.825a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 .75.75v.826a3.754 3.754 0 0 0 .752 7.429 3.752 3.752 0 0 0 .748-7.43v-.825a2.25 2.25 0 0 0-2.25-2.25H12.5V9.428a3.754 3.754 0 0 0-.75-7.43M9.498 5.75a2.252 2.252 0 1 1 4.504 0 2.252 2.252 0 0 1-4.504 0M4 18.253a2.252 2.252 0 1 1 4.505 0 2.252 2.252 0 0 1-4.505 0M17.252 16a2.252 2.252 0 1 1 0 4.505 2.252 2.252 0 0 1 0-4.505" /></symbol>
5
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--iconoir" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-role-position"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m14.73 8.36-2.25 3a.6.6 0 0 1-.96 0l-2.25-3a.6.6 0 0 1 0-.72l2.25-3a.6.6 0 0 1 .96 0l2.25 3a.6.6 0 0 1 0 .72M3 20h18m-9-3v-2" /></symbol>
6
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--mdi" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-role-relation"><path fill="currentColor" d="M21 15v-2h-2v2h-.21a2.5 2.5 0 0 0-4.58 0H13V7H9.79a2.5 2.5 0 0 0-4.58 0H5V5H3v2H2v2h1v2h2V9h.21a2.5 2.5 0 0 0 4.58 0H11v8h3.21a2.5 2.5 0 0 0 4.58 0H19v2h2v-2h1v-2M7.5 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1m9 8a1 1 0 1 1 1-1 1 1 0 0 1-1 1" /></symbol>
7
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ic" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-role-role"><path fill="currentColor" d="M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2m0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14M12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2" /></symbol>
8
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--mdi" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-role-shield-key"><path fill="currentColor" d="M21 11c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m0-15a3 3 0 0 1 3 3c0 1.31-.83 2.42-2 2.83V14h2v2h-2v2h-2v-6.17A2.99 2.99 0 0 1 9 9a3 3 0 0 1 3-3m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1" /></symbol>
9
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ic" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-role-template"><path fill="currentColor" d="M5 5.5C5 6.33 5.67 7 6.5 7h4v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h4c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5" /></symbol>
10
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-social-chat"><path fill="currentColor" d="m6 18-2.3 2.3q-.475.475-1.088.213T2 19.575V4q0-.825.588-1.412T4 2h16q.825 0 1.413.588T22 4v12q0 .825-.587 1.413T20 18zm1-4h6q.425 0 .713-.288T14 13t-.288-.712T13 12H7q-.425 0-.712.288T6 13t.288.713T7 14m0-3h10q.425 0 .713-.288T18 10t-.288-.712T17 9H7q-.425 0-.712.288T6 10t.288.713T7 11m0-3h10q.425 0 .713-.288T18 7t-.288-.712T17 6H7q-.425 0-.712.288T6 7t.288.713T7 8" /></symbol>
3
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--ic" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-social-facebook"><path fill="currentColor" d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95" /></symbol>
4
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-social-github"><path fill="currentColor" d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.46-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33s1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2" /></symbol>
5
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-social-public"><path fill="currentColor" d="M12 22q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9 2 12t.788-3.9 2.137-3.175T8.1 2.788 12 2t3.9.788 3.175 2.137T21.213 8.1 22 12t-.788 3.9-2.137 3.175-3.175 2.138T12 22m-1-2.05V18q-.825 0-1.412-.587T9 16v-1l-4.8-4.8q-.075.45-.137.9T4 12q0 3.025 1.988 5.3T11 19.95m6.9-2.55q.5-.55.9-1.187t.662-1.325.4-1.413T20 12q0-2.45-1.363-4.475T15 4.6V5q0 .825-.587 1.413T13 7h-2v2q0 .425-.288.713T10 10H8v2h6q.425 0 .713.288T15 13v3h1q.65 0 1.175.388T17.9 17.4" /></symbol>
6
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-social-record-voice-over"><path fill="currentColor" d="M19.95 15.95 18.4 14.4q1.1-1.025 1.725-2.425T20.75 9t-.625-2.95-1.725-2.4l1.55-1.6q1.4 1.325 2.225 3.125T23 9t-.825 3.825-2.225 3.125m-3.2-3.2-1.6-1.6q.45-.425.725-.962T16.15 9t-.275-1.187-.725-.963l1.6-1.6q.8.725 1.25 1.688T18.45 9 18 11.063t-1.25 1.687M9 13q-1.65 0-2.825-1.175T5 9t1.175-2.825T9 5t2.825 1.175T13 9t-1.175 2.825T9 13m-8 8v-2.8q0-.825.425-1.55t1.175-1.1q1.275-.65 2.875-1.1T9 14t3.525.45 2.875 1.1q.75.375 1.175 1.1T17 18.2V21z" /></symbol>
7
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-social-school"><path fill="currentColor" d="M21 17v-6.9L12 15 1 9l11-6 11 6v8zm-9 4-7-3.8v-5l7 3.8 7-3.8v5z" /></symbol>
8
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--mdi" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-social-twitter"><path fill="currentColor" d="M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.2 4.2 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.52 8.52 0 0 1-5.33 1.84q-.51 0-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23" /></symbol>
9
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" id="zova-svg-icon-home-icon-tools-pomotodo"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M24 2.5a21.515 21.515 0 1 0 18.816 11.11c-11.229 7.287-19.31 19.874-19.31 19.874l-10.8-12.035 2.827-2.676L22.89 24s10.096-8.369 18.492-12.646A21.5 21.5 0 0 0 24 2.5" /></symbol>
3
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-tools-spreadsheet"><path fill="currentColor" d="M21 5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2zM5 19V5h14l.002 14z" /><path fill="currentColor" d="M7 7h1.998v2H7zm4 0h6v2h-6zm-4 4h1.998v2H7zm4 0h6v2h-6zm-4 4h1.998v2H7zm4 0h6v2h-6z" /></symbol>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ import { ZovaApplication } from 'zova';
2
+
3
+ export const config = (_app: ZovaApplication) => {
4
+ return {};
5
+ };
@@ -0,0 +1 @@
1
+ export const constants = null;
@@ -0,0 +1 @@
1
+ export enum Errors {}
@@ -0,0 +1,23 @@
1
+ import _auth from '../assets/icons/groups/auth.svg';
2
+ import _business from '../assets/icons/groups/business.svg';
3
+ import _default from '../assets/icons/groups/default.svg';
4
+ import _editor from '../assets/icons/groups/editor.svg';
5
+ import _flow from '../assets/icons/groups/flow.svg';
6
+ import _login from '../assets/icons/groups/login.svg';
7
+ import _outline from '../assets/icons/groups/outline.svg';
8
+ import _role from '../assets/icons/groups/role.svg';
9
+ import _social from '../assets/icons/groups/social.svg';
10
+ import _tools from '../assets/icons/groups/tools.svg';
11
+
12
+ export const icons = {
13
+ auth: _auth,
14
+ business: _business,
15
+ default: _default,
16
+ editor: _editor,
17
+ flow: _flow,
18
+ login: _login,
19
+ outline: _outline,
20
+ role: _role,
21
+ social: _social,
22
+ tools: _tools,
23
+ };
@@ -0,0 +1,5 @@
1
+ export * from './locales.js';
2
+ export * from './errors.js';
3
+ export * from './config.js';
4
+ export * from './constants.js';
5
+ export * from './icons.js';
@@ -0,0 +1 @@
1
+ export default {};
@@ -0,0 +1 @@
1
+ export default {};
@@ -0,0 +1,7 @@
1
+ import en_us from './locale/en-us.js';
2
+ import zh_cn from './locale/zh-cn.js';
3
+
4
+ export const locales = {
5
+ 'en-us': en_us,
6
+ 'zh-cn': zh_cn,
7
+ };
@@ -0,0 +1,6 @@
1
+ export * from './config/index.js';
2
+ export * from './resource/index.js';
3
+ export * from './routes.js';
4
+ export * from './types.js';
5
+
6
+ import './typings.js';
@@ -0,0 +1,4 @@
1
+ import 'zova';
2
+ declare module 'zova' {
3
+ export interface IBeanRecord {}
4
+ }
@@ -0,0 +1 @@
1
+ export const components = {};
@@ -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,4 @@
1
+ export * from './scope.js';
2
+ export * from './beans.js';
3
+ export * from './components.js';
4
+ export * from './icons.js';
@@ -0,0 +1,26 @@
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
+ }
@@ -0,0 +1,4 @@
1
+ export const __ThisModule__ = 'home-icon';
2
+ export type __ThisModuleType__ = typeof __ThisModule__;
3
+
4
+ export { ScopeModuleHomeIcon as ScopeModule } from './scope.js';
@@ -0,0 +1,3 @@
1
+ import { IModuleRoute } from 'zova-module-a-router';
2
+
3
+ export const routes: IModuleRoute[] = [];
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export type * as AHome from 'zova-module-a-home';