@dignite-ng/expand.cms 0.0.32 → 0.0.33

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 (361) hide show
  1. package/config/ng-package.json +7 -0
  2. package/config/src/cms-config.module.ts +12 -0
  3. package/config/{enums/index.d.ts → src/enums/index.ts} +1 -1
  4. package/config/src/enums/route-names.ts +8 -0
  5. package/config/{providers/index.d.ts → src/providers/index.ts} +1 -1
  6. package/config/src/providers/route.provider.ts +82 -0
  7. package/config/{public-api.d.ts → src/public-api.ts} +3 -3
  8. package/ng-package.json +7 -0
  9. package/package.json +6 -21
  10. package/src/lib/cms-routing.module.ts +108 -0
  11. package/src/lib/cms.module.ts +108 -0
  12. package/src/lib/components/admin/domains/domains.component.html +19 -0
  13. package/src/lib/components/admin/domains/domains.component.scss +0 -0
  14. package/src/lib/components/admin/domains/domains.component.spec.ts +21 -0
  15. package/src/lib/components/admin/domains/domains.component.ts +99 -0
  16. package/src/lib/components/admin/domains/index.ts +1 -0
  17. package/src/lib/components/admin/entries/create-or-edit-entries.component.html +113 -0
  18. package/src/lib/components/admin/entries/create-or-edit-entries.component.scss +1 -0
  19. package/src/lib/components/admin/entries/create-or-edit-entries.component.spec.ts +21 -0
  20. package/src/lib/components/admin/entries/create-or-edit-entries.component.ts +284 -0
  21. package/src/lib/components/admin/entries/create-or-update-entry-input-base.ts +33 -0
  22. package/src/lib/components/admin/entries/create.component.html +13 -0
  23. package/src/lib/components/admin/entries/create.component.scss +1 -0
  24. package/src/lib/components/admin/entries/create.component.spec.ts +21 -0
  25. package/src/lib/components/admin/entries/create.component.ts +104 -0
  26. package/src/lib/components/admin/entries/edit.component.html +9 -0
  27. package/src/lib/components/admin/entries/edit.component.scss +1 -0
  28. package/src/lib/components/admin/entries/edit.component.spec.ts +21 -0
  29. package/src/lib/components/admin/entries/edit.component.ts +98 -0
  30. package/src/lib/components/admin/entries/entries.component.html +112 -0
  31. package/src/lib/components/admin/entries/entries.component.scss +1 -0
  32. package/src/lib/components/admin/entries/entries.component.spec.ts +21 -0
  33. package/src/lib/components/admin/entries/entries.component.ts +219 -0
  34. package/src/lib/components/admin/entries/index.ts +4 -0
  35. package/src/lib/components/admin/fields/create-field.component.html +12 -0
  36. package/src/lib/components/admin/fields/create-field.component.scss +1 -0
  37. package/src/lib/components/admin/fields/create-field.component.spec.ts +21 -0
  38. package/src/lib/components/admin/fields/create-field.component.ts +68 -0
  39. package/src/lib/components/admin/fields/create-or-edit-field.component.html +39 -0
  40. package/src/lib/components/admin/fields/create-or-edit-field.component.scss +0 -0
  41. package/src/lib/components/admin/fields/create-or-edit-field.component.spec.ts +21 -0
  42. package/src/lib/components/admin/fields/create-or-edit-field.component.ts +116 -0
  43. package/src/lib/components/admin/fields/create-or-update-field-input-base.ts +33 -0
  44. package/src/lib/components/admin/fields/edit-field.component.html +13 -0
  45. package/src/lib/components/admin/fields/edit-field.component.scss +0 -0
  46. package/src/lib/components/admin/fields/edit-field.component.spec.ts +21 -0
  47. package/src/lib/components/admin/fields/edit-field.component.ts +100 -0
  48. package/src/lib/components/admin/fields/field-group.component.html +69 -0
  49. package/src/lib/components/admin/fields/field-group.component.scss +0 -0
  50. package/src/lib/components/admin/fields/field-group.component.spec.ts +21 -0
  51. package/src/lib/components/admin/fields/field-group.component.ts +132 -0
  52. package/src/lib/components/admin/fields/fields.component.html +74 -0
  53. package/src/lib/components/admin/fields/fields.component.scss +1 -0
  54. package/src/lib/components/admin/fields/fields.component.spec.ts +21 -0
  55. package/src/lib/components/admin/fields/fields.component.ts +111 -0
  56. package/src/lib/components/admin/fields/index.ts +6 -0
  57. package/src/lib/components/admin/index.ts +5 -0
  58. package/src/lib/components/admin/sections/create-or-update-sections-input-base.ts +36 -0
  59. package/src/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.ts +79 -0
  60. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.html +191 -0
  61. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.scss +1 -0
  62. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.spec.ts +21 -0
  63. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.ts +408 -0
  64. package/src/lib/components/admin/sections/entry-types/index.ts +2 -0
  65. package/src/lib/components/admin/sections/index.ts +3 -0
  66. package/src/lib/components/admin/sections/sections.component.html +190 -0
  67. package/src/lib/components/admin/sections/sections.component.scss +1 -0
  68. package/src/lib/components/admin/sections/sections.component.spec.ts +21 -0
  69. package/src/lib/components/admin/sections/sections.component.ts +370 -0
  70. package/src/lib/components/admin/sites/create-or-update-sites-input-base.ts +18 -0
  71. package/src/lib/components/admin/sites/index.ts +2 -0
  72. package/src/lib/components/admin/sites/sites.component.html +136 -0
  73. package/src/lib/components/admin/sites/sites.component.scss +1 -0
  74. package/src/lib/components/admin/sites/sites.component.spec.ts +21 -0
  75. package/src/lib/components/admin/sites/sites.component.ts +250 -0
  76. package/src/lib/components/dynamic-form/entry/entry-config.component.html +36 -0
  77. package/src/lib/components/dynamic-form/entry/entry-config.component.scss +0 -0
  78. package/src/lib/components/dynamic-form/entry/entry-config.component.spec.ts +21 -0
  79. package/src/lib/components/dynamic-form/entry/entry-config.component.ts +115 -0
  80. package/src/lib/components/dynamic-form/entry/entry-config.ts +24 -0
  81. package/src/lib/components/dynamic-form/entry/entry-control.component.html +26 -0
  82. package/src/lib/components/dynamic-form/entry/entry-control.component.scss +1 -0
  83. package/src/lib/components/dynamic-form/entry/entry-control.component.spec.ts +21 -0
  84. package/src/lib/components/dynamic-form/entry/entry-control.component.ts +109 -0
  85. package/src/lib/components/dynamic-form/entry/index.ts +3 -0
  86. package/src/lib/components/dynamic-form/form-control-group.ts +27 -0
  87. package/src/lib/components/dynamic-form/index.ts +4 -0
  88. package/src/lib/components/dynamic-form/matrix/index.ts +3 -0
  89. package/src/lib/components/dynamic-form/matrix/matrix-config.component.html +147 -0
  90. package/src/lib/components/dynamic-form/matrix/matrix-config.component.scss +0 -0
  91. package/src/lib/components/dynamic-form/matrix/matrix-config.component.spec.ts +21 -0
  92. package/src/lib/components/dynamic-form/matrix/matrix-config.component.ts +236 -0
  93. package/src/lib/components/dynamic-form/matrix/matrix-config.ts +63 -0
  94. package/src/lib/components/dynamic-form/matrix/matrix-control.component.html +42 -0
  95. package/src/lib/components/dynamic-form/matrix/matrix-control.component.scss +0 -0
  96. package/src/lib/components/dynamic-form/matrix/matrix-control.component.spec.ts +21 -0
  97. package/src/lib/components/dynamic-form/matrix/matrix-control.component.ts +104 -0
  98. package/src/lib/components/dynamic-form/table/index.ts +3 -0
  99. package/src/lib/components/dynamic-form/table/table-config.component.html +85 -0
  100. package/src/lib/components/dynamic-form/table/table-config.component.scss +10 -0
  101. package/src/lib/components/dynamic-form/table/table-config.component.spec.ts +21 -0
  102. package/src/lib/components/dynamic-form/table/table-config.component.ts +170 -0
  103. package/src/lib/components/dynamic-form/table/table-config.ts +45 -0
  104. package/src/lib/components/dynamic-form/table/table-control.component.html +54 -0
  105. package/src/lib/components/dynamic-form/table/table-control.component.scss +1 -0
  106. package/src/lib/components/dynamic-form/table/table-control.component.spec.ts +21 -0
  107. package/src/lib/components/dynamic-form/table/table-control.component.ts +115 -0
  108. package/src/lib/components/index.ts +2 -0
  109. package/src/lib/constants/index.ts +1 -0
  110. package/src/lib/constants/styles.ts +13 -0
  111. package/src/lib/enums/ecms-component.ts +11 -0
  112. package/src/lib/enums/index.ts +1 -0
  113. package/src/lib/proxy/README.md +17 -0
  114. package/src/lib/proxy/admin/domains/domain-admin.service.ts +38 -0
  115. package/{lib/proxy/admin/domains/models.d.ts → src/lib/proxy/admin/domains/models.ts} +9 -7
  116. package/src/lib/proxy/admin/dynamic-forms/form-admin.service.ts +21 -0
  117. package/src/lib/proxy/admin/dynamic-forms/models.ts +5 -0
  118. package/src/lib/proxy/admin/entries/entry-admin.service.ts +109 -0
  119. package/src/lib/proxy/admin/entries/models.ts +68 -0
  120. package/src/lib/proxy/admin/fields/field-admin.service.ts +64 -0
  121. package/src/lib/proxy/admin/fields/field-group-admin.service.ts +56 -0
  122. package/{lib/proxy/admin/fields/models.d.ts → src/lib/proxy/admin/fields/models.ts} +42 -34
  123. package/src/lib/proxy/admin/index.ts +7 -0
  124. package/src/lib/proxy/admin/sections/entry-type-admin.service.ts +55 -0
  125. package/{lib/proxy/admin/sections/models.d.ts → src/lib/proxy/admin/sections/models.ts} +81 -67
  126. package/src/lib/proxy/admin/sections/section-admin.service.ts +74 -0
  127. package/src/lib/proxy/admin/settings/site-settings-admin.service.ts +37 -0
  128. package/src/lib/proxy/dignite/abp/data/index.ts +1 -0
  129. package/src/lib/proxy/dignite/abp/data/models.ts +4 -0
  130. package/src/lib/proxy/dignite/abp/index.ts +2 -0
  131. package/src/lib/proxy/dignite/file-explorer/directories/file-descriptor.service.ts +65 -0
  132. package/src/lib/proxy/dignite/file-explorer/directories/index.ts +2 -0
  133. package/src/lib/proxy/dignite/file-explorer/directories/models.ts +35 -0
  134. package/src/lib/proxy/dignite/file-explorer/files/file-descriptor.service.ts +86 -0
  135. package/src/lib/proxy/dignite/file-explorer/files/index.ts +2 -0
  136. package/src/lib/proxy/dignite/file-explorer/files/models.ts +58 -0
  137. package/src/lib/proxy/dignite/file-explorer/index.ts +3 -0
  138. package/src/lib/proxy/dignite/index.ts +3 -0
  139. package/src/lib/proxy/entries/entry-status.enum.ts +8 -0
  140. package/src/lib/proxy/fields/index.ts +1 -0
  141. package/src/lib/proxy/fields/models.ts +9 -0
  142. package/src/lib/proxy/generate-proxy.json +11425 -0
  143. package/src/lib/proxy/index.ts +9 -0
  144. package/src/lib/proxy/microsoft/asp-net-core/index.ts +2 -0
  145. package/src/lib/proxy/microsoft/asp-net-core/mvc/index.ts +1 -0
  146. package/src/lib/proxy/microsoft/asp-net-core/mvc/models.ts +12 -0
  147. package/src/lib/proxy/microsoft/extensions/index.ts +2 -0
  148. package/src/lib/proxy/microsoft/extensions/primitives/index.ts +1 -0
  149. package/src/lib/proxy/microsoft/extensions/primitives/models.ts +9 -0
  150. package/src/lib/proxy/microsoft/index.ts +4 -0
  151. package/src/lib/proxy/microsoft/net/http/headers/index.ts +1 -0
  152. package/src/lib/proxy/microsoft/net/http/headers/models.ts +7 -0
  153. package/src/lib/proxy/microsoft/net/http/index.ts +2 -0
  154. package/src/lib/proxy/microsoft/net/index.ts +2 -0
  155. package/src/lib/proxy/sections/models.ts +14 -0
  156. package/src/lib/proxy/sections/section-type.enum.ts +9 -0
  157. package/src/lib/proxy/settings/index.ts +1 -0
  158. package/src/lib/proxy/settings/models.ts +6 -0
  159. package/src/lib/proxy/volo/abp/content/index.ts +1 -0
  160. package/src/lib/proxy/volo/abp/content/models.ts +6 -0
  161. package/src/lib/proxy/volo/abp/index.ts +2 -0
  162. package/src/lib/proxy/volo/cms-kit/index.ts +2 -0
  163. package/src/lib/proxy/volo/cms-kit/users/index.ts +1 -0
  164. package/{lib/proxy/volo/cms-kit/users/models.d.ts → src/lib/proxy/volo/cms-kit/users/models.ts} +8 -7
  165. package/src/lib/proxy/volo/index.ts +3 -0
  166. package/src/lib/proxy.zip +0 -0
  167. package/src/lib/services/appent-content.ts +13 -0
  168. package/src/lib/services/cms-api.service.ts +71 -0
  169. package/src/lib/services/cms.service.ts +18 -0
  170. package/src/lib/services/field-abstracts.service.ts +40 -0
  171. package/src/lib/services/index.ts +4 -0
  172. package/src/lib/services/simple-reuse-strategy.ts +49 -0
  173. package/src/lib/services/update-list.service.ts +15 -0
  174. package/src/lib/toolbar/index.ts +2 -0
  175. package/src/lib/toolbar/toolbar-btn-default-action.ts +171 -0
  176. package/src/lib/toolbar/toolbar-config.ts +93 -0
  177. package/{public-api.d.ts → src/public-api.ts} +10 -4
  178. package/src/test.ts +26 -0
  179. package/tsconfig.lib.json +34 -0
  180. package/tsconfig.lib.prod.json +10 -0
  181. package/tsconfig.spec.json +17 -0
  182. package/config/cms-config.module.d.ts +0 -8
  183. package/config/enums/route-names.d.ts +0 -7
  184. package/config/index.d.ts +0 -5
  185. package/config/providers/route.provider.d.ts +0 -9
  186. package/esm2022/config/cms-config.module.mjs +0 -19
  187. package/esm2022/config/dignite-ng-expand.cms-config.mjs +0 -5
  188. package/esm2022/config/enums/index.mjs +0 -2
  189. package/esm2022/config/enums/route-names.mjs +0 -2
  190. package/esm2022/config/providers/index.mjs +0 -2
  191. package/esm2022/config/providers/route.provider.mjs +0 -78
  192. package/esm2022/config/public-api.mjs +0 -4
  193. package/esm2022/dignite-ng-expand.cms.mjs +0 -5
  194. package/esm2022/lib/cms-routing.module.mjs +0 -100
  195. package/esm2022/lib/cms.module.mjs +0 -132
  196. package/esm2022/lib/components/admin/domains/domains.component.mjs +0 -90
  197. package/esm2022/lib/components/admin/domains/index.mjs +0 -2
  198. package/esm2022/lib/components/admin/entries/create-or-edit-entries.component.mjs +0 -286
  199. package/esm2022/lib/components/admin/entries/create-or-update-entry-input-base.mjs +0 -32
  200. package/esm2022/lib/components/admin/entries/create.component.mjs +0 -108
  201. package/esm2022/lib/components/admin/entries/edit.component.mjs +0 -107
  202. package/esm2022/lib/components/admin/entries/entries.component.mjs +0 -211
  203. package/esm2022/lib/components/admin/entries/index.mjs +0 -5
  204. package/esm2022/lib/components/admin/fields/create-field.component.mjs +0 -82
  205. package/esm2022/lib/components/admin/fields/create-or-edit-field.component.mjs +0 -119
  206. package/esm2022/lib/components/admin/fields/create-or-update-field-input-base.mjs +0 -25
  207. package/esm2022/lib/components/admin/fields/edit-field.component.mjs +0 -110
  208. package/esm2022/lib/components/admin/fields/field-group.component.mjs +0 -124
  209. package/esm2022/lib/components/admin/fields/fields.component.mjs +0 -119
  210. package/esm2022/lib/components/admin/fields/index.mjs +0 -7
  211. package/esm2022/lib/components/admin/index.mjs +0 -6
  212. package/esm2022/lib/components/admin/sections/create-or-update-sections-input-base.mjs +0 -27
  213. package/esm2022/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.mjs +0 -71
  214. package/esm2022/lib/components/admin/sections/entry-types/create-or-edit.component.mjs +0 -416
  215. package/esm2022/lib/components/admin/sections/entry-types/index.mjs +0 -3
  216. package/esm2022/lib/components/admin/sections/index.mjs +0 -4
  217. package/esm2022/lib/components/admin/sections/sections.component.mjs +0 -344
  218. package/esm2022/lib/components/admin/sites/create-or-update-sites-input-base.mjs +0 -18
  219. package/esm2022/lib/components/admin/sites/index.mjs +0 -3
  220. package/esm2022/lib/components/admin/sites/sites.component.mjs +0 -29
  221. package/esm2022/lib/components/dynamic-form/entry/entry-config.component.mjs +0 -124
  222. package/esm2022/lib/components/dynamic-form/entry/entry-config.mjs +0 -18
  223. package/esm2022/lib/components/dynamic-form/entry/entry-control.component.mjs +0 -115
  224. package/esm2022/lib/components/dynamic-form/entry/index.mjs +0 -4
  225. package/esm2022/lib/components/dynamic-form/form-control-group.mjs +0 -28
  226. package/esm2022/lib/components/dynamic-form/index.mjs +0 -5
  227. package/esm2022/lib/components/dynamic-form/matrix/index.mjs +0 -4
  228. package/esm2022/lib/components/dynamic-form/matrix/matrix-config.component.mjs +0 -227
  229. package/esm2022/lib/components/dynamic-form/matrix/matrix-config.mjs +0 -50
  230. package/esm2022/lib/components/dynamic-form/matrix/matrix-control.component.mjs +0 -111
  231. package/esm2022/lib/components/dynamic-form/table/index.mjs +0 -4
  232. package/esm2022/lib/components/dynamic-form/table/table-config.component.mjs +0 -173
  233. package/esm2022/lib/components/dynamic-form/table/table-config.mjs +0 -38
  234. package/esm2022/lib/components/dynamic-form/table/table-control.component.mjs +0 -121
  235. package/esm2022/lib/components/index.mjs +0 -3
  236. package/esm2022/lib/constants/styles.mjs +0 -14
  237. package/esm2022/lib/enums/ecms-component.mjs +0 -13
  238. package/esm2022/lib/enums/index.mjs +0 -2
  239. package/esm2022/lib/proxy/admin/domains/domain-admin.service.mjs +0 -34
  240. package/esm2022/lib/proxy/admin/domains/index.mjs +0 -3
  241. package/esm2022/lib/proxy/admin/domains/models.mjs +0 -2
  242. package/esm2022/lib/proxy/admin/dynamic-forms/form-admin.service.mjs +0 -24
  243. package/esm2022/lib/proxy/admin/dynamic-forms/index.mjs +0 -3
  244. package/esm2022/lib/proxy/admin/dynamic-forms/models.mjs +0 -2
  245. package/esm2022/lib/proxy/admin/entries/entry-admin.service.mjs +0 -72
  246. package/esm2022/lib/proxy/admin/entries/index.mjs +0 -3
  247. package/esm2022/lib/proxy/admin/entries/models.mjs +0 -2
  248. package/esm2022/lib/proxy/admin/fields/field-admin.service.mjs +0 -47
  249. package/esm2022/lib/proxy/admin/fields/field-group-admin.service.mjs +0 -43
  250. package/esm2022/lib/proxy/admin/fields/index.mjs +0 -4
  251. package/esm2022/lib/proxy/admin/fields/models.mjs +0 -2
  252. package/esm2022/lib/proxy/admin/sections/entry-type-admin.service.mjs +0 -43
  253. package/esm2022/lib/proxy/admin/sections/index.mjs +0 -4
  254. package/esm2022/lib/proxy/admin/sections/models.mjs +0 -2
  255. package/esm2022/lib/proxy/admin/sections/section-admin.service.mjs +0 -53
  256. package/esm2022/lib/proxy/admin/settings/index.mjs +0 -2
  257. package/esm2022/lib/proxy/admin/settings/site-settings-admin.service.mjs +0 -33
  258. package/esm2022/lib/proxy/dignite/abp/data/models.mjs +0 -2
  259. package/esm2022/lib/proxy/entries/entry-status.enum.mjs +0 -8
  260. package/esm2022/lib/proxy/entries/index.mjs +0 -2
  261. package/esm2022/lib/proxy/fields/models.mjs +0 -2
  262. package/esm2022/lib/proxy/sections/index.mjs +0 -3
  263. package/esm2022/lib/proxy/sections/models.mjs +0 -2
  264. package/esm2022/lib/proxy/sections/section-type.enum.mjs +0 -9
  265. package/esm2022/lib/proxy/settings/models.mjs +0 -2
  266. package/esm2022/lib/proxy/volo/cms-kit/users/models.mjs +0 -2
  267. package/esm2022/lib/services/appent-content.mjs +0 -15
  268. package/esm2022/lib/services/cms-api.service.mjs +0 -80
  269. package/esm2022/lib/services/cms.service.mjs +0 -23
  270. package/esm2022/lib/services/field-abstracts.service.mjs +0 -45
  271. package/esm2022/lib/services/index.mjs +0 -5
  272. package/esm2022/lib/services/simple-reuse-strategy.mjs +0 -43
  273. package/esm2022/lib/services/update-list.service.mjs +0 -19
  274. package/esm2022/lib/toolbar/index.mjs +0 -3
  275. package/esm2022/lib/toolbar/toolbar-btn-default-action.mjs +0 -160
  276. package/esm2022/lib/toolbar/toolbar-config.mjs +0 -79
  277. package/esm2022/public-api.mjs +0 -10
  278. package/fesm2022/dignite-ng-expand.cms-config.mjs +0 -101
  279. package/fesm2022/dignite-ng-expand.cms-config.mjs.map +0 -1
  280. package/fesm2022/dignite-ng-expand.cms.mjs +0 -4079
  281. package/fesm2022/dignite-ng-expand.cms.mjs.map +0 -1
  282. package/index.d.ts +0 -5
  283. package/lib/cms-routing.module.d.ts +0 -7
  284. package/lib/cms.module.d.ts +0 -35
  285. package/lib/components/admin/domains/domains.component.d.ts +0 -21
  286. package/lib/components/admin/domains/index.d.ts +0 -1
  287. package/lib/components/admin/entries/create-or-edit-entries.component.d.ts +0 -92
  288. package/lib/components/admin/entries/create-or-update-entry-input-base.d.ts +0 -23
  289. package/lib/components/admin/entries/create.component.d.ts +0 -40
  290. package/lib/components/admin/entries/edit.component.d.ts +0 -40
  291. package/lib/components/admin/entries/entries.component.d.ts +0 -66
  292. package/lib/components/admin/entries/index.d.ts +0 -4
  293. package/lib/components/admin/fields/create-field.component.d.ts +0 -31
  294. package/lib/components/admin/fields/create-or-edit-field.component.d.ts +0 -36
  295. package/lib/components/admin/fields/create-or-update-field-input-base.d.ts +0 -16
  296. package/lib/components/admin/fields/edit-field.component.d.ts +0 -40
  297. package/lib/components/admin/fields/field-group.component.d.ts +0 -51
  298. package/lib/components/admin/fields/fields.component.d.ts +0 -37
  299. package/lib/components/admin/fields/index.d.ts +0 -6
  300. package/lib/components/admin/index.d.ts +0 -5
  301. package/lib/components/admin/sections/create-or-update-sections-input-base.d.ts +0 -17
  302. package/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.d.ts +0 -38
  303. package/lib/components/admin/sections/entry-types/create-or-edit.component.d.ts +0 -132
  304. package/lib/components/admin/sections/entry-types/index.d.ts +0 -2
  305. package/lib/components/admin/sections/index.d.ts +0 -3
  306. package/lib/components/admin/sections/sections.component.d.ts +0 -90
  307. package/lib/components/admin/sites/create-or-update-sites-input-base.d.ts +0 -8
  308. package/lib/components/admin/sites/index.d.ts +0 -2
  309. package/lib/components/admin/sites/sites.component.d.ts +0 -5
  310. package/lib/components/dynamic-form/entry/entry-config.component.d.ts +0 -39
  311. package/lib/components/dynamic-form/entry/entry-config.d.ts +0 -9
  312. package/lib/components/dynamic-form/entry/entry-control.component.d.ts +0 -35
  313. package/lib/components/dynamic-form/entry/index.d.ts +0 -3
  314. package/lib/components/dynamic-form/form-control-group.d.ts +0 -4
  315. package/lib/components/dynamic-form/index.d.ts +0 -4
  316. package/lib/components/dynamic-form/matrix/index.d.ts +0 -3
  317. package/lib/components/dynamic-form/matrix/matrix-config.component.d.ts +0 -73
  318. package/lib/components/dynamic-form/matrix/matrix-config.d.ts +0 -24
  319. package/lib/components/dynamic-form/matrix/matrix-control.component.d.ts +0 -39
  320. package/lib/components/dynamic-form/table/index.d.ts +0 -3
  321. package/lib/components/dynamic-form/table/table-config.component.d.ts +0 -58
  322. package/lib/components/dynamic-form/table/table-config.d.ts +0 -18
  323. package/lib/components/dynamic-form/table/table-control.component.d.ts +0 -39
  324. package/lib/components/index.d.ts +0 -2
  325. package/lib/constants/styles.d.ts +0 -2
  326. package/lib/enums/ecms-component.d.ts +0 -11
  327. package/lib/enums/index.d.ts +0 -1
  328. package/lib/proxy/admin/domains/domain-admin.service.d.ts +0 -13
  329. package/lib/proxy/admin/dynamic-forms/form-admin.service.d.ts +0 -12
  330. package/lib/proxy/admin/dynamic-forms/models.d.ts +0 -4
  331. package/lib/proxy/admin/entries/entry-admin.service.d.ts +0 -22
  332. package/lib/proxy/admin/entries/models.d.ts +0 -60
  333. package/lib/proxy/admin/fields/field-admin.service.d.ts +0 -17
  334. package/lib/proxy/admin/fields/field-group-admin.service.d.ts +0 -16
  335. package/lib/proxy/admin/sections/entry-type-admin.service.d.ts +0 -15
  336. package/lib/proxy/admin/sections/section-admin.service.d.ts +0 -18
  337. package/lib/proxy/admin/settings/site-settings-admin.service.d.ts +0 -13
  338. package/lib/proxy/dignite/abp/data/models.d.ts +0 -3
  339. package/lib/proxy/entries/entry-status.enum.d.ts +0 -5
  340. package/lib/proxy/fields/models.d.ts +0 -8
  341. package/lib/proxy/sections/models.d.ts +0 -12
  342. package/lib/proxy/sections/section-type.enum.d.ts +0 -6
  343. package/lib/proxy/settings/models.d.ts +0 -5
  344. package/lib/services/appent-content.d.ts +0 -1
  345. package/lib/services/cms-api.service.d.ts +0 -20
  346. package/lib/services/cms.service.d.ts +0 -10
  347. package/lib/services/field-abstracts.service.d.ts +0 -20
  348. package/lib/services/index.d.ts +0 -4
  349. package/lib/services/simple-reuse-strategy.d.ts +0 -11
  350. package/lib/services/update-list.service.d.ts +0 -9
  351. package/lib/toolbar/index.d.ts +0 -2
  352. package/lib/toolbar/toolbar-btn-default-action.d.ts +0 -18
  353. package/lib/toolbar/toolbar-config.d.ts +0 -56
  354. /package/{lib/proxy/admin/domains/index.d.ts → src/lib/proxy/admin/domains/index.ts} +0 -0
  355. /package/{lib/proxy/admin/dynamic-forms/index.d.ts → src/lib/proxy/admin/dynamic-forms/index.ts} +0 -0
  356. /package/{lib/proxy/admin/entries/index.d.ts → src/lib/proxy/admin/entries/index.ts} +0 -0
  357. /package/{lib/proxy/admin/fields/index.d.ts → src/lib/proxy/admin/fields/index.ts} +0 -0
  358. /package/{lib/proxy/admin/sections/index.d.ts → src/lib/proxy/admin/sections/index.ts} +0 -0
  359. /package/{lib/proxy/admin/settings/index.d.ts → src/lib/proxy/admin/settings/index.ts} +0 -0
  360. /package/{lib/proxy/entries/index.d.ts → src/lib/proxy/entries/index.ts} +0 -0
  361. /package/{lib/proxy/sections/index.d.ts → src/lib/proxy/sections/index.ts} +0 -0
@@ -0,0 +1,85 @@
1
+ <form [formGroup]="_Entity">
2
+ <div formGroupName="formConfiguration">
3
+ <div class="mb-2">
4
+ <label class="form-label">{{'DigniteAbpForms::SelectListItem' | abpLocalization}}</label>
5
+ <table class="table">
6
+ <thead>
7
+ <tr>
8
+ <th scope="col">{{'Cms::TableColumnDisplayName' | abpLocalization}}</th>
9
+ <th scope="col">{{'Cms::TableColumnName' | abpLocalization}}</th>
10
+ <th scope="col">{{'Cms::TableColumnForm' | abpLocalization}}</th>
11
+ <th scope="col" class="flex-end">
12
+ <button class="btn btn-light btn-sm" (click.stop)="addTableColumns()">
13
+ <i class="fas fa-plus-circle"></i>
14
+ </button>
15
+ </th>
16
+ </tr>
17
+ </thead>
18
+ <tbody formArrayName="TableColumns">
19
+ <ng-container *ngFor="let item of TableColumns.controls;let i=index">
20
+ <tr [formGroupName]="i">
21
+ <td><input type="text" class="form-control" formControlName="displayName" (blur)="disPlayNameInputBlur($event,item)" ></td>
22
+ <td><input type="text" class="form-control" formControlName="name"></td>
23
+ <td>
24
+ <select class="form-select" formControlName="formControlName"
25
+ (change)="selectTableControl($event,i,item)">
26
+ <option value="">SelectFrom</option>
27
+ <ng-container *ngFor="let item_f of _fieldControlGroup;let i_f =index">
28
+ <option [value]="item_f.name">{{item_f.displayName}}</option>
29
+ </ng-container>
30
+ </select>
31
+ </td>
32
+ <td scope="row">
33
+ <div class="flex-start">
34
+ <button class="btn btn-light btn-sm " (click.stop)="EditSitesBtn(item,i)">
35
+ <i class="fas fa-edit"></i>
36
+ </button>
37
+ <button class="btn btn-light btn-sm ms-1" (click.stop)="deleteTableColumns(i)">
38
+ <i class="fas fa-minus"></i>
39
+ </button>
40
+ <button class="btn btn-light btn-sm ms-1" *ngIf="i!==0"
41
+ (click.stop)="TableArrowUpOrDown('up',i)">
42
+ <i class="fas fa-arrow-up"></i>
43
+ </button>
44
+ <button class="btn btn-light btn-sm ms-1" *ngIf="i!==TableColumns.controls.length-1"
45
+ (click.stop)="TableArrowUpOrDown('down',i)">
46
+ <i class="fas fa-arrow-down"></i>
47
+ </button>
48
+ </div>
49
+ </td>
50
+ </tr>
51
+ </ng-container>
52
+ </tbody>
53
+ </table>
54
+ </div>
55
+ <button type="submit" (abpInit)="submitclick?.nativeElement?.click()" style="display: none;"
56
+ #submitclick></button>
57
+ </div>
58
+ </form>
59
+
60
+
61
+ <abp-modal [(visible)]="tableSelectOpen" [busy]="modalBusy" (visibleChange)="tableSelectVisibleChange($event)" [options]="{ size: CurrentSelectionTableControlName=='Matrix'?'xl':'' ,scrollable:false }">
62
+ <ng-template #abpHeader>
63
+ <h3>{{_tableSelected?('AbpUi::Edit' | abpLocalization):('Cms::New' | abpLocalization)}}</h3>
64
+ </ng-template>
65
+ <ng-template #abpBody>
66
+ <ng-template #loaderRef>
67
+ <div class="text-center"><i class="fa fa-pulse fa-spinner" aria-hidden="true"></i></div>
68
+ </ng-template>
69
+ <ng-container *ngIf="tableSelectForm; else loaderRef">
70
+ <form class="sites-modal-form" #myForm="ngForm" [formGroup]="tableSelectForm"
71
+ (ngSubmit)="createOrEditSave()">
72
+ <button type="submit" #tableSelectModalSubmit style="display: none"></button>
73
+ <ng-container *ngIf="CurrentSelectionTableControlName&&tableSelectForm">
74
+ <df-dynamic [type]="CurrentSelectionTableControlName" [entity]="tableSelectForm"
75
+ [selected]="_tableSelected" [formGroup]="tableSelectForm"></df-dynamic>
76
+ </ng-container>
77
+ </form>
78
+ </ng-container>
79
+ </ng-template>
80
+ <ng-template #abpFooter>
81
+ <button type="button" class="btn btn-secondary" abpClose>{{'AbpUi::Close' | abpLocalization}}</button>
82
+ <abp-button iconClass="fa fa-check"
83
+ (click)="tableSelectModalSubmit.nativeElement.click()">{{'AbpUi::Save' | abpLocalization}}</abp-button>
84
+ </ng-template>
85
+ </abp-modal>
@@ -0,0 +1,10 @@
1
+ .flex-end{
2
+ display: flex;
3
+ align-items: center;
4
+ justify-content: flex-end;
5
+ }
6
+ .flex-start{
7
+ display: flex;
8
+ align-items: center;
9
+ justify-content: flex-start;
10
+ }
@@ -0,0 +1,21 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+
3
+ import { TableConfigComponent } from './table-config.component';
4
+
5
+ describe('TableConfigComponent', () => {
6
+ let component: TableConfigComponent;
7
+ let fixture: ComponentFixture<TableConfigComponent>;
8
+
9
+ beforeEach(() => {
10
+ TestBed.configureTestingModule({
11
+ declarations: [TableConfigComponent]
12
+ });
13
+ fixture = TestBed.createComponent(TableConfigComponent);
14
+ component = fixture.componentInstance;
15
+ fixture.detectChanges();
16
+ });
17
+
18
+ it('should create', () => {
19
+ expect(component).toBeTruthy();
20
+ });
21
+ });
@@ -0,0 +1,170 @@
1
+ import { Component, ElementRef, Input, ViewChild } from '@angular/core';
2
+ import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
3
+ import { TableConfig, TableFormControl } from './table-config';
4
+ import { CmsApiService, FieldAbstractsService } from '../../../services';
5
+
6
+ @Component({
7
+ selector: 'df-table-config',
8
+ templateUrl: './table-config.component.html',
9
+ styleUrls: ['./table-config.component.scss']
10
+ })
11
+ export class TableConfigComponent {
12
+ constructor(
13
+ private fb: FormBuilder,
14
+ private _CmsApiService: CmsApiService,
15
+ private _FieldAbstractsService: FieldAbstractsService,
16
+ ) { }
17
+ /**表单实体 */
18
+ _Entity: FormGroup | undefined
19
+ @Input()
20
+ public set Entity(v: FormGroup) {
21
+ this._Entity = v;
22
+ this.dataLoaded()
23
+ }
24
+ /**选择的表单信息 */
25
+ _selected: any
26
+ @Input()
27
+ public set selected(v: any) {
28
+ if (v) {
29
+ this._selected = v
30
+ this.dataLoaded()
31
+ }
32
+ }
33
+ /**表单控件组 */
34
+ _fieldControlGroup: any[]
35
+
36
+ /**表单控件类型 */
37
+ _type: any
38
+ @Input()
39
+ public set type(v: any) {
40
+ this._type = v
41
+ this.dataLoaded()
42
+ }
43
+ get formConfiguration() {
44
+ return this._Entity.get('formConfiguration') as FormGroup
45
+ }
46
+ get TableColumns() {
47
+ return this.formConfiguration.controls['TableColumns'] as FormArray
48
+ }
49
+ @ViewChild('submitclick', { static: true }) submitclick: ElementRef;
50
+
51
+ async dataLoaded() {
52
+ if (this._Entity && this._type) {
53
+ await this.AfterInit()
54
+ this.submitclick.nativeElement.click();
55
+
56
+ }
57
+ }
58
+ /**增加选项 */
59
+ addTableColumns() {
60
+ this.TableColumns.push(this.fb.group({
61
+ ...new TableFormControl(),
62
+ formConfiguration: [{}]
63
+ }))
64
+ }
65
+ /**删除某个选项 */
66
+ deleteTableColumns(index) {
67
+ this.TableColumns.removeAt(index)
68
+ }
69
+
70
+ AfterInit() {
71
+ return new Promise((resolve, rejects) => {
72
+ this._Entity.setControl('formConfiguration', this.fb.group(new TableConfig()))
73
+ this._fieldControlGroup = this._FieldAbstractsService.getExcludeAssignControl(this._type)
74
+ if (this._selected && this._selected.formControlName == this._type) {
75
+ this._selected.formConfiguration['TableColumns'].forEach(el => {
76
+ this.addTableColumns()
77
+ });
78
+ this.formConfiguration.patchValue(this._selected.formConfiguration)
79
+ } else {
80
+ this.addTableColumns()
81
+ }
82
+ resolve(true)
83
+ })
84
+ }
85
+ itemForm: any
86
+ /**选择表格的表单控件 */
87
+ selectTableControl(event, i, item) {
88
+ this.CurrentSelectionTableControlName = event.target.value
89
+ this.tableSelectOpen = true
90
+ this.tableSelectForm = this.fb.group(new TableFormControl())
91
+ this.TableColumnsIndex = i
92
+ this.itemForm = item
93
+ }
94
+
95
+ CurrentSelectionTableControlName: any
96
+
97
+ /**正在创建或编辑的表格项下标 */
98
+ TableColumnsIndex: any
99
+ /**创建站点模态框状态 */
100
+ tableSelectOpen: boolean = false
101
+
102
+ /**用于确定模态的繁忙状态是否为真 */
103
+ modalBusy: boolean = false
104
+ /**创建站点表单 */
105
+ tableSelectForm: FormGroup | undefined;
106
+
107
+ /**表格已选择数据 */
108
+ _tableSelected: any
109
+
110
+
111
+ /**表单控件模板-动态赋值表单控件 */
112
+ @ViewChild('tableSelectModalSubmit', { static: false }) tableSelectModalSubmit: ElementRef;
113
+
114
+
115
+ /**创建站点模态框状态改变 */
116
+ tableSelectVisibleChange(event) {
117
+ if (!event) {
118
+ this._tableSelected = undefined
119
+ this.tableSelectForm = undefined
120
+ this.CurrentSelectionTableControlName = undefined
121
+ this.TableColumnsIndex = undefined
122
+ return
123
+ }
124
+ }
125
+ /**表单保存提交 */
126
+ createOrEditSave() {
127
+ const formGroup = this.TableColumns.at(this.TableColumnsIndex) as FormGroup;
128
+ let formConfigurationgroup = formGroup.get('formConfiguration') as FormGroup
129
+
130
+ formConfigurationgroup.setValue({
131
+ ...this.tableSelectForm.value['formConfiguration'],
132
+ });
133
+ this.tableSelectOpen = false
134
+ }
135
+
136
+ /**编辑站点按钮 */
137
+ EditSitesBtn(rows, i) {
138
+
139
+ this.CurrentSelectionTableControlName = rows.get('formControlName').value
140
+ this.tableSelectForm = this.fb.group(new TableFormControl())
141
+ this.tableSelectForm.patchValue({
142
+ ...rows.value
143
+ })
144
+ this.tableSelectForm.get('formConfiguration').patchValue({
145
+ ...rows.value['formConfiguration']
146
+ })
147
+ this._tableSelected = rows.value
148
+ this.TableColumnsIndex = i
149
+ this.tableSelectOpen = true
150
+ }
151
+
152
+
153
+ /**调整表格位置 */
154
+ TableArrowUpOrDown(type, index) {
155
+ let controlAt = this.TableColumns.at(index)
156
+ this.TableColumns.removeAt(index)
157
+ let lastindex = type == 'up' ? index - 1 : index + 1
158
+ this.TableColumns.insert(lastindex, controlAt)
159
+ }
160
+
161
+
162
+ /**字段标签input失去标点生成字段名字 */
163
+ disPlayNameInputBlur(event, item) {
164
+ let value = event.target.value
165
+ let pinyin = this._CmsApiService.chineseToPinyin(value)
166
+ let nameInput = item.get('name')
167
+ if (nameInput.value) return
168
+ nameInput.patchValue(pinyin)
169
+ }
170
+ }
@@ -0,0 +1,45 @@
1
+ import { FormArray, FormControl, FormGroup, Validators } from "@angular/forms";
2
+
3
+ export class TableConfig {
4
+
5
+
6
+
7
+ // 选项
8
+ TableColumns: any = new FormArray([])
9
+
10
+ constructor(data?: TableConfig) {
11
+ if (data) {
12
+ for (const key in data) {
13
+ if (data.hasOwnProperty(key)) {
14
+ this[key] = data[key];
15
+ }
16
+ }
17
+ }
18
+ }
19
+ }
20
+ export class TableFormControl {
21
+ /**列标题 */
22
+ displayName: any = ['', [Validators.required]];
23
+ /**空间配置 */
24
+ formConfiguration: any = new FormGroup({})
25
+ /**列名 */
26
+ name: any = ['', [Validators.required]];
27
+ //控件标识
28
+ formControlName: any = ['', [Validators.required]];
29
+
30
+ /**是否必填 */
31
+ required: any = [false];
32
+ /**描述 */
33
+ description: any = [''];
34
+
35
+
36
+ constructor(data?: TableConfig) {
37
+ if (data) {
38
+ for (const key in data) {
39
+ if (data.hasOwnProperty(key)) {
40
+ this[key] = data[key];
41
+ }
42
+ }
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,54 @@
1
+ <form [formGroup]="_entity">
2
+ <div formGroupName="extraProperties">
3
+ <div class="mb-2">
4
+ <label class="form-label" *ngIf="_fields.displayName">{{ _fields.displayName }}</label>
5
+ <table class="table">
6
+ <thead>
7
+ <tr>
8
+ <ng-container *ngFor="let item of formConfiguration.TableColumns">
9
+ <th scope="col">{{ item.displayName }}</th>
10
+ </ng-container>
11
+ <th scope="col" class="flex-end">
12
+ <button class="btn btn-light btn-sm" (click.stop)="addTableControlItem()">
13
+ <i class="fas fa-plus-circle"></i>
14
+ </button>
15
+ </th>
16
+ </tr>
17
+ </thead>
18
+ <tbody [formArrayName]="_fields.field.name">
19
+ <ng-container *ngFor="let item of fieldNameControl.controls; let i = index">
20
+ <tr>
21
+ <ng-container *ngFor="let el of formConfiguration.TableColumns">
22
+ <td>
23
+ <ng-container *ngIf="item&&el">
24
+ <df-dynamic [entity]="item" [fields]="{ field: el }"
25
+ [selected]="_selected[i]?.extraProperties[''+el.name+'']"
26
+ [parentFiledName]="'extraProperties'" [culture]="_culture"></df-dynamic>
27
+ </ng-container>
28
+ </td>
29
+ </ng-container>
30
+ <td scope="row" class="">
31
+ <div class="flex-end mb-2">
32
+ <button class="btn btn-light btn-sm ms-1" (click.stop)="minusTableControlItem(i)">
33
+ <i class="fas fa-minus"></i>
34
+ </button>
35
+ <button class="btn btn-light btn-sm ms-1" (click.stop)="TableArrowUpOrDown('up',i)"
36
+ *ngIf="i!==0">
37
+ <i class="fas fa-arrow-up"></i>
38
+ </button>
39
+ <button class="btn btn-light btn-sm ms-1"
40
+ (click.stop)="TableArrowUpOrDown('down',i)"
41
+ *ngIf="i!==fieldNameControl.controls.length-1">
42
+ <i class="fas fa-arrow-down"></i>
43
+ </button>
44
+ </div>
45
+ </td>
46
+ </tr>
47
+ </ng-container>
48
+ </tbody>
49
+ </table>
50
+ <div class="form-text" *ngIf="_fields.field.description">{{_fields.field.description}}</div>
51
+ </div>
52
+ </div>
53
+ <button type="submit" style="display: none" #submitclick></button>
54
+ </form>
@@ -0,0 +1 @@
1
+ .flex-end{display:flex;align-items:center;justify-content:flex-end}.flex-start{display:flex;align-items:center;justify-content:flex-start}
@@ -0,0 +1,21 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+
3
+ import { TableControlComponent } from './table-control.component';
4
+
5
+ describe('TableControlComponent', () => {
6
+ let component: TableControlComponent;
7
+ let fixture: ComponentFixture<TableControlComponent>;
8
+
9
+ beforeEach(() => {
10
+ TestBed.configureTestingModule({
11
+ declarations: [TableControlComponent]
12
+ });
13
+ fixture = TestBed.createComponent(TableControlComponent);
14
+ component = fixture.componentInstance;
15
+ fixture.detectChanges();
16
+ });
17
+
18
+ it('should create', () => {
19
+ expect(component).toBeTruthy();
20
+ });
21
+ });
@@ -0,0 +1,115 @@
1
+ import { Component, ElementRef, Input, ViewChild, inject } from '@angular/core';
2
+ import { FormArray, FormBuilder, FormGroup, Validators } from '@angular/forms';
3
+
4
+ @Component({
5
+ selector: 'df-table-control',
6
+ templateUrl: './table-control.component.html',
7
+ styleUrls: ['./table-control.component.scss']
8
+ })
9
+ export class TableControlComponent {
10
+
11
+ constructor(
12
+ // private fb: FormBuilder,
13
+ ) {
14
+ }
15
+ private fb=inject(FormBuilder)
16
+
17
+ /**表单实体 */
18
+ _entity: FormGroup | undefined
19
+ @Input()
20
+ public set entity(v: any) {
21
+ this._entity = v;
22
+ this.dataLoaded()
23
+ }
24
+
25
+ /**字段配置列表 */
26
+ _fields: any = ''
27
+ @Input()
28
+ public set fields(v: any) {
29
+ this._fields = v;
30
+ this.dataLoaded()
31
+ }
32
+
33
+ /**父级字段名称,用于为表单设置控件赋值 */
34
+ _parentFiledName: any
35
+ @Input()
36
+ public set parentFiledName(v: any) {
37
+ this._parentFiledName = v;
38
+ this.dataLoaded()
39
+ }
40
+ /**父级字段名称,用于为表单设置控件赋值 */
41
+ _selected: any
42
+ @Input()
43
+ public set selected(v: any) {
44
+ this._selected = v ;
45
+ if (v) { this.dataLoaded() }
46
+
47
+ }
48
+ /**语言 */
49
+ _culture: any
50
+ @Input()
51
+ public set culture(v: any) {
52
+ this._culture = v;
53
+ }
54
+ @ViewChild('submitclick', { static: true }) submitclick: ElementRef;
55
+
56
+ /** 获取父级字段代表的表单组*/
57
+ extraProperties: FormGroup | undefined
58
+
59
+ /**数据加载完成 */
60
+ async dataLoaded() {
61
+ if (this._fields && this._entity && this._parentFiledName) {
62
+ this.extraProperties = this._entity.get(this._parentFiledName) as FormGroup
63
+ await this.AfterInit()
64
+ this.submitclick.nativeElement.click();
65
+ }
66
+ }
67
+
68
+ formConfiguration: any
69
+ /**获取表格字段代表的控件 */
70
+ fieldNameControl: FormArray | undefined
71
+
72
+ AfterInit() {
73
+ return new Promise((resolve, rejects) => {
74
+ let ValidatorsArray = []
75
+ if (this._fields.required) {
76
+ ValidatorsArray.push(Validators.required)
77
+ }
78
+ let formConfiguration = this._fields.field.formConfiguration
79
+ this.formConfiguration = formConfiguration
80
+ console.log(formConfiguration,'formConfiguration');
81
+
82
+ let newArrayGroup = this.fb.array([])
83
+ this.extraProperties.setControl(this._fields.field.name, newArrayGroup)
84
+ this.fieldNameControl = this.extraProperties.get(this._fields.field.name) as FormArray
85
+ if (this._selected) {
86
+ this._selected.forEach(el => {
87
+ this.addTableControlItem()
88
+ });
89
+ this.fieldNameControl.patchValue(this._selected)
90
+ } else {
91
+ this.addTableControlItem()
92
+ }
93
+ resolve(true)
94
+ })
95
+ }
96
+ /**增加表格项 */
97
+ addTableControlItem(){
98
+ this.fieldNameControl.push(this.fb.group({
99
+ 'extraProperties':this.fb.group({})
100
+ }))
101
+ }
102
+ /**删除表格项 */
103
+ minusTableControlItem(index){
104
+ this.fieldNameControl.removeAt(index)
105
+ }
106
+ /**调整表格位置 */
107
+ TableArrowUpOrDown(type, index) {
108
+ let controlAt = this.fieldNameControl.at(index)
109
+ this.fieldNameControl.removeAt(index)
110
+ let lastindex = type == 'up' ? index - 1 : index + 1
111
+ this.fieldNameControl.insert(lastindex, controlAt)
112
+ this._selected=this.fieldNameControl.value
113
+ }
114
+
115
+ }
@@ -0,0 +1,2 @@
1
+ export * from './admin'
2
+ export * from './dynamic-form'
@@ -0,0 +1 @@
1
+ export * from './styles'
@@ -0,0 +1,13 @@
1
+ export default `
2
+ .lpx-content-container .lpx-content{min-height:calc(100vh - 34px);padding:1.25em 2em 1.25em}h1,h2,h3,h4,h5,h6{color:inherit}.lpx-settings .lpx-context-menu{overflow:auto}
3
+ a {
4
+ text-decoration: unset;
5
+ }
6
+ :root .cellClassRight{
7
+ transform: translateX(17px);
8
+ background: var(--lpx-card-bg);
9
+ }
10
+ .form-label{
11
+ font-size: 12px;
12
+ }
13
+ `;
@@ -0,0 +1,11 @@
1
+ export enum ECmsComponent {
2
+ Entries="Cms.Entries",
3
+ Entries_Create="Cms.Entries.Create",
4
+ Entries_Edit="Cms.Entries.Edit",
5
+ Fields="Cms.Fields",
6
+ FieldsCreate="Cms.Fields.Create",
7
+ FieldsEdit="Cms.Fields.Edit",
8
+ Sites="Cms.Sites",
9
+ Sections="Cms.Sections",
10
+ SectionsCreateOrEdit="Cms.Sections.Create.Or.Edit",
11
+ }
@@ -0,0 +1 @@
1
+ export * from './ecms-component'
@@ -0,0 +1,17 @@
1
+ # Proxy Generation Output
2
+
3
+ This directory includes the output of the latest proxy generation.
4
+ The files and folders in it will be overwritten when proxy generation is run again.
5
+ Therefore, please do not place your own content in this folder.
6
+
7
+ In addition, `generate-proxy.json` works like a lock file.
8
+ It includes information used by the proxy generator, so please do not delete or modify it.
9
+
10
+ Finally, the name of the files and folders should not be changed for two reasons:
11
+ - Proxy generator will keep creating them at those paths and you will have multiple copies of the same content.
12
+ - ABP Suite generates files which include imports from this folder.
13
+
14
+ > **Important Notice:** If you are building a module and are planning to publish to npm,
15
+ > some of the generated proxies are likely to be exported from public-api.ts file. In such a case,
16
+ > please make sure you export files directly and not from barrel exports. In other words,
17
+ > do not include index.ts exports in your public-api.ts exports.
@@ -0,0 +1,38 @@
1
+ import type { DomainDto, UpdateDomainInput } from './models';
2
+ import { RestService, Rest } from '@abp/ng.core';
3
+ import { Injectable } from '@angular/core';
4
+
5
+ @Injectable({
6
+ providedIn: 'root',
7
+ })
8
+ export class DomainAdminService {
9
+ apiName = 'CmsAdmin';
10
+
11
+
12
+ getBound = (config?: Partial<Rest.Config>) =>
13
+ this.restService.request<any, DomainDto>({
14
+ method: 'GET',
15
+ url: '/api/cms-admin/domains/bound',
16
+ },
17
+ { apiName: this.apiName,...config });
18
+
19
+
20
+ nameExists = (domainName: string, config?: Partial<Rest.Config>) =>
21
+ this.restService.request<any, boolean>({
22
+ method: 'GET',
23
+ url: '/api/cms-admin/domains/name-exists',
24
+ params: { domainName },
25
+ },
26
+ { apiName: this.apiName,...config });
27
+
28
+
29
+ update = (input: UpdateDomainInput, config?: Partial<Rest.Config>) =>
30
+ this.restService.request<any, DomainDto>({
31
+ method: 'POST',
32
+ url: '/api/cms-admin/domains',
33
+ body: input,
34
+ },
35
+ { apiName: this.apiName,...config });
36
+
37
+ constructor(private restService: RestService) {}
38
+ }
@@ -1,7 +1,9 @@
1
- import type { CreationAuditedEntityDto } from '@abp/ng.core';
2
- export interface DomainDto extends CreationAuditedEntityDto<string> {
3
- domainName?: string;
4
- }
5
- export interface UpdateDomainInput {
6
- domainName: string;
7
- }
1
+ import type { CreationAuditedEntityDto } from '@abp/ng.core';
2
+
3
+ export interface DomainDto extends CreationAuditedEntityDto<string> {
4
+ domainName?: string;
5
+ }
6
+
7
+ export interface UpdateDomainInput {
8
+ domainName: string;
9
+ }
@@ -0,0 +1,21 @@
1
+ import type { FormControlDto } from './models';
2
+ import { RestService, Rest } from '@abp/ng.core';
3
+ import type { ListResultDto } from '@abp/ng.core';
4
+ import { Injectable } from '@angular/core';
5
+
6
+ @Injectable({
7
+ providedIn: 'root',
8
+ })
9
+ export class FormAdminService {
10
+ apiName = 'CmsAdmin';
11
+
12
+
13
+ getFormControls = (config?: Partial<Rest.Config>) =>
14
+ this.restService.request<any, ListResultDto<FormControlDto>>({
15
+ method: 'GET',
16
+ url: '/api/cms-admin/dynamic-forms/forms',
17
+ },
18
+ { apiName: this.apiName,...config });
19
+
20
+ constructor(private restService: RestService) {}
21
+ }
@@ -0,0 +1,5 @@
1
+
2
+ export interface FormControlDto {
3
+ name?: string;
4
+ displayName?: string;
5
+ }