@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,822 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Injectable, Component, ViewChild, EventEmitter, NgModule } from '@angular/core';
3
- import { Formio } from 'formiojs';
4
- import _intersection from 'lodash/intersection';
5
- import * as i3 from '@formio/angular';
6
- import { FormBuilderComponent, extendRouter, FormioModule } from '@formio/angular';
7
- import * as i3$1 from '@formio/angular/auth';
8
- import * as i4 from '@formio/angular/grid';
9
- import { FormioGridComponent, FormioGrid } from '@formio/angular/grid';
10
- import _, { debounce } from 'lodash';
11
- import * as i2 from '@angular/router';
12
- import { RouterModule } from '@angular/router';
13
- import * as i6 from '@angular/common';
14
- import { CommonModule } from '@angular/common';
15
- import * as i7 from '@angular/forms';
16
- import { FormsModule } from '@angular/forms';
17
- import * as i5 from 'ngx-bootstrap/modal';
18
- import { ModalModule } from 'ngx-bootstrap/modal';
19
- import * as i2$1 from 'ngx-bootstrap/pagination';
20
- import { PaginationModule } from 'ngx-bootstrap/pagination';
21
-
22
- class FormManagerConfig {
23
- tag = '';
24
- includeSearch = false;
25
- saveDraft = false;
26
- type = 'form';
27
- builder;
28
- viewer;
29
- renderer;
30
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerConfig, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
31
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerConfig });
32
- }
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerConfig, decorators: [{
34
- type: Injectable
35
- }] });
36
- const DefaultConfiguration = new FormManagerConfig();
37
-
38
- class FormManagerService {
39
- appConfig;
40
- config;
41
- auth;
42
- formio;
43
- access;
44
- allAccessMap;
45
- ownAccessMap;
46
- ready;
47
- formReady;
48
- actionAllowed;
49
- form = null;
50
- formSrc = '';
51
- perms = { delete: false, edit: false };
52
- constructor(appConfig, config, auth) {
53
- this.appConfig = appConfig;
54
- this.config = config;
55
- this.auth = auth;
56
- if (this.appConfig && this.appConfig.appUrl) {
57
- Formio.setBaseUrl(this.appConfig.apiUrl);
58
- Formio.setProjectUrl(this.appConfig.appUrl);
59
- }
60
- else {
61
- console.error('You must provide an AppConfig within your application!');
62
- }
63
- this.allAccessMap = {
64
- 'update_all': 'formEdit',
65
- 'delete_all': 'formDelete'
66
- };
67
- this.ownAccessMap = {
68
- 'update_own': 'formEdit',
69
- 'delete_own': 'formDelete'
70
- };
71
- this.actionAllowed = (action) => this.isActionAllowed(action);
72
- this.reset();
73
- }
74
- isActionAllowed(action) {
75
- return this.access[action];
76
- }
77
- setAccess() {
78
- this.access = {
79
- formCreate: true,
80
- formView: true,
81
- formSubmission: true,
82
- formEdit: true,
83
- formPermission: true,
84
- formDelete: true,
85
- projectSettings: true,
86
- userManagement: true
87
- };
88
- if (this.auth) {
89
- this.access = {
90
- formCreate: false,
91
- formView: false,
92
- formSubmission: false,
93
- formEdit: false,
94
- formPermission: false,
95
- formDelete: false,
96
- projectSettings: false,
97
- userManagement: false
98
- };
99
- this.ready = this.auth.ready.then(() => {
100
- let administrator = this.auth.roles["administrator"];
101
- let formbuilder = this.auth.roles["formbuilder"];
102
- let formadmin = this.auth.roles["formadmin"];
103
- if (this.auth.user && this.auth.user.roles) {
104
- this.auth.user.roles.forEach((roleId) => {
105
- if (administrator._id === roleId) {
106
- this.access.formCreate = true;
107
- this.access.formView = true;
108
- this.access.formSubmission = true;
109
- this.access.formEdit = true;
110
- this.access.formPermission = true;
111
- this.access.formDelete = true;
112
- this.access.projectSettings = true;
113
- this.access.userManagement = true;
114
- }
115
- else {
116
- if (formadmin && formadmin._id === roleId) {
117
- this.access.formCreate = this.auth.formAccess.create_all.includes(roleId);
118
- this.access.formEdit = this.auth.formAccess.update_all.includes(roleId);
119
- this.access.formPermission = this.auth.formAccess.update_all.includes(roleId);
120
- this.access.formDelete = this.auth.formAccess.delete_all.includes(roleId);
121
- this.access.formView = this.auth.formAccess.read_all.includes(roleId);
122
- this.access.formSubmission = this.auth.formAccess.read_all.includes(roleId);
123
- }
124
- if (formbuilder && formbuilder._id === roleId) {
125
- this.access.formCreate = this.auth.formAccess.create_all.includes(roleId);
126
- this.access.formEdit = this.auth.formAccess.update_all.includes(roleId);
127
- this.access.formPermission = this.auth.formAccess.update_all.includes(roleId);
128
- this.access.formDelete = this.auth.formAccess.delete_all.includes(roleId);
129
- this.access.formView = this.auth.formAccess.read_all.includes(roleId);
130
- }
131
- }
132
- });
133
- }
134
- });
135
- }
136
- else {
137
- this.ready = Promise.resolve(false);
138
- }
139
- }
140
- reset(route) {
141
- if (route) {
142
- route.params.subscribe(params => {
143
- if (params.id) {
144
- this.formio = new Formio(`${this.formio.formsUrl}/${params.id}`);
145
- }
146
- else {
147
- this.reset();
148
- }
149
- });
150
- }
151
- else {
152
- this.formio = new Formio(this.appConfig.appUrl);
153
- this.setAccess();
154
- }
155
- }
156
- hasAccess(roles) {
157
- if (!this.auth.user) {
158
- return false;
159
- }
160
- return !!_intersection(roles, this.auth.user.roles).length;
161
- }
162
- setForm(form) {
163
- this.form = form;
164
- this.formSrc = this.appConfig.appUrl + '/' + form.path;
165
- if (form.access) {
166
- // Check if they have access here.
167
- form.access.forEach(access => {
168
- // Check for all access.
169
- if (this.allAccessMap[access.type] && !this.access[this.allAccessMap[access.type]]) {
170
- this.access[this.allAccessMap[access.type]] = this.hasAccess(access.roles);
171
- }
172
- // Check for own access.
173
- if (this.auth && this.auth.user &&
174
- (form._id === this.auth.user._id) &&
175
- this.ownAccessMap[access.type] &&
176
- !this.access[this.ownAccessMap[access.type]]) {
177
- this.access[this.ownAccessMap[access.type]] = this.hasAccess(access.roles);
178
- }
179
- });
180
- }
181
- return form;
182
- }
183
- loadForm() {
184
- this.form = null;
185
- this.formReady = this.formio.loadForm().then(form => this.setForm(form));
186
- return this.formReady;
187
- }
188
- setSubmission(route) {
189
- return new Promise((resolve) => {
190
- route.params.subscribe(params => {
191
- this.formio = new Formio(`${this.formio.submissionsUrl}/${params.id}`);
192
- resolve(this.formio);
193
- });
194
- });
195
- }
196
- submissionLoaded(submission) {
197
- this.auth.ready.then(() => {
198
- this.formio.userPermissions(this.auth.user, this.form, submission).then((perms) => {
199
- this.perms.delete = perms.delete;
200
- this.perms.edit = perms.edit;
201
- });
202
- });
203
- }
204
- loadForms() {
205
- return this.formio.loadForms({ params: {
206
- tags: this.config.tag
207
- } });
208
- }
209
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerService, deps: [{ token: i3.FormioAppConfig }, { token: FormManagerConfig }, { token: i3$1.FormioAuthService }], target: i0.ɵɵFactoryTarget.Injectable });
210
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerService });
211
- }
212
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerService, decorators: [{
213
- type: Injectable
214
- }], ctorParameters: () => [{ type: i3.FormioAppConfig }, { type: FormManagerConfig }, { type: i3$1.FormioAuthService }] });
215
-
216
- class FormManagerIndexComponent {
217
- service;
218
- route;
219
- router;
220
- config;
221
- searchElement;
222
- formGrid;
223
- gridQuery;
224
- onSearch;
225
- constructor(service, route, router, config) {
226
- this.service = service;
227
- this.route = route;
228
- this.router = router;
229
- this.config = config;
230
- this.config = { ...DefaultConfiguration, ...this.config };
231
- this.gridQuery = { type: this.config.type, sort: 'title' };
232
- if (this.config.tag) {
233
- this.gridQuery.tags = this.config.tag;
234
- }
235
- this.onSearch = debounce(this._onSearch, 300);
236
- }
237
- loadGrid() {
238
- this.gridQuery = JSON.parse(localStorage.getItem('query')) || this.gridQuery;
239
- const currentPage = +localStorage.getItem('currentPage') || 0;
240
- this.formGrid
241
- .refreshGrid(this.gridQuery)
242
- .then(() => this.formGrid.setPage(currentPage - 1));
243
- }
244
- ngOnInit() {
245
- this.gridQuery = { type: this.config.type, sort: 'title' };
246
- if (this.config.tag) {
247
- this.gridQuery.tags = this.config.tag;
248
- }
249
- this.service.reset();
250
- this.service.ready.then(() => {
251
- this.loadGrid();
252
- this.formGrid.footer.pageChanged.subscribe(page => {
253
- localStorage.setItem('currentPage', page.page);
254
- });
255
- });
256
- }
257
- ngAfterViewInit() {
258
- this.searchElement.nativeElement.value = localStorage.getItem('searchInput') || '';
259
- }
260
- _onSearch() {
261
- const search = this.searchElement.nativeElement.value;
262
- if (search.length > 0) {
263
- this.gridQuery.skip = 0;
264
- this.gridQuery.title__regex = '/' + search + '/i';
265
- this.gridQuery.title__regex = '/' + search.trim() + '/i';
266
- }
267
- else {
268
- delete this.gridQuery.title__regex;
269
- }
270
- localStorage.setItem('query', JSON.stringify(this.gridQuery));
271
- localStorage.setItem('searchInput', search);
272
- this.formGrid.pageChanged({ page: 1, itemPerPage: this.gridQuery.limit });
273
- this.formGrid.refreshGrid(this.gridQuery);
274
- }
275
- clearSearch() {
276
- this.gridQuery = { type: this.config.type, sort: 'title' };
277
- if (this.config.tag) {
278
- this.gridQuery.tags = this.config.tag;
279
- }
280
- localStorage.removeItem('query');
281
- localStorage.removeItem('searchInput');
282
- localStorage.removeItem('currentPage');
283
- if (this.searchElement?.nativeElement) {
284
- this.searchElement.nativeElement.value = '';
285
- }
286
- this.formGrid.pageChanged({ page: 1 });
287
- this.formGrid.query = {};
288
- this.formGrid.refreshGrid(this.gridQuery);
289
- }
290
- onAction(action) {
291
- this.service.form = null; // Reset previous form data
292
- this.router.navigate([action.row._id, action.action], { relativeTo: this.route });
293
- }
294
- onSelect(row) {
295
- this.router.navigate([row._id], { relativeTo: this.route });
296
- }
297
- onCreateItem() {
298
- this.router.navigate(['create'], { relativeTo: this.route });
299
- }
300
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerIndexComponent, deps: [{ token: FormManagerService }, { token: i2.ActivatedRoute }, { token: i2.Router }, { token: FormManagerConfig }], target: i0.ɵɵFactoryTarget.Component });
301
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: FormManagerIndexComponent, selector: "ng-component", viewQueries: [{ propertyName: "searchElement", first: true, predicate: ["search"], descendants: true }, { propertyName: "formGrid", first: true, predicate: FormioGridComponent, descendants: true }], ngImport: i0, template: "<div role=\"search\" class=\"input-group mb-3\" *ngIf=\"config.includeSearch\">\n <input #search type=\"text\" (keyup)=\"onSearch()\" class=\"form-control\" placeholder=\"Search Forms\" aria-label=\"Search Forms\" aria-describedby=\"button-search\">\n <span *ngIf=\"search && search !== ''\" class=\"form-clear input-group-addon\" (click)=\"clearSearch()\"><span class=\"fa fa-times bi bi-x\"></span></span>\n</div>\n<formio-grid\n *ngIf=\"service.ready\"\n [formio]=\"service.formio\"\n [gridType]=\"'form'\"\n [query]=\"gridQuery\"\n [isActionAllowed]=\"service.actionAllowed\"\n (rowAction)=\"onAction($event)\"\n (rowSelect)=\"onSelect($event)\"\n (createItem)=\"onCreateItem()\"\n></formio-grid>\n", styles: [".form-clear{background:#cecece;border-radius:50%;bottom:8px;color:#0000004d;cursor:pointer;display:flex;justify-content:center;align-items:center;padding-bottom:2px;height:24px;position:absolute;right:10px;top:6px;width:24px;z-index:10}.form-clear .fa{font-size:16px;font-weight:500}\n"], dependencies: [{ kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i4.FormioGridComponent, selector: "formio-grid", inputs: ["footerPosition", "src", "items", "onForm", "query", "refresh", "columns", "gridType", "size", "components", "formio", "label", "createText", "isActionAllowed"], outputs: ["select", "rowSelect", "rowAction", "createItem", "error"] }] });
302
- }
303
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerIndexComponent, decorators: [{
304
- type: Component,
305
- args: [{ template: "<div role=\"search\" class=\"input-group mb-3\" *ngIf=\"config.includeSearch\">\n <input #search type=\"text\" (keyup)=\"onSearch()\" class=\"form-control\" placeholder=\"Search Forms\" aria-label=\"Search Forms\" aria-describedby=\"button-search\">\n <span *ngIf=\"search && search !== ''\" class=\"form-clear input-group-addon\" (click)=\"clearSearch()\"><span class=\"fa fa-times bi bi-x\"></span></span>\n</div>\n<formio-grid\n *ngIf=\"service.ready\"\n [formio]=\"service.formio\"\n [gridType]=\"'form'\"\n [query]=\"gridQuery\"\n [isActionAllowed]=\"service.actionAllowed\"\n (rowAction)=\"onAction($event)\"\n (rowSelect)=\"onSelect($event)\"\n (createItem)=\"onCreateItem()\"\n></formio-grid>\n", styles: [".form-clear{background:#cecece;border-radius:50%;bottom:8px;color:#0000004d;cursor:pointer;display:flex;justify-content:center;align-items:center;padding-bottom:2px;height:24px;position:absolute;right:10px;top:6px;width:24px;z-index:10}.form-clear .fa{font-size:16px;font-weight:500}\n"] }]
306
- }], ctorParameters: () => [{ type: FormManagerService }, { type: i2.ActivatedRoute }, { type: i2.Router }, { type: FormManagerConfig }], propDecorators: { searchElement: [{
307
- type: ViewChild,
308
- args: ['search']
309
- }], formGrid: [{
310
- type: ViewChild,
311
- args: [FormioGridComponent, { static: false }]
312
- }] } });
313
-
314
- class FormManagerEditComponent {
315
- service;
316
- router;
317
- route;
318
- config;
319
- ref;
320
- alerts;
321
- builder;
322
- formTitle;
323
- formType;
324
- form;
325
- loading;
326
- formReady;
327
- editMode;
328
- constructor(service, router, route, config, ref, alerts) {
329
- this.service = service;
330
- this.router = router;
331
- this.route = route;
332
- this.config = config;
333
- this.ref = ref;
334
- this.alerts = alerts;
335
- this.form = { components: [] };
336
- this.formReady = false;
337
- this.loading = false;
338
- this.editMode = false;
339
- }
340
- initBuilder(editing) {
341
- if (editing) {
342
- this.loading = true;
343
- this.editMode = true;
344
- return this.service.formReady.then(() => {
345
- this.form = this.service.form;
346
- this.formTitle.nativeElement.value = this.service.form.title;
347
- this.formType.nativeElement.value = this.service.form.display || 'form';
348
- this.formReady = true;
349
- this.loading = false;
350
- this.ref.detectChanges();
351
- return true;
352
- }).catch(err => {
353
- this.alerts.setAlert({ type: 'danger', message: (err.message || err) });
354
- this.loading = false;
355
- this.ref.detectChanges();
356
- this.formReady = true;
357
- });
358
- }
359
- else {
360
- this.formReady = true;
361
- return Promise.resolve(true);
362
- }
363
- }
364
- ngAfterViewInit() {
365
- this.route.url.subscribe(url => {
366
- setTimeout(() => this.initBuilder((url[0].path === 'edit')), 0);
367
- });
368
- }
369
- onDisplaySelect(event) {
370
- this.builder.setDisplay(event.target.value);
371
- }
372
- saveForm() {
373
- this.loading = true;
374
- this.form = _.cloneDeep(this.builder.formio.schema);
375
- this.form.title = this.formTitle.nativeElement.value.trim();
376
- this.form.display = this.formType.nativeElement.value;
377
- if (this.config.tag) {
378
- this.form.tags = this.form.tags || [];
379
- this.form.tags.push(this.config.tag);
380
- this.form.tags = _.uniq(this.form.tags);
381
- }
382
- if (this.config.type) {
383
- this.form.type = this.config.type;
384
- }
385
- if (!this.form._id) {
386
- this.form.name = _.camelCase(this.form.title).toLowerCase();
387
- this.form.path = this.form.name;
388
- }
389
- return this.service.formio.saveForm(this.form).then(form => {
390
- this.form = this.service.setForm(form);
391
- this.loading = false;
392
- return this.form;
393
- }).catch(err => {
394
- this.loading = false;
395
- // Catch if a form is returned as an error. This is a conflict.
396
- if (err._id && err.type) {
397
- throw err;
398
- }
399
- this.alerts.setAlert({ type: 'danger', message: (err.message || err) });
400
- });
401
- }
402
- onSave() {
403
- return this.saveForm().then((form) => {
404
- if (this.editMode) {
405
- this.router.navigate(['../', 'view'], { relativeTo: this.route });
406
- }
407
- else {
408
- this.router.navigate(['../', form._id, 'view'], { relativeTo: this.route });
409
- }
410
- });
411
- }
412
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerEditComponent, deps: [{ token: FormManagerService }, { token: i2.Router }, { token: i2.ActivatedRoute }, { token: FormManagerConfig }, { token: i0.ChangeDetectorRef }, { token: i3.FormioAlerts }], target: i0.ɵɵFactoryTarget.Component });
413
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: FormManagerEditComponent, selector: "ng-component", viewQueries: [{ propertyName: "builder", first: true, predicate: FormBuilderComponent, descendants: true }, { propertyName: "formTitle", first: true, predicate: ["title"], descendants: true }, { propertyName: "formType", first: true, predicate: ["type"], descendants: true }], ngImport: i0, template: "<div class=\"loader\" *ngIf=\"loading\"></div>\n<div class=\"form-group row mb-2\">\n <div class=\"col-sm-8\">\n <input type=\"text\" class=\"form-control\" id=\"formTitle\" placeholder=\"Enter a Title\" #title>\n </div>\n <div class=\"col-sm-2\">\n <select class=\"form-control\" id=\"formSelect\" (change)=\"onDisplaySelect($event)\" #type>\n <option value=\"form\">Form</option>\n <option value=\"wizard\">Wizard</option>\n <option value=\"pdf\">PDF</option>\n </select>\n </div>\n <div class=\"col-sm-2\">\n <button class=\"btn btn-primary btn-block\" (click)=\"onSave()\"><i class=\"bi bi-save me-2\"></i>Save Form</button>\n </div>\n</div>\n<formio-alerts [alerts]=\"alerts\"></formio-alerts>\n<form-builder *ngIf=\"formReady\" [formbuilder]=\"config.builder\" [form]=\"form\" #builder></form-builder>\n<button class=\"btn btn-primary\" style=\"margin-top: 10px;\" (click)=\"onSave()\">Save Form</button>\n", dependencies: [{ kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.FormBuilderComponent, selector: "form-builder", inputs: ["form", "options", "formbuilder", "noeval", "refresh", "rebuild"], outputs: ["change"] }, { kind: "component", type: i3.FormioAlertsComponent, selector: "formio-alerts", inputs: ["alerts"], outputs: ["focusComponent"] }, { kind: "directive", type: i7.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i7.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }] });
414
- }
415
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerEditComponent, decorators: [{
416
- type: Component,
417
- args: [{ template: "<div class=\"loader\" *ngIf=\"loading\"></div>\n<div class=\"form-group row mb-2\">\n <div class=\"col-sm-8\">\n <input type=\"text\" class=\"form-control\" id=\"formTitle\" placeholder=\"Enter a Title\" #title>\n </div>\n <div class=\"col-sm-2\">\n <select class=\"form-control\" id=\"formSelect\" (change)=\"onDisplaySelect($event)\" #type>\n <option value=\"form\">Form</option>\n <option value=\"wizard\">Wizard</option>\n <option value=\"pdf\">PDF</option>\n </select>\n </div>\n <div class=\"col-sm-2\">\n <button class=\"btn btn-primary btn-block\" (click)=\"onSave()\"><i class=\"bi bi-save me-2\"></i>Save Form</button>\n </div>\n</div>\n<formio-alerts [alerts]=\"alerts\"></formio-alerts>\n<form-builder *ngIf=\"formReady\" [formbuilder]=\"config.builder\" [form]=\"form\" #builder></form-builder>\n<button class=\"btn btn-primary\" style=\"margin-top: 10px;\" (click)=\"onSave()\">Save Form</button>\n" }]
418
- }], ctorParameters: () => [{ type: FormManagerService }, { type: i2.Router }, { type: i2.ActivatedRoute }, { type: FormManagerConfig }, { type: i0.ChangeDetectorRef }, { type: i3.FormioAlerts }], propDecorators: { builder: [{
419
- type: ViewChild,
420
- args: [FormBuilderComponent, { static: false }]
421
- }], formTitle: [{
422
- type: ViewChild,
423
- args: ['title', { static: false }]
424
- }], formType: [{
425
- type: ViewChild,
426
- args: ['type', { static: false }]
427
- }] } });
428
-
429
- class FormManagerCreateComponent extends FormManagerEditComponent {
430
- ngOnInit() {
431
- this.service.reset();
432
- }
433
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerCreateComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
434
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: FormManagerCreateComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: "<div class=\"loader\" *ngIf=\"loading\"></div>\n<div class=\"form-group row mb-2\">\n <div class=\"col-sm-8\">\n <input type=\"text\" class=\"form-control\" id=\"formTitle\" placeholder=\"Enter a Title\" #title>\n </div>\n <div class=\"col-sm-2\">\n <select class=\"form-control\" id=\"formSelect\" (change)=\"onDisplaySelect($event)\" #type>\n <option value=\"form\">Form</option>\n <option value=\"wizard\">Wizard</option>\n <option value=\"pdf\">PDF</option>\n </select>\n </div>\n <div class=\"col-sm-2\">\n <button class=\"btn btn-primary btn-block\" (click)=\"onSave()\"><i class=\"bi bi-save me-2\"></i>Save Form</button>\n </div>\n</div>\n<formio-alerts [alerts]=\"alerts\"></formio-alerts>\n<form-builder *ngIf=\"formReady\" [formbuilder]=\"config.builder\" [form]=\"form\" #builder></form-builder>\n<button class=\"btn btn-primary\" style=\"margin-top: 10px;\" (click)=\"onSave()\">Save Form</button>\n", dependencies: [{ kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.FormBuilderComponent, selector: "form-builder", inputs: ["form", "options", "formbuilder", "noeval", "refresh", "rebuild"], outputs: ["change"] }, { kind: "component", type: i3.FormioAlertsComponent, selector: "formio-alerts", inputs: ["alerts"], outputs: ["focusComponent"] }, { kind: "directive", type: i7.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i7.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }] });
435
- }
436
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerCreateComponent, decorators: [{
437
- type: Component,
438
- args: [{ template: "<div class=\"loader\" *ngIf=\"loading\"></div>\n<div class=\"form-group row mb-2\">\n <div class=\"col-sm-8\">\n <input type=\"text\" class=\"form-control\" id=\"formTitle\" placeholder=\"Enter a Title\" #title>\n </div>\n <div class=\"col-sm-2\">\n <select class=\"form-control\" id=\"formSelect\" (change)=\"onDisplaySelect($event)\" #type>\n <option value=\"form\">Form</option>\n <option value=\"wizard\">Wizard</option>\n <option value=\"pdf\">PDF</option>\n </select>\n </div>\n <div class=\"col-sm-2\">\n <button class=\"btn btn-primary btn-block\" (click)=\"onSave()\"><i class=\"bi bi-save me-2\"></i>Save Form</button>\n </div>\n</div>\n<formio-alerts [alerts]=\"alerts\"></formio-alerts>\n<form-builder *ngIf=\"formReady\" [formbuilder]=\"config.builder\" [form]=\"form\" #builder></form-builder>\n<button class=\"btn btn-primary\" style=\"margin-top: 10px;\" (click)=\"onSave()\">Save Form</button>\n" }]
439
- }] });
440
-
441
- class FormManagerFormComponent {
442
- service;
443
- route;
444
- appConfig;
445
- options;
446
- modalService;
447
- choice = 'isUrl';
448
- embedCode;
449
- shareUrl;
450
- projectId;
451
- pathName;
452
- goTo = '';
453
- modalRef;
454
- constructor(service, route, appConfig, options, modalService) {
455
- this.service = service;
456
- this.route = route;
457
- this.appConfig = appConfig;
458
- this.options = options;
459
- this.modalService = modalService;
460
- }
461
- ngOnInit() {
462
- this.service.reset(this.route);
463
- this.service.loadForm().then(form => {
464
- this.service.formSrc = this.appConfig.appUrl + '/' + form.path;
465
- this.projectId = form.project;
466
- this.pathName = form.path;
467
- this.getShareUrl();
468
- });
469
- }
470
- getShareUrl() {
471
- const src = this.appConfig.appUrl + '/' + this.pathName;
472
- this.shareUrl = `${this.options.viewer}/#/?src=${encodeURIComponent(src)}`;
473
- return this.shareUrl;
474
- }
475
- openEmbed(content) {
476
- let goto = '';
477
- if (this.goTo) {
478
- goto += `if (d && d.formSubmission && d.formSubmission._id) { window.location.href = "${this.goTo}";}`;
479
- }
480
- let embedCode = '<script type="text/javascript">';
481
- embedCode += '(function a(d, w, u) {';
482
- embedCode += 'var h = d.getElementsByTagName("head")[0];';
483
- embedCode += 'var s = d.createElement("script");';
484
- embedCode += 's.type = "text/javascript";';
485
- embedCode += 's.src = "' + this.options.viewer + '/assets/lib/seamless/seamless.parent.min.js";';
486
- embedCode += 's.onload = function b() {';
487
- embedCode += 'var f = d.getElementById("formio-form-' + this.service.formio.formId + '");';
488
- embedCode += 'if (!f || (typeof w.seamless === u)) {';
489
- embedCode += 'return setTimeout(b, 100);';
490
- embedCode += '}';
491
- embedCode += 'w.seamless(f, {fallback:false}).receive(function(d, e) {' + goto + '});';
492
- embedCode += '};';
493
- embedCode += 'h.appendChild(s);';
494
- embedCode += '})(document, window);';
495
- embedCode += '</script>';
496
- embedCode += '<iframe id="formio-form-' + this.service.formio.formId + '" ';
497
- embedCode += 'style="width:100%;border:none;" height="800px" src="' + this.shareUrl + '&iframe=1"></iframe>';
498
- this.embedCode = embedCode;
499
- this.modalRef = this.modalService.show(content, { class: 'modal-lg' });
500
- }
501
- choices(string) {
502
- this.choice = string;
503
- }
504
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerFormComponent, deps: [{ token: FormManagerService }, { token: i2.ActivatedRoute }, { token: i3.FormioAppConfig }, { token: FormManagerConfig }, { token: i5.BsModalService }], target: i0.ɵɵFactoryTarget.Component });
505
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: FormManagerFormComponent, selector: "ng-component", ngImport: i0, template: "<button *ngIf=\"options.viewer\" class=\"float-end btn btn-outline-primary\" (click)=\"openEmbed(content)\"><em class=\"fa fa-share-alt bi bi-share\"></em> Share</button>\n<ul class=\"nav nav-tabs mb-2\">\n <li class=\"nav-item\"><a class=\"nav-link\" routerLink=\"../\"><em class=\"fa fa-chevron-left bi bi-chevron-left\"></em></a></li>\n <li class=\"nav-item\" routerLinkActive=\"active\"><a class=\"nav-link\" routerLink=\"view\" routerLinkActive=\"active\"><em class=\"fa fa-pencil bi bi-pencil\"></em> Enter Data</a></li>\n <li class=\"nav-item\" routerLinkActive=\"active\"><a class=\"nav-link\" routerLink=\"submission\" routerLinkActive=\"active\"><em class=\"fa fa-list-alt bi bi-table\"></em> View Data</a></li>\n <li *ngIf=\"service.actionAllowed('formEdit')\" class=\"nav-item\" routerLinkActive=\"active\"><a class=\"nav-link\" routerLink=\"edit\" routerLinkActive=\"active\"><em class=\"fa fa-edit bi bi-pencil-square\"></em> Edit Form</a></li>\n <li *ngIf=\"service.actionAllowed('formDelete')\" class=\"nav-item\" routerLinkActive=\"active\"><a class=\"nav-link\" routerLink=\"delete\" routerLinkActive=\"active\"><span class=\"fa fa-trash bi bi-trash\"></span></a></li>\n</ul>\n<router-outlet></router-outlet>\n<ng-template #content>\n <div class=\"modal-header\">\n <h4 class=\"modal-title\">Share or Embed this form</h4>\n <button type=\"button\" class=\"close\" aria-label=\"Close\" (click)=\"modalRef.hide()\">\n <span aria-hidden=\"true\">&times;</span>\n </button>\n </div>\n <div class=\"modal-body\">\n <ul class=\"nav nav-tabs mr-auto mb-2\">\n <li class=\"nav-item\">\n <a class=\"nav-link\" [ngClass]=\"{'active': choice === 'isUrl'}\" (click)=\"choices('isUrl')\"><em class=\"fa fa-link bi bi-link\"></em> URL</a>\n </li>\n <li class=\"nav-item\">\n <a class=\"nav-link\" [ngClass]=\"{'active': choice === 'isEmbed'}\" (click)=\"choices('isEmbed')\"><em class=\"fa fa-code bi bi-code-slash\"></em> Embed</a>\n </li>\n </ul>\n <pre *ngIf=\"choice === 'isEmbed'\"><textarea onclick=\"this.focus();this.select()\" readonly=\"readonly\" style=\"width:100%;\" rows=\"8\" [ngModel]=\"embedCode\"></textarea></pre>\n <input *ngIf=\"choice === 'isUrl'\" type=\"text\" onclick=\"this.focus();this.select()\" readonly=\"readonly\" class=\"form-control\" [ngModel]=\"shareUrl\" placeholder=\"https://examples.form.io/example\">\n </div>\n <div class=\"modal-footer\">\n <button type=\"button\" class=\"btn btn-light\" (click)=\"modalRef.hide()\">Close</button>\n </div>\n</ng-template>\n", dependencies: [{ kind: "directive", type: i6.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i2.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i2.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "directive", type: i7.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i7.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i7.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
506
- }
507
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerFormComponent, decorators: [{
508
- type: Component,
509
- args: [{ template: "<button *ngIf=\"options.viewer\" class=\"float-end btn btn-outline-primary\" (click)=\"openEmbed(content)\"><em class=\"fa fa-share-alt bi bi-share\"></em> Share</button>\n<ul class=\"nav nav-tabs mb-2\">\n <li class=\"nav-item\"><a class=\"nav-link\" routerLink=\"../\"><em class=\"fa fa-chevron-left bi bi-chevron-left\"></em></a></li>\n <li class=\"nav-item\" routerLinkActive=\"active\"><a class=\"nav-link\" routerLink=\"view\" routerLinkActive=\"active\"><em class=\"fa fa-pencil bi bi-pencil\"></em> Enter Data</a></li>\n <li class=\"nav-item\" routerLinkActive=\"active\"><a class=\"nav-link\" routerLink=\"submission\" routerLinkActive=\"active\"><em class=\"fa fa-list-alt bi bi-table\"></em> View Data</a></li>\n <li *ngIf=\"service.actionAllowed('formEdit')\" class=\"nav-item\" routerLinkActive=\"active\"><a class=\"nav-link\" routerLink=\"edit\" routerLinkActive=\"active\"><em class=\"fa fa-edit bi bi-pencil-square\"></em> Edit Form</a></li>\n <li *ngIf=\"service.actionAllowed('formDelete')\" class=\"nav-item\" routerLinkActive=\"active\"><a class=\"nav-link\" routerLink=\"delete\" routerLinkActive=\"active\"><span class=\"fa fa-trash bi bi-trash\"></span></a></li>\n</ul>\n<router-outlet></router-outlet>\n<ng-template #content>\n <div class=\"modal-header\">\n <h4 class=\"modal-title\">Share or Embed this form</h4>\n <button type=\"button\" class=\"close\" aria-label=\"Close\" (click)=\"modalRef.hide()\">\n <span aria-hidden=\"true\">&times;</span>\n </button>\n </div>\n <div class=\"modal-body\">\n <ul class=\"nav nav-tabs mr-auto mb-2\">\n <li class=\"nav-item\">\n <a class=\"nav-link\" [ngClass]=\"{'active': choice === 'isUrl'}\" (click)=\"choices('isUrl')\"><em class=\"fa fa-link bi bi-link\"></em> URL</a>\n </li>\n <li class=\"nav-item\">\n <a class=\"nav-link\" [ngClass]=\"{'active': choice === 'isEmbed'}\" (click)=\"choices('isEmbed')\"><em class=\"fa fa-code bi bi-code-slash\"></em> Embed</a>\n </li>\n </ul>\n <pre *ngIf=\"choice === 'isEmbed'\"><textarea onclick=\"this.focus();this.select()\" readonly=\"readonly\" style=\"width:100%;\" rows=\"8\" [ngModel]=\"embedCode\"></textarea></pre>\n <input *ngIf=\"choice === 'isUrl'\" type=\"text\" onclick=\"this.focus();this.select()\" readonly=\"readonly\" class=\"form-control\" [ngModel]=\"shareUrl\" placeholder=\"https://examples.form.io/example\">\n </div>\n <div class=\"modal-footer\">\n <button type=\"button\" class=\"btn btn-light\" (click)=\"modalRef.hide()\">Close</button>\n </div>\n</ng-template>\n" }]
510
- }], ctorParameters: () => [{ type: FormManagerService }, { type: i2.ActivatedRoute }, { type: i3.FormioAppConfig }, { type: FormManagerConfig }, { type: i5.BsModalService }] });
511
-
512
- class FormManagerViewComponent {
513
- service;
514
- router;
515
- route;
516
- config;
517
- auth;
518
- submission;
519
- renderOptions;
520
- onSuccess = new EventEmitter();
521
- onError = new EventEmitter();
522
- onSubmitDone = new EventEmitter();
523
- constructor(service, router, route, config, auth) {
524
- this.service = service;
525
- this.router = router;
526
- this.route = route;
527
- this.config = config;
528
- this.auth = auth;
529
- this.renderOptions = {
530
- saveDraft: this.config.saveDraft
531
- };
532
- this.submission = { data: {} };
533
- }
534
- ngOnInit() {
535
- this.service.formio = new Formio(this.service.formio.formUrl);
536
- }
537
- onSubmit(submission) {
538
- const isDraft = submission.state === 'draft';
539
- this.submission.data = submission.data;
540
- this.submission.state = isDraft ? submission.state : 'complete';
541
- this.service.formio.saveSubmission(this.submission).then(saved => {
542
- this.onSubmitDone.emit(saved);
543
- this.onSuccess.emit();
544
- this.router.navigate(['../', 'submission', saved._id], { relativeTo: this.route });
545
- }).catch((err) => this.onError.emit(err));
546
- }
547
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerViewComponent, deps: [{ token: FormManagerService }, { token: i2.Router }, { token: i2.ActivatedRoute }, { token: FormManagerConfig }, { token: i3$1.FormioAuthService }], target: i0.ɵɵFactoryTarget.Component });
548
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: FormManagerViewComponent, selector: "ng-component", ngImport: i0, template: "<formio *ngIf=\"service.form\"\n [renderer]=\"config.renderer\"\n [renderOptions]=\"renderOptions\"\n [url]=\"service.formio.formUrl\"\n [form]=\"service.form\"\n [submission]=\"submission\"\n [success]=\"onSuccess\"\n [submitDone]=\"onSubmitDone\"\n [error]=\"onError\"\n (submit)=\"onSubmit($event)\"\n></formio>\n", dependencies: [{ kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.FormioComponent, selector: "formio" }] });
549
- }
550
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerViewComponent, decorators: [{
551
- type: Component,
552
- args: [{ template: "<formio *ngIf=\"service.form\"\n [renderer]=\"config.renderer\"\n [renderOptions]=\"renderOptions\"\n [url]=\"service.formio.formUrl\"\n [form]=\"service.form\"\n [submission]=\"submission\"\n [success]=\"onSuccess\"\n [submitDone]=\"onSubmitDone\"\n [error]=\"onError\"\n (submit)=\"onSubmit($event)\"\n></formio>\n" }]
553
- }], ctorParameters: () => [{ type: FormManagerService }, { type: i2.Router }, { type: i2.ActivatedRoute }, { type: FormManagerConfig }, { type: i3$1.FormioAuthService }] });
554
-
555
- class FormManagerDeleteComponent {
556
- managerService;
557
- router;
558
- route;
559
- alerts;
560
- gridService;
561
- constructor(managerService, router, route, alerts, gridService) {
562
- this.managerService = managerService;
563
- this.router = router;
564
- this.route = route;
565
- this.alerts = alerts;
566
- this.gridService = gridService;
567
- }
568
- onDelete() {
569
- this.managerService.formio.deleteForm().then(() => {
570
- if (this.gridService) {
571
- const currentPage = +localStorage.getItem('currentPage') || 0;
572
- const formsNumberPerPage = this.gridService.getFormsPerPage();
573
- if (formsNumberPerPage === 1 && currentPage !== 0) {
574
- localStorage.setItem('currentPage', `${currentPage - 1}`);
575
- }
576
- }
577
- this.router.navigate(['../../'], { relativeTo: this.route });
578
- }).catch(err => this.alerts.setAlert({ type: 'danger', message: (err.message || err) }));
579
- }
580
- onCancel() {
581
- this.router.navigate(['../', 'view'], { relativeTo: this.route });
582
- }
583
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerDeleteComponent, deps: [{ token: FormManagerService }, { token: i2.Router }, { token: i2.ActivatedRoute }, { token: i3.FormioAlerts }, { token: i4.GridService }], target: i0.ɵɵFactoryTarget.Component });
584
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: FormManagerDeleteComponent, selector: "ng-component", ngImport: i0, template: "<formio-alerts [alerts]=\"alerts\"></formio-alerts>\n<h3>Are you sure you wish to delete this form?</h3>\n<div class=\"btn-toolbar\">\n <button type=\"button\" (click)=\"onDelete()\" class=\"btn btn-danger\" style=\"margin-right: 10px;\">Yes</button>\n <button type=\"button\" (click)=\"onCancel()\" class=\"btn btn-default\">No</button>\n</div>\n", dependencies: [{ kind: "component", type: i3.FormioAlertsComponent, selector: "formio-alerts", inputs: ["alerts"], outputs: ["focusComponent"] }] });
585
- }
586
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerDeleteComponent, decorators: [{
587
- type: Component,
588
- args: [{ template: "<formio-alerts [alerts]=\"alerts\"></formio-alerts>\n<h3>Are you sure you wish to delete this form?</h3>\n<div class=\"btn-toolbar\">\n <button type=\"button\" (click)=\"onDelete()\" class=\"btn btn-danger\" style=\"margin-right: 10px;\">Yes</button>\n <button type=\"button\" (click)=\"onCancel()\" class=\"btn btn-default\">No</button>\n</div>\n" }]
589
- }], ctorParameters: () => [{ type: FormManagerService }, { type: i2.Router }, { type: i2.ActivatedRoute }, { type: i3.FormioAlerts }, { type: i4.GridService }] });
590
-
591
- class SubmissionEditComponent {
592
- service;
593
- router;
594
- route;
595
- constructor(service, router, route) {
596
- this.service = service;
597
- this.router = router;
598
- this.route = route;
599
- }
600
- onSubmit(submission) {
601
- this.router.navigate(['../../'], { relativeTo: this.route });
602
- }
603
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SubmissionEditComponent, deps: [{ token: FormManagerService }, { token: i2.Router }, { token: i2.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
604
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: SubmissionEditComponent, selector: "ng-component", ngImport: i0, template: "<formio\n [renderer]=\"service.config.renderer\"\n [src]=\"service.formio.submissionUrl\"\n (submit)=\"onSubmit($event)\"\n (formLoad)=\"service.setForm($event)\"\n (submissionLoad)=\"service.submissionLoaded($event)\"\n></formio>\n", dependencies: [{ kind: "component", type: i3.FormioComponent, selector: "formio" }] });
605
- }
606
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SubmissionEditComponent, decorators: [{
607
- type: Component,
608
- args: [{ template: "<formio\n [renderer]=\"service.config.renderer\"\n [src]=\"service.formio.submissionUrl\"\n (submit)=\"onSubmit($event)\"\n (formLoad)=\"service.setForm($event)\"\n (submissionLoad)=\"service.submissionLoaded($event)\"\n></formio>\n" }]
609
- }], ctorParameters: () => [{ type: FormManagerService }, { type: i2.Router }, { type: i2.ActivatedRoute }] });
610
-
611
- class SubmissionDeleteComponent {
612
- service;
613
- router;
614
- route;
615
- alerts;
616
- constructor(service, router, route, alerts) {
617
- this.service = service;
618
- this.router = router;
619
- this.route = route;
620
- this.alerts = alerts;
621
- }
622
- onDelete() {
623
- this.service.formio.deleteSubmission().then(() => {
624
- this.router.navigate(['../../'], { relativeTo: this.route });
625
- }).catch(err => this.alerts.setAlert({ type: 'danger', message: (err.message || err) }));
626
- }
627
- onCancel() {
628
- this.router.navigate(['../', 'view'], { relativeTo: this.route });
629
- }
630
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SubmissionDeleteComponent, deps: [{ token: FormManagerService }, { token: i2.Router }, { token: i2.ActivatedRoute }, { token: i3.FormioAlerts }], target: i0.ɵɵFactoryTarget.Component });
631
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: SubmissionDeleteComponent, selector: "ng-component", ngImport: i0, template: "<formio-alerts [alerts]=\"alerts\"></formio-alerts>\n<h3>Are you sure you wish to delete this record?</h3>\n<div class=\"btn-toolbar\">\n <button type=\"button\" (click)=\"onDelete()\" class=\"btn btn-danger\" style=\"margin-right: 10px;\">Yes</button>\n <button type=\"button\" (click)=\"onCancel()\" class=\"btn btn-default\">No</button>\n</div>\n", dependencies: [{ kind: "component", type: i3.FormioAlertsComponent, selector: "formio-alerts", inputs: ["alerts"], outputs: ["focusComponent"] }] });
632
- }
633
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SubmissionDeleteComponent, decorators: [{
634
- type: Component,
635
- args: [{ template: "<formio-alerts [alerts]=\"alerts\"></formio-alerts>\n<h3>Are you sure you wish to delete this record?</h3>\n<div class=\"btn-toolbar\">\n <button type=\"button\" (click)=\"onDelete()\" class=\"btn btn-danger\" style=\"margin-right: 10px;\">Yes</button>\n <button type=\"button\" (click)=\"onCancel()\" class=\"btn btn-default\">No</button>\n</div>\n" }]
636
- }], ctorParameters: () => [{ type: FormManagerService }, { type: i2.Router }, { type: i2.ActivatedRoute }, { type: i3.FormioAlerts }] });
637
-
638
- class SubmissionViewComponent {
639
- service;
640
- constructor(service) {
641
- this.service = service;
642
- }
643
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SubmissionViewComponent, deps: [{ token: FormManagerService }], target: i0.ɵɵFactoryTarget.Component });
644
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: SubmissionViewComponent, selector: "ng-component", ngImport: i0, template: "<formio\n [renderer]=\"service.config.renderer\"\n [src]=\"service.formio.submissionUrl\"\n [readOnly]=\"true\"\n (formLoad)=\"service.setForm($event)\"\n (submissionLoad)=\"service.submissionLoaded($event)\"\n></formio>\n", dependencies: [{ kind: "component", type: i3.FormioComponent, selector: "formio" }] });
645
- }
646
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SubmissionViewComponent, decorators: [{
647
- type: Component,
648
- args: [{ template: "<formio\n [renderer]=\"service.config.renderer\"\n [src]=\"service.formio.submissionUrl\"\n [readOnly]=\"true\"\n (formLoad)=\"service.setForm($event)\"\n (submissionLoad)=\"service.submissionLoaded($event)\"\n></formio>\n" }]
649
- }], ctorParameters: () => [{ type: FormManagerService }] });
650
-
651
- class SubmissionIndexComponent {
652
- service;
653
- route;
654
- router;
655
- constructor(service, route, router) {
656
- this.service = service;
657
- this.route = route;
658
- this.router = router;
659
- }
660
- onSelect(row) {
661
- this.router.navigate([row._id, 'view'], { relativeTo: this.route });
662
- }
663
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SubmissionIndexComponent, deps: [{ token: FormManagerService }, { token: i2.ActivatedRoute }, { token: i2.Router }], target: i0.ɵɵFactoryTarget.Component });
664
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: SubmissionIndexComponent, selector: "ng-component", ngImport: i0, template: "<formio-grid [formio]=\"service.formio\" (rowSelect)=\"onSelect($event)\"></formio-grid>\n", dependencies: [{ kind: "component", type: i4.FormioGridComponent, selector: "formio-grid", inputs: ["footerPosition", "src", "items", "onForm", "query", "refresh", "columns", "gridType", "size", "components", "formio", "label", "createText", "isActionAllowed"], outputs: ["select", "rowSelect", "rowAction", "createItem", "error"] }] });
665
- }
666
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SubmissionIndexComponent, decorators: [{
667
- type: Component,
668
- args: [{ template: "<formio-grid [formio]=\"service.formio\" (rowSelect)=\"onSelect($event)\"></formio-grid>\n" }]
669
- }], ctorParameters: () => [{ type: FormManagerService }, { type: i2.ActivatedRoute }, { type: i2.Router }] });
670
-
671
- class SubmissionComponent {
672
- service;
673
- route;
674
- downloadUrl;
675
- constructor(service, route) {
676
- this.service = service;
677
- this.route = route;
678
- }
679
- setDownloadUrl(url) {
680
- this.downloadUrl = url;
681
- }
682
- ngOnInit() {
683
- this.service.setSubmission(this.route).then((formio) => {
684
- formio.getDownloadUrl().then((url) => this.setDownloadUrl(url));
685
- });
686
- }
687
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SubmissionComponent, deps: [{ token: FormManagerService }, { token: i2.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
688
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: SubmissionComponent, selector: "ng-component", ngImport: i0, template: "<a *ngIf=\"downloadUrl\" [href]=\"downloadUrl\" target=\"_blank\" class=\"float-end\"><img src=\"https://pro.formview.io/assets/pdf.png\" alt=\"pdfImage\" style=\"height: 2em;\" /></a>\n<ul aria-label=\"Submission\" role=\"navigation\" class=\"nav nav-tabs\" style=\"margin-bottom:10px\">\n <li class=\"nav-item\"><a class=\"nav-link\" routerLink=\"../\"><em class=\"fa fa-chevron-left bi bi-chevron-left\"></em></a></li>\n <li class=\"nav-item\" routerLinkActive=\"active\"><a class=\"nav-link\" routerLink=\"view\" routerLinkActive=\"active\"><em class=\"fa fa-eye bi bi-eye\"></em> View</a></li>\n <li class=\"nav-item\" routerLinkActive=\"active\" *ngIf=\"service.perms.edit\"><a class=\"nav-link\" routerLink=\"edit\" routerLinkActive=\"active\"><em class=\"fa fa-edit bi bi-pencil-square\"></em> Edit</a></li>\n <li class=\"nav-item\" routerLinkActive=\"active\" *ngIf=\"service.perms.delete\"><a class=\"nav-link\" routerLink=\"delete\" routerLinkActive=\"active\"><span class=\"fa fa-trash bi bi-trash\"></span></a></li>\n</ul>\n<router-outlet></router-outlet>\n", dependencies: [{ kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i2.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i2.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }] });
689
- }
690
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SubmissionComponent, decorators: [{
691
- type: Component,
692
- args: [{ template: "<a *ngIf=\"downloadUrl\" [href]=\"downloadUrl\" target=\"_blank\" class=\"float-end\"><img src=\"https://pro.formview.io/assets/pdf.png\" alt=\"pdfImage\" style=\"height: 2em;\" /></a>\n<ul aria-label=\"Submission\" role=\"navigation\" class=\"nav nav-tabs\" style=\"margin-bottom:10px\">\n <li class=\"nav-item\"><a class=\"nav-link\" routerLink=\"../\"><em class=\"fa fa-chevron-left bi bi-chevron-left\"></em></a></li>\n <li class=\"nav-item\" routerLinkActive=\"active\"><a class=\"nav-link\" routerLink=\"view\" routerLinkActive=\"active\"><em class=\"fa fa-eye bi bi-eye\"></em> View</a></li>\n <li class=\"nav-item\" routerLinkActive=\"active\" *ngIf=\"service.perms.edit\"><a class=\"nav-link\" routerLink=\"edit\" routerLinkActive=\"active\"><em class=\"fa fa-edit bi bi-pencil-square\"></em> Edit</a></li>\n <li class=\"nav-item\" routerLinkActive=\"active\" *ngIf=\"service.perms.delete\"><a class=\"nav-link\" routerLink=\"delete\" routerLinkActive=\"active\"><span class=\"fa fa-trash bi bi-trash\"></span></a></li>\n</ul>\n<router-outlet></router-outlet>\n" }]
693
- }], ctorParameters: () => [{ type: FormManagerService }, { type: i2.ActivatedRoute }] });
694
-
695
- function FormManagerRoutes(config) {
696
- return [
697
- {
698
- path: '',
699
- component: config && config.formIndex ? config.formIndex : FormManagerIndexComponent
700
- },
701
- {
702
- path: 'create',
703
- component: config && config.formCreate ? config.formCreate : FormManagerCreateComponent
704
- },
705
- {
706
- path: ':id',
707
- component: config && config.form ? config.form : FormManagerFormComponent,
708
- children: [
709
- {
710
- path: '',
711
- redirectTo: 'view',
712
- pathMatch: 'full'
713
- },
714
- {
715
- path: 'view',
716
- component: config && config.formView ? config.formView : FormManagerViewComponent
717
- },
718
- {
719
- path: 'edit',
720
- component: config && config.formEdit ? config.formEdit : FormManagerEditComponent
721
- },
722
- {
723
- path: 'delete',
724
- component: config && config.formDelete ? config.formDelete : FormManagerDeleteComponent
725
- },
726
- {
727
- path: 'submission',
728
- component: config && config.submissionIndex ? config.submissionIndex : SubmissionIndexComponent
729
- },
730
- {
731
- path: 'submission/:id',
732
- component: config && config.submission ? config.submission : SubmissionComponent,
733
- children: [
734
- {
735
- path: '',
736
- redirectTo: 'view',
737
- pathMatch: 'full'
738
- },
739
- {
740
- path: 'view',
741
- component: config && config.submissionView ? config.submissionView : SubmissionViewComponent
742
- },
743
- {
744
- path: 'edit',
745
- component: config && config.submissionEdit ? config.submissionEdit : SubmissionEditComponent
746
- },
747
- {
748
- path: 'delete',
749
- component: config && config.submissionDelete ? config.submissionDelete : SubmissionDeleteComponent
750
- }
751
- ]
752
- }
753
- ]
754
- }
755
- ];
756
- }
757
-
758
- class FormManagerModule {
759
- static forChild(config) {
760
- return extendRouter(FormManagerModule, config, FormManagerRoutes);
761
- }
762
- static forRoot(config) {
763
- return extendRouter(FormManagerModule, config, FormManagerRoutes);
764
- }
765
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
766
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.8", ngImport: i0, type: FormManagerModule, declarations: [FormManagerIndexComponent,
767
- FormManagerCreateComponent,
768
- FormManagerFormComponent,
769
- FormManagerViewComponent,
770
- FormManagerEditComponent,
771
- FormManagerDeleteComponent,
772
- SubmissionComponent,
773
- SubmissionEditComponent,
774
- SubmissionDeleteComponent,
775
- SubmissionViewComponent,
776
- SubmissionIndexComponent], imports: [CommonModule,
777
- FormioModule,
778
- RouterModule,
779
- FormsModule,
780
- FormioGrid, i5.ModalModule, i2$1.PaginationModule] });
781
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerModule, imports: [CommonModule,
782
- FormioModule,
783
- RouterModule,
784
- FormsModule,
785
- FormioGrid,
786
- ModalModule.forRoot(),
787
- PaginationModule.forRoot()] });
788
- }
789
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: FormManagerModule, decorators: [{
790
- type: NgModule,
791
- args: [{
792
- imports: [
793
- CommonModule,
794
- FormioModule,
795
- RouterModule,
796
- FormsModule,
797
- FormioGrid,
798
- ModalModule.forRoot(),
799
- PaginationModule.forRoot()
800
- ],
801
- declarations: [
802
- FormManagerIndexComponent,
803
- FormManagerCreateComponent,
804
- FormManagerFormComponent,
805
- FormManagerViewComponent,
806
- FormManagerEditComponent,
807
- FormManagerDeleteComponent,
808
- SubmissionComponent,
809
- SubmissionEditComponent,
810
- SubmissionDeleteComponent,
811
- SubmissionViewComponent,
812
- SubmissionIndexComponent
813
- ]
814
- }]
815
- }] });
816
-
817
- /**
818
- * Generated bundle index. Do not edit.
819
- */
820
-
821
- export { FormManagerConfig, FormManagerCreateComponent, FormManagerDeleteComponent, FormManagerEditComponent, FormManagerFormComponent, FormManagerIndexComponent, FormManagerModule, FormManagerRoutes, FormManagerService, FormManagerViewComponent, SubmissionComponent, SubmissionDeleteComponent, SubmissionEditComponent, SubmissionIndexComponent, SubmissionViewComponent };
822
- //# sourceMappingURL=formio-angular-manager.mjs.map