@formio/angular 7.0.0 → 7.5.0-rc.1-dev.1060.2e45ec8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +5 -0
- package/.editorconfig +13 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- package/.github/ISSUE_TEMPLATE/custom-components-support-request.md +15 -0
- package/.github/ISSUE_TEMPLATE/question.md +8 -0
- package/.github/pull_request_template.md +35 -0
- package/.github/workflows/repo.yml +145 -0
- package/.travis.yml +4 -0
- package/.yo-rc.json +7 -0
- package/CHANGELOG.md +1153 -0
- package/Dockerfile +20 -0
- package/LICENSE +21 -0
- package/README.md +204 -13
- package/angular.json +38 -0
- package/bs-config.json +11 -0
- package/package.json +54 -57
- package/projects/angular-formio/README.md +24 -0
- package/projects/angular-formio/auth/ng-package.json +5 -0
- package/projects/angular-formio/auth/src/auth.component.html +11 -0
- package/projects/angular-formio/auth/src/auth.component.ts +5 -0
- package/projects/angular-formio/auth/src/auth.config.ts +72 -0
- package/projects/angular-formio/auth/src/auth.module.ts +33 -0
- package/projects/angular-formio/auth/src/auth.routes.ts +34 -0
- package/projects/angular-formio/auth/src/auth.service.ts +221 -0
- package/{auth/index.d.ts → projects/angular-formio/auth/src/index.ts} +1 -2
- package/projects/angular-formio/auth/src/login/login.component.html +1 -0
- package/projects/angular-formio/auth/src/login/login.component.ts +11 -0
- package/projects/angular-formio/auth/src/public_api.ts +5 -0
- package/projects/angular-formio/auth/src/register/register.component.html +1 -0
- package/projects/angular-formio/auth/src/register/register.component.ts +11 -0
- package/projects/angular-formio/auth/src/resetpass/resetpass.component.html +1 -0
- package/projects/angular-formio/auth/src/resetpass/resetpass.component.ts +8 -0
- package/projects/angular-formio/embed/ng-package.json +5 -0
- package/projects/angular-formio/embed/src/app.service.ts +59 -0
- package/projects/angular-formio/embed/src/builder.component.ts +19 -0
- package/projects/angular-formio/embed/src/embed.module.ts +23 -0
- package/projects/angular-formio/embed/src/formio.component.ts +27 -0
- package/projects/angular-formio/embed/src/index.ts +6 -0
- package/projects/angular-formio/grid/ng-package.json +5 -0
- package/projects/angular-formio/grid/src/GridBodyComponent.ts +80 -0
- package/projects/angular-formio/grid/src/GridFooterComponent.ts +25 -0
- package/projects/angular-formio/grid/src/GridHeaderComponent.ts +25 -0
- package/projects/angular-formio/grid/src/form/FormGridBody.component.html +22 -0
- package/projects/angular-formio/grid/src/form/FormGridBody.component.scss +4 -0
- package/projects/angular-formio/grid/src/form/FormGridBody.component.ts +46 -0
- package/projects/angular-formio/grid/src/form/FormGridFooter.component.html +21 -0
- package/projects/angular-formio/grid/src/form/FormGridFooter.component.ts +23 -0
- package/projects/angular-formio/grid/src/form/FormGridHeader.component.html +18 -0
- package/projects/angular-formio/grid/src/form/FormGridHeader.component.ts +24 -0
- package/projects/angular-formio/grid/src/form/index.ts +8 -0
- package/projects/angular-formio/grid/src/form/time-since.pipe.ts +31 -0
- package/projects/angular-formio/grid/src/grid.component.html +18 -0
- package/projects/angular-formio/grid/src/grid.component.scss +9 -0
- package/projects/angular-formio/grid/src/grid.component.ts +242 -0
- package/projects/angular-formio/grid/src/grid.footer.scss +14 -0
- package/projects/angular-formio/grid/src/grid.module.ts +49 -0
- package/projects/angular-formio/grid/src/grid.service.ts +16 -0
- package/{grid/index.d.ts → projects/angular-formio/grid/src/index.ts} +0 -1
- package/projects/angular-formio/grid/src/public_api.ts +5 -0
- package/projects/angular-formio/grid/src/submission/SubmissionGridBody.component.html +7 -0
- package/projects/angular-formio/grid/src/submission/SubmissionGridBody.component.ts +39 -0
- package/projects/angular-formio/grid/src/submission/SubmissionGridFooter.component.html +18 -0
- package/projects/angular-formio/grid/src/submission/SubmissionGridFooter.component.ts +20 -0
- package/projects/angular-formio/grid/src/submission/SubmissionGridHeader.component.html +11 -0
- package/projects/angular-formio/grid/src/submission/SubmissionGridHeader.component.ts +72 -0
- package/{grid/submission/index.d.ts → projects/angular-formio/grid/src/submission/index.ts} +4 -6
- package/projects/angular-formio/grid/src/types/grid-column.ts +7 -0
- package/projects/angular-formio/grid/src/types/grid-footer-positions.ts +5 -0
- package/projects/angular-formio/grid/src/types/grid-header.ts +14 -0
- package/projects/angular-formio/karma.conf.js +32 -0
- package/projects/angular-formio/manager/ng-package.json +5 -0
- package/projects/angular-formio/manager/src/create/create.component.ts +11 -0
- package/projects/angular-formio/manager/src/delete/delete.component.html +6 -0
- package/projects/angular-formio/manager/src/delete/delete.component.ts +37 -0
- package/projects/angular-formio/manager/src/edit/edit.component.html +19 -0
- package/projects/angular-formio/manager/src/edit/edit.component.ts +110 -0
- package/projects/angular-formio/manager/src/form/form.component.html +32 -0
- package/projects/angular-formio/manager/src/form/form.component.ts +73 -0
- package/projects/angular-formio/manager/src/form-manager.config.ts +31 -0
- package/projects/angular-formio/manager/src/form-manager.module.ts +54 -0
- package/projects/angular-formio/manager/src/form-manager.routes.ts +75 -0
- package/projects/angular-formio/manager/src/form-manager.service.ts +190 -0
- package/projects/angular-formio/manager/src/index/index.component.html +14 -0
- package/projects/angular-formio/manager/src/index/index.component.scss +22 -0
- package/projects/angular-formio/manager/src/index/index.component.ts +100 -0
- package/{manager/index.d.ts → projects/angular-formio/manager/src/index.ts} +0 -1
- package/projects/angular-formio/manager/src/public_api.ts +5 -0
- package/projects/angular-formio/manager/src/submission/delete/delete.component.html +6 -0
- package/projects/angular-formio/manager/src/submission/delete/delete.component.ts +26 -0
- package/projects/angular-formio/manager/src/submission/edit/edit.component.html +7 -0
- package/projects/angular-formio/manager/src/submission/edit/edit.component.ts +18 -0
- package/projects/angular-formio/manager/src/submission/index/index.component.html +1 -0
- package/projects/angular-formio/manager/src/submission/index/index.component.ts +18 -0
- package/projects/angular-formio/manager/src/submission/submission/submission.component.html +8 -0
- package/projects/angular-formio/manager/src/submission/submission/submission.component.ts +24 -0
- package/projects/angular-formio/manager/src/submission/view/view.component.html +7 -0
- package/projects/angular-formio/manager/src/submission/view/view.component.ts +9 -0
- package/projects/angular-formio/manager/src/view/view.component.html +11 -0
- package/projects/angular-formio/manager/src/view/view.component.ts +44 -0
- package/projects/angular-formio/ng-package.json +7 -0
- package/projects/angular-formio/package.json +37 -0
- package/projects/angular-formio/resource/ng-package.json +5 -0
- package/projects/angular-formio/resource/src/create/create.component.html +13 -0
- package/projects/angular-formio/resource/src/create/create.component.scss +3 -0
- package/projects/angular-formio/resource/src/create/create.component.ts +37 -0
- package/projects/angular-formio/resource/src/delete/delete.component.html +5 -0
- package/projects/angular-formio/resource/src/delete/delete.component.ts +24 -0
- package/projects/angular-formio/resource/src/edit/edit.component.html +7 -0
- package/projects/angular-formio/resource/src/edit/edit.component.ts +35 -0
- package/projects/angular-formio/resource/src/index/index.component.html +10 -0
- package/projects/angular-formio/resource/src/index/index.component.ts +64 -0
- package/projects/angular-formio/resource/src/index.js +24 -0
- package/{resource/index.d.ts → projects/angular-formio/resource/src/index.ts} +0 -1
- package/projects/angular-formio/resource/src/public_api.ts +5 -0
- package/projects/angular-formio/resource/src/resource.component.html +7 -0
- package/projects/angular-formio/resource/src/resource.component.ts +48 -0
- package/projects/angular-formio/resource/src/resource.config.ts +17 -0
- package/projects/angular-formio/resource/src/resource.module.ts +43 -0
- package/projects/angular-formio/resource/src/resource.routes.ts +43 -0
- package/projects/angular-formio/resource/src/resource.service.ts +258 -0
- package/projects/angular-formio/resource/src/resources.service.ts +24 -0
- package/projects/angular-formio/resource/src/view/view.component.html +6 -0
- package/projects/angular-formio/resource/src/view/view.component.ts +19 -0
- package/projects/angular-formio/src/FormioBaseComponent.ts +554 -0
- package/projects/angular-formio/src/components/alerts/formio.alerts.component.html +3 -0
- package/projects/angular-formio/src/components/alerts/formio.alerts.component.ts +19 -0
- package/projects/angular-formio/src/components/alerts/formio.alerts.ts +21 -0
- package/projects/angular-formio/src/components/alerts/parse-html-content.pipe.ts +15 -0
- package/projects/angular-formio/src/components/formbuilder/formbuilder.component.html +1 -0
- package/projects/angular-formio/src/components/formbuilder/formbuilder.component.ts +213 -0
- package/projects/angular-formio/src/components/formio/formio.component.html +8 -0
- package/projects/angular-formio/src/components/formio/formio.component.ts +33 -0
- package/projects/angular-formio/src/components/formioreport/formioreport.component.html +8 -0
- package/projects/angular-formio/src/components/formioreport/formioreport.component.ts +95 -0
- package/projects/angular-formio/src/components/loader/formio.loader.component.html +3 -0
- package/projects/angular-formio/src/components/loader/formio.loader.component.scss +26 -0
- package/projects/angular-formio/src/components/loader/formio.loader.component.ts +10 -0
- package/{core.d.ts → projects/angular-formio/src/core.ts} +12 -2
- package/projects/angular-formio/src/custom-tags.service.ts +9 -0
- package/projects/angular-formio/src/formio-promise.service.ts +36 -0
- package/projects/angular-formio/src/formio.common.ts +91 -0
- package/projects/angular-formio/src/formio.config.ts +26 -0
- package/projects/angular-formio/src/formio.module.ts +38 -0
- package/projects/angular-formio/src/formio.service.ts +57 -0
- package/projects/angular-formio/src/formio.utils.ts +23 -0
- package/{index.d.ts → projects/angular-formio/src/index.ts} +0 -1
- package/projects/angular-formio/src/public-api.ts +5 -0
- package/projects/angular-formio/src/test.ts +28 -0
- package/projects/angular-formio/src/types/alerts-position.ts +6 -0
- package/projects/angular-formio/src/types/formio-metadata.ts +10 -0
- package/projects/angular-formio/src/types/formio-submission.ts +20 -0
- package/projects/angular-formio/tsconfig.lib.json +27 -0
- package/projects/angular-formio/tsconfig.lib.prod.json +8 -0
- package/projects/angular-formio/tsconfig.spec.json +17 -0
- package/projects/angular-formio/tslint.json +17 -0
- package/tsconfig.json +39 -0
- package/tslint.json +140 -0
- package/FormioBaseComponent.d.ts +0 -93
- package/FormioBaseComponent.d.ts.map +0 -1
- package/auth/auth.component.d.ts +0 -6
- package/auth/auth.component.d.ts.map +0 -1
- package/auth/auth.config.d.ts +0 -63
- package/auth/auth.config.d.ts.map +0 -1
- package/auth/auth.module.d.ts +0 -17
- package/auth/auth.module.d.ts.map +0 -1
- package/auth/auth.routes.d.ts +0 -4
- package/auth/auth.routes.d.ts.map +0 -1
- package/auth/auth.service.d.ts +0 -41
- package/auth/auth.service.d.ts.map +0 -1
- package/auth/formio-angular-auth.d.ts.map +0 -1
- package/auth/index.d.ts.map +0 -1
- package/auth/login/login.component.d.ts +0 -10
- package/auth/login/login.component.d.ts.map +0 -1
- package/auth/register/register.component.d.ts +0 -10
- package/auth/register/register.component.d.ts.map +0 -1
- package/auth/resetpass/resetpass.component.d.ts +0 -9
- package/auth/resetpass/resetpass.component.d.ts.map +0 -1
- package/components/alerts/formio.alerts.component.d.ts +0 -12
- package/components/alerts/formio.alerts.component.d.ts.map +0 -1
- package/components/alerts/formio.alerts.d.ts +0 -12
- package/components/alerts/formio.alerts.d.ts.map +0 -1
- package/components/alerts/parse-html-content.pipe.d.ts +0 -8
- package/components/alerts/parse-html-content.pipe.d.ts.map +0 -1
- package/components/formbuilder/formbuilder.component.d.ts +0 -37
- package/components/formbuilder/formbuilder.component.d.ts.map +0 -1
- package/components/formio/formio.component.d.ts +0 -15
- package/components/formio/formio.component.d.ts.map +0 -1
- package/components/formioreport/formioreport.component.d.ts +0 -20
- package/components/formioreport/formioreport.component.d.ts.map +0 -1
- package/components/loader/formio.loader.component.d.ts +0 -7
- package/components/loader/formio.loader.component.d.ts.map +0 -1
- package/core.d.ts.map +0 -1
- package/custom-tags.service.d.ts +0 -8
- package/custom-tags.service.d.ts.map +0 -1
- package/esm2022/FormioBaseComponent.mjs +0 -583
- package/esm2022/auth/auth.component.mjs +0 -12
- package/esm2022/auth/auth.config.mjs +0 -21
- package/esm2022/auth/auth.module.mjs +0 -46
- package/esm2022/auth/auth.routes.mjs +0 -32
- package/esm2022/auth/auth.service.mjs +0 -199
- package/esm2022/auth/formio-angular-auth.mjs +0 -5
- package/esm2022/auth/index.mjs +0 -9
- package/esm2022/auth/login/login.component.mjs +0 -20
- package/esm2022/auth/register/register.component.mjs +0 -20
- package/esm2022/auth/resetpass/resetpass.component.mjs +0 -17
- package/esm2022/components/alerts/formio.alerts.component.mjs +0 -28
- package/esm2022/components/alerts/formio.alerts.mjs +0 -13
- package/esm2022/components/alerts/parse-html-content.pipe.mjs +0 -19
- package/esm2022/components/formbuilder/formbuilder.component.mjs +0 -202
- package/esm2022/components/formio/formio.component.mjs +0 -43
- package/esm2022/components/formioreport/formioreport.component.mjs +0 -86
- package/esm2022/components/loader/formio.loader.component.mjs +0 -15
- package/esm2022/core.mjs +0 -18
- package/esm2022/custom-tags.service.mjs +0 -14
- package/esm2022/formio-angular.mjs +0 -5
- package/esm2022/formio-promise.service.mjs +0 -36
- package/esm2022/formio.common.mjs +0 -11
- package/esm2022/formio.config.mjs +0 -29
- package/esm2022/formio.module.mjs +0 -59
- package/esm2022/formio.service.mjs +0 -62
- package/esm2022/formio.utils.mjs +0 -21
- package/esm2022/grid/GridBodyComponent.mjs +0 -89
- package/esm2022/grid/GridFooterComponent.mjs +0 -44
- package/esm2022/grid/GridHeaderComponent.mjs +0 -34
- package/esm2022/grid/form/FormGridBody.component.mjs +0 -63
- package/esm2022/grid/form/FormGridFooter.component.mjs +0 -26
- package/esm2022/grid/form/FormGridHeader.component.mjs +0 -27
- package/esm2022/grid/form/index.mjs +0 -9
- package/esm2022/grid/form/time-since.pipe.mjs +0 -37
- package/esm2022/grid/formio-angular-grid.mjs +0 -5
- package/esm2022/grid/grid.component.mjs +0 -257
- package/esm2022/grid/grid.module.mjs +0 -79
- package/esm2022/grid/grid.service.mjs +0 -18
- package/esm2022/grid/index.mjs +0 -13
- package/esm2022/grid/submission/SubmissionGridBody.component.mjs +0 -43
- package/esm2022/grid/submission/SubmissionGridFooter.component.mjs +0 -23
- package/esm2022/grid/submission/SubmissionGridHeader.component.mjs +0 -63
- package/esm2022/grid/submission/index.mjs +0 -9
- package/esm2022/grid/types/grid-column.mjs +0 -2
- package/esm2022/grid/types/grid-footer-positions.mjs +0 -7
- package/esm2022/grid/types/grid-header.mjs +0 -6
- package/esm2022/index.mjs +0 -3
- package/esm2022/manager/create/create.component.mjs +0 -18
- package/esm2022/manager/delete/delete.component.mjs +0 -42
- package/esm2022/manager/edit/edit.component.mjs +0 -125
- package/esm2022/manager/form/form.component.mjs +0 -80
- package/esm2022/manager/form-manager.config.mjs +0 -18
- package/esm2022/manager/form-manager.module.mjs +0 -83
- package/esm2022/manager/form-manager.routes.mjs +0 -74
- package/esm2022/manager/form-manager.service.mjs +0 -185
- package/esm2022/manager/formio-angular-manager.mjs +0 -5
- package/esm2022/manager/index/index.component.mjs +0 -108
- package/esm2022/manager/index.mjs +0 -16
- package/esm2022/manager/submission/delete/delete.component.mjs +0 -32
- package/esm2022/manager/submission/edit/edit.component.mjs +0 -25
- package/esm2022/manager/submission/index/index.component.mjs +0 -25
- package/esm2022/manager/submission/submission/submission.component.mjs +0 -29
- package/esm2022/manager/submission/view/view.component.mjs +0 -17
- package/esm2022/manager/view/view.component.mjs +0 -52
- package/esm2022/resource/create/create.component.mjs +0 -43
- package/esm2022/resource/delete/delete.component.mjs +0 -29
- package/esm2022/resource/edit/edit.component.mjs +0 -42
- package/esm2022/resource/formio-angular-resource.mjs +0 -5
- package/esm2022/resource/index/index.component.mjs +0 -69
- package/esm2022/resource/index.mjs +0 -12
- package/esm2022/resource/resource.component.mjs +0 -46
- package/esm2022/resource/resource.config.mjs +0 -13
- package/esm2022/resource/resource.module.mjs +0 -62
- package/esm2022/resource/resource.routes.mjs +0 -42
- package/esm2022/resource/resource.service.mjs +0 -229
- package/esm2022/resource/resources.service.mjs +0 -25
- package/esm2022/resource/view/view.component.mjs +0 -25
- package/esm2022/types/alerts-position.mjs +0 -8
- package/esm2022/types/formio-metadata.mjs +0 -2
- package/esm2022/types/formio-submission.mjs +0 -6
- package/fesm2022/formio-angular-auth.mjs +0 -345
- package/fesm2022/formio-angular-auth.mjs.map +0 -1
- package/fesm2022/formio-angular-grid.mjs +0 -771
- package/fesm2022/formio-angular-grid.mjs.map +0 -1
- package/fesm2022/formio-angular-manager.mjs +0 -822
- package/fesm2022/formio-angular-manager.mjs.map +0 -1
- package/fesm2022/formio-angular-resource.mjs +0 -571
- package/fesm2022/formio-angular-resource.mjs.map +0 -1
- package/fesm2022/formio-angular.mjs +0 -1186
- package/fesm2022/formio-angular.mjs.map +0 -1
- package/formio-angular.d.ts.map +0 -1
- package/formio-promise.service.d.ts +0 -16
- package/formio-promise.service.d.ts.map +0 -1
- package/formio.common.d.ts +0 -73
- package/formio.common.d.ts.map +0 -1
- package/formio.config.d.ts +0 -20
- package/formio.config.d.ts.map +0 -1
- package/formio.module.d.ts +0 -15
- package/formio.module.d.ts.map +0 -1
- package/formio.service.d.ts +0 -18
- package/formio.service.d.ts.map +0 -1
- package/formio.utils.d.ts +0 -2
- package/formio.utils.d.ts.map +0 -1
- package/grid/GridBodyComponent.d.ts +0 -35
- package/grid/GridBodyComponent.d.ts.map +0 -1
- package/grid/GridFooterComponent.d.ts +0 -20
- package/grid/GridFooterComponent.d.ts.map +0 -1
- package/grid/GridHeaderComponent.d.ts +0 -16
- package/grid/GridHeaderComponent.d.ts.map +0 -1
- package/grid/form/FormGridBody.component.d.ts +0 -19
- package/grid/form/FormGridBody.component.d.ts.map +0 -1
- package/grid/form/FormGridFooter.component.d.ts +0 -10
- package/grid/form/FormGridFooter.component.d.ts.map +0 -1
- package/grid/form/FormGridHeader.component.d.ts +0 -11
- package/grid/form/FormGridHeader.component.d.ts.map +0 -1
- package/grid/form/index.d.ts +0 -10
- package/grid/form/index.d.ts.map +0 -1
- package/grid/form/time-since.pipe.d.ts +0 -8
- package/grid/form/time-since.pipe.d.ts.map +0 -1
- package/grid/formio-angular-grid.d.ts.map +0 -1
- package/grid/grid.component.d.ts +0 -59
- package/grid/grid.component.d.ts.map +0 -1
- package/grid/grid.module.d.ts +0 -23
- package/grid/grid.module.d.ts.map +0 -1
- package/grid/grid.service.d.ts +0 -10
- package/grid/grid.service.d.ts.map +0 -1
- package/grid/index.d.ts.map +0 -1
- package/grid/submission/SubmissionGridBody.component.d.ts +0 -19
- package/grid/submission/SubmissionGridBody.component.d.ts.map +0 -1
- package/grid/submission/SubmissionGridFooter.component.d.ts +0 -10
- package/grid/submission/SubmissionGridFooter.component.d.ts.map +0 -1
- package/grid/submission/SubmissionGridHeader.component.d.ts +0 -30
- package/grid/submission/SubmissionGridHeader.component.d.ts.map +0 -1
- package/grid/submission/index.d.ts.map +0 -1
- package/grid/types/grid-column.d.ts +0 -7
- package/grid/types/grid-column.d.ts.map +0 -1
- package/grid/types/grid-footer-positions.d.ts +0 -6
- package/grid/types/grid-footer-positions.d.ts.map +0 -1
- package/grid/types/grid-header.d.ts +0 -13
- package/grid/types/grid-header.d.ts.map +0 -1
- package/index.d.ts.map +0 -1
- package/manager/create/create.component.d.ts +0 -9
- package/manager/create/create.component.d.ts.map +0 -1
- package/manager/delete/delete.component.d.ts +0 -18
- package/manager/delete/delete.component.d.ts.map +0 -1
- package/manager/edit/edit.component.d.ts +0 -31
- package/manager/edit/edit.component.d.ts.map +0 -1
- package/manager/form/form.component.d.ts +0 -29
- package/manager/form/form.component.d.ts.map +0 -1
- package/manager/form-manager.config.d.ts +0 -30
- package/manager/form-manager.config.d.ts.map +0 -1
- package/manager/form-manager.module.d.ts +0 -28
- package/manager/form-manager.module.d.ts.map +0 -1
- package/manager/form-manager.routes.d.ts +0 -4
- package/manager/form-manager.routes.d.ts.map +0 -1
- package/manager/form-manager.service.d.ts +0 -37
- package/manager/form-manager.service.d.ts.map +0 -1
- package/manager/formio-angular-manager.d.ts.map +0 -1
- package/manager/index/index.component.d.ts +0 -28
- package/manager/index/index.component.d.ts.map +0 -1
- package/manager/index.d.ts.map +0 -1
- package/manager/submission/delete/delete.component.d.ts +0 -16
- package/manager/submission/delete/delete.component.d.ts.map +0 -1
- package/manager/submission/edit/edit.component.d.ts +0 -13
- package/manager/submission/edit/edit.component.d.ts.map +0 -1
- package/manager/submission/index/index.component.d.ts +0 -13
- package/manager/submission/index/index.component.d.ts.map +0 -1
- package/manager/submission/submission/submission.component.d.ts +0 -15
- package/manager/submission/submission/submission.component.d.ts.map +0 -1
- package/manager/submission/view/view.component.d.ts +0 -9
- package/manager/submission/view/view.component.d.ts.map +0 -1
- package/manager/view/view.component.d.ts +0 -24
- package/manager/view/view.component.d.ts.map +0 -1
- package/resource/create/create.component.d.ts +0 -19
- package/resource/create/create.component.d.ts.map +0 -1
- package/resource/delete/delete.component.d.ts +0 -14
- package/resource/delete/delete.component.d.ts.map +0 -1
- package/resource/edit/edit.component.d.ts +0 -22
- package/resource/edit/edit.component.d.ts.map +0 -1
- package/resource/formio-angular-resource.d.ts.map +0 -1
- package/resource/index/index.component.d.ts +0 -23
- package/resource/index/index.component.d.ts.map +0 -1
- package/resource/index.d.ts.map +0 -1
- package/resource/resource.component.d.ts +0 -24
- package/resource/resource.component.d.ts.map +0 -1
- package/resource/resource.config.d.ts +0 -17
- package/resource/resource.config.d.ts.map +0 -1
- package/resource/resource.module.d.ts +0 -20
- package/resource/resource.module.d.ts.map +0 -1
- package/resource/resource.routes.d.ts +0 -4
- package/resource/resource.routes.d.ts.map +0 -1
- package/resource/resource.service.d.ts +0 -52
- package/resource/resource.service.d.ts.map +0 -1
- package/resource/resources.service.d.ts +0 -16
- package/resource/resources.service.d.ts.map +0 -1
- package/resource/view/view.component.d.ts +0 -16
- package/resource/view/view.component.d.ts.map +0 -1
- package/types/alerts-position.d.ts +0 -7
- package/types/alerts-position.d.ts.map +0 -1
- package/types/formio-metadata.d.ts +0 -11
- package/types/formio-metadata.d.ts.map +0 -1
- package/types/formio-submission.d.ts +0 -19
- package/types/formio-submission.d.ts.map +0 -1
package/grid/grid.component.d.ts
DELETED
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
import { GridFooterPositions } from './types/grid-footer-positions';
|
|
2
|
-
import { AfterViewInit, ChangeDetectorRef, ComponentFactoryResolver, EventEmitter, OnChanges, OnInit, ViewContainerRef } from '@angular/core';
|
|
3
|
-
import { FormioAlerts } from '@formio/angular';
|
|
4
|
-
import { GridHeaderComponent } from './GridHeaderComponent';
|
|
5
|
-
import { GridBodyComponent } from './GridBodyComponent';
|
|
6
|
-
import { GridFooterComponent } from './GridFooterComponent';
|
|
7
|
-
import { FormioPromiseService } from '@formio/angular';
|
|
8
|
-
import { GridColumn } from './types/grid-column';
|
|
9
|
-
import { GridHeader } from './types/grid-header';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class FormioGridComponent implements OnChanges, OnInit, AfterViewInit {
|
|
12
|
-
alerts: FormioAlerts;
|
|
13
|
-
private resolver;
|
|
14
|
-
private ref;
|
|
15
|
-
footerPosition: GridFooterPositions;
|
|
16
|
-
src?: string;
|
|
17
|
-
items?: Array<any>;
|
|
18
|
-
onForm?: Promise<any>;
|
|
19
|
-
query?: any;
|
|
20
|
-
refresh?: EventEmitter<object>;
|
|
21
|
-
columns?: Array<GridColumn>;
|
|
22
|
-
gridType?: string;
|
|
23
|
-
size?: number;
|
|
24
|
-
components?: any;
|
|
25
|
-
formio?: FormioPromiseService;
|
|
26
|
-
label?: string;
|
|
27
|
-
createText: String;
|
|
28
|
-
isActionAllowed: any;
|
|
29
|
-
select: EventEmitter<object>;
|
|
30
|
-
rowSelect: EventEmitter<object>;
|
|
31
|
-
rowAction: EventEmitter<object>;
|
|
32
|
-
createItem: EventEmitter<any>;
|
|
33
|
-
error: EventEmitter<any>;
|
|
34
|
-
headerElement: ViewContainerRef;
|
|
35
|
-
bodyElement: ViewContainerRef;
|
|
36
|
-
footerElement: ViewContainerRef;
|
|
37
|
-
page: number;
|
|
38
|
-
isLoading: boolean;
|
|
39
|
-
initialized: boolean;
|
|
40
|
-
header: GridHeaderComponent;
|
|
41
|
-
body: GridBodyComponent;
|
|
42
|
-
footer: GridFooterComponent;
|
|
43
|
-
footerPositions: typeof GridFooterPositions;
|
|
44
|
-
constructor(alerts: FormioAlerts, resolver: ComponentFactoryResolver, ref: ChangeDetectorRef);
|
|
45
|
-
createComponent(property: any, component: any): any;
|
|
46
|
-
loadGrid(src?: string): void;
|
|
47
|
-
ngOnInit(): void;
|
|
48
|
-
ngOnChanges(changes: any): void;
|
|
49
|
-
ngAfterViewInit(): void;
|
|
50
|
-
actionAllowed(action: any): any;
|
|
51
|
-
onError(error: any): void;
|
|
52
|
-
refreshGrid(query?: any): any;
|
|
53
|
-
setPage(num?: number): void;
|
|
54
|
-
sortColumn(header: GridHeader): void;
|
|
55
|
-
pageChanged(page: any): void;
|
|
56
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormioGridComponent, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormioGridComponent, "formio-grid", never, { "footerPosition": { "alias": "footerPosition"; "required": false; }; "src": { "alias": "src"; "required": false; }; "items": { "alias": "items"; "required": false; }; "onForm": { "alias": "onForm"; "required": false; }; "query": { "alias": "query"; "required": false; }; "refresh": { "alias": "refresh"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "gridType": { "alias": "gridType"; "required": false; }; "size": { "alias": "size"; "required": false; }; "components": { "alias": "components"; "required": false; }; "formio": { "alias": "formio"; "required": false; }; "label": { "alias": "label"; "required": false; }; "createText": { "alias": "createText"; "required": false; }; "isActionAllowed": { "alias": "isActionAllowed"; "required": false; }; }, { "select": "select"; "rowSelect": "rowSelect"; "rowAction": "rowAction"; "createItem": "createItem"; "error": "error"; }, never, never, false, never>;
|
|
58
|
-
}
|
|
59
|
-
//# sourceMappingURL=grid.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"grid.component.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/grid/src/grid.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,EACL,aAAa,EACb,iBAAiB,EAEjB,wBAAwB,EACxB,YAAY,EAEZ,SAAS,EACT,MAAM,EAGN,gBAAgB,EACjB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,YAAY,EAAC,MAAM,iBAAiB,CAAC;AAG7C,OAAO,EAAC,mBAAmB,EAAC,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAC,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAC,mBAAmB,EAAC,MAAM,uBAAuB,CAAC;AAG1D,OAAO,EAAC,oBAAoB,EAAC,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAC,UAAU,EAAC,MAAM,qBAAqB,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAW,MAAM,qBAAqB,CAAC;;AAEzD,qBAKa,mBAAoB,YAAW,SAAS,EAAE,MAAM,EAAE,aAAa;IAiCjE,MAAM,EAAE,YAAY;IAC3B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,GAAG;IAlCJ,cAAc,sBAA8B;IAC5C,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;IACtB,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,OAAO,CAAC,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IAC/B,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;IAC5B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,GAAG,CAAC;IACpB,MAAM,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IAC7B,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IAChC,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IAChC,UAAU,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;IAC9B,KAAK,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;IACkC,aAAa,EAAE,gBAAgB,CAAC;IAClC,WAAW,EAAE,gBAAgB,CAAC;IAC5B,aAAa,EAAE,gBAAgB,CAAC;IAE9F,IAAI,SAAK;IACT,SAAS,UAAS;IAClB,WAAW,UAAS;IACpB,MAAM,EAAE,mBAAmB,CAAC;IAC5B,IAAI,EAAE,iBAAiB,CAAC;IACxB,MAAM,EAAE,mBAAmB,CAAC;IAC5B,eAAe,6BAAuB;gBAGpC,MAAM,EAAE,YAAY,EACnB,QAAQ,EAAE,wBAAwB,EAClC,GAAG,EAAE,iBAAiB;IAShC,eAAe,CAAC,QAAQ,KAAA,EAAE,SAAS,KAAA;IAMnC,QAAQ,CAAC,GAAG,CAAC,EAAE,MAAM;IAqBrB,QAAQ;IAwBR,WAAW,CAAC,OAAO,EAAE,GAAG;IAoBxB,eAAe;IAWf,aAAa,CAAC,MAAM,KAAA;IAQpB,OAAO,CAAC,KAAK,EAAE,GAAG;IAWlB,WAAW,CAAC,KAAK,CAAC,EAAE,GAAG;IA0BvB,OAAO,CAAC,GAAG,SAAK;IAYhB,UAAU,CAAC,MAAM,EAAE,UAAU;IAwB7B,WAAW,CAAC,IAAI,EAAE,GAAG;yCA/MV,mBAAmB;2CAAnB,mBAAmB;CAkN/B"}
|
package/grid/grid.module.d.ts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./grid.component";
|
|
3
|
-
import * as i2 from "./form/FormGridHeader.component";
|
|
4
|
-
import * as i3 from "./form/FormGridBody.component";
|
|
5
|
-
import * as i4 from "./form/FormGridFooter.component";
|
|
6
|
-
import * as i5 from "./submission/SubmissionGridHeader.component";
|
|
7
|
-
import * as i6 from "./submission/SubmissionGridBody.component";
|
|
8
|
-
import * as i7 from "./submission/SubmissionGridFooter.component";
|
|
9
|
-
import * as i8 from "./GridHeaderComponent";
|
|
10
|
-
import * as i9 from "./GridBodyComponent";
|
|
11
|
-
import * as i10 from "./GridFooterComponent";
|
|
12
|
-
import * as i11 from "./form/time-since.pipe";
|
|
13
|
-
import * as i12 from "@angular/common";
|
|
14
|
-
import * as i13 from "@angular/forms";
|
|
15
|
-
import * as i14 from "@formio/angular";
|
|
16
|
-
import * as i15 from "@angular/router";
|
|
17
|
-
import * as i16 from "ngx-bootstrap/pagination";
|
|
18
|
-
export declare class FormioGrid {
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormioGrid, never>;
|
|
20
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FormioGrid, [typeof i1.FormioGridComponent, typeof i2.FormGridHeaderComponent, typeof i3.FormGridBodyComponent, typeof i4.FormGridFooterComponent, typeof i5.SubmissionGridHeaderComponent, typeof i6.SubmissionGridBodyComponent, typeof i7.SubmissionGridFooterComponent, typeof i8.GridHeaderComponent, typeof i9.GridBodyComponent, typeof i10.GridFooterComponent, typeof i11.TimeSince], [typeof i12.CommonModule, typeof i13.FormsModule, typeof i14.FormioModule, typeof i15.RouterModule, typeof i16.PaginationModule], [typeof i1.FormioGridComponent]>;
|
|
21
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FormioGrid>;
|
|
22
|
-
}
|
|
23
|
-
//# sourceMappingURL=grid.module.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"grid.module.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/grid/src/grid.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAmBA,qBA6Ba,UAAU;yCAAV,UAAU;0CAAV,UAAU;0CAAV,UAAU;CAAG"}
|
package/grid/grid.service.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class GridService {
|
|
3
|
-
rows: Array<any>;
|
|
4
|
-
constructor();
|
|
5
|
-
setRows(rows: any): void;
|
|
6
|
-
getFormsPerPage(): number;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GridService, never>;
|
|
8
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<GridService>;
|
|
9
|
-
}
|
|
10
|
-
//# sourceMappingURL=grid.service.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"grid.service.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/grid/src/grid.service.ts"],"names":[],"mappings":";AAGA,qBACa,WAAW;IACf,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;;IAGxB,OAAO,CAAC,IAAI,KAAA;IAIZ,eAAe;yCARJ,WAAW;6CAAX,WAAW;CAWvB"}
|
package/grid/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/grid/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC1E,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC1E,OAAO,EAAE,6BAA6B,EAAE,MAAM,6CAA6C,CAAC;AAC5F,OAAO,EAAE,2BAA2B,EAAE,MAAM,2CAA2C,CAAC;AACxF,OAAO,EAAE,6BAA6B,EAAE,MAAM,6CAA6C,CAAC;AAC5F,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { GridBodyComponent } from '../GridBodyComponent';
|
|
2
|
-
import { FormioPromiseService } from '@formio/angular';
|
|
3
|
-
import { GridHeader } from '../types/grid-header';
|
|
4
|
-
import { FormioSubmission } from '@formio/angular';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class SubmissionGridBodyComponent extends GridBodyComponent {
|
|
7
|
-
load(formio: FormioPromiseService, query?: any): Promise<any[]>;
|
|
8
|
-
/**
|
|
9
|
-
* Render the cell data.
|
|
10
|
-
*
|
|
11
|
-
* @param submission
|
|
12
|
-
* @param header
|
|
13
|
-
* @return any
|
|
14
|
-
*/
|
|
15
|
-
view(submission: FormioSubmission, header: GridHeader): string;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionGridBodyComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionGridBodyComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
18
|
-
}
|
|
19
|
-
//# sourceMappingURL=SubmissionGridBody.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SubmissionGridBody.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/submission/SubmissionGridBody.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAC,oBAAoB,EAAC,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAC,gBAAgB,EAAC,MAAM,iBAAiB,CAAC;;AACjD,qBAGa,2BAA4B,SAAQ,iBAAiB;IAChE,IAAI,CAAC,MAAM,EAAE,oBAAoB,EAAE,KAAK,CAAC,EAAE,GAAG;IAM9C;;;;;;OAMG;IACH,IAAI,CAAC,UAAU,EAAE,gBAAgB,EAAE,MAAM,EAAE,UAAU,GAAG,MAAM;yCAdnD,2BAA2B;2CAA3B,2BAA2B;CA6BvC"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { GridFooterComponent } from '../GridFooterComponent';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SubmissionGridFooterComponent extends GridFooterComponent implements OnInit {
|
|
5
|
-
constructor();
|
|
6
|
-
ngOnInit(): void;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionGridFooterComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionGridFooterComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
9
|
-
}
|
|
10
|
-
//# sourceMappingURL=SubmissionGridFooter.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SubmissionGridFooter.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/submission/SubmissionGridFooter.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,MAAM,EAAoB,MAAM,eAAe,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;;AAE7D,qBAKa,6BAA8B,SAAQ,mBAAoB,YAAW,MAAM;;IAMtF,QAAQ;yCANG,6BAA6B;2CAA7B,6BAA6B;CAWzC"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { ExtendedComponentSchema } from 'formiojs';
|
|
2
|
-
import { GridHeaderComponent } from '../GridHeaderComponent';
|
|
3
|
-
import { FormioPromiseService } from '@formio/angular';
|
|
4
|
-
import { ComponentInstance } from '@formio/angular';
|
|
5
|
-
import { GridColumn } from '../types/grid-column';
|
|
6
|
-
import { GridHeader, SortType } from '../types/grid-header';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class SubmissionGridHeaderComponent extends GridHeaderComponent {
|
|
9
|
-
formComponents: Map<string, ExtendedComponentSchema>;
|
|
10
|
-
load(formio: FormioPromiseService, query?: any, columns?: Array<GridColumn>): Promise<GridHeader[]>;
|
|
11
|
-
setHeader(header: GridHeader): void;
|
|
12
|
-
getHeaderForColumn(column: GridColumn, component?: ExtendedComponentSchema, sort?: SortType): {
|
|
13
|
-
label: string;
|
|
14
|
-
key: string;
|
|
15
|
-
sort: SortType;
|
|
16
|
-
component: ComponentInstance;
|
|
17
|
-
renderCell: (cellValue: any, component?: ComponentInstance) => string;
|
|
18
|
-
};
|
|
19
|
-
getHeaderForComponent(component: ExtendedComponentSchema, path: string, sort?: SortType): {
|
|
20
|
-
label: string;
|
|
21
|
-
key: string;
|
|
22
|
-
sort: SortType;
|
|
23
|
-
component: ComponentInstance;
|
|
24
|
-
};
|
|
25
|
-
setComponentsHeaders(components: Map<string, ExtendedComponentSchema>, sort?: SortType): void;
|
|
26
|
-
setComponents(components: any): void;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionGridHeaderComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionGridHeaderComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
29
|
-
}
|
|
30
|
-
//# sourceMappingURL=SubmissionGridHeader.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SubmissionGridHeader.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/submission/SubmissionGridHeader.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,uBAAuB,EAAC,MAAM,UAAU,CAAC;AACpE,OAAO,EAAC,mBAAmB,EAAC,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAC,oBAAoB,EAAC,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAC,iBAAiB,EAAa,MAAM,iBAAiB,CAAC;AAC9D,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAC,UAAU,EAAE,QAAQ,EAAC,MAAM,sBAAsB,CAAC;;AAE1D,qBAGa,6BAA8B,SAAQ,mBAAmB;IAGpE,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,uBAAuB,CAAC,CAAC;IAErD,IAAI,CAAC,MAAM,EAAE,oBAAoB,EAAE,KAAK,CAAC,EAAE,GAAG,EAAE,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC;IAc3E,SAAS,CAAC,MAAM,EAAE,UAAU;IAI5B,kBAAkB,CAAC,MAAM,EAAE,UAAU,EAAE,SAAS,CAAC,EAAE,uBAAuB,EAAE,IAAI,CAAC,EAAE,QAAQ;;;;;;;IAU3F,qBAAqB,CAAC,SAAS,EAAE,uBAAuB,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,QAAQ;;;;;;IASvF,oBAAoB,CAAC,UAAU,EAAE,GAAG,CAAC,MAAM,EAAE,uBAAuB,CAAC,EAAE,IAAI,CAAC,EAAE,QAAQ;IAYtF,aAAa,CAAC,UAAU,KAAA;yCAtDb,6BAA6B;2CAA7B,6BAA6B;CA2DzC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/submission/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;;;;;;AACjF,wBAIE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"grid-column.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/types/grid-column.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAEpD,MAAM,WAAW,UAAU;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,CAAC,SAAS,EAAE,GAAG,EAAE,SAAS,CAAC,EAAE,iBAAiB,GAAG,MAAM,CAAC;CACpE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"grid-footer-positions.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/types/grid-footer-positions.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC7B,MAAM,IAAA;IACN,GAAG,IAAA;IACH,IAAI,IAAA;CACL"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ComponentInstance } from '@formio/angular';
|
|
2
|
-
export interface GridHeader {
|
|
3
|
-
component?: ComponentInstance;
|
|
4
|
-
key: string;
|
|
5
|
-
sort?: SortType;
|
|
6
|
-
label: string;
|
|
7
|
-
renderCell?(cellValue: any, component?: ComponentInstance): string;
|
|
8
|
-
}
|
|
9
|
-
export declare enum SortType {
|
|
10
|
-
ASC = "asc",
|
|
11
|
-
DESC = "desc"
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=grid-header.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"grid-header.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/types/grid-header.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,iBAAiB,EAAC,MAAM,iBAAiB,CAAC;AAElD,MAAM,WAAW,UAAU;IACzB,SAAS,CAAC,EAAE,iBAAiB,CAAC;IAC9B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,CAAC,SAAS,EAAE,GAAG,EAAE,SAAS,CAAC,EAAE,iBAAiB,GAAG,MAAM,CAAC;CACpE;AAED,oBAAY,QAAQ;IAClB,GAAG,QAAQ;IACX,IAAI,SAAS;CACd"}
|
package/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../projects/angular-formio/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,uBAAuB,CAAC;AACtC,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormManagerEditComponent } from '../edit/edit.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FormManagerCreateComponent extends FormManagerEditComponent implements OnInit {
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerCreateComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormManagerCreateComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=create.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"create.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/create/create.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;;AAElE,qBAGa,0BAA2B,SAAQ,wBAAyB,YAAW,MAAM;IACxF,QAAQ;yCADG,0BAA0B;2CAA1B,0BAA0B;CAItC"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { FormManagerService } from '../form-manager.service';
|
|
2
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
-
import { FormioAlerts } from '@formio/angular';
|
|
4
|
-
import { GridService } from '@formio/angular/grid';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class FormManagerDeleteComponent {
|
|
7
|
-
managerService: FormManagerService;
|
|
8
|
-
router: Router;
|
|
9
|
-
route: ActivatedRoute;
|
|
10
|
-
alerts: FormioAlerts;
|
|
11
|
-
gridService?: GridService;
|
|
12
|
-
constructor(managerService: FormManagerService, router: Router, route: ActivatedRoute, alerts: FormioAlerts, gridService?: GridService);
|
|
13
|
-
onDelete(): void;
|
|
14
|
-
onCancel(): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerDeleteComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormManagerDeleteComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
17
|
-
}
|
|
18
|
-
//# sourceMappingURL=delete.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"delete.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/delete/delete.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;;AAEnD,qBAGa,0BAA0B;IAE5B,cAAc,EAAE,kBAAkB;IAClC,MAAM,EAAE,MAAM;IACd,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,YAAY;IACpB,WAAW,CAAC,EAAE,WAAW;gBAJzB,cAAc,EAAE,kBAAkB,EAClC,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,YAAY,EACpB,WAAW,CAAC,EAAE,WAAW;IAGlC,QAAQ;IAeR,QAAQ;yCAxBG,0BAA0B;2CAA1B,0BAA0B;CA2BtC"}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { ElementRef, AfterViewInit, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { FormManagerService } from '../form-manager.service';
|
|
3
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
-
import { FormManagerConfig } from '../form-manager.config';
|
|
5
|
-
import { FormioAlerts } from '@formio/angular';
|
|
6
|
-
import { FormBuilderComponent } from '@formio/angular';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class FormManagerEditComponent implements AfterViewInit {
|
|
9
|
-
service: FormManagerService;
|
|
10
|
-
router: Router;
|
|
11
|
-
route: ActivatedRoute;
|
|
12
|
-
config: FormManagerConfig;
|
|
13
|
-
ref: ChangeDetectorRef;
|
|
14
|
-
alerts: FormioAlerts;
|
|
15
|
-
builder: FormBuilderComponent;
|
|
16
|
-
formTitle: ElementRef;
|
|
17
|
-
formType: ElementRef;
|
|
18
|
-
form: any;
|
|
19
|
-
loading: Boolean;
|
|
20
|
-
formReady: Boolean;
|
|
21
|
-
editMode: Boolean;
|
|
22
|
-
constructor(service: FormManagerService, router: Router, route: ActivatedRoute, config: FormManagerConfig, ref: ChangeDetectorRef, alerts: FormioAlerts);
|
|
23
|
-
initBuilder(editing: any): Promise<boolean | void>;
|
|
24
|
-
ngAfterViewInit(): void;
|
|
25
|
-
onDisplaySelect(event: any): void;
|
|
26
|
-
saveForm(): any;
|
|
27
|
-
onSave(): any;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerEditComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormManagerEditComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
30
|
-
}
|
|
31
|
-
//# sourceMappingURL=edit.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"edit.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/edit/edit.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,UAAU,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AACnG,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;;AAGvD,qBAGa,wBAAyB,YAAW,aAAa;IAUnD,OAAO,EAAE,kBAAkB;IAC3B,MAAM,EAAE,MAAM;IACd,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,iBAAiB;IACzB,GAAG,EAAE,iBAAiB;IACtB,MAAM,EAAE,YAAY;IAdqB,OAAO,EAAE,oBAAoB,CAAC;IAC3C,SAAS,EAAE,UAAU,CAAC;IACvB,QAAQ,EAAE,UAAU,CAAC;IAClD,IAAI,EAAE,GAAG,CAAC;IACV,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;gBAGhB,OAAO,EAAE,kBAAkB,EAC3B,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,iBAAiB,EACzB,GAAG,EAAE,iBAAiB,EACtB,MAAM,EAAE,YAAY;IAQ7B,WAAW,CAAC,OAAO,KAAA;IAwBnB,eAAe;IAMf,eAAe,CAAC,KAAK,KAAA;IAIrB,QAAQ;IAgCR,MAAM;yCAzFK,wBAAwB;2CAAxB,wBAAwB;CAkGpC"}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import { FormManagerService } from '../form-manager.service';
|
|
3
|
-
import { FormManagerConfig } from '../form-manager.config';
|
|
4
|
-
import { ActivatedRoute } from '@angular/router';
|
|
5
|
-
import { FormioAppConfig } from '@formio/angular';
|
|
6
|
-
import { BsModalService, BsModalRef } from 'ngx-bootstrap/modal';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class FormManagerFormComponent implements OnInit {
|
|
9
|
-
service: FormManagerService;
|
|
10
|
-
route: ActivatedRoute;
|
|
11
|
-
appConfig: FormioAppConfig;
|
|
12
|
-
options: FormManagerConfig;
|
|
13
|
-
private modalService;
|
|
14
|
-
choice: any;
|
|
15
|
-
embedCode: any;
|
|
16
|
-
shareUrl: any;
|
|
17
|
-
projectId: any;
|
|
18
|
-
pathName: any;
|
|
19
|
-
goTo: any;
|
|
20
|
-
modalRef: BsModalRef;
|
|
21
|
-
constructor(service: FormManagerService, route: ActivatedRoute, appConfig: FormioAppConfig, options: FormManagerConfig, modalService: BsModalService);
|
|
22
|
-
ngOnInit(): void;
|
|
23
|
-
getShareUrl(): any;
|
|
24
|
-
openEmbed(content: TemplateRef<any>): void;
|
|
25
|
-
choices(string: any): void;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerFormComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormManagerFormComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
28
|
-
}
|
|
29
|
-
//# sourceMappingURL=form.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"form.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/form/form.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;;AAEjE,qBAGa,wBAAyB,YAAW,MAAM;IAS5C,OAAO,EAAE,kBAAkB;IAC3B,KAAK,EAAE,cAAc;IACrB,SAAS,EAAE,eAAe;IAC1B,OAAO,EAAE,iBAAiB;IACjC,OAAO,CAAC,YAAY;IAZtB,MAAM,EAAE,GAAG,CAAW;IACtB,SAAS,EAAE,GAAG,CAAC;IACf,QAAQ,EAAE,GAAG,CAAC;IACd,SAAS,EAAE,GAAG,CAAC;IACf,QAAQ,EAAE,GAAG,CAAC;IACd,IAAI,EAAE,GAAG,CAAM;IACf,QAAQ,EAAE,UAAU,CAAC;gBAEZ,OAAO,EAAE,kBAAkB,EAC3B,KAAK,EAAE,cAAc,EACrB,SAAS,EAAE,eAAe,EAC1B,OAAO,EAAE,iBAAiB,EACzB,YAAY,EAAE,cAAc;IAGtC,QAAQ;IAUD,WAAW;IAMlB,SAAS,CAAC,OAAO,EAAE,WAAW,CAAC,GAAG,CAAC;IA2BnC,OAAO,CAAC,MAAM,KAAA;yCA3DH,wBAAwB;2CAAxB,wBAAwB;CA8DpC"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
type FormType = 'form' | 'resource';
|
|
3
|
-
export interface FormManagerRouteConfig {
|
|
4
|
-
formIndex?: any;
|
|
5
|
-
formCreate?: any;
|
|
6
|
-
form?: any;
|
|
7
|
-
formView?: any;
|
|
8
|
-
formEdit?: any;
|
|
9
|
-
formEmbed?: any;
|
|
10
|
-
formDelete?: any;
|
|
11
|
-
submissionIndex?: any;
|
|
12
|
-
submission?: any;
|
|
13
|
-
submissionView?: any;
|
|
14
|
-
submissionEdit?: any;
|
|
15
|
-
submissionDelete?: any;
|
|
16
|
-
}
|
|
17
|
-
export declare class FormManagerConfig {
|
|
18
|
-
tag: string;
|
|
19
|
-
includeSearch: boolean;
|
|
20
|
-
saveDraft: boolean;
|
|
21
|
-
type: FormType;
|
|
22
|
-
builder?: any;
|
|
23
|
-
viewer?: string;
|
|
24
|
-
renderer: any;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerConfig, never>;
|
|
26
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FormManagerConfig>;
|
|
27
|
-
}
|
|
28
|
-
export declare const DefaultConfiguration: FormManagerConfig;
|
|
29
|
-
export {};
|
|
30
|
-
//# sourceMappingURL=form-manager.config.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"form-manager.config.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/form-manager.config.ts"],"names":[],"mappings":";AAEA,KAAK,QAAQ,GAAG,MAAM,GAAG,UAAU,CAAC;AAEpC,MAAM,WAAW,sBAAsB;IACrC,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,QAAQ,CAAC,EAAE,GAAG,CAAC;IACf,QAAQ,CAAC,EAAE,GAAG,CAAC;IACf,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,eAAe,CAAC,EAAE,GAAG,CAAC;IACtB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,cAAc,CAAC,EAAE,GAAG,CAAC;IACrB,cAAc,CAAC,EAAE,GAAG,CAAC;IACrB,gBAAgB,CAAC,EAAE,GAAG,CAAC;CACxB;AAED,qBACa,iBAAiB;IACrB,GAAG,SAAM;IACT,aAAa,UAAS;IACtB,SAAS,UAAS;IAClB,IAAI,EAAE,QAAQ,CAAU;IACxB,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,GAAG,CAAC;yCAPV,iBAAiB;6CAAjB,iBAAiB;CAQ7B;AAED,eAAO,MAAM,oBAAoB,mBAA0B,CAAC"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { FormManagerRouteConfig } from './form-manager.config';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "./index/index.component";
|
|
4
|
-
import * as i2 from "./create/create.component";
|
|
5
|
-
import * as i3 from "./form/form.component";
|
|
6
|
-
import * as i4 from "./view/view.component";
|
|
7
|
-
import * as i5 from "./edit/edit.component";
|
|
8
|
-
import * as i6 from "./delete/delete.component";
|
|
9
|
-
import * as i7 from "./submission/submission/submission.component";
|
|
10
|
-
import * as i8 from "./submission/edit/edit.component";
|
|
11
|
-
import * as i9 from "./submission/delete/delete.component";
|
|
12
|
-
import * as i10 from "./submission/view/view.component";
|
|
13
|
-
import * as i11 from "./submission/index/index.component";
|
|
14
|
-
import * as i12 from "@angular/common";
|
|
15
|
-
import * as i13 from "@formio/angular";
|
|
16
|
-
import * as i14 from "@angular/router";
|
|
17
|
-
import * as i15 from "@angular/forms";
|
|
18
|
-
import * as i16 from "@formio/angular/grid";
|
|
19
|
-
import * as i17 from "ngx-bootstrap/modal";
|
|
20
|
-
import * as i18 from "ngx-bootstrap/pagination";
|
|
21
|
-
export declare class FormManagerModule {
|
|
22
|
-
static forChild(config?: FormManagerRouteConfig): any;
|
|
23
|
-
static forRoot(config?: FormManagerRouteConfig): any;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerModule, never>;
|
|
25
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FormManagerModule, [typeof i1.FormManagerIndexComponent, typeof i2.FormManagerCreateComponent, typeof i3.FormManagerFormComponent, typeof i4.FormManagerViewComponent, typeof i5.FormManagerEditComponent, typeof i6.FormManagerDeleteComponent, typeof i7.SubmissionComponent, typeof i8.SubmissionEditComponent, typeof i9.SubmissionDeleteComponent, typeof i10.SubmissionViewComponent, typeof i11.SubmissionIndexComponent], [typeof i12.CommonModule, typeof i13.FormioModule, typeof i14.RouterModule, typeof i15.FormsModule, typeof i16.FormioGrid, typeof i17.ModalModule, typeof i18.PaginationModule], never>;
|
|
26
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FormManagerModule>;
|
|
27
|
-
}
|
|
28
|
-
//# sourceMappingURL=form-manager.module.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"form-manager.module.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/form-manager.module.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;;;;;;;;;;;;;;;;;;;;AAK/D,qBAwBa,iBAAiB;IAC5B,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,sBAAsB,GAAG,GAAG;IAGrD,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,sBAAsB,GAAG,GAAG;yCAJzC,iBAAiB;0CAAjB,iBAAiB;0CAAjB,iBAAiB;CAO7B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"form-manager.routes.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/form-manager.routes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAYzC,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,wBAAgB,iBAAiB,CAAC,MAAM,CAAC,EAAE,sBAAsB,GAAG,MAAM,CA6DzE"}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { FormioAppConfig } from '@formio/angular';
|
|
2
|
-
import { FormManagerConfig } from './form-manager.config';
|
|
3
|
-
import { Formio } from 'formiojs';
|
|
4
|
-
import { ActivatedRoute } from '@angular/router';
|
|
5
|
-
import { FormioAuthService } from '@formio/angular/auth';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class FormManagerService {
|
|
8
|
-
appConfig: FormioAppConfig;
|
|
9
|
-
config: FormManagerConfig;
|
|
10
|
-
auth: FormioAuthService;
|
|
11
|
-
formio: Formio;
|
|
12
|
-
access: any;
|
|
13
|
-
allAccessMap: any;
|
|
14
|
-
ownAccessMap: any;
|
|
15
|
-
ready: Promise<any>;
|
|
16
|
-
formReady: Promise<any>;
|
|
17
|
-
actionAllowed: any;
|
|
18
|
-
form: any;
|
|
19
|
-
formSrc: string;
|
|
20
|
-
perms: {
|
|
21
|
-
delete: boolean;
|
|
22
|
-
edit: boolean;
|
|
23
|
-
};
|
|
24
|
-
constructor(appConfig: FormioAppConfig, config: FormManagerConfig, auth: FormioAuthService);
|
|
25
|
-
isActionAllowed(action: string): any;
|
|
26
|
-
setAccess(): void;
|
|
27
|
-
reset(route?: ActivatedRoute): void;
|
|
28
|
-
hasAccess(roles: any): boolean;
|
|
29
|
-
setForm(form: any): any;
|
|
30
|
-
loadForm(): Promise<any>;
|
|
31
|
-
setSubmission(route: ActivatedRoute): Promise<unknown>;
|
|
32
|
-
submissionLoaded(submission: any): void;
|
|
33
|
-
loadForms(): any;
|
|
34
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerService, never>;
|
|
35
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FormManagerService>;
|
|
36
|
-
}
|
|
37
|
-
//# sourceMappingURL=form-manager.service.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"form-manager.service.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/form-manager.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;;AAGzD,qBACa,kBAAkB;IAapB,SAAS,EAAE,eAAe;IAC1B,MAAM,EAAE,iBAAiB;IACzB,IAAI,EAAE,iBAAiB;IAdzB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,GAAG,CAAC;IACZ,YAAY,EAAE,GAAG,CAAC;IAClB,YAAY,EAAE,GAAG,CAAC;IAClB,KAAK,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;IACxB,aAAa,EAAE,GAAG,CAAC;IACnB,IAAI,MAAQ;IACZ,OAAO,SAAM;IACb,KAAK;;;MAAgC;gBAGnC,SAAS,EAAE,eAAe,EAC1B,MAAM,EAAE,iBAAiB,EACzB,IAAI,EAAE,iBAAiB;IAqBhC,eAAe,CAAC,MAAM,EAAE,MAAM;IAI9B,SAAS;IAgET,KAAK,CAAC,KAAK,CAAC,EAAE,cAAc;IAe5B,SAAS,CAAC,KAAK,KAAA;IAOf,OAAO,CAAC,IAAI,EAAE,GAAG;IAyBjB,QAAQ;IAMR,aAAa,CAAC,KAAK,EAAE,cAAc;IASnC,gBAAgB,CAAC,UAAU,EAAE,GAAG;IAShC,SAAS;yCA/KE,kBAAkB;6CAAlB,kBAAkB;CAoL9B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"formio-angular-manager.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/formio-angular-manager.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,cAAc,SAAS,CAAC"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, OnInit } from '@angular/core';
|
|
2
|
-
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { FormManagerService } from '../form-manager.service';
|
|
4
|
-
import { FormManagerConfig } from '../form-manager.config';
|
|
5
|
-
import { FormioGridComponent } from '@formio/angular/grid';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class FormManagerIndexComponent implements OnInit, AfterViewInit {
|
|
8
|
-
service: FormManagerService;
|
|
9
|
-
route: ActivatedRoute;
|
|
10
|
-
router: Router;
|
|
11
|
-
config: FormManagerConfig;
|
|
12
|
-
searchElement: ElementRef;
|
|
13
|
-
formGrid: FormioGridComponent;
|
|
14
|
-
gridQuery: any;
|
|
15
|
-
onSearch: any;
|
|
16
|
-
constructor(service: FormManagerService, route: ActivatedRoute, router: Router, config: FormManagerConfig);
|
|
17
|
-
loadGrid(): void;
|
|
18
|
-
ngOnInit(): void;
|
|
19
|
-
ngAfterViewInit(): void;
|
|
20
|
-
_onSearch(): void;
|
|
21
|
-
clearSearch(): void;
|
|
22
|
-
onAction(action: any): void;
|
|
23
|
-
onSelect(row: any): void;
|
|
24
|
-
onCreateItem(): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormManagerIndexComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormManagerIndexComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
27
|
-
}
|
|
28
|
-
//# sourceMappingURL=index.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/index/index.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAE,MAAM,EAAa,MAAM,eAAe,CAAC;AACxF,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAwB,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AACjF,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;;AAG3D,qBAIa,yBAA0B,YAAW,MAAM,EAAE,aAAa;IAM5D,OAAO,EAAE,kBAAkB;IAC3B,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,MAAM;IACd,MAAM,EAAE,iBAAiB;IARb,aAAa,EAAE,UAAU,CAAC;IACE,QAAQ,EAAE,mBAAmB,CAAC;IACxE,SAAS,EAAE,GAAG,CAAC;IACf,QAAQ,MAAC;gBAEP,OAAO,EAAE,kBAAkB,EAC3B,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,iBAAiB;IAUlC,QAAQ;IAQR,QAAQ;IAcR,eAAe,IAAI,IAAI;IAIvB,SAAS;IAeT,WAAW;IAgBX,QAAQ,CAAC,MAAM,EAAE,GAAG;IAKpB,QAAQ,CAAC,GAAG,EAAE,GAAG;IAIjB,YAAY;yCArFD,yBAAyB;2CAAzB,yBAAyB;CAwFrC"}
|
package/manager/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/manager/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAC3E,OAAO,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AACjF,OAAO,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,oCAAoC,CAAC;AAC9E,OAAO,EAAE,mBAAmB,EAAE,MAAM,8CAA8C,CAAC;AACnF,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { FormManagerService } from '../../form-manager.service';
|
|
2
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
-
import { FormioAlerts } from '@formio/angular';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SubmissionDeleteComponent {
|
|
6
|
-
service: FormManagerService;
|
|
7
|
-
router: Router;
|
|
8
|
-
route: ActivatedRoute;
|
|
9
|
-
alerts: FormioAlerts;
|
|
10
|
-
constructor(service: FormManagerService, router: Router, route: ActivatedRoute, alerts: FormioAlerts);
|
|
11
|
-
onDelete(): void;
|
|
12
|
-
onCancel(): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionDeleteComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionDeleteComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
15
|
-
}
|
|
16
|
-
//# sourceMappingURL=delete.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"delete.component.d.ts","sourceRoot":"","sources":["../../../../../projects/angular-formio/manager/src/submission/delete/delete.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;;AAE/C,qBAGa,yBAAyB;IAE3B,OAAO,EAAE,kBAAkB;IAC3B,MAAM,EAAE,MAAM;IACd,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,YAAY;gBAHpB,OAAO,EAAE,kBAAkB,EAC3B,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,YAAY;IAG7B,QAAQ;IAMR,QAAQ;yCAdG,yBAAyB;2CAAzB,yBAAyB;CAiBrC"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { FormManagerService } from '../../form-manager.service';
|
|
2
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SubmissionEditComponent {
|
|
5
|
-
service: FormManagerService;
|
|
6
|
-
router: Router;
|
|
7
|
-
route: ActivatedRoute;
|
|
8
|
-
constructor(service: FormManagerService, router: Router, route: ActivatedRoute);
|
|
9
|
-
onSubmit(submission: any): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionEditComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionEditComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=edit.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"edit.component.d.ts","sourceRoot":"","sources":["../../../../../projects/angular-formio/manager/src/submission/edit/edit.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;;AAEzD,qBAGa,uBAAuB;IAEzB,OAAO,EAAE,kBAAkB;IAC3B,MAAM,EAAE,MAAM;IACd,KAAK,EAAE,cAAc;gBAFrB,OAAO,EAAE,kBAAkB,EAC3B,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,cAAc;IAG9B,QAAQ,CAAC,UAAU,KAAA;yCAPR,uBAAuB;2CAAvB,uBAAuB;CAUnC"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { Router, ActivatedRoute } from '@angular/router';
|
|
2
|
-
import { FormManagerService } from '../../form-manager.service';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SubmissionIndexComponent {
|
|
5
|
-
service: FormManagerService;
|
|
6
|
-
route: ActivatedRoute;
|
|
7
|
-
router: Router;
|
|
8
|
-
constructor(service: FormManagerService, route: ActivatedRoute, router: Router);
|
|
9
|
-
onSelect(row: any): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionIndexComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionIndexComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=index.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.component.d.ts","sourceRoot":"","sources":["../../../../../projects/angular-formio/manager/src/submission/index/index.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;;AAEhE,qBAGa,wBAAwB;IAE1B,OAAO,EAAE,kBAAkB;IAC3B,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,MAAM;gBAFd,OAAO,EAAE,kBAAkB,EAC3B,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM;IAGvB,QAAQ,CAAC,GAAG,EAAE,GAAG;yCAPN,wBAAwB;2CAAxB,wBAAwB;CAUpC"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormManagerService } from '../../form-manager.service';
|
|
3
|
-
import { ActivatedRoute } from '@angular/router';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SubmissionComponent implements OnInit {
|
|
6
|
-
service: FormManagerService;
|
|
7
|
-
route: ActivatedRoute;
|
|
8
|
-
downloadUrl: string;
|
|
9
|
-
constructor(service: FormManagerService, route: ActivatedRoute);
|
|
10
|
-
setDownloadUrl(url: any): void;
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
14
|
-
}
|
|
15
|
-
//# sourceMappingURL=submission.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"submission.component.d.ts","sourceRoot":"","sources":["../../../../../projects/angular-formio/manager/src/submission/submission/submission.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;;AAEjD,qBAGa,mBAAoB,YAAW,MAAM;IAGvC,OAAO,EAAE,kBAAkB;IAC3B,KAAK,EAAE,cAAc;IAHvB,WAAW,EAAE,MAAM,CAAC;gBAElB,OAAO,EAAE,kBAAkB,EAC3B,KAAK,EAAE,cAAc;IAG9B,cAAc,CAAC,GAAG,KAAA;IAIlB,QAAQ;yCAXG,mBAAmB;2CAAnB,mBAAmB;CAgB/B"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { FormManagerService } from '../../form-manager.service';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SubmissionViewComponent {
|
|
4
|
-
service: FormManagerService;
|
|
5
|
-
constructor(service: FormManagerService);
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SubmissionViewComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubmissionViewComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=view.component.d.ts.map
|