@dignite-ng/expand.cms 2.0.0-rc.10 → 2.0.0-rc.11

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 (315) hide show
  1. package/config/cms-config.module.d.ts +8 -0
  2. package/config/{src/enums/index.ts → enums/index.d.ts} +1 -1
  3. package/config/enums/route-names.d.ts +7 -0
  4. package/config/index.d.ts +5 -0
  5. package/config/{src/providers/index.ts → providers/index.d.ts} +1 -1
  6. package/config/providers/route.provider.d.ts +9 -0
  7. package/config/{src/public-api.ts → public-api.d.ts} +3 -3
  8. package/esm2022/config/cms-config.module.mjs +19 -0
  9. package/esm2022/config/dignite-ng-expand.cms-config.mjs +5 -0
  10. package/esm2022/config/enums/index.mjs +2 -0
  11. package/esm2022/config/enums/route-names.mjs +9 -0
  12. package/esm2022/config/providers/index.mjs +2 -0
  13. package/esm2022/config/providers/route.provider.mjs +60 -0
  14. package/esm2022/config/public-api.mjs +4 -0
  15. package/esm2022/dignite-ng-expand.cms.mjs +5 -0
  16. package/esm2022/lib/cms-routing.module.mjs +94 -0
  17. package/esm2022/lib/cms.module.mjs +137 -0
  18. package/esm2022/lib/components/admin/entries/create-or-edit-entries.component.mjs +226 -0
  19. package/esm2022/lib/components/admin/entries/create-or-update-entry-input-base.mjs +25 -0
  20. package/esm2022/lib/components/admin/entries/create.component.mjs +136 -0
  21. package/esm2022/lib/components/admin/entries/edit.component.mjs +138 -0
  22. package/esm2022/lib/components/admin/entries/entries.component.mjs +367 -0
  23. package/esm2022/lib/components/admin/entries/index.mjs +5 -0
  24. package/esm2022/lib/components/admin/fields/create-field.component.mjs +87 -0
  25. package/esm2022/lib/components/admin/fields/create-or-edit-field.component.mjs +116 -0
  26. package/esm2022/lib/components/admin/fields/create-or-update-field-input-base.mjs +25 -0
  27. package/esm2022/lib/components/admin/fields/edit-field.component.mjs +109 -0
  28. package/esm2022/lib/components/admin/fields/field-group.component.mjs +131 -0
  29. package/esm2022/lib/components/admin/fields/fields.component.mjs +107 -0
  30. package/esm2022/lib/components/admin/fields/index.mjs +7 -0
  31. package/esm2022/lib/components/admin/index.mjs +4 -0
  32. package/esm2022/lib/components/admin/sections/create-or-edit-sections-modal.component.mjs +210 -0
  33. package/esm2022/lib/components/admin/sections/create-or-update-sections-input-base.mjs +22 -0
  34. package/esm2022/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.mjs +47 -0
  35. package/esm2022/lib/components/admin/sections/entry-types/create-or-edit.component.mjs +408 -0
  36. package/esm2022/lib/components/admin/sections/entry-types/index.mjs +3 -0
  37. package/esm2022/lib/components/admin/sections/index.mjs +4 -0
  38. package/esm2022/lib/components/admin/sections/sections.component.mjs +138 -0
  39. package/esm2022/lib/components/dynamic-form/entry/entry-config.component.mjs +117 -0
  40. package/esm2022/lib/components/dynamic-form/entry/entry-config.mjs +18 -0
  41. package/esm2022/lib/components/dynamic-form/entry/entry-control.component.mjs +105 -0
  42. package/esm2022/lib/components/dynamic-form/entry/index.mjs +4 -0
  43. package/esm2022/lib/components/dynamic-form/form-control-group.mjs +28 -0
  44. package/esm2022/lib/components/dynamic-form/index.mjs +5 -0
  45. package/esm2022/lib/components/dynamic-form/matrix/index.mjs +4 -0
  46. package/esm2022/lib/components/dynamic-form/matrix/matrix-config.component.mjs +219 -0
  47. package/esm2022/lib/components/dynamic-form/matrix/matrix-config.mjs +50 -0
  48. package/esm2022/lib/components/dynamic-form/matrix/matrix-control.component.mjs +108 -0
  49. package/esm2022/lib/components/dynamic-form/table/index.mjs +4 -0
  50. package/esm2022/lib/components/dynamic-form/table/table-config.component.mjs +158 -0
  51. package/esm2022/lib/components/dynamic-form/table/table-config.mjs +38 -0
  52. package/esm2022/lib/components/dynamic-form/table/table-control.component.mjs +118 -0
  53. package/esm2022/lib/components/index.mjs +3 -0
  54. package/esm2022/lib/constants/styles.mjs +19 -0
  55. package/esm2022/lib/enums/ecms-component.mjs +13 -0
  56. package/esm2022/lib/enums/index.mjs +2 -0
  57. package/esm2022/lib/proxy/dignite/abp/data/models.mjs +2 -0
  58. package/esm2022/lib/proxy/dignite/abp/regionalization-management/index.mjs +3 -0
  59. package/esm2022/lib/proxy/dignite/abp/regionalization-management/models.mjs +2 -0
  60. package/esm2022/lib/proxy/dignite/abp/regionalization-management/regionalization.service.mjs +27 -0
  61. package/esm2022/lib/proxy/dignite/cms/admin/dynamic-forms/form-admin.service.mjs +22 -0
  62. package/esm2022/lib/proxy/dignite/cms/admin/dynamic-forms/index.mjs +3 -0
  63. package/esm2022/lib/proxy/dignite/cms/admin/dynamic-forms/models.mjs +2 -0
  64. package/esm2022/lib/proxy/dignite/cms/admin/entries/entry-admin.service.mjs +70 -0
  65. package/esm2022/lib/proxy/dignite/cms/admin/entries/index.mjs +3 -0
  66. package/esm2022/lib/proxy/dignite/cms/admin/entries/models.mjs +2 -0
  67. package/esm2022/lib/proxy/dignite/cms/admin/fields/field-admin.service.mjs +45 -0
  68. package/esm2022/lib/proxy/dignite/cms/admin/fields/field-group-admin.service.mjs +41 -0
  69. package/esm2022/lib/proxy/dignite/cms/admin/fields/index.mjs +4 -0
  70. package/esm2022/lib/proxy/dignite/cms/admin/fields/models.mjs +2 -0
  71. package/esm2022/lib/proxy/dignite/cms/admin/sections/entry-type-admin.service.mjs +41 -0
  72. package/esm2022/lib/proxy/dignite/cms/admin/sections/index.mjs +4 -0
  73. package/esm2022/lib/proxy/dignite/cms/admin/sections/models.mjs +2 -0
  74. package/esm2022/lib/proxy/dignite/cms/admin/sections/section-admin.service.mjs +51 -0
  75. package/esm2022/lib/proxy/dignite/cms/entries/entry-status.enum.mjs +8 -0
  76. package/esm2022/lib/proxy/dignite/cms/entries/index.mjs +2 -0
  77. package/esm2022/lib/proxy/dignite/cms/fields/models.mjs +2 -0
  78. package/esm2022/lib/proxy/dignite/cms/sections/index.mjs +3 -0
  79. package/esm2022/lib/proxy/dignite/cms/sections/models.mjs +2 -0
  80. package/esm2022/lib/proxy/dignite/cms/sections/section-type.enum.mjs +9 -0
  81. package/esm2022/lib/proxy/volo/cms-kit/users/models.mjs +2 -0
  82. package/esm2022/lib/resolvers/extensions-props-action-token.resolver.mjs +136 -0
  83. package/esm2022/lib/resolvers/page-default-toolbar-actions.mjs +160 -0
  84. package/esm2022/lib/resolvers/table-default-entity-actions.mjs +28 -0
  85. package/esm2022/lib/resolvers/table-default-entity-props.mjs +53 -0
  86. package/esm2022/lib/services/appent-content.mjs +15 -0
  87. package/esm2022/lib/services/cms-api.service.mjs +93 -0
  88. package/esm2022/lib/services/cms.service.mjs +21 -0
  89. package/esm2022/lib/services/field-abstracts.service.mjs +42 -0
  90. package/esm2022/lib/services/index.mjs +4 -0
  91. package/esm2022/public-api.mjs +7 -0
  92. package/fesm2022/dignite-ng-expand.cms-config.mjs +92 -0
  93. package/fesm2022/dignite-ng-expand.cms-config.mjs.map +1 -0
  94. package/fesm2022/dignite-ng-expand.cms.mjs +4063 -0
  95. package/fesm2022/dignite-ng-expand.cms.mjs.map +1 -0
  96. package/index.d.ts +5 -0
  97. package/lib/cms-routing.module.d.ts +7 -0
  98. package/lib/cms.module.d.ts +37 -0
  99. package/lib/components/admin/entries/create-or-edit-entries.component.d.ts +63 -0
  100. package/lib/components/admin/entries/create-or-update-entry-input-base.d.ts +23 -0
  101. package/lib/components/admin/entries/create.component.d.ts +50 -0
  102. package/lib/components/admin/entries/edit.component.d.ts +53 -0
  103. package/lib/components/admin/entries/entries.component.d.ts +100 -0
  104. package/lib/components/admin/entries/index.d.ts +4 -0
  105. package/lib/components/admin/fields/create-field.component.d.ts +37 -0
  106. package/lib/components/admin/fields/create-or-edit-field.component.d.ts +37 -0
  107. package/lib/components/admin/fields/create-or-update-field-input-base.d.ts +16 -0
  108. package/lib/components/admin/fields/edit-field.component.d.ts +46 -0
  109. package/lib/components/admin/fields/field-group.component.d.ts +58 -0
  110. package/lib/components/admin/fields/fields.component.d.ts +35 -0
  111. package/lib/components/admin/fields/index.d.ts +6 -0
  112. package/lib/components/admin/index.d.ts +3 -0
  113. package/lib/components/admin/sections/create-or-edit-sections-modal.component.d.ts +49 -0
  114. package/lib/components/admin/sections/create-or-update-sections-input-base.d.ts +20 -0
  115. package/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.d.ts +28 -0
  116. package/lib/components/admin/sections/entry-types/create-or-edit.component.d.ts +139 -0
  117. package/lib/components/admin/sections/entry-types/index.d.ts +2 -0
  118. package/lib/components/admin/sections/index.d.ts +3 -0
  119. package/lib/components/admin/sections/sections.component.d.ts +46 -0
  120. package/lib/components/dynamic-form/entry/entry-config.component.d.ts +40 -0
  121. package/lib/components/dynamic-form/entry/entry-config.d.ts +9 -0
  122. package/lib/components/dynamic-form/entry/entry-control.component.d.ts +36 -0
  123. package/lib/components/dynamic-form/entry/index.d.ts +3 -0
  124. package/lib/components/dynamic-form/form-control-group.d.ts +4 -0
  125. package/lib/components/dynamic-form/index.d.ts +4 -0
  126. package/lib/components/dynamic-form/matrix/index.d.ts +3 -0
  127. package/lib/components/dynamic-form/matrix/matrix-config.component.d.ts +74 -0
  128. package/lib/components/dynamic-form/matrix/matrix-config.d.ts +24 -0
  129. package/lib/components/dynamic-form/matrix/matrix-control.component.d.ts +42 -0
  130. package/lib/components/dynamic-form/table/index.d.ts +3 -0
  131. package/lib/components/dynamic-form/table/table-config.component.d.ts +59 -0
  132. package/lib/components/dynamic-form/table/table-config.d.ts +18 -0
  133. package/lib/components/dynamic-form/table/table-control.component.d.ts +42 -0
  134. package/lib/components/index.d.ts +2 -0
  135. package/lib/constants/styles.d.ts +2 -0
  136. package/lib/enums/ecms-component.d.ts +11 -0
  137. package/lib/enums/index.d.ts +1 -0
  138. package/lib/proxy/dignite/abp/data/models.d.ts +3 -0
  139. package/lib/proxy/dignite/abp/regionalization-management/models.d.ts +8 -0
  140. package/lib/proxy/dignite/abp/regionalization-management/regionalization.service.d.ts +12 -0
  141. package/lib/proxy/dignite/cms/admin/dynamic-forms/form-admin.service.d.ts +12 -0
  142. package/lib/proxy/dignite/cms/admin/dynamic-forms/models.d.ts +5 -0
  143. package/lib/proxy/dignite/cms/admin/entries/entry-admin.service.d.ts +22 -0
  144. package/lib/proxy/dignite/cms/admin/entries/models.d.ts +61 -0
  145. package/lib/proxy/dignite/cms/admin/fields/field-admin.service.d.ts +17 -0
  146. package/lib/proxy/dignite/cms/admin/fields/field-group-admin.service.d.ts +16 -0
  147. package/{src/lib/proxy/dignite/cms/admin/fields/models.ts → lib/proxy/dignite/cms/admin/fields/models.d.ts} +34 -42
  148. package/lib/proxy/dignite/cms/admin/sections/entry-type-admin.service.d.ts +15 -0
  149. package/{src/lib/proxy/dignite/cms/admin/sections/models.ts → lib/proxy/dignite/cms/admin/sections/models.d.ts} +68 -82
  150. package/lib/proxy/dignite/cms/admin/sections/section-admin.service.d.ts +18 -0
  151. package/lib/proxy/dignite/cms/entries/entry-status.enum.d.ts +5 -0
  152. package/lib/proxy/dignite/cms/fields/models.d.ts +8 -0
  153. package/lib/proxy/dignite/cms/sections/models.d.ts +13 -0
  154. package/lib/proxy/dignite/cms/sections/section-type.enum.d.ts +6 -0
  155. package/{src/lib/proxy/volo/cms-kit/users/models.ts → lib/proxy/volo/cms-kit/users/models.d.ts} +7 -8
  156. package/lib/resolvers/extensions-props-action-token.resolver.d.ts +75 -0
  157. package/lib/resolvers/page-default-toolbar-actions.d.ts +18 -0
  158. package/lib/resolvers/table-default-entity-actions.d.ts +5 -0
  159. package/lib/resolvers/table-default-entity-props.d.ts +5 -0
  160. package/lib/services/appent-content.d.ts +1 -0
  161. package/lib/services/cms-api.service.d.ts +23 -0
  162. package/lib/services/cms.service.d.ts +10 -0
  163. package/lib/services/field-abstracts.service.d.ts +19 -0
  164. package/lib/services/index.d.ts +3 -0
  165. package/package.json +22 -7
  166. package/{src/public-api.ts → public-api.d.ts} +3 -7
  167. package/config/ng-package.json +0 -6
  168. package/config/src/cms-config.module.ts +0 -13
  169. package/config/src/enums/route-names.ts +0 -7
  170. package/config/src/providers/route.provider.ts +0 -68
  171. package/ng-package.json +0 -10
  172. package/src/lib/cms-routing.module.ts +0 -102
  173. package/src/lib/cms.module.ts +0 -113
  174. package/src/lib/components/admin/entries/create-or-edit-entries.component.html +0 -137
  175. package/src/lib/components/admin/entries/create-or-edit-entries.component.scss +0 -0
  176. package/src/lib/components/admin/entries/create-or-edit-entries.component.spec.ts +0 -21
  177. package/src/lib/components/admin/entries/create-or-edit-entries.component.ts +0 -216
  178. package/src/lib/components/admin/entries/create-or-update-entry-input-base.ts +0 -26
  179. package/src/lib/components/admin/entries/create.component.html +0 -16
  180. package/src/lib/components/admin/entries/create.component.scss +0 -0
  181. package/src/lib/components/admin/entries/create.component.spec.ts +0 -21
  182. package/src/lib/components/admin/entries/create.component.ts +0 -130
  183. package/src/lib/components/admin/entries/edit.component.html +0 -9
  184. package/src/lib/components/admin/entries/edit.component.scss +0 -0
  185. package/src/lib/components/admin/entries/edit.component.spec.ts +0 -21
  186. package/src/lib/components/admin/entries/edit.component.ts +0 -134
  187. package/src/lib/components/admin/entries/entries.component.html +0 -225
  188. package/src/lib/components/admin/entries/entries.component.scss +0 -109
  189. package/src/lib/components/admin/entries/entries.component.spec.ts +0 -21
  190. package/src/lib/components/admin/entries/entries.component.ts +0 -394
  191. package/src/lib/components/admin/entries/index.ts +0 -4
  192. package/src/lib/components/admin/fields/create-field.component.html +0 -12
  193. package/src/lib/components/admin/fields/create-field.component.scss +0 -1
  194. package/src/lib/components/admin/fields/create-field.component.spec.ts +0 -21
  195. package/src/lib/components/admin/fields/create-field.component.ts +0 -85
  196. package/src/lib/components/admin/fields/create-or-edit-field.component.html +0 -39
  197. package/src/lib/components/admin/fields/create-or-edit-field.component.scss +0 -0
  198. package/src/lib/components/admin/fields/create-or-edit-field.component.spec.ts +0 -21
  199. package/src/lib/components/admin/fields/create-or-edit-field.component.ts +0 -140
  200. package/src/lib/components/admin/fields/create-or-update-field-input-base.ts +0 -33
  201. package/src/lib/components/admin/fields/edit-field.component.html +0 -14
  202. package/src/lib/components/admin/fields/edit-field.component.scss +0 -0
  203. package/src/lib/components/admin/fields/edit-field.component.spec.ts +0 -21
  204. package/src/lib/components/admin/fields/edit-field.component.ts +0 -112
  205. package/src/lib/components/admin/fields/field-group.component.html +0 -69
  206. package/src/lib/components/admin/fields/field-group.component.scss +0 -0
  207. package/src/lib/components/admin/fields/field-group.component.spec.ts +0 -21
  208. package/src/lib/components/admin/fields/field-group.component.ts +0 -151
  209. package/src/lib/components/admin/fields/fields.component.html +0 -25
  210. package/src/lib/components/admin/fields/fields.component.scss +0 -1
  211. package/src/lib/components/admin/fields/fields.component.spec.ts +0 -21
  212. package/src/lib/components/admin/fields/fields.component.ts +0 -109
  213. package/src/lib/components/admin/fields/index.ts +0 -6
  214. package/src/lib/components/admin/index.ts +0 -3
  215. package/src/lib/components/admin/sections/create-or-edit-sections-modal.component.html +0 -81
  216. package/src/lib/components/admin/sections/create-or-edit-sections-modal.component.scss +0 -0
  217. package/src/lib/components/admin/sections/create-or-edit-sections-modal.component.spec.ts +0 -23
  218. package/src/lib/components/admin/sections/create-or-edit-sections-modal.component.ts +0 -239
  219. package/src/lib/components/admin/sections/create-or-update-sections-input-base.ts +0 -23
  220. package/src/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.ts +0 -52
  221. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.html +0 -195
  222. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.scss +0 -1
  223. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.spec.ts +0 -21
  224. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.ts +0 -442
  225. package/src/lib/components/admin/sections/entry-types/index.ts +0 -2
  226. package/src/lib/components/admin/sections/index.ts +0 -3
  227. package/src/lib/components/admin/sections/sections.component.html +0 -189
  228. package/src/lib/components/admin/sections/sections.component.scss +0 -1
  229. package/src/lib/components/admin/sections/sections.component.spec.ts +0 -21
  230. package/src/lib/components/admin/sections/sections.component.ts +0 -136
  231. package/src/lib/components/dynamic-form/entry/entry-config.component.html +0 -26
  232. package/src/lib/components/dynamic-form/entry/entry-config.component.scss +0 -27
  233. package/src/lib/components/dynamic-form/entry/entry-config.component.spec.ts +0 -21
  234. package/src/lib/components/dynamic-form/entry/entry-config.component.ts +0 -119
  235. package/src/lib/components/dynamic-form/entry/entry-config.ts +0 -22
  236. package/src/lib/components/dynamic-form/entry/entry-control.component.html +0 -25
  237. package/src/lib/components/dynamic-form/entry/entry-control.component.scss +0 -35
  238. package/src/lib/components/dynamic-form/entry/entry-control.component.spec.ts +0 -21
  239. package/src/lib/components/dynamic-form/entry/entry-control.component.ts +0 -111
  240. package/src/lib/components/dynamic-form/entry/index.ts +0 -3
  241. package/src/lib/components/dynamic-form/form-control-group.ts +0 -27
  242. package/src/lib/components/dynamic-form/index.ts +0 -4
  243. package/src/lib/components/dynamic-form/matrix/index.ts +0 -3
  244. package/src/lib/components/dynamic-form/matrix/matrix-config.component.html +0 -148
  245. package/src/lib/components/dynamic-form/matrix/matrix-config.component.scss +0 -0
  246. package/src/lib/components/dynamic-form/matrix/matrix-config.component.spec.ts +0 -21
  247. package/src/lib/components/dynamic-form/matrix/matrix-config.component.ts +0 -244
  248. package/src/lib/components/dynamic-form/matrix/matrix-config.ts +0 -63
  249. package/src/lib/components/dynamic-form/matrix/matrix-control.component.html +0 -42
  250. package/src/lib/components/dynamic-form/matrix/matrix-control.component.scss +0 -0
  251. package/src/lib/components/dynamic-form/matrix/matrix-control.component.spec.ts +0 -21
  252. package/src/lib/components/dynamic-form/matrix/matrix-control.component.ts +0 -118
  253. package/src/lib/components/dynamic-form/table/index.ts +0 -3
  254. package/src/lib/components/dynamic-form/table/table-config.component.html +0 -85
  255. package/src/lib/components/dynamic-form/table/table-config.component.scss +0 -10
  256. package/src/lib/components/dynamic-form/table/table-config.component.spec.ts +0 -21
  257. package/src/lib/components/dynamic-form/table/table-config.component.ts +0 -177
  258. package/src/lib/components/dynamic-form/table/table-config.ts +0 -45
  259. package/src/lib/components/dynamic-form/table/table-control.component.html +0 -54
  260. package/src/lib/components/dynamic-form/table/table-control.component.scss +0 -1
  261. package/src/lib/components/dynamic-form/table/table-control.component.spec.ts +0 -21
  262. package/src/lib/components/dynamic-form/table/table-control.component.ts +0 -127
  263. package/src/lib/components/index.ts +0 -2
  264. package/src/lib/constants/index.ts +0 -1
  265. package/src/lib/constants/styles.ts +0 -18
  266. package/src/lib/enums/ecms-component.ts +0 -11
  267. package/src/lib/enums/index.ts +0 -1
  268. package/src/lib/proxy/README.md +0 -17
  269. package/src/lib/proxy/dignite/abp/data/index.ts +0 -1
  270. package/src/lib/proxy/dignite/abp/data/models.ts +0 -4
  271. package/src/lib/proxy/dignite/abp/index.ts +0 -3
  272. package/src/lib/proxy/dignite/abp/regionalization-management/models.ts +0 -10
  273. package/src/lib/proxy/dignite/abp/regionalization-management/regionalization.service.ts +0 -29
  274. package/src/lib/proxy/dignite/cms/admin/dynamic-forms/form-admin.service.ts +0 -20
  275. package/src/lib/proxy/dignite/cms/admin/dynamic-forms/models.ts +0 -6
  276. package/src/lib/proxy/dignite/cms/admin/entries/entry-admin.service.ts +0 -109
  277. package/src/lib/proxy/dignite/cms/admin/entries/models.ts +0 -69
  278. package/src/lib/proxy/dignite/cms/admin/fields/field-admin.service.ts +0 -64
  279. package/src/lib/proxy/dignite/cms/admin/fields/field-group-admin.service.ts +0 -56
  280. package/src/lib/proxy/dignite/cms/admin/index.ts +0 -5
  281. package/src/lib/proxy/dignite/cms/admin/sections/entry-type-admin.service.ts +0 -55
  282. package/src/lib/proxy/dignite/cms/admin/sections/section-admin.service.ts +0 -74
  283. package/src/lib/proxy/dignite/cms/entries/entry-status.enum.ts +0 -8
  284. package/src/lib/proxy/dignite/cms/fields/index.ts +0 -1
  285. package/src/lib/proxy/dignite/cms/fields/models.ts +0 -9
  286. package/src/lib/proxy/dignite/cms/index.ts +0 -5
  287. package/src/lib/proxy/dignite/cms/sections/models.ts +0 -15
  288. package/src/lib/proxy/dignite/cms/sections/section-type.enum.ts +0 -9
  289. package/src/lib/proxy/dignite/index.ts +0 -3
  290. package/src/lib/proxy/generate-proxy.json +0 -54593
  291. package/src/lib/proxy/index.ts +0 -3
  292. package/src/lib/proxy/volo/cms-kit/index.ts +0 -2
  293. package/src/lib/proxy/volo/cms-kit/users/index.ts +0 -1
  294. package/src/lib/proxy/volo/index.ts +0 -2
  295. package/src/lib/resolvers/extensions-props-action-token.resolver.ts +0 -182
  296. package/src/lib/resolvers/page-default-toolbar-actions.ts +0 -173
  297. package/src/lib/resolvers/table-default-entity-actions.ts +0 -29
  298. package/src/lib/resolvers/table-default-entity-props.ts +0 -62
  299. package/src/lib/services/appent-content.ts +0 -13
  300. package/src/lib/services/cms-api.service.ts +0 -90
  301. package/src/lib/services/cms.service.ts +0 -18
  302. package/src/lib/services/field-abstracts.service.ts +0 -39
  303. package/src/lib/services/index.ts +0 -3
  304. package/src/lib/services/validator.ts +0 -10
  305. package/src/test.ts +0 -26
  306. package/tsconfig.lib.json +0 -16
  307. package/tsconfig.lib.prod.json +0 -10
  308. package/tsconfig.spec.json +0 -17
  309. /package/{src/lib/proxy/dignite/abp/regionalization-management/index.ts → lib/proxy/dignite/abp/regionalization-management/index.d.ts} +0 -0
  310. /package/{src/lib/proxy/dignite/cms/admin/dynamic-forms/index.ts → lib/proxy/dignite/cms/admin/dynamic-forms/index.d.ts} +0 -0
  311. /package/{src/lib/proxy/dignite/cms/admin/entries/index.ts → lib/proxy/dignite/cms/admin/entries/index.d.ts} +0 -0
  312. /package/{src/lib/proxy/dignite/cms/admin/fields/index.ts → lib/proxy/dignite/cms/admin/fields/index.d.ts} +0 -0
  313. /package/{src/lib/proxy/dignite/cms/admin/sections/index.ts → lib/proxy/dignite/cms/admin/sections/index.d.ts} +0 -0
  314. /package/{src/lib/proxy/dignite/cms/entries/index.ts → lib/proxy/dignite/cms/entries/index.d.ts} +0 -0
  315. /package/{src/lib/proxy/dignite/cms/sections/index.ts → lib/proxy/dignite/cms/sections/index.d.ts} +0 -0
@@ -0,0 +1,20 @@
1
+ import { Validators } from "@angular/forms";
2
+ export declare class CreateOrUpdateSectionsInputBase {
3
+ id: string | Validators[];
4
+ /**版块类型 */
5
+ type: any;
6
+ /**字段名称 Display name of this field */
7
+ displayName: any;
8
+ /**字段唯一名称 Unique Name*/
9
+ name: any;
10
+ /**条目路由 */
11
+ route: any;
12
+ /**页面模板 */
13
+ template: any;
14
+ /**是否默认 */
15
+ isDefault: any;
16
+ /**是否激活 */
17
+ isActive: any;
18
+ concurrencyStamp: string | Validators[];
19
+ constructor();
20
+ }
@@ -0,0 +1,28 @@
1
+ export declare class CreateOrEditEntryTypeInputBase {
2
+ /**显示名称 Display name of this field */
3
+ displayName: any;
4
+ /**名称 Unique Name*/
5
+ name: any;
6
+ /**条目路由 */
7
+ fieldTabs: any;
8
+ constructor(data?: CreateOrEditEntryTypeInputBase);
9
+ }
10
+ export declare class fieldTabsBase {
11
+ /**名称 Unique Name*/
12
+ name: any;
13
+ fields?: any;
14
+ constructor(data?: fieldTabsBase);
15
+ }
16
+ export declare class fieldsBase {
17
+ /**字段id Unique Name*/
18
+ fieldId: any;
19
+ /**显示名称 Unique Name*/
20
+ displayName: any;
21
+ /**必填 Unique Name*/
22
+ required: any;
23
+ /**是否在列表中显示 Unique Name*/
24
+ showInList: any;
25
+ /**是否启用搜索 */
26
+ enableSearch: any;
27
+ constructor();
28
+ }
@@ -0,0 +1,139 @@
1
+ import { LocalizationService } from '@abp/ng.core';
2
+ import { ToasterService } from '@abp/ng.theme.shared';
3
+ import { ElementRef, OnInit } from '@angular/core';
4
+ import { FormGroup, FormArray } from '@angular/forms';
5
+ import { ActivatedRoute } from '@angular/router';
6
+ import { CmsApiService } from '../../../../services';
7
+ import { Location } from '@angular/common';
8
+ import { FieldAdminService, FieldGroupAdminService } from '../../../../proxy/dignite/cms/admin/fields';
9
+ import { EntryTypeAdminService } from '../../../../proxy/dignite/cms/admin/sections';
10
+ import * as i0 from "@angular/core";
11
+ export declare class CreateOrEditComponent implements OnInit {
12
+ private toaster;
13
+ _location: Location;
14
+ private route;
15
+ _FieldGroupAdminService: FieldGroupAdminService;
16
+ _FieldAdminService: FieldAdminService;
17
+ _EntryTypeAdminService: EntryTypeAdminService;
18
+ _LocalizationService: LocalizationService;
19
+ _CmsApiService: CmsApiService;
20
+ constructor(toaster: ToasterService, _location: Location, route: ActivatedRoute, _FieldGroupAdminService: FieldGroupAdminService, _FieldAdminService: FieldAdminService, _EntryTypeAdminService: EntryTypeAdminService, _LocalizationService: LocalizationService, _CmsApiService: CmsApiService);
21
+ private fb;
22
+ private _UpdateListService;
23
+ /**表单实体 */
24
+ newEntity: FormGroup | undefined;
25
+ /**版块id */
26
+ sectionId: string;
27
+ /**条目类型id */
28
+ entryTypesId: string;
29
+ /**条目类型详情 */
30
+ entryTypesSelect: any;
31
+ get fieldTabs(): FormArray;
32
+ /**获取提交按钮替身,用于真实触发表单提交 */
33
+ submitclick: ElementRef;
34
+ /**触发提交按钮 */
35
+ submitclickBtn(): void;
36
+ ngOnInit(): void;
37
+ /**给fieldTabs添加新控件 */
38
+ addControlToFieldTabs(nameValue?: string): void;
39
+ /**获取字段分组 */
40
+ getFieldGroup(): void;
41
+ /**获取条目类型详情 */
42
+ getEntryTypes(): void;
43
+ /**
44
+ * 深拷贝--方法
45
+ * $api.deepClone() */
46
+ deepClone(obj: any): any;
47
+ /**
48
+ *
49
+ * @param nameValue 获取所有字段
50
+ */
51
+ getFieldList(): Promise<unknown>;
52
+ /**
53
+ * 拖拽 功能*/
54
+ /**数据源 */
55
+ /**数据源-字段分组数据-包含字段数据 fields */
56
+ fieldGroupList: any[];
57
+ /**数据源-所有字段列表 */
58
+ fieldList: any[];
59
+ /**数据源拖拽的分组下标 */
60
+ DataSourceGroupIndex: number;
61
+ /**数据源拖拽的字段下标 */
62
+ DataSourceFieldIndex: number;
63
+ /**目标源 结果*/
64
+ resultSource: any[];
65
+ /**从数据源拖拽的元素 */
66
+ fromDataSourceDragEl: any;
67
+ /**从目标源拖拽的元素 */
68
+ fromResultSourceDragEl: any;
69
+ /**来自数据源的集合,用于从目标源拖回数据源时的判断,与取值 */
70
+ formRightGroup: any[];
71
+ /**从数据源开始拖拽 */
72
+ fromDataSourceDragStart(element: any, fieldIndex: any, groupIndex: any): void;
73
+ /**从目标源开始拖拽 */
74
+ fromResultSourceDragStart(element: any): void;
75
+ /**拖拽到数据源时触发 */
76
+ dragToDataSourceDropped(): void;
77
+ /**拖拽到目标源时触发
78
+ *
79
+ */
80
+ dragToResultSourceDropped(fieldTabstem: any, fieldTabsIndex: any): void;
81
+ /** 从目标源拖拽到目标源*/
82
+ dragToResultSourceItemDropped(fieldsIndex: any): void;
83
+ /**设置formA表单 */
84
+ setfieldTabsFrom(): void;
85
+ private _ValidatorsService;
86
+ /**表单验证状态
87
+ * {
88
+ * title:true,
89
+ * }
90
+ */
91
+ formValidation: any;
92
+ isSubmit: boolean;
93
+ /**保存表单 */
94
+ save(): boolean;
95
+ /**编辑Tabs表单 */
96
+ editFieldTabsFrom: FormGroup | undefined;
97
+ /**模态框状态 */
98
+ visibleTabsOpen: boolean;
99
+ /**是否是忙碌状态 */
100
+ modalBusy: boolean;
101
+ /**正在编辑的tabs */
102
+ editFieldTabsSelect: any;
103
+ /**正在选中的nav */
104
+ navActive: any;
105
+ /**表单控件模板-动态赋值表单控件 */
106
+ editFieldTabsModalSubmitBtn: ElementRef;
107
+ /**模态框状态改变回调 */
108
+ VisibleTabsChange(event: any): void;
109
+ /**新建增加FieldTabs */
110
+ addFieldTabs(): void;
111
+ /**正在编辑的tab下标 */
112
+ newEditFieldTabsIndex: number;
113
+ /**编辑FieldTabs */
114
+ editFieldTabs(item: any, i: any): void;
115
+ /**保存编辑tabs表单 */
116
+ editFieldTabsSave(): void;
117
+ /**删除某个tabs表单 */
118
+ deleteFieldTabs(index: any): void;
119
+ /**编辑字段模态框状态 */
120
+ visibleEditFieldOpen: boolean;
121
+ /**编辑字段模态框表单 */
122
+ editFieldFrom: FormGroup | undefined;
123
+ /**表单控件模板-动态赋值表单控件-编辑字段 */
124
+ editFieldModalSubmitBtn: ElementRef;
125
+ /**正在编辑的字段下标 */
126
+ EditFieldIndex: number;
127
+ /**编辑字段模态框状态状态改变回调 */
128
+ VisibleEditFieldChange(event: any): void;
129
+ /**打开编辑字段模态框 */
130
+ EditFieldModalOpen(items: any, elIndex: any): void;
131
+ /**保存编辑字段 */
132
+ editFieldSave(): void;
133
+ /**name表单控件 */
134
+ get nameInput(): import("@angular/forms").AbstractControl<any, any>;
135
+ /**字段标签input失去标点生成字段名字 */
136
+ disPlayNameInputBlur(event: any): void;
137
+ static ɵfac: i0.ɵɵFactoryDeclaration<CreateOrEditComponent, never>;
138
+ static ɵcmp: i0.ɵɵComponentDeclaration<CreateOrEditComponent, "cms-create-or-edit", never, {}, {}, never, never, false, never>;
139
+ }
@@ -0,0 +1,2 @@
1
+ export * from './create-or-edit.-entry-type-input-base';
2
+ export * from './create-or-edit.component';
@@ -0,0 +1,3 @@
1
+ export * from './sections.component';
2
+ export * from './entry-types';
3
+ export * from './create-or-update-sections-input-base';
@@ -0,0 +1,46 @@
1
+ import { ABP, ListService, LocalizationService, PagedResultDto } from '@abp/ng.core';
2
+ import { OnInit } from '@angular/core';
3
+ import { ToasterService, ConfirmationService } from '@abp/ng.theme.shared';
4
+ import { FormBuilder, FormGroup } from '@angular/forms';
5
+ import { CmsApiService } from '../../../services';
6
+ import { ColumnMode } from '@swimlane/ngx-datatable';
7
+ import { EntryTypeAdminService, GetSectionsInput, SectionAdminService, SectionDto } from '../../../proxy/dignite/cms/admin/sections';
8
+ import { SectionType } from '../../../proxy/dignite/cms/sections';
9
+ import * as i0 from "@angular/core";
10
+ export declare class SectionsComponent implements OnInit {
11
+ readonly list: ListService;
12
+ private _SectionAdminService;
13
+ private toaster;
14
+ private confirmation;
15
+ private fb;
16
+ _EntryTypeAdminService: EntryTypeAdminService;
17
+ _LocalizationService: LocalizationService;
18
+ _CmsApiService: CmsApiService;
19
+ constructor(list: ListService, _SectionAdminService: SectionAdminService, toaster: ToasterService, confirmation: ConfirmationService, fb: FormBuilder, _EntryTypeAdminService: EntryTypeAdminService, _LocalizationService: LocalizationService, _CmsApiService: CmsApiService);
20
+ private _UpdateListService;
21
+ siteList: any[];
22
+ _SectionType: typeof SectionType;
23
+ _sectionTypeOptions: ABP.Option<typeof SectionType>[];
24
+ ColumnMode: typeof ColumnMode;
25
+ data: PagedResultDto<SectionDto>;
26
+ filters: GetSectionsInput;
27
+ hookToQuery(): void;
28
+ ngOnInit(): Promise<void>;
29
+ siteIdChange(): void;
30
+ /**表单 */
31
+ formEntity: FormGroup | undefined;
32
+ /**弹窗状态 */
33
+ isVisibleOpen: boolean;
34
+ /**弹窗回调 */
35
+ visibleChange(event: any): void;
36
+ /**创建 */
37
+ createBtn(): void;
38
+ /**编辑 */
39
+ editSectionBtn(item: any): void;
40
+ /**删除板块 */
41
+ deletefield(row: any): void;
42
+ /**删除条目类型 */
43
+ deleteEntryType(row: any): void;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<SectionsComponent, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<SectionsComponent, "cms-sections", never, {}, {}, never, never, false, never>;
46
+ }
@@ -0,0 +1,40 @@
1
+ import { AfterContentInit, ElementRef } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { SectionAdminService } from '../../../proxy/dignite/cms/admin/sections';
4
+ import * as i0 from "@angular/core";
5
+ export declare class EntryConfigComponent implements AfterContentInit {
6
+ private fb;
7
+ private _SectionAdminService;
8
+ constructor(fb: FormBuilder, _SectionAdminService: SectionAdminService);
9
+ /**表单控件类型 */
10
+ _type: any;
11
+ set type(v: any);
12
+ /**选择的表单信息 */
13
+ _selected: any;
14
+ set selected(v: any);
15
+ /**语言 */
16
+ _culture: any;
17
+ set culture(v: any);
18
+ /**表单实体 */
19
+ _Entity: FormGroup | undefined;
20
+ set Entity(v: FormGroup);
21
+ get formConfiguration(): FormGroup;
22
+ submitclick: ElementRef;
23
+ /**站点列表 */
24
+ siteList: any[any];
25
+ /**选择的站点id */
26
+ siteId: any;
27
+ /**站点下的版块 */
28
+ SiteOfSectionList: any[any];
29
+ ngAfterContentInit(): void;
30
+ private cdr;
31
+ dataLoaded(): Promise<void>;
32
+ AfterInit(): Promise<unknown>;
33
+ /**获取站点列表 */
34
+ /**获取站点下的版块 */
35
+ getSiteOfSectionList(): Promise<unknown>;
36
+ /**切换站点 */
37
+ siteIdChange(): Promise<void>;
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<EntryConfigComponent, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<EntryConfigComponent, "cms-entry-config", never, { "type": { "alias": "type"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "culture": { "alias": "culture"; "required": false; }; "Entity": { "alias": "Entity"; "required": false; }; }, {}, never, never, false, never>;
40
+ }
@@ -0,0 +1,9 @@
1
+ export declare class EntryConfig {
2
+ /**多选 */
3
+ 'Entry.Multiple': any;
4
+ /**占位符 */
5
+ 'Entry.Placeholder': any;
6
+ /**版块id */
7
+ 'Entry.SectionId': any;
8
+ constructor(data?: EntryConfig);
9
+ }
@@ -0,0 +1,36 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class EntryControlComponent {
5
+ constructor();
6
+ private fb;
7
+ private _EntryAdminService;
8
+ /**表单实体 */
9
+ _entity: FormGroup | undefined;
10
+ set entity(v: any);
11
+ /**字段配置列表 */
12
+ _fields: any;
13
+ set fields(v: any);
14
+ /**父级字段名称,用于为表单设置控件赋值 */
15
+ _parentFiledName: any;
16
+ set parentFiledName(v: any);
17
+ /**父级字段名称,用于为表单设置控件赋值 */
18
+ _selected: any;
19
+ set selected(v: any);
20
+ /**语言 */
21
+ _culture: any;
22
+ set culture(v: any);
23
+ submitclick: ElementRef;
24
+ extraProperties: FormGroup | undefined;
25
+ /** */
26
+ listOfOption: any[];
27
+ private cdr;
28
+ dataLoaded(): Promise<void>;
29
+ AfterInit(): Promise<unknown>;
30
+ /**获取对应的条目 */
31
+ getEntryAssignList(filter?: string): Promise<unknown>;
32
+ /** */
33
+ SelectChange(event: any): Promise<void>;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<EntryControlComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<EntryControlComponent, "cms-entry-control", never, { "entity": { "alias": "entity"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "parentFiledName": { "alias": "parentFiledName"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "culture": { "alias": "culture"; "required": false; }; }, {}, never, never, false, never>;
36
+ }
@@ -0,0 +1,3 @@
1
+ export * from './entry-config';
2
+ export * from './entry-config.component';
3
+ export * from './entry-control.component';
@@ -0,0 +1,4 @@
1
+ /**
2
+ * 表单控件分组-包含配置,控件,显示的数组
3
+ */
4
+ export declare const cmsFieldControlGroup: any[];
@@ -0,0 +1,4 @@
1
+ export * from './form-control-group';
2
+ export * from './entry';
3
+ export * from './matrix';
4
+ export * from './table';
@@ -0,0 +1,3 @@
1
+ export * from './matrix-config';
2
+ export * from './matrix-control.component';
3
+ export * from './matrix-config.component';
@@ -0,0 +1,74 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
3
+ import { CmsApiService, FieldAbstractsService } from '../../../services';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MatrixConfigComponent {
6
+ private fb;
7
+ private _CmsApiService;
8
+ private _FieldAbstractsService;
9
+ constructor(fb: FormBuilder, _CmsApiService: CmsApiService, _FieldAbstractsService: FieldAbstractsService);
10
+ /**表单控件组 */
11
+ _FieldControlGroup: any[];
12
+ /**表单控件类型 */
13
+ _type: any;
14
+ set type(v: any);
15
+ /**选择的表单信息 */
16
+ _selected: any;
17
+ set selected(v: any);
18
+ /**表单实体 */
19
+ _Entity: FormGroup | undefined;
20
+ set Entity(v: FormGroup);
21
+ submitclick: ElementRef;
22
+ private cdr;
23
+ dataLoaded(): Promise<void>;
24
+ AfterInit(): Promise<unknown>;
25
+ setSelectValue(): Promise<unknown>;
26
+ /**获取表单配置 */
27
+ get formConfiguration(): FormGroup;
28
+ /**获取表单配置下的矩阵块表单数组 */
29
+ get MatrixBlockTypes(): FormArray;
30
+ /**模态框-状态 */
31
+ matrixModalOpen: boolean;
32
+ /**模态框-是否正在编辑 */
33
+ isMatrixModalEdit: any;
34
+ /**模态框-用于确定模态的繁忙状态是否为真 */
35
+ modalBusy: boolean;
36
+ /**模态框-表单 */
37
+ matrixModalForm: FormGroup | undefined;
38
+ /**表单控件模板-用于在form外提交submit */
39
+ matrixModalModalSubmit: ElementRef;
40
+ /**矩阵块-选择的下标 */
41
+ selectMatrixBlockIndex: any;
42
+ /**矩阵块-选择的矩阵下字段的下标 */
43
+ selectMatrixFieldIndex: any;
44
+ /**模态框-状态改变 */
45
+ matrixModalVisibleChange(event: any): void;
46
+ /**矩阵块--新增-打开模态框 */
47
+ addMatrixBlockType(): void;
48
+ /**模态框--矩阵表单保存提交 */
49
+ createOrEditSave(): void;
50
+ /**新增矩阵块-向数组表单中增加项 */
51
+ addMatrixBlockTypeItem(input: any): void;
52
+ /**编辑矩阵块 */
53
+ EditMatrixBlock(input: any): void;
54
+ /**删除矩阵块 */
55
+ DeleteMatrixBlock(index: any): void;
56
+ /**矩阵块-选择 */
57
+ selectMatrixBlockChange(index: any): void;
58
+ /**矩阵字段-新增 */
59
+ addMatrixField(): void;
60
+ /**矩阵字段-新增矩阵字段项 */
61
+ addMatrixFieldItem(input: any, selectMatrixBlockIndex: any): void;
62
+ /**删除矩阵字段项 */
63
+ deleteMatrixField(MatrixFieldForm: any, index: any): void;
64
+ /**矩阵字段-选择 */
65
+ selectMatrixFieldChange(MatrixBlockIndex: any, MatrixFieldIndex: any): void;
66
+ get nameInput(): import("@angular/forms").AbstractControl<any, any>;
67
+ get FieldnameInput(): import("@angular/forms").AbstractControl<any, any>;
68
+ /**矩阵displayNameInput字段失去焦点 */
69
+ displayNameInputBlur(event: any): void;
70
+ /**矩阵displayNameInput字段失去焦点 */
71
+ MatrixFieldDisplayNameInputBlur(event: any): void;
72
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatrixConfigComponent, never>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatrixConfigComponent, "df-matrix-config", never, { "type": { "alias": "type"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "Entity": { "alias": "Entity"; "required": false; }; }, {}, never, never, false, never>;
74
+ }
@@ -0,0 +1,24 @@
1
+ import { FormGroup } from "@angular/forms";
2
+ export declare class MatrixConfig {
3
+ 'MatrixBlockTypes': any;
4
+ constructor(data?: MatrixConfig);
5
+ }
6
+ export declare class MatrixItemConfig {
7
+ displayName: any;
8
+ /**字段名字 */
9
+ name: any;
10
+ constructor(data?: MatrixConfig);
11
+ }
12
+ export declare class matrixFieldInputBase {
13
+ /**字段名称 Display name of this field */
14
+ displayName: any;
15
+ /**字段唯一名称 Unique Name*/
16
+ name: any;
17
+ /**描述 说明 */
18
+ description: any;
19
+ /**FieldType字段类型 表单控件名称 */
20
+ formControlName: any;
21
+ /**动态表单配置 */
22
+ formConfiguration: FormGroup | undefined;
23
+ constructor(data?: matrixFieldInputBase);
24
+ }
@@ -0,0 +1,42 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
3
+ import { CmsApiService } from '../../../services';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MatrixControlComponent {
6
+ private fb;
7
+ private _CmsApiService;
8
+ constructor(fb: FormBuilder, _CmsApiService: CmsApiService);
9
+ /**字段配置列表 */
10
+ _fields: any;
11
+ set fields(v: any);
12
+ /**父级字段名称,用于为表单设置控件赋值 */
13
+ _parentFiledName: any;
14
+ set parentFiledName(v: any);
15
+ /**父级字段名称,用于为表单设置控件赋值 */
16
+ _selected: any;
17
+ set selected(v: any);
18
+ /**语言 */
19
+ _culture: any;
20
+ set culture(v: any);
21
+ /**表单实体 */
22
+ _entity: FormGroup | undefined;
23
+ set entity(v: any);
24
+ submitclick: ElementRef;
25
+ /** 获取父级字段代表的表单组*/
26
+ extraProperties: FormGroup | undefined;
27
+ private cdr;
28
+ /**数据加载完成 */
29
+ dataLoaded(): Promise<void>;
30
+ formConfiguration: any;
31
+ /**获取表格字段代表的控件 */
32
+ fieldNameControl: FormArray | undefined;
33
+ AfterInit(): Promise<unknown>;
34
+ /**矩阵列表 */
35
+ MatrixBlockTypesList: any[];
36
+ /**增加指定矩阵控件项 */
37
+ addMatrixControl(item: any): void;
38
+ /**删除矩阵控件 */
39
+ deleteMatrixControl(index: any, item: any): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatrixControlComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<MatrixControlComponent, "df-matrix-control", never, { "fields": { "alias": "fields"; "required": false; }; "parentFiledName": { "alias": "parentFiledName"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "culture": { "alias": "culture"; "required": false; }; "entity": { "alias": "entity"; "required": false; }; }, {}, never, never, false, never>;
42
+ }
@@ -0,0 +1,3 @@
1
+ export * from './table-config';
2
+ export * from './table-config.component';
3
+ export * from './table-control.component';
@@ -0,0 +1,59 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
3
+ import { CmsApiService, FieldAbstractsService } from '../../../services';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TableConfigComponent {
6
+ private fb;
7
+ private _CmsApiService;
8
+ private _FieldAbstractsService;
9
+ constructor(fb: FormBuilder, _CmsApiService: CmsApiService, _FieldAbstractsService: FieldAbstractsService);
10
+ /**表单实体 */
11
+ _Entity: FormGroup | undefined;
12
+ set Entity(v: FormGroup);
13
+ /**选择的表单信息 */
14
+ _selected: any;
15
+ set selected(v: any);
16
+ /**表单控件组 */
17
+ _fieldControlGroup: any[];
18
+ /**表单控件类型 */
19
+ _type: any;
20
+ set type(v: any);
21
+ get formConfiguration(): FormGroup;
22
+ get TableColumns(): FormArray;
23
+ submitclick: ElementRef;
24
+ private cdr;
25
+ dataLoaded(): Promise<void>;
26
+ /**增加选项 */
27
+ addTableColumns(): void;
28
+ /**删除某个选项 */
29
+ deleteTableColumns(index: any): void;
30
+ AfterInit(): Promise<unknown>;
31
+ itemForm: any;
32
+ /**选择表格的表单控件 */
33
+ selectTableControl(event: any, i: any, item: any): void;
34
+ CurrentSelectionTableControlName: any;
35
+ /**正在创建或编辑的表格项下标 */
36
+ TableColumnsIndex: any;
37
+ /**创建站点模态框状态 */
38
+ tableSelectOpen: boolean;
39
+ /**用于确定模态的繁忙状态是否为真 */
40
+ modalBusy: boolean;
41
+ /**创建站点表单 */
42
+ tableSelectForm: FormGroup | undefined;
43
+ /**表格已选择数据 */
44
+ _tableSelected: any;
45
+ /**表单控件模板-动态赋值表单控件 */
46
+ tableSelectModalSubmit: ElementRef;
47
+ /**创建站点模态框状态改变 */
48
+ tableSelectVisibleChange(event: any): void;
49
+ /**表单保存提交 */
50
+ createOrEditSave(): void;
51
+ /**编辑站点按钮 */
52
+ EditSitesBtn(rows: any, i: any): void;
53
+ /**调整表格位置 */
54
+ TableArrowUpOrDown(type: any, index: any): void;
55
+ /**字段标签input失去标点生成字段名字 */
56
+ disPlayNameInputBlur(event: any, item: any): void;
57
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableConfigComponent, never>;
58
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableConfigComponent, "df-table-config", never, { "Entity": { "alias": "Entity"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
59
+ }
@@ -0,0 +1,18 @@
1
+ export declare class TableConfig {
2
+ TableColumns: any;
3
+ constructor(data?: TableConfig);
4
+ }
5
+ export declare class TableFormControl {
6
+ /**列标题 */
7
+ displayName: any;
8
+ /**空间配置 */
9
+ formConfiguration: any;
10
+ /**列名 */
11
+ name: any;
12
+ formControlName: any;
13
+ /**是否必填 */
14
+ required: any;
15
+ /**描述 */
16
+ description: any;
17
+ constructor(data?: TableConfig);
18
+ }
@@ -0,0 +1,42 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { FormArray, FormGroup } from '@angular/forms';
3
+ import { CmsApiService } from '../../../services';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TableControlComponent {
6
+ private _CmsApiService;
7
+ constructor(_CmsApiService: CmsApiService);
8
+ private fb;
9
+ /**表单实体 */
10
+ _entity: FormGroup | undefined;
11
+ set entity(v: any);
12
+ /**字段配置列表 */
13
+ _fields: any;
14
+ set fields(v: any);
15
+ /**父级字段名称,用于为表单设置控件赋值 */
16
+ _parentFiledName: any;
17
+ set parentFiledName(v: any);
18
+ /**父级字段名称,用于为表单设置控件赋值 */
19
+ _selected: any;
20
+ set selected(v: any);
21
+ /**语言 */
22
+ _culture: any;
23
+ set culture(v: any);
24
+ submitclick: ElementRef;
25
+ /** 获取父级字段代表的表单组*/
26
+ extraProperties: FormGroup | undefined;
27
+ private cdr;
28
+ /**数据加载完成 */
29
+ dataLoaded(): Promise<void>;
30
+ formConfiguration: any;
31
+ /**获取表格字段代表的控件 */
32
+ fieldNameControl: FormArray | undefined;
33
+ AfterInit(): Promise<unknown>;
34
+ /**增加表格项 */
35
+ addTableControlItem(): void;
36
+ /**删除表格项 */
37
+ minusTableControlItem(index: any): void;
38
+ /**调整表格位置 */
39
+ TableArrowUpOrDown(type: any, index: any): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableControlComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableControlComponent, "df-table-control", never, { "entity": { "alias": "entity"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "parentFiledName": { "alias": "parentFiledName"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "culture": { "alias": "culture"; "required": false; }; }, {}, never, never, false, never>;
42
+ }
@@ -0,0 +1,2 @@
1
+ export * from './admin';
2
+ export * from './dynamic-form';
@@ -0,0 +1,2 @@
1
+ declare const _default: "\n.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}\na {\n text-decoration: unset;\n}\n\n\n:root select{\n cursor: pointer; /* this will show the pointer when hovering */\n} \n.cdk-global-overlay-wrapper, .cdk-overlay-container {pointer-events: none;top: 0;left: 0;height: 100%;width: 100% }.cdk-overlay-container {position: fixed;z-index: 1000 }.cdk-overlay-container:empty {display: none }.cdk-global-overlay-wrapper, .cdk-overlay-connected-position-bounding-box, .cdk-overlay-pane {position: absolute;z-index: 1000;display: flex }.cdk-overlay-pane {pointer-events: auto;box-sizing: border-box;max-width: 100%;max-height: 100% }.cdk-overlay-backdrop {position: absolute;top: 0;bottom: 0;left: 0;right: 0;z-index: 1000;pointer-events: auto;transition: opacity .4s cubic-bezier(.25, .8, .25, 1);opacity: 0 }.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {opacity: 1 }.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {opacity: .6 }.cdk-overlay-dark-backdrop {background: rgba(0, 0, 0, .32) }.cdk-overlay-transparent-backdrop {transition: visibility 1ms linear, opacity 1ms linear;visibility: hidden;opacity: 1 }.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {opacity: 0;visibility: visible }.cdk-overlay-backdrop-noop-animation {transition: none }.cdk-overlay-connected-position-bounding-box {flex-direction: column;min-width: 1px;min-height: 1px }.cdk-global-scrollblock {position: fixed;width: 100%;overflow-y: scroll }.cdk-visually-hidden {border: 0;clip: rect(0 0 0 0);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;outline: 0;-webkit-appearance: none;-moz-appearance: none }.nz-overlay-transparent-backdrop, .nz-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {opacity: 0 }.ant-select, .ant-select-dropdown {margin: 0;line-height: 1.5715;box-sizing: border-box;font-feature-settings: 'tnum';list-style: none }.ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottom, .ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottomLeft, .ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottomRight, .ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottom, .ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottomLeft, .ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottomRight, .ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-bottomLeft, .ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-bottomLeft {animation-name: antSlideUpIn }.ant-select-dropdown.ant-select-tree-dropdown {top: 100%;left: 0;position: relative;width: 100%;margin-top: 4px;margin-bottom: 4px;overflow: auto }.ant-select-dropdown-hidden, .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete, .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye, .ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info::before {display: none }.ant-select-dropdown {top: 100%;left: 0;position: relative;width: 100%;margin-top: 4px;margin-bottom: 4px;display: block }.ant-select-dropdown .cdk-virtual-scroll-content-wrapper {right: 0 }.ant-select-dropdown .full-width {contain: initial }.ant-select-dropdown .full-width .cdk-virtual-scroll-content-wrapper {position: static }.ant-select-dropdown .full-width .cdk-virtual-scroll-spacer {position: absolute;top: 0;width: 1px }.ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-topLeft, .ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-topLeft {animation-name: antSlideDownIn }.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {animation-name: antSlideUpOut }.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-topLeft {animation-name: antSlideDownOut }\n\n/*** 表单验证样式 start */\n.was-validated .form-control:invalid, .form-control.is-invalid{\n border-color: #c00d49 !important;\n}\n/*** 表单验证样式 end */\n";
2
+ export default _default;
@@ -0,0 +1,11 @@
1
+ export declare 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';