@formio/angular 7.0.0 → 7.5.0-rc.1-dev.1060.2e45ec8

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 (398) hide show
  1. package/.dockerignore +5 -0
  2. package/.editorconfig +13 -0
  3. package/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  4. package/.github/ISSUE_TEMPLATE/custom-components-support-request.md +15 -0
  5. package/.github/ISSUE_TEMPLATE/question.md +8 -0
  6. package/.github/pull_request_template.md +35 -0
  7. package/.github/workflows/repo.yml +145 -0
  8. package/.travis.yml +4 -0
  9. package/.yo-rc.json +7 -0
  10. package/CHANGELOG.md +1153 -0
  11. package/Dockerfile +20 -0
  12. package/LICENSE +21 -0
  13. package/README.md +204 -13
  14. package/angular.json +38 -0
  15. package/bs-config.json +11 -0
  16. package/package.json +54 -57
  17. package/projects/angular-formio/README.md +24 -0
  18. package/projects/angular-formio/auth/ng-package.json +5 -0
  19. package/projects/angular-formio/auth/src/auth.component.html +11 -0
  20. package/projects/angular-formio/auth/src/auth.component.ts +5 -0
  21. package/projects/angular-formio/auth/src/auth.config.ts +72 -0
  22. package/projects/angular-formio/auth/src/auth.module.ts +33 -0
  23. package/projects/angular-formio/auth/src/auth.routes.ts +34 -0
  24. package/projects/angular-formio/auth/src/auth.service.ts +221 -0
  25. package/{auth/index.d.ts → projects/angular-formio/auth/src/index.ts} +1 -2
  26. package/projects/angular-formio/auth/src/login/login.component.html +1 -0
  27. package/projects/angular-formio/auth/src/login/login.component.ts +11 -0
  28. package/projects/angular-formio/auth/src/public_api.ts +5 -0
  29. package/projects/angular-formio/auth/src/register/register.component.html +1 -0
  30. package/projects/angular-formio/auth/src/register/register.component.ts +11 -0
  31. package/projects/angular-formio/auth/src/resetpass/resetpass.component.html +1 -0
  32. package/projects/angular-formio/auth/src/resetpass/resetpass.component.ts +8 -0
  33. package/projects/angular-formio/embed/ng-package.json +5 -0
  34. package/projects/angular-formio/embed/src/app.service.ts +59 -0
  35. package/projects/angular-formio/embed/src/builder.component.ts +19 -0
  36. package/projects/angular-formio/embed/src/embed.module.ts +23 -0
  37. package/projects/angular-formio/embed/src/formio.component.ts +27 -0
  38. package/projects/angular-formio/embed/src/index.ts +6 -0
  39. package/projects/angular-formio/grid/ng-package.json +5 -0
  40. package/projects/angular-formio/grid/src/GridBodyComponent.ts +80 -0
  41. package/projects/angular-formio/grid/src/GridFooterComponent.ts +25 -0
  42. package/projects/angular-formio/grid/src/GridHeaderComponent.ts +25 -0
  43. package/projects/angular-formio/grid/src/form/FormGridBody.component.html +22 -0
  44. package/projects/angular-formio/grid/src/form/FormGridBody.component.scss +4 -0
  45. package/projects/angular-formio/grid/src/form/FormGridBody.component.ts +46 -0
  46. package/projects/angular-formio/grid/src/form/FormGridFooter.component.html +21 -0
  47. package/projects/angular-formio/grid/src/form/FormGridFooter.component.ts +23 -0
  48. package/projects/angular-formio/grid/src/form/FormGridHeader.component.html +18 -0
  49. package/projects/angular-formio/grid/src/form/FormGridHeader.component.ts +24 -0
  50. package/projects/angular-formio/grid/src/form/index.ts +8 -0
  51. package/projects/angular-formio/grid/src/form/time-since.pipe.ts +31 -0
  52. package/projects/angular-formio/grid/src/grid.component.html +18 -0
  53. package/projects/angular-formio/grid/src/grid.component.scss +9 -0
  54. package/projects/angular-formio/grid/src/grid.component.ts +242 -0
  55. package/projects/angular-formio/grid/src/grid.footer.scss +14 -0
  56. package/projects/angular-formio/grid/src/grid.module.ts +49 -0
  57. package/projects/angular-formio/grid/src/grid.service.ts +16 -0
  58. package/{grid/index.d.ts → projects/angular-formio/grid/src/index.ts} +0 -1
  59. package/projects/angular-formio/grid/src/public_api.ts +5 -0
  60. package/projects/angular-formio/grid/src/submission/SubmissionGridBody.component.html +7 -0
  61. package/projects/angular-formio/grid/src/submission/SubmissionGridBody.component.ts +39 -0
  62. package/projects/angular-formio/grid/src/submission/SubmissionGridFooter.component.html +18 -0
  63. package/projects/angular-formio/grid/src/submission/SubmissionGridFooter.component.ts +20 -0
  64. package/projects/angular-formio/grid/src/submission/SubmissionGridHeader.component.html +11 -0
  65. package/projects/angular-formio/grid/src/submission/SubmissionGridHeader.component.ts +72 -0
  66. package/{grid/submission/index.d.ts → projects/angular-formio/grid/src/submission/index.ts} +4 -6
  67. package/projects/angular-formio/grid/src/types/grid-column.ts +7 -0
  68. package/projects/angular-formio/grid/src/types/grid-footer-positions.ts +5 -0
  69. package/projects/angular-formio/grid/src/types/grid-header.ts +14 -0
  70. package/projects/angular-formio/karma.conf.js +32 -0
  71. package/projects/angular-formio/manager/ng-package.json +5 -0
  72. package/projects/angular-formio/manager/src/create/create.component.ts +11 -0
  73. package/projects/angular-formio/manager/src/delete/delete.component.html +6 -0
  74. package/projects/angular-formio/manager/src/delete/delete.component.ts +37 -0
  75. package/projects/angular-formio/manager/src/edit/edit.component.html +19 -0
  76. package/projects/angular-formio/manager/src/edit/edit.component.ts +110 -0
  77. package/projects/angular-formio/manager/src/form/form.component.html +32 -0
  78. package/projects/angular-formio/manager/src/form/form.component.ts +73 -0
  79. package/projects/angular-formio/manager/src/form-manager.config.ts +31 -0
  80. package/projects/angular-formio/manager/src/form-manager.module.ts +54 -0
  81. package/projects/angular-formio/manager/src/form-manager.routes.ts +75 -0
  82. package/projects/angular-formio/manager/src/form-manager.service.ts +190 -0
  83. package/projects/angular-formio/manager/src/index/index.component.html +14 -0
  84. package/projects/angular-formio/manager/src/index/index.component.scss +22 -0
  85. package/projects/angular-formio/manager/src/index/index.component.ts +100 -0
  86. package/{manager/index.d.ts → projects/angular-formio/manager/src/index.ts} +0 -1
  87. package/projects/angular-formio/manager/src/public_api.ts +5 -0
  88. package/projects/angular-formio/manager/src/submission/delete/delete.component.html +6 -0
  89. package/projects/angular-formio/manager/src/submission/delete/delete.component.ts +26 -0
  90. package/projects/angular-formio/manager/src/submission/edit/edit.component.html +7 -0
  91. package/projects/angular-formio/manager/src/submission/edit/edit.component.ts +18 -0
  92. package/projects/angular-formio/manager/src/submission/index/index.component.html +1 -0
  93. package/projects/angular-formio/manager/src/submission/index/index.component.ts +18 -0
  94. package/projects/angular-formio/manager/src/submission/submission/submission.component.html +8 -0
  95. package/projects/angular-formio/manager/src/submission/submission/submission.component.ts +24 -0
  96. package/projects/angular-formio/manager/src/submission/view/view.component.html +7 -0
  97. package/projects/angular-formio/manager/src/submission/view/view.component.ts +9 -0
  98. package/projects/angular-formio/manager/src/view/view.component.html +11 -0
  99. package/projects/angular-formio/manager/src/view/view.component.ts +44 -0
  100. package/projects/angular-formio/ng-package.json +7 -0
  101. package/projects/angular-formio/package.json +37 -0
  102. package/projects/angular-formio/resource/ng-package.json +5 -0
  103. package/projects/angular-formio/resource/src/create/create.component.html +13 -0
  104. package/projects/angular-formio/resource/src/create/create.component.scss +3 -0
  105. package/projects/angular-formio/resource/src/create/create.component.ts +37 -0
  106. package/projects/angular-formio/resource/src/delete/delete.component.html +5 -0
  107. package/projects/angular-formio/resource/src/delete/delete.component.ts +24 -0
  108. package/projects/angular-formio/resource/src/edit/edit.component.html +7 -0
  109. package/projects/angular-formio/resource/src/edit/edit.component.ts +35 -0
  110. package/projects/angular-formio/resource/src/index/index.component.html +10 -0
  111. package/projects/angular-formio/resource/src/index/index.component.ts +64 -0
  112. package/projects/angular-formio/resource/src/index.js +24 -0
  113. package/{resource/index.d.ts → projects/angular-formio/resource/src/index.ts} +0 -1
  114. package/projects/angular-formio/resource/src/public_api.ts +5 -0
  115. package/projects/angular-formio/resource/src/resource.component.html +7 -0
  116. package/projects/angular-formio/resource/src/resource.component.ts +48 -0
  117. package/projects/angular-formio/resource/src/resource.config.ts +17 -0
  118. package/projects/angular-formio/resource/src/resource.module.ts +43 -0
  119. package/projects/angular-formio/resource/src/resource.routes.ts +43 -0
  120. package/projects/angular-formio/resource/src/resource.service.ts +258 -0
  121. package/projects/angular-formio/resource/src/resources.service.ts +24 -0
  122. package/projects/angular-formio/resource/src/view/view.component.html +6 -0
  123. package/projects/angular-formio/resource/src/view/view.component.ts +19 -0
  124. package/projects/angular-formio/src/FormioBaseComponent.ts +554 -0
  125. package/projects/angular-formio/src/components/alerts/formio.alerts.component.html +3 -0
  126. package/projects/angular-formio/src/components/alerts/formio.alerts.component.ts +19 -0
  127. package/projects/angular-formio/src/components/alerts/formio.alerts.ts +21 -0
  128. package/projects/angular-formio/src/components/alerts/parse-html-content.pipe.ts +15 -0
  129. package/projects/angular-formio/src/components/formbuilder/formbuilder.component.html +1 -0
  130. package/projects/angular-formio/src/components/formbuilder/formbuilder.component.ts +213 -0
  131. package/projects/angular-formio/src/components/formio/formio.component.html +8 -0
  132. package/projects/angular-formio/src/components/formio/formio.component.ts +33 -0
  133. package/projects/angular-formio/src/components/formioreport/formioreport.component.html +8 -0
  134. package/projects/angular-formio/src/components/formioreport/formioreport.component.ts +95 -0
  135. package/projects/angular-formio/src/components/loader/formio.loader.component.html +3 -0
  136. package/projects/angular-formio/src/components/loader/formio.loader.component.scss +26 -0
  137. package/projects/angular-formio/src/components/loader/formio.loader.component.ts +10 -0
  138. package/{core.d.ts → projects/angular-formio/src/core.ts} +12 -2
  139. package/projects/angular-formio/src/custom-tags.service.ts +9 -0
  140. package/projects/angular-formio/src/formio-promise.service.ts +36 -0
  141. package/projects/angular-formio/src/formio.common.ts +91 -0
  142. package/projects/angular-formio/src/formio.config.ts +26 -0
  143. package/projects/angular-formio/src/formio.module.ts +38 -0
  144. package/projects/angular-formio/src/formio.service.ts +57 -0
  145. package/projects/angular-formio/src/formio.utils.ts +23 -0
  146. package/{index.d.ts → projects/angular-formio/src/index.ts} +0 -1
  147. package/projects/angular-formio/src/public-api.ts +5 -0
  148. package/projects/angular-formio/src/test.ts +28 -0
  149. package/projects/angular-formio/src/types/alerts-position.ts +6 -0
  150. package/projects/angular-formio/src/types/formio-metadata.ts +10 -0
  151. package/projects/angular-formio/src/types/formio-submission.ts +20 -0
  152. package/projects/angular-formio/tsconfig.lib.json +27 -0
  153. package/projects/angular-formio/tsconfig.lib.prod.json +8 -0
  154. package/projects/angular-formio/tsconfig.spec.json +17 -0
  155. package/projects/angular-formio/tslint.json +17 -0
  156. package/tsconfig.json +39 -0
  157. package/tslint.json +140 -0
  158. package/FormioBaseComponent.d.ts +0 -93
  159. package/FormioBaseComponent.d.ts.map +0 -1
  160. package/auth/auth.component.d.ts +0 -6
  161. package/auth/auth.component.d.ts.map +0 -1
  162. package/auth/auth.config.d.ts +0 -63
  163. package/auth/auth.config.d.ts.map +0 -1
  164. package/auth/auth.module.d.ts +0 -17
  165. package/auth/auth.module.d.ts.map +0 -1
  166. package/auth/auth.routes.d.ts +0 -4
  167. package/auth/auth.routes.d.ts.map +0 -1
  168. package/auth/auth.service.d.ts +0 -41
  169. package/auth/auth.service.d.ts.map +0 -1
  170. package/auth/formio-angular-auth.d.ts.map +0 -1
  171. package/auth/index.d.ts.map +0 -1
  172. package/auth/login/login.component.d.ts +0 -10
  173. package/auth/login/login.component.d.ts.map +0 -1
  174. package/auth/register/register.component.d.ts +0 -10
  175. package/auth/register/register.component.d.ts.map +0 -1
  176. package/auth/resetpass/resetpass.component.d.ts +0 -9
  177. package/auth/resetpass/resetpass.component.d.ts.map +0 -1
  178. package/components/alerts/formio.alerts.component.d.ts +0 -12
  179. package/components/alerts/formio.alerts.component.d.ts.map +0 -1
  180. package/components/alerts/formio.alerts.d.ts +0 -12
  181. package/components/alerts/formio.alerts.d.ts.map +0 -1
  182. package/components/alerts/parse-html-content.pipe.d.ts +0 -8
  183. package/components/alerts/parse-html-content.pipe.d.ts.map +0 -1
  184. package/components/formbuilder/formbuilder.component.d.ts +0 -37
  185. package/components/formbuilder/formbuilder.component.d.ts.map +0 -1
  186. package/components/formio/formio.component.d.ts +0 -15
  187. package/components/formio/formio.component.d.ts.map +0 -1
  188. package/components/formioreport/formioreport.component.d.ts +0 -20
  189. package/components/formioreport/formioreport.component.d.ts.map +0 -1
  190. package/components/loader/formio.loader.component.d.ts +0 -7
  191. package/components/loader/formio.loader.component.d.ts.map +0 -1
  192. package/core.d.ts.map +0 -1
  193. package/custom-tags.service.d.ts +0 -8
  194. package/custom-tags.service.d.ts.map +0 -1
  195. package/esm2022/FormioBaseComponent.mjs +0 -583
  196. package/esm2022/auth/auth.component.mjs +0 -12
  197. package/esm2022/auth/auth.config.mjs +0 -21
  198. package/esm2022/auth/auth.module.mjs +0 -46
  199. package/esm2022/auth/auth.routes.mjs +0 -32
  200. package/esm2022/auth/auth.service.mjs +0 -199
  201. package/esm2022/auth/formio-angular-auth.mjs +0 -5
  202. package/esm2022/auth/index.mjs +0 -9
  203. package/esm2022/auth/login/login.component.mjs +0 -20
  204. package/esm2022/auth/register/register.component.mjs +0 -20
  205. package/esm2022/auth/resetpass/resetpass.component.mjs +0 -17
  206. package/esm2022/components/alerts/formio.alerts.component.mjs +0 -28
  207. package/esm2022/components/alerts/formio.alerts.mjs +0 -13
  208. package/esm2022/components/alerts/parse-html-content.pipe.mjs +0 -19
  209. package/esm2022/components/formbuilder/formbuilder.component.mjs +0 -202
  210. package/esm2022/components/formio/formio.component.mjs +0 -43
  211. package/esm2022/components/formioreport/formioreport.component.mjs +0 -86
  212. package/esm2022/components/loader/formio.loader.component.mjs +0 -15
  213. package/esm2022/core.mjs +0 -18
  214. package/esm2022/custom-tags.service.mjs +0 -14
  215. package/esm2022/formio-angular.mjs +0 -5
  216. package/esm2022/formio-promise.service.mjs +0 -36
  217. package/esm2022/formio.common.mjs +0 -11
  218. package/esm2022/formio.config.mjs +0 -29
  219. package/esm2022/formio.module.mjs +0 -59
  220. package/esm2022/formio.service.mjs +0 -62
  221. package/esm2022/formio.utils.mjs +0 -21
  222. package/esm2022/grid/GridBodyComponent.mjs +0 -89
  223. package/esm2022/grid/GridFooterComponent.mjs +0 -44
  224. package/esm2022/grid/GridHeaderComponent.mjs +0 -34
  225. package/esm2022/grid/form/FormGridBody.component.mjs +0 -63
  226. package/esm2022/grid/form/FormGridFooter.component.mjs +0 -26
  227. package/esm2022/grid/form/FormGridHeader.component.mjs +0 -27
  228. package/esm2022/grid/form/index.mjs +0 -9
  229. package/esm2022/grid/form/time-since.pipe.mjs +0 -37
  230. package/esm2022/grid/formio-angular-grid.mjs +0 -5
  231. package/esm2022/grid/grid.component.mjs +0 -257
  232. package/esm2022/grid/grid.module.mjs +0 -79
  233. package/esm2022/grid/grid.service.mjs +0 -18
  234. package/esm2022/grid/index.mjs +0 -13
  235. package/esm2022/grid/submission/SubmissionGridBody.component.mjs +0 -43
  236. package/esm2022/grid/submission/SubmissionGridFooter.component.mjs +0 -23
  237. package/esm2022/grid/submission/SubmissionGridHeader.component.mjs +0 -63
  238. package/esm2022/grid/submission/index.mjs +0 -9
  239. package/esm2022/grid/types/grid-column.mjs +0 -2
  240. package/esm2022/grid/types/grid-footer-positions.mjs +0 -7
  241. package/esm2022/grid/types/grid-header.mjs +0 -6
  242. package/esm2022/index.mjs +0 -3
  243. package/esm2022/manager/create/create.component.mjs +0 -18
  244. package/esm2022/manager/delete/delete.component.mjs +0 -42
  245. package/esm2022/manager/edit/edit.component.mjs +0 -125
  246. package/esm2022/manager/form/form.component.mjs +0 -80
  247. package/esm2022/manager/form-manager.config.mjs +0 -18
  248. package/esm2022/manager/form-manager.module.mjs +0 -83
  249. package/esm2022/manager/form-manager.routes.mjs +0 -74
  250. package/esm2022/manager/form-manager.service.mjs +0 -185
  251. package/esm2022/manager/formio-angular-manager.mjs +0 -5
  252. package/esm2022/manager/index/index.component.mjs +0 -108
  253. package/esm2022/manager/index.mjs +0 -16
  254. package/esm2022/manager/submission/delete/delete.component.mjs +0 -32
  255. package/esm2022/manager/submission/edit/edit.component.mjs +0 -25
  256. package/esm2022/manager/submission/index/index.component.mjs +0 -25
  257. package/esm2022/manager/submission/submission/submission.component.mjs +0 -29
  258. package/esm2022/manager/submission/view/view.component.mjs +0 -17
  259. package/esm2022/manager/view/view.component.mjs +0 -52
  260. package/esm2022/resource/create/create.component.mjs +0 -43
  261. package/esm2022/resource/delete/delete.component.mjs +0 -29
  262. package/esm2022/resource/edit/edit.component.mjs +0 -42
  263. package/esm2022/resource/formio-angular-resource.mjs +0 -5
  264. package/esm2022/resource/index/index.component.mjs +0 -69
  265. package/esm2022/resource/index.mjs +0 -12
  266. package/esm2022/resource/resource.component.mjs +0 -46
  267. package/esm2022/resource/resource.config.mjs +0 -13
  268. package/esm2022/resource/resource.module.mjs +0 -62
  269. package/esm2022/resource/resource.routes.mjs +0 -42
  270. package/esm2022/resource/resource.service.mjs +0 -229
  271. package/esm2022/resource/resources.service.mjs +0 -25
  272. package/esm2022/resource/view/view.component.mjs +0 -25
  273. package/esm2022/types/alerts-position.mjs +0 -8
  274. package/esm2022/types/formio-metadata.mjs +0 -2
  275. package/esm2022/types/formio-submission.mjs +0 -6
  276. package/fesm2022/formio-angular-auth.mjs +0 -345
  277. package/fesm2022/formio-angular-auth.mjs.map +0 -1
  278. package/fesm2022/formio-angular-grid.mjs +0 -771
  279. package/fesm2022/formio-angular-grid.mjs.map +0 -1
  280. package/fesm2022/formio-angular-manager.mjs +0 -822
  281. package/fesm2022/formio-angular-manager.mjs.map +0 -1
  282. package/fesm2022/formio-angular-resource.mjs +0 -571
  283. package/fesm2022/formio-angular-resource.mjs.map +0 -1
  284. package/fesm2022/formio-angular.mjs +0 -1186
  285. package/fesm2022/formio-angular.mjs.map +0 -1
  286. package/formio-angular.d.ts.map +0 -1
  287. package/formio-promise.service.d.ts +0 -16
  288. package/formio-promise.service.d.ts.map +0 -1
  289. package/formio.common.d.ts +0 -73
  290. package/formio.common.d.ts.map +0 -1
  291. package/formio.config.d.ts +0 -20
  292. package/formio.config.d.ts.map +0 -1
  293. package/formio.module.d.ts +0 -15
  294. package/formio.module.d.ts.map +0 -1
  295. package/formio.service.d.ts +0 -18
  296. package/formio.service.d.ts.map +0 -1
  297. package/formio.utils.d.ts +0 -2
  298. package/formio.utils.d.ts.map +0 -1
  299. package/grid/GridBodyComponent.d.ts +0 -35
  300. package/grid/GridBodyComponent.d.ts.map +0 -1
  301. package/grid/GridFooterComponent.d.ts +0 -20
  302. package/grid/GridFooterComponent.d.ts.map +0 -1
  303. package/grid/GridHeaderComponent.d.ts +0 -16
  304. package/grid/GridHeaderComponent.d.ts.map +0 -1
  305. package/grid/form/FormGridBody.component.d.ts +0 -19
  306. package/grid/form/FormGridBody.component.d.ts.map +0 -1
  307. package/grid/form/FormGridFooter.component.d.ts +0 -10
  308. package/grid/form/FormGridFooter.component.d.ts.map +0 -1
  309. package/grid/form/FormGridHeader.component.d.ts +0 -11
  310. package/grid/form/FormGridHeader.component.d.ts.map +0 -1
  311. package/grid/form/index.d.ts +0 -10
  312. package/grid/form/index.d.ts.map +0 -1
  313. package/grid/form/time-since.pipe.d.ts +0 -8
  314. package/grid/form/time-since.pipe.d.ts.map +0 -1
  315. package/grid/formio-angular-grid.d.ts.map +0 -1
  316. package/grid/grid.component.d.ts +0 -59
  317. package/grid/grid.component.d.ts.map +0 -1
  318. package/grid/grid.module.d.ts +0 -23
  319. package/grid/grid.module.d.ts.map +0 -1
  320. package/grid/grid.service.d.ts +0 -10
  321. package/grid/grid.service.d.ts.map +0 -1
  322. package/grid/index.d.ts.map +0 -1
  323. package/grid/submission/SubmissionGridBody.component.d.ts +0 -19
  324. package/grid/submission/SubmissionGridBody.component.d.ts.map +0 -1
  325. package/grid/submission/SubmissionGridFooter.component.d.ts +0 -10
  326. package/grid/submission/SubmissionGridFooter.component.d.ts.map +0 -1
  327. package/grid/submission/SubmissionGridHeader.component.d.ts +0 -30
  328. package/grid/submission/SubmissionGridHeader.component.d.ts.map +0 -1
  329. package/grid/submission/index.d.ts.map +0 -1
  330. package/grid/types/grid-column.d.ts +0 -7
  331. package/grid/types/grid-column.d.ts.map +0 -1
  332. package/grid/types/grid-footer-positions.d.ts +0 -6
  333. package/grid/types/grid-footer-positions.d.ts.map +0 -1
  334. package/grid/types/grid-header.d.ts +0 -13
  335. package/grid/types/grid-header.d.ts.map +0 -1
  336. package/index.d.ts.map +0 -1
  337. package/manager/create/create.component.d.ts +0 -9
  338. package/manager/create/create.component.d.ts.map +0 -1
  339. package/manager/delete/delete.component.d.ts +0 -18
  340. package/manager/delete/delete.component.d.ts.map +0 -1
  341. package/manager/edit/edit.component.d.ts +0 -31
  342. package/manager/edit/edit.component.d.ts.map +0 -1
  343. package/manager/form/form.component.d.ts +0 -29
  344. package/manager/form/form.component.d.ts.map +0 -1
  345. package/manager/form-manager.config.d.ts +0 -30
  346. package/manager/form-manager.config.d.ts.map +0 -1
  347. package/manager/form-manager.module.d.ts +0 -28
  348. package/manager/form-manager.module.d.ts.map +0 -1
  349. package/manager/form-manager.routes.d.ts +0 -4
  350. package/manager/form-manager.routes.d.ts.map +0 -1
  351. package/manager/form-manager.service.d.ts +0 -37
  352. package/manager/form-manager.service.d.ts.map +0 -1
  353. package/manager/formio-angular-manager.d.ts.map +0 -1
  354. package/manager/index/index.component.d.ts +0 -28
  355. package/manager/index/index.component.d.ts.map +0 -1
  356. package/manager/index.d.ts.map +0 -1
  357. package/manager/submission/delete/delete.component.d.ts +0 -16
  358. package/manager/submission/delete/delete.component.d.ts.map +0 -1
  359. package/manager/submission/edit/edit.component.d.ts +0 -13
  360. package/manager/submission/edit/edit.component.d.ts.map +0 -1
  361. package/manager/submission/index/index.component.d.ts +0 -13
  362. package/manager/submission/index/index.component.d.ts.map +0 -1
  363. package/manager/submission/submission/submission.component.d.ts +0 -15
  364. package/manager/submission/submission/submission.component.d.ts.map +0 -1
  365. package/manager/submission/view/view.component.d.ts +0 -9
  366. package/manager/submission/view/view.component.d.ts.map +0 -1
  367. package/manager/view/view.component.d.ts +0 -24
  368. package/manager/view/view.component.d.ts.map +0 -1
  369. package/resource/create/create.component.d.ts +0 -19
  370. package/resource/create/create.component.d.ts.map +0 -1
  371. package/resource/delete/delete.component.d.ts +0 -14
  372. package/resource/delete/delete.component.d.ts.map +0 -1
  373. package/resource/edit/edit.component.d.ts +0 -22
  374. package/resource/edit/edit.component.d.ts.map +0 -1
  375. package/resource/formio-angular-resource.d.ts.map +0 -1
  376. package/resource/index/index.component.d.ts +0 -23
  377. package/resource/index/index.component.d.ts.map +0 -1
  378. package/resource/index.d.ts.map +0 -1
  379. package/resource/resource.component.d.ts +0 -24
  380. package/resource/resource.component.d.ts.map +0 -1
  381. package/resource/resource.config.d.ts +0 -17
  382. package/resource/resource.config.d.ts.map +0 -1
  383. package/resource/resource.module.d.ts +0 -20
  384. package/resource/resource.module.d.ts.map +0 -1
  385. package/resource/resource.routes.d.ts +0 -4
  386. package/resource/resource.routes.d.ts.map +0 -1
  387. package/resource/resource.service.d.ts +0 -52
  388. package/resource/resource.service.d.ts.map +0 -1
  389. package/resource/resources.service.d.ts +0 -16
  390. package/resource/resources.service.d.ts.map +0 -1
  391. package/resource/view/view.component.d.ts +0 -16
  392. package/resource/view/view.component.d.ts.map +0 -1
  393. package/types/alerts-position.d.ts +0 -7
  394. package/types/alerts-position.d.ts.map +0 -1
  395. package/types/formio-metadata.d.ts +0 -11
  396. package/types/formio-metadata.d.ts.map +0 -1
  397. package/types/formio-submission.d.ts +0 -19
  398. package/types/formio-submission.d.ts.map +0 -1
@@ -1,59 +0,0 @@
1
- import { GridFooterPositions } from './types/grid-footer-positions';
2
- import { AfterViewInit, ChangeDetectorRef, ComponentFactoryResolver, EventEmitter, OnChanges, OnInit, ViewContainerRef } from '@angular/core';
3
- import { FormioAlerts } from '@formio/angular';
4
- import { GridHeaderComponent } from './GridHeaderComponent';
5
- import { GridBodyComponent } from './GridBodyComponent';
6
- import { GridFooterComponent } from './GridFooterComponent';
7
- import { FormioPromiseService } from '@formio/angular';
8
- import { GridColumn } from './types/grid-column';
9
- import { GridHeader } from './types/grid-header';
10
- import * as i0 from "@angular/core";
11
- export declare class FormioGridComponent implements OnChanges, OnInit, AfterViewInit {
12
- alerts: FormioAlerts;
13
- private resolver;
14
- private ref;
15
- footerPosition: GridFooterPositions;
16
- src?: string;
17
- items?: Array<any>;
18
- onForm?: Promise<any>;
19
- query?: any;
20
- refresh?: EventEmitter<object>;
21
- columns?: Array<GridColumn>;
22
- gridType?: string;
23
- size?: number;
24
- components?: any;
25
- formio?: FormioPromiseService;
26
- label?: string;
27
- createText: String;
28
- isActionAllowed: any;
29
- select: EventEmitter<object>;
30
- rowSelect: EventEmitter<object>;
31
- rowAction: EventEmitter<object>;
32
- createItem: EventEmitter<any>;
33
- error: EventEmitter<any>;
34
- headerElement: ViewContainerRef;
35
- bodyElement: ViewContainerRef;
36
- footerElement: ViewContainerRef;
37
- page: number;
38
- isLoading: boolean;
39
- initialized: boolean;
40
- header: GridHeaderComponent;
41
- body: GridBodyComponent;
42
- footer: GridFooterComponent;
43
- footerPositions: typeof GridFooterPositions;
44
- constructor(alerts: FormioAlerts, resolver: ComponentFactoryResolver, ref: ChangeDetectorRef);
45
- createComponent(property: any, component: any): any;
46
- loadGrid(src?: string): void;
47
- ngOnInit(): void;
48
- ngOnChanges(changes: any): void;
49
- ngAfterViewInit(): void;
50
- actionAllowed(action: any): any;
51
- onError(error: any): void;
52
- refreshGrid(query?: any): any;
53
- setPage(num?: number): void;
54
- sortColumn(header: GridHeader): void;
55
- pageChanged(page: any): void;
56
- static ɵfac: i0.ɵɵFactoryDeclaration<FormioGridComponent, never>;
57
- static ɵcmp: i0.ɵɵComponentDeclaration<FormioGridComponent, "formio-grid", never, { "footerPosition": { "alias": "footerPosition"; "required": false; }; "src": { "alias": "src"; "required": false; }; "items": { "alias": "items"; "required": false; }; "onForm": { "alias": "onForm"; "required": false; }; "query": { "alias": "query"; "required": false; }; "refresh": { "alias": "refresh"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "gridType": { "alias": "gridType"; "required": false; }; "size": { "alias": "size"; "required": false; }; "components": { "alias": "components"; "required": false; }; "formio": { "alias": "formio"; "required": false; }; "label": { "alias": "label"; "required": false; }; "createText": { "alias": "createText"; "required": false; }; "isActionAllowed": { "alias": "isActionAllowed"; "required": false; }; }, { "select": "select"; "rowSelect": "rowSelect"; "rowAction": "rowAction"; "createItem": "createItem"; "error": "error"; }, never, never, false, never>;
58
- }
59
- //# sourceMappingURL=grid.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"grid.component.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/grid/src/grid.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,EACL,aAAa,EACb,iBAAiB,EAEjB,wBAAwB,EACxB,YAAY,EAEZ,SAAS,EACT,MAAM,EAGN,gBAAgB,EACjB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,YAAY,EAAC,MAAM,iBAAiB,CAAC;AAG7C,OAAO,EAAC,mBAAmB,EAAC,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAC,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAC,mBAAmB,EAAC,MAAM,uBAAuB,CAAC;AAG1D,OAAO,EAAC,oBAAoB,EAAC,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAC,UAAU,EAAC,MAAM,qBAAqB,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAW,MAAM,qBAAqB,CAAC;;AAEzD,qBAKa,mBAAoB,YAAW,SAAS,EAAE,MAAM,EAAE,aAAa;IAiCjE,MAAM,EAAE,YAAY;IAC3B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,GAAG;IAlCJ,cAAc,sBAA8B;IAC5C,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;IACtB,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,OAAO,CAAC,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IAC/B,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;IAC5B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,GAAG,CAAC;IACpB,MAAM,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IAC7B,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IAChC,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IAChC,UAAU,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;IAC9B,KAAK,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;IACkC,aAAa,EAAE,gBAAgB,CAAC;IAClC,WAAW,EAAE,gBAAgB,CAAC;IAC5B,aAAa,EAAE,gBAAgB,CAAC;IAE9F,IAAI,SAAK;IACT,SAAS,UAAS;IAClB,WAAW,UAAS;IACpB,MAAM,EAAE,mBAAmB,CAAC;IAC5B,IAAI,EAAE,iBAAiB,CAAC;IACxB,MAAM,EAAE,mBAAmB,CAAC;IAC5B,eAAe,6BAAuB;gBAGpC,MAAM,EAAE,YAAY,EACnB,QAAQ,EAAE,wBAAwB,EAClC,GAAG,EAAE,iBAAiB;IAShC,eAAe,CAAC,QAAQ,KAAA,EAAE,SAAS,KAAA;IAMnC,QAAQ,CAAC,GAAG,CAAC,EAAE,MAAM;IAqBrB,QAAQ;IAwBR,WAAW,CAAC,OAAO,EAAE,GAAG;IAoBxB,eAAe;IAWf,aAAa,CAAC,MAAM,KAAA;IAQpB,OAAO,CAAC,KAAK,EAAE,GAAG;IAWlB,WAAW,CAAC,KAAK,CAAC,EAAE,GAAG;IA0BvB,OAAO,CAAC,GAAG,SAAK;IAYhB,UAAU,CAAC,MAAM,EAAE,UAAU;IAwB7B,WAAW,CAAC,IAAI,EAAE,GAAG;yCA/MV,mBAAmB;2CAAnB,mBAAmB;CAkN/B"}
@@ -1,23 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./grid.component";
3
- import * as i2 from "./form/FormGridHeader.component";
4
- import * as i3 from "./form/FormGridBody.component";
5
- import * as i4 from "./form/FormGridFooter.component";
6
- import * as i5 from "./submission/SubmissionGridHeader.component";
7
- import * as i6 from "./submission/SubmissionGridBody.component";
8
- import * as i7 from "./submission/SubmissionGridFooter.component";
9
- import * as i8 from "./GridHeaderComponent";
10
- import * as i9 from "./GridBodyComponent";
11
- import * as i10 from "./GridFooterComponent";
12
- import * as i11 from "./form/time-since.pipe";
13
- import * as i12 from "@angular/common";
14
- import * as i13 from "@angular/forms";
15
- import * as i14 from "@formio/angular";
16
- import * as i15 from "@angular/router";
17
- import * as i16 from "ngx-bootstrap/pagination";
18
- export declare class FormioGrid {
19
- static ɵfac: i0.ɵɵFactoryDeclaration<FormioGrid, never>;
20
- static ɵmod: i0.ɵɵNgModuleDeclaration<FormioGrid, [typeof i1.FormioGridComponent, typeof i2.FormGridHeaderComponent, typeof i3.FormGridBodyComponent, typeof i4.FormGridFooterComponent, typeof i5.SubmissionGridHeaderComponent, typeof i6.SubmissionGridBodyComponent, typeof i7.SubmissionGridFooterComponent, typeof i8.GridHeaderComponent, typeof i9.GridBodyComponent, typeof i10.GridFooterComponent, typeof i11.TimeSince], [typeof i12.CommonModule, typeof i13.FormsModule, typeof i14.FormioModule, typeof i15.RouterModule, typeof i16.PaginationModule], [typeof i1.FormioGridComponent]>;
21
- static ɵinj: i0.ɵɵInjectorDeclaration<FormioGrid>;
22
- }
23
- //# sourceMappingURL=grid.module.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"grid.module.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/grid/src/grid.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAmBA,qBA6Ba,UAAU;yCAAV,UAAU;0CAAV,UAAU;0CAAV,UAAU;CAAG"}
@@ -1,10 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class GridService {
3
- rows: Array<any>;
4
- constructor();
5
- setRows(rows: any): void;
6
- getFormsPerPage(): number;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<GridService, never>;
8
- static ɵprov: i0.ɵɵInjectableDeclaration<GridService>;
9
- }
10
- //# sourceMappingURL=grid.service.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"grid.service.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/grid/src/grid.service.ts"],"names":[],"mappings":";AAGA,qBACa,WAAW;IACf,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;;IAGxB,OAAO,CAAC,IAAI,KAAA;IAIZ,eAAe;yCARJ,WAAW;6CAAX,WAAW;CAWvB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/grid/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC1E,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC1E,OAAO,EAAE,6BAA6B,EAAE,MAAM,6CAA6C,CAAC;AAC5F,OAAO,EAAE,2BAA2B,EAAE,MAAM,2CAA2C,CAAC;AACxF,OAAO,EAAE,6BAA6B,EAAE,MAAM,6CAA6C,CAAC;AAC5F,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC"}
@@ -1,19 +0,0 @@
1
- import { GridBodyComponent } from '../GridBodyComponent';
2
- import { FormioPromiseService } from '@formio/angular';
3
- import { GridHeader } from '../types/grid-header';
4
- import { FormioSubmission } from '@formio/angular';
5
- import * as i0 from "@angular/core";
6
- export declare class SubmissionGridBodyComponent extends GridBodyComponent {
7
- load(formio: FormioPromiseService, query?: any): Promise<any[]>;
8
- /**
9
- * Render the cell data.
10
- *
11
- * @param submission
12
- * @param header
13
- * @return any
14
- */
15
- view(submission: FormioSubmission, header: GridHeader): string;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionGridBodyComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionGridBodyComponent, "ng-component", never, {}, {}, never, never, false, never>;
18
- }
19
- //# sourceMappingURL=SubmissionGridBody.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SubmissionGridBody.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/submission/SubmissionGridBody.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAC,oBAAoB,EAAC,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAC,gBAAgB,EAAC,MAAM,iBAAiB,CAAC;;AACjD,qBAGa,2BAA4B,SAAQ,iBAAiB;IAChE,IAAI,CAAC,MAAM,EAAE,oBAAoB,EAAE,KAAK,CAAC,EAAE,GAAG;IAM9C;;;;;;OAMG;IACH,IAAI,CAAC,UAAU,EAAE,gBAAgB,EAAE,MAAM,EAAE,UAAU,GAAG,MAAM;yCAdnD,2BAA2B;2CAA3B,2BAA2B;CA6BvC"}
@@ -1,10 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { GridFooterComponent } from '../GridFooterComponent';
3
- import * as i0 from "@angular/core";
4
- export declare class SubmissionGridFooterComponent extends GridFooterComponent implements OnInit {
5
- constructor();
6
- ngOnInit(): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionGridFooterComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionGridFooterComponent, "ng-component", never, {}, {}, never, never, false, never>;
9
- }
10
- //# sourceMappingURL=SubmissionGridFooter.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SubmissionGridFooter.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/submission/SubmissionGridFooter.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,MAAM,EAAoB,MAAM,eAAe,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;;AAE7D,qBAKa,6BAA8B,SAAQ,mBAAoB,YAAW,MAAM;;IAMtF,QAAQ;yCANG,6BAA6B;2CAA7B,6BAA6B;CAWzC"}
@@ -1,30 +0,0 @@
1
- import { ExtendedComponentSchema } from 'formiojs';
2
- import { GridHeaderComponent } from '../GridHeaderComponent';
3
- import { FormioPromiseService } from '@formio/angular';
4
- import { ComponentInstance } from '@formio/angular';
5
- import { GridColumn } from '../types/grid-column';
6
- import { GridHeader, SortType } from '../types/grid-header';
7
- import * as i0 from "@angular/core";
8
- export declare class SubmissionGridHeaderComponent extends GridHeaderComponent {
9
- formComponents: Map<string, ExtendedComponentSchema>;
10
- load(formio: FormioPromiseService, query?: any, columns?: Array<GridColumn>): Promise<GridHeader[]>;
11
- setHeader(header: GridHeader): void;
12
- getHeaderForColumn(column: GridColumn, component?: ExtendedComponentSchema, sort?: SortType): {
13
- label: string;
14
- key: string;
15
- sort: SortType;
16
- component: ComponentInstance;
17
- renderCell: (cellValue: any, component?: ComponentInstance) => string;
18
- };
19
- getHeaderForComponent(component: ExtendedComponentSchema, path: string, sort?: SortType): {
20
- label: string;
21
- key: string;
22
- sort: SortType;
23
- component: ComponentInstance;
24
- };
25
- setComponentsHeaders(components: Map<string, ExtendedComponentSchema>, sort?: SortType): void;
26
- setComponents(components: any): void;
27
- static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionGridHeaderComponent, never>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionGridHeaderComponent, "ng-component", never, {}, {}, never, never, false, never>;
29
- }
30
- //# sourceMappingURL=SubmissionGridHeader.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SubmissionGridHeader.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/submission/SubmissionGridHeader.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,uBAAuB,EAAC,MAAM,UAAU,CAAC;AACpE,OAAO,EAAC,mBAAmB,EAAC,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAC,oBAAoB,EAAC,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAC,iBAAiB,EAAa,MAAM,iBAAiB,CAAC;AAC9D,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAC,UAAU,EAAE,QAAQ,EAAC,MAAM,sBAAsB,CAAC;;AAE1D,qBAGa,6BAA8B,SAAQ,mBAAmB;IAGpE,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,uBAAuB,CAAC,CAAC;IAErD,IAAI,CAAC,MAAM,EAAE,oBAAoB,EAAE,KAAK,CAAC,EAAE,GAAG,EAAE,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC;IAc3E,SAAS,CAAC,MAAM,EAAE,UAAU;IAI5B,kBAAkB,CAAC,MAAM,EAAE,UAAU,EAAE,SAAS,CAAC,EAAE,uBAAuB,EAAE,IAAI,CAAC,EAAE,QAAQ;;;;;;;IAU3F,qBAAqB,CAAC,SAAS,EAAE,uBAAuB,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,QAAQ;;;;;;IASvF,oBAAoB,CAAC,UAAU,EAAE,GAAG,CAAC,MAAM,EAAE,uBAAuB,CAAC,EAAE,IAAI,CAAC,EAAE,QAAQ;IAYtF,aAAa,CAAC,UAAU,KAAA;yCAtDb,6BAA6B;2CAA7B,6BAA6B;CA2DzC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/submission/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;;;;;;AACjF,wBAIE"}
@@ -1,7 +0,0 @@
1
- import { ComponentInstance } from '@formio/angular';
2
- export interface GridColumn {
3
- label?: string;
4
- path: string;
5
- renderCell?(cellValue: any, component?: ComponentInstance): string;
6
- }
7
- //# sourceMappingURL=grid-column.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"grid-column.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/types/grid-column.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAEpD,MAAM,WAAW,UAAU;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,CAAC,SAAS,EAAE,GAAG,EAAE,SAAS,CAAC,EAAE,iBAAiB,GAAG,MAAM,CAAC;CACpE"}
@@ -1,6 +0,0 @@
1
- export declare enum GridFooterPositions {
2
- bottom = 0,
3
- top = 1,
4
- both = 2
5
- }
6
- //# sourceMappingURL=grid-footer-positions.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"grid-footer-positions.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/types/grid-footer-positions.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC7B,MAAM,IAAA;IACN,GAAG,IAAA;IACH,IAAI,IAAA;CACL"}
@@ -1,13 +0,0 @@
1
- import { ComponentInstance } from '@formio/angular';
2
- export interface GridHeader {
3
- component?: ComponentInstance;
4
- key: string;
5
- sort?: SortType;
6
- label: string;
7
- renderCell?(cellValue: any, component?: ComponentInstance): string;
8
- }
9
- export declare enum SortType {
10
- ASC = "asc",
11
- DESC = "desc"
12
- }
13
- //# sourceMappingURL=grid-header.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"grid-header.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/types/grid-header.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,iBAAiB,EAAC,MAAM,iBAAiB,CAAC;AAElD,MAAM,WAAW,UAAU;IACzB,SAAS,CAAC,EAAE,iBAAiB,CAAC;IAC9B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,CAAC,SAAS,EAAE,GAAG,EAAE,SAAS,CAAC,EAAE,iBAAiB,GAAG,MAAM,CAAC;CACpE;AAED,oBAAY,QAAQ;IAClB,GAAG,QAAQ;IACX,IAAI,SAAS;CACd"}
package/index.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../projects/angular-formio/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,uBAAuB,CAAC;AACtC,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC"}
@@ -1,9 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { FormManagerEditComponent } from '../edit/edit.component';
3
- import * as i0 from "@angular/core";
4
- export declare class FormManagerCreateComponent extends FormManagerEditComponent implements OnInit {
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerCreateComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<FormManagerCreateComponent, "ng-component", never, {}, {}, never, never, false, never>;
8
- }
9
- //# sourceMappingURL=create.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"create.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/create/create.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;;AAElE,qBAGa,0BAA2B,SAAQ,wBAAyB,YAAW,MAAM;IACxF,QAAQ;yCADG,0BAA0B;2CAA1B,0BAA0B;CAItC"}
@@ -1,18 +0,0 @@
1
- import { FormManagerService } from '../form-manager.service';
2
- import { ActivatedRoute, Router } from '@angular/router';
3
- import { FormioAlerts } from '@formio/angular';
4
- import { GridService } from '@formio/angular/grid';
5
- import * as i0 from "@angular/core";
6
- export declare class FormManagerDeleteComponent {
7
- managerService: FormManagerService;
8
- router: Router;
9
- route: ActivatedRoute;
10
- alerts: FormioAlerts;
11
- gridService?: GridService;
12
- constructor(managerService: FormManagerService, router: Router, route: ActivatedRoute, alerts: FormioAlerts, gridService?: GridService);
13
- onDelete(): void;
14
- onCancel(): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerDeleteComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<FormManagerDeleteComponent, "ng-component", never, {}, {}, never, never, false, never>;
17
- }
18
- //# sourceMappingURL=delete.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"delete.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/delete/delete.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;;AAEnD,qBAGa,0BAA0B;IAE5B,cAAc,EAAE,kBAAkB;IAClC,MAAM,EAAE,MAAM;IACd,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,YAAY;IACpB,WAAW,CAAC,EAAE,WAAW;gBAJzB,cAAc,EAAE,kBAAkB,EAClC,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,YAAY,EACpB,WAAW,CAAC,EAAE,WAAW;IAGlC,QAAQ;IAeR,QAAQ;yCAxBG,0BAA0B;2CAA1B,0BAA0B;CA2BtC"}
@@ -1,31 +0,0 @@
1
- import { ElementRef, AfterViewInit, ChangeDetectorRef } from '@angular/core';
2
- import { FormManagerService } from '../form-manager.service';
3
- import { ActivatedRoute, Router } from '@angular/router';
4
- import { FormManagerConfig } from '../form-manager.config';
5
- import { FormioAlerts } from '@formio/angular';
6
- import { FormBuilderComponent } from '@formio/angular';
7
- import * as i0 from "@angular/core";
8
- export declare class FormManagerEditComponent implements AfterViewInit {
9
- service: FormManagerService;
10
- router: Router;
11
- route: ActivatedRoute;
12
- config: FormManagerConfig;
13
- ref: ChangeDetectorRef;
14
- alerts: FormioAlerts;
15
- builder: FormBuilderComponent;
16
- formTitle: ElementRef;
17
- formType: ElementRef;
18
- form: any;
19
- loading: Boolean;
20
- formReady: Boolean;
21
- editMode: Boolean;
22
- constructor(service: FormManagerService, router: Router, route: ActivatedRoute, config: FormManagerConfig, ref: ChangeDetectorRef, alerts: FormioAlerts);
23
- initBuilder(editing: any): Promise<boolean | void>;
24
- ngAfterViewInit(): void;
25
- onDisplaySelect(event: any): void;
26
- saveForm(): any;
27
- onSave(): any;
28
- static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerEditComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<FormManagerEditComponent, "ng-component", never, {}, {}, never, never, false, never>;
30
- }
31
- //# sourceMappingURL=edit.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"edit.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/edit/edit.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,UAAU,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AACnG,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;;AAGvD,qBAGa,wBAAyB,YAAW,aAAa;IAUnD,OAAO,EAAE,kBAAkB;IAC3B,MAAM,EAAE,MAAM;IACd,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,iBAAiB;IACzB,GAAG,EAAE,iBAAiB;IACtB,MAAM,EAAE,YAAY;IAdqB,OAAO,EAAE,oBAAoB,CAAC;IAC3C,SAAS,EAAE,UAAU,CAAC;IACvB,QAAQ,EAAE,UAAU,CAAC;IAClD,IAAI,EAAE,GAAG,CAAC;IACV,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;gBAGhB,OAAO,EAAE,kBAAkB,EAC3B,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,iBAAiB,EACzB,GAAG,EAAE,iBAAiB,EACtB,MAAM,EAAE,YAAY;IAQ7B,WAAW,CAAC,OAAO,KAAA;IAwBnB,eAAe;IAMf,eAAe,CAAC,KAAK,KAAA;IAIrB,QAAQ;IAgCR,MAAM;yCAzFK,wBAAwB;2CAAxB,wBAAwB;CAkGpC"}
@@ -1,29 +0,0 @@
1
- import { OnInit, TemplateRef } from '@angular/core';
2
- import { FormManagerService } from '../form-manager.service';
3
- import { FormManagerConfig } from '../form-manager.config';
4
- import { ActivatedRoute } from '@angular/router';
5
- import { FormioAppConfig } from '@formio/angular';
6
- import { BsModalService, BsModalRef } from 'ngx-bootstrap/modal';
7
- import * as i0 from "@angular/core";
8
- export declare class FormManagerFormComponent implements OnInit {
9
- service: FormManagerService;
10
- route: ActivatedRoute;
11
- appConfig: FormioAppConfig;
12
- options: FormManagerConfig;
13
- private modalService;
14
- choice: any;
15
- embedCode: any;
16
- shareUrl: any;
17
- projectId: any;
18
- pathName: any;
19
- goTo: any;
20
- modalRef: BsModalRef;
21
- constructor(service: FormManagerService, route: ActivatedRoute, appConfig: FormioAppConfig, options: FormManagerConfig, modalService: BsModalService);
22
- ngOnInit(): void;
23
- getShareUrl(): any;
24
- openEmbed(content: TemplateRef<any>): void;
25
- choices(string: any): void;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerFormComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<FormManagerFormComponent, "ng-component", never, {}, {}, never, never, false, never>;
28
- }
29
- //# sourceMappingURL=form.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/form/form.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;;AAEjE,qBAGa,wBAAyB,YAAW,MAAM;IAS5C,OAAO,EAAE,kBAAkB;IAC3B,KAAK,EAAE,cAAc;IACrB,SAAS,EAAE,eAAe;IAC1B,OAAO,EAAE,iBAAiB;IACjC,OAAO,CAAC,YAAY;IAZtB,MAAM,EAAE,GAAG,CAAW;IACtB,SAAS,EAAE,GAAG,CAAC;IACf,QAAQ,EAAE,GAAG,CAAC;IACd,SAAS,EAAE,GAAG,CAAC;IACf,QAAQ,EAAE,GAAG,CAAC;IACd,IAAI,EAAE,GAAG,CAAM;IACf,QAAQ,EAAE,UAAU,CAAC;gBAEZ,OAAO,EAAE,kBAAkB,EAC3B,KAAK,EAAE,cAAc,EACrB,SAAS,EAAE,eAAe,EAC1B,OAAO,EAAE,iBAAiB,EACzB,YAAY,EAAE,cAAc;IAGtC,QAAQ;IAUD,WAAW;IAMlB,SAAS,CAAC,OAAO,EAAE,WAAW,CAAC,GAAG,CAAC;IA2BnC,OAAO,CAAC,MAAM,KAAA;yCA3DH,wBAAwB;2CAAxB,wBAAwB;CA8DpC"}
@@ -1,30 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- type FormType = 'form' | 'resource';
3
- export interface FormManagerRouteConfig {
4
- formIndex?: any;
5
- formCreate?: any;
6
- form?: any;
7
- formView?: any;
8
- formEdit?: any;
9
- formEmbed?: any;
10
- formDelete?: any;
11
- submissionIndex?: any;
12
- submission?: any;
13
- submissionView?: any;
14
- submissionEdit?: any;
15
- submissionDelete?: any;
16
- }
17
- export declare class FormManagerConfig {
18
- tag: string;
19
- includeSearch: boolean;
20
- saveDraft: boolean;
21
- type: FormType;
22
- builder?: any;
23
- viewer?: string;
24
- renderer: any;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerConfig, never>;
26
- static ɵprov: i0.ɵɵInjectableDeclaration<FormManagerConfig>;
27
- }
28
- export declare const DefaultConfiguration: FormManagerConfig;
29
- export {};
30
- //# sourceMappingURL=form-manager.config.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-manager.config.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/form-manager.config.ts"],"names":[],"mappings":";AAEA,KAAK,QAAQ,GAAG,MAAM,GAAG,UAAU,CAAC;AAEpC,MAAM,WAAW,sBAAsB;IACrC,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,QAAQ,CAAC,EAAE,GAAG,CAAC;IACf,QAAQ,CAAC,EAAE,GAAG,CAAC;IACf,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,eAAe,CAAC,EAAE,GAAG,CAAC;IACtB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,cAAc,CAAC,EAAE,GAAG,CAAC;IACrB,cAAc,CAAC,EAAE,GAAG,CAAC;IACrB,gBAAgB,CAAC,EAAE,GAAG,CAAC;CACxB;AAED,qBACa,iBAAiB;IACrB,GAAG,SAAM;IACT,aAAa,UAAS;IACtB,SAAS,UAAS;IAClB,IAAI,EAAE,QAAQ,CAAU;IACxB,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,GAAG,CAAC;yCAPV,iBAAiB;6CAAjB,iBAAiB;CAQ7B;AAED,eAAO,MAAM,oBAAoB,mBAA0B,CAAC"}
@@ -1,28 +0,0 @@
1
- import { FormManagerRouteConfig } from './form-manager.config';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "./index/index.component";
4
- import * as i2 from "./create/create.component";
5
- import * as i3 from "./form/form.component";
6
- import * as i4 from "./view/view.component";
7
- import * as i5 from "./edit/edit.component";
8
- import * as i6 from "./delete/delete.component";
9
- import * as i7 from "./submission/submission/submission.component";
10
- import * as i8 from "./submission/edit/edit.component";
11
- import * as i9 from "./submission/delete/delete.component";
12
- import * as i10 from "./submission/view/view.component";
13
- import * as i11 from "./submission/index/index.component";
14
- import * as i12 from "@angular/common";
15
- import * as i13 from "@formio/angular";
16
- import * as i14 from "@angular/router";
17
- import * as i15 from "@angular/forms";
18
- import * as i16 from "@formio/angular/grid";
19
- import * as i17 from "ngx-bootstrap/modal";
20
- import * as i18 from "ngx-bootstrap/pagination";
21
- export declare class FormManagerModule {
22
- static forChild(config?: FormManagerRouteConfig): any;
23
- static forRoot(config?: FormManagerRouteConfig): any;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerModule, never>;
25
- static ɵmod: i0.ɵɵNgModuleDeclaration<FormManagerModule, [typeof i1.FormManagerIndexComponent, typeof i2.FormManagerCreateComponent, typeof i3.FormManagerFormComponent, typeof i4.FormManagerViewComponent, typeof i5.FormManagerEditComponent, typeof i6.FormManagerDeleteComponent, typeof i7.SubmissionComponent, typeof i8.SubmissionEditComponent, typeof i9.SubmissionDeleteComponent, typeof i10.SubmissionViewComponent, typeof i11.SubmissionIndexComponent], [typeof i12.CommonModule, typeof i13.FormioModule, typeof i14.RouterModule, typeof i15.FormsModule, typeof i16.FormioGrid, typeof i17.ModalModule, typeof i18.PaginationModule], never>;
26
- static ɵinj: i0.ɵɵInjectorDeclaration<FormManagerModule>;
27
- }
28
- //# sourceMappingURL=form-manager.module.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-manager.module.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/form-manager.module.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;;;;;;;;;;;;;;;;;;;;AAK/D,qBAwBa,iBAAiB;IAC5B,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,sBAAsB,GAAG,GAAG;IAGrD,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,sBAAsB,GAAG,GAAG;yCAJzC,iBAAiB;0CAAjB,iBAAiB;0CAAjB,iBAAiB;CAO7B"}
@@ -1,4 +0,0 @@
1
- import { Routes } from '@angular/router';
2
- import { FormManagerRouteConfig } from './form-manager.config';
3
- export declare function FormManagerRoutes(config?: FormManagerRouteConfig): Routes;
4
- //# sourceMappingURL=form-manager.routes.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-manager.routes.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/form-manager.routes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAYzC,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,wBAAgB,iBAAiB,CAAC,MAAM,CAAC,EAAE,sBAAsB,GAAG,MAAM,CA6DzE"}
@@ -1,37 +0,0 @@
1
- import { FormioAppConfig } from '@formio/angular';
2
- import { FormManagerConfig } from './form-manager.config';
3
- import { Formio } from 'formiojs';
4
- import { ActivatedRoute } from '@angular/router';
5
- import { FormioAuthService } from '@formio/angular/auth';
6
- import * as i0 from "@angular/core";
7
- export declare class FormManagerService {
8
- appConfig: FormioAppConfig;
9
- config: FormManagerConfig;
10
- auth: FormioAuthService;
11
- formio: Formio;
12
- access: any;
13
- allAccessMap: any;
14
- ownAccessMap: any;
15
- ready: Promise<any>;
16
- formReady: Promise<any>;
17
- actionAllowed: any;
18
- form: any;
19
- formSrc: string;
20
- perms: {
21
- delete: boolean;
22
- edit: boolean;
23
- };
24
- constructor(appConfig: FormioAppConfig, config: FormManagerConfig, auth: FormioAuthService);
25
- isActionAllowed(action: string): any;
26
- setAccess(): void;
27
- reset(route?: ActivatedRoute): void;
28
- hasAccess(roles: any): boolean;
29
- setForm(form: any): any;
30
- loadForm(): Promise<any>;
31
- setSubmission(route: ActivatedRoute): Promise<unknown>;
32
- submissionLoaded(submission: any): void;
33
- loadForms(): any;
34
- static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerService, never>;
35
- static ɵprov: i0.ɵɵInjectableDeclaration<FormManagerService>;
36
- }
37
- //# sourceMappingURL=form-manager.service.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-manager.service.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/form-manager.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;;AAGzD,qBACa,kBAAkB;IAapB,SAAS,EAAE,eAAe;IAC1B,MAAM,EAAE,iBAAiB;IACzB,IAAI,EAAE,iBAAiB;IAdzB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,GAAG,CAAC;IACZ,YAAY,EAAE,GAAG,CAAC;IAClB,YAAY,EAAE,GAAG,CAAC;IAClB,KAAK,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;IACxB,aAAa,EAAE,GAAG,CAAC;IACnB,IAAI,MAAQ;IACZ,OAAO,SAAM;IACb,KAAK;;;MAAgC;gBAGnC,SAAS,EAAE,eAAe,EAC1B,MAAM,EAAE,iBAAiB,EACzB,IAAI,EAAE,iBAAiB;IAqBhC,eAAe,CAAC,MAAM,EAAE,MAAM;IAI9B,SAAS;IAgET,KAAK,CAAC,KAAK,CAAC,EAAE,cAAc;IAe5B,SAAS,CAAC,KAAK,KAAA;IAOf,OAAO,CAAC,IAAI,EAAE,GAAG;IAyBjB,QAAQ;IAMR,aAAa,CAAC,KAAK,EAAE,cAAc;IASnC,gBAAgB,CAAC,UAAU,EAAE,GAAG;IAShC,SAAS;yCA/KE,kBAAkB;6CAAlB,kBAAkB;CAoL9B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"formio-angular-manager.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/formio-angular-manager.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,cAAc,SAAS,CAAC"}
@@ -1,28 +0,0 @@
1
- import { AfterViewInit, ElementRef, OnInit } from '@angular/core';
2
- import { Router, ActivatedRoute } from '@angular/router';
3
- import { FormManagerService } from '../form-manager.service';
4
- import { FormManagerConfig } from '../form-manager.config';
5
- import { FormioGridComponent } from '@formio/angular/grid';
6
- import * as i0 from "@angular/core";
7
- export declare class FormManagerIndexComponent implements OnInit, AfterViewInit {
8
- service: FormManagerService;
9
- route: ActivatedRoute;
10
- router: Router;
11
- config: FormManagerConfig;
12
- searchElement: ElementRef;
13
- formGrid: FormioGridComponent;
14
- gridQuery: any;
15
- onSearch: any;
16
- constructor(service: FormManagerService, route: ActivatedRoute, router: Router, config: FormManagerConfig);
17
- loadGrid(): void;
18
- ngOnInit(): void;
19
- ngAfterViewInit(): void;
20
- _onSearch(): void;
21
- clearSearch(): void;
22
- onAction(action: any): void;
23
- onSelect(row: any): void;
24
- onCreateItem(): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerIndexComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<FormManagerIndexComponent, "ng-component", never, {}, {}, never, never, false, never>;
27
- }
28
- //# sourceMappingURL=index.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/index/index.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAE,MAAM,EAAa,MAAM,eAAe,CAAC;AACxF,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAwB,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AACjF,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;;AAG3D,qBAIa,yBAA0B,YAAW,MAAM,EAAE,aAAa;IAM5D,OAAO,EAAE,kBAAkB;IAC3B,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,MAAM;IACd,MAAM,EAAE,iBAAiB;IARb,aAAa,EAAE,UAAU,CAAC;IACE,QAAQ,EAAE,mBAAmB,CAAC;IACxE,SAAS,EAAE,GAAG,CAAC;IACf,QAAQ,MAAC;gBAEP,OAAO,EAAE,kBAAkB,EAC3B,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,iBAAiB;IAUlC,QAAQ;IAQR,QAAQ;IAcR,eAAe,IAAI,IAAI;IAIvB,SAAS;IAeT,WAAW;IAgBX,QAAQ,CAAC,MAAM,EAAE,GAAG;IAKpB,QAAQ,CAAC,GAAG,EAAE,GAAG;IAIjB,YAAY;yCArFD,yBAAyB;2CAAzB,yBAAyB;CAwFrC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAC3E,OAAO,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AACjF,OAAO,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,oCAAoC,CAAC;AAC9E,OAAO,EAAE,mBAAmB,EAAE,MAAM,8CAA8C,CAAC;AACnF,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC"}
@@ -1,16 +0,0 @@
1
- import { FormManagerService } from '../../form-manager.service';
2
- import { ActivatedRoute, Router } from '@angular/router';
3
- import { FormioAlerts } from '@formio/angular';
4
- import * as i0 from "@angular/core";
5
- export declare class SubmissionDeleteComponent {
6
- service: FormManagerService;
7
- router: Router;
8
- route: ActivatedRoute;
9
- alerts: FormioAlerts;
10
- constructor(service: FormManagerService, router: Router, route: ActivatedRoute, alerts: FormioAlerts);
11
- onDelete(): void;
12
- onCancel(): void;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionDeleteComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionDeleteComponent, "ng-component", never, {}, {}, never, never, false, never>;
15
- }
16
- //# sourceMappingURL=delete.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"delete.component.d.ts","sourceRoot":"","sources":["../../../../../projects/angular-formio/manager/src/submission/delete/delete.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;;AAE/C,qBAGa,yBAAyB;IAE3B,OAAO,EAAE,kBAAkB;IAC3B,MAAM,EAAE,MAAM;IACd,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,YAAY;gBAHpB,OAAO,EAAE,kBAAkB,EAC3B,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,YAAY;IAG7B,QAAQ;IAMR,QAAQ;yCAdG,yBAAyB;2CAAzB,yBAAyB;CAiBrC"}
@@ -1,13 +0,0 @@
1
- import { FormManagerService } from '../../form-manager.service';
2
- import { ActivatedRoute, Router } from '@angular/router';
3
- import * as i0 from "@angular/core";
4
- export declare class SubmissionEditComponent {
5
- service: FormManagerService;
6
- router: Router;
7
- route: ActivatedRoute;
8
- constructor(service: FormManagerService, router: Router, route: ActivatedRoute);
9
- onSubmit(submission: any): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionEditComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionEditComponent, "ng-component", never, {}, {}, never, never, false, never>;
12
- }
13
- //# sourceMappingURL=edit.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"edit.component.d.ts","sourceRoot":"","sources":["../../../../../projects/angular-formio/manager/src/submission/edit/edit.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;;AAEzD,qBAGa,uBAAuB;IAEzB,OAAO,EAAE,kBAAkB;IAC3B,MAAM,EAAE,MAAM;IACd,KAAK,EAAE,cAAc;gBAFrB,OAAO,EAAE,kBAAkB,EAC3B,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,cAAc;IAG9B,QAAQ,CAAC,UAAU,KAAA;yCAPR,uBAAuB;2CAAvB,uBAAuB;CAUnC"}
@@ -1,13 +0,0 @@
1
- import { Router, ActivatedRoute } from '@angular/router';
2
- import { FormManagerService } from '../../form-manager.service';
3
- import * as i0 from "@angular/core";
4
- export declare class SubmissionIndexComponent {
5
- service: FormManagerService;
6
- route: ActivatedRoute;
7
- router: Router;
8
- constructor(service: FormManagerService, route: ActivatedRoute, router: Router);
9
- onSelect(row: any): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionIndexComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionIndexComponent, "ng-component", never, {}, {}, never, never, false, never>;
12
- }
13
- //# sourceMappingURL=index.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.component.d.ts","sourceRoot":"","sources":["../../../../../projects/angular-formio/manager/src/submission/index/index.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;;AAEhE,qBAGa,wBAAwB;IAE1B,OAAO,EAAE,kBAAkB;IAC3B,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,MAAM;gBAFd,OAAO,EAAE,kBAAkB,EAC3B,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM;IAGvB,QAAQ,CAAC,GAAG,EAAE,GAAG;yCAPN,wBAAwB;2CAAxB,wBAAwB;CAUpC"}
@@ -1,15 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { FormManagerService } from '../../form-manager.service';
3
- import { ActivatedRoute } from '@angular/router';
4
- import * as i0 from "@angular/core";
5
- export declare class SubmissionComponent implements OnInit {
6
- service: FormManagerService;
7
- route: ActivatedRoute;
8
- downloadUrl: string;
9
- constructor(service: FormManagerService, route: ActivatedRoute);
10
- setDownloadUrl(url: any): void;
11
- ngOnInit(): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionComponent, "ng-component", never, {}, {}, never, never, false, never>;
14
- }
15
- //# sourceMappingURL=submission.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"submission.component.d.ts","sourceRoot":"","sources":["../../../../../projects/angular-formio/manager/src/submission/submission/submission.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;;AAEjD,qBAGa,mBAAoB,YAAW,MAAM;IAGvC,OAAO,EAAE,kBAAkB;IAC3B,KAAK,EAAE,cAAc;IAHvB,WAAW,EAAE,MAAM,CAAC;gBAElB,OAAO,EAAE,kBAAkB,EAC3B,KAAK,EAAE,cAAc;IAG9B,cAAc,CAAC,GAAG,KAAA;IAIlB,QAAQ;yCAXG,mBAAmB;2CAAnB,mBAAmB;CAgB/B"}
@@ -1,9 +0,0 @@
1
- import { FormManagerService } from '../../form-manager.service';
2
- import * as i0 from "@angular/core";
3
- export declare class SubmissionViewComponent {
4
- service: FormManagerService;
5
- constructor(service: FormManagerService);
6
- static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionViewComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionViewComponent, "ng-component", never, {}, {}, never, never, false, never>;
8
- }
9
- //# sourceMappingURL=view.component.d.ts.map