@formio/angular 7.0.0 → 7.5.0-dev.1060.b272e25

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 (439) 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/ci.yml +171 -0
  8. package/.travis.yml +4 -0
  9. package/.yo-rc.json +7 -0
  10. package/CHANGELOG.md +1154 -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/{FormioBaseComponent.d.ts.map → dist/angular-formio/FormioBaseComponent.d.ts.map} +1 -1
  17. package/dist/angular-formio/README.md +24 -0
  18. package/{components → dist/angular-formio/components}/formbuilder/formbuilder.component.d.ts +1 -1
  19. package/{components → dist/angular-formio/components}/formbuilder/formbuilder.component.d.ts.map +1 -1
  20. package/{components → dist/angular-formio/components}/formioreport/formioreport.component.d.ts.map +1 -1
  21. package/{core.d.ts → dist/angular-formio/core.d.ts} +1 -1
  22. package/{core.d.ts.map → dist/angular-formio/core.d.ts.map} +1 -1
  23. package/dist/angular-formio/embed/app.service.d.ts +28 -0
  24. package/dist/angular-formio/embed/app.service.d.ts.map +1 -0
  25. package/dist/angular-formio/embed/builder.component.d.ts +14 -0
  26. package/dist/angular-formio/embed/builder.component.d.ts.map +1 -0
  27. package/dist/angular-formio/embed/embed.module.d.ts +10 -0
  28. package/dist/angular-formio/embed/embed.module.d.ts.map +1 -0
  29. package/dist/angular-formio/embed/formio-angular-embed.d.ts.map +1 -0
  30. package/dist/angular-formio/embed/formio.component.d.ts +17 -0
  31. package/dist/angular-formio/embed/formio.component.d.ts.map +1 -0
  32. package/dist/angular-formio/embed/index.d.ts +7 -0
  33. package/dist/angular-formio/embed/index.d.ts.map +1 -0
  34. package/dist/angular-formio/esm2022/FormioBaseComponent.mjs +580 -0
  35. package/{esm2022 → dist/angular-formio/esm2022}/auth/auth.service.mjs +2 -2
  36. package/dist/angular-formio/esm2022/components/formbuilder/formbuilder.component.mjs +202 -0
  37. package/dist/angular-formio/esm2022/components/formio/formio.component.mjs +43 -0
  38. package/dist/angular-formio/esm2022/components/formioreport/formioreport.component.mjs +89 -0
  39. package/{esm2022 → dist/angular-formio/esm2022}/core.mjs +2 -2
  40. package/dist/angular-formio/esm2022/embed/app.service.mjs +58 -0
  41. package/dist/angular-formio/esm2022/embed/builder.component.mjs +36 -0
  42. package/dist/angular-formio/esm2022/embed/embed.module.mjs +35 -0
  43. package/dist/angular-formio/esm2022/embed/formio-angular-embed.mjs +5 -0
  44. package/dist/angular-formio/esm2022/embed/formio.component.mjs +50 -0
  45. package/dist/angular-formio/esm2022/embed/index.mjs +7 -0
  46. package/dist/angular-formio/esm2022/formio.common.mjs +11 -0
  47. package/{esm2022 → dist/angular-formio/esm2022}/formio.config.mjs +2 -2
  48. package/dist/angular-formio/esm2022/formio.service.mjs +62 -0
  49. package/dist/angular-formio/esm2022/grid/grid.component.mjs +257 -0
  50. package/{esm2022 → dist/angular-formio/esm2022}/grid/submission/SubmissionGridHeader.component.mjs +2 -2
  51. package/{esm2022 → dist/angular-formio/esm2022}/manager/form-manager.service.mjs +2 -2
  52. package/{esm2022 → dist/angular-formio/esm2022}/manager/view/view.component.mjs +2 -2
  53. package/{esm2022 → dist/angular-formio/esm2022}/resource/edit/edit.component.mjs +2 -2
  54. package/{esm2022 → dist/angular-formio/esm2022}/resource/resource.service.mjs +2 -2
  55. package/{esm2022 → dist/angular-formio/esm2022}/resource/view/view.component.mjs +2 -2
  56. package/{fesm2022 → dist/angular-formio/fesm2022}/formio-angular-auth.mjs +1 -1
  57. package/dist/angular-formio/fesm2022/formio-angular-auth.mjs.map +1 -0
  58. package/dist/angular-formio/fesm2022/formio-angular-embed.mjs +176 -0
  59. package/dist/angular-formio/fesm2022/formio-angular-embed.mjs.map +1 -0
  60. package/{fesm2022 → dist/angular-formio/fesm2022}/formio-angular-grid.mjs +2 -1
  61. package/dist/angular-formio/fesm2022/formio-angular-grid.mjs.map +1 -0
  62. package/{fesm2022 → dist/angular-formio/fesm2022}/formio-angular-manager.mjs +1 -1
  63. package/dist/angular-formio/fesm2022/formio-angular-manager.mjs.map +1 -0
  64. package/{fesm2022 → dist/angular-formio/fesm2022}/formio-angular-resource.mjs +1 -1
  65. package/dist/angular-formio/fesm2022/formio-angular-resource.mjs.map +1 -0
  66. package/dist/angular-formio/fesm2022/formio-angular.mjs +1187 -0
  67. package/dist/angular-formio/fesm2022/formio-angular.mjs.map +1 -0
  68. package/{formio.common.d.ts → dist/angular-formio/formio.common.d.ts} +2 -2
  69. package/dist/angular-formio/formio.common.d.ts.map +1 -0
  70. package/{formio.config.d.ts → dist/angular-formio/formio.config.d.ts} +1 -1
  71. package/{formio.config.d.ts.map → dist/angular-formio/formio.config.d.ts.map} +1 -1
  72. package/{grid → dist/angular-formio/grid}/submission/SubmissionGridHeader.component.d.ts +1 -1
  73. package/{grid → dist/angular-formio/grid}/submission/SubmissionGridHeader.component.d.ts.map +1 -1
  74. package/{manager → dist/angular-formio/manager}/form-manager.service.d.ts +1 -1
  75. package/{manager → dist/angular-formio/manager}/form-manager.service.d.ts.map +1 -1
  76. package/package.json +54 -57
  77. package/projects/angular-formio/README.md +24 -0
  78. package/projects/angular-formio/auth/ng-package.json +5 -0
  79. package/projects/angular-formio/auth/src/auth.component.html +11 -0
  80. package/projects/angular-formio/auth/src/auth.component.ts +5 -0
  81. package/projects/angular-formio/auth/src/auth.config.ts +72 -0
  82. package/projects/angular-formio/auth/src/auth.module.ts +33 -0
  83. package/projects/angular-formio/auth/src/auth.routes.ts +34 -0
  84. package/projects/angular-formio/auth/src/auth.service.ts +221 -0
  85. package/projects/angular-formio/auth/src/index.ts +8 -0
  86. package/projects/angular-formio/auth/src/login/login.component.html +1 -0
  87. package/projects/angular-formio/auth/src/login/login.component.ts +11 -0
  88. package/projects/angular-formio/auth/src/public_api.ts +5 -0
  89. package/projects/angular-formio/auth/src/register/register.component.html +1 -0
  90. package/projects/angular-formio/auth/src/register/register.component.ts +11 -0
  91. package/projects/angular-formio/auth/src/resetpass/resetpass.component.html +1 -0
  92. package/projects/angular-formio/auth/src/resetpass/resetpass.component.ts +8 -0
  93. package/projects/angular-formio/embed/ng-package.json +5 -0
  94. package/projects/angular-formio/embed/src/app.service.ts +59 -0
  95. package/projects/angular-formio/embed/src/builder.component.ts +19 -0
  96. package/projects/angular-formio/embed/src/embed.module.ts +23 -0
  97. package/projects/angular-formio/embed/src/formio.component.ts +27 -0
  98. package/projects/angular-formio/embed/src/index.ts +6 -0
  99. package/projects/angular-formio/grid/ng-package.json +5 -0
  100. package/projects/angular-formio/grid/src/GridBodyComponent.ts +80 -0
  101. package/projects/angular-formio/grid/src/GridFooterComponent.ts +25 -0
  102. package/projects/angular-formio/grid/src/GridHeaderComponent.ts +25 -0
  103. package/projects/angular-formio/grid/src/form/FormGridBody.component.html +22 -0
  104. package/projects/angular-formio/grid/src/form/FormGridBody.component.scss +4 -0
  105. package/projects/angular-formio/grid/src/form/FormGridBody.component.ts +46 -0
  106. package/projects/angular-formio/grid/src/form/FormGridFooter.component.html +21 -0
  107. package/projects/angular-formio/grid/src/form/FormGridFooter.component.ts +23 -0
  108. package/projects/angular-formio/grid/src/form/FormGridHeader.component.html +18 -0
  109. package/projects/angular-formio/grid/src/form/FormGridHeader.component.ts +24 -0
  110. package/projects/angular-formio/grid/src/form/index.ts +8 -0
  111. package/projects/angular-formio/grid/src/form/time-since.pipe.ts +31 -0
  112. package/projects/angular-formio/grid/src/grid.component.html +18 -0
  113. package/projects/angular-formio/grid/src/grid.component.scss +9 -0
  114. package/projects/angular-formio/grid/src/grid.component.ts +242 -0
  115. package/projects/angular-formio/grid/src/grid.footer.scss +14 -0
  116. package/projects/angular-formio/grid/src/grid.module.ts +49 -0
  117. package/projects/angular-formio/grid/src/grid.service.ts +16 -0
  118. package/projects/angular-formio/grid/src/index.ts +12 -0
  119. package/projects/angular-formio/grid/src/public_api.ts +5 -0
  120. package/projects/angular-formio/grid/src/submission/SubmissionGridBody.component.html +7 -0
  121. package/projects/angular-formio/grid/src/submission/SubmissionGridBody.component.ts +39 -0
  122. package/projects/angular-formio/grid/src/submission/SubmissionGridFooter.component.html +18 -0
  123. package/projects/angular-formio/grid/src/submission/SubmissionGridFooter.component.ts +20 -0
  124. package/projects/angular-formio/grid/src/submission/SubmissionGridHeader.component.html +11 -0
  125. package/projects/angular-formio/grid/src/submission/SubmissionGridHeader.component.ts +72 -0
  126. package/projects/angular-formio/grid/src/submission/index.ts +8 -0
  127. package/projects/angular-formio/grid/src/types/grid-column.ts +7 -0
  128. package/projects/angular-formio/grid/src/types/grid-footer-positions.ts +5 -0
  129. package/projects/angular-formio/grid/src/types/grid-header.ts +14 -0
  130. package/projects/angular-formio/karma.conf.js +32 -0
  131. package/projects/angular-formio/manager/ng-package.json +5 -0
  132. package/projects/angular-formio/manager/src/create/create.component.ts +11 -0
  133. package/projects/angular-formio/manager/src/delete/delete.component.html +6 -0
  134. package/projects/angular-formio/manager/src/delete/delete.component.ts +37 -0
  135. package/projects/angular-formio/manager/src/edit/edit.component.html +19 -0
  136. package/projects/angular-formio/manager/src/edit/edit.component.ts +110 -0
  137. package/projects/angular-formio/manager/src/form/form.component.html +32 -0
  138. package/projects/angular-formio/manager/src/form/form.component.ts +73 -0
  139. package/projects/angular-formio/manager/src/form-manager.config.ts +31 -0
  140. package/projects/angular-formio/manager/src/form-manager.module.ts +54 -0
  141. package/projects/angular-formio/manager/src/form-manager.routes.ts +75 -0
  142. package/projects/angular-formio/manager/src/form-manager.service.ts +190 -0
  143. package/projects/angular-formio/manager/src/index/index.component.html +14 -0
  144. package/projects/angular-formio/manager/src/index/index.component.scss +22 -0
  145. package/projects/angular-formio/manager/src/index/index.component.ts +100 -0
  146. package/projects/angular-formio/manager/src/index.ts +16 -0
  147. package/projects/angular-formio/manager/src/public_api.ts +5 -0
  148. package/projects/angular-formio/manager/src/submission/delete/delete.component.html +6 -0
  149. package/projects/angular-formio/manager/src/submission/delete/delete.component.ts +26 -0
  150. package/projects/angular-formio/manager/src/submission/edit/edit.component.html +7 -0
  151. package/projects/angular-formio/manager/src/submission/edit/edit.component.ts +18 -0
  152. package/projects/angular-formio/manager/src/submission/index/index.component.html +1 -0
  153. package/projects/angular-formio/manager/src/submission/index/index.component.ts +18 -0
  154. package/projects/angular-formio/manager/src/submission/submission/submission.component.html +8 -0
  155. package/projects/angular-formio/manager/src/submission/submission/submission.component.ts +24 -0
  156. package/projects/angular-formio/manager/src/submission/view/view.component.html +7 -0
  157. package/projects/angular-formio/manager/src/submission/view/view.component.ts +9 -0
  158. package/projects/angular-formio/manager/src/view/view.component.html +11 -0
  159. package/projects/angular-formio/manager/src/view/view.component.ts +44 -0
  160. package/projects/angular-formio/ng-package.json +7 -0
  161. package/projects/angular-formio/package.json +37 -0
  162. package/projects/angular-formio/resource/ng-package.json +5 -0
  163. package/projects/angular-formio/resource/src/create/create.component.html +13 -0
  164. package/projects/angular-formio/resource/src/create/create.component.scss +3 -0
  165. package/projects/angular-formio/resource/src/create/create.component.ts +37 -0
  166. package/projects/angular-formio/resource/src/delete/delete.component.html +5 -0
  167. package/projects/angular-formio/resource/src/delete/delete.component.ts +24 -0
  168. package/projects/angular-formio/resource/src/edit/edit.component.html +7 -0
  169. package/projects/angular-formio/resource/src/edit/edit.component.ts +35 -0
  170. package/projects/angular-formio/resource/src/index/index.component.html +10 -0
  171. package/projects/angular-formio/resource/src/index/index.component.ts +64 -0
  172. package/projects/angular-formio/resource/src/index.js +24 -0
  173. package/projects/angular-formio/resource/src/index.ts +11 -0
  174. package/projects/angular-formio/resource/src/public_api.ts +5 -0
  175. package/projects/angular-formio/resource/src/resource.component.html +7 -0
  176. package/projects/angular-formio/resource/src/resource.component.ts +48 -0
  177. package/projects/angular-formio/resource/src/resource.config.ts +17 -0
  178. package/projects/angular-formio/resource/src/resource.module.ts +43 -0
  179. package/projects/angular-formio/resource/src/resource.routes.ts +43 -0
  180. package/projects/angular-formio/resource/src/resource.service.ts +258 -0
  181. package/projects/angular-formio/resource/src/resources.service.ts +24 -0
  182. package/projects/angular-formio/resource/src/view/view.component.html +6 -0
  183. package/projects/angular-formio/resource/src/view/view.component.ts +19 -0
  184. package/projects/angular-formio/src/FormioBaseComponent.ts +554 -0
  185. package/projects/angular-formio/src/components/alerts/formio.alerts.component.html +3 -0
  186. package/projects/angular-formio/src/components/alerts/formio.alerts.component.ts +19 -0
  187. package/projects/angular-formio/src/components/alerts/formio.alerts.ts +21 -0
  188. package/projects/angular-formio/src/components/alerts/parse-html-content.pipe.ts +15 -0
  189. package/projects/angular-formio/src/components/formbuilder/formbuilder.component.html +1 -0
  190. package/projects/angular-formio/src/components/formbuilder/formbuilder.component.ts +213 -0
  191. package/projects/angular-formio/src/components/formio/formio.component.html +8 -0
  192. package/projects/angular-formio/src/components/formio/formio.component.ts +33 -0
  193. package/projects/angular-formio/src/components/formioreport/formioreport.component.html +8 -0
  194. package/projects/angular-formio/src/components/formioreport/formioreport.component.ts +95 -0
  195. package/projects/angular-formio/src/components/loader/formio.loader.component.html +3 -0
  196. package/projects/angular-formio/src/components/loader/formio.loader.component.scss +26 -0
  197. package/projects/angular-formio/src/components/loader/formio.loader.component.ts +10 -0
  198. package/projects/angular-formio/src/core.ts +25 -0
  199. package/projects/angular-formio/src/custom-tags.service.ts +9 -0
  200. package/projects/angular-formio/src/formio-promise.service.ts +36 -0
  201. package/projects/angular-formio/src/formio.common.ts +91 -0
  202. package/projects/angular-formio/src/formio.config.ts +26 -0
  203. package/projects/angular-formio/src/formio.module.ts +38 -0
  204. package/projects/angular-formio/src/formio.service.ts +57 -0
  205. package/projects/angular-formio/src/formio.utils.ts +23 -0
  206. package/projects/angular-formio/src/index.ts +3 -0
  207. package/projects/angular-formio/src/public-api.ts +5 -0
  208. package/projects/angular-formio/src/test.ts +28 -0
  209. package/projects/angular-formio/src/types/alerts-position.ts +6 -0
  210. package/projects/angular-formio/src/types/formio-metadata.ts +10 -0
  211. package/projects/angular-formio/src/types/formio-submission.ts +20 -0
  212. package/projects/angular-formio/tsconfig.lib.json +27 -0
  213. package/projects/angular-formio/tsconfig.lib.prod.json +8 -0
  214. package/projects/angular-formio/tsconfig.spec.json +17 -0
  215. package/projects/angular-formio/tslint.json +17 -0
  216. package/tsconfig.json +39 -0
  217. package/tslint.json +140 -0
  218. package/esm2022/FormioBaseComponent.mjs +0 -583
  219. package/esm2022/components/formbuilder/formbuilder.component.mjs +0 -202
  220. package/esm2022/components/formio/formio.component.mjs +0 -43
  221. package/esm2022/components/formioreport/formioreport.component.mjs +0 -86
  222. package/esm2022/formio.common.mjs +0 -11
  223. package/esm2022/formio.service.mjs +0 -62
  224. package/esm2022/grid/grid.component.mjs +0 -257
  225. package/fesm2022/formio-angular-auth.mjs.map +0 -1
  226. package/fesm2022/formio-angular-grid.mjs.map +0 -1
  227. package/fesm2022/formio-angular-manager.mjs.map +0 -1
  228. package/fesm2022/formio-angular-resource.mjs.map +0 -1
  229. package/fesm2022/formio-angular.mjs +0 -1186
  230. package/fesm2022/formio-angular.mjs.map +0 -1
  231. package/formio.common.d.ts.map +0 -1
  232. /package/{FormioBaseComponent.d.ts → dist/angular-formio/FormioBaseComponent.d.ts} +0 -0
  233. /package/{auth → dist/angular-formio/auth}/auth.component.d.ts +0 -0
  234. /package/{auth → dist/angular-formio/auth}/auth.component.d.ts.map +0 -0
  235. /package/{auth → dist/angular-formio/auth}/auth.config.d.ts +0 -0
  236. /package/{auth → dist/angular-formio/auth}/auth.config.d.ts.map +0 -0
  237. /package/{auth → dist/angular-formio/auth}/auth.module.d.ts +0 -0
  238. /package/{auth → dist/angular-formio/auth}/auth.module.d.ts.map +0 -0
  239. /package/{auth → dist/angular-formio/auth}/auth.routes.d.ts +0 -0
  240. /package/{auth → dist/angular-formio/auth}/auth.routes.d.ts.map +0 -0
  241. /package/{auth → dist/angular-formio/auth}/auth.service.d.ts +0 -0
  242. /package/{auth → dist/angular-formio/auth}/auth.service.d.ts.map +0 -0
  243. /package/{auth → dist/angular-formio/auth}/formio-angular-auth.d.ts.map +0 -0
  244. /package/{auth → dist/angular-formio/auth}/index.d.ts +0 -0
  245. /package/{auth → dist/angular-formio/auth}/index.d.ts.map +0 -0
  246. /package/{auth → dist/angular-formio/auth}/login/login.component.d.ts +0 -0
  247. /package/{auth → dist/angular-formio/auth}/login/login.component.d.ts.map +0 -0
  248. /package/{auth → dist/angular-formio/auth}/register/register.component.d.ts +0 -0
  249. /package/{auth → dist/angular-formio/auth}/register/register.component.d.ts.map +0 -0
  250. /package/{auth → dist/angular-formio/auth}/resetpass/resetpass.component.d.ts +0 -0
  251. /package/{auth → dist/angular-formio/auth}/resetpass/resetpass.component.d.ts.map +0 -0
  252. /package/{components → dist/angular-formio/components}/alerts/formio.alerts.component.d.ts +0 -0
  253. /package/{components → dist/angular-formio/components}/alerts/formio.alerts.component.d.ts.map +0 -0
  254. /package/{components → dist/angular-formio/components}/alerts/formio.alerts.d.ts +0 -0
  255. /package/{components → dist/angular-formio/components}/alerts/formio.alerts.d.ts.map +0 -0
  256. /package/{components → dist/angular-formio/components}/alerts/parse-html-content.pipe.d.ts +0 -0
  257. /package/{components → dist/angular-formio/components}/alerts/parse-html-content.pipe.d.ts.map +0 -0
  258. /package/{components → dist/angular-formio/components}/formio/formio.component.d.ts +0 -0
  259. /package/{components → dist/angular-formio/components}/formio/formio.component.d.ts.map +0 -0
  260. /package/{components → dist/angular-formio/components}/formioreport/formioreport.component.d.ts +0 -0
  261. /package/{components → dist/angular-formio/components}/loader/formio.loader.component.d.ts +0 -0
  262. /package/{components → dist/angular-formio/components}/loader/formio.loader.component.d.ts.map +0 -0
  263. /package/{custom-tags.service.d.ts → dist/angular-formio/custom-tags.service.d.ts} +0 -0
  264. /package/{custom-tags.service.d.ts.map → dist/angular-formio/custom-tags.service.d.ts.map} +0 -0
  265. /package/{esm2022 → dist/angular-formio/esm2022}/auth/auth.component.mjs +0 -0
  266. /package/{esm2022 → dist/angular-formio/esm2022}/auth/auth.config.mjs +0 -0
  267. /package/{esm2022 → dist/angular-formio/esm2022}/auth/auth.module.mjs +0 -0
  268. /package/{esm2022 → dist/angular-formio/esm2022}/auth/auth.routes.mjs +0 -0
  269. /package/{esm2022 → dist/angular-formio/esm2022}/auth/formio-angular-auth.mjs +0 -0
  270. /package/{esm2022 → dist/angular-formio/esm2022}/auth/index.mjs +0 -0
  271. /package/{esm2022 → dist/angular-formio/esm2022}/auth/login/login.component.mjs +0 -0
  272. /package/{esm2022 → dist/angular-formio/esm2022}/auth/register/register.component.mjs +0 -0
  273. /package/{esm2022 → dist/angular-formio/esm2022}/auth/resetpass/resetpass.component.mjs +0 -0
  274. /package/{esm2022 → dist/angular-formio/esm2022}/components/alerts/formio.alerts.component.mjs +0 -0
  275. /package/{esm2022 → dist/angular-formio/esm2022}/components/alerts/formio.alerts.mjs +0 -0
  276. /package/{esm2022 → dist/angular-formio/esm2022}/components/alerts/parse-html-content.pipe.mjs +0 -0
  277. /package/{esm2022 → dist/angular-formio/esm2022}/components/loader/formio.loader.component.mjs +0 -0
  278. /package/{esm2022 → dist/angular-formio/esm2022}/custom-tags.service.mjs +0 -0
  279. /package/{esm2022 → dist/angular-formio/esm2022}/formio-angular.mjs +0 -0
  280. /package/{esm2022 → dist/angular-formio/esm2022}/formio-promise.service.mjs +0 -0
  281. /package/{esm2022 → dist/angular-formio/esm2022}/formio.module.mjs +0 -0
  282. /package/{esm2022 → dist/angular-formio/esm2022}/formio.utils.mjs +0 -0
  283. /package/{esm2022 → dist/angular-formio/esm2022}/grid/GridBodyComponent.mjs +0 -0
  284. /package/{esm2022 → dist/angular-formio/esm2022}/grid/GridFooterComponent.mjs +0 -0
  285. /package/{esm2022 → dist/angular-formio/esm2022}/grid/GridHeaderComponent.mjs +0 -0
  286. /package/{esm2022 → dist/angular-formio/esm2022}/grid/form/FormGridBody.component.mjs +0 -0
  287. /package/{esm2022 → dist/angular-formio/esm2022}/grid/form/FormGridFooter.component.mjs +0 -0
  288. /package/{esm2022 → dist/angular-formio/esm2022}/grid/form/FormGridHeader.component.mjs +0 -0
  289. /package/{esm2022 → dist/angular-formio/esm2022}/grid/form/index.mjs +0 -0
  290. /package/{esm2022 → dist/angular-formio/esm2022}/grid/form/time-since.pipe.mjs +0 -0
  291. /package/{esm2022 → dist/angular-formio/esm2022}/grid/formio-angular-grid.mjs +0 -0
  292. /package/{esm2022 → dist/angular-formio/esm2022}/grid/grid.module.mjs +0 -0
  293. /package/{esm2022 → dist/angular-formio/esm2022}/grid/grid.service.mjs +0 -0
  294. /package/{esm2022 → dist/angular-formio/esm2022}/grid/index.mjs +0 -0
  295. /package/{esm2022 → dist/angular-formio/esm2022}/grid/submission/SubmissionGridBody.component.mjs +0 -0
  296. /package/{esm2022 → dist/angular-formio/esm2022}/grid/submission/SubmissionGridFooter.component.mjs +0 -0
  297. /package/{esm2022 → dist/angular-formio/esm2022}/grid/submission/index.mjs +0 -0
  298. /package/{esm2022 → dist/angular-formio/esm2022}/grid/types/grid-column.mjs +0 -0
  299. /package/{esm2022 → dist/angular-formio/esm2022}/grid/types/grid-footer-positions.mjs +0 -0
  300. /package/{esm2022 → dist/angular-formio/esm2022}/grid/types/grid-header.mjs +0 -0
  301. /package/{esm2022 → dist/angular-formio/esm2022}/index.mjs +0 -0
  302. /package/{esm2022 → dist/angular-formio/esm2022}/manager/create/create.component.mjs +0 -0
  303. /package/{esm2022 → dist/angular-formio/esm2022}/manager/delete/delete.component.mjs +0 -0
  304. /package/{esm2022 → dist/angular-formio/esm2022}/manager/edit/edit.component.mjs +0 -0
  305. /package/{esm2022 → dist/angular-formio/esm2022}/manager/form/form.component.mjs +0 -0
  306. /package/{esm2022 → dist/angular-formio/esm2022}/manager/form-manager.config.mjs +0 -0
  307. /package/{esm2022 → dist/angular-formio/esm2022}/manager/form-manager.module.mjs +0 -0
  308. /package/{esm2022 → dist/angular-formio/esm2022}/manager/form-manager.routes.mjs +0 -0
  309. /package/{esm2022 → dist/angular-formio/esm2022}/manager/formio-angular-manager.mjs +0 -0
  310. /package/{esm2022 → dist/angular-formio/esm2022}/manager/index/index.component.mjs +0 -0
  311. /package/{esm2022 → dist/angular-formio/esm2022}/manager/index.mjs +0 -0
  312. /package/{esm2022 → dist/angular-formio/esm2022}/manager/submission/delete/delete.component.mjs +0 -0
  313. /package/{esm2022 → dist/angular-formio/esm2022}/manager/submission/edit/edit.component.mjs +0 -0
  314. /package/{esm2022 → dist/angular-formio/esm2022}/manager/submission/index/index.component.mjs +0 -0
  315. /package/{esm2022 → dist/angular-formio/esm2022}/manager/submission/submission/submission.component.mjs +0 -0
  316. /package/{esm2022 → dist/angular-formio/esm2022}/manager/submission/view/view.component.mjs +0 -0
  317. /package/{esm2022 → dist/angular-formio/esm2022}/resource/create/create.component.mjs +0 -0
  318. /package/{esm2022 → dist/angular-formio/esm2022}/resource/delete/delete.component.mjs +0 -0
  319. /package/{esm2022 → dist/angular-formio/esm2022}/resource/formio-angular-resource.mjs +0 -0
  320. /package/{esm2022 → dist/angular-formio/esm2022}/resource/index/index.component.mjs +0 -0
  321. /package/{esm2022 → dist/angular-formio/esm2022}/resource/index.mjs +0 -0
  322. /package/{esm2022 → dist/angular-formio/esm2022}/resource/resource.component.mjs +0 -0
  323. /package/{esm2022 → dist/angular-formio/esm2022}/resource/resource.config.mjs +0 -0
  324. /package/{esm2022 → dist/angular-formio/esm2022}/resource/resource.module.mjs +0 -0
  325. /package/{esm2022 → dist/angular-formio/esm2022}/resource/resource.routes.mjs +0 -0
  326. /package/{esm2022 → dist/angular-formio/esm2022}/resource/resources.service.mjs +0 -0
  327. /package/{esm2022 → dist/angular-formio/esm2022}/types/alerts-position.mjs +0 -0
  328. /package/{esm2022 → dist/angular-formio/esm2022}/types/formio-metadata.mjs +0 -0
  329. /package/{esm2022 → dist/angular-formio/esm2022}/types/formio-submission.mjs +0 -0
  330. /package/{formio-angular.d.ts.map → dist/angular-formio/formio-angular.d.ts.map} +0 -0
  331. /package/{formio-promise.service.d.ts → dist/angular-formio/formio-promise.service.d.ts} +0 -0
  332. /package/{formio-promise.service.d.ts.map → dist/angular-formio/formio-promise.service.d.ts.map} +0 -0
  333. /package/{formio.module.d.ts → dist/angular-formio/formio.module.d.ts} +0 -0
  334. /package/{formio.module.d.ts.map → dist/angular-formio/formio.module.d.ts.map} +0 -0
  335. /package/{formio.service.d.ts → dist/angular-formio/formio.service.d.ts} +0 -0
  336. /package/{formio.service.d.ts.map → dist/angular-formio/formio.service.d.ts.map} +0 -0
  337. /package/{formio.utils.d.ts → dist/angular-formio/formio.utils.d.ts} +0 -0
  338. /package/{formio.utils.d.ts.map → dist/angular-formio/formio.utils.d.ts.map} +0 -0
  339. /package/{grid → dist/angular-formio/grid}/GridBodyComponent.d.ts +0 -0
  340. /package/{grid → dist/angular-formio/grid}/GridBodyComponent.d.ts.map +0 -0
  341. /package/{grid → dist/angular-formio/grid}/GridFooterComponent.d.ts +0 -0
  342. /package/{grid → dist/angular-formio/grid}/GridFooterComponent.d.ts.map +0 -0
  343. /package/{grid → dist/angular-formio/grid}/GridHeaderComponent.d.ts +0 -0
  344. /package/{grid → dist/angular-formio/grid}/GridHeaderComponent.d.ts.map +0 -0
  345. /package/{grid → dist/angular-formio/grid}/form/FormGridBody.component.d.ts +0 -0
  346. /package/{grid → dist/angular-formio/grid}/form/FormGridBody.component.d.ts.map +0 -0
  347. /package/{grid → dist/angular-formio/grid}/form/FormGridFooter.component.d.ts +0 -0
  348. /package/{grid → dist/angular-formio/grid}/form/FormGridFooter.component.d.ts.map +0 -0
  349. /package/{grid → dist/angular-formio/grid}/form/FormGridHeader.component.d.ts +0 -0
  350. /package/{grid → dist/angular-formio/grid}/form/FormGridHeader.component.d.ts.map +0 -0
  351. /package/{grid → dist/angular-formio/grid}/form/index.d.ts +0 -0
  352. /package/{grid → dist/angular-formio/grid}/form/index.d.ts.map +0 -0
  353. /package/{grid → dist/angular-formio/grid}/form/time-since.pipe.d.ts +0 -0
  354. /package/{grid → dist/angular-formio/grid}/form/time-since.pipe.d.ts.map +0 -0
  355. /package/{grid → dist/angular-formio/grid}/formio-angular-grid.d.ts.map +0 -0
  356. /package/{grid → dist/angular-formio/grid}/grid.component.d.ts +0 -0
  357. /package/{grid → dist/angular-formio/grid}/grid.component.d.ts.map +0 -0
  358. /package/{grid → dist/angular-formio/grid}/grid.module.d.ts +0 -0
  359. /package/{grid → dist/angular-formio/grid}/grid.module.d.ts.map +0 -0
  360. /package/{grid → dist/angular-formio/grid}/grid.service.d.ts +0 -0
  361. /package/{grid → dist/angular-formio/grid}/grid.service.d.ts.map +0 -0
  362. /package/{grid → dist/angular-formio/grid}/index.d.ts +0 -0
  363. /package/{grid → dist/angular-formio/grid}/index.d.ts.map +0 -0
  364. /package/{grid → dist/angular-formio/grid}/submission/SubmissionGridBody.component.d.ts +0 -0
  365. /package/{grid → dist/angular-formio/grid}/submission/SubmissionGridBody.component.d.ts.map +0 -0
  366. /package/{grid → dist/angular-formio/grid}/submission/SubmissionGridFooter.component.d.ts +0 -0
  367. /package/{grid → dist/angular-formio/grid}/submission/SubmissionGridFooter.component.d.ts.map +0 -0
  368. /package/{grid → dist/angular-formio/grid}/submission/index.d.ts +0 -0
  369. /package/{grid → dist/angular-formio/grid}/submission/index.d.ts.map +0 -0
  370. /package/{grid → dist/angular-formio/grid}/types/grid-column.d.ts +0 -0
  371. /package/{grid → dist/angular-formio/grid}/types/grid-column.d.ts.map +0 -0
  372. /package/{grid → dist/angular-formio/grid}/types/grid-footer-positions.d.ts +0 -0
  373. /package/{grid → dist/angular-formio/grid}/types/grid-footer-positions.d.ts.map +0 -0
  374. /package/{grid → dist/angular-formio/grid}/types/grid-header.d.ts +0 -0
  375. /package/{grid → dist/angular-formio/grid}/types/grid-header.d.ts.map +0 -0
  376. /package/{index.d.ts → dist/angular-formio/index.d.ts} +0 -0
  377. /package/{index.d.ts.map → dist/angular-formio/index.d.ts.map} +0 -0
  378. /package/{manager → dist/angular-formio/manager}/create/create.component.d.ts +0 -0
  379. /package/{manager → dist/angular-formio/manager}/create/create.component.d.ts.map +0 -0
  380. /package/{manager → dist/angular-formio/manager}/delete/delete.component.d.ts +0 -0
  381. /package/{manager → dist/angular-formio/manager}/delete/delete.component.d.ts.map +0 -0
  382. /package/{manager → dist/angular-formio/manager}/edit/edit.component.d.ts +0 -0
  383. /package/{manager → dist/angular-formio/manager}/edit/edit.component.d.ts.map +0 -0
  384. /package/{manager → dist/angular-formio/manager}/form/form.component.d.ts +0 -0
  385. /package/{manager → dist/angular-formio/manager}/form/form.component.d.ts.map +0 -0
  386. /package/{manager → dist/angular-formio/manager}/form-manager.config.d.ts +0 -0
  387. /package/{manager → dist/angular-formio/manager}/form-manager.config.d.ts.map +0 -0
  388. /package/{manager → dist/angular-formio/manager}/form-manager.module.d.ts +0 -0
  389. /package/{manager → dist/angular-formio/manager}/form-manager.module.d.ts.map +0 -0
  390. /package/{manager → dist/angular-formio/manager}/form-manager.routes.d.ts +0 -0
  391. /package/{manager → dist/angular-formio/manager}/form-manager.routes.d.ts.map +0 -0
  392. /package/{manager → dist/angular-formio/manager}/formio-angular-manager.d.ts.map +0 -0
  393. /package/{manager → dist/angular-formio/manager}/index/index.component.d.ts +0 -0
  394. /package/{manager → dist/angular-formio/manager}/index/index.component.d.ts.map +0 -0
  395. /package/{manager → dist/angular-formio/manager}/index.d.ts +0 -0
  396. /package/{manager → dist/angular-formio/manager}/index.d.ts.map +0 -0
  397. /package/{manager → dist/angular-formio/manager}/submission/delete/delete.component.d.ts +0 -0
  398. /package/{manager → dist/angular-formio/manager}/submission/delete/delete.component.d.ts.map +0 -0
  399. /package/{manager → dist/angular-formio/manager}/submission/edit/edit.component.d.ts +0 -0
  400. /package/{manager → dist/angular-formio/manager}/submission/edit/edit.component.d.ts.map +0 -0
  401. /package/{manager → dist/angular-formio/manager}/submission/index/index.component.d.ts +0 -0
  402. /package/{manager → dist/angular-formio/manager}/submission/index/index.component.d.ts.map +0 -0
  403. /package/{manager → dist/angular-formio/manager}/submission/submission/submission.component.d.ts +0 -0
  404. /package/{manager → dist/angular-formio/manager}/submission/submission/submission.component.d.ts.map +0 -0
  405. /package/{manager → dist/angular-formio/manager}/submission/view/view.component.d.ts +0 -0
  406. /package/{manager → dist/angular-formio/manager}/submission/view/view.component.d.ts.map +0 -0
  407. /package/{manager → dist/angular-formio/manager}/view/view.component.d.ts +0 -0
  408. /package/{manager → dist/angular-formio/manager}/view/view.component.d.ts.map +0 -0
  409. /package/{resource → dist/angular-formio/resource}/create/create.component.d.ts +0 -0
  410. /package/{resource → dist/angular-formio/resource}/create/create.component.d.ts.map +0 -0
  411. /package/{resource → dist/angular-formio/resource}/delete/delete.component.d.ts +0 -0
  412. /package/{resource → dist/angular-formio/resource}/delete/delete.component.d.ts.map +0 -0
  413. /package/{resource → dist/angular-formio/resource}/edit/edit.component.d.ts +0 -0
  414. /package/{resource → dist/angular-formio/resource}/edit/edit.component.d.ts.map +0 -0
  415. /package/{resource → dist/angular-formio/resource}/formio-angular-resource.d.ts.map +0 -0
  416. /package/{resource → dist/angular-formio/resource}/index/index.component.d.ts +0 -0
  417. /package/{resource → dist/angular-formio/resource}/index/index.component.d.ts.map +0 -0
  418. /package/{resource → dist/angular-formio/resource}/index.d.ts +0 -0
  419. /package/{resource → dist/angular-formio/resource}/index.d.ts.map +0 -0
  420. /package/{resource → dist/angular-formio/resource}/resource.component.d.ts +0 -0
  421. /package/{resource → dist/angular-formio/resource}/resource.component.d.ts.map +0 -0
  422. /package/{resource → dist/angular-formio/resource}/resource.config.d.ts +0 -0
  423. /package/{resource → dist/angular-formio/resource}/resource.config.d.ts.map +0 -0
  424. /package/{resource → dist/angular-formio/resource}/resource.module.d.ts +0 -0
  425. /package/{resource → dist/angular-formio/resource}/resource.module.d.ts.map +0 -0
  426. /package/{resource → dist/angular-formio/resource}/resource.routes.d.ts +0 -0
  427. /package/{resource → dist/angular-formio/resource}/resource.routes.d.ts.map +0 -0
  428. /package/{resource → dist/angular-formio/resource}/resource.service.d.ts +0 -0
  429. /package/{resource → dist/angular-formio/resource}/resource.service.d.ts.map +0 -0
  430. /package/{resource → dist/angular-formio/resource}/resources.service.d.ts +0 -0
  431. /package/{resource → dist/angular-formio/resource}/resources.service.d.ts.map +0 -0
  432. /package/{resource → dist/angular-formio/resource}/view/view.component.d.ts +0 -0
  433. /package/{resource → dist/angular-formio/resource}/view/view.component.d.ts.map +0 -0
  434. /package/{types → dist/angular-formio/types}/alerts-position.d.ts +0 -0
  435. /package/{types → dist/angular-formio/types}/alerts-position.d.ts.map +0 -0
  436. /package/{types → dist/angular-formio/types}/formio-metadata.d.ts +0 -0
  437. /package/{types → dist/angular-formio/types}/formio-metadata.d.ts.map +0 -0
  438. /package/{types → dist/angular-formio/types}/formio-submission.d.ts +0 -0
  439. /package/{types → dist/angular-formio/types}/formio-submission.d.ts.map +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1154 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ## [Unreleased: 7.5.0-rc.2]
6
+ ### Changed
7
+ - Bump follow-redirects from 1.15.4 to 1.15.6
8
+ - Bump es5-ext from 0.10.62 to 0.10.64
9
+ - Bump ip from 2.0.0 to 2.0.1
10
+ - Bump follow-redirects from 1.15.3 to 1.15.4
11
+ - FIO-8004: Fixed loader incorrectly showing in embed reports
12
+ - Bump webpack-dev-middleware from 5.3.3 to 5.3.4
13
+
14
+ ### Fixed
15
+ - FIO-7443: Fixes authorization error recieved after logout, not allowшng to log in again
16
+ - FIO-7369: fixed issue with draft state submission
17
+ - Fixing General access to Manager using formadmin formbuilder roles
18
+ - FIO-7611: DataSource not Triggering on change events due to fromSubmission Flag
19
+ - fixed issue with providing form type
20
+
21
+ ## 7.5.0-rc.1
22
+ ### Breaking Changes
23
+ - This version supports Angular 17 with the 5.x Renderer. To use Angular 16 with the 5.x renderer, you will need to install this version and then use the following in your application.
24
+
25
+ ```
26
+ npm install @formio/js
27
+ ```
28
+
29
+ ## 7.0.0
30
+ ### Breaking Changes
31
+ - This version supports Angular 17 with the 4.x Renderer. You would use this version along with this command to install the renderer.
32
+
33
+ ```
34
+ npm install formiojs
35
+ ```
36
+
37
+ ## 6.5.0
38
+ ### Breaking Changes
39
+ - This version uses the 5.x version of the @formio/js renderer. To use Angular 16 with the 5.x renderer, you will need to install this version and then use the following in your application.
40
+
41
+ ```
42
+ npm install @formio/js
43
+ ```
44
+
45
+ ## 6.0.0
46
+ ### Breaking Changes
47
+ - Version 6.0 will official deprecate the Custom Components using Angular Elements feature. https://github.com/formio/angular/wiki/Custom-Components-with-Angular-Elements. If you wish to still use this feature, you will need to manually migrate the component code provided @ https://github.com/formio/angular/tree/5.5.x/projects/angular-formio/src/custom-component into your own application.
48
+
49
+ - The **FormioAppConfig** now uses InjectionTokens to properly instantiate the FormioAppConfig class with the proper setBaseUrl and setProjectUrl's. This technically is not a "breaking" change since nothing should ever really change from your applications. The only thing that is different, however, is that as soon as you inject the FormioAppConfig into your application, it will have already configured the "Formio" class to point to the correct base and project url configurations. To read about InjectionToken's please read https://angular.io/api/core/InjectionToken for information on how this works.
50
+
51
+ As with before 6.x, you can provide configurations using the following method.
52
+
53
+ **app.module.ts**
54
+ ```ts
55
+ import { AppConfig } from './app.config';
56
+
57
+ @NgModule({
58
+ ...
59
+ providers: [
60
+ {provide: FormioAppConfig, useValue: {
61
+ baseUrl: 'https://api.form.io',
62
+ projectUrl: 'https://myproject.form.io'
63
+ }},
64
+ ...
65
+ ]
66
+ })
67
+ export class AppModule { }
68
+ ```
69
+
70
+ What changes is that this "useValue" becomes the InjectionToken to the FormioAppConfig class, which will now properly instantiate the class with the correct base and project urls.
71
+
72
+ ### New Features
73
+ - 6.x now introduces a new way to easily embed form's, form builders, and the reporting ui into your applications. This leverages the new lazy-loading rendering method described @ https://github.com/formio/formio.js. To use this method, you can do the following within your applications.
74
+
75
+ ```ts
76
+ import { FormioEmbedModule } from '@formio/angular/embed';
77
+
78
+ @NgModule({
79
+ imports: [
80
+ ...,
81
+ FormioEmbedModule
82
+ ]
83
+ })
84
+ ```
85
+
86
+ You can now easily embed a lasy-loaded form renderer into your application using the following.
87
+
88
+ ```html
89
+ <formio src="https://examples.form.io/example"></formio>
90
+ ```
91
+
92
+ The difference between this and the previous method of embedding is that this will only add approximatly 20kb to your application build size since the renderer is lazy-loaded at runtime.
93
+
94
+ ### Changed
95
+ - Upgrade to Angular 16
96
+ - Upgrade to Bootstrap 5
97
+ - Fixed resource module to streamline loading and unloading resources.
98
+ - FIO-6493: added wrapper for the formio report
99
+
100
+ ### Fixed
101
+ - FIO-6197: fixed issue with valid token after logging off
102
+ - FIO-7232 removed permissions button from FormGridBody
103
+
104
+ ## 5.5.0-rc.10
105
+ ### Changed
106
+ - Upgrade dependencies.
107
+
108
+ ### Fixed
109
+ - fix common ComponentOptions interface for angular 15
110
+ - FIO-6117: fixed an issue where submitDone event is not emitted after submission is saved (need for boxsign action)
111
+ - Fixed change event undefined on template issue
112
+
113
+ ## 5.5.0-rc.9
114
+ ### Fixed
115
+ - FIO-5042: Logout Oauth Feature
116
+ - Fixing issue where the validation is triggering on pristine forms.
117
+
118
+ ## 5.4.0-rc.2
119
+ ### Fixed
120
+ - FIO-5423: Reseting the Display after on change
121
+
122
+ ## 5.4.0-rc.1
123
+ ### Changed
124
+ - Upgrade to Angular 14
125
+ - set renderMode to html when viewOnly flag is set to true
126
+ - FIO-5278: added component instance to Event object
127
+ - FIO-4655: update FJS to fix tippyjs tooltips in formmanager
128
+ - Exporting the custom-tag-service.ts service.
129
+ - Toggle to hide the loading spinner
130
+
131
+ ## 5.3.0
132
+ ### Changed
133
+ - Official Release off of 5.3.0-rc.3
134
+
135
+ ## 5.3.0-rc.3
136
+ ### Changed
137
+ - Rebiuld.
138
+
139
+ ### Fixed
140
+ - FIO-4925: Fixes not whole submission present for wizard
141
+ - FIO-5128: allow support for data table row based events for angular formio component
142
+ - FIO-5128 fixed rowClick event
143
+ - FIO-5147: added custom actions and select rows
144
+ - FIO-5172: Fixes validation errors shown on form load in apps
145
+ - FIO-5307: Fixes ckeditor recreated multiple times on form save
146
+
147
+ ## 5.2.2
148
+ ### Changed
149
+ - Official Release
150
+
151
+ ## 5.2.1-rc.2
152
+ ### Changed
153
+ - No changes.
154
+
155
+ ## 5.2.1-rc.1
156
+ ### Fixed
157
+ - FIO-3969: Initialize the noeval flag correctly.
158
+
159
+ ## 5.2.0
160
+ ### Changed
161
+ - Official Release
162
+ - Upgrade formiojs@4.13.8
163
+ - Upgrade @angular-devkit/build-angular@12.2.10 @angular/animations@12.2.10 @angular/cli@12.2.10 @angular/common@12.2.10 @angular/compiler@12.2.10 @angular/compiler-cli@12.2.10 @angular/core@12.2.10 @angular/elements@12.2.10 @angular/forms@12.2.10 @angular/platform-browser@12.2.10 @angular/platform-browser-dynamic@12.2.10 @angular/router@12.2.10 ng-packagr@12.2.3 @types/jasmine@3.10.0 jasmine-core@3.10.0 rxjs@7.4.0 ts-node@10.3.0
164
+
165
+ ## 5.2.0-rc.2
166
+ ### Fixed
167
+ - FIO-3659: Previous Submission in New Submission
168
+
169
+ ## 5.2.0-rc.1
170
+ ### Changed
171
+ - Adding Angular 12 support.
172
+ - Upgrade dependencies.
173
+
174
+ ### Fixed
175
+ - FMG-108: remove reloading of PDF form after editing
176
+ - Cherry-pick of VPAT-755 Added title to delete buttons in forms grid
177
+ - FMG-15: Routes for manager and permissions
178
+
179
+ ## 5.1.1
180
+ ### Changed
181
+ - No changes. Released 5.1.1-rc.1 as official release.
182
+
183
+ ## 5.1.1-rc.1
184
+ ### Added
185
+ - FIO-2841 Added event parameter to onSearch for event usage in FMG
186
+ - FIO-1178: add timeSince lines
187
+
188
+ ### Fixed
189
+ - FIO-2686: Date Time is not attaching timezone metadata to the submission
190
+
191
+ ## 5.1.0
192
+ ### Changed
193
+ - Upgrade formiojs@4.13.0
194
+
195
+ ## 5.0.3-rc.2
196
+ ### Changed
197
+ - Upgrade formiojs@4.13.0-rc.20
198
+
199
+ ### Fixed
200
+ - FIO-1482: fixed an issue where form submission object is not updated after submitting and new submission is created after each submission editing
201
+
202
+ ## 5.0.3-rc.1
203
+ ### Fixed
204
+ - Fix search error during typing and fixing unexpected validation errors
205
+
206
+ ### Changed
207
+ - FIO-1178: add classes for customization
208
+
209
+ ## 5.0.2
210
+ - Upgrade formiojs@4.12.7
211
+
212
+ ## 5.0.1
213
+ - Upgrade formiojs@4.12.7
214
+
215
+ ## 5.0.1-rc.5
216
+ ### Fixed
217
+ - Reverse compatibility issue with the Form Manager Delete component.
218
+
219
+ ## 5.0.1-rc.4
220
+ ### Fixed
221
+ - FMG-131: fix removing a form from the list when it is the only one on the page.
222
+
223
+ ## 5.0.1-rc.3
224
+ ### Fixed
225
+ - Published package.
226
+
227
+ ## 5.0.1-rc.2
228
+ ### Changed
229
+ - Upgrade formiojs@4.13.0-rc.6
230
+
231
+ ## 5.0.1-rc.1
232
+ ### Changed
233
+ - Upgrade formiojs@4.13.0-rc.5
234
+ ### Changed
235
+ - Changes for 0.2.0 accessibility functionality release of form manager
236
+
237
+ ## 5.0.0
238
+ ### Changed
239
+ - Upgrade formiojs@4.12.4
240
+
241
+ ### Fixed
242
+ - FMG-61: When there are no forms on the ‘Forms’ page or no submissions on the ‘View Data’ page, 1-0/0 number of forms is displayed
243
+
244
+ ## 5.0.0-rc.5
245
+ ### Changed
246
+ - NPM package to @formio/angular
247
+
248
+ ## 5.0.0-rc.4
249
+ ### Fixed
250
+ - Issues where errors would throw on the form edit page.
251
+ - Problem where the Share link can not be clicked.
252
+
253
+ ## 5.0.0-rc.3
254
+ ### Changed
255
+ - Upgrade formiojs@4.12.4-rc.2
256
+ - FMG-29: Add password reset for users
257
+
258
+ ### Fixed
259
+ - FIO-923 | Form Loading inside FormManager app is causing 3 API requests to the server
260
+ - FMG-135 Regression 1.96.1-rc.2| PDF overlay not saving when I click save
261
+
262
+ ## 5.0.0
263
+ ### Changed
264
+ - formiojs is now a peerDependency. You need to install it seperately.
265
+ - Upgrade Angular to support v10 and v11.
266
+
267
+ ## 4.11.1-rc.6
268
+ ### Changed
269
+ - Upgrade formiojs@4.12.1-rc.9
270
+
271
+ ## 4.11.1-rc.5
272
+ ### Changed
273
+ - Upgrade formiojs@4.12.1-rc.8
274
+
275
+ ## 4.11.1-rc.4
276
+ ### Changed
277
+ - Upgrade formiojs@4.12.1-rc.7
278
+
279
+ ## 4.11.1-rc.3
280
+ ### Changed
281
+ - Upgrade formiojs@4.12.1-rc.5
282
+
283
+ ## 4.11.1-rc.2
284
+ ### Changed
285
+ - Upgrade formiojs@4.12.1-rc.4
286
+
287
+ ## 4.11.0
288
+ ### Changed
289
+ - Upgrade formiojs@4.12.0
290
+
291
+ ## 4.10.0
292
+ ### Changed
293
+ - Upgrade formiojs@4.12.0
294
+
295
+ ## 4.10.0
296
+ ### Changed
297
+ - Upgrade formiojs@4.12.0
298
+
299
+ ## 4.10.0-rc.11
300
+ ### Changed
301
+ - Upgrade formiojs@4.12.0-rc.19
302
+
303
+ ## 4.10.0-rc.10
304
+ ### Changed
305
+ - Upgrade formiojs@4.12.0-rc.18
306
+
307
+ ## 4.10.0-rc.9
308
+ ### Changed
309
+ - Upgrade formiojs@4.12.0-rc.16
310
+
311
+ ## 4.10.0-rc.8
312
+ ### Changed
313
+ - Upgrade formiojs@4.12.0-rc.16
314
+
315
+ ## 4.10.0-rc.7
316
+ ### Changed
317
+ - Upgrade formiojs@4.12.0-rc.15
318
+
319
+ ## 7.9.11-rc.16
320
+ ### Changed
321
+ - Upgrade formiojs@4.11.2-rc.1
322
+
323
+ ## 7.9.3-rc.6
324
+ ### Changed
325
+ - Upgrade formiojs@4.11.2-rc.1
326
+
327
+ ## 7.9.3-rc.5
328
+ ### Changed
329
+ - Upgrade formiojs@4.11.2-rc.1
330
+
331
+ ## 7.9.3-rc.5
332
+ ### Changed
333
+ - Upgrade formiojs@4.11.2-rc.1
334
+
335
+ ## 4.10.0-rc.6
336
+ ### Changed
337
+ - Upgrade formiojs@4.12.0-rc.14
338
+
339
+ ## 4.10.0-rc.5
340
+ ### Changed
341
+ - Upgrade formiojs@4.12.0-rc.13
342
+
343
+ ## 4.10.0-rc.4
344
+ ### Changed
345
+ - Upgrade formiojs@4.12.0-rc.11
346
+
347
+ ## 4.10.0-rc.3
348
+ ### Changed
349
+ - Upgrade formiojs@4.12.0-rc.10
350
+
351
+ ## 4.10.0-rc.2
352
+ ### Changed
353
+ - Upgrade formiojs@4.12.0-rc.5
354
+
355
+ ## 4.10.0-rc.1
356
+ ### Changed
357
+ - Upgrade formiojs@4.12.0-rc.4
358
+
359
+ ## 4.9.6-rc.1
360
+ ### Changed
361
+ - Upgrade formiojs@4.11.3-rc.1
362
+
363
+ ## 4.9.5
364
+ ### Changed
365
+ - Upgrade formiojs@4.11.2
366
+
367
+ ## 4.9.5-rc.4
368
+ ### Changed
369
+ - Upgrade formiojs@4.11.2-rc.5
370
+
371
+ ## 4.9.5-rc.3
372
+ ### Changed
373
+ - Upgrade formiojs@4.11.2-rc.4
374
+
375
+ ## 4.9.5-rc.2
376
+ ### Changed
377
+ - Upgrade formiojs@4.11.2-rc.2
378
+
379
+ ## 4.9.5-rc.1
380
+ ### Changed
381
+ - Upgrade formiojs@4.11.2-rc.1
382
+
383
+ ## 4.9.4-rc.1
384
+ ### Changed
385
+ - Upgrade formiojs@4.11.2-rc.1
386
+
387
+ ## 4.9.3
388
+ ### Changed
389
+ - Upgrade formiojs@4.11.1
390
+
391
+ ## 4.9.3-rc.8
392
+ ### Changed
393
+ - Upgrade formiojs@4.11.1-rc.9
394
+
395
+ ## 4.9.3-rc.7
396
+ ### Changed
397
+ - Upgrade formiojs@4.11.1-rc.9
398
+
399
+ ## 4.9.3-rc.6
400
+ ### Changed
401
+ - Upgrade formiojs@4.11.1-rc.8
402
+
403
+ ## 4.9.3-rc.5
404
+ ### Changed
405
+ - Upgrade formiojs@4.11.1-rc.6
406
+
407
+ ## 4.9.3-rc.4
408
+ ### Changed
409
+ - Upgrade formiojs@4.11.1-rc.5
410
+
411
+ ### Fixed
412
+ - FVP-008: Fixed an issue for ViewPro where the Server Validation message is not being removed when validation is honored.
413
+
414
+ ## 4.9.3-rc.3
415
+ ### Changed
416
+ - Downgrade corejs@3.5.0 to resolve IE11 issues.
417
+
418
+ ### Fixed
419
+ - FMG-54 Restoring grid query
420
+
421
+ ## 4.9.3-rc.2
422
+ ### Changed
423
+ - Upgrade formiojs@4.11.1-rc.3
424
+
425
+ ## 4.9.3-rc.1
426
+ ### Changed
427
+ - Upgrade formiojs@4.11.1-rc.1
428
+
429
+ ## 4.9.2
430
+ ### Changed
431
+ - Upgrade formiojs@4.11.0
432
+
433
+ ## 4.9.1-rc.2
434
+ ### Changed
435
+ - Upgrade formiojs@4.11.0-rc.4
436
+
437
+ ## 4.9.1-rc.1
438
+ ### Changed
439
+ - Upgrade formiojs@4.11.0-rc.2
440
+
441
+ ### Fixed
442
+ - Fix (Grid): footer is not visible using FormComponents
443
+
444
+ ## 4.9.0
445
+ ### Changed
446
+ - Upgrade formiojs@4.10.5
447
+
448
+ ## 4.9.0-rc.4
449
+ ### Changed
450
+ - Upgrade formiojs@4.10.5-rc.5
451
+
452
+ ## 4.9.0-rc.3
453
+ ### Changed
454
+ - Upgrade formiojs@4.10.5-rc.4
455
+
456
+ ## 4.9.0-rc.2
457
+ ### Changed
458
+ - Upgrade formiojs@4.10.5-rc.2
459
+
460
+ ## 4.9.0-rc.1
461
+ ### Fixed
462
+ - FJS-1014: Fixed an issue where Required fields are validating when form is initialized when using a form in FormManager
463
+
464
+ ### Added
465
+ - Feat (Grid): added ability to specify footer positions: top, bottom, both
466
+
467
+ ## 4.8.4
468
+ ### Changed
469
+ - Upgrade formiojs@4.10.4
470
+
471
+ ## 4.8.3
472
+ ### Changed
473
+ - Upgrade formiojs@4.10.3
474
+
475
+ ## 4.8.3-rc.6
476
+ ### Changed
477
+ - Upgrade formiojs@4.10.3-rc.6
478
+
479
+ ## 4.8.3-rc.5
480
+ ### Changed
481
+ - Upgrade formiojs@4.10.3-rc.5
482
+
483
+ ## 4.8.3-rc.4
484
+ ### Changed
485
+ - Upgrade formiojs@4.10.3-rc.4
486
+
487
+ ## 4.8.3-rc.3
488
+ ### Changed
489
+ - Upgrade formiojs@4.10.3-rc.3
490
+
491
+ ## 4.8.3-rc.2
492
+ ### Changed
493
+ - Upgrade formiojs@4.10.3-rc.2
494
+
495
+ ## 4.8.3-rc.1
496
+ ### Added
497
+ - FormioBaseComponent: add validateOnInit logic
498
+ - Upgrade formiojs@4.10.3-rc.1
499
+
500
+ ## 4.8.2
501
+ ### Changed
502
+ - Upgrade formiojs@4.10.2
503
+
504
+ ## 4.8.1
505
+ ### Changed
506
+ - Upgrade formiojs@4.10.1
507
+
508
+ ## 4.8.0
509
+ ### Changed
510
+ - Upgrade formiojs@4.10.0
511
+
512
+ ## 4.8.0-rc.9
513
+ ### Changed
514
+ - Upgrade formiojs@4.10.0-rc.13
515
+
516
+ ## 4.8.0-rc.8
517
+ ### Changed
518
+ - Upgrade formiojs@4.10.0-rc.12
519
+
520
+ ## 4.8.0-rc.7
521
+ ### Changed
522
+ - Upgrade formiojs@4.10.0-rc.11
523
+
524
+ ## 4.8.0-rc.6
525
+ ### Changed
526
+ - Upgrade formiojs@4.10.0-rc.9
527
+ - Upgrade @types/node@14.0.10, fs-extra@9.0.1, karma-coverage-istanbul-reporter@3.0.3, ts-node@8.10.2, karma-jasmine@3.3.1, rollup@2.13.1
528
+
529
+ ## 4.8.0-rc.5
530
+ ???
531
+
532
+ ## 4.8.0-rc.4
533
+ ### Changed
534
+ - Upgrade formiojs@4.10.0-rc.5
535
+
536
+ ## 4.8.0-rc.3
537
+ ### Changed
538
+ - Upgrade formiojs@4.10.0-rc.4
539
+
540
+ ## 4.8.0-rc.2
541
+ ### Added
542
+ - ``FormioMetadata`` interface
543
+
544
+ ### Changed
545
+ - Upgrade formiojs@4.10.0-rc.3
546
+
547
+ ## 4.8.0-rc.1
548
+ ### Changed
549
+ - Upgraded formiojs@4.10.0-rc.2
550
+
551
+ ## 4.8.0-beta.7
552
+ ### Changed
553
+ - Upgrade formiojs@4.10.0-beta.19
554
+
555
+ ### Fixed
556
+ - Fix(manager): bug with default page number
557
+ - Fix(FormioAlert): add html content parser
558
+
559
+ ## 4.8.0-beta.6
560
+ ### Changed
561
+ - Upgrade formiojs@4.10.0-beta.16
562
+
563
+ ## 4.8.0-beta.5
564
+ ### Fixed
565
+ - `FormioResourceIndexComponent` navigating outside of `ngZone` on row click and on creating new submission
566
+
567
+ ### Changed
568
+ - Upgrade formiojs@4.10.0-beta.15
569
+
570
+ ## 4.8.0-beta.4
571
+ ### Changed
572
+ - Make stateless component of formio-loader instead of injectable service.
573
+ - Upgrade formiojs@4.9.23
574
+
575
+ ## 4.8.0-beta.3
576
+ ### Fixed
577
+ - Build error: `File not found with singular glob: <path_to_repo>/build/index.js`
578
+
579
+ ### Changed
580
+ - Updated `typescript@3.8.2`
581
+
582
+ ## 4.8.0-beta.2
583
+ ### Changed
584
+ - Upgrade formiojs@4.9.21
585
+
586
+ ### Added
587
+ - `options.alertsPosition` setting with `top`, `bottom`, `both` and `none` options that allows choosing where to render alerts.
588
+ - `options.alertsPosition = AlertsPosition.none` is equal to `options.disableAlerts = true`
589
+
590
+ ## 4.8.0-beta.1
591
+ ### Changed
592
+ - Add strong typing for grids components
593
+
594
+ ### Added
595
+ - Add possibility to set `columns` via property
596
+ - `ComponentInstance`, `GridHeader`, `GridColumn`, `FormioSubmission` interfaces
597
+ - `SortType`, `FormioSubmissionState` enums
598
+
599
+ ### Fixed
600
+ - Bug with setting `data.key` instead of full path to the header
601
+
602
+ ## 4.7.6
603
+ ### Changed
604
+ - Upgrade formiojs@4.9.20
605
+
606
+ ## 4.7.5
607
+ ### Changed
608
+ - Upgrade formiojs@4.9.19
609
+
610
+ ## 4.7.5-rc.3
611
+ ### Changed
612
+ - Upgrade formiojs@4.9.19-rc.3
613
+
614
+ ## 4.7.5-rc.2
615
+ ### Changed
616
+ - Upgrade formiojs@4.9.19-rc.2
617
+
618
+ ### Added
619
+ - Add possibility to pass columns
620
+
621
+ ## 4.7.5-rc.1
622
+ ### Changed
623
+ - Upgrade formiojs@4.9.19-rc.1
624
+
625
+ ## 4.7.4
626
+ ### Changed
627
+ - Upgrade formiojs@4.9.17
628
+
629
+ ## 4.7.3
630
+ ### Changed
631
+ - Upgrade formiojs@4.9.16
632
+ - Upgrade @angular/cli@9.1.1, @angular/common@9.1.1, @angular/compiler@9.1.1, @angular/compiler-cli@9.1.1, @angular/core@9.1.1, @angular/elements@9.1.1, @angular/forms@9.1.1, @angular/platform-browser@9.1.1, @angular/platform-browser-dynamic@9.1.1, @angular/router@9.1.1, @types/node@13.11.1, fork-ts-checker-webpack-plugin@4.1.3, rollup@2.3.4, url-loader@4.1.0
633
+
634
+ ## 4.7.2
635
+ ### Fixed
636
+ - Fixed `FormioResourceComponent` re-initializing on any URL change even if it's not submission id change
637
+
638
+ ### Removed
639
+ - Excess `.js` files
640
+
641
+ ### Changed
642
+ - Upgrade formiojs@4.9.15
643
+
644
+ ## 4.7.1
645
+ ### Changed
646
+ - Upgrade formiojs@4.9.12
647
+
648
+ ## 4.7.0
649
+ ### Changed
650
+ - Upgrade formiojs@4.9.10
651
+ - Refactored request service.
652
+
653
+ ## 4.6.20
654
+ ### Changed
655
+ - Upgrade formiojs@4.9.9
656
+ - Separate elements definition from core
657
+
658
+ ## 4.6.19
659
+ ### Changed
660
+ - Upgrade formiojs@4.9.8
661
+
662
+ ### Fixed
663
+ - Hide components property.
664
+
665
+ ## 4.6.18
666
+ ### Changed
667
+ - Upgrade formiojs@4.9.7
668
+
669
+ ## 4.6.17
670
+ ### Changed
671
+ - Upgrade formiojs@4.9.5
672
+
673
+ ## 4.6.15
674
+ ### Chnaged
675
+ - Upgrade formiojs@4.9.3
676
+
677
+ ## 4.6.14
678
+ ### Changed
679
+ - Upgrade formiojs@4.9.2
680
+
681
+ ## 4.6.13
682
+ ### Chnaged
683
+ - Upgrade formiojs@4.9.0
684
+
685
+ ## 4.6.12
686
+ ### Changed
687
+ - Upgrade formiojs@4.9.0-rc.12
688
+ - Upgrade @angular/cli@9.0.7, @angular/common@9.0.7, @angular/compiler@9.0.7, @angular/compiler-cli@9.0.7, @angular/core@9.0.7, @angular/elements@9.0.7, @angular/forms@9.0.7, @angular/platform-browser@9.0.7, @angular/platform-browser-dynamic@9.0.7, @angular/router@9.0.7, @types/node@13.9.2, rollup@2.1.0, ts-node@8.7.0
689
+
690
+ ## 4.6.11
691
+ ### Changed
692
+ - Upgrade formiojs@4.9.0-rc.11
693
+ - Made formioReady public so it can be used from the outside.
694
+
695
+ ## 4.6.9
696
+ ### Fixed
697
+ - Resource Service `loadForm` changes not being reflected on the view
698
+
699
+ ## 4.6.7, 4.6.8
700
+ ### Fixed
701
+ - Reverted changes to override the noValidate flag on setting submissions. Was able to do this with fixes to core renderer.
702
+
703
+ ### Changed
704
+ - Upgrade formiojs@4.9.0-rc.8
705
+
706
+ ## 4.6.6
707
+ ### Fixed
708
+ - Problem where an error would get thrown if a non Form.io error is thrown.
709
+
710
+ ## 4.6.5
711
+ ### Fixed
712
+ - Issues with index view for resources not always updating content.
713
+
714
+ ### Changed
715
+ - Upgrade formiojs@4.9.0-rc.7
716
+
717
+ ## 4.6.4
718
+ ### Changed
719
+ - Upgrade formiojs@4.9.0-rc.6
720
+
721
+ ## 4.6.3
722
+ ### Changed
723
+ - Router to be public so it can be extended.
724
+
725
+ ## 4.6.2
726
+ ### Changed
727
+ - Upgrade formiojs@4.9.0-rc.5
728
+
729
+ ### Added
730
+ - Ability to click on errors to take you to them in the form.
731
+
732
+ ### Fixed
733
+ - `FormioResourceComponent` not refreshing when navigating from one submission to another
734
+
735
+ ## 4.6.0
736
+ ### Changed
737
+ - Upgrade formio.js@4.9.0-rc.4
738
+
739
+ ## 4.5.8
740
+ ### Fixed
741
+ - `<formio>` component's `setForm` method not taking into account current submission
742
+
743
+ ## 4.5.7
744
+ ### Changed
745
+ - Upgrade formio.js@4.9.0-beta.8
746
+
747
+ ## 4.5.5
748
+ ### Changed
749
+ - Upgrade formio.js@4.9.0-beta.6
750
+
751
+ ## 4.5.4
752
+ ### Changed
753
+ - Upgrade formio.js@4.9.0-beta.5
754
+
755
+ ## 4.5.3
756
+ ### Changed
757
+ - Upgrade formio.js@4.9.0-beta.4
758
+
759
+ ## 4.5.1
760
+ ### Changed
761
+ - Upgrade formio.js@4.8.1
762
+
763
+ ### Fixed
764
+ - Issues with colliding promises.
765
+
766
+ ## 4.5.0
767
+ ### Changed
768
+ - Upgrade formio.js@4.8.0
769
+
770
+ ## 4.4.6
771
+ ### Added
772
+ - The ability to import from 'angular-formio/core' to skip over the custom component classes that are only compatible with Angular 7 & 8.
773
+
774
+ ## 4.4.5
775
+ ### Changed
776
+ - Upgrade formio.js to 4.8.0-rc.14
777
+
778
+ ## 4.4.4
779
+ ### Changed
780
+ - Upgrade formio.js to 4.8.0-rc.13
781
+
782
+ ### Added
783
+ - Support emit event from Custom Component
784
+
785
+ ## 4.4.3
786
+ ### Fixed
787
+ - Field options for custom components.
788
+
789
+ ### Changed
790
+ - Upgrade formio.js to 4.8.0-rc.12 to resolve builder issues.
791
+
792
+ ## 4.4.2
793
+ ### Changed
794
+ - Upgrade formio.js to 4.8.0-rc.11 to resolve promise issues with Angular.
795
+
796
+ ## 4.4.1
797
+ ### Changed
798
+ - Moved noeval code into the base class so Angular Material can use it.
799
+ - Upgrade formio.js to 4.8.0-rc.10
800
+
801
+ ## 4.4.0
802
+ ### Added
803
+ - Ability to use OAuth for authentication (Okta, SAML)
804
+
805
+ ### Changed
806
+ - Upgrade formio.js to 4.8.0-rc.9
807
+
808
+ ## 4.3.13
809
+ ### Fixed
810
+ - Issues where this module would not run in Angular 7 applications.
811
+
812
+ ### Changed
813
+ - Upgrade formio.js to 4.8.0-rc.5
814
+
815
+ ## 4.3.12
816
+ ### Fixed
817
+ - Hard depependency on @angular/elements v8.
818
+
819
+ ### Changed
820
+ - Upgrade formio.js to 4.8.0-rc.3
821
+
822
+ ## 4.3.11
823
+ ### Changed
824
+ - Upgrade formiojs to 4.8.0-rc.2
825
+
826
+ ## 4.3.10
827
+ ### Changed
828
+ - Upgrade formiojs to 4.8.0-rc.1
829
+
830
+ ## 4.3.9
831
+ ### Changed
832
+ - Upgrade formiojs to 4.8.0-beta.9
833
+
834
+ ## 4.3.8
835
+ ### Fixed
836
+ - The ResourceCompoennt class to not have a private constructor argument which breaks extended classes.
837
+
838
+ ## 4.3.7
839
+ ### Changed
840
+ - Upgrade formiojs to 4.8.0-beta.8
841
+
842
+ ## 4.3.6
843
+ ### Fixed
844
+ - UI not updating after getting user permissions in ```FormioResourceComponent```
845
+
846
+ ### Changed
847
+ - Upgrade formiojs to 4.8.0-beta.6
848
+
849
+ ## 4.3.5
850
+ ### Changed
851
+ - Upgraded formiojs to 4.8.0-beta.5
852
+
853
+ ## 4.3.4
854
+ ### Changed
855
+ - Upgrade formio.js to 4.8.0-beta.4
856
+ - Fixed the noeval paramter to turn off eval into the renderer.
857
+ - Upgraded core-js@3.4.7, @angular/cli@8.3.20, @types/node@12.12.14, css-loader@3.2.1, rollup@1.27.8, style-loader@1.0.1, systemjs@6.1.7, ts-node@8.5.4, url-loader@3.0.0
858
+
859
+ ## 4.3.3
860
+ ### Changed
861
+ - Explicit field options for custom components
862
+ - Upgrade formio.js to 4.7.8
863
+
864
+ ## 4.3.2
865
+ ### Fixed
866
+ - Register form within Form Manager.
867
+
868
+ ### Changed
869
+ - Upgraded formiojs@4.7.6
870
+
871
+ ## 4.3.1
872
+ ### Fixed
873
+ - No longer require angular/elements as peer dependencies.
874
+
875
+ ### Changed
876
+ - Upgraded formio.js to 4.7.4
877
+
878
+ ## 4.3.0
879
+ ### Changed
880
+ - Upgraded formio.js to 4.7.3
881
+
882
+ ## 4.3.0-beta.5
883
+ ### Fixed
884
+ - Fix gulpfile rollup configuration
885
+ - Fixed updated loader
886
+
887
+ ### Changed
888
+ - Upgraded formiojs@4.7.2
889
+ - Upgraded core-js@3.3.6, @angular/cli@8.3.17, @angular/common@8.2.13, @angular/compiler@8.2.13, @angular/compiler-cli@8.2.13, @angular/core@8.2.13, @angular/elements@8.2.13, @angular/forms@8.2.13, @angular/platform-browser@8.2.13, @angular/platform-browser-dynamic@8.2.13, @angular/router@8.2.13, @types/jasmine@3.4.6, rollup@1.26.3, tslint@5.20.1, webpack-cli@3.3.10, formiojs@4.7.2, @types/node@12.12.6, fork-ts-checker-webpack-plugin@3.0.1
890
+
891
+ ### 4.3.0-beta.3
892
+ ### Changed
893
+ - Run formio outside of ngZone: https://github.com/formio/angular-formio/pull/388
894
+ - `NgZone` service is required for main components.
895
+ - The `FormioLoader` service is updated. Added `setLoading` method. `loading$` flag is available as Observable.
896
+ - Upgraded dependencies and formiojs@4.6.0
897
+
898
+ ### 4.3.0-beta.2
899
+ ### Changed
900
+ - Upgraded dependencies and formiojs@4.5.0
901
+
902
+ ### 4.3.0-beta.1
903
+ ### Added
904
+ - Added Custom Angular Fields: https://github.com/formio/angular-formio/pull/374
905
+ - `@angular/elements` added as peer dependency.
906
+
907
+ ### 4.2.6
908
+ ### Changed
909
+ - Upgrade formiojs@4.3.3, webpack@4.41.1
910
+
911
+ ### 4.2.5
912
+ ### Changed
913
+ - Upgrade formiojs@4.3.2
914
+
915
+ ### 4.2.4
916
+ ### Changed
917
+ - Upgrade formiojs@4.3.1
918
+
919
+ ### Added
920
+ - A way to refresh the form externally with form builder.
921
+
922
+ ### 4.2.1
923
+ ### Changed
924
+ - Upgraded formiojs@4.2.3
925
+
926
+ ### 4.2.0
927
+ ### Changed
928
+ - Upgraded formiojs@4.2.0
929
+
930
+ ### Fixed
931
+ - Crashes in the FormioBaseComponent when errors are thrown.
932
+ - Crashes in the submission grid components.
933
+
934
+ ### 4.1.0
935
+ ### Changed
936
+ - Upgraded dependencies and formiojs@4.1.0
937
+
938
+ ### Added
939
+ - Added a submitError event when an error occurs.
940
+
941
+ ### 4.0.2
942
+ ### Changed
943
+ - Upgraded dependencies and formiojs@4.0.6
944
+
945
+ ### 4.0.0
946
+ ### Breaking Changes
947
+ - Only those described @ https://github.com/formio/formio.js/blob/master/Changelog.md#breaking-changes
948
+
949
+ ### Changed
950
+ - Upgraded core renderer to 4.x.
951
+
952
+ ### 3.18.0
953
+ ### Changed
954
+ - Upgraded rollup@1.14.6, formiojs@3.22.0, ngx-bootstrap@4.3.0, typescript@3.5.1
955
+
956
+ ### 3.17.0
957
+ ### Changed
958
+ - Upgraded support for Angular 8
959
+ - Upgraded dependencies including core renderer
960
+
961
+ ### Fixed
962
+ - Build routine to use a better rollup gulp method.
963
+
964
+ ### 3.16.0
965
+ ### Fixed
966
+ - Major memory leak issues.
967
+ - Streamlined the form building process and form builder instanciation.
968
+
969
+ ### 3.12.0
970
+ ### Added
971
+ - Exports of Formio and FormioUtils so that the same instances can be used.
972
+ - Added all grid exports so they can be extended.
973
+ - Alerts to the resource components.
974
+
975
+ ### 3.11.6
976
+ ### Fixed
977
+ - Skip early attempts to set grid footer createText.
978
+ - Allow extended form manager edit components to extend the save form method.
979
+
980
+ ### 3.11.5
981
+ ### Fixed
982
+ - Fix Clear Search, Fix Pagination on Refresh
983
+
984
+ ### 3.11.3
985
+ ### Added
986
+ - The ability to delay the authentication initialization.
987
+
988
+ ### 3.11.2
989
+ ### Fixed
990
+ - Honor token namespacing when saving and loading the formio user object.
991
+
992
+ ### 3.10.2
993
+ ### Fixed
994
+ - Issue with the edit permissions in the form resource view pages.
995
+
996
+ ### 3.10.1
997
+ ### Fixed
998
+ - Issues with the pagination where it would hard-code the number of items per page.
999
+
1000
+ ### 3.10.0
1001
+ ### Changed
1002
+ - Upgraded all dependencies.
1003
+
1004
+ ### Fixed
1005
+ - Issue where delete and edit tabs would show up when they do not have permissions for those operations.
1006
+
1007
+ ### 3.9.6
1008
+ #### Changed
1009
+ - The saveDraft feature to use the core version of the implementation.
1010
+ - Added a way to stop the emit of onSubmit handler when onSubmit is called.
1011
+
1012
+ ### 3.9.5
1013
+ #### Fixed
1014
+ - Problem where the form manager would add duplicate tags.
1015
+ - Issues where the form renderer would sometimes duplicate entries when re-rendered.
1016
+
1017
+ ### 3.9.4
1018
+ #### Fixed
1019
+ - Issues where the form could get reset when the display type changes.
1020
+ - Only show the builder when it is ready.
1021
+
1022
+ #### Added
1023
+ - PDF downloads.
1024
+
1025
+ #### Changed
1026
+ - Upgraded formiojs@3.9.4, ngx-bootstrap@3.1.3, @angular/cli@7.1.3, @angular/common@7.1.3, @angular/compiler@7.1.3, @angular/compiler-cli@7.1.3, @angular/core@7.1.3, @angular/forms@7.1.3, @angular/platform-browser@
1027
+ 7.1.3, @angular/platform-browser-dynamic@7.1.3, @angular/router@7.1.3, @types/jasmine@3.3.2, @types/node@10.12.15, karma@3.1.4, node-sass@4.11.0, fork-ts-checker-webpack-plugin@0.5.2, rollup@0.68.0
1028
+
1029
+ ### 3.9.2
1030
+ #### Added
1031
+ - Ability to provide your own renderer and builder.
1032
+
1033
+ ### 3.9.0
1034
+ #### Added
1035
+ - The save draft feature.
1036
+
1037
+ ### 3.8.0
1038
+ #### Changed
1039
+ - Refactored the form manager and fixed many bugs.
1040
+
1041
+ ### 3.4.0
1042
+ ### Fixed
1043
+ - Problems with the Form Manager overriding existing forms.
1044
+
1045
+ ### 3.1.8
1046
+ ### Fixed
1047
+ - Issue with nested resources not getting set properly.
1048
+ - Remove cache on resource load to fix problem where ZoneAwarePromise's were setting cached values to incorrect values.
1049
+
1050
+ ### 3.1.7
1051
+ ### Changed
1052
+ - Upgrade formiojs library.
1053
+
1054
+ ### 3.1.6
1055
+ ### Fixed
1056
+ - Problems where the context would not get restart when changing between resources.
1057
+
1058
+ ### Changed
1059
+ - Upgraded the core formiojs library.
1060
+
1061
+ ### 3.1.5
1062
+ #### Fixed
1063
+ - Cosmetic changes to the builder for Bootstrap 4
1064
+ - Default builder to use fontawesome for bootstrap 4.
1065
+
1066
+ ### 3.1.4
1067
+ #### Fixed
1068
+ - The route declarations to make it more AOT compatible (although still more work to do I think).
1069
+
1070
+ #### Added
1071
+ - A formioOptions parameter to the <formio> component to allow you to pass options to the Formio instance.
1072
+ - A renderOptions parameter to the <formio> component to allow you to pass options to the createForm method and Webform instance.
1073
+
1074
+ ### 3.1.3
1075
+ #### Fixed
1076
+ - Issues with nested resources where it would provide a filter when you don't want it to.
1077
+
1078
+ ### 3.1.2
1079
+ #### Changed
1080
+ - Upgraded dependencies.
1081
+
1082
+ ### 3.1.1
1083
+ #### Fixed
1084
+ - Problems with the data grid throwing change errors.
1085
+
1086
+ ### 3.1.0
1087
+ #### Fixed
1088
+ - Many issues related to resources, and nested resources.
1089
+
1090
+ ### 3.0.0
1091
+ This is a reverse-compatible release that has the following changes over 2.x branch.
1092
+
1093
+ #### Changes
1094
+ - This release introduces the Form Manager system, see Wiki for documentation.
1095
+ - Now defaults to Bootstrap 4 instead of Bootstrap 3 and provides Font Awesome by default.
1096
+ - Changed the (click) event for formio-grid to (rowSelect).
1097
+ - Another major change to the 3.x branch is the FormioGrid component. This can now handle both Forms and Submissions.
1098
+
1099
+ #### For Submissions
1100
+ ```<formio-grid [src]="'https://examples.form.io/example''"></formio-grid>```
1101
+
1102
+ #### For Forms
1103
+ ```<formio-grid [src]="'https://examples.form.io'" [gridType]="'form'"></formio-grid>'```
1104
+
1105
+ - Custom Grid Headers, Body, and Footers: The latest 3.x also allows you to pass along custom Headers, Body, and Footers to the GridComponent, like so.
1106
+
1107
+ ```js
1108
+ @Component({
1109
+ template: `....`
1110
+ })
1111
+ export class CustomHeader extends SubmissionGridHeaderComponent {}
1112
+ ```
1113
+
1114
+ ```html
1115
+ <formio-grid [src]="'https://examples.form.io/example'" [components]="{
1116
+ header: CustomHeader,
1117
+ body: SubmissionGridBodyComponent,
1118
+ footer: SubmissionGridFooterComponent
1119
+ }"></formio-grid>
1120
+ ```
1121
+
1122
+ This enables you to fully customize the Grid output.
1123
+
1124
+ <a name="2.0.0-alpha.1"></a>
1125
+ # [2.0.0-alpha.1](https://github.com/formio/angular-formio/compare/v2.0.0-alpha.1...v1.18.0) (2018-03-22)
1126
+
1127
+ ### Possible Breaking Changes
1128
+ - Fixed how the styles are included so that the renderer will work with AOT compilation.
1129
+ - Restructured the sub-modules for "auth", "resource", and "grid". There should not be any application changes that need to be made.
1130
+ - Changed the required peerDependencies to allow Angular 4 or Angular 5
1131
+ - Added a new UDM version of the built module.
1132
+
1133
+ <a name="0.10.0"></a>
1134
+ # [0.10.0](https://github.com/formio/angular-formio/compare/v0.2.0...v0.10.0) (2017-08-22)
1135
+
1136
+
1137
+
1138
+ <a name="0.4.0"></a>
1139
+ # [0.4.0](https://github.com/formio/angular-formio/compare/v0.2.0...v0.4.0) (2017-08-22)
1140
+
1141
+
1142
+
1143
+ <a name="0.3.0"></a>
1144
+ # [0.3.0](https://github.com/formio/angular-formio/compare/v0.2.0...v0.3.0) (2017-08-22)
1145
+
1146
+
1147
+
1148
+ <a name="0.2.0"></a>
1149
+ # [0.2.0](https://github.com/formio/angular-formio/compare/v0.1.0...v0.2.0) (2017-08-22)
1150
+
1151
+
1152
+
1153
+ <a name="0.1.0"></a>
1154
+ # 0.1.0 (2017-08-22)