zova-ui-empty 5.0.268 → 5.0.271

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 (290) hide show
  1. package/.gitignore +1 -0
  2. package/.vscode/extensions.json +2 -1
  3. package/.vscode/settings.json +4 -0
  4. package/env/.env +0 -1
  5. package/package.json +37 -18
  6. package/package.original.json +62 -0
  7. package/src/front/config/config/config.ts +1 -1
  8. package/src/suite/a-demo/modules/a-demo/src/.metadata/index.ts +46 -0
  9. package/src/suite/a-demo/modules/a-demo/src/.metadata/this.ts +2 -0
  10. package/src/suite/a-demo/modules/a-demo/src/index.ts +1 -8
  11. package/src/suite/a-demo/modules/a-demo/src/page/component/controller.ts +1 -1
  12. package/src/suite/a-demo/modules/a-demo/src/page/component/render.tsx +1 -1
  13. package/src/suite/a-home/modules/home-api/src/.metadata/index.ts +25 -0
  14. package/src/suite/a-home/modules/home-api/src/.metadata/this.ts +2 -0
  15. package/src/suite/a-home/modules/home-api/src/index.ts +1 -6
  16. package/src/suite/a-home/modules/home-component/src/.metadata/index.ts +29 -0
  17. package/src/suite/a-home/modules/home-component/src/.metadata/this.ts +2 -0
  18. package/src/suite/a-home/modules/home-component/src/component/page/controller.ts +1 -3
  19. package/src/suite/a-home/modules/home-component/src/component/page/render.tsx +2 -2
  20. package/src/suite/a-home/modules/home-component/src/component/page/style.ts +3 -3
  21. package/src/suite/a-home/modules/home-component/src/index.ts +1 -7
  22. package/src/suite/a-home/modules/home-component/src/types.ts +1 -1
  23. package/src/suite/a-home/modules/home-icon/src/.metadata/icons/groups/auth.svg +8 -0
  24. package/src/suite/a-home/modules/home-icon/src/.metadata/icons/groups/business.svg +12 -0
  25. package/src/suite/a-home/modules/home-icon/src/.metadata/icons/groups/default.svg +114 -0
  26. package/src/suite/a-home/modules/home-icon/src/.metadata/icons/groups/editor.svg +32 -0
  27. package/src/suite/a-home/modules/home-icon/src/.metadata/icons/groups/flow.svg +13 -0
  28. package/src/suite/a-home/modules/home-icon/src/.metadata/icons/groups/login.svg +7 -0
  29. package/src/suite/a-home/modules/home-icon/src/.metadata/icons/groups/outline.svg +41 -0
  30. package/src/suite/a-home/modules/home-icon/src/.metadata/icons/groups/role.svg +10 -0
  31. package/src/suite/a-home/modules/home-icon/src/.metadata/icons/groups/social.svg +9 -0
  32. package/src/suite/a-home/modules/home-icon/src/.metadata/icons/groups/tools.svg +4 -0
  33. package/src/suite/a-home/modules/home-icon/src/{resource/icons.ts → .metadata/index.ts} +42 -0
  34. package/src/suite/a-home/modules/home-icon/src/.metadata/this.ts +2 -0
  35. package/src/suite/a-home/modules/home-icon/src/index.ts +1 -7
  36. package/src/suite/a-home/modules/{a-home → home-index}/package.json +2 -2
  37. package/src/suite/a-home/modules/home-index/src/.metadata/index.ts +30 -0
  38. package/src/suite/a-home/modules/home-index/src/.metadata/this.ts +2 -0
  39. package/src/suite/a-home/modules/home-index/src/index.ts +1 -0
  40. package/src/suite/a-home/modules/home-index/src/page/index/controller.ts +7 -0
  41. package/src/suite/a-home/modules/home-index/src/page/index/index.vue +11 -0
  42. package/src/suite/a-home/modules/home-index/src/page/index/render.tsx +19 -0
  43. package/src/suite/a-home/modules/home-index/src/page/index/style.ts +10 -0
  44. package/src/suite/a-home/modules/home-index/src/routes.ts +7 -0
  45. package/src/suite/a-home/modules/home-layout/mock/menu.fake.ts +1 -1
  46. package/src/suite/a-home/modules/home-layout/src/.metadata/index.ts +56 -0
  47. package/src/suite/a-home/modules/home-layout/src/.metadata/this.ts +2 -0
  48. package/src/suite/a-home/modules/home-layout/src/bean/model.menu.ts +1 -1
  49. package/src/suite/a-home/modules/home-layout/src/component/layoutDefault/render.tsx +1 -1
  50. package/src/suite/a-home/modules/home-layout/src/index.ts +1 -7
  51. package/src/suite/a-home/modules/home-layout/src/{api/service → service}/menu.ts +10 -1
  52. package/src/suite/a-home/modules/home-pagesystem/src/.metadata/index.ts +30 -0
  53. package/src/suite/a-home/modules/home-pagesystem/src/.metadata/this.ts +2 -0
  54. package/src/suite/a-home/modules/home-pagesystem/src/index.ts +1 -7
  55. package/src/suite/a-home/modules/home-pagesystem/src/routes.ts +1 -1
  56. package/src/suite/a-home/modules/home-router/src/.metadata/index.ts +22 -0
  57. package/src/suite/a-home/modules/home-router/src/.metadata/this.ts +2 -0
  58. package/src/suite/a-home/modules/home-router/src/bean/local.router.ts +1 -1
  59. package/src/suite/a-home/modules/home-router/src/index.ts +1 -7
  60. package/src/suite/a-home/modules/home-style/src/.metadata/index.ts +25 -0
  61. package/src/suite/a-home/modules/home-style/src/.metadata/this.ts +2 -0
  62. package/src/suite/a-home/modules/home-style/src/bean/style.default.ts +1 -3
  63. package/src/suite/a-home/modules/home-style/src/index.ts +1 -7
  64. package/src/suite/a-home/modules/home-theme/src/.metadata/index.ts +25 -0
  65. package/src/suite/a-home/modules/home-theme/src/.metadata/this.ts +2 -0
  66. package/src/suite/a-home/modules/home-theme/src/bean/theme.default.ts +1 -1
  67. package/src/suite/a-home/modules/home-theme/src/index.ts +1 -8
  68. package/src/suite/a-home/package.json +1 -1
  69. package/tsconfig.json +16 -2
  70. package/src/front/typing/types.d.ts +0 -2
  71. package/src/suite/a-demo/modules/a-demo/src/api/index.ts +0 -2
  72. package/src/suite/a-demo/modules/a-demo/src/api/interface/index.ts +0 -1
  73. package/src/suite/a-demo/modules/a-demo/src/api/service/index.ts +0 -1
  74. package/src/suite/a-demo/modules/a-demo/src/assets/css/module.scss +0 -0
  75. package/src/suite/a-demo/modules/a-demo/src/bean/.gitkeep +0 -0
  76. package/src/suite/a-demo/modules/a-demo/src/config/config.ts +0 -5
  77. package/src/suite/a-demo/modules/a-demo/src/config/constants.ts +0 -1
  78. package/src/suite/a-demo/modules/a-demo/src/config/errors.ts +0 -1
  79. package/src/suite/a-demo/modules/a-demo/src/config/index.ts +0 -4
  80. package/src/suite/a-demo/modules/a-demo/src/config/locale/en-us.ts +0 -1
  81. package/src/suite/a-demo/modules/a-demo/src/config/locale/zh-cn.ts +0 -1
  82. package/src/suite/a-demo/modules/a-demo/src/config/locales.ts +0 -7
  83. package/src/suite/a-demo/modules/a-demo/src/resource/beans.ts +0 -4
  84. package/src/suite/a-demo/modules/a-demo/src/resource/components.ts +0 -3
  85. package/src/suite/a-demo/modules/a-demo/src/resource/index.ts +0 -3
  86. package/src/suite/a-demo/modules/a-demo/src/resource/scope.ts +0 -32
  87. package/src/suite/a-demo/modules/a-demo/src/resource/this.ts +0 -4
  88. package/src/suite/a-demo/modules/a-demo/src/types.ts +0 -1
  89. package/src/suite/a-demo/modules/a-demo/src/typings.ts +0 -1
  90. package/src/suite/a-demo/modules/a-demo/tsconfig.json +0 -5
  91. package/src/suite/a-demo/tsconfig.base.json +0 -4
  92. package/src/suite/a-home/modules/a-home/README.md +0 -1
  93. package/src/suite/a-home/modules/a-home/src/api/index.ts +0 -2
  94. package/src/suite/a-home/modules/a-home/src/api/interface/index.ts +0 -1
  95. package/src/suite/a-home/modules/a-home/src/api/service/index.ts +0 -1
  96. package/src/suite/a-home/modules/a-home/src/assets/css/module.scss +0 -0
  97. package/src/suite/a-home/modules/a-home/src/bean/.gitkeep +0 -0
  98. package/src/suite/a-home/modules/a-home/src/component/.gitkeep +0 -0
  99. package/src/suite/a-home/modules/a-home/src/config/config.ts +0 -5
  100. package/src/suite/a-home/modules/a-home/src/config/constants.ts +0 -1
  101. package/src/suite/a-home/modules/a-home/src/config/errors.ts +0 -1
  102. package/src/suite/a-home/modules/a-home/src/config/index.ts +0 -4
  103. package/src/suite/a-home/modules/a-home/src/config/locale/en-us.ts +0 -3
  104. package/src/suite/a-home/modules/a-home/src/config/locale/zh-cn.ts +0 -3
  105. package/src/suite/a-home/modules/a-home/src/config/locales.ts +0 -7
  106. package/src/suite/a-home/modules/a-home/src/index.ts +0 -8
  107. package/src/suite/a-home/modules/a-home/src/page/home/controller.ts +0 -17
  108. package/src/suite/a-home/modules/a-home/src/page/home/index.vue +0 -11
  109. package/src/suite/a-home/modules/a-home/src/page/home/render.tsx +0 -19
  110. package/src/suite/a-home/modules/a-home/src/page/home/style.ts +0 -10
  111. package/src/suite/a-home/modules/a-home/src/resource/beans.ts +0 -4
  112. package/src/suite/a-home/modules/a-home/src/resource/components.ts +0 -1
  113. package/src/suite/a-home/modules/a-home/src/resource/index.ts +0 -4
  114. package/src/suite/a-home/modules/a-home/src/resource/pages.ts +0 -25
  115. package/src/suite/a-home/modules/a-home/src/resource/scope.ts +0 -32
  116. package/src/suite/a-home/modules/a-home/src/resource/this.ts +0 -4
  117. package/src/suite/a-home/modules/a-home/src/routes.ts +0 -4
  118. package/src/suite/a-home/modules/a-home/src/types.ts +0 -1
  119. package/src/suite/a-home/modules/a-home/src/typings.ts +0 -8
  120. package/src/suite/a-home/modules/a-home/tsconfig.json +0 -5
  121. package/src/suite/a-home/modules/home-api/src/api/index.ts +0 -2
  122. package/src/suite/a-home/modules/home-api/src/api/interface/index.ts +0 -1
  123. package/src/suite/a-home/modules/home-api/src/api/service/index.ts +0 -1
  124. package/src/suite/a-home/modules/home-api/src/component/.gitkeep +0 -0
  125. package/src/suite/a-home/modules/home-api/src/config/config.ts +0 -5
  126. package/src/suite/a-home/modules/home-api/src/config/constants.ts +0 -1
  127. package/src/suite/a-home/modules/home-api/src/config/errors.ts +0 -1
  128. package/src/suite/a-home/modules/home-api/src/config/index.ts +0 -4
  129. package/src/suite/a-home/modules/home-api/src/config/locale/en-us.ts +0 -1
  130. package/src/suite/a-home/modules/home-api/src/config/locale/zh-cn.ts +0 -1
  131. package/src/suite/a-home/modules/home-api/src/config/locales.ts +0 -7
  132. package/src/suite/a-home/modules/home-api/src/page/.gitkeep +0 -0
  133. package/src/suite/a-home/modules/home-api/src/resource/beans.ts +0 -8
  134. package/src/suite/a-home/modules/home-api/src/resource/components.ts +0 -1
  135. package/src/suite/a-home/modules/home-api/src/resource/index.ts +0 -3
  136. package/src/suite/a-home/modules/home-api/src/resource/scope.ts +0 -28
  137. package/src/suite/a-home/modules/home-api/src/resource/this.ts +0 -4
  138. package/src/suite/a-home/modules/home-api/src/routes.ts +0 -3
  139. package/src/suite/a-home/modules/home-api/src/typings.ts +0 -1
  140. package/src/suite/a-home/modules/home-api/tsconfig.json +0 -5
  141. package/src/suite/a-home/modules/home-component/mock/.gitkeep +0 -0
  142. package/src/suite/a-home/modules/home-component/src/api/index.ts +0 -2
  143. package/src/suite/a-home/modules/home-component/src/api/interface/index.ts +0 -1
  144. package/src/suite/a-home/modules/home-component/src/api/service/index.ts +0 -1
  145. package/src/suite/a-home/modules/home-component/src/assets/css/module.scss +0 -1
  146. package/src/suite/a-home/modules/home-component/src/bean/.gitkeep +0 -0
  147. package/src/suite/a-home/modules/home-component/src/config/config.ts +0 -5
  148. package/src/suite/a-home/modules/home-component/src/config/constants.ts +0 -1
  149. package/src/suite/a-home/modules/home-component/src/config/errors.ts +0 -1
  150. package/src/suite/a-home/modules/home-component/src/config/index.ts +0 -4
  151. package/src/suite/a-home/modules/home-component/src/config/locale/en-us.ts +0 -1
  152. package/src/suite/a-home/modules/home-component/src/config/locale/zh-cn.ts +0 -1
  153. package/src/suite/a-home/modules/home-component/src/config/locales.ts +0 -7
  154. package/src/suite/a-home/modules/home-component/src/page/.gitkeep +0 -0
  155. package/src/suite/a-home/modules/home-component/src/resource/beans.ts +0 -4
  156. package/src/suite/a-home/modules/home-component/src/resource/components.ts +0 -10
  157. package/src/suite/a-home/modules/home-component/src/resource/index.ts +0 -3
  158. package/src/suite/a-home/modules/home-component/src/resource/scope.ts +0 -32
  159. package/src/suite/a-home/modules/home-component/src/resource/this.ts +0 -4
  160. package/src/suite/a-home/modules/home-component/src/routes.ts +0 -3
  161. package/src/suite/a-home/modules/home-component/src/typings.ts +0 -1
  162. package/src/suite/a-home/modules/home-component/tsconfig.json +0 -5
  163. package/src/suite/a-home/modules/home-icon/src/api/index.ts +0 -2
  164. package/src/suite/a-home/modules/home-icon/src/api/interface/index.ts +0 -1
  165. package/src/suite/a-home/modules/home-icon/src/api/service/index.ts +0 -1
  166. package/src/suite/a-home/modules/home-icon/src/bean/.gitkeep +0 -0
  167. package/src/suite/a-home/modules/home-icon/src/component/.gitkeep +0 -0
  168. package/src/suite/a-home/modules/home-icon/src/config/config.ts +0 -5
  169. package/src/suite/a-home/modules/home-icon/src/config/constants.ts +0 -1
  170. package/src/suite/a-home/modules/home-icon/src/config/errors.ts +0 -1
  171. package/src/suite/a-home/modules/home-icon/src/config/index.ts +0 -5
  172. package/src/suite/a-home/modules/home-icon/src/config/locale/en-us.ts +0 -1
  173. package/src/suite/a-home/modules/home-icon/src/config/locale/zh-cn.ts +0 -1
  174. package/src/suite/a-home/modules/home-icon/src/config/locales.ts +0 -7
  175. package/src/suite/a-home/modules/home-icon/src/page/.gitkeep +0 -0
  176. package/src/suite/a-home/modules/home-icon/src/resource/beans.ts +0 -4
  177. package/src/suite/a-home/modules/home-icon/src/resource/components.ts +0 -1
  178. package/src/suite/a-home/modules/home-icon/src/resource/index.ts +0 -4
  179. package/src/suite/a-home/modules/home-icon/src/resource/scope.ts +0 -28
  180. package/src/suite/a-home/modules/home-icon/src/resource/this.ts +0 -4
  181. package/src/suite/a-home/modules/home-icon/src/routes.ts +0 -3
  182. package/src/suite/a-home/modules/home-icon/src/types.ts +0 -1
  183. package/src/suite/a-home/modules/home-icon/src/typings.ts +0 -1
  184. package/src/suite/a-home/modules/home-icon/tsconfig.json +0 -5
  185. package/src/suite/a-home/modules/home-layout/src/api/index.ts +0 -2
  186. package/src/suite/a-home/modules/home-layout/src/api/interface/index.ts +0 -1
  187. package/src/suite/a-home/modules/home-layout/src/api/interface/menu.ts +0 -9
  188. package/src/suite/a-home/modules/home-layout/src/api/service/index.ts +0 -5
  189. package/src/suite/a-home/modules/home-layout/src/config/config.ts +0 -5
  190. package/src/suite/a-home/modules/home-layout/src/config/constants.ts +0 -1
  191. package/src/suite/a-home/modules/home-layout/src/config/errors.ts +0 -1
  192. package/src/suite/a-home/modules/home-layout/src/config/index.ts +0 -4
  193. package/src/suite/a-home/modules/home-layout/src/config/locale/en-us.ts +0 -1
  194. package/src/suite/a-home/modules/home-layout/src/config/locale/zh-cn.ts +0 -1
  195. package/src/suite/a-home/modules/home-layout/src/config/locales.ts +0 -7
  196. package/src/suite/a-home/modules/home-layout/src/page/.gitkeep +0 -0
  197. package/src/suite/a-home/modules/home-layout/src/resource/beans.ts +0 -8
  198. package/src/suite/a-home/modules/home-layout/src/resource/components.ts +0 -7
  199. package/src/suite/a-home/modules/home-layout/src/resource/index.ts +0 -3
  200. package/src/suite/a-home/modules/home-layout/src/resource/scope.ts +0 -32
  201. package/src/suite/a-home/modules/home-layout/src/resource/this.ts +0 -4
  202. package/src/suite/a-home/modules/home-layout/src/routes.ts +0 -3
  203. package/src/suite/a-home/modules/home-layout/src/types.ts +0 -1
  204. package/src/suite/a-home/modules/home-layout/src/typings.ts +0 -1
  205. package/src/suite/a-home/modules/home-layout/tsconfig.json +0 -5
  206. package/src/suite/a-home/modules/home-pagesystem/src/api/index.ts +0 -2
  207. package/src/suite/a-home/modules/home-pagesystem/src/api/interface/index.ts +0 -1
  208. package/src/suite/a-home/modules/home-pagesystem/src/api/service/index.ts +0 -1
  209. package/src/suite/a-home/modules/home-pagesystem/src/bean/.gitkeep +0 -0
  210. package/src/suite/a-home/modules/home-pagesystem/src/component/.gitkeep +0 -0
  211. package/src/suite/a-home/modules/home-pagesystem/src/config/config.ts +0 -5
  212. package/src/suite/a-home/modules/home-pagesystem/src/config/constants.ts +0 -1
  213. package/src/suite/a-home/modules/home-pagesystem/src/config/errors.ts +0 -1
  214. package/src/suite/a-home/modules/home-pagesystem/src/config/index.ts +0 -4
  215. package/src/suite/a-home/modules/home-pagesystem/src/config/locale/en-us.ts +0 -1
  216. package/src/suite/a-home/modules/home-pagesystem/src/config/locale/zh-cn.ts +0 -1
  217. package/src/suite/a-home/modules/home-pagesystem/src/config/locales.ts +0 -7
  218. package/src/suite/a-home/modules/home-pagesystem/src/resource/beans.ts +0 -4
  219. package/src/suite/a-home/modules/home-pagesystem/src/resource/components.ts +0 -1
  220. package/src/suite/a-home/modules/home-pagesystem/src/resource/index.ts +0 -3
  221. package/src/suite/a-home/modules/home-pagesystem/src/resource/scope.ts +0 -32
  222. package/src/suite/a-home/modules/home-pagesystem/src/resource/this.ts +0 -4
  223. package/src/suite/a-home/modules/home-pagesystem/src/types.ts +0 -1
  224. package/src/suite/a-home/modules/home-pagesystem/src/typings.ts +0 -1
  225. package/src/suite/a-home/modules/home-pagesystem/tsconfig.json +0 -5
  226. package/src/suite/a-home/modules/home-router/src/api/index.ts +0 -2
  227. package/src/suite/a-home/modules/home-router/src/api/interface/index.ts +0 -1
  228. package/src/suite/a-home/modules/home-router/src/api/service/index.ts +0 -1
  229. package/src/suite/a-home/modules/home-router/src/component/.gitkeep +0 -0
  230. package/src/suite/a-home/modules/home-router/src/config/config.ts +0 -5
  231. package/src/suite/a-home/modules/home-router/src/config/constants.ts +0 -1
  232. package/src/suite/a-home/modules/home-router/src/config/errors.ts +0 -1
  233. package/src/suite/a-home/modules/home-router/src/config/index.ts +0 -4
  234. package/src/suite/a-home/modules/home-router/src/config/locale/en-us.ts +0 -1
  235. package/src/suite/a-home/modules/home-router/src/config/locale/zh-cn.ts +0 -1
  236. package/src/suite/a-home/modules/home-router/src/config/locales.ts +0 -7
  237. package/src/suite/a-home/modules/home-router/src/page/.gitkeep +0 -0
  238. package/src/suite/a-home/modules/home-router/src/resource/beans.ts +0 -4
  239. package/src/suite/a-home/modules/home-router/src/resource/components.ts +0 -1
  240. package/src/suite/a-home/modules/home-router/src/resource/index.ts +0 -3
  241. package/src/suite/a-home/modules/home-router/src/resource/scope.ts +0 -28
  242. package/src/suite/a-home/modules/home-router/src/resource/this.ts +0 -4
  243. package/src/suite/a-home/modules/home-router/src/routes.ts +0 -3
  244. package/src/suite/a-home/modules/home-router/src/types.ts +0 -1
  245. package/src/suite/a-home/modules/home-router/src/typings.ts +0 -1
  246. package/src/suite/a-home/modules/home-router/tsconfig.json +0 -5
  247. package/src/suite/a-home/modules/home-style/src/api/index.ts +0 -2
  248. package/src/suite/a-home/modules/home-style/src/api/interface/index.ts +0 -1
  249. package/src/suite/a-home/modules/home-style/src/api/service/index.ts +0 -1
  250. package/src/suite/a-home/modules/home-style/src/assets/css/module.scss +0 -1
  251. package/src/suite/a-home/modules/home-style/src/component/.gitkeep +0 -0
  252. package/src/suite/a-home/modules/home-style/src/config/config.ts +0 -5
  253. package/src/suite/a-home/modules/home-style/src/config/constants.ts +0 -1
  254. package/src/suite/a-home/modules/home-style/src/config/errors.ts +0 -1
  255. package/src/suite/a-home/modules/home-style/src/config/index.ts +0 -4
  256. package/src/suite/a-home/modules/home-style/src/config/locale/en-us.ts +0 -1
  257. package/src/suite/a-home/modules/home-style/src/config/locale/zh-cn.ts +0 -1
  258. package/src/suite/a-home/modules/home-style/src/config/locales.ts +0 -7
  259. package/src/suite/a-home/modules/home-style/src/page/.gitkeep +0 -0
  260. package/src/suite/a-home/modules/home-style/src/resource/beans.ts +0 -8
  261. package/src/suite/a-home/modules/home-style/src/resource/components.ts +0 -1
  262. package/src/suite/a-home/modules/home-style/src/resource/index.ts +0 -3
  263. package/src/suite/a-home/modules/home-style/src/resource/scope.ts +0 -32
  264. package/src/suite/a-home/modules/home-style/src/resource/this.ts +0 -4
  265. package/src/suite/a-home/modules/home-style/src/routes.ts +0 -3
  266. package/src/suite/a-home/modules/home-style/src/typings.ts +0 -1
  267. package/src/suite/a-home/modules/home-style/tsconfig.json +0 -5
  268. package/src/suite/a-home/modules/home-theme/src/api/index.ts +0 -2
  269. package/src/suite/a-home/modules/home-theme/src/api/interface/index.ts +0 -1
  270. package/src/suite/a-home/modules/home-theme/src/api/service/index.ts +0 -1
  271. package/src/suite/a-home/modules/home-theme/src/assets/css/module.scss +0 -1
  272. package/src/suite/a-home/modules/home-theme/src/component/.gitkeep +0 -0
  273. package/src/suite/a-home/modules/home-theme/src/config/config.ts +0 -5
  274. package/src/suite/a-home/modules/home-theme/src/config/constants.ts +0 -1
  275. package/src/suite/a-home/modules/home-theme/src/config/errors.ts +0 -1
  276. package/src/suite/a-home/modules/home-theme/src/config/index.ts +0 -4
  277. package/src/suite/a-home/modules/home-theme/src/config/locale/en-us.ts +0 -1
  278. package/src/suite/a-home/modules/home-theme/src/config/locale/zh-cn.ts +0 -1
  279. package/src/suite/a-home/modules/home-theme/src/config/locales.ts +0 -7
  280. package/src/suite/a-home/modules/home-theme/src/page/.gitkeep +0 -0
  281. package/src/suite/a-home/modules/home-theme/src/resource/beans.ts +0 -8
  282. package/src/suite/a-home/modules/home-theme/src/resource/components.ts +0 -1
  283. package/src/suite/a-home/modules/home-theme/src/resource/index.ts +0 -3
  284. package/src/suite/a-home/modules/home-theme/src/resource/scope.ts +0 -32
  285. package/src/suite/a-home/modules/home-theme/src/resource/this.ts +0 -4
  286. package/src/suite/a-home/modules/home-theme/src/routes.ts +0 -3
  287. package/src/suite/a-home/modules/home-theme/src/types.ts +0 -1
  288. package/src/suite/a-home/modules/home-theme/src/typings.ts +0 -1
  289. package/src/suite/a-home/modules/home-theme/tsconfig.json +0 -5
  290. package/src/suite/a-home/tsconfig.base.json +0 -4
package/.gitignore CHANGED
@@ -43,6 +43,7 @@ yarn-error.log*
43
43
  # mine .env files
44
44
  env/.env*.mine
45
45
  /src/front/config/config/config*.mine.ts
46
+ /src/front/typing/modules.d.ts
46
47
 
47
48
  **/*.tsbuildinfo
48
49
 
@@ -1,6 +1,7 @@
1
1
  {
2
- "recommendations": ["vscodevim.vim", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "vue.volar"],
2
+ "recommendations": ["cabloy.zova-vscode", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "Vue.volar"],
3
3
  "unwantedRecommendations": [
4
+ "Vue.vscode-typescript-vue-plugin",
4
5
  "octref.vetur",
5
6
  "hookyqr.beautify",
6
7
  "dbaeumer.jshint",
@@ -53,5 +53,9 @@
53
53
  "*.ejs": "html",
54
54
  "*.code-snippets": "text",
55
55
  "docker-compose-dockerfile-app": "dockerfile"
56
+ },
57
+ // watcher
58
+ "files.watcherExclude": {
59
+ "node_modules": true
56
60
  }
57
61
  }
package/env/.env CHANGED
@@ -16,7 +16,6 @@ PROJECT_DISABLED_SUITES =
16
16
  BUILD_OUTDIR =
17
17
  BUILD_MINIFY = true
18
18
  BUILD_ANALYZE = false
19
- BUILD_CHUNK_OBFUSCATION = true
20
19
 
21
20
  API_BASE_URL=
22
21
  API_PREFIX = /api
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-ui-empty",
3
- "version": "5.0.268",
3
+ "version": "5.0.271",
4
4
  "description": "A vue3 empty framework with ioc",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -11,14 +11,15 @@
11
11
  "dev": "npm run dev:ssr:admin",
12
12
  "build": "npm run build:ssr:admin",
13
13
  "preview": "npm run preview:ssr",
14
- "dev:ssr:admin": "tsc -b && quasar dev --mode ssr --flavor admin",
15
- "dev:ssr:front": "tsc -b && quasar dev --mode ssr --flavor front",
16
- "build:ssr:admin": "tsc -b && npm run tsc && quasar build --mode ssr --flavor admin",
17
- "build:ssr:front": "tsc -b && npm run tsc && quasar build --mode ssr --flavor front",
14
+ "dev:ssr:admin": "npm run prerun && tsc -b && quasar dev --mode ssr --flavor admin",
15
+ "dev:ssr:front": "npm run prerun && tsc -b && quasar dev --mode ssr --flavor front",
16
+ "build:ssr:admin": "npm run prerun && tsc -b && npm run tsc && quasar build --mode ssr --flavor admin",
17
+ "build:ssr:front": "npm run prerun && tsc -b && npm run tsc && quasar build --mode ssr --flavor front",
18
18
  "preview:ssr": "concurrently \"cd ./distMockServer && node index.js\" \"node ./dist/ssr/index.js\"",
19
- "dev:spa": "tsc -b && quasar dev --mode spa --flavor admin",
20
- "build:spa": "tsc -b && npm run tsc && quasar build --mode spa --flavor admin",
19
+ "dev:spa": "npm run prerun && tsc -b && quasar dev --mode spa --flavor admin",
20
+ "build:spa": "npm run prerun && tsc -b && npm run tsc && quasar build --mode spa --flavor admin",
21
21
  "preview:spa": "vite preview --outDir=dist/spa",
22
+ "prerun": "zova :tools:deps",
22
23
  "tsc": "vue-tsc --noEmit --project tsconfig.vue-tsc.json",
23
24
  "lint": "eslint . --fix --ignore-path .gitignore"
24
25
  },
@@ -45,29 +46,47 @@
45
46
  "express": "^4.19.2",
46
47
  "quasar": "^2.16.8",
47
48
  "typestyle": "^2.4.0",
48
- "vue": "^3.4.29",
49
- "vue-router": "^4.3.3",
49
+ "vue": "^3.5.6",
50
+ "vue-router": "^4.4.5",
50
51
  "zod": "^3.23.8",
51
- "zova": "^5.0.196",
52
- "zova-module-a-model": "^5.0.24",
53
- "zova-module-a-pinia": "^5.0.24",
54
- "zova-module-a-router": "^5.0.58",
55
- "zova-module-a-style": "^5.0.35",
56
- "zova-module-a-tabs": "^5.0.18"
52
+ "zova": "^5.0.196"
57
53
  },
58
54
  "devDependencies": {
59
55
  "@cabloy/lint": "^4.0.11",
60
56
  "@quasar/app-vite": "2.0.0-beta.18",
57
+ "@tanstack/query-persist-client-core": "^5.45.0",
58
+ "@tanstack/vue-query": "^5.45.0",
61
59
  "@types/node": "^20.14.2",
62
60
  "@vitejs/plugin-vue": "^5.0.5",
61
+ "axios": "^1.6.8",
63
62
  "concurrently": "^8.2.2",
64
- "quasar-app-extension-zova": "^1.1.158",
63
+ "localforage": "^1.10.0",
64
+ "pinia": "^2.1.7",
65
+ "quasar-app-extension-zova": "^1.1.163",
65
66
  "sass": "^1.77.5",
66
67
  "typescript": "^5.4.5",
67
68
  "vite": "^5.3.1",
69
+ "vue-router": "^4.4.5",
68
70
  "vue-tsc": "^2.0.29",
69
- "zova-vite": "^1.0.161"
71
+ "zova-module-a-core": "^5.0.44",
72
+ "zova-module-a-demo": "^5.0.0",
73
+ "zova-module-a-model": "^5.0.26",
74
+ "zova-module-a-pinia": "^5.0.26",
75
+ "zova-module-a-router": "^5.0.61",
76
+ "zova-module-a-style": "^5.0.37",
77
+ "zova-module-a-tabs": "^5.0.20",
78
+ "zova-module-home-api": "^5.0.0",
79
+ "zova-module-home-component": "^5.0.0",
80
+ "zova-module-home-icon": "^5.0.0",
81
+ "zova-module-home-index": "^5.0.0",
82
+ "zova-module-home-layout": "^5.0.0",
83
+ "zova-module-home-pagesystem": "^5.0.0",
84
+ "zova-module-home-router": "^5.0.0",
85
+ "zova-module-home-style": "^5.0.0",
86
+ "zova-module-home-theme": "^5.0.0",
87
+ "zova-module-test-demo": "^5.0.0",
88
+ "zova-vite": "^1.0.166"
70
89
  },
71
90
  "license": "MIT",
72
- "gitHead": "f2058826a17b91b4e3a1206cab1bf448bedaa88d"
91
+ "gitHead": "5d8d52c780d38a2e85a20cd8c1050b688cb4d9d5"
73
92
  }
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "zova-ui-empty",
3
+ "version": "5.0.268",
4
+ "description": "A vue3 empty framework with ioc",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "author": "zhennann <zhen.nann@icloud.com>",
9
+ "type": "module",
10
+ "scripts": {
11
+ "dev": "npm run dev:ssr:admin",
12
+ "build": "npm run build:ssr:admin",
13
+ "preview": "npm run preview:ssr",
14
+ "dev:ssr:admin": "npm run prerun && tsc -b && quasar dev --mode ssr --flavor admin",
15
+ "dev:ssr:front": "npm run prerun && tsc -b && quasar dev --mode ssr --flavor front",
16
+ "build:ssr:admin": "npm run prerun && tsc -b && npm run tsc && quasar build --mode ssr --flavor admin",
17
+ "build:ssr:front": "npm run prerun && tsc -b && npm run tsc && quasar build --mode ssr --flavor front",
18
+ "preview:ssr": "concurrently \"cd ./distMockServer && node index.js\" \"node ./dist/ssr/index.js\"",
19
+ "dev:spa": "npm run prerun && tsc -b && quasar dev --mode spa --flavor admin",
20
+ "build:spa": "npm run prerun && tsc -b && npm run tsc && quasar build --mode spa --flavor admin",
21
+ "preview:spa": "vite preview --outDir=dist/spa",
22
+ "prerun": "zova :tools:deps",
23
+ "tsc": "vue-tsc --noEmit --project tsconfig.vue-tsc.json",
24
+ "lint": "eslint . --fix --ignore-path .gitignore"
25
+ },
26
+ "keywords": ["nodejs", "full-stack", "workflow-engine", "vue3", "ioc", "zova"],
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/cabloy/zova.git"
30
+ },
31
+ "homepage": "https://github.com/cabloy/zova#readme",
32
+ "bugs": {
33
+ "url": "https://github.com/cabloy/zova/issues"
34
+ },
35
+ "dependencies": {
36
+ "compression": "^1.7.4",
37
+ "connect": "^3.7.0",
38
+ "cors": "^2.8.5",
39
+ "express": "^4.19.2",
40
+ "quasar": "^2.16.8",
41
+ "typestyle": "^2.4.0",
42
+ "vue": "^3.5.6",
43
+ "vue-router": "^4.4.5",
44
+ "zod": "^3.23.8",
45
+ "zova": "^5.0.196"
46
+ },
47
+ "devDependencies": {
48
+ "@cabloy/lint": "^4.0.11",
49
+ "@quasar/app-vite": "2.0.0-beta.18",
50
+ "@types/node": "^20.14.2",
51
+ "@vitejs/plugin-vue": "^5.0.5",
52
+ "concurrently": "^8.2.2",
53
+ "quasar-app-extension-zova": "^1.1.158",
54
+ "sass": "^1.77.5",
55
+ "typescript": "^5.4.5",
56
+ "vite": "^5.3.1",
57
+ "vue-tsc": "^2.0.29",
58
+ "zova-vite": "^1.0.161"
59
+ },
60
+ "license": "MIT",
61
+ "gitHead": "2e4d9bb972eb659ee729924bf7df496635c734a0"
62
+ }
@@ -6,7 +6,7 @@ export default function (_meta: ZovaConfigMeta) {
6
6
  // routes
7
7
  config.routes = {
8
8
  path: {
9
- '/a/home/home': { alias: '/' },
9
+ '/home/index': { alias: '/' },
10
10
  },
11
11
  name: {},
12
12
  };
@@ -0,0 +1,46 @@
1
+ /** components: begin */
2
+ export * as NSControllerCard from '../component/card/controller.js';
3
+ import * as NSControllerCard from '../component/card/controller.js';
4
+ import component_card from '../component/card/index.vue';
5
+ export const components = {
6
+ card: component_card,
7
+ };
8
+ import 'zova';
9
+ declare module 'zova' {
10
+ export interface IComponentRecord {
11
+ 'a-demo:card': NSControllerCard.ControllerCard;
12
+ }
13
+ }
14
+ /** components: end */
15
+ /** pages: begin */
16
+ export * as NSControllerPageComponent from '../page/component/controller.js';
17
+ export * as NSControllerPageState from '../page/state/controller.js';
18
+
19
+ export * from '../routes.js';
20
+
21
+ import 'zova';
22
+ declare module 'zova' {
23
+ export interface IPagePathRecord {
24
+ '/a/demo/component': never;
25
+ '/a/demo/state': never;
26
+ }
27
+ export interface IPageNameRecord {}
28
+ }
29
+ export const pagePathSchemas = {};
30
+ export const pageNameSchemas = {};
31
+ /** pages: end */
32
+ /** scope: begin */
33
+ import { BeanScopeBase, Scope, TypeModuleResource } from 'zova';
34
+
35
+ @Scope()
36
+ export class ScopeModuleADemo extends BeanScopeBase {}
37
+
38
+ export interface ScopeModuleADemo extends TypeModuleResource<typeof components, any, any, any, any, any> {}
39
+
40
+ import 'zova';
41
+ declare module 'zova' {
42
+ export interface IBeanScopeRecord {
43
+ 'a-demo': ScopeModuleADemo;
44
+ }
45
+ }
46
+ /** scope: end */
@@ -0,0 +1,2 @@
1
+ export const __ThisModule__ = 'a-demo';
2
+ export { ScopeModuleADemo as ScopeModule } from './index.js';
@@ -1,8 +1 @@
1
- import './assets/css/module.scss';
2
- export * from './config/index.js';
3
- export * from './resource/index.js';
4
- export * from './api/index.js';
5
- export * from './routes.js';
6
- export * from './types.js';
7
-
8
- import './typings.js';
1
+ export * from './.metadata/index.js';
@@ -1,6 +1,6 @@
1
1
  import { BeanControllerPageBase, Local } from 'zova';
2
2
  import { ControllerCard } from '../../component/card/controller.js';
3
- import { ScopeModule } from '../../resource/this.js';
3
+ import { ScopeModule } from '../../.metadata/this.js';
4
4
 
5
5
  @Local()
6
6
  export class ControllerPageComponent extends BeanControllerPageBase<ScopeModule> {
@@ -1,6 +1,6 @@
1
1
  import { BeanRenderBase, Local } from 'zova';
2
2
  import type { ControllerPageComponent } from './controller.js';
3
- import { ScopeModule } from '../../resource/this.js';
3
+ import { ScopeModule } from '../../.metadata/this.js';
4
4
 
5
5
  export interface RenderComponent extends ControllerPageComponent {}
6
6
 
@@ -0,0 +1,25 @@
1
+ /** beans: begin */
2
+ export * from '../bean/bean.api.js';
3
+ import { BeanApi } from '../bean/bean.api.js';
4
+ import 'zova';
5
+ declare module 'zova' {
6
+ export interface IBeanRecord {
7
+ 'home-api.bean.api': BeanApi;
8
+ }
9
+ }
10
+ /** beans: end */
11
+ /** scope: begin */
12
+ import { BeanScopeBase, Scope, TypeModuleResource } from 'zova';
13
+
14
+ @Scope()
15
+ export class ScopeModuleHomeApi extends BeanScopeBase {}
16
+
17
+ export interface ScopeModuleHomeApi extends TypeModuleResource<any, any, any, any, any, any> {}
18
+
19
+ import 'zova';
20
+ declare module 'zova' {
21
+ export interface IBeanScopeRecord {
22
+ 'home-api': ScopeModuleHomeApi;
23
+ }
24
+ }
25
+ /** scope: end */
@@ -0,0 +1,2 @@
1
+ export const __ThisModule__ = 'home-api';
2
+ export { ScopeModuleHomeApi as ScopeModule } from './index.js';
@@ -1,8 +1,3 @@
1
- export * from './config/index.js';
2
- export * from './resource/index.js';
3
- export * from './api/index.js';
4
- export * from './routes.js';
1
+ export * from './.metadata/index.js';
5
2
  export * from './types.js';
6
3
  export * from './monkey.js';
7
-
8
- import './typings.js';
@@ -0,0 +1,29 @@
1
+ /** components: begin */
2
+ export * as NSControllerPage from '../component/page/controller.js';
3
+ import * as NSControllerPage from '../component/page/controller.js';
4
+ import component_page from '../component/page/index.vue';
5
+ export const components = {
6
+ page: component_page,
7
+ };
8
+ import 'zova';
9
+ declare module 'zova' {
10
+ export interface IComponentRecord {
11
+ 'home-component:page': NSControllerPage.ControllerPage;
12
+ }
13
+ }
14
+ /** components: end */
15
+ /** scope: begin */
16
+ import { BeanScopeBase, Scope, TypeModuleResource } from 'zova';
17
+
18
+ @Scope()
19
+ export class ScopeModuleHomeComponent extends BeanScopeBase {}
20
+
21
+ export interface ScopeModuleHomeComponent extends TypeModuleResource<typeof components, any, any, any, any, any> {}
22
+
23
+ import 'zova';
24
+ declare module 'zova' {
25
+ export interface IBeanScopeRecord {
26
+ 'home-component': ScopeModuleHomeComponent;
27
+ }
28
+ }
29
+ /** scope: end */
@@ -0,0 +1,2 @@
1
+ export const __ThisModule__ = 'home-component';
2
+ export { ScopeModuleHomeComponent as ScopeModule } from './index.js';
@@ -1,5 +1,5 @@
1
1
  import { BeanControllerBase, Local, PropsBase } from 'zova';
2
- import { ScopeModule } from '../../resource/this.js';
2
+ import { ScopeModule } from '../../.metadata/this.js';
3
3
  import { JSX } from 'vue/jsx-runtime';
4
4
 
5
5
  export interface Props extends PropsBase<ControllerPage, Slots> {}
@@ -15,6 +15,4 @@ export class ControllerPage extends BeanControllerBase<ScopeModule, Props, Emits
15
15
  static $propsDefault = {};
16
16
 
17
17
  protected async __init__() {}
18
-
19
- protected __dispose__() {}
20
18
  }
@@ -1,12 +1,12 @@
1
1
  import { BeanRenderBase, Local } from 'zova';
2
2
  import type { StylePage } from './style.js';
3
- import { ScopeModule } from '../../resource/this.js';
3
+ import { ScopeModule } from '../../.metadata/this.js';
4
4
 
5
5
  export interface RenderPage extends StylePage {}
6
6
 
7
7
  @Local()
8
8
  export class RenderPage extends BeanRenderBase<ScopeModule> {
9
9
  render() {
10
- return <div class={this.stylePage}>{this.$slots.default?.()}</div>;
10
+ return <div class={this.cPage}>{this.$slots.default?.()}</div>;
11
11
  }
12
12
  }
@@ -1,15 +1,15 @@
1
1
  import { BeanStyleBase, Local } from 'zova';
2
2
  import type { ControllerPage } from './controller.js';
3
- import { ScopeModule } from '../../resource/this.js';
3
+ import { ScopeModule } from '../../.metadata/this.js';
4
4
 
5
5
  export interface StylePage extends ControllerPage {}
6
6
 
7
7
  @Local()
8
8
  export class StylePage extends BeanStyleBase<ScopeModule> {
9
- stylePage: string;
9
+ cPage: string;
10
10
 
11
11
  protected async __init__() {
12
- this.stylePage = this.$style({
12
+ this.cPage = this.$style({
13
13
  padding: '8px',
14
14
  });
15
15
  }
@@ -1,8 +1,2 @@
1
- import './assets/css/module.scss';
2
- export * from './config/index.js';
3
- export * from './resource/index.js';
4
- export * from './api/index.js';
5
- export * from './routes.js';
1
+ export * from './.metadata/index.js';
6
2
  export * from './types.js';
7
-
8
- import './typings.js';
@@ -1,5 +1,5 @@
1
1
  import 'zova';
2
- import { components } from './resource/components.js';
2
+ import { components } from './.metadata/index.js';
3
3
  declare module 'zova' {
4
4
  export interface BeanBase {
5
5
  $component: typeof components;
@@ -0,0 +1,8 @@
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 1024 1024" id="zova-svg-icon-home-icon-auth-dingtalk-square"><path fill="currentColor" d="M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32M739 449.3c-1 4.2-3.5 10.4-7 17.8h.1l-.4.7c-20.3 43.1-73.1 127.7-73.1 127.7s-.1-.2-.3-.5l-15.5 26.8h74.5L575.1 810l32.3-128h-58.6l20.4-84.7c-16.5 3.9-35.9 9.4-59 16.8 0 0-31.2 18.2-89.9-35 0 0-39.6-34.7-16.6-43.4 9.8-3.7 47.4-8.4 77-12.3 40-5.4 64.6-8.2 64.6-8.2S422 517 392.7 512.5c-29.3-4.6-66.4-53.1-74.3-95.8 0 0-12.2-23.4 26.3-12.3s197.9 43.2 197.9 43.2-207.4-63.3-221.2-78.7-40.6-84.2-37.1-126.5c0 0 1.5-10.5 12.4-7.7 0 0 153.3 69.7 258.1 107.9 104.8 37.9 195.9 57.3 184.2 106.7" /></symbol>
3
+ <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-auth-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>
4
+ <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-auth-password"><path fill="currentColor" d="M3 17h18c.55 0 1 .45 1 1s-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1m-.5-4.43c.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.49-.84h.95c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H5.3l.47-.82c.21-.36.09-.82-.27-1.03a.764.764 0 0 0-1.03.28L4 8.47l-.47-.82a.764.764 0 0 0-1.03-.28c-.36.21-.48.67-.27 1.03l.47.82h-.95c-.41 0-.75.34-.75.75s.34.75.75.75h.95l-.48.83c-.2.36-.08.82.28 1.02m8 0c.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.48-.83h.95c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.96l.47-.82a.76.76 0 0 0-.27-1.03.746.746 0 0 0-1.02.27l-.48.82-.47-.82a.74.74 0 0 0-1.02-.27c-.36.21-.48.67-.27 1.03l.47.82h-.96a.74.74 0 0 0-.75.74c0 .41.34.75.75.75h.95l-.48.83c-.2.36-.08.82.28 1.02M23 9.97c0-.41-.34-.75-.75-.75h-.95l.47-.82a.76.76 0 0 0-.27-1.03.746.746 0 0 0-1.02.27l-.48.83-.47-.82a.74.74 0 0 0-1.02-.27c-.36.21-.48.67-.27 1.03l.47.82h-.95a.743.743 0 0 0-.76.74c0 .41.34.75.75.75h.95l-.48.83a.74.74 0 0 0 .28 1.02c.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.48-.83h.95c.4-.01.74-.35.74-.76" /></symbol>
5
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--fa6-solid" viewBox="0 0 512 512" id="zova-svg-icon-home-icon-auth-sms"><path fill="currentColor" d="M256 32C114.6 32 .014 125.1.014 240c0 49.59 21.39 95 56.99 130.7-12.5 50.39-54.31 95.3-54.81 95.8C0 468.8-.594 472.2.688 475.2 1.1 478.2 4.813 480 8 480c66.31 0 116-31.8 140.6-51.41C181.3 440.9 217.6 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32m-88.7 239.9c-3.4 19.2-21 32.1-46.2 32.1a80.5 80.5 0 0 1-12.59-1c-7.41-1.2-15.7-4.2-23.01-6.9-8.312-3-14.06-12.66-11.09-20.97S85 261.1 93.38 264.9c6.979 2.498 14.53 5.449 20.88 6.438C125.7 273.1 135 271 135.8 266.4c1.053-5.912-10.84-8.396-24.56-12.34-12.12-3.531-44.28-12.97-38.63-46 4.062-23.38 27.31-35.91 58-31.09 5.906.906 12.44 2.844 18.59 4.969 8.344 2.875 12.78 12 9.906 20.34C156.3 210.7 147.2 215.1 138.8 212.2c-4.344-1.5-8.938-2.938-13.09-3.594-11.22-1.656-20.72.406-21.5 4.906-1.01 5.688 9.39 7.988 20.19 11.088 17 4.9 48.7 13.9 42.9 47.3M320 288c0 8.844-7.156 16-16 16s-16-7.2-16-16v-48l-19.19 25.59c-6.062 8.062-19.55 8.062-25.62 0L224 240v48c0 8.844-7.156 16-16 16s-16-7.2-16-16v-96c0-6.875 4.406-12.1 10.94-15.18 6.5-2.094 13.71.059 17.87 5.59L256 229.3l35.19-46.93c4.156-5.531 11.4-7.652 17.87-5.59C315.6 179 320 185.1 320 192zm119.3-16.1c-3.4 19.2-21 32.1-46.2 32.1a80.5 80.5 0 0 1-12.59-1c-8.25-1.25-16.56-4.25-23.88-6.906-8.312-3-14.06-12.66-11.09-20.97s10.59-13.16 18.97-10.19c6.979 2.498 14.53 5.449 20.88 6.438 11.44 1.719 20.78-.375 21.56-4.938 1.053-5.912-10.84-8.396-24.56-12.34-12.12-3.531-44.28-12.97-38.63-46 4.031-23.38 27.25-35.91 58-31.09 5.906.906 12.44 2.844 18.59 4.969 8.344 2.875 12.78 12 9.906 20.34-2.875 8.344-11.94 12.81-20.34 9.906-4.344-1.5-8.938-2.938-13.09-3.594-11.19-1.656-20.72.406-21.5 4.906C375.2 219.2 385.6 221.5 396.4 224.6c17 4.9 48.7 13.9 42.9 47.3" /></symbol>
6
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1025 1024" id="zova-svg-icon-home-icon-auth-wechat-outline"><path fill="currentColor" d="M498.816 345.056c26.336 0 43.936-17.632 43.936-43.904 0-26.56-17.568-43.744-43.936-43.744s-52.832 17.184-52.832 43.744c.032 26.272 26.496 43.904 52.832 43.904m-245.728-87.648c-26.336 0-52.96 17.184-52.96 43.744 0 26.272 26.624 43.904 52.96 43.904 26.24 0 43.808-17.632 43.808-43.904-.032-26.56-17.568-43.744-43.808-43.744M1024 626.112c0-138.88-128.832-257.216-286.976-269.536.224-1.728.32-3.52-.064-5.312-31.712-147.84-190.688-259.296-369.824-259.296C164.704 91.968 0 233.12 0 406.624c0 93.088 47.52 176.96 137.568 243.104l-31.392 94.368c-2.016 6.144-.192 12.896 4.704 17.152a16.1 16.1 0 0 0 10.496 3.904 16.26 16.26 0 0 0 7.168-1.696L246.4 704.48l14.528 2.944c36.288 7.456 67.616 13.92 106.208 13.92a406 406 0 0 0 34.176-1.472c4.576-.384 8.448-2.688 11.072-6.016C454.88 820.192 572 896.96 709.824 896.96c35.296 0 71.04-8.512 103.104-16.544l90.848 49.664a16.06 16.06 0 0 0 7.68 1.984 16 16 0 0 0 10.048-3.552c5.056-4.096 7.136-10.848 5.248-17.024l-23.2-77.152C981.344 772.864 1024 699.328 1024 626.112m-625.408 61.856c-10.4.896-20.96 1.344-31.424 1.344-35.328 0-65.216-6.112-99.776-13.248L247.296 672a15.46 15.46 0 0 0-10.272 1.376l-88.288 44.192 22.944-68.928a16.01 16.01 0 0 0-6.016-18.176C76.96 568.64 32 493.312 32 406.624c0-155.84 150.336-282.656 335.136-282.656 163.36 0 308 99.392 337.856 231.584-171.296 2.24-309.888 122.656-309.888 270.56 0 21.504 3.264 42.336 8.768 62.432-1.664-.416-3.424-.736-5.28-.576m476.864 127.584a16.02 16.02 0 0 0-5.696 17.376l15.136 50.336-62.112-33.984a15.9 15.9 0 0 0-7.68-1.984c-1.312 0-2.624.16-3.904.512-33.312 8.416-67.776 17.088-101.344 17.088-155.904 0-282.72-107.136-282.72-238.816s126.816-238.784 282.72-238.784C862.784 387.296 992 496.64 992 626.08c0 65.664-41.376 132.96-116.544 189.472M612.992 511.968c-17.568 0-35.136 17.696-35.136 35.232 0 17.664 17.568 35.104 35.136 35.104 26.4 0 43.84-17.44 43.84-35.104 0-17.568-17.44-35.232-43.84-35.232m193.024 0c-17.312 0-34.88 17.696-34.88 35.232 0 17.664 17.568 35.104 34.88 35.104 26.304 0 44.064-17.44 44.064-35.104 0-17.568-17.728-35.232-44.064-35.232" /></symbol>
7
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1228 1024" id="zova-svg-icon-home-icon-auth-wxwork-outline"><path fill="currentColor" d="M1045.84 747.027a153.6 153.6 0 0 0-53.156 21.515 129.1 129.1 0 0 1-58.092 35.1c2.953-19.828 12.783-37.926 27.633-51.3a191.2 191.2 0 0 0 26.452-62.142 56.953 56.953 0 1 1 57.164 56.827zM941.639 610.634a190.8 190.8 0 0 0-61.932-26.747 56.953 56.953 0 1 1 56.953-56.953 155.3 155.3 0 0 0 21.263 53.325 129.67 129.67 0 0 1 34.762 58.346 85.98 85.98 0 0 1-50.878-27.97h-.21zm-93.826-200.728c-17.17-143.817-166.092-256.5-346.274-256.5-191.954 0-348.132 127.744-348.132 284.85a266.33 266.33 0 0 0 124.369 216.169 352 352 0 0 0 37.969 24.384l-15.44 61.636c5.568 2.616 10.968 5.4 16.663 7.805l77.963-38.981c11.39 2.953 23.372 4.851 35.268 6.876 7.594 1.35 15.188 2.742 22.993 3.67a401.1 401.1 0 0 0 145.547-8.353 281 281 0 0 0 11.474 62.185 481 481 0 0 1-108.675 12.698 472.5 472.5 0 0 1-97.621-10.758L262.46 846.21a31.22 31.22 0 0 1-33.877-3.543 31.64 31.64 0 0 1-10.926-32.316l25.312-101.925a330.08 330.08 0 0 1-152.844-270.17c0-192.29 184.19-348.131 411.413-348.131 215.746 0 392.428 140.653 409.64 319.444a277 277 0 0 0-29.91-2.953c-11.18.422-22.36 1.476-33.456 3.248zM716.399 634.47c18.943-3.797 36.957-11.053 53.157-21.515a129.1 129.1 0 0 1 58.134-35.016 86.36 86.36 0 0 1-27.675 51.216c-12.445 18.984-21.389 40.078-26.451 62.184a56.953 56.953 0 1 1-57.165-56.869m102.6 137.025c18.816 12.614 39.741 21.727 61.763 27a56.953 56.953 0 1 1-56.953 56.953 154.4 154.4 0 0 0-21.094-53.409 129.56 129.56 0 0 1-34.51-58.514 85.9 85.9 0 0 1 50.794 28.308z" /></symbol>
8
+ </svg>
@@ -0,0 +1,12 @@
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--ri" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-business-coupon"><path fill="currentColor" d="M2 9.5V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v5.5a2.5 2.5 0 1 0 0 5V20a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-5.5a2.5 2.5 0 1 0 0-5M14 5H4v2.968a4.5 4.5 0 0 1 0 8.064V19h10zm2 0v14h4v-2.968a4.5 4.5 0 0 1 0-8.064V5z" /></symbol>
3
+ <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-business-course"><path fill="currentColor" d="M24 30H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16.618l-5-2.5-5 2.5V4H8v24h16v-4h2v4a2.003 2.003 0 0 1-2 2m-3-14.118 3 1.5V4h-6v13.382Z" /></symbol>
4
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--uil" viewBox="0 0 24 24" id="zova-svg-icon-home-icon-business-distribution"><path fill="currentColor" d="M19 2a1 1 0 0 0-1 1v1h-5a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h5v1a1 1 0 0 0 2 0V3a1 1 0 0 0-1-1m-1 16h-4V6h4ZM9 2a1 1 0 0 0-1 1v2H5a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h3v2a1 1 0 0 0 2 0V3a1 1 0 0 0-1-1M8 17H6V7h2Z" /></symbol>
5
+ <symbol viewBox="0 0 512 512" id="zova-svg-icon-home-icon-business-hotsprings"><path fill="#FF473E" d="M349.164 318.915s.842-1.244 2.518-3.433c.927-1.132 1.662-2.397 2.568-3.849.445-.758.936-1.417 1.456-2.337l1.628-2.765a107 107 0 0 0 6.794-13.979c2.1-5.414 3.932-11.49 4.998-18.019a87.2 87.2 0 0 0 .918-20.539c-.041-.883-.209-1.781-.296-2.67l-.131-1.337-.062-.669c-.015-.745.013.924.003.707l-.015-.115-.03-.229-.06-.459-.483-3.699-.11-.932c-.02-.14-.033-.346-.06-.432l-.078-.267-.299-1.066-.554-2.184-.722-2.638c-.198-.889-.533-1.748-.825-2.616-.301-.866-.517-1.755-.865-2.608-1.289-3.447-2.842-6.81-4.557-10.124-1.856-3.246-3.837-6.447-6.113-9.493-2.338-2.992-4.826-5.911-7.6-8.587a81 81 0 0 0-8.999-7.291c-1.44-.946-.46-.306-.809-.537l-.106-.076-.213-.152-.426-.304-.852-.608-1.703-1.217-.851-.608-.213-.152-.299-.23-.602-.465-2.396-1.878-2.363-1.912-.585-.483-.504-.458-1.003-.918c-1.331-1.23-2.672-2.444-3.967-3.7l-3.742-3.906c-1.259-1.284-2.353-2.721-3.519-4.08l-1.712-2.068c-.566-.691-1.077-1.428-1.614-2.14-1.056-1.44-2.126-2.862-3.113-4.337-3.961-5.903-7.262-12.137-9.996-18.492-1.266-3.226-2.534-6.413-3.473-9.69-.476-1.634-1.048-3.225-1.406-4.876l-1.13-4.898c-1.271-6.54-2.083-13.031-2.1-19.364-.124-3.161.118-6.277.258-9.333l.034-.572.018-.286.009-.143c-.001.102.032-1.419.026-.828l.131-.915.261-1.821.26-1.809c.093-.63.149-1.099.304-2 .262-1.611.56-3.201.856-4.771.152-.778.294-1.579.46-2.322l.549-2.098q.545-2.087 1.119-4.117c.405-1.349.892-2.666 1.334-3.974.475-1.3.853-2.607 1.408-3.85l1.582-3.695.786-1.807.881-1.746 1.766-3.403a91.6 91.6 0 0 1 16.266-21.593c5.671-5.573 11.267-9.53 15.974-12.417 2.385-1.417 4.52-2.611 6.466-3.501 1.912-.932 3.541-1.676 4.919-2.179 2.727-1.043 4.173-1.532 4.173-1.532a6.56 6.56 0 0 1 7.247 10.281l-.408.508s-.863 1.077-2.466 2.97c-.836.898-1.721 2.18-2.815 3.56-1.126 1.343-2.218 3.085-3.511 4.879-2.458 3.727-5.206 8.27-7.648 13.633-2.405 5.381-4.539 11.534-5.84 18.244-.604 3.369-1.168 6.817-1.338 10.401-.046.894-.14 1.78-.157 2.684q.017 1.365-.004 2.726l-.019 1.363c.019.421.07.795.099 1.192.065.784.131 1.563.159 2.339.002.291.067 1.026.11 1.602l.142 1.822.142 1.834.072.921c-.007.667.018-.777.022-.599l.016.087.033.175.064.349c.346 1.859.548 3.735 1.061 5.575.734 3.718 2.028 7.343 3.346 10.926a82 82 0 0 0 5.109 10.357l1.57 2.45c.488.834 1.081 1.611 1.661 2.392l.841 1.188c.268.404.559.793.882 1.162l1.836 2.271a81.6 81.6 0 0 0 8.273 8.262l2.291 1.819.568.458.282.229.241.156c.32.21.639.418.945.643l.914.678.225.174.115.089.22.141.88.566 1.76 1.132.88.566.44.283.22.141.11.071c-.277-.182.775.507-.593-.39a119 119 0 0 1 17.396 13.16 116 116 0 0 1 14.374 16.206c1.024 1.477 2.047 2.951 3.029 4.446.507.737.978 1.496 1.421 2.272l1.353 2.308c1.87 3.032 3.337 6.274 4.869 9.436 1.366 3.247 2.759 6.454 3.772 9.778.521 1.654 1.137 3.267 1.541 4.941l1.248 4.977c.405 1.651.658 3.331.978 4.982.293 1.658.586 3.305.737 4.965l.521 4.931c.048.391.072.835.089 1.3l.058 1.361.096 2.705.069 2.682.013.667c.005.225-.013.332-.018.504l-.05.937-.242 3.722-.03.462-.015.231-.008.115c-.004-.14.016 1.606 0 .937l-.122 1.167-.25 2.317c-.2 1.537-.337 3.059-.608 4.562-1.978 12.051-6.015 22.916-11.084 31.95a88.8 88.8 0 0 1-17.109 21.819 213 213 0 0 1-4.459 3.838c-1.453 1.195-2.953 2.236-4.345 3.255-1.364 1.047-2.824 1.881-4.16 2.712-1.354.813-2.589 1.625-3.865 2.265-2.552 1.278-4.715 2.424-6.893 3.278-2.1.86-3.878 1.621-5.165 1.89-2.654.747-4.121 1.069-4.121 1.069a6.88 6.88 0 0 1-8.192-5.243 6.92 6.92 0 0 1 1.028-5.323m-118.415 5.33a6.877 6.877 0 0 0 8.192 5.243s1.467-.322 4.121-1.069c1.287-.27 3.065-1.03 5.165-1.89 2.178-.854 4.341-1.999 6.893-3.278 1.277-.64 2.511-1.452 3.865-2.265 1.336-.832 2.796-1.666 4.16-2.712 1.391-1.019 2.892-2.061 4.345-3.255a213 213 0 0 0 4.459-3.838 88.9 88.9 0 0 0 17.109-21.819c5.068-9.034 9.106-19.899 11.084-31.95.27-1.503.408-3.026.608-4.562l.25-2.317.122-1.167c.016.668-.004-1.078 0-.937l.008-.115.015-.231.03-.462.242-3.722.05-.937c.005-.172.023-.279.018-.504l-.013-.667-.069-2.682-.096-2.705-.058-1.361a16 16 0 0 0-.089-1.3l-.521-4.931c-.151-1.66-.444-3.307-.737-4.965-.32-1.651-.574-3.331-.978-4.982l-1.248-4.977c-.404-1.674-1.019-3.287-1.541-4.941-1.013-3.324-2.406-6.531-3.772-9.778-1.532-3.162-2.999-6.404-4.869-9.436l-1.353-2.308a32 32 0 0 0-1.421-2.272c-.983-1.495-2.006-2.969-3.029-4.446a116 116 0 0 0-14.374-16.206c-1.339-1.227-2.728-2.403-4.112-3.583-1.363-1.206-2.827-2.291-4.28-3.388-1.462-1.086-2.887-2.222-4.426-3.202l-2.281-1.507-1.147-.742-.574-.37-.287-.184-.144-.092c.266.175-.797-.521.559.369l-3.521-2.264-.88-.566-.22-.141-.115-.089-.225-.174-.914-.678c-.306-.224-.625-.433-.945-.643l-.241-.156-.282-.229-.568-.458-2.291-1.819a81.5 81.5 0 0 1-8.273-8.262l-1.836-2.271a11 11 0 0 1-.882-1.162l-.841-1.188c-.58-.781-1.173-1.558-1.662-2.392l-1.57-2.45a82.6 82.6 0 0 1-5.109-10.357c-1.318-3.584-2.612-7.208-3.346-10.926-.514-1.84-.716-3.716-1.061-5.575l-.064-.349-.033-.175-.016-.087c-.004-.178-.029 1.266-.022.599l-.072-.921-.142-1.834-.142-1.822c-.043-.576-.108-1.312-.11-1.602-.028-.775-.094-1.555-.159-2.339-.029-.398-.08-.772-.099-1.192l.019-1.363q.021-1.361.004-2.726c.017-.904.111-1.79.157-2.684.17-3.584.734-7.032 1.338-10.401 1.301-6.71 3.436-12.864 5.84-18.244 2.442-5.363 5.189-9.907 7.648-13.633 1.293-1.794 2.385-3.537 3.511-4.879 1.094-1.38 1.979-2.663 2.815-3.56a159 159 0 0 0 2.466-2.97l.408-.508a6.56 6.56 0 0 0-7.247-10.281s-1.447.489-4.173 1.532c-1.378.504-3.006 1.247-4.919 2.179-1.946.89-4.081 2.083-6.466 3.501-4.708 2.887-10.304 6.844-15.974 12.417a91.6 91.6 0 0 0-16.266 21.593l-1.765 3.403-.881 1.746-.786 1.807-1.582 3.695c-.555 1.243-.933 2.55-1.408 3.85-.442 1.308-.929 2.625-1.334 3.974a214 214 0 0 0-1.119 4.117l-.549 2.098c-.166.743-.308 1.544-.46 2.322-.296 1.569-.594 3.16-.856 4.771-.154.9-.211 1.37-.304 2l-.26 1.809-.261 1.821-.131.915c.006-.59-.027.93-.026.828l-.009.143-.018.286-.034.572c-.141 3.056-.383 6.172-.258 9.333.017 6.333.829 12.823 2.1 19.364l1.13 4.898c.358 1.651.93 3.242 1.406 4.876.939 3.277 2.207 6.464 3.473 9.69 2.734 6.354 6.035 12.589 9.996 18.492.987 1.476 2.057 2.898 3.113 4.337.537.712 1.048 1.449 1.614 2.14l1.712 2.068c1.166 1.359 2.26 2.795 3.519 4.08l3.742 3.906c1.296 1.256 2.637 2.47 3.968 3.7l1.003.918.504.458.585.483 2.363 1.912 2.396 1.878.602.465.299.23.213.152.851.608 3.406 2.433c1.429.939.438.292.776.515l.073.055.146.109.292.218.584.432 1.182.841c.815.522 1.529 1.185 2.29 1.779 1.556 1.151 2.895 2.556 4.359 3.802 2.774 2.676 5.261 5.595 7.6 8.587 2.277 3.045 4.258 6.247 6.113 9.493 1.715 3.314 3.268 6.676 4.557 10.124.348.854.564 1.743.865 2.608.292.868.628 1.728.825 2.616l.722 2.638.554 2.184.299 1.066.078.267c.027.086.039.292.06.432l.11.932.483 3.699.06.459.03.229.015.115c.009.217-.018-1.452-.003-.707l.062.669.131 1.337c.087.89.255 1.787.296 2.67a87.2 87.2 0 0 1-.918 20.539c-1.066 6.529-2.898 12.605-4.998 18.019a107 107 0 0 1-6.794 13.979l-1.628 2.765c-.52.92-1.011 1.579-1.456 2.337-.906 1.452-1.642 2.717-2.568 3.849-1.676 2.189-2.518 3.433-2.518 3.433a6.86 6.86 0 0 0-1.029 5.324m-117.392 0a6.877 6.877 0 0 0 8.192 5.243s1.467-.322 4.121-1.069c1.287-.27 3.065-1.03 5.165-1.89 2.178-.854 4.341-1.999 6.893-3.278 1.277-.64 2.511-1.452 3.865-2.265 1.336-.832 2.796-1.666 4.16-2.712 1.391-1.019 2.892-2.061 4.345-3.255a213 213 0 0 0 4.459-3.838 88.9 88.9 0 0 0 17.109-21.819c5.068-9.034 9.106-19.899 11.084-31.95.27-1.503.407-3.026.608-4.562l.25-2.317.122-1.167c.016.668-.004-1.078 0-.937l.008-.115.015-.231.03-.462.242-3.722.05-.937c.005-.172.023-.279.018-.504l-.013-.667-.069-2.682-.096-2.705-.058-1.361a16 16 0 0 0-.089-1.3l-.521-4.931c-.151-1.66-.444-3.307-.737-4.965-.32-1.651-.574-3.331-.978-4.982l-1.248-4.977c-.404-1.674-1.019-3.287-1.541-4.941-1.013-3.324-2.406-6.531-3.772-9.778-1.532-3.162-2.999-6.404-4.869-9.436l-1.353-2.308a32 32 0 0 0-1.421-2.272c-.983-1.495-2.006-2.969-3.029-4.446a116 116 0 0 0-14.374-16.206c-1.339-1.227-2.728-2.403-4.112-3.583-1.363-1.206-2.827-2.291-4.28-3.388-1.462-1.086-2.887-2.222-4.426-3.202l-2.281-1.507-1.147-.742-.574-.37-.287-.184-.144-.092c.266.175-.797-.521.559.369l-3.521-2.264-.88-.566-.22-.141-.115-.089-.225-.174-.914-.678c-.306-.224-.625-.433-.945-.643l-.241-.156-.282-.229-.568-.458-2.291-1.819a81.5 81.5 0 0 1-8.273-8.262l-1.836-2.271a11 11 0 0 1-.882-1.162l-.841-1.188c-.58-.781-1.173-1.558-1.662-2.392l-1.57-2.45a82.6 82.6 0 0 1-5.109-10.357c-1.318-3.584-2.612-7.208-3.346-10.926-.514-1.84-.716-3.716-1.061-5.575l-.064-.349-.033-.175-.016-.087c-.004-.178-.029 1.266-.022.599l-.072-.921-.142-1.834-.142-1.822c-.043-.576-.108-1.312-.11-1.602-.028-.775-.094-1.555-.159-2.339-.029-.398-.08-.772-.099-1.192l.019-1.363q.021-1.361.004-2.726c.017-.904.111-1.79.157-2.684.17-3.584.734-7.032 1.338-10.401 1.301-6.71 3.436-12.864 5.84-18.244 2.442-5.363 5.189-9.907 7.648-13.633 1.293-1.794 2.385-3.537 3.511-4.879 1.094-1.38 1.979-2.663 2.815-3.56a159 159 0 0 0 2.466-2.97l.408-.508a6.56 6.56 0 0 0-7.247-10.281s-1.447.489-4.173 1.532c-1.378.504-3.006 1.247-4.919 2.179-1.946.89-4.081 2.083-6.466 3.501-4.708 2.887-10.304 6.844-15.974 12.417a91.6 91.6 0 0 0-16.266 21.593l-1.765 3.403-.881 1.746-.786 1.807-1.582 3.695c-.555 1.243-.933 2.55-1.408 3.85-.442 1.308-.929 2.625-1.334 3.974a214 214 0 0 0-1.119 4.117l-.549 2.098c-.166.743-.308 1.544-.46 2.322-.296 1.569-.594 3.16-.856 4.771-.154.9-.211 1.37-.304 2l-.26 1.809-.261 1.821-.131.915c.006-.59-.027.93-.026.828l-.009.143-.018.286-.034.572c-.14 3.056-.383 6.172-.258 9.333.017 6.333.829 12.823 2.1 19.364l1.13 4.898c.358 1.651.93 3.242 1.406 4.876.939 3.277 2.207 6.464 3.473 9.69 2.734 6.354 6.035 12.589 9.996 18.492.987 1.476 2.057 2.898 3.113 4.337.537.712 1.048 1.449 1.614 2.14l1.712 2.068c1.166 1.359 2.26 2.795 3.519 4.08l3.742 3.906c1.296 1.256 2.637 2.47 3.968 3.7l1.003.918.504.458.585.483 2.363 1.912 2.396 1.878.602.465.299.23.213.152.851.608 3.406 2.433c1.429.939.438.292.776.515l.073.055.146.109.292.218.584.432 1.182.841c.815.522 1.529 1.185 2.29 1.779 1.556 1.151 2.895 2.556 4.359 3.802 2.774 2.676 5.261 5.595 7.6 8.587 2.277 3.045 4.258 6.247 6.113 9.493 1.715 3.314 3.268 6.676 4.557 10.124.348.854.564 1.743.865 2.608.292.868.628 1.728.825 2.616l.722 2.638.554 2.184.299 1.066.078.267c.027.086.039.292.06.432l.11.932.483 3.699.06.459.03.229.015.115c.009.217-.018-1.452-.003-.707l.062.669.131 1.337c.087.89.255 1.787.296 2.67a87.2 87.2 0 0 1-.918 20.539c-1.066 6.529-2.898 12.605-4.998 18.019a107 107 0 0 1-6.794 13.979l-1.628 2.765c-.52.92-1.011 1.579-1.456 2.337-.906 1.452-1.642 2.717-2.568 3.849-1.676 2.189-2.518 3.433-2.518 3.433a6.86 6.86 0 0 0-1.029 5.324m-42.814-83.381a7.96 7.96 0 0 0-11.031-2.252l-1.885 1.245-2.298 1.541c-.898.562-1.999 1.418-3.241 2.371-1.218.954-2.689 2.013-4.119 3.222-1.44 1.217-3.039 2.529-4.703 4.035-3.317 3.024-7.087 6.628-10.919 11.142-1.982 2.2-3.897 4.698-5.908 7.337l-2.909 4.212c-1.019 1.426-1.894 3.002-2.877 4.562-3.83 6.307-7.303 13.697-10.054 22.115l-1.015 3.198c-.321 1.082-.587 2.191-.865 3.308l-.817 3.39-.641 3.488c-.201 1.176-.442 2.361-.605 3.562l-.432 3.644-.21 1.849-.052.465-.026.233c.026 1.702 0 .582.003 1.011l-.049.768-.196 3.095-.198 3.135c-.013.115-.012.28-.005.466l.014.529.031 1.063.086 2.141c.137 2.835.242 5.923.629 8.464l.512 4.039.273 2.042c.11.677.267 1.342.4 2.017l.859 4.068c.314 1.356.543 2.765.967 4.092 2.838 10.905 7.43 21.744 13.466 31.938 6.017 10.219 13.418 19.845 21.825 28.688 16.836 17.711 37.521 32.389 60.158 44.003 11.337 5.783 23.19 10.791 35.379 15.129l4.592 1.582 2.303.791 2.321.717 9.33 2.847 9.449 2.519c3.161.831 6.353 1.498 9.542 2.251 3.188.773 6.4 1.39 9.624 1.993 3.222.615 6.449 1.251 9.697 1.723 3.245.496 6.493 1.06 9.754 1.492l9.808 1.172c3.275.366 6.559.6 9.844.902 1.643.131 3.286.311 4.931.399l4.939.253c3.294.147 6.59.378 9.885.398l10.418.176 9.082-.163 2.27-.043c.359-.002.784-.021 1.221-.043l1.287-.06 5.147-.247 5.143-.258c1.722-.079 3.31-.258 4.97-.39 3.285-.302 6.57-.537 9.845-.903l9.809-1.169c3.264-.412 6.51-.991 9.756-1.482 3.248-.473 6.475-1.11 9.698-1.725 3.223-.61 6.441-1.201 9.627-1.981 3.19-.754 6.382-1.422 9.543-2.253l9.453-2.509 9.331-2.849 2.321-.718 2.303-.791 4.593-1.583c12.194-4.328 24.052-9.335 35.391-15.119 22.645-11.609 43.34-26.288 60.183-44.006 8.409-8.849 15.814-18.478 21.835-28.701 6.036-10.201 10.63-21.046 13.47-31.958 2.863-10.902 3.979-21.816 3.562-31.998l-.179-3.788-.048-.936c-.009-.348.003.449-.023-.839l-.026-.19-.052-.379-.206-1.511-.408-2.992-.128-.864-.156-.975-.32-1.935-.668-3.794-.819-3.391c-.278-1.117-.536-2.228-.862-3.31l-1.018-3.2c-2.761-8.419-6.232-15.814-10.068-22.121-.985-1.56-1.861-3.136-2.882-4.562l-2.913-4.211c-2.014-2.638-3.927-5.139-5.913-7.336-3.837-4.512-7.608-8.115-10.929-11.137-1.665-1.505-3.267-2.815-4.707-4.033-1.441-1.218-2.845-2.203-4.046-3.141-2.393-1.885-4.379-3.119-5.655-4.017l-1.966-1.317c-2.659-1.772-6.256-1.832-9.01.135a7.92 7.92 0 0 0-1.843 11.049l.26.364 1.252 1.753c.82 1.154 2.09 2.816 3.585 5.072 1.547 2.214 3.318 5.02 5.318 8.288.93 1.681 2.018 3.417 2.995 5.354l1.553 2.951c.54 1.003.988 2.088 1.506 3.164 1.067 2.138 1.91 4.5 2.937 6.864l1.327 3.71c.483 1.244.79 2.573 1.207 3.881 1.481 5.296 2.728 10.968 3.14 16.968l.158 2.255c.04.756.01 1.523.04 2.284l.055 2.296-.125 2.019-.106 2.127-.224 3.012-.113 1.521-.028.382-.014.191c-.024-1.161-.023-.237-.035-.457l-.111.593-.431 2.376a75.4 75.4 0 0 1-6.12 19.034c-5.914 12.613-16.129 24.844-29.614 35.681-13.486 10.844-30.13 20.283-48.629 27.843a286 286 0 0 1-29.04 9.912 302 302 0 0 1-31.006 7.128 368 368 0 0 1-32.29 4.298c-2.725.254-5.47.385-8.206.588-1.353.081-2.774.215-4.072.266l-3.919.168-3.92.179-.98.046c-.319.017-.65.032-1.048.033l-2.27.028-9.082.121-7.746-.107c-2.761.013-5.506-.18-8.257-.281-2.75-.118-5.501-.208-8.235-.43-2.736-.204-5.481-.335-8.206-.589a371 371 0 0 1-32.297-4.275c-10.6-1.858-20.98-4.237-31.013-7.123a283 283 0 0 1-29.051-9.902c-18.507-7.556-35.159-16.996-48.653-27.847-13.493-10.846-23.714-23.089-29.628-35.716-.45-.773-.698-1.584-1.052-2.373l-1.004-2.373c-.163-.395-.353-.786-.496-1.184l-.394-1.197-.809-2.384c-.641-1.691-.865-2.899-1.287-4.271l-.302-1.009-.162-.505-.083-.253a1.2 1.2 0 0 1-.071-.317l-.454-3.109-.448-3.069-.111-.761c-.001.302-.037-.945-.009.63l-.014-.148-.029-.296-.117-1.184-.248-2.36c-.069-.784-.065-1.561-.106-2.339l-.097-2.326.057-2.297c.029-.762-.008-1.531.036-2.286l.161-2.256c.422-6.002 1.666-11.678 3.154-16.974.419-1.308.727-2.637 1.212-3.881l1.331-3.71c1.03-2.363 1.87-4.727 2.942-6.863.519-1.076.967-2.16 1.509-3.163l1.556-2.95c.976-1.939 2.069-3.672 3-5.352.969-1.656 1.976-3.128 2.832-4.537.861-1.423 1.691-2.553 2.417-3.667.731-1.088 1.356-2.051 2.053-2.954L69 251.772l1.332-1.825c1.892-2.607 2.093-6.236.211-9.083" /></symbol>
6
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--fa6-solid" viewBox="0 0 576 512" id="zova-svg-icon-home-icon-business-kitchen-set"><path fill="currentColor" d="M80 144c0-35.3 28.7-64 64-64s64 28.7 64 64-28.7 64-64 64-64-28.7-64-64m204.4 32c-14.5 64.1-71.9 112-140.4 112C64.47 288 0 223.5 0 144 0 64.47 64.47 0 144 0c68.5 0 125.9 47.87 140.4 112h71.8c8.8-9.8 21.6-16 35.8-16h104c26.5 0 48 21.5 48 48s-21.5 48-48 48H392c-14.2 0-27-6.2-35.8-16zM144 48c-53.02 0-96 42.98-96 96 0 53 42.98 96 96 96 53 0 96-43 96-96 0-53.02-43-96-96-96m280 216v8h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H280c-13.3 0-24-10.7-24-24s10.7-24 24-24h96v-8c0-13.3 10.7-24 24-24s24 10.7 24 24M288 464V352h224v112c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48M176 320c26.5 0 48 21.5 48 48s-21.5 48-48 48h-16c0 17.7-14.3 32-32 32H64c-17.67 0-32-14.3-32-32v-80c0-8.8 7.16-16 16-16zm16 48c0-8.8-7.2-16-16-16h-16v32h16c8.8 0 16-7.2 16-16m8 96c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.25 0-24-10.7-24-24s10.75-24 24-24z" /></symbol>
7
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--healthicons" viewBox="0 0 48 48" id="zova-svg-icon-home-icon-business-money-bag"><g fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"><path d="M28.772 24.667A4 4 0 0 0 25 22v-1h-2v1a4 4 0 1 0 0 8v4c-.87 0-1.611-.555-1.887-1.333a1 1 0 1 0-1.885.666A4 4 0 0 0 23 36v1h2v-1a4 4 0 0 0 0-8v-4a2 2 0 0 1 1.886 1.333 1 1 0 1 0 1.886-.666M23 24a2 2 0 1 0 0 4zm2 10a2 2 0 1 0 0-4z" /><path d="M13.153 8.621C15.607 7.42 19.633 6 24.039 6c4.314 0 8.234 1.361 10.675 2.546l.138.067c.736.364 1.33.708 1.748.987L32.906 15C41.422 23.706 48 41.997 24.039 41.997S6.479 24.038 15.069 15l-3.67-5.4c.283-.185.642-.4 1.07-.628q.318-.171.684-.35Zm17.379 6.307 2.957-4.323c-2.75.198-6.022.844-9.172 1.756-2.25.65-4.75.551-7.065.124a25 25 0 0 1-1.737-.386l1.92 2.827c4.115 1.465 8.981 1.465 13.097.002M16.28 16.63c4.815 1.86 10.602 1.86 15.417-.002a29.3 29.3 0 0 1 4.988 7.143c1.352 2.758 2.088 5.515 1.968 7.891-.116 2.293-1.018 4.252-3.078 5.708-2.147 1.517-5.758 2.627-11.537 2.627-5.785 0-9.413-1.091-11.58-2.591-2.075-1.438-2.986-3.37-3.115-5.632-.135-2.35.585-5.093 1.932-7.87 1.285-2.648 3.078-5.197 5.005-7.274m-1.15-6.714c.8.238 1.636.445 2.484.602 2.15.396 4.306.454 6.146-.079a54 54 0 0 1 6.53-1.471C28.45 8.414 26.298 8 24.038 8c-3.445 0-6.658.961-8.908 1.916" /></g></symbol>
8
+ <symbol xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="iconify iconify--logos" viewBox="0 0 256 268" id="zova-svg-icon-home-icon-business-party"><path fill="#FF37AD" d="M22.498 68.97a11.845 11.845 0 1 0 0-23.687c-6.471.098-11.666 5.372-11.666 11.844s5.195 11.746 11.666 11.844Zm181.393-10.04a11.845 11.845 0 1 0-.003-23.688c-6.471.098-11.665 5.373-11.665 11.845.001 6.472 5.197 11.745 11.668 11.842Z" /><path fill="#FCC954" d="M213.503 211.097a11.845 11.845 0 1 0-.003-23.687c-6.471.098-11.665 5.373-11.664 11.845s5.196 11.745 11.667 11.842M70.872 23.689a11.845 11.845 0 1 0 0-23.688C64.4.1 59.206 5.373 59.206 11.845s5.195 11.746 11.666 11.844" /><path fill="#2890E9" d="M140.945 105.94a9.25 9.25 0 0 1-8.974-11.484c.37-1.482.672-2.97.899-4.455a25.4 25.4 0 0 1-8.732 1.904c-5.379.205-10.195-.702-14.3-2.69a22.23 22.23 0 0 1-9.614-8.877c-4.415-7.652-4.034-17.718.964-25.645 4.765-7.568 12.836-11.664 21.586-10.995 6.74.527 12.647 3.051 17.378 7.382q1.293-3.647 2.473-7.803c4.833-17.058 6.429-34.187 6.442-34.36a9.24 9.24 0 0 1 10.041-8.37 9.25 9.25 0 0 1 8.37 10.044c-.067.767-1.768 19.03-7.068 37.735-2.676 9.445-5.838 17.426-9.42 23.798q.397 2.13.631 4.372c.746 7.211.152 14.974-1.714 22.445a9.256 9.256 0 0 1-8.962 6.998Zm-20.123-43.827c-.956 0-2.64.28-3.996 2.43-1.298 2.06-1.552 4.873-.588 6.544 1.282 2.223 5.054 2.417 7.19 2.336 2.424-.092 4.908-1.612 7.338-4.382a16 16 0 0 0-1.43-2.422c-2.007-2.787-4.547-4.212-7.998-4.482-.13-.008-.305-.024-.516-.024" /><path fill="#F0A420" d="M114.361 131.268c-38.343-30.224-78.42-43.319-89.514-29.246a12.8 12.8 0 0 0-2.257 4.509 4 4 0 0 0-.156.61v.024q-.224.947-.333 1.917L.393 236.18c-3.477 20.412 16.73 36.755 35.967 29.093l117.721-46.908c2.076-.826 7.185-3.982 8.583-5.724q.556-.543 1.037-1.153c11.092-14.075-11-49.988-49.34-80.223z" /><path fill="#FCC954" d="M163.688 211.494c11.1-14.08-10.984-50-49.327-80.226-38.343-30.227-78.425-43.316-89.524-29.236s10.983 50 49.326 80.226c38.343 30.227 78.425 43.316 89.525 29.236" /><path fill="#F0A420" d="M156.994 203.294c9.108-11.556-10.956-42.563-44.817-69.256-33.861-26.695-68.697-38.966-77.804-27.413-9.11 11.556 10.954 42.563 44.815 69.256 33.86 26.695 68.697 38.969 77.806 27.413" /><path fill="#2E6AC9" d="M76.059 249.456c-14.327.07-26.004-7.101-40.158-18.257C19.431 218.21 8.493 202.665 7.63 193.81l-4.668 27.327c2.16 7.798 9.523 17.683 20.202 26.101 8.883 7.004 17.844 11.813 27.135 12.48l25.76-10.266zm-14.332-49.6c-27.443-21.637-45.271-46.467-44.77-60.669l-4.549 26.63c.351 12.685 15.175 33.184 36.262 49.808 18.894 14.896 38.583 25.38 53.66 23.363l25.593-10.2c-20.62 1.425-42.376-10.147-66.196-28.931Z" /><path fill="#2890E9" d="M118.535 145.052a11.845 11.845 0 1 0 0-23.688c-6.471.098-11.666 5.372-11.666 11.844s5.195 11.746 11.666 11.844" /><path fill="#FF37AD" d="m182.412 122.007.087-.097c.108-.116.308-.33.596-.621a45 45 0 0 1 2.8-2.56c3.56-2.98 7.45-5.54 11.594-7.63 10.128-5.125 25.208-9.307 44.985-4.747 5.943 1.37 11.87-2.336 13.241-8.278 1.37-5.942-2.336-11.87-8.278-13.24-25.602-5.903-45.957-.506-59.922 6.566a82.5 82.5 0 0 0-15.857 10.449 66 66 0 0 0-4.215 3.866 45 45 0 0 0-1.53 1.615l-.12.135-.042.048-.02.022-.007.008c-.003.005-.009.01 8.361 7.21l-8.37-7.2c-3.877 4.622-3.328 11.5 1.233 15.448s11.446 3.506 15.464-.994M73.03 43.248a11.75 11.75 0 0 0-16.23-3.664 11.76 11.76 0 0 0-3.665 16.227c.427.683 9.178 14.86 10.976 34.276 1.83 19.727-3.966 37.86-17.253 54.12 4.474 5.686 9.858 11.596 16.008 17.507 8.51-9.834 14.913-20.402 19.12-31.583 5.175-13.756 7.006-28.342 5.445-43.348-2.487-23.874-12.874-41.11-14.402-43.535Z" /><path fill="#2890E9" d="M220.242 156.578c6.002 1.553 10.244 3.246 12.077 4.034a11.86 11.86 0 0 0 13.94-1.12 11.87 11.87 0 0 0 4.107-8.765 11.85 11.85 0 0 0-8.06-11.426c-5.618-2.495-26.905-10.92-55.044-9.423-18.941 1.007-37.155 6.253-54.133 15.608-16.076 8.86-31.004 21.412-44.556 37.425a199 199 0 0 0 20.17 12.607c22.882-26.08 49.283-40.217 78.7-42.085a105.9 105.9 0 0 1 32.8 3.145Z" /></symbol>
9
+ <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-business-provider"><path fill="currentColor" d="M12 13q1.45 0 2.475-1.025T15.5 9.5t-1.025-2.475T12 6 9.525 7.025 8.5 9.5t1.025 2.475T12 13m0-2q-.625 0-1.062-.438-.438-.437-.438-1.062t.438-1.062Q11.375 8 12 8t1.062.438q.438.437.438 1.062t-.438 1.062Q12.625 11 12 11m0 11.5L3 17V7l9-5.5L21 7v10Zm0-2.35 3.675-2.25q-.825-.425-1.75-.662T12 17t-1.925.238q-.925.237-1.75.662Zm-5.6-3.425q1.2-.825 2.613-1.275Q10.425 15 12 15t2.988.45q1.412.45 2.612 1.275l1.4-.85v-7.75L12 3.85 5 8.125v7.75Zm5.6-6.45" /></symbol>
10
+ <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-business-purchase"><path fill="currentColor" d="M28 6H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h24a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m0 2v3H4V8ZM4 24V13h24v11Z" /><path fill="currentColor" d="M6 20h10v2H6z" /></symbol>
11
+ <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-business-store"><path fill="currentColor" d="M5.025 21q-.825 0-1.412-.587-.588-.588-.588-1.413v-7.95q-.575-.525-.887-1.35t-.013-1.8l1.05-3.4q.2-.65.713-1.075T5.075 3h13.9q.675 0 1.175.412.5.413.725 1.088l1.05 3.4q.3.975-.012 1.775-.313.8-.888 1.375V19q0 .825-.587 1.413-.588.587-1.413.587Zm9.2-11q.675 0 1.025-.463.35-.462.275-1.037l-.55-3.5h-1.95v3.7q0 .525.35.913.35.387.85.387m-4.5 0q.575 0 .938-.387.362-.388.362-.913V5h-1.95l-.55 3.5q-.1.6.263 1.05.362.45.937.45m-4.45 0q.45 0 .787-.325.338-.325.413-.825L7.025 5h-1.95l-1 3.35q-.15.5.162 1.075Q4.55 10 5.275 10m13.5 0q.725 0 1.05-.575t.15-1.075L18.925 5h-1.9l.55 3.85q.075.5.413.825t.787.325m-13.75 9h14v-7.05q-.125.05-.162.05h-.088q-.675 0-1.188-.225t-1.012-.725q-.45.45-1.025.7t-1.225.25q-.675 0-1.263-.25t-1.037-.7q-.425.45-.987.7T9.825 12q-.725 0-1.313-.25-.587-.25-1.037-.7-.525.525-1.037.737Q5.925 12 5.275 12h-.112q-.063 0-.138-.05zm14 0h-14z" /></symbol>
12
+ </svg>