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