@formio/angular 6.0.1 → 6.0.2
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.
- package/{dist/angular-formio/FormioBaseComponent.d.ts → FormioBaseComponent.d.ts} +1 -1
- package/{dist/angular-formio/FormioBaseComponent.d.ts.map → FormioBaseComponent.d.ts.map} +1 -1
- package/README.md +13 -182
- package/{dist/angular-formio/components → components}/formbuilder/formbuilder.component.d.ts +1 -1
- package/{dist/angular-formio/components → components}/formbuilder/formbuilder.component.d.ts.map +1 -1
- package/{dist/angular-formio/components → components}/formioreport/formioreport.component.d.ts +0 -1
- package/{dist/angular-formio/components → components}/formioreport/formioreport.component.d.ts.map +1 -1
- package/{dist/angular-formio/core.d.ts → core.d.ts} +1 -3
- package/{dist/angular-formio/core.d.ts.map → core.d.ts.map} +1 -1
- package/esm2022/FormioBaseComponent.mjs +584 -0
- package/esm2022/auth/auth.component.mjs +13 -0
- package/esm2022/auth/auth.config.mjs +22 -0
- package/esm2022/auth/auth.module.mjs +47 -0
- package/esm2022/auth/auth.service.mjs +200 -0
- package/esm2022/auth/login/login.component.mjs +21 -0
- package/esm2022/auth/register/register.component.mjs +21 -0
- package/esm2022/auth/resetpass/resetpass.component.mjs +18 -0
- package/esm2022/components/alerts/formio.alerts.component.mjs +29 -0
- package/esm2022/components/alerts/parse-html-content.pipe.mjs +20 -0
- package/esm2022/components/formbuilder/formbuilder.component.mjs +202 -0
- package/esm2022/components/formio/formio.component.mjs +43 -0
- package/esm2022/components/formioreport/formioreport.component.mjs +86 -0
- package/esm2022/components/loader/formio.loader.component.mjs +16 -0
- package/esm2022/core.mjs +18 -0
- package/esm2022/custom-tags.service.mjs +15 -0
- package/esm2022/formio.common.mjs +11 -0
- package/esm2022/formio.config.mjs +30 -0
- package/esm2022/formio.module.mjs +60 -0
- package/esm2022/formio.service.mjs +62 -0
- package/esm2022/formio.utils.mjs +21 -0
- package/esm2022/grid/GridBodyComponent.mjs +90 -0
- package/esm2022/grid/GridFooterComponent.mjs +45 -0
- package/esm2022/grid/GridHeaderComponent.mjs +35 -0
- package/esm2022/grid/form/FormGridBody.component.mjs +64 -0
- package/esm2022/grid/form/FormGridFooter.component.mjs +27 -0
- package/esm2022/grid/form/FormGridHeader.component.mjs +28 -0
- package/esm2022/grid/form/time-since.pipe.mjs +38 -0
- package/esm2022/grid/grid.component.mjs +258 -0
- package/esm2022/grid/grid.module.mjs +80 -0
- package/esm2022/grid/grid.service.mjs +19 -0
- package/esm2022/grid/submission/SubmissionGridBody.component.mjs +44 -0
- package/esm2022/grid/submission/SubmissionGridFooter.component.mjs +24 -0
- package/esm2022/grid/submission/SubmissionGridHeader.component.mjs +64 -0
- package/esm2022/manager/create/create.component.mjs +19 -0
- package/esm2022/manager/delete/delete.component.mjs +43 -0
- package/esm2022/manager/edit/edit.component.mjs +126 -0
- package/esm2022/manager/form/form.component.mjs +81 -0
- package/esm2022/manager/form-manager.config.mjs +19 -0
- package/esm2022/manager/form-manager.module.mjs +84 -0
- package/esm2022/manager/form-manager.service.mjs +186 -0
- package/esm2022/manager/index/index.component.mjs +109 -0
- package/esm2022/manager/submission/delete/delete.component.mjs +33 -0
- package/esm2022/manager/submission/edit/edit.component.mjs +26 -0
- package/esm2022/manager/submission/index/index.component.mjs +26 -0
- package/esm2022/manager/submission/submission/submission.component.mjs +30 -0
- package/esm2022/manager/submission/view/view.component.mjs +18 -0
- package/esm2022/manager/view/view.component.mjs +53 -0
- package/esm2022/resource/create/create.component.mjs +44 -0
- package/esm2022/resource/delete/delete.component.mjs +30 -0
- package/esm2022/resource/edit/edit.component.mjs +43 -0
- package/esm2022/resource/index/index.component.mjs +70 -0
- package/esm2022/resource/resource.component.mjs +47 -0
- package/esm2022/resource/resource.config.mjs +14 -0
- package/esm2022/resource/resource.module.mjs +63 -0
- package/esm2022/resource/resource.service.mjs +230 -0
- package/esm2022/resource/resources.service.mjs +26 -0
- package/esm2022/resource/view/view.component.mjs +26 -0
- package/{dist/angular-formio/fesm2022 → fesm2022}/formio-angular-auth.mjs +59 -92
- package/fesm2022/formio-angular-auth.mjs.map +1 -0
- package/fesm2022/formio-angular-grid.mjs +771 -0
- package/fesm2022/formio-angular-grid.mjs.map +1 -0
- package/fesm2022/formio-angular-manager.mjs +822 -0
- package/fesm2022/formio-angular-manager.mjs.map +1 -0
- package/fesm2022/formio-angular-resource.mjs +571 -0
- package/fesm2022/formio-angular-resource.mjs.map +1 -0
- package/fesm2022/formio-angular.mjs +1183 -0
- package/fesm2022/formio-angular.mjs.map +1 -0
- package/{dist/angular-formio/formio.common.d.ts → formio.common.d.ts} +2 -1
- package/formio.common.d.ts.map +1 -0
- package/{dist/angular-formio/formio.config.d.ts → formio.config.d.ts} +1 -2
- package/formio.config.d.ts.map +1 -0
- package/{dist/angular-formio/grid → grid}/submission/SubmissionGridHeader.component.d.ts +1 -1
- package/grid/submission/SubmissionGridHeader.component.d.ts.map +1 -0
- package/{dist/angular-formio/manager → manager}/edit/edit.component.d.ts.map +1 -1
- package/{dist/angular-formio/manager → manager}/form-manager.service.d.ts +1 -1
- package/{dist/angular-formio/manager → manager}/form-manager.service.d.ts.map +1 -1
- package/package.json +57 -54
- package/{dist/angular-formio/resource → resource}/resource.service.d.ts.map +1 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/03/c3/57d706b57a9bb2202b4c3f58dc4c59bd1fae8dc1d330b416b5c069a4217a2457f6c7cfef2f6d0dc5378bb43c95f62533a75cb34d09cfef47dc40e5756725 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/0c/7a/916bd866cb386cc87b9ea07c40edc23df9d726d1865e6699b42dedfbfb2a8364ced191aa62680a9297d7644cdfa64753b8975cc254c7c581f28bba0acd15 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/17/1b/bc3996ef483c464312f7c1acf66b2ce37039601d01d5faf114e615de6ae5001d009aa0a1410c1b4682dda0866d78d5f9c709ab4f6c8ba986a7936ab9f6ef +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/1e/04/481e2f3a5c2e9aed176acbf87c09f0320892cb02bbf8a95019c30ea33f77af28e8280057e4720a90506cb25c59ed33c0d60655446b75c3e25dfb4330ed43 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/28/48/0149b4006ab8d4a2a7b42e75c125f3adab48568f4d85ee48176367ae60965807a3a72f81550645fe5a2ba83c16b33196f85c46107d859175847763b9bba7 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/42/8d/7954e44606cfeaf1246358216f7f53bdccafbdbf7b99700ea6002d6e0dbe1c33f015d0cf59b833e5b4a36767cd94f29b9d77f86645e872bdc3013b403845 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/43/05/c86feb68c6e6f17d2b1e7d4aadfbef2f8554b42c9e0b7516b22a7c34044b513c23987b00507d17cb8f89b9b762b5499483d4ec16708519940e00cee5863a +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/4c/77/763f1bb202f7b0d54e7b79b0a23fe956cf0827a5e988bceb7c59621c9ec07c8e7863531e5731dc334e90cf1d735a6e64dafa6d5bae486ab3b7b90dea3fe5 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/5e/df/0706d1dfb3ed5b0c5a65b7b5e40996105b18800c157e8fb273040145aa011d9e60e28eb2112e2867a70052784727400f86d082d90d2c5841ec3abcbb6840 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/6f/86/7209df36e306d669d7347d7ddb464798ace457218aa5f3be5b17145cdfd1385bbd48d133381fc31c082b5025575865b351f9bb0265508359fda378962d60 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/71/55/241de4ea057eae7171b73fac62de144f35df7c4ec9be4fca9b08fa02f24f281e79717c76086a90b578d52963cd7cc78fc391ec813576d667ac3ad043e67d +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/89/26/e1b6ab1ce4c15c9175974d262c9baead1eea23bb80c6da1926a36513e9777f8d1be0948ec0cb33e875e41926682599a92ede1900400004ad1856529822bc +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/9c/21/3b8af7b6ee09c29bf340610026191af56f9ba1cba1f5e4476424775d5e322f84d7e900c4d264d39804cebf3dcb5aaa5eb5e9d8fd143bc3a8aa76c3d5325e +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/9e/bc/eb0b9b19e56d5161114be0b4aa51d5e29527ddd9e8954a9977fdb80b1640d5ee535de8c5c7cc1348f12423d5c9ece8e6525290eed6d4259303c5e0dd9e54 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/af/5c/97d9a08342685ee95844b54aed260370df0de7c2408ec7b14f7da3972c811ee5a4cae7be4f51de07dd039c8639ec4e9008733bcf0b6a438b29a83d7fabe3 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/b3/9a/0f0721f954468df14c05be1e1ecf80808948d80accc676b22b2f42594e36fd848d7b6f3a494888778ced38819d64ac01619dadef02f5d064a07e422dc6e3 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/ba/5d/d939f6c0890924d0234b6253e4c7baab7e285c4e9e3b838d4f223f5365ce00c421e48383fc21ecdf847e1592936f5be80b0d20ea3db471bfe39e181c091a +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/c2/ed/fa9f957c177066eb85345c4a12a5b966d0a8c9b13723ef0b97b9e97fd12d94dce317239ca3b04a085e837ac1254883fe308f6914c845b3ab905aee71104c +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/e5/02/dea9a92e3e7a840bde12d10d7b4d9c19c7be587e568019a9aacd2f3be7a6a968ec214e3c6671def4874ff7e14de90b2b7f4742d40932e5772e85ed9e2e5c +0 -1
- package/.angular/cache/18.1.2/ng-packagr/content-v2/sha512/e9/ca/53ff813610ae5d57a25518e6546b659a092de2c929fd43130db59358947aa9aa5797289f7ca39fe550d2e41050a69cb26e6b5dd6ebbcae0207ab08474dc8 +0 -1
- package/.angular/cache/18.1.2/ng-packagr/index-v5/25/d3/52d51d20f0068267704af92a4b131f29e9318f247d503eb0ec23c1ed7188 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/32/2f/d5c320e973844b017f9df834dcf5f8a70b27c1c3b625602647fbe166617c +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/38/53/3bd61bb2f286821c9ec46774147eb97de202bd306657efa7e8fb0a4343e8 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/4e/53/3b7731ca8fad27e6eaeb4c36c45bd95e9f08ffb7d050da8e33aa0c67f420 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/4f/b5/b4881a5f5a49b3873273918459bc33f4faa34e974e629f48a07d7a97c39c +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/5b/e4/f6ef130cc3bbbf5aa958ce481e0b714d430a6a04f61381bc829296cde9a5 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/69/8c/55ebedfbeee3a23e43db1e5576ea5a06710fab809fc667ba3ce8583b8eea +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/8a/38/489a51c20c3a372344dd5510758e23c1caffd6dfe1525c17dc3fbc231b76 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/8d/5d/26f10d893644ba75ac602bed8276ef0b4e1866d085754e032ee3833e95ab +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/9a/0d/0056d732cfdfa97dfef099aa2189dcac3fae2f7c3c3560cd77a7c9567e74 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/9c/f5/9c5f48481303af30935226f6337a1e033ad35f0462f95da8a973b69aafb5 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/a3/17/80d2a0bcaac6af902db5f128a8f8ec58ec220b9d00d6825205749c2f418a +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/aa/80/466e9b161643951f9a077066a20cd2d7ef6903a1fdcaadedcef9c0177747 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/b7/72/d9f00a872849a611fa73cb9ec575401ee6c838795bb102753b24d7d53ee3 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/c7/dd/eca0dfb0e1190fa828b47955c8f97ac1e7a5b24871fb9d8342cd7256e5f9 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/d9/03/3fd9ec2d0c37e7b3824ec5e7936928c4f6debbb6899a120a52cdba472f38 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/da/4e/570182d1f569903d2554c87334c0f7751dafcb6b683ddfbe4213614fd5be +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/dc/4f/1a8db8af7d1e3f37160992ae5545e63460ab6e54a4d3981f234eb089d435 +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/e8/e9/47b0d4126bcfabc2df9a4c4be0d197a805526dd04e2a48278501d62a85fd +0 -2
- package/.angular/cache/18.1.2/ng-packagr/index-v5/ed/de/db04689deebb1db3d7610a2bbca795b1180084d7985db7a993d4787f6d0e +0 -2
- package/.angular/cache/18.1.2/ng-packagr/tsbuildinfo/formio-angular-auth.tsbuildinfo +0 -1
- package/.angular/cache/18.1.2/ng-packagr/tsbuildinfo/formio-angular-embed.tsbuildinfo +0 -1
- package/.angular/cache/18.1.2/ng-packagr/tsbuildinfo/formio-angular-grid.tsbuildinfo +0 -1
- package/.angular/cache/18.1.2/ng-packagr/tsbuildinfo/formio-angular-manager.tsbuildinfo +0 -1
- package/.angular/cache/18.1.2/ng-packagr/tsbuildinfo/formio-angular-resource.tsbuildinfo +0 -1
- package/.angular/cache/18.1.2/ng-packagr/tsbuildinfo/formio-angular.tsbuildinfo +0 -1
- package/.dockerignore +0 -5
- package/.editorconfig +0 -13
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -38
- package/.github/ISSUE_TEMPLATE/custom-components-support-request.md +0 -15
- package/.github/ISSUE_TEMPLATE/question.md +0 -8
- package/.travis.yml +0 -4
- package/.yo-rc.json +0 -7
- package/CHANGELOG.md +0 -1095
- package/Dockerfile +0 -20
- package/LICENSE +0 -21
- package/angular.json +0 -38
- package/bs-config.json +0 -11
- package/dist/angular-formio/README.md +0 -24
- package/dist/angular-formio/embed/app.service.d.ts +0 -28
- package/dist/angular-formio/embed/app.service.d.ts.map +0 -1
- package/dist/angular-formio/embed/builder.component.d.ts +0 -13
- package/dist/angular-formio/embed/builder.component.d.ts.map +0 -1
- package/dist/angular-formio/embed/embed.module.d.ts +0 -10
- package/dist/angular-formio/embed/embed.module.d.ts.map +0 -1
- package/dist/angular-formio/embed/formio-angular-embed.d.ts.map +0 -1
- package/dist/angular-formio/embed/formio.component.d.ts +0 -16
- package/dist/angular-formio/embed/formio.component.d.ts.map +0 -1
- package/dist/angular-formio/embed/index.d.ts +0 -7
- package/dist/angular-formio/embed/index.d.ts.map +0 -1
- package/dist/angular-formio/esm2022/FormioBaseComponent.mjs +0 -587
- package/dist/angular-formio/esm2022/auth/auth.component.mjs +0 -23
- package/dist/angular-formio/esm2022/auth/auth.config.mjs +0 -21
- package/dist/angular-formio/esm2022/auth/auth.module.mjs +0 -47
- package/dist/angular-formio/esm2022/auth/auth.service.mjs +0 -199
- package/dist/angular-formio/esm2022/auth/login/login.component.mjs +0 -27
- package/dist/angular-formio/esm2022/auth/register/register.component.mjs +0 -27
- package/dist/angular-formio/esm2022/auth/resetpass/resetpass.component.mjs +0 -24
- package/dist/angular-formio/esm2022/components/alerts/formio.alerts.component.mjs +0 -46
- package/dist/angular-formio/esm2022/components/alerts/parse-html-content.pipe.mjs +0 -19
- package/dist/angular-formio/esm2022/components/formbuilder/formbuilder.component.mjs +0 -211
- package/dist/angular-formio/esm2022/components/formio/formio.component.mjs +0 -85
- package/dist/angular-formio/esm2022/components/formioreport/formioreport.component.mjs +0 -137
- package/dist/angular-formio/esm2022/components/loader/formio.loader.component.mjs +0 -25
- package/dist/angular-formio/esm2022/core.mjs +0 -19
- package/dist/angular-formio/esm2022/custom-tags.service.mjs +0 -14
- package/dist/angular-formio/esm2022/embed/app.service.mjs +0 -58
- package/dist/angular-formio/esm2022/embed/builder.component.mjs +0 -45
- package/dist/angular-formio/esm2022/embed/embed.module.mjs +0 -36
- package/dist/angular-formio/esm2022/embed/formio-angular-embed.mjs +0 -5
- package/dist/angular-formio/esm2022/embed/formio.component.mjs +0 -59
- package/dist/angular-formio/esm2022/embed/index.mjs +0 -7
- package/dist/angular-formio/esm2022/formio.common.mjs +0 -11
- package/dist/angular-formio/esm2022/formio.config.mjs +0 -29
- package/dist/angular-formio/esm2022/formio.module.mjs +0 -60
- package/dist/angular-formio/esm2022/formio.service.mjs +0 -62
- package/dist/angular-formio/esm2022/formio.utils.mjs +0 -21
- package/dist/angular-formio/esm2022/grid/GridBodyComponent.mjs +0 -95
- package/dist/angular-formio/esm2022/grid/GridFooterComponent.mjs +0 -50
- package/dist/angular-formio/esm2022/grid/GridHeaderComponent.mjs +0 -40
- package/dist/angular-formio/esm2022/grid/form/FormGridBody.component.mjs +0 -165
- package/dist/angular-formio/esm2022/grid/form/FormGridFooter.component.mjs +0 -112
- package/dist/angular-formio/esm2022/grid/form/FormGridHeader.component.mjs +0 -54
- package/dist/angular-formio/esm2022/grid/form/time-since.pipe.mjs +0 -37
- package/dist/angular-formio/esm2022/grid/grid.component.mjs +0 -321
- package/dist/angular-formio/esm2022/grid/grid.module.mjs +0 -80
- package/dist/angular-formio/esm2022/grid/grid.service.mjs +0 -18
- package/dist/angular-formio/esm2022/grid/submission/SubmissionGridBody.component.mjs +0 -74
- package/dist/angular-formio/esm2022/grid/submission/SubmissionGridFooter.component.mjs +0 -103
- package/dist/angular-formio/esm2022/grid/submission/SubmissionGridHeader.component.mjs +0 -96
- package/dist/angular-formio/esm2022/manager/create/create.component.mjs +0 -62
- package/dist/angular-formio/esm2022/manager/delete/delete.component.mjs +0 -58
- package/dist/angular-formio/esm2022/manager/edit/edit.component.mjs +0 -181
- package/dist/angular-formio/esm2022/manager/form/form.component.mjs +0 -176
- package/dist/angular-formio/esm2022/manager/form-manager.config.mjs +0 -18
- package/dist/angular-formio/esm2022/manager/form-manager.module.mjs +0 -84
- package/dist/angular-formio/esm2022/manager/form-manager.service.mjs +0 -185
- package/dist/angular-formio/esm2022/manager/index/index.component.mjs +0 -151
- package/dist/angular-formio/esm2022/manager/submission/delete/delete.component.mjs +0 -48
- package/dist/angular-formio/esm2022/manager/submission/edit/edit.component.mjs +0 -32
- package/dist/angular-formio/esm2022/manager/submission/index/index.component.mjs +0 -32
- package/dist/angular-formio/esm2022/manager/submission/submission/submission.component.mjs +0 -67
- package/dist/angular-formio/esm2022/manager/submission/view/view.component.mjs +0 -24
- package/dist/angular-formio/esm2022/manager/view/view.component.mjs +0 -66
- package/dist/angular-formio/esm2022/resource/create/create.component.mjs +0 -64
- package/dist/angular-formio/esm2022/resource/delete/delete.component.mjs +0 -42
- package/dist/angular-formio/esm2022/resource/edit/edit.component.mjs +0 -49
- package/dist/angular-formio/esm2022/resource/index/index.component.mjs +0 -79
- package/dist/angular-formio/esm2022/resource/resource.component.mjs +0 -72
- package/dist/angular-formio/esm2022/resource/resource.config.mjs +0 -13
- package/dist/angular-formio/esm2022/resource/resource.module.mjs +0 -63
- package/dist/angular-formio/esm2022/resource/resource.service.mjs +0 -231
- package/dist/angular-formio/esm2022/resource/resources.service.mjs +0 -25
- package/dist/angular-formio/esm2022/resource/view/view.component.mjs +0 -30
- package/dist/angular-formio/fesm2022/formio-angular-auth.mjs.map +0 -1
- package/dist/angular-formio/fesm2022/formio-angular-embed.mjs +0 -195
- package/dist/angular-formio/fesm2022/formio-angular-embed.mjs.map +0 -1
- package/dist/angular-formio/fesm2022/formio-angular-grid.mjs +0 -1213
- package/dist/angular-formio/fesm2022/formio-angular-grid.mjs.map +0 -1
- package/dist/angular-formio/fesm2022/formio-angular-manager.mjs +0 -1167
- package/dist/angular-formio/fesm2022/formio-angular-manager.mjs.map +0 -1
- package/dist/angular-formio/fesm2022/formio-angular-resource.mjs +0 -656
- package/dist/angular-formio/fesm2022/formio-angular-resource.mjs.map +0 -1
- package/dist/angular-formio/fesm2022/formio-angular.mjs +0 -1321
- package/dist/angular-formio/fesm2022/formio-angular.mjs.map +0 -1
- package/dist/angular-formio/formio.common.d.ts.map +0 -1
- package/dist/angular-formio/formio.config.d.ts.map +0 -1
- package/dist/angular-formio/grid/submission/SubmissionGridHeader.component.d.ts.map +0 -1
- package/projects/angular-formio/README.md +0 -24
- package/projects/angular-formio/auth/ng-package.json +0 -5
- package/projects/angular-formio/auth/src/auth.component.html +0 -11
- package/projects/angular-formio/auth/src/auth.component.ts +0 -5
- package/projects/angular-formio/auth/src/auth.config.ts +0 -72
- package/projects/angular-formio/auth/src/auth.module.ts +0 -33
- package/projects/angular-formio/auth/src/auth.routes.ts +0 -34
- package/projects/angular-formio/auth/src/auth.service.ts +0 -221
- package/projects/angular-formio/auth/src/index.ts +0 -8
- package/projects/angular-formio/auth/src/login/login.component.html +0 -1
- package/projects/angular-formio/auth/src/login/login.component.ts +0 -11
- package/projects/angular-formio/auth/src/public_api.ts +0 -5
- package/projects/angular-formio/auth/src/register/register.component.html +0 -1
- package/projects/angular-formio/auth/src/register/register.component.ts +0 -11
- package/projects/angular-formio/auth/src/resetpass/resetpass.component.html +0 -1
- package/projects/angular-formio/auth/src/resetpass/resetpass.component.ts +0 -8
- package/projects/angular-formio/grid/ng-package.json +0 -5
- package/projects/angular-formio/grid/src/GridBodyComponent.ts +0 -80
- package/projects/angular-formio/grid/src/GridFooterComponent.ts +0 -25
- package/projects/angular-formio/grid/src/GridHeaderComponent.ts +0 -25
- package/projects/angular-formio/grid/src/form/FormGridBody.component.html +0 -22
- package/projects/angular-formio/grid/src/form/FormGridBody.component.scss +0 -4
- package/projects/angular-formio/grid/src/form/FormGridBody.component.ts +0 -46
- package/projects/angular-formio/grid/src/form/FormGridFooter.component.html +0 -21
- package/projects/angular-formio/grid/src/form/FormGridFooter.component.ts +0 -23
- package/projects/angular-formio/grid/src/form/FormGridHeader.component.html +0 -18
- package/projects/angular-formio/grid/src/form/FormGridHeader.component.ts +0 -24
- package/projects/angular-formio/grid/src/form/index.ts +0 -8
- package/projects/angular-formio/grid/src/form/time-since.pipe.ts +0 -31
- package/projects/angular-formio/grid/src/grid.component.html +0 -18
- package/projects/angular-formio/grid/src/grid.component.scss +0 -9
- package/projects/angular-formio/grid/src/grid.component.ts +0 -242
- package/projects/angular-formio/grid/src/grid.footer.scss +0 -14
- package/projects/angular-formio/grid/src/grid.module.ts +0 -49
- package/projects/angular-formio/grid/src/grid.service.ts +0 -16
- package/projects/angular-formio/grid/src/index.ts +0 -12
- package/projects/angular-formio/grid/src/public_api.ts +0 -5
- package/projects/angular-formio/grid/src/submission/SubmissionGridBody.component.html +0 -7
- package/projects/angular-formio/grid/src/submission/SubmissionGridBody.component.ts +0 -39
- package/projects/angular-formio/grid/src/submission/SubmissionGridFooter.component.html +0 -18
- package/projects/angular-formio/grid/src/submission/SubmissionGridFooter.component.ts +0 -20
- package/projects/angular-formio/grid/src/submission/SubmissionGridHeader.component.html +0 -11
- package/projects/angular-formio/grid/src/submission/SubmissionGridHeader.component.ts +0 -72
- package/projects/angular-formio/grid/src/submission/index.ts +0 -8
- package/projects/angular-formio/grid/src/types/grid-column.ts +0 -7
- package/projects/angular-formio/grid/src/types/grid-footer-positions.ts +0 -5
- package/projects/angular-formio/grid/src/types/grid-header.ts +0 -14
- package/projects/angular-formio/karma.conf.js +0 -32
- package/projects/angular-formio/manager/ng-package.json +0 -5
- package/projects/angular-formio/manager/src/create/create.component.ts +0 -11
- package/projects/angular-formio/manager/src/delete/delete.component.html +0 -6
- package/projects/angular-formio/manager/src/delete/delete.component.ts +0 -37
- package/projects/angular-formio/manager/src/edit/edit.component.html +0 -19
- package/projects/angular-formio/manager/src/edit/edit.component.ts +0 -110
- package/projects/angular-formio/manager/src/form/form.component.html +0 -32
- package/projects/angular-formio/manager/src/form/form.component.ts +0 -73
- package/projects/angular-formio/manager/src/form-manager.config.ts +0 -31
- package/projects/angular-formio/manager/src/form-manager.module.ts +0 -54
- package/projects/angular-formio/manager/src/form-manager.routes.ts +0 -75
- package/projects/angular-formio/manager/src/form-manager.service.ts +0 -190
- package/projects/angular-formio/manager/src/index/index.component.html +0 -14
- package/projects/angular-formio/manager/src/index/index.component.scss +0 -22
- package/projects/angular-formio/manager/src/index/index.component.ts +0 -100
- package/projects/angular-formio/manager/src/index.ts +0 -16
- package/projects/angular-formio/manager/src/public_api.ts +0 -5
- package/projects/angular-formio/manager/src/submission/delete/delete.component.html +0 -6
- package/projects/angular-formio/manager/src/submission/delete/delete.component.ts +0 -26
- package/projects/angular-formio/manager/src/submission/edit/edit.component.html +0 -7
- package/projects/angular-formio/manager/src/submission/edit/edit.component.ts +0 -18
- package/projects/angular-formio/manager/src/submission/index/index.component.html +0 -1
- package/projects/angular-formio/manager/src/submission/index/index.component.ts +0 -18
- package/projects/angular-formio/manager/src/submission/submission/submission.component.html +0 -8
- package/projects/angular-formio/manager/src/submission/submission/submission.component.ts +0 -24
- package/projects/angular-formio/manager/src/submission/view/view.component.html +0 -7
- package/projects/angular-formio/manager/src/submission/view/view.component.ts +0 -9
- package/projects/angular-formio/manager/src/view/view.component.html +0 -11
- package/projects/angular-formio/manager/src/view/view.component.ts +0 -44
- package/projects/angular-formio/ng-package.json +0 -7
- package/projects/angular-formio/node_modules/tslib/CopyrightNotice.txt +0 -15
- package/projects/angular-formio/node_modules/tslib/LICENSE.txt +0 -12
- package/projects/angular-formio/node_modules/tslib/README.md +0 -164
- package/projects/angular-formio/node_modules/tslib/SECURITY.md +0 -41
- package/projects/angular-formio/node_modules/tslib/modules/index.d.ts +0 -35
- package/projects/angular-formio/node_modules/tslib/modules/index.js +0 -64
- package/projects/angular-formio/node_modules/tslib/modules/package.json +0 -3
- package/projects/angular-formio/node_modules/tslib/package.json +0 -47
- package/projects/angular-formio/node_modules/tslib/tslib.d.ts +0 -430
- package/projects/angular-formio/node_modules/tslib/tslib.es6.html +0 -1
- package/projects/angular-formio/node_modules/tslib/tslib.es6.js +0 -321
- package/projects/angular-formio/node_modules/tslib/tslib.es6.mjs +0 -321
- package/projects/angular-formio/node_modules/tslib/tslib.html +0 -1
- package/projects/angular-formio/node_modules/tslib/tslib.js +0 -370
- package/projects/angular-formio/package.json +0 -39
- package/projects/angular-formio/resource/ng-package.json +0 -5
- package/projects/angular-formio/resource/src/create/create.component.html +0 -13
- package/projects/angular-formio/resource/src/create/create.component.scss +0 -3
- package/projects/angular-formio/resource/src/create/create.component.ts +0 -37
- package/projects/angular-formio/resource/src/delete/delete.component.html +0 -5
- package/projects/angular-formio/resource/src/delete/delete.component.ts +0 -24
- package/projects/angular-formio/resource/src/edit/edit.component.html +0 -7
- package/projects/angular-formio/resource/src/edit/edit.component.ts +0 -35
- package/projects/angular-formio/resource/src/index/index.component.html +0 -10
- package/projects/angular-formio/resource/src/index/index.component.ts +0 -64
- package/projects/angular-formio/resource/src/index.js +0 -24
- package/projects/angular-formio/resource/src/index.ts +0 -11
- package/projects/angular-formio/resource/src/public_api.ts +0 -5
- package/projects/angular-formio/resource/src/resource.component.html +0 -7
- package/projects/angular-formio/resource/src/resource.component.ts +0 -48
- package/projects/angular-formio/resource/src/resource.config.ts +0 -17
- package/projects/angular-formio/resource/src/resource.module.ts +0 -43
- package/projects/angular-formio/resource/src/resource.routes.ts +0 -43
- package/projects/angular-formio/resource/src/resource.service.ts +0 -258
- package/projects/angular-formio/resource/src/resources.service.ts +0 -24
- package/projects/angular-formio/resource/src/view/view.component.html +0 -6
- package/projects/angular-formio/resource/src/view/view.component.ts +0 -19
- package/projects/angular-formio/src/FormioBaseComponent.ts +0 -557
- package/projects/angular-formio/src/components/alerts/formio.alerts.component.html +0 -3
- package/projects/angular-formio/src/components/alerts/formio.alerts.component.ts +0 -19
- package/projects/angular-formio/src/components/alerts/formio.alerts.ts +0 -21
- package/projects/angular-formio/src/components/alerts/parse-html-content.pipe.ts +0 -15
- package/projects/angular-formio/src/components/formbuilder/formbuilder.component.html +0 -1
- package/projects/angular-formio/src/components/formbuilder/formbuilder.component.ts +0 -213
- package/projects/angular-formio/src/components/formio/formio.component.html +0 -8
- package/projects/angular-formio/src/components/formio/formio.component.ts +0 -33
- package/projects/angular-formio/src/components/formioreport/formioreport.component.html +0 -8
- package/projects/angular-formio/src/components/formioreport/formioreport.component.ts +0 -91
- package/projects/angular-formio/src/components/loader/formio.loader.component.html +0 -3
- package/projects/angular-formio/src/components/loader/formio.loader.component.scss +0 -26
- package/projects/angular-formio/src/components/loader/formio.loader.component.ts +0 -10
- package/projects/angular-formio/src/core.ts +0 -25
- package/projects/angular-formio/src/custom-tags.service.ts +0 -9
- package/projects/angular-formio/src/formio-promise.service.ts +0 -36
- package/projects/angular-formio/src/formio.common.ts +0 -91
- package/projects/angular-formio/src/formio.config.ts +0 -26
- package/projects/angular-formio/src/formio.module.ts +0 -38
- package/projects/angular-formio/src/formio.service.ts +0 -57
- package/projects/angular-formio/src/formio.utils.ts +0 -23
- package/projects/angular-formio/src/index.ts +0 -3
- package/projects/angular-formio/src/public-api.ts +0 -5
- package/projects/angular-formio/src/test.ts +0 -28
- package/projects/angular-formio/src/types/alerts-position.ts +0 -6
- package/projects/angular-formio/src/types/formio-metadata.ts +0 -10
- package/projects/angular-formio/src/types/formio-submission.ts +0 -20
- package/projects/angular-formio/tsconfig.lib.json +0 -27
- package/projects/angular-formio/tsconfig.lib.prod.json +0 -8
- package/projects/angular-formio/tsconfig.spec.json +0 -17
- package/projects/angular-formio/tslint.json +0 -17
- package/tsconfig.json +0 -39
- package/tslint.json +0 -140
- /package/{dist/angular-formio/auth → auth}/auth.component.d.ts +0 -0
- /package/{dist/angular-formio/auth → auth}/auth.component.d.ts.map +0 -0
- /package/{dist/angular-formio/auth → auth}/auth.config.d.ts +0 -0
- /package/{dist/angular-formio/auth → auth}/auth.config.d.ts.map +0 -0
- /package/{dist/angular-formio/auth → auth}/auth.module.d.ts +0 -0
- /package/{dist/angular-formio/auth → auth}/auth.module.d.ts.map +0 -0
- /package/{dist/angular-formio/auth → auth}/auth.routes.d.ts +0 -0
- /package/{dist/angular-formio/auth → auth}/auth.routes.d.ts.map +0 -0
- /package/{dist/angular-formio/auth → auth}/auth.service.d.ts +0 -0
- /package/{dist/angular-formio/auth → auth}/auth.service.d.ts.map +0 -0
- /package/{dist/angular-formio/auth → auth}/formio-angular-auth.d.ts.map +0 -0
- /package/{dist/angular-formio/auth → auth}/index.d.ts +0 -0
- /package/{dist/angular-formio/auth → auth}/index.d.ts.map +0 -0
- /package/{dist/angular-formio/auth → auth}/login/login.component.d.ts +0 -0
- /package/{dist/angular-formio/auth → auth}/login/login.component.d.ts.map +0 -0
- /package/{dist/angular-formio/auth → auth}/register/register.component.d.ts +0 -0
- /package/{dist/angular-formio/auth → auth}/register/register.component.d.ts.map +0 -0
- /package/{dist/angular-formio/auth → auth}/resetpass/resetpass.component.d.ts +0 -0
- /package/{dist/angular-formio/auth → auth}/resetpass/resetpass.component.d.ts.map +0 -0
- /package/{dist/angular-formio/components → components}/alerts/formio.alerts.component.d.ts +0 -0
- /package/{dist/angular-formio/components → components}/alerts/formio.alerts.component.d.ts.map +0 -0
- /package/{dist/angular-formio/components → components}/alerts/formio.alerts.d.ts +0 -0
- /package/{dist/angular-formio/components → components}/alerts/formio.alerts.d.ts.map +0 -0
- /package/{dist/angular-formio/components → components}/alerts/parse-html-content.pipe.d.ts +0 -0
- /package/{dist/angular-formio/components → components}/alerts/parse-html-content.pipe.d.ts.map +0 -0
- /package/{dist/angular-formio/components → components}/formio/formio.component.d.ts +0 -0
- /package/{dist/angular-formio/components → components}/formio/formio.component.d.ts.map +0 -0
- /package/{dist/angular-formio/components → components}/loader/formio.loader.component.d.ts +0 -0
- /package/{dist/angular-formio/components → components}/loader/formio.loader.component.d.ts.map +0 -0
- /package/{dist/angular-formio/custom-tags.service.d.ts → custom-tags.service.d.ts} +0 -0
- /package/{dist/angular-formio/custom-tags.service.d.ts.map → custom-tags.service.d.ts.map} +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/auth/auth.routes.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/auth/formio-angular-auth.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/auth/index.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/components/alerts/formio.alerts.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/formio-angular.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/formio-promise.service.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/grid/form/index.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/grid/formio-angular-grid.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/grid/index.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/grid/submission/index.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/grid/types/grid-column.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/grid/types/grid-footer-positions.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/grid/types/grid-header.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/index.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/manager/form-manager.routes.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/manager/formio-angular-manager.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/manager/index.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/resource/formio-angular-resource.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/resource/index.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/resource/resource.routes.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/types/alerts-position.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/types/formio-metadata.mjs +0 -0
- /package/{dist/angular-formio/esm2022 → esm2022}/types/formio-submission.mjs +0 -0
- /package/{dist/angular-formio/formio-angular.d.ts.map → formio-angular.d.ts.map} +0 -0
- /package/{dist/angular-formio/formio-promise.service.d.ts → formio-promise.service.d.ts} +0 -0
- /package/{dist/angular-formio/formio-promise.service.d.ts.map → formio-promise.service.d.ts.map} +0 -0
- /package/{dist/angular-formio/formio.module.d.ts → formio.module.d.ts} +0 -0
- /package/{dist/angular-formio/formio.module.d.ts.map → formio.module.d.ts.map} +0 -0
- /package/{dist/angular-formio/formio.service.d.ts → formio.service.d.ts} +0 -0
- /package/{dist/angular-formio/formio.service.d.ts.map → formio.service.d.ts.map} +0 -0
- /package/{dist/angular-formio/formio.utils.d.ts → formio.utils.d.ts} +0 -0
- /package/{dist/angular-formio/formio.utils.d.ts.map → formio.utils.d.ts.map} +0 -0
- /package/{dist/angular-formio/grid → grid}/GridBodyComponent.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/GridBodyComponent.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/GridFooterComponent.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/GridFooterComponent.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/GridHeaderComponent.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/GridHeaderComponent.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/form/FormGridBody.component.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/form/FormGridBody.component.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/form/FormGridFooter.component.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/form/FormGridFooter.component.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/form/FormGridHeader.component.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/form/FormGridHeader.component.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/form/index.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/form/index.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/form/time-since.pipe.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/form/time-since.pipe.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/formio-angular-grid.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/grid.component.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/grid.component.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/grid.module.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/grid.module.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/grid.service.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/grid.service.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/index.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/index.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/submission/SubmissionGridBody.component.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/submission/SubmissionGridBody.component.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/submission/SubmissionGridFooter.component.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/submission/SubmissionGridFooter.component.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/submission/index.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/submission/index.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/types/grid-column.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/types/grid-column.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/types/grid-footer-positions.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/types/grid-footer-positions.d.ts.map +0 -0
- /package/{dist/angular-formio/grid → grid}/types/grid-header.d.ts +0 -0
- /package/{dist/angular-formio/grid → grid}/types/grid-header.d.ts.map +0 -0
- /package/{dist/angular-formio/index.d.ts → index.d.ts} +0 -0
- /package/{dist/angular-formio/index.d.ts.map → index.d.ts.map} +0 -0
- /package/{dist/angular-formio/manager → manager}/create/create.component.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/create/create.component.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/delete/delete.component.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/delete/delete.component.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/edit/edit.component.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/form/form.component.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/form/form.component.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/form-manager.config.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/form-manager.config.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/form-manager.module.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/form-manager.module.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/form-manager.routes.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/form-manager.routes.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/formio-angular-manager.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/index/index.component.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/index/index.component.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/index.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/index.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/submission/delete/delete.component.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/submission/delete/delete.component.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/submission/edit/edit.component.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/submission/edit/edit.component.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/submission/index/index.component.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/submission/index/index.component.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/submission/submission/submission.component.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/submission/submission/submission.component.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/submission/view/view.component.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/submission/view/view.component.d.ts.map +0 -0
- /package/{dist/angular-formio/manager → manager}/view/view.component.d.ts +0 -0
- /package/{dist/angular-formio/manager → manager}/view/view.component.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/create/create.component.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/create/create.component.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/delete/delete.component.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/delete/delete.component.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/edit/edit.component.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/edit/edit.component.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/formio-angular-resource.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/index/index.component.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/index/index.component.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/index.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/index.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/resource.component.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/resource.component.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/resource.config.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/resource.config.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/resource.module.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/resource.module.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/resource.routes.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/resource.routes.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/resource.service.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/resources.service.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/resources.service.d.ts.map +0 -0
- /package/{dist/angular-formio/resource → resource}/view/view.component.d.ts +0 -0
- /package/{dist/angular-formio/resource → resource}/view/view.component.d.ts.map +0 -0
- /package/{dist/angular-formio/types → types}/alerts-position.d.ts +0 -0
- /package/{dist/angular-formio/types → types}/alerts-position.d.ts.map +0 -0
- /package/{dist/angular-formio/types → types}/formio-metadata.d.ts +0 -0
- /package/{dist/angular-formio/types → types}/formio-metadata.d.ts.map +0 -0
- /package/{dist/angular-formio/types → types}/formio-submission.d.ts +0 -0
- /package/{dist/angular-formio/types → types}/formio-submission.d.ts.map +0 -0
|
@@ -1,370 +0,0 @@
|
|
|
1
|
-
/******************************************************************************
|
|
2
|
-
Copyright (c) Microsoft Corporation.
|
|
3
|
-
|
|
4
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
5
|
-
purpose with or without fee is hereby granted.
|
|
6
|
-
|
|
7
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
8
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
9
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
10
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
11
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
12
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
13
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
14
|
-
***************************************************************************** */
|
|
15
|
-
/* global global, define, System, Reflect, Promise */
|
|
16
|
-
var __extends;
|
|
17
|
-
var __assign;
|
|
18
|
-
var __rest;
|
|
19
|
-
var __decorate;
|
|
20
|
-
var __param;
|
|
21
|
-
var __esDecorate;
|
|
22
|
-
var __runInitializers;
|
|
23
|
-
var __propKey;
|
|
24
|
-
var __setFunctionName;
|
|
25
|
-
var __metadata;
|
|
26
|
-
var __awaiter;
|
|
27
|
-
var __generator;
|
|
28
|
-
var __exportStar;
|
|
29
|
-
var __values;
|
|
30
|
-
var __read;
|
|
31
|
-
var __spread;
|
|
32
|
-
var __spreadArrays;
|
|
33
|
-
var __spreadArray;
|
|
34
|
-
var __await;
|
|
35
|
-
var __asyncGenerator;
|
|
36
|
-
var __asyncDelegator;
|
|
37
|
-
var __asyncValues;
|
|
38
|
-
var __makeTemplateObject;
|
|
39
|
-
var __importStar;
|
|
40
|
-
var __importDefault;
|
|
41
|
-
var __classPrivateFieldGet;
|
|
42
|
-
var __classPrivateFieldSet;
|
|
43
|
-
var __classPrivateFieldIn;
|
|
44
|
-
var __createBinding;
|
|
45
|
-
(function (factory) {
|
|
46
|
-
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
|
47
|
-
if (typeof define === "function" && define.amd) {
|
|
48
|
-
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
|
49
|
-
}
|
|
50
|
-
else if (typeof module === "object" && typeof module.exports === "object") {
|
|
51
|
-
factory(createExporter(root, createExporter(module.exports)));
|
|
52
|
-
}
|
|
53
|
-
else {
|
|
54
|
-
factory(createExporter(root));
|
|
55
|
-
}
|
|
56
|
-
function createExporter(exports, previous) {
|
|
57
|
-
if (exports !== root) {
|
|
58
|
-
if (typeof Object.create === "function") {
|
|
59
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60
|
-
}
|
|
61
|
-
else {
|
|
62
|
-
exports.__esModule = true;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
|
66
|
-
}
|
|
67
|
-
})
|
|
68
|
-
(function (exporter) {
|
|
69
|
-
var extendStatics = Object.setPrototypeOf ||
|
|
70
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
71
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
72
|
-
|
|
73
|
-
__extends = function (d, b) {
|
|
74
|
-
if (typeof b !== "function" && b !== null)
|
|
75
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
76
|
-
extendStatics(d, b);
|
|
77
|
-
function __() { this.constructor = d; }
|
|
78
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
79
|
-
};
|
|
80
|
-
|
|
81
|
-
__assign = Object.assign || function (t) {
|
|
82
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
83
|
-
s = arguments[i];
|
|
84
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
85
|
-
}
|
|
86
|
-
return t;
|
|
87
|
-
};
|
|
88
|
-
|
|
89
|
-
__rest = function (s, e) {
|
|
90
|
-
var t = {};
|
|
91
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
92
|
-
t[p] = s[p];
|
|
93
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
94
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
95
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
96
|
-
t[p[i]] = s[p[i]];
|
|
97
|
-
}
|
|
98
|
-
return t;
|
|
99
|
-
};
|
|
100
|
-
|
|
101
|
-
__decorate = function (decorators, target, key, desc) {
|
|
102
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
103
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
104
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
105
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
106
|
-
};
|
|
107
|
-
|
|
108
|
-
__param = function (paramIndex, decorator) {
|
|
109
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
110
|
-
};
|
|
111
|
-
|
|
112
|
-
__esDecorate = function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
113
|
-
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
114
|
-
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
115
|
-
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
|
|
116
|
-
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
|
|
117
|
-
var _, done = false;
|
|
118
|
-
for (var i = decorators.length - 1; i >= 0; i--) {
|
|
119
|
-
var context = {};
|
|
120
|
-
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
|
|
121
|
-
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
|
|
122
|
-
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
|
|
123
|
-
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
|
|
124
|
-
if (kind === "accessor") {
|
|
125
|
-
if (result === void 0) continue;
|
|
126
|
-
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
|
|
127
|
-
if (_ = accept(result.get)) descriptor.get = _;
|
|
128
|
-
if (_ = accept(result.set)) descriptor.set = _;
|
|
129
|
-
if (_ = accept(result.init)) initializers.unshift(_);
|
|
130
|
-
}
|
|
131
|
-
else if (_ = accept(result)) {
|
|
132
|
-
if (kind === "field") initializers.unshift(_);
|
|
133
|
-
else descriptor[key] = _;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
137
|
-
done = true;
|
|
138
|
-
};
|
|
139
|
-
|
|
140
|
-
__runInitializers = function (thisArg, initializers, value) {
|
|
141
|
-
var useValue = arguments.length > 2;
|
|
142
|
-
for (var i = 0; i < initializers.length; i++) {
|
|
143
|
-
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
144
|
-
}
|
|
145
|
-
return useValue ? value : void 0;
|
|
146
|
-
};
|
|
147
|
-
|
|
148
|
-
__propKey = function (x) {
|
|
149
|
-
return typeof x === "symbol" ? x : "".concat(x);
|
|
150
|
-
};
|
|
151
|
-
|
|
152
|
-
__setFunctionName = function (f, name, prefix) {
|
|
153
|
-
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
|
|
154
|
-
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
|
|
155
|
-
};
|
|
156
|
-
|
|
157
|
-
__metadata = function (metadataKey, metadataValue) {
|
|
158
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
|
159
|
-
};
|
|
160
|
-
|
|
161
|
-
__awaiter = function (thisArg, _arguments, P, generator) {
|
|
162
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
163
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
164
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
165
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
166
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
167
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
168
|
-
});
|
|
169
|
-
};
|
|
170
|
-
|
|
171
|
-
__generator = function (thisArg, body) {
|
|
172
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
173
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
174
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
175
|
-
function step(op) {
|
|
176
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
177
|
-
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
178
|
-
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
179
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
180
|
-
switch (op[0]) {
|
|
181
|
-
case 0: case 1: t = op; break;
|
|
182
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
183
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
184
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
185
|
-
default:
|
|
186
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
187
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
188
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
189
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
190
|
-
if (t[2]) _.ops.pop();
|
|
191
|
-
_.trys.pop(); continue;
|
|
192
|
-
}
|
|
193
|
-
op = body.call(thisArg, _);
|
|
194
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
195
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
196
|
-
}
|
|
197
|
-
};
|
|
198
|
-
|
|
199
|
-
__exportStar = function(m, o) {
|
|
200
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
|
201
|
-
};
|
|
202
|
-
|
|
203
|
-
__createBinding = Object.create ? (function(o, m, k, k2) {
|
|
204
|
-
if (k2 === undefined) k2 = k;
|
|
205
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
206
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
207
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
208
|
-
}
|
|
209
|
-
Object.defineProperty(o, k2, desc);
|
|
210
|
-
}) : (function(o, m, k, k2) {
|
|
211
|
-
if (k2 === undefined) k2 = k;
|
|
212
|
-
o[k2] = m[k];
|
|
213
|
-
});
|
|
214
|
-
|
|
215
|
-
__values = function (o) {
|
|
216
|
-
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
217
|
-
if (m) return m.call(o);
|
|
218
|
-
if (o && typeof o.length === "number") return {
|
|
219
|
-
next: function () {
|
|
220
|
-
if (o && i >= o.length) o = void 0;
|
|
221
|
-
return { value: o && o[i++], done: !o };
|
|
222
|
-
}
|
|
223
|
-
};
|
|
224
|
-
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
225
|
-
};
|
|
226
|
-
|
|
227
|
-
__read = function (o, n) {
|
|
228
|
-
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
229
|
-
if (!m) return o;
|
|
230
|
-
var i = m.call(o), r, ar = [], e;
|
|
231
|
-
try {
|
|
232
|
-
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
|
233
|
-
}
|
|
234
|
-
catch (error) { e = { error: error }; }
|
|
235
|
-
finally {
|
|
236
|
-
try {
|
|
237
|
-
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
238
|
-
}
|
|
239
|
-
finally { if (e) throw e.error; }
|
|
240
|
-
}
|
|
241
|
-
return ar;
|
|
242
|
-
};
|
|
243
|
-
|
|
244
|
-
/** @deprecated */
|
|
245
|
-
__spread = function () {
|
|
246
|
-
for (var ar = [], i = 0; i < arguments.length; i++)
|
|
247
|
-
ar = ar.concat(__read(arguments[i]));
|
|
248
|
-
return ar;
|
|
249
|
-
};
|
|
250
|
-
|
|
251
|
-
/** @deprecated */
|
|
252
|
-
__spreadArrays = function () {
|
|
253
|
-
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
|
254
|
-
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
|
255
|
-
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
|
256
|
-
r[k] = a[j];
|
|
257
|
-
return r;
|
|
258
|
-
};
|
|
259
|
-
|
|
260
|
-
__spreadArray = function (to, from, pack) {
|
|
261
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
262
|
-
if (ar || !(i in from)) {
|
|
263
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
264
|
-
ar[i] = from[i];
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
268
|
-
};
|
|
269
|
-
|
|
270
|
-
__await = function (v) {
|
|
271
|
-
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
272
|
-
};
|
|
273
|
-
|
|
274
|
-
__asyncGenerator = function (thisArg, _arguments, generator) {
|
|
275
|
-
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
276
|
-
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
|
277
|
-
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
|
278
|
-
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
|
279
|
-
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
|
280
|
-
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
|
281
|
-
function fulfill(value) { resume("next", value); }
|
|
282
|
-
function reject(value) { resume("throw", value); }
|
|
283
|
-
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
|
284
|
-
};
|
|
285
|
-
|
|
286
|
-
__asyncDelegator = function (o) {
|
|
287
|
-
var i, p;
|
|
288
|
-
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
|
289
|
-
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }
|
|
290
|
-
};
|
|
291
|
-
|
|
292
|
-
__asyncValues = function (o) {
|
|
293
|
-
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
294
|
-
var m = o[Symbol.asyncIterator], i;
|
|
295
|
-
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
|
296
|
-
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
|
297
|
-
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
298
|
-
};
|
|
299
|
-
|
|
300
|
-
__makeTemplateObject = function (cooked, raw) {
|
|
301
|
-
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
302
|
-
return cooked;
|
|
303
|
-
};
|
|
304
|
-
|
|
305
|
-
var __setModuleDefault = Object.create ? (function(o, v) {
|
|
306
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
307
|
-
}) : function(o, v) {
|
|
308
|
-
o["default"] = v;
|
|
309
|
-
};
|
|
310
|
-
|
|
311
|
-
__importStar = function (mod) {
|
|
312
|
-
if (mod && mod.__esModule) return mod;
|
|
313
|
-
var result = {};
|
|
314
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
315
|
-
__setModuleDefault(result, mod);
|
|
316
|
-
return result;
|
|
317
|
-
};
|
|
318
|
-
|
|
319
|
-
__importDefault = function (mod) {
|
|
320
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
321
|
-
};
|
|
322
|
-
|
|
323
|
-
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
|
324
|
-
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
325
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
326
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
327
|
-
};
|
|
328
|
-
|
|
329
|
-
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
|
330
|
-
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
331
|
-
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
332
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
333
|
-
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
334
|
-
};
|
|
335
|
-
|
|
336
|
-
__classPrivateFieldIn = function (state, receiver) {
|
|
337
|
-
if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function")) throw new TypeError("Cannot use 'in' operator on non-object");
|
|
338
|
-
return typeof state === "function" ? receiver === state : state.has(receiver);
|
|
339
|
-
};
|
|
340
|
-
|
|
341
|
-
exporter("__extends", __extends);
|
|
342
|
-
exporter("__assign", __assign);
|
|
343
|
-
exporter("__rest", __rest);
|
|
344
|
-
exporter("__decorate", __decorate);
|
|
345
|
-
exporter("__param", __param);
|
|
346
|
-
exporter("__esDecorate", __esDecorate);
|
|
347
|
-
exporter("__runInitializers", __runInitializers);
|
|
348
|
-
exporter("__propKey", __propKey);
|
|
349
|
-
exporter("__setFunctionName", __setFunctionName);
|
|
350
|
-
exporter("__metadata", __metadata);
|
|
351
|
-
exporter("__awaiter", __awaiter);
|
|
352
|
-
exporter("__generator", __generator);
|
|
353
|
-
exporter("__exportStar", __exportStar);
|
|
354
|
-
exporter("__createBinding", __createBinding);
|
|
355
|
-
exporter("__values", __values);
|
|
356
|
-
exporter("__read", __read);
|
|
357
|
-
exporter("__spread", __spread);
|
|
358
|
-
exporter("__spreadArrays", __spreadArrays);
|
|
359
|
-
exporter("__spreadArray", __spreadArray);
|
|
360
|
-
exporter("__await", __await);
|
|
361
|
-
exporter("__asyncGenerator", __asyncGenerator);
|
|
362
|
-
exporter("__asyncDelegator", __asyncDelegator);
|
|
363
|
-
exporter("__asyncValues", __asyncValues);
|
|
364
|
-
exporter("__makeTemplateObject", __makeTemplateObject);
|
|
365
|
-
exporter("__importStar", __importStar);
|
|
366
|
-
exporter("__importDefault", __importDefault);
|
|
367
|
-
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
|
368
|
-
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
|
369
|
-
exporter("__classPrivateFieldIn", __classPrivateFieldIn);
|
|
370
|
-
});
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@formio/angular",
|
|
3
|
-
"version": "6.0.1",
|
|
4
|
-
"repository": {
|
|
5
|
-
"type": "git",
|
|
6
|
-
"url": "https://github.com/formio/angular-formio"
|
|
7
|
-
},
|
|
8
|
-
"author": {
|
|
9
|
-
"name": "Travis Tidwell",
|
|
10
|
-
"email": "travis@form.io"
|
|
11
|
-
},
|
|
12
|
-
"keywords": [
|
|
13
|
-
"angular",
|
|
14
|
-
"forms",
|
|
15
|
-
"json forms",
|
|
16
|
-
"javascript forms",
|
|
17
|
-
"model driven forms",
|
|
18
|
-
"form.io"
|
|
19
|
-
],
|
|
20
|
-
"license": "MIT",
|
|
21
|
-
"bugs": {
|
|
22
|
-
"url": "https://github.com/formio/angular-formio/issues"
|
|
23
|
-
},
|
|
24
|
-
"engines": {
|
|
25
|
-
"node": ">=6.0.0"
|
|
26
|
-
},
|
|
27
|
-
"peerDependencies": {
|
|
28
|
-
"@angular/core": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
29
|
-
"@angular/common": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
30
|
-
"@angular/elements": "^9.0.0 || ^10.0.0 || ^11.0.0|| ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
31
|
-
"formiojs": "^4.18.0",
|
|
32
|
-
"zone.js": "~0.11.4 || ~0.12.0 || ~0.13.0",
|
|
33
|
-
"lodash": "^4.17.20",
|
|
34
|
-
"ngx-bootstrap": "^11.0.2"
|
|
35
|
-
},
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"tslib": "^2.0.0"
|
|
38
|
-
}
|
|
39
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<h3 *ngIf="service.form" style="margin-top:0;">
|
|
2
|
-
<a routerLink="../" class="back-button">
|
|
3
|
-
<em class="fa fa-chevron-left bi bi-chevron-left"></em>
|
|
4
|
-
</a> | New {{ service.form.title }}
|
|
5
|
-
</h3>
|
|
6
|
-
<formio
|
|
7
|
-
[form]="service.form"
|
|
8
|
-
[submission]="service.resource"
|
|
9
|
-
[refresh]="service.refresh"
|
|
10
|
-
[error]="onError"
|
|
11
|
-
[success]="onSuccess"
|
|
12
|
-
(submit)="onSubmit($event)"
|
|
13
|
-
></formio>
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { FormioResourceService } from '../resource.service';
|
|
4
|
-
import { FormioResourceConfig } from '../resource.config';
|
|
5
|
-
|
|
6
|
-
@Component({
|
|
7
|
-
styleUrls: ['./create.component.scss'],
|
|
8
|
-
templateUrl: './create.component.html'
|
|
9
|
-
})
|
|
10
|
-
export class FormioResourceCreateComponent implements OnInit {
|
|
11
|
-
public onError: EventEmitter<any>;
|
|
12
|
-
public onSuccess: EventEmitter<any>;
|
|
13
|
-
constructor(
|
|
14
|
-
public service: FormioResourceService,
|
|
15
|
-
public route: ActivatedRoute,
|
|
16
|
-
public router: Router,
|
|
17
|
-
public config: FormioResourceConfig
|
|
18
|
-
) {
|
|
19
|
-
this.onError = new EventEmitter();
|
|
20
|
-
this.onSuccess = new EventEmitter();
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
ngOnInit(): void {
|
|
24
|
-
this.service.init(this.route);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
onSubmit(submission: any) {
|
|
28
|
-
this.service
|
|
29
|
-
.save(submission)
|
|
30
|
-
.then(() => {
|
|
31
|
-
this.router.navigate(['../', this.service.resource._id, 'view'], {
|
|
32
|
-
relativeTo: this.route
|
|
33
|
-
});
|
|
34
|
-
})
|
|
35
|
-
.catch((err: any) => this.onError.emit(err));
|
|
36
|
-
}
|
|
37
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<h3>Are you sure you wish to delete this record?</h3>
|
|
2
|
-
<div class="btn-toolbar">
|
|
3
|
-
<button type="button" (click)="onDelete()" class="btn btn-danger" style="margin-right: 10px;">Yes</button>
|
|
4
|
-
<button type="button" (click)="onCancel()" class="btn btn-danger">No</button>
|
|
5
|
-
</div>
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { FormioResourceService } from '../resource.service';
|
|
4
|
-
|
|
5
|
-
@Component({
|
|
6
|
-
templateUrl: './delete.component.html'
|
|
7
|
-
})
|
|
8
|
-
export class FormioResourceDeleteComponent {
|
|
9
|
-
constructor(
|
|
10
|
-
public service: FormioResourceService,
|
|
11
|
-
public route: ActivatedRoute,
|
|
12
|
-
public router: Router
|
|
13
|
-
) {}
|
|
14
|
-
|
|
15
|
-
onDelete() {
|
|
16
|
-
this.service.remove().then(() => {
|
|
17
|
-
this.router.navigate(['../../'], { relativeTo: this.route });
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
onCancel() {
|
|
22
|
-
this.router.navigate(['../', 'view'], { relativeTo: this.route });
|
|
23
|
-
}
|
|
24
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import {Component, EventEmitter, OnDestroy} from '@angular/core';
|
|
2
|
-
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { FormioResourceService } from '../resource.service';
|
|
4
|
-
import { FormioResourceConfig } from '../resource.config';
|
|
5
|
-
import { Formio } from 'formiojs';
|
|
6
|
-
|
|
7
|
-
@Component({
|
|
8
|
-
templateUrl: './edit.component.html'
|
|
9
|
-
})
|
|
10
|
-
export class FormioResourceEditComponent implements OnDestroy {
|
|
11
|
-
public triggerError: EventEmitter<any> = new EventEmitter();
|
|
12
|
-
public onSubmitDone: EventEmitter<object> = new EventEmitter();
|
|
13
|
-
public submission = {data: {}};
|
|
14
|
-
constructor(
|
|
15
|
-
public service: FormioResourceService,
|
|
16
|
-
public route: ActivatedRoute,
|
|
17
|
-
public router: Router,
|
|
18
|
-
public config: FormioResourceConfig
|
|
19
|
-
) {}
|
|
20
|
-
|
|
21
|
-
onSubmit(submission: any) {
|
|
22
|
-
const edit = this.service.resource;
|
|
23
|
-
edit.data = submission.data;
|
|
24
|
-
this.service.save(edit)
|
|
25
|
-
.then(() => {
|
|
26
|
-
this.onSubmitDone.emit(this.service.resource);
|
|
27
|
-
this.router.navigate(['../', 'view'], { relativeTo: this.route });
|
|
28
|
-
})
|
|
29
|
-
.catch((err) => this.triggerError.emit(err));
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
ngOnDestroy() {
|
|
33
|
-
Formio.clearCache();
|
|
34
|
-
}
|
|
35
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<formio-alerts [alerts]="service.alerts"></formio-alerts>
|
|
2
|
-
<formio-grid
|
|
3
|
-
[src]="gridSrc"
|
|
4
|
-
[query]="gridQuery"
|
|
5
|
-
[onForm]="service.formLoaded"
|
|
6
|
-
(rowSelect)="onSelect($event)"
|
|
7
|
-
(error)="service.onError($event)"
|
|
8
|
-
(createItem)="onCreateItem()"
|
|
9
|
-
[createText]="createText"
|
|
10
|
-
></formio-grid>
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import { Component, OnInit, ChangeDetectorRef, NgZone } from '@angular/core';
|
|
2
|
-
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { FormioResourceService } from '../resource.service';
|
|
4
|
-
import { FormioResourceConfig } from '../resource.config';
|
|
5
|
-
import { each } from 'lodash';
|
|
6
|
-
|
|
7
|
-
@Component({
|
|
8
|
-
templateUrl: './index.component.html'
|
|
9
|
-
})
|
|
10
|
-
export class FormioResourceIndexComponent implements OnInit {
|
|
11
|
-
public gridSrc?: string;
|
|
12
|
-
public gridQuery: any;
|
|
13
|
-
public createText: String;
|
|
14
|
-
|
|
15
|
-
constructor(
|
|
16
|
-
public service: FormioResourceService,
|
|
17
|
-
public route: ActivatedRoute,
|
|
18
|
-
public router: Router,
|
|
19
|
-
public config: FormioResourceConfig,
|
|
20
|
-
public cdr: ChangeDetectorRef,
|
|
21
|
-
public ngZone: NgZone,
|
|
22
|
-
) {
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
ngOnInit() {
|
|
26
|
-
this.service.init(this.route).then(() => {
|
|
27
|
-
this.gridQuery = {};
|
|
28
|
-
if (
|
|
29
|
-
this.service &&
|
|
30
|
-
this.config.parents &&
|
|
31
|
-
this.config.parents.length
|
|
32
|
-
) {
|
|
33
|
-
this.service.loadParents().then((parents: any) => {
|
|
34
|
-
each(parents, (parent: any) => {
|
|
35
|
-
if (parent && parent.filter) {
|
|
36
|
-
this.gridQuery['data.' + parent.name + '._id'] =
|
|
37
|
-
parent.resource._id;
|
|
38
|
-
}
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
// Set the source to load the grid.
|
|
42
|
-
this.gridSrc = this.service.formUrl;
|
|
43
|
-
this.createText = `New ${this.service.form.title}`;
|
|
44
|
-
this.cdr.detectChanges();
|
|
45
|
-
});
|
|
46
|
-
} else if (this.service.formUrl) {
|
|
47
|
-
this.gridSrc = this.service.formUrl;
|
|
48
|
-
this.createText = `New ${this.service.form.title}`;
|
|
49
|
-
}
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
onSelect(row: any) {
|
|
54
|
-
this.ngZone.run(() => {
|
|
55
|
-
this.router.navigate([row._id, 'view'], { relativeTo: this.route });
|
|
56
|
-
});
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
onCreateItem() {
|
|
60
|
-
this.ngZone.run(() => {
|
|
61
|
-
this.router.navigate(['new'], { relativeTo: this.route });
|
|
62
|
-
});
|
|
63
|
-
}
|
|
64
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var resource_config_1 = require("./resource.config");
|
|
4
|
-
exports.FormioResourceConfig = resource_config_1.FormioResourceConfig;
|
|
5
|
-
var resources_service_1 = require("./resources.service");
|
|
6
|
-
exports.FormioResources = resources_service_1.FormioResources;
|
|
7
|
-
var resource_service_1 = require("./resource.service");
|
|
8
|
-
exports.FormioResourceService = resource_service_1.FormioResourceService;
|
|
9
|
-
var resource_component_1 = require("./resource.component");
|
|
10
|
-
exports.FormioResourceComponent = resource_component_1.FormioResourceComponent;
|
|
11
|
-
var view_component_1 = require("./view/view.component");
|
|
12
|
-
exports.FormioResourceViewComponent = view_component_1.FormioResourceViewComponent;
|
|
13
|
-
var edit_component_1 = require("./edit/edit.component");
|
|
14
|
-
exports.FormioResourceEditComponent = edit_component_1.FormioResourceEditComponent;
|
|
15
|
-
var delete_component_1 = require("./delete/delete.component");
|
|
16
|
-
exports.FormioResourceDeleteComponent = delete_component_1.FormioResourceDeleteComponent;
|
|
17
|
-
var create_component_1 = require("./create/create.component");
|
|
18
|
-
exports.FormioResourceCreateComponent = create_component_1.FormioResourceCreateComponent;
|
|
19
|
-
var index_component_1 = require("./index/index.component");
|
|
20
|
-
exports.FormioResourceIndexComponent = index_component_1.FormioResourceIndexComponent;
|
|
21
|
-
var resource_routes_1 = require("./resource.routes");
|
|
22
|
-
exports.FormioResourceRoutes = resource_routes_1.FormioResourceRoutes;
|
|
23
|
-
var resource_module_1 = require("./resource.module");
|
|
24
|
-
exports.FormioResource = resource_module_1.FormioResource;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export { FormioResourceConfig } from './resource.config';
|
|
2
|
-
export { FormioResources } from './resources.service';
|
|
3
|
-
export { FormioResourceService } from './resource.service';
|
|
4
|
-
export { FormioResourceComponent } from './resource.component';
|
|
5
|
-
export { FormioResourceViewComponent } from './view/view.component';
|
|
6
|
-
export { FormioResourceEditComponent } from './edit/edit.component';
|
|
7
|
-
export { FormioResourceDeleteComponent } from './delete/delete.component';
|
|
8
|
-
export { FormioResourceCreateComponent } from './create/create.component';
|
|
9
|
-
export { FormioResourceIndexComponent } from './index/index.component';
|
|
10
|
-
export { FormioResourceRoutes } from './resource.routes';
|
|
11
|
-
export { FormioResource } from './resource.module';
|