@dignite-ng/expand.cms 0.0.18 → 0.0.20

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 (369) 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 +66 -0
  7. package/config/{public-api.d.ts → src/public-api.ts} +3 -3
  8. package/karma.conf.js +44 -0
  9. package/ng-package.json +7 -0
  10. package/package.json +19 -38
  11. package/src/lib/cms-routing.module.ts +111 -0
  12. package/src/lib/cms.module.ts +119 -0
  13. package/src/lib/components/admin/entries/create-or-edit-entries.component.html +115 -0
  14. package/src/lib/components/admin/entries/create-or-edit-entries.component.scss +25 -0
  15. package/src/lib/components/admin/entries/create-or-edit-entries.component.spec.ts +21 -0
  16. package/src/lib/components/admin/entries/create-or-edit-entries.component.ts +287 -0
  17. package/src/lib/components/admin/entries/create-or-update-entry-input-base.ts +36 -0
  18. package/src/lib/components/admin/entries/create.component.html +13 -0
  19. package/src/lib/components/admin/entries/create.component.scss +21 -0
  20. package/src/lib/components/admin/entries/create.component.spec.ts +21 -0
  21. package/src/lib/components/admin/entries/create.component.ts +103 -0
  22. package/src/lib/components/admin/entries/edit.component.html +9 -0
  23. package/src/lib/components/admin/entries/edit.component.scss +26 -0
  24. package/src/lib/components/admin/entries/edit.component.spec.ts +21 -0
  25. package/src/lib/components/admin/entries/edit.component.ts +103 -0
  26. package/src/lib/components/admin/entries/entries.component.html +106 -0
  27. package/src/lib/components/admin/entries/entries.component.scss +80 -0
  28. package/src/lib/components/admin/entries/entries.component.spec.ts +21 -0
  29. package/src/lib/components/admin/entries/entries.component.ts +216 -0
  30. package/src/lib/components/admin/entries/index.ts +4 -0
  31. package/src/lib/components/admin/fields/create-field.component.html +12 -0
  32. package/src/lib/components/admin/fields/create-field.component.scss +10 -0
  33. package/src/lib/components/admin/fields/create-field.component.spec.ts +21 -0
  34. package/src/lib/components/admin/fields/create-field.component.ts +68 -0
  35. package/src/lib/components/admin/fields/create-or-edit-field.component.html +39 -0
  36. package/src/lib/components/admin/fields/create-or-edit-field.component.scss +0 -0
  37. package/src/lib/components/admin/fields/create-or-edit-field.component.spec.ts +21 -0
  38. package/src/lib/components/admin/fields/create-or-edit-field.component.ts +119 -0
  39. package/src/lib/components/admin/fields/create-or-update-field-input-base.ts +33 -0
  40. package/src/lib/components/admin/fields/edit-field.component.html +13 -0
  41. package/src/lib/components/admin/fields/edit-field.component.scss +0 -0
  42. package/src/lib/components/admin/fields/edit-field.component.spec.ts +21 -0
  43. package/src/lib/components/admin/fields/edit-field.component.ts +100 -0
  44. package/src/lib/components/admin/fields/field-group.component.html +69 -0
  45. package/src/lib/components/admin/fields/field-group.component.scss +0 -0
  46. package/src/lib/components/admin/fields/field-group.component.spec.ts +21 -0
  47. package/src/lib/components/admin/fields/field-group.component.ts +132 -0
  48. package/src/lib/components/admin/fields/fields.component.html +73 -0
  49. package/src/lib/components/admin/fields/fields.component.scss +11 -0
  50. package/src/lib/components/admin/fields/fields.component.spec.ts +21 -0
  51. package/src/lib/components/admin/fields/fields.component.ts +111 -0
  52. package/src/lib/components/admin/fields/index.ts +6 -0
  53. package/src/lib/components/admin/index.ts +4 -0
  54. package/src/lib/components/admin/sections/create-or-update-sections-input-base.ts +36 -0
  55. package/src/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.ts +79 -0
  56. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.html +191 -0
  57. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.scss +24 -0
  58. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.spec.ts +21 -0
  59. package/src/lib/components/admin/sections/entry-types/create-or-edit.component.ts +412 -0
  60. package/src/lib/components/admin/sections/entry-types/index.ts +2 -0
  61. package/src/lib/components/admin/sections/index.ts +3 -0
  62. package/src/lib/components/admin/sections/sections.component.html +191 -0
  63. package/src/lib/components/admin/sections/sections.component.scss +26 -0
  64. package/src/lib/components/admin/sections/sections.component.spec.ts +21 -0
  65. package/src/lib/components/admin/sections/sections.component.ts +334 -0
  66. package/src/lib/components/admin/sites/create-or-update-sites-input-base.ts +31 -0
  67. package/src/lib/components/admin/sites/index.ts +2 -0
  68. package/src/lib/components/admin/sites/sites.component.html +154 -0
  69. package/src/lib/components/admin/sites/sites.component.scss +19 -0
  70. package/src/lib/components/admin/sites/sites.component.spec.ts +21 -0
  71. package/src/lib/components/admin/sites/sites.component.ts +293 -0
  72. package/src/lib/components/dynamic-form/entry/entry-config.component.html +36 -0
  73. package/src/lib/components/dynamic-form/entry/entry-config.component.scss +0 -0
  74. package/src/lib/components/dynamic-form/entry/entry-config.component.spec.ts +21 -0
  75. package/src/lib/components/dynamic-form/entry/entry-config.component.ts +115 -0
  76. package/src/lib/components/dynamic-form/entry/entry-config.ts +24 -0
  77. package/src/lib/components/dynamic-form/entry/entry-control.component.html +26 -0
  78. package/src/lib/components/dynamic-form/entry/entry-control.component.scss +20 -0
  79. package/src/lib/components/dynamic-form/entry/entry-control.component.spec.ts +21 -0
  80. package/src/lib/components/dynamic-form/entry/entry-control.component.ts +110 -0
  81. package/src/lib/components/dynamic-form/entry/index.ts +3 -0
  82. package/src/lib/components/dynamic-form/form-control-group.ts +31 -0
  83. package/src/lib/components/dynamic-form/index.ts +4 -0
  84. package/src/lib/components/dynamic-form/matrix/index.ts +3 -0
  85. package/src/lib/components/dynamic-form/matrix/matrix-config.component.html +147 -0
  86. package/src/lib/components/dynamic-form/matrix/matrix-config.component.scss +0 -0
  87. package/src/lib/components/dynamic-form/matrix/matrix-config.component.spec.ts +21 -0
  88. package/src/lib/components/dynamic-form/matrix/matrix-config.component.ts +238 -0
  89. package/src/lib/components/dynamic-form/matrix/matrix-config.ts +63 -0
  90. package/src/lib/components/dynamic-form/matrix/matrix-control.component.html +42 -0
  91. package/src/lib/components/dynamic-form/matrix/matrix-control.component.scss +0 -0
  92. package/src/lib/components/dynamic-form/matrix/matrix-control.component.spec.ts +21 -0
  93. package/src/lib/components/dynamic-form/matrix/matrix-control.component.ts +104 -0
  94. package/src/lib/components/dynamic-form/table/index.ts +3 -0
  95. package/src/lib/components/dynamic-form/table/table-config.component.html +85 -0
  96. package/src/lib/components/dynamic-form/table/table-config.component.scss +10 -0
  97. package/src/lib/components/dynamic-form/table/table-config.component.spec.ts +21 -0
  98. package/src/lib/components/dynamic-form/table/table-config.component.ts +170 -0
  99. package/src/lib/components/dynamic-form/table/table-config.ts +45 -0
  100. package/src/lib/components/dynamic-form/table/table-control.component.html +55 -0
  101. package/src/lib/components/dynamic-form/table/table-control.component.scss +10 -0
  102. package/src/lib/components/dynamic-form/table/table-control.component.spec.ts +21 -0
  103. package/src/lib/components/dynamic-form/table/table-control.component.ts +107 -0
  104. package/src/lib/components/index.ts +2 -0
  105. package/src/lib/constants/index.ts +1 -0
  106. package/src/lib/constants/styles.ts +31 -0
  107. package/src/lib/enums/ecms-component.ts +11 -0
  108. package/src/lib/enums/index.ts +1 -0
  109. package/src/lib/proxy/README.md +17 -0
  110. package/src/lib/proxy/admin/dynamic-forms/form-admin.service.ts +21 -0
  111. package/src/lib/proxy/admin/dynamic-forms/models.ts +5 -0
  112. package/src/lib/proxy/admin/entries/entry-admin.service.ts +100 -0
  113. package/src/lib/proxy/admin/entries/models.ts +73 -0
  114. package/src/lib/proxy/admin/fields/field-admin.service.ts +64 -0
  115. package/src/lib/proxy/admin/fields/field-group-admin.service.ts +56 -0
  116. package/{lib/proxy/admin/fields/models.d.ts → src/lib/proxy/admin/fields/models.ts} +42 -34
  117. package/src/lib/proxy/admin/sections/entry-type-admin.service.ts +55 -0
  118. package/{lib/proxy/admin/sections/models.d.ts → src/lib/proxy/admin/sections/models.ts} +88 -74
  119. package/src/lib/proxy/admin/sections/section-admin.service.ts +74 -0
  120. package/{lib/proxy/admin/sites/models.d.ts → src/lib/proxy/admin/sites/models.ts} +36 -30
  121. package/src/lib/proxy/admin/sites/site-admin.service.ts +72 -0
  122. package/src/lib/proxy/dignite/abp/data/models.ts +4 -0
  123. package/src/lib/proxy/dignite/file-explorer/directories/file-descriptor.service.ts +65 -0
  124. package/{lib/proxy/dignite/file-explorer/directories/models.d.ts → src/lib/proxy/dignite/file-explorer/directories/models.ts} +35 -29
  125. package/src/lib/proxy/dignite/file-explorer/files/file-descriptor.service.ts +86 -0
  126. package/src/lib/proxy/dignite/file-explorer/files/models.ts +57 -0
  127. package/src/lib/proxy/entries/entry-status.enum.ts +8 -0
  128. package/src/lib/proxy/fields/models.ts +9 -0
  129. package/src/lib/proxy/generate-proxy.json +11821 -0
  130. package/{lib/proxy/microsoft/asp-net-core/mvc/models.d.ts → src/lib/proxy/microsoft/asp-net-core/mvc/models.ts} +12 -10
  131. package/src/lib/proxy/microsoft/extensions/primitives/models.ts +9 -0
  132. package/{lib/proxy/microsoft/net/http/headers/models.d.ts → src/lib/proxy/microsoft/net/http/headers/models.ts} +7 -6
  133. package/src/lib/proxy/sections/models.ts +14 -0
  134. package/src/lib/proxy/sections/section-type.enum.ts +9 -0
  135. package/src/lib/proxy/sites/models.ts +5 -0
  136. package/src/lib/proxy/volo/abp/content/models.ts +6 -0
  137. package/{lib/proxy/volo/cms-kit/users/models.d.ts → src/lib/proxy/volo/cms-kit/users/models.ts} +8 -7
  138. package/src/lib/services/appent-content.ts +13 -0
  139. package/src/lib/services/cms-api.service.ts +71 -0
  140. package/src/lib/services/cms.service.ts +18 -0
  141. package/src/lib/services/field-abstracts.service.ts +41 -0
  142. package/src/lib/services/index.ts +4 -0
  143. package/src/lib/services/simple-reuse-strategy.ts +49 -0
  144. package/src/lib/services/update-list.service.ts +15 -0
  145. package/src/lib/toolbar/index.ts +2 -0
  146. package/src/lib/toolbar/toolbar-btn-default-action.ts +171 -0
  147. package/src/lib/toolbar/toolbar-config.ts +95 -0
  148. package/{public-api.d.ts → src/public-api.ts} +12 -8
  149. package/src/test.ts +26 -0
  150. package/tsconfig.lib.json +20 -0
  151. package/tsconfig.lib.prod.json +10 -0
  152. package/tsconfig.spec.json +17 -0
  153. package/config/cms-config.module.d.ts +0 -8
  154. package/config/enums/route-names.d.ts +0 -8
  155. package/config/index.d.ts +0 -5
  156. package/config/providers/route.provider.d.ts +0 -8
  157. package/esm2022/config/cms-config.module.mjs +0 -19
  158. package/esm2022/config/dignite-ng-expand.cms-config.mjs +0 -5
  159. package/esm2022/config/enums/index.mjs +0 -2
  160. package/esm2022/config/enums/route-names.mjs +0 -2
  161. package/esm2022/config/providers/index.mjs +0 -2
  162. package/esm2022/config/providers/route.provider.mjs +0 -64
  163. package/esm2022/config/public-api.mjs +0 -4
  164. package/esm2022/dignite-ng-expand.cms.mjs +0 -5
  165. package/esm2022/lib/cms-routing.module.mjs +0 -100
  166. package/esm2022/lib/cms.module.mjs +0 -164
  167. package/esm2022/lib/components/admin/entries/create-or-edit-entries.component.mjs +0 -279
  168. package/esm2022/lib/components/admin/entries/create-or-update-entry-input-base.mjs +0 -32
  169. package/esm2022/lib/components/admin/entries/create.component.mjs +0 -107
  170. package/esm2022/lib/components/admin/entries/edit.component.mjs +0 -110
  171. package/esm2022/lib/components/admin/entries/entries.component.mjs +0 -212
  172. package/esm2022/lib/components/admin/entries/index.mjs +0 -5
  173. package/esm2022/lib/components/admin/fields/create-field.component.mjs +0 -82
  174. package/esm2022/lib/components/admin/fields/create-or-edit-field.component.mjs +0 -112
  175. package/esm2022/lib/components/admin/fields/create-or-update-field-input-base.mjs +0 -25
  176. package/esm2022/lib/components/admin/fields/edit-field.component.mjs +0 -110
  177. package/esm2022/lib/components/admin/fields/field-group.component.mjs +0 -124
  178. package/esm2022/lib/components/admin/fields/fields.component.mjs +0 -119
  179. package/esm2022/lib/components/admin/fields/index.mjs +0 -7
  180. package/esm2022/lib/components/admin/index.mjs +0 -5
  181. package/esm2022/lib/components/admin/sections/create-or-update-sections-input-base.mjs +0 -27
  182. package/esm2022/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.mjs +0 -71
  183. package/esm2022/lib/components/admin/sections/entry-types/create-or-edit.component.mjs +0 -418
  184. package/esm2022/lib/components/admin/sections/entry-types/index.mjs +0 -3
  185. package/esm2022/lib/components/admin/sections/index.mjs +0 -4
  186. package/esm2022/lib/components/admin/sections/sections.component.mjs +0 -334
  187. package/esm2022/lib/components/admin/sites/create-or-update-sites-input-base.mjs +0 -23
  188. package/esm2022/lib/components/admin/sites/index.mjs +0 -3
  189. package/esm2022/lib/components/admin/sites/sites.component.mjs +0 -285
  190. package/esm2022/lib/components/dynamic-form/entry/entry-config.component.mjs +0 -125
  191. package/esm2022/lib/components/dynamic-form/entry/entry-config.mjs +0 -18
  192. package/esm2022/lib/components/dynamic-form/entry/entry-control.component.mjs +0 -115
  193. package/esm2022/lib/components/dynamic-form/entry/index.mjs +0 -4
  194. package/esm2022/lib/components/dynamic-form/form-control-group.mjs +0 -31
  195. package/esm2022/lib/components/dynamic-form/index.mjs +0 -5
  196. package/esm2022/lib/components/index.mjs +0 -3
  197. package/esm2022/lib/constants/index.mjs +0 -2
  198. package/esm2022/lib/constants/styles.mjs +0 -32
  199. package/esm2022/lib/enums/ecms-component.mjs +0 -13
  200. package/esm2022/lib/enums/index.mjs +0 -2
  201. package/esm2022/lib/proxy/admin/dynamic-forms/form-admin.service.mjs +0 -24
  202. package/esm2022/lib/proxy/admin/dynamic-forms/index.mjs +0 -3
  203. package/esm2022/lib/proxy/admin/dynamic-forms/models.mjs +0 -2
  204. package/esm2022/lib/proxy/admin/entries/entry-admin.service.mjs +0 -67
  205. package/esm2022/lib/proxy/admin/entries/index.mjs +0 -3
  206. package/esm2022/lib/proxy/admin/entries/models.mjs +0 -2
  207. package/esm2022/lib/proxy/admin/fields/field-admin.service.mjs +0 -47
  208. package/esm2022/lib/proxy/admin/fields/field-group-admin.service.mjs +0 -43
  209. package/esm2022/lib/proxy/admin/fields/index.mjs +0 -4
  210. package/esm2022/lib/proxy/admin/fields/models.mjs +0 -2
  211. package/esm2022/lib/proxy/admin/index.mjs +0 -7
  212. package/esm2022/lib/proxy/admin/sections/entry-type-admin.service.mjs +0 -43
  213. package/esm2022/lib/proxy/admin/sections/index.mjs +0 -4
  214. package/esm2022/lib/proxy/admin/sections/models.mjs +0 -2
  215. package/esm2022/lib/proxy/admin/sections/section-admin.service.mjs +0 -53
  216. package/esm2022/lib/proxy/admin/sites/index.mjs +0 -3
  217. package/esm2022/lib/proxy/admin/sites/models.mjs +0 -2
  218. package/esm2022/lib/proxy/admin/sites/site-admin.service.mjs +0 -51
  219. package/esm2022/lib/proxy/dignite/abp/data/index.mjs +0 -2
  220. package/esm2022/lib/proxy/dignite/abp/data/models.mjs +0 -2
  221. package/esm2022/lib/proxy/dignite/abp/index.mjs +0 -3
  222. package/esm2022/lib/proxy/dignite/file-explorer/directories/file-descriptor.service.mjs +0 -48
  223. package/esm2022/lib/proxy/dignite/file-explorer/directories/index.mjs +0 -3
  224. package/esm2022/lib/proxy/dignite/file-explorer/directories/models.mjs +0 -2
  225. package/esm2022/lib/proxy/dignite/file-explorer/files/file-descriptor.service.mjs +0 -60
  226. package/esm2022/lib/proxy/dignite/file-explorer/files/index.mjs +0 -3
  227. package/esm2022/lib/proxy/dignite/file-explorer/files/models.mjs +0 -2
  228. package/esm2022/lib/proxy/dignite/file-explorer/index.mjs +0 -4
  229. package/esm2022/lib/proxy/dignite/index.mjs +0 -4
  230. package/esm2022/lib/proxy/entries/entry-status.enum.mjs +0 -8
  231. package/esm2022/lib/proxy/entries/index.mjs +0 -2
  232. package/esm2022/lib/proxy/fields/index.mjs +0 -2
  233. package/esm2022/lib/proxy/fields/models.mjs +0 -2
  234. package/esm2022/lib/proxy/index.mjs +0 -10
  235. package/esm2022/lib/proxy/microsoft/asp-net-core/index.mjs +0 -3
  236. package/esm2022/lib/proxy/microsoft/asp-net-core/mvc/index.mjs +0 -2
  237. package/esm2022/lib/proxy/microsoft/asp-net-core/mvc/models.mjs +0 -2
  238. package/esm2022/lib/proxy/microsoft/extensions/index.mjs +0 -3
  239. package/esm2022/lib/proxy/microsoft/extensions/primitives/index.mjs +0 -2
  240. package/esm2022/lib/proxy/microsoft/extensions/primitives/models.mjs +0 -2
  241. package/esm2022/lib/proxy/microsoft/index.mjs +0 -5
  242. package/esm2022/lib/proxy/microsoft/net/http/headers/index.mjs +0 -2
  243. package/esm2022/lib/proxy/microsoft/net/http/headers/models.mjs +0 -2
  244. package/esm2022/lib/proxy/microsoft/net/http/index.mjs +0 -3
  245. package/esm2022/lib/proxy/microsoft/net/index.mjs +0 -3
  246. package/esm2022/lib/proxy/sections/index.mjs +0 -3
  247. package/esm2022/lib/proxy/sections/models.mjs +0 -2
  248. package/esm2022/lib/proxy/sections/section-type.enum.mjs +0 -9
  249. package/esm2022/lib/proxy/sites/index.mjs +0 -2
  250. package/esm2022/lib/proxy/sites/models.mjs +0 -2
  251. package/esm2022/lib/proxy/volo/abp/content/index.mjs +0 -2
  252. package/esm2022/lib/proxy/volo/abp/content/models.mjs +0 -2
  253. package/esm2022/lib/proxy/volo/abp/index.mjs +0 -3
  254. package/esm2022/lib/proxy/volo/cms-kit/index.mjs +0 -3
  255. package/esm2022/lib/proxy/volo/cms-kit/users/index.mjs +0 -2
  256. package/esm2022/lib/proxy/volo/cms-kit/users/models.mjs +0 -2
  257. package/esm2022/lib/proxy/volo/index.mjs +0 -4
  258. package/esm2022/lib/services/appent-content.mjs +0 -15
  259. package/esm2022/lib/services/cms-api.service.mjs +0 -80
  260. package/esm2022/lib/services/cms.service.mjs +0 -23
  261. package/esm2022/lib/services/field-abstracts.service.mjs +0 -45
  262. package/esm2022/lib/services/index.mjs +0 -4
  263. package/esm2022/lib/services/simple-reuse-strategy.mjs +0 -43
  264. package/esm2022/lib/services/update-list.service.mjs +0 -19
  265. package/esm2022/lib/toolbar/index.mjs +0 -3
  266. package/esm2022/lib/toolbar/toolbar-btn-default-action.mjs +0 -160
  267. package/esm2022/lib/toolbar/toolbar-config.mjs +0 -81
  268. package/esm2022/public-api.mjs +0 -12
  269. package/fesm2022/dignite-ng-expand.cms-config.mjs +0 -87
  270. package/fesm2022/dignite-ng-expand.cms-config.mjs.map +0 -1
  271. package/fesm2022/dignite-ng-expand.cms.mjs +0 -3839
  272. package/fesm2022/dignite-ng-expand.cms.mjs.map +0 -1
  273. package/index.d.ts +0 -5
  274. package/lib/cms-routing.module.d.ts +0 -7
  275. package/lib/cms.module.d.ts +0 -36
  276. package/lib/components/admin/entries/create-or-edit-entries.component.d.ts +0 -89
  277. package/lib/components/admin/entries/create-or-update-entry-input-base.d.ts +0 -23
  278. package/lib/components/admin/entries/create.component.d.ts +0 -40
  279. package/lib/components/admin/entries/edit.component.d.ts +0 -42
  280. package/lib/components/admin/entries/entries.component.d.ts +0 -66
  281. package/lib/components/admin/entries/index.d.ts +0 -4
  282. package/lib/components/admin/fields/create-field.component.d.ts +0 -31
  283. package/lib/components/admin/fields/create-or-edit-field.component.d.ts +0 -33
  284. package/lib/components/admin/fields/create-or-update-field-input-base.d.ts +0 -16
  285. package/lib/components/admin/fields/edit-field.component.d.ts +0 -40
  286. package/lib/components/admin/fields/field-group.component.d.ts +0 -51
  287. package/lib/components/admin/fields/fields.component.d.ts +0 -37
  288. package/lib/components/admin/fields/index.d.ts +0 -6
  289. package/lib/components/admin/index.d.ts +0 -4
  290. package/lib/components/admin/sections/create-or-update-sections-input-base.d.ts +0 -17
  291. package/lib/components/admin/sections/entry-types/create-or-edit.-entry-type-input-base.d.ts +0 -38
  292. package/lib/components/admin/sections/entry-types/create-or-edit.component.d.ts +0 -132
  293. package/lib/components/admin/sections/entry-types/index.d.ts +0 -2
  294. package/lib/components/admin/sections/index.d.ts +0 -3
  295. package/lib/components/admin/sections/sections.component.d.ts +0 -95
  296. package/lib/components/admin/sites/create-or-update-sites-input-base.d.ts +0 -12
  297. package/lib/components/admin/sites/index.d.ts +0 -2
  298. package/lib/components/admin/sites/sites.component.d.ts +0 -72
  299. package/lib/components/dynamic-form/entry/entry-config.component.d.ts +0 -42
  300. package/lib/components/dynamic-form/entry/entry-config.d.ts +0 -9
  301. package/lib/components/dynamic-form/entry/entry-control.component.d.ts +0 -35
  302. package/lib/components/dynamic-form/entry/index.d.ts +0 -3
  303. package/lib/components/dynamic-form/form-control-group.d.ts +0 -4
  304. package/lib/components/dynamic-form/index.d.ts +0 -2
  305. package/lib/components/index.d.ts +0 -2
  306. package/lib/constants/index.d.ts +0 -1
  307. package/lib/constants/styles.d.ts +0 -2
  308. package/lib/enums/ecms-component.d.ts +0 -11
  309. package/lib/enums/index.d.ts +0 -1
  310. package/lib/proxy/admin/dynamic-forms/form-admin.service.d.ts +0 -12
  311. package/lib/proxy/admin/dynamic-forms/models.d.ts +0 -4
  312. package/lib/proxy/admin/entries/entry-admin.service.d.ts +0 -21
  313. package/lib/proxy/admin/entries/models.d.ts +0 -65
  314. package/lib/proxy/admin/fields/field-admin.service.d.ts +0 -17
  315. package/lib/proxy/admin/fields/field-group-admin.service.d.ts +0 -16
  316. package/lib/proxy/admin/sections/entry-type-admin.service.d.ts +0 -15
  317. package/lib/proxy/admin/sections/section-admin.service.d.ts +0 -18
  318. package/lib/proxy/admin/sites/site-admin.service.d.ts +0 -18
  319. package/lib/proxy/dignite/abp/data/models.d.ts +0 -3
  320. package/lib/proxy/dignite/file-explorer/directories/file-descriptor.service.d.ts +0 -17
  321. package/lib/proxy/dignite/file-explorer/files/file-descriptor.service.d.ts +0 -20
  322. package/lib/proxy/dignite/file-explorer/files/models.d.ts +0 -50
  323. package/lib/proxy/entries/entry-status.enum.d.ts +0 -5
  324. package/lib/proxy/fields/models.d.ts +0 -8
  325. package/lib/proxy/microsoft/extensions/primitives/models.d.ts +0 -8
  326. package/lib/proxy/sections/models.d.ts +0 -12
  327. package/lib/proxy/sections/section-type.enum.d.ts +0 -6
  328. package/lib/proxy/sites/models.d.ts +0 -4
  329. package/lib/proxy/volo/abp/content/models.d.ts +0 -5
  330. package/lib/services/appent-content.d.ts +0 -1
  331. package/lib/services/cms-api.service.d.ts +0 -20
  332. package/lib/services/cms.service.d.ts +0 -10
  333. package/lib/services/field-abstracts.service.d.ts +0 -20
  334. package/lib/services/index.d.ts +0 -3
  335. package/lib/services/simple-reuse-strategy.d.ts +0 -11
  336. package/lib/services/update-list.service.d.ts +0 -9
  337. package/lib/toolbar/index.d.ts +0 -2
  338. package/lib/toolbar/toolbar-btn-default-action.d.ts +0 -19
  339. package/lib/toolbar/toolbar-config.d.ts +0 -57
  340. /package/{lib/proxy/admin/dynamic-forms/index.d.ts → src/lib/proxy/admin/dynamic-forms/index.ts} +0 -0
  341. /package/{lib/proxy/admin/entries/index.d.ts → src/lib/proxy/admin/entries/index.ts} +0 -0
  342. /package/{lib/proxy/admin/fields/index.d.ts → src/lib/proxy/admin/fields/index.ts} +0 -0
  343. /package/{lib/proxy/admin/index.d.ts → src/lib/proxy/admin/index.ts} +0 -0
  344. /package/{lib/proxy/admin/sections/index.d.ts → src/lib/proxy/admin/sections/index.ts} +0 -0
  345. /package/{lib/proxy/admin/sites/index.d.ts → src/lib/proxy/admin/sites/index.ts} +0 -0
  346. /package/{lib/proxy/dignite/abp/data/index.d.ts → src/lib/proxy/dignite/abp/data/index.ts} +0 -0
  347. /package/{lib/proxy/dignite/abp/index.d.ts → src/lib/proxy/dignite/abp/index.ts} +0 -0
  348. /package/{lib/proxy/dignite/file-explorer/directories/index.d.ts → src/lib/proxy/dignite/file-explorer/directories/index.ts} +0 -0
  349. /package/{lib/proxy/dignite/file-explorer/files/index.d.ts → src/lib/proxy/dignite/file-explorer/files/index.ts} +0 -0
  350. /package/{lib/proxy/dignite/file-explorer/index.d.ts → src/lib/proxy/dignite/file-explorer/index.ts} +0 -0
  351. /package/{lib/proxy/dignite/index.d.ts → src/lib/proxy/dignite/index.ts} +0 -0
  352. /package/{lib/proxy/entries/index.d.ts → src/lib/proxy/entries/index.ts} +0 -0
  353. /package/{lib/proxy/fields/index.d.ts → src/lib/proxy/fields/index.ts} +0 -0
  354. /package/{lib/proxy/index.d.ts → src/lib/proxy/index.ts} +0 -0
  355. /package/{lib/proxy/microsoft/asp-net-core/index.d.ts → src/lib/proxy/microsoft/asp-net-core/index.ts} +0 -0
  356. /package/{lib/proxy/microsoft/asp-net-core/mvc/index.d.ts → src/lib/proxy/microsoft/asp-net-core/mvc/index.ts} +0 -0
  357. /package/{lib/proxy/microsoft/extensions/index.d.ts → src/lib/proxy/microsoft/extensions/index.ts} +0 -0
  358. /package/{lib/proxy/microsoft/extensions/primitives/index.d.ts → src/lib/proxy/microsoft/extensions/primitives/index.ts} +0 -0
  359. /package/{lib/proxy/microsoft/index.d.ts → src/lib/proxy/microsoft/index.ts} +0 -0
  360. /package/{lib/proxy/microsoft/net/http/headers/index.d.ts → src/lib/proxy/microsoft/net/http/headers/index.ts} +0 -0
  361. /package/{lib/proxy/microsoft/net/http/index.d.ts → src/lib/proxy/microsoft/net/http/index.ts} +0 -0
  362. /package/{lib/proxy/microsoft/net/index.d.ts → src/lib/proxy/microsoft/net/index.ts} +0 -0
  363. /package/{lib/proxy/sections/index.d.ts → src/lib/proxy/sections/index.ts} +0 -0
  364. /package/{lib/proxy/sites/index.d.ts → src/lib/proxy/sites/index.ts} +0 -0
  365. /package/{lib/proxy/volo/abp/content/index.d.ts → src/lib/proxy/volo/abp/content/index.ts} +0 -0
  366. /package/{lib/proxy/volo/abp/index.d.ts → src/lib/proxy/volo/abp/index.ts} +0 -0
  367. /package/{lib/proxy/volo/cms-kit/index.d.ts → src/lib/proxy/volo/cms-kit/index.ts} +0 -0
  368. /package/{lib/proxy/volo/cms-kit/users/index.d.ts → src/lib/proxy/volo/cms-kit/users/index.ts} +0 -0
  369. /package/{lib/proxy/volo/index.d.ts → src/lib/proxy/volo/index.ts} +0 -0
@@ -1,132 +0,0 @@
1
- import { ToasterService } from '@abp/ng.theme.shared';
2
- import { ElementRef, OnInit } from '@angular/core';
3
- import { FormArray, FormGroup } from '@angular/forms';
4
- import { Location } from '@angular/common';
5
- import { FieldGroupAdminService, FieldAdminService } from '../../../../proxy/admin/fields';
6
- import { EntryTypeAdminService } from '../../../../proxy/admin/sections';
7
- import { ActivatedRoute, Router } from '@angular/router';
8
- import { LocalizationService } from '@abp/ng.core';
9
- import { CmsApiService } from '../../../../services/cms-api.service';
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
- private router;
21
- constructor(toaster: ToasterService, _location: Location, route: ActivatedRoute, _FieldGroupAdminService: FieldGroupAdminService, _FieldAdminService: FieldAdminService, _EntryTypeAdminService: EntryTypeAdminService, _LocalizationService: LocalizationService, _CmsApiService: CmsApiService, router: Router);
22
- private fb;
23
- private _UpdateListService;
24
- /**表单实体 */
25
- newEntity: FormGroup | undefined;
26
- /**版块id */
27
- sectionId: string;
28
- /**条目类型id */
29
- entryTypesId: string;
30
- /**条目类型详情 */
31
- entryTypesSelect: any;
32
- get fieldTabs(): FormArray<any>;
33
- /**获取提交按钮替身,用于真实触发表单提交 */
34
- submitclick: ElementRef;
35
- /**触发提交按钮 */
36
- submitclickBtn(): void;
37
- ngOnInit(): void;
38
- /**给fieldTabs添加新控件 */
39
- addControlToFieldTabs(nameValue?: string): void;
40
- /**获取字段分组 */
41
- getFieldGroup(): void;
42
- /**获取条目类型详情 */
43
- getEntryTypes(): void;
44
- /**
45
- * 深拷贝--方法
46
- * $api.deepClone() */
47
- deepClone(obj: any): any;
48
- /**
49
- *
50
- * @param nameValue 获取所有字段
51
- */
52
- getFieldList(): Promise<unknown>;
53
- /**
54
- * 拖拽 功能*/
55
- /**数据源 */
56
- /**数据源-字段分组数据-包含字段数据 fields */
57
- fieldGroupList: any[];
58
- /**数据源-所有字段列表 */
59
- fieldList: any[];
60
- /**数据源拖拽的分组下标 */
61
- DataSourceGroupIndex: number;
62
- /**数据源拖拽的字段下标 */
63
- DataSourceFieldIndex: number;
64
- /**目标源 结果*/
65
- resultSource: any[];
66
- /**从数据源拖拽的元素 */
67
- fromDataSourceDragEl: any;
68
- /**从目标源拖拽的元素 */
69
- fromResultSourceDragEl: any;
70
- /**来自数据源的集合,用于从目标源拖回数据源时的判断,与取值 */
71
- formRightGroup: any[];
72
- /**从数据源开始拖拽 */
73
- fromDataSourceDragStart(element: any, fieldIndex: any, groupIndex: any): void;
74
- /**从目标源开始拖拽 */
75
- fromResultSourceDragStart(element: any): void;
76
- /**拖拽到数据源时触发 */
77
- dragToDataSourceDropped(): void;
78
- /**拖拽到目标源时触发
79
- *
80
- */
81
- dragToResultSourceDropped(fieldTabstem: any, fieldTabsIndex: any): void;
82
- /** 从目标源拖拽到目标源*/
83
- dragToResultSourceItemDropped(fieldsIndex: any): void;
84
- /**设置formA表单 */
85
- setfieldTabsFrom(): void;
86
- /**保存表单 */
87
- save(): void;
88
- /**编辑Tabs表单 */
89
- editFieldTabsFrom: FormGroup | undefined;
90
- /**模态框状态 */
91
- visibleTabsOpen: boolean;
92
- /**是否是忙碌状态 */
93
- modalBusy: boolean;
94
- /**正在编辑的tabs */
95
- editFieldTabsSelect: any;
96
- /**正在选中的nav */
97
- navActive: any;
98
- /**表单控件模板-动态赋值表单控件 */
99
- editFieldTabsModalSubmitBtn: ElementRef;
100
- /**模态框状态改变回调 */
101
- VisibleTabsChange(event: any): void;
102
- /**新建增加FieldTabs */
103
- addFieldTabs(): void;
104
- /**正在编辑的tab下标 */
105
- newEditFieldTabsIndex: number;
106
- /**编辑FieldTabs */
107
- editFieldTabs(item: any, i: any): void;
108
- /**保存编辑tabs表单 */
109
- editFieldTabsSave(): void;
110
- /**删除某个tabs表单 */
111
- deleteFieldTabs(index: any): void;
112
- /**编辑字段模态框状态 */
113
- visibleEditFieldOpen: boolean;
114
- /**编辑字段模态框表单 */
115
- editFieldFrom: FormGroup | undefined;
116
- /**表单控件模板-动态赋值表单控件-编辑字段 */
117
- editFieldModalSubmitBtn: ElementRef;
118
- /**正在编辑的字段下标 */
119
- EditFieldIndex: number;
120
- /**编辑字段模态框状态状态改变回调 */
121
- VisibleEditFieldChange(event: any): void;
122
- /**打开编辑字段模态框 */
123
- EditFieldModalOpen(items: any, elIndex: any): void;
124
- /**保存编辑字段 */
125
- editFieldSave(): void;
126
- /**name表单控件 */
127
- get nameInput(): import("@angular/forms").AbstractControl<any, any>;
128
- /**字段标签input失去标点生成字段名字 */
129
- disPlayNameInputBlur(event: any): void;
130
- static ɵfac: i0.ɵɵFactoryDeclaration<CreateOrEditComponent, never>;
131
- static ɵcmp: i0.ɵɵComponentDeclaration<CreateOrEditComponent, "cms-create-or-edit", never, {}, {}, never, never, false, never>;
132
- }
@@ -1,2 +0,0 @@
1
- export * from './create-or-edit.-entry-type-input-base';
2
- export * from './create-or-edit.component';
@@ -1,3 +0,0 @@
1
- export * from './sections.component';
2
- export * from './entry-types';
3
- export * from './create-or-update-sections-input-base';
@@ -1,95 +0,0 @@
1
- import { ABP, ConfigStateService, ListService, LocalizationService, PagedResultDto } from '@abp/ng.core';
2
- import { ToasterService, ConfirmationService } from '@abp/ng.theme.shared';
3
- import { ElementRef, OnInit } from '@angular/core';
4
- import { AbstractControl, FormBuilder, FormGroup, ValidationErrors, ValidatorFn } from '@angular/forms';
5
- import { EntryTypeAdminService, GetSectionsInput, SectionAdminService, SectionDto } from '../../../proxy/admin/sections';
6
- import { SiteAdminService } from '../../../proxy/admin/sites';
7
- import { ColumnMode } from "@swimlane/ngx-datatable";
8
- import { SectionType } from '../../../proxy/sections';
9
- import { CmsApiService } from '../../../services/cms-api.service';
10
- import { Observable } from 'rxjs';
11
- import { Router } from '@angular/router';
12
- import * as i0 from "@angular/core";
13
- export declare class SectionsComponent implements OnInit {
14
- readonly list: ListService;
15
- private _SectionAdminService;
16
- private _SiteAdminService;
17
- private toaster;
18
- private confirmation;
19
- private fb;
20
- private configState;
21
- _EntryTypeAdminService: EntryTypeAdminService;
22
- _LocalizationService: LocalizationService;
23
- _CmsApiService: CmsApiService;
24
- private router;
25
- constructor(list: ListService, _SectionAdminService: SectionAdminService, _SiteAdminService: SiteAdminService, toaster: ToasterService, confirmation: ConfirmationService, fb: FormBuilder, configState: ConfigStateService, _EntryTypeAdminService: EntryTypeAdminService, _LocalizationService: LocalizationService, _CmsApiService: CmsApiService, router: Router);
26
- private _UpdateListService;
27
- /**跳转编辑 */
28
- jumpSectionsEdit(row: any, item: any): void;
29
- /**跳转新建 */
30
- jumpSectionsCreate(row: any): void;
31
- /**版块列表 */
32
- siteList: any[];
33
- /*** */
34
- ColumnMode: typeof ColumnMode;
35
- data: PagedResultDto<SectionDto>;
36
- /** */
37
- filters: GetSectionsInput;
38
- /**获取页面列表 */
39
- hookToQuery(): void;
40
- ngOnInit(): Promise<void>;
41
- /**站点切换 */
42
- siteIdChange(): void;
43
- /**获取版块列表 */
44
- getSiteList(): Promise<unknown>;
45
- /**创建版块模态框状态 */
46
- visibleOpen: boolean;
47
- /**用于确定模态的繁忙状态是否为真 */
48
- modalBusy: boolean;
49
- /**创建版块表单 */
50
- createOrEditForm: FormGroup | undefined;
51
- /**版块给定的表单值 */
52
- selected: any;
53
- _SectionType: typeof SectionType;
54
- _sectionTypeOptions: ABP.Option<typeof SectionType>[];
55
- /**表单控件模板-动态赋值表单控件 */
56
- createOrEditModalSubmitBtn: ElementRef;
57
- /**创建版块模态框状态改变 */
58
- VisibleChange(event: any): void;
59
- /**创建版块,打开模态框 */
60
- createSectionBtn(): void;
61
- /**编辑版块,打开模态框 */
62
- editSectionBtn(row: any): void;
63
- /**删除某个条目类型 */
64
- deleteEntryType(row: any): void;
65
- /**表单保存提交 */
66
- createOrEditSave(): void;
67
- /** */
68
- createSave(): void;
69
- /**创建版块保存 */
70
- EditSave(): void;
71
- /**删除版块 */
72
- deletefield(row: any): void;
73
- /**name表单控件 */
74
- get displayNameInput(): AbstractControl<any, any>;
75
- /**name表单控件 */
76
- get nameInput(): AbstractControl<any, any>;
77
- /**route表单控件 */
78
- get routeInput(): AbstractControl<any, any>;
79
- /**route表单控件 */
80
- get templateInput(): AbstractControl<any, any>;
81
- /**route表单控件 */
82
- get typeInput(): AbstractControl<any, any>;
83
- radiochange(): void;
84
- /**字段标签input失去标点生成字段名字 */
85
- disPlayNameInputBlur(event: any): void;
86
- /**设置字段控件异步验证 */
87
- setAsyncValidatorsFn(): void;
88
- forbiddenNameValidator(): ValidatorFn;
89
- /**定义异步验证方法 */
90
- nameRepetitionAsyncValidator(): (ctrl: AbstractControl) => Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
91
- /**定义异步验证方法 */
92
- routeRepetitionAsyncValidator(): (ctrl: AbstractControl) => Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
93
- static ɵfac: i0.ɵɵFactoryDeclaration<SectionsComponent, never>;
94
- static ɵcmp: i0.ɵɵComponentDeclaration<SectionsComponent, "cms-sections", never, {}, {}, never, never, false, never>;
95
- }
@@ -1,12 +0,0 @@
1
- export declare class CreateOrUpdateSitesInputBase {
2
- /**字段名称 Display name of this field */
3
- displayName: any;
4
- /**字段唯一名称 Unique Name*/
5
- name: any;
6
- /**主机地址 */
7
- host: any;
8
- /**是否激活 */
9
- isActive: any;
10
- languages: any;
11
- constructor(data?: CreateOrUpdateSitesInputBase);
12
- }
@@ -1,2 +0,0 @@
1
- export * from './sites.component';
2
- export * from './create-or-update-sites-input-base';
@@ -1,72 +0,0 @@
1
- import { ConfigStateService, ListService, LocalizationService, PagedResultDto } from '@abp/ng.core';
2
- import { ToasterService, ConfirmationService } from '@abp/ng.theme.shared';
3
- import { OnInit, ElementRef } from '@angular/core';
4
- import { AbstractControl, FormBuilder, FormGroup, ValidationErrors } from '@angular/forms';
5
- import { GetSitesInput, SiteDto, SiteAdminService } from '../../../proxy/admin/sites';
6
- import { ColumnMode } from "@swimlane/ngx-datatable";
7
- import { CmsApiService } from '../../../services/cms-api.service';
8
- import { Observable } from 'rxjs';
9
- import * as i0 from "@angular/core";
10
- export declare class SitesComponent implements OnInit {
11
- readonly list: ListService;
12
- private _SiteAdminService;
13
- private toaster;
14
- private confirmation;
15
- private fb;
16
- private configState;
17
- private _LocalizationService;
18
- private _CmsApiService;
19
- constructor(list: ListService, _SiteAdminService: SiteAdminService, toaster: ToasterService, confirmation: ConfirmationService, fb: FormBuilder, configState: ConfigStateService, _LocalizationService: LocalizationService, _CmsApiService: CmsApiService);
20
- /**创建站点模态框状态 */
21
- createSitesOpen: boolean;
22
- /**用于确定模态的繁忙状态是否为真 */
23
- modalBusy: boolean;
24
- /**创建站点表单 */
25
- createOrEditForm: FormGroup | undefined;
26
- get languagesInput(): any;
27
- /**语言列表 */
28
- languages: any[];
29
- /**站点给定的表单值 */
30
- selected: any;
31
- /**表单控件模板-动态赋值表单控件 */
32
- createModalSubmit: ElementRef;
33
- ColumnMode: typeof ColumnMode;
34
- data: PagedResultDto<SiteDto>;
35
- filters: GetSitesInput;
36
- ngOnInit(): void;
37
- hookToQuery(): void;
38
- /**删除字段 */
39
- deletefield(row: any): void;
40
- /**创建站点模态框状态改变 */
41
- createGroupVisibleChange(event: any): void;
42
- /**选择语言改变 */
43
- languagesChange(event: any): void;
44
- /**设置默认语言 */
45
- setDefault(items: any): void;
46
- /**设置表单中的语言 */
47
- setFromLangguages(): void;
48
- /**表单保存提交 */
49
- createOrEditSave(): void;
50
- /**创建站点保存 */
51
- createSave(): void;
52
- /**编辑站点保存 */
53
- EditSave(): void;
54
- /**创建站点按钮 */
55
- createSitesBtn(): void;
56
- /**编辑站点按钮 */
57
- EditSitesBtn(rows: any): void;
58
- /**设置字段控件异步验证 */
59
- setAsyncValidatorsFn(): void;
60
- /**更新语言和默认状态 */
61
- updateLanguages(siteLanguages: any): void;
62
- get nameInput(): AbstractControl<any, any>;
63
- get hostInput(): AbstractControl<any, any>;
64
- /**字段标签input失去标点生成字段名字 */
65
- disPlayNameInputBlur(event: any): void;
66
- /**name定义自定义异步验证 */
67
- nameRepetitionAsyncValidator(): (ctrl: AbstractControl) => Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
68
- /**host定义自定义异步验证 */
69
- hostRepetitionAsyncValidator(): (ctrl: AbstractControl) => Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
70
- static ɵfac: i0.ɵɵFactoryDeclaration<SitesComponent, never>;
71
- static ɵcmp: i0.ɵɵComponentDeclaration<SitesComponent, "cms-sites", never, {}, {}, never, never, false, never>;
72
- }
@@ -1,42 +0,0 @@
1
- import { AfterContentInit, ElementRef } from '@angular/core';
2
- import { FormBuilder, FormGroup } from '@angular/forms';
3
- import { SiteAdminService } from '../../../proxy/admin/sites';
4
- import { SectionAdminService } from '../../../proxy/admin/sections';
5
- import * as i0 from "@angular/core";
6
- export declare class EntryConfigComponent implements AfterContentInit {
7
- private fb;
8
- private _SiteAdminService;
9
- private _SectionAdminService;
10
- constructor(fb: FormBuilder, _SiteAdminService: SiteAdminService, _SectionAdminService: SectionAdminService);
11
- /**表单控件类型 */
12
- _type: any;
13
- set type(v: any);
14
- /**表单实体 */
15
- _Entity: FormGroup | undefined;
16
- set Entity(v: FormGroup);
17
- /**选择的表单信息 */
18
- _selected: any;
19
- set selected(v: any);
20
- /**语言 */
21
- _culture: any;
22
- set culture(v: any);
23
- get formConfiguration(): FormGroup<any>;
24
- submitclick: ElementRef;
25
- /**站点列表 */
26
- siteList: any[any];
27
- /**选择的站点id */
28
- siteId: any;
29
- /**站点下的版块 */
30
- SiteOfSectionList: any[any];
31
- ngAfterContentInit(): void;
32
- dataLoaded(val: any): Promise<void>;
33
- AfterInit(): Promise<unknown>;
34
- /**获取站点列表 */
35
- getsiteList(): Promise<unknown>;
36
- /**获取站点下的版块 */
37
- getSiteOfSectionList(): Promise<unknown>;
38
- /**切换站点 */
39
- siteIdChange(): Promise<void>;
40
- static ɵfac: i0.ɵɵFactoryDeclaration<EntryConfigComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<EntryConfigComponent, "cms-entry-config", never, { "type": { "alias": "type"; "required": false; }; "Entity": { "alias": "Entity"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "culture": { "alias": "culture"; "required": false; }; }, {}, never, never, false, never>;
42
- }
@@ -1,9 +0,0 @@
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
- }
@@ -1,35 +0,0 @@
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
- dataLoaded(): Promise<void>;
28
- AfterInit(): Promise<unknown>;
29
- /**获取对应的条目 */
30
- getEntryAssignList(filter?: string): Promise<unknown>;
31
- /** */
32
- SelectChange(event: any): Promise<void>;
33
- static ɵfac: i0.ɵɵFactoryDeclaration<EntryControlComponent, never>;
34
- 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>;
35
- }
@@ -1,3 +0,0 @@
1
- export * from './entry-config';
2
- export * from './entry-config.component';
3
- export * from './entry-control.component';
@@ -1,4 +0,0 @@
1
- /**
2
- * 表单控件分组-包含配置,控件,显示的数组
3
- */
4
- export declare const FieldControlGroup: any[];
@@ -1,2 +0,0 @@
1
- export * from './form-control-group';
2
- export * from './entry';
@@ -1,2 +0,0 @@
1
- export * from './admin';
2
- export * from './dynamic-form';
@@ -1 +0,0 @@
1
- export * from './styles';
@@ -1,2 +0,0 @@
1
- declare const _default: "\n// /* 垂直滚动条样式 */\n// /* 宽度 */\n// ::-webkit-scrollbar {\n// width: 8px;\n// height: 8px;\n// }\n// /* 背景色 */\n// ::-webkit-scrollbar-track {\n// background-color: #f5f5f5;\n// }\n// /* 滑块颜色 */\n// ::-webkit-scrollbar-thumb {\n// background-color: #c1c1c1;\n \n// border-radius: 50px;\n// }\n\n.lpx-content-container .lpx-content {\n min-height: calc(100vh - 34px);\n padding: 1.25em 2em 1.25em;\n}\n\nh1,h2,h3,h4,h5,h6{\n color: inherit;\n}\n.lpx-settings .lpx-context-menu {\n overflow: auto; \n}\n\n";
2
- export default _default;
@@ -1,11 +0,0 @@
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
- }
@@ -1 +0,0 @@
1
- export * from './ecms-component';
@@ -1,12 +0,0 @@
1
- import type { FormControlDto } from './models';
2
- import { RestService, Rest } from '@abp/ng.core';
3
- import type { ListResultDto } from '@abp/ng.core';
4
- import * as i0 from "@angular/core";
5
- export declare class FormAdminService {
6
- private restService;
7
- apiName: string;
8
- getFormControls: (config?: Partial<Rest.Config>) => import("rxjs").Observable<ListResultDto<FormControlDto>>;
9
- constructor(restService: RestService);
10
- static ɵfac: i0.ɵɵFactoryDeclaration<FormAdminService, never>;
11
- static ɵprov: i0.ɵɵInjectableDeclaration<FormAdminService>;
12
- }
@@ -1,4 +0,0 @@
1
- export interface FormControlDto {
2
- name?: string;
3
- displayName?: string;
4
- }
@@ -1,21 +0,0 @@
1
- import type { CreateEntryInput, CultureExistWithSingleSectionInput, EntryDto, GetEntriesInput, MoveEntryInput, SlugExistsInput, UpdateEntryInput } from './models';
2
- import { RestService, Rest } from '@abp/ng.core';
3
- import type { ListResultDto, PagedResultDto } from '@abp/ng.core';
4
- import * as i0 from "@angular/core";
5
- export declare class EntryAdminService {
6
- private restService;
7
- apiName: string;
8
- activate: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<void>;
9
- create: (input: CreateEntryInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<EntryDto>;
10
- delete: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<void>;
11
- cultureExistWithSingleSection: (input: CultureExistWithSingleSectionInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<boolean>;
12
- get: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<EntryDto>;
13
- getAllVersions: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<ListResultDto<EntryDto>>;
14
- getList: (input: GetEntriesInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<PagedResultDto<EntryDto>>;
15
- move: (id: string, input: MoveEntryInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<void>;
16
- slugExists: (input: SlugExistsInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<boolean>;
17
- update: (id: string, input: UpdateEntryInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<EntryDto>;
18
- constructor(restService: RestService);
19
- static ɵfac: i0.ɵɵFactoryDeclaration<EntryAdminService, never>;
20
- static ɵprov: i0.ɵɵInjectableDeclaration<EntryAdminService>;
21
- }
@@ -1,65 +0,0 @@
1
- import type { ExtensibleAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
2
- import type { CmsUserDto } from '../../volo/cms-kit/users/models';
3
- import { CustomizableObject } from '../../dignite/abp/data';
4
- import { EntryStatus } from '../../entries';
5
- export interface CreateEntryInput extends CreateOrUpdateEntryInputBase {
6
- initialVersionId?: string;
7
- }
8
- export interface CreateOrUpdateEntryInputBase extends CustomizableObject {
9
- entryTypeId: string;
10
- culture: string;
11
- title: string;
12
- slug: string;
13
- parentId?: string;
14
- draft: boolean;
15
- publishTime: string;
16
- versionNotes?: string;
17
- }
18
- export interface EntryDto extends ExtensibleAuditedEntityDto<string> {
19
- sectionId?: string;
20
- entryTypeId?: string;
21
- culture?: string;
22
- title?: string;
23
- slug?: string;
24
- publishTime?: string;
25
- status: EntryStatus;
26
- parentId?: string;
27
- order: number;
28
- initialVersionId?: string;
29
- isActivatedVersion: boolean;
30
- versionNotes?: string;
31
- author: CmsUserDto;
32
- concurrencyStamp?: string;
33
- }
34
- export interface EntryTypeExistsInput {
35
- culture: string;
36
- sectionId: string;
37
- entryTypeId: string;
38
- }
39
- export interface CultureExistWithSingleSectionInput {
40
- culture: string;
41
- sectionId: string;
42
- entryTypeId: string;
43
- }
44
- export interface GetEntriesInput extends PagedAndSortedResultRequestDto {
45
- culture: string;
46
- sectionId: string;
47
- entryTypeId?: string;
48
- startPublishDate?: string;
49
- expiryPublishDate?: string;
50
- filter?: string;
51
- status?: EntryStatus;
52
- creatorId?: string;
53
- }
54
- export interface MoveEntryInput {
55
- parentId?: string;
56
- order: number;
57
- }
58
- export interface SlugExistsInput {
59
- culture: string;
60
- sectionId: string;
61
- slug?: string;
62
- }
63
- export interface UpdateEntryInput extends CreateOrUpdateEntryInputBase {
64
- concurrencyStamp?: string;
65
- }
@@ -1,17 +0,0 @@
1
- import type { CreateFieldInput, FieldDto, GetFieldsInput, UpdateFieldInput } from './models';
2
- import { RestService, Rest } from '@abp/ng.core';
3
- import type { PagedResultDto } from '@abp/ng.core';
4
- import * as i0 from "@angular/core";
5
- export declare class FieldAdminService {
6
- private restService;
7
- apiName: string;
8
- create: (input: CreateFieldInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<FieldDto>;
9
- delete: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<void>;
10
- get: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<FieldDto>;
11
- getList: (input: GetFieldsInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<PagedResultDto<FieldDto>>;
12
- nameExists: (name: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<boolean>;
13
- update: (id: string, input: UpdateFieldInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<FieldDto>;
14
- constructor(restService: RestService);
15
- static ɵfac: i0.ɵɵFactoryDeclaration<FieldAdminService, never>;
16
- static ɵprov: i0.ɵɵInjectableDeclaration<FieldAdminService>;
17
- }
@@ -1,16 +0,0 @@
1
- import type { CreateOrUpdateFieldGroupInput, FieldGroupDto, GetFieldGroupsInput } from './models';
2
- import { RestService, Rest } from '@abp/ng.core';
3
- import type { PagedResultDto } from '@abp/ng.core';
4
- import * as i0 from "@angular/core";
5
- export declare class FieldGroupAdminService {
6
- private restService;
7
- apiName: string;
8
- create: (input: CreateOrUpdateFieldGroupInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<FieldGroupDto>;
9
- delete: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<void>;
10
- get: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<FieldGroupDto>;
11
- getList: (input: GetFieldGroupsInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<PagedResultDto<FieldGroupDto>>;
12
- update: (id: string, input: CreateOrUpdateFieldGroupInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<FieldGroupDto>;
13
- constructor(restService: RestService);
14
- static ɵfac: i0.ɵɵFactoryDeclaration<FieldGroupAdminService, never>;
15
- static ɵprov: i0.ɵɵInjectableDeclaration<FieldGroupAdminService>;
16
- }
@@ -1,15 +0,0 @@
1
- import type { CreateEntryTypeInput, EntryTypeDto, EntryTypeNameExistsInput, UpdateEntryTypeInput } from './models';
2
- import { RestService, Rest } from '@abp/ng.core';
3
- import * as i0 from "@angular/core";
4
- export declare class EntryTypeAdminService {
5
- private restService;
6
- apiName: string;
7
- create: (input: CreateEntryTypeInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<EntryTypeDto>;
8
- delete: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<void>;
9
- get: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<EntryTypeDto>;
10
- nameExists: (input: EntryTypeNameExistsInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<boolean>;
11
- update: (id: string, input: UpdateEntryTypeInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<EntryTypeDto>;
12
- constructor(restService: RestService);
13
- static ɵfac: i0.ɵɵFactoryDeclaration<EntryTypeAdminService, never>;
14
- static ɵprov: i0.ɵɵInjectableDeclaration<EntryTypeAdminService>;
15
- }
@@ -1,18 +0,0 @@
1
- import type { CreateSectionInput, GetSectionsInput, SectionDto, SectionNameExistsInput, SectionRouteExistsInput, UpdateSectionInput } from './models';
2
- import { RestService, Rest } from '@abp/ng.core';
3
- import type { PagedResultDto } from '@abp/ng.core';
4
- import * as i0 from "@angular/core";
5
- export declare class SectionAdminService {
6
- private restService;
7
- apiName: string;
8
- create: (input: CreateSectionInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<SectionDto>;
9
- delete: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<void>;
10
- get: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<SectionDto>;
11
- getList: (input: GetSectionsInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<PagedResultDto<SectionDto>>;
12
- nameExists: (input: SectionNameExistsInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<boolean>;
13
- routeExists: (input: SectionRouteExistsInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<boolean>;
14
- update: (id: string, input: UpdateSectionInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<SectionDto>;
15
- constructor(restService: RestService);
16
- static ɵfac: i0.ɵɵFactoryDeclaration<SectionAdminService, never>;
17
- static ɵprov: i0.ɵɵInjectableDeclaration<SectionAdminService>;
18
- }