@mtna/web-form-angular 1.0.1 → 1.0.2-SNAPSHOT.1
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/_index.scss +17 -16
- package/bundles/mtna-web-form-angular.umd.js +6562 -4919
- package/bundles/mtna-web-form-angular.umd.js.map +1 -1
- package/esm2015/lib/components/acknowledge-dialog/acknowledge-dialog.component.js +30 -0
- package/esm2015/lib/components/acknowledge-dialog/acknowledge-dialog.module.js +21 -0
- package/esm2015/lib/components/acknowledge-dialog/index.js +3 -0
- package/esm2015/lib/components/base-items/base-form-item-control.component.js +40 -0
- package/esm2015/lib/components/base-items/base-form-item.component.js +50 -0
- package/esm2015/lib/components/base-items/base-group-item.component.js +29 -0
- package/esm2015/lib/components/base-items/base-parent-value-item.component.js +42 -0
- package/esm2015/lib/components/base-items/base-section-item.component.js +28 -0
- package/esm2015/lib/components/base-items/base-single-selection-parent-value-item.component.js +64 -0
- package/esm2015/lib/components/base-items/base-value-item.component.js +40 -0
- package/esm2015/lib/components/base-items/index.js +7 -0
- package/esm2015/lib/components/form/form.component.js +250 -0
- package/esm2015/lib/components/form/form.module.js +60 -0
- package/esm2015/lib/components/form/index.js +3 -0
- package/esm2015/lib/{form → components/form-disabler}/form-disabler.component.js +1 -1
- package/esm2015/lib/components/form-disabler/form-disabler.module.js +18 -0
- package/esm2015/lib/components/form-disabler/index.js +3 -0
- package/esm2015/lib/components/form-item/form-item.component.js +124 -0
- package/esm2015/lib/components/form-item/form-item.module.js +22 -0
- package/esm2015/lib/components/form-item/index.js +3 -0
- package/esm2015/lib/components/form-item-component-provider/form-item-component-provider.js +8 -0
- package/esm2015/lib/components/form-item-component-provider/form-item-injected-components.js +120 -0
- package/esm2015/lib/components/form-item-component-provider/index.js +3 -0
- package/esm2015/lib/components/form-item-dialog/form-item-dialog.component.js +29 -0
- package/esm2015/lib/components/form-item-dialog/form-item-dialog.module.js +20 -0
- package/esm2015/lib/components/form-item-dialog/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/boolean/boolean.component.js +33 -0
- package/esm2015/lib/components/form-item-impl/boolean/boolean.module.js +22 -0
- package/esm2015/lib/components/form-item-impl/boolean/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/checkbox/checkbox.component.js +92 -0
- package/esm2015/lib/components/form-item-impl/checkbox/checkbox.module.js +61 -0
- package/esm2015/lib/components/form-item-impl/checkbox/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/date/date.component.js +92 -0
- package/esm2015/lib/components/form-item-impl/date/date.module.js +53 -0
- package/esm2015/lib/components/form-item-impl/date/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/date-range/date-range.component.js +31 -0
- package/esm2015/lib/components/form-item-impl/date-range/date-range.module.js +45 -0
- package/esm2015/lib/components/form-item-impl/date-range/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/dropdown/dropdown.component.js +29 -0
- package/esm2015/lib/components/form-item-impl/dropdown/dropdown.module.js +59 -0
- package/esm2015/lib/components/form-item-impl/dropdown/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/file-upload/file-upload.component.js +56 -0
- package/esm2015/lib/components/form-item-impl/file-upload/file-upload.module.js +49 -0
- package/esm2015/lib/components/form-item-impl/file-upload/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/form-group/form-group.component.js +50 -0
- package/esm2015/lib/components/form-item-impl/form-group/form-group.module.js +49 -0
- package/esm2015/lib/components/form-item-impl/form-group/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/form-section/form-section.component.js +22 -0
- package/esm2015/lib/components/form-item-impl/form-section/form-section.module.js +22 -0
- package/esm2015/lib/components/form-item-impl/form-section/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/i18n-input/i18n-input.component.js +51 -0
- package/esm2015/lib/components/form-item-impl/i18n-input/i18n-input.module.js +52 -0
- package/esm2015/lib/components/form-item-impl/i18n-input/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/index.js +23 -0
- package/esm2015/lib/components/form-item-impl/input/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/input/input.component.js +39 -0
- package/esm2015/lib/components/form-item-impl/input/input.module.js +52 -0
- package/esm2015/lib/components/form-item-impl/multiple-choice/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/multiple-choice/multiple-choice.component.js +24 -0
- package/esm2015/lib/components/form-item-impl/multiple-choice/multiple-choice.module.js +45 -0
- package/esm2015/lib/components/form-item-impl/ordered-list/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/ordered-list/ordered-list-item.component.js +21 -0
- package/esm2015/lib/components/form-item-impl/ordered-list/ordered-list-item.module.js +20 -0
- package/esm2015/lib/components/form-item-impl/repeatable-item/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/repeatable-item/repeatable-item.component.js +23 -0
- package/esm2015/lib/components/form-item-impl/repeatable-item/repeatable-item.module.js +18 -0
- package/esm2015/lib/components/form-item-impl/repeatable-item-container/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/repeatable-item-container/repeatable-item-container.component.js +56 -0
- package/esm2015/lib/components/form-item-impl/repeatable-item-container/repeatable-item-container.module.js +53 -0
- package/esm2015/lib/components/form-item-impl/search/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/search/resource-search.component.js +56 -0
- package/esm2015/lib/components/form-item-impl/search/resource-search.module.js +22 -0
- package/esm2015/lib/components/form-item-impl/table-item/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/table-item/table-item.component.js +27 -0
- package/esm2015/lib/components/form-item-impl/table-item/table-item.module.js +20 -0
- package/esm2015/lib/components/form-item-impl/text/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/text/text.component.js +19 -0
- package/esm2015/lib/components/form-item-impl/text/text.module.js +20 -0
- package/esm2015/lib/components/form-item-impl/title/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/title/title.component.js +18 -0
- package/esm2015/lib/components/form-item-impl/title/title.module.js +20 -0
- package/esm2015/lib/components/form-item-impl/unordered-list/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/unordered-list/unordered-list-item.component.js +21 -0
- package/esm2015/lib/components/form-item-impl/unordered-list/unordered-list-item.module.js +20 -0
- package/esm2015/lib/components/form-item-impl/year-quarter/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/year-quarter/year-quarter.component.js +166 -0
- package/esm2015/lib/components/form-item-impl/year-quarter/year-quarter.module.js +55 -0
- package/esm2015/lib/components/form-item-impl/year-quarter-range/index.js +3 -0
- package/esm2015/lib/components/form-item-impl/year-quarter-range/year-quarter-range.component.js +39 -0
- package/esm2015/lib/components/form-item-impl/year-quarter-range/year-quarter-range.module.js +22 -0
- package/esm2015/lib/components/form-item-injector/form-item-injector.component.js +158 -0
- package/esm2015/lib/components/form-item-injector/form-item-injector.module.js +18 -0
- package/esm2015/lib/components/form-item-injector/index.js +3 -0
- package/esm2015/lib/components/form-stepper/form-step/form-step.component.js +68 -0
- package/esm2015/lib/components/form-stepper/form-step/index.js +2 -0
- package/esm2015/lib/components/form-stepper/form-step-group/form-step-group.component.js +53 -0
- package/esm2015/lib/components/form-stepper/form-step-group/index.js +2 -0
- package/esm2015/lib/components/form-stepper/form-stepper/form-stepper.component.js +59 -0
- package/esm2015/lib/components/form-stepper/form-stepper/index.js +2 -0
- package/esm2015/lib/components/form-stepper/form-stepper.module.js +56 -0
- package/esm2015/lib/components/form-stepper/index.js +5 -0
- package/esm2015/lib/components/index.js +13 -0
- package/esm2015/lib/components/item-header/index.js +3 -0
- package/esm2015/lib/components/item-header/item-header.component.js +71 -0
- package/esm2015/lib/components/item-header/item-header.module.js +19 -0
- package/esm2015/lib/components/step-card/index.js +3 -0
- package/esm2015/lib/{step-card → components/step-card}/step-card.component.js +2 -2
- package/esm2015/lib/components/step-card/step-card.module.js +23 -0
- package/esm2015/lib/directives/base-form-item-control.directive.js +59 -0
- package/esm2015/lib/directives/base-parent-item-control.directive.js +42 -0
- package/esm2015/lib/directives/base-single-selection-parent.directive.js +53 -0
- package/esm2015/lib/{form → directives}/form-item.directive.js +1 -1
- package/esm2015/lib/directives/index.js +5 -0
- package/esm2015/lib/models/api-config.js +3 -0
- package/esm2015/lib/models/base-form-item.model.js +2 -0
- package/esm2015/lib/{groups → models}/form-item-dialog-data.model.js +1 -1
- package/esm2015/lib/{form-stepper/models → models/form-stepper}/base-form-step.model.js +1 -1
- package/esm2015/lib/{form-stepper/models → models/form-stepper}/form-step-group.model.js +1 -1
- package/esm2015/lib/{form-stepper/models → models/form-stepper}/form-step.model.js +1 -1
- package/esm2015/lib/{form-stepper/models → models/form-stepper}/index.js +1 -1
- package/esm2015/lib/models/index.js +7 -0
- package/esm2015/lib/models/toggle-form-item-data.model.js +2 -0
- package/esm2015/lib/models/white-list.model.js +11 -0
- package/esm2015/lib/pipes/coerce-date-item.pipe.js +37 -0
- package/esm2015/lib/pipes/coerce-form-control.pipe.js +38 -0
- package/esm2015/lib/pipes/coerce-form-group.pipe.js +47 -0
- package/esm2015/lib/pipes/date-quarter.pipe.js +55 -0
- package/esm2015/lib/pipes/form-step-group.pipe.js +32 -0
- package/esm2015/lib/pipes/get-auto-complete.pipe.js +54 -0
- package/esm2015/lib/pipes/get-available-quarters.pipe.js +41 -0
- package/esm2015/lib/pipes/get-form-control-error.pipe.js +32 -0
- package/esm2015/lib/pipes/get-list-icon.pipe.js +65 -0
- package/esm2015/lib/pipes/get-object-type.pipe.js +29 -0
- package/esm2015/lib/pipes/get-selected-option.pipe.js +32 -0
- package/esm2015/lib/pipes/index.js +14 -0
- package/esm2015/lib/pipes/items-with-value.pipe.js +42 -0
- package/esm2015/lib/pipes/sanitize-html.pipe.js +35 -0
- package/esm2015/lib/services/api.service.js +67 -0
- package/esm2015/lib/services/dialog.service.js +48 -0
- package/esm2015/lib/services/form-manager.service.js +465 -0
- package/esm2015/lib/services/index.js +7 -0
- package/esm2015/lib/services/ng-form.service.js +150 -0
- package/esm2015/lib/services/resource-search-selection.service.js +24 -0
- package/esm2015/lib/services/ui.service.js +333 -0
- package/esm2015/lib/utilities/animations.js +8 -0
- package/esm2015/lib/utilities/find-form-control.js +29 -0
- package/esm2015/lib/utilities/find-form-item.js +25 -0
- package/esm2015/lib/utilities/flatten-steps.js +10 -0
- package/esm2015/lib/utilities/form-step.util.js +28 -0
- package/esm2015/lib/utilities/generate-form-steps.js +38 -0
- package/esm2015/lib/utilities/get-item-class-suffix.js +17 -0
- package/esm2015/lib/utilities/index.js +13 -0
- package/esm2015/lib/utilities/is-form-control.js +5 -0
- package/esm2015/lib/utilities/is-form-group.js +6 -0
- package/esm2015/lib/utilities/serializer-util.js +391 -0
- package/esm2015/lib/utilities/update-step-status.js +38 -0
- package/esm2015/lib/validators/index.js +3 -0
- package/esm2015/lib/validators/instant-validation-result-error-state-matcher.js +23 -0
- package/esm2015/lib/validators/validation-result-validator.js +19 -0
- package/esm2015/public-api.js +8 -10
- package/fesm2015/mtna-web-form-angular.js +4516 -3887
- package/fesm2015/mtna-web-form-angular.js.map +1 -1
- package/lib/components/acknowledge-dialog/acknowledge-dialog.component.d.ts +13 -0
- package/lib/components/acknowledge-dialog/acknowledge-dialog.module.d.ts +11 -0
- package/lib/components/acknowledge-dialog/index.d.ts +2 -0
- package/lib/components/base-items/base-form-item-control.component.d.ts +17 -0
- package/lib/components/base-items/base-form-item.component.d.ts +25 -0
- package/lib/components/base-items/base-group-item.component.d.ts +12 -0
- package/lib/components/base-items/base-parent-value-item.component.d.ts +17 -0
- package/lib/components/base-items/base-section-item.component.d.ts +13 -0
- package/lib/components/base-items/base-single-selection-parent-value-item.component.d.ts +20 -0
- package/lib/components/base-items/base-value-item.component.d.ts +18 -0
- package/lib/components/base-items/index.d.ts +6 -0
- package/lib/{form → components/form}/form.component.d.ts +2 -2
- package/lib/components/form/form.module.d.ts +16 -0
- package/lib/components/form/index.d.ts +2 -0
- package/lib/components/form-disabler/form-disabler.module.d.ts +8 -0
- package/lib/components/form-disabler/index.d.ts +2 -0
- package/lib/components/form-item/form-item.component.d.ts +53 -0
- package/lib/components/form-item/form-item.module.d.ts +12 -0
- package/lib/components/form-item/index.d.ts +2 -0
- package/lib/components/form-item-component-provider/form-item-component-provider.d.ts +4 -0
- package/lib/components/form-item-component-provider/form-item-injected-components.d.ts +2 -0
- package/lib/components/form-item-component-provider/index.d.ts +2 -0
- package/lib/components/form-item-dialog/form-item-dialog.component.d.ts +13 -0
- package/lib/components/form-item-dialog/form-item-dialog.module.d.ts +10 -0
- package/lib/components/form-item-dialog/index.d.ts +2 -0
- package/lib/components/form-item-impl/boolean/boolean.component.d.ts +17 -0
- package/lib/components/form-item-impl/boolean/boolean.module.d.ts +12 -0
- package/lib/components/form-item-impl/boolean/index.d.ts +2 -0
- package/lib/components/form-item-impl/checkbox/checkbox.component.d.ts +29 -0
- package/lib/components/form-item-impl/checkbox/checkbox.module.d.ts +17 -0
- package/lib/components/form-item-impl/checkbox/index.d.ts +2 -0
- package/lib/{form-item-controls → components/form-item-impl/date}/date.component.d.ts +6 -6
- package/lib/components/form-item-impl/date/date.module.d.ts +15 -0
- package/lib/components/form-item-impl/date/index.d.ts +2 -0
- package/lib/{form-item-controls → components/form-item-impl/date-range}/date-range.component.d.ts +2 -2
- package/lib/components/form-item-impl/date-range/date-range.module.d.ts +13 -0
- package/lib/components/form-item-impl/date-range/index.d.ts +2 -0
- package/lib/{form-item-controls → components/form-item-impl/dropdown}/dropdown.component.d.ts +2 -4
- package/lib/components/form-item-impl/dropdown/dropdown.module.d.ts +17 -0
- package/lib/components/form-item-impl/dropdown/index.d.ts +2 -0
- package/lib/components/form-item-impl/file-upload/file-upload.component.d.ts +19 -0
- package/lib/components/form-item-impl/file-upload/file-upload.module.d.ts +14 -0
- package/lib/{file-upload → components/form-item-impl/file-upload}/index.d.ts +1 -0
- package/lib/components/form-item-impl/form-group/form-group.component.d.ts +17 -0
- package/lib/components/form-item-impl/form-group/form-group.module.d.ts +14 -0
- package/lib/components/form-item-impl/form-group/index.d.ts +2 -0
- package/lib/components/form-item-impl/form-section/form-section.component.d.ts +7 -0
- package/lib/components/form-item-impl/form-section/form-section.module.d.ts +12 -0
- package/lib/components/form-item-impl/form-section/index.d.ts +2 -0
- package/lib/components/form-item-impl/i18n-input/i18n-input.component.d.ts +15 -0
- package/lib/components/form-item-impl/i18n-input/i18n-input.module.d.ts +15 -0
- package/lib/components/form-item-impl/i18n-input/index.d.ts +2 -0
- package/lib/components/form-item-impl/index.d.ts +21 -0
- package/lib/components/form-item-impl/input/index.d.ts +2 -0
- package/lib/{form-item-controls → components/form-item-impl/input}/input.component.d.ts +2 -2
- package/lib/components/form-item-impl/input/input.module.d.ts +15 -0
- package/lib/components/form-item-impl/multiple-choice/index.d.ts +2 -0
- package/lib/components/form-item-impl/multiple-choice/multiple-choice.component.d.ts +7 -0
- package/lib/components/form-item-impl/multiple-choice/multiple-choice.module.d.ts +13 -0
- package/lib/components/form-item-impl/ordered-list/index.d.ts +2 -0
- package/lib/components/form-item-impl/ordered-list/ordered-list-item.component.d.ts +7 -0
- package/lib/components/form-item-impl/ordered-list/ordered-list-item.module.d.ts +10 -0
- package/lib/{groups → components/form-item-impl/repeatable-item}/index.d.ts +1 -1
- package/lib/components/form-item-impl/repeatable-item/repeatable-item.component.d.ts +5 -0
- package/lib/components/form-item-impl/repeatable-item/repeatable-item.module.d.ts +8 -0
- package/lib/components/form-item-impl/repeatable-item-container/index.d.ts +2 -0
- package/lib/components/form-item-impl/repeatable-item-container/repeatable-item-container.component.d.ts +13 -0
- package/lib/components/form-item-impl/repeatable-item-container/repeatable-item-container.module.d.ts +15 -0
- package/lib/components/form-item-impl/search/index.d.ts +2 -0
- package/lib/components/form-item-impl/search/resource-search.component.d.ts +15 -0
- package/lib/components/form-item-impl/search/resource-search.module.d.ts +12 -0
- package/lib/components/form-item-impl/table-item/index.d.ts +2 -0
- package/lib/components/form-item-impl/table-item/table-item.component.d.ts +9 -0
- package/lib/components/form-item-impl/table-item/table-item.module.d.ts +10 -0
- package/lib/components/form-item-impl/text/index.d.ts +2 -0
- package/lib/components/form-item-impl/text/text.component.d.ts +7 -0
- package/lib/components/form-item-impl/text/text.module.d.ts +10 -0
- package/lib/components/form-item-impl/title/index.d.ts +2 -0
- package/lib/components/form-item-impl/title/title.component.d.ts +7 -0
- package/lib/components/form-item-impl/title/title.module.d.ts +10 -0
- package/lib/components/form-item-impl/unordered-list/index.d.ts +2 -0
- package/lib/components/form-item-impl/unordered-list/unordered-list-item.component.d.ts +7 -0
- package/lib/components/form-item-impl/unordered-list/unordered-list-item.module.d.ts +10 -0
- package/lib/components/form-item-impl/year-quarter/index.d.ts +2 -0
- package/lib/{form-item-controls → components/form-item-impl/year-quarter}/year-quarter.component.d.ts +6 -4
- package/lib/components/form-item-impl/year-quarter/year-quarter.module.d.ts +16 -0
- package/lib/components/form-item-impl/year-quarter-range/index.d.ts +2 -0
- package/lib/{form-item-controls → components/form-item-impl/year-quarter-range}/year-quarter-range.component.d.ts +6 -2
- package/lib/components/form-item-impl/year-quarter-range/year-quarter-range.module.d.ts +12 -0
- package/lib/components/form-item-injector/form-item-injector.component.d.ts +48 -0
- package/lib/components/form-item-injector/form-item-injector.module.d.ts +8 -0
- package/lib/components/form-item-injector/index.d.ts +2 -0
- package/lib/{form-stepper → components/form-stepper/form-step}/form-step.component.d.ts +1 -1
- package/lib/components/form-stepper/form-step/index.d.ts +1 -0
- package/lib/{form-stepper → components/form-stepper/form-step-group}/form-step-group.component.d.ts +1 -1
- package/lib/components/form-stepper/form-step-group/index.d.ts +1 -0
- package/lib/{form-stepper → components/form-stepper/form-stepper}/form-stepper.component.d.ts +1 -2
- package/lib/components/form-stepper/form-stepper/index.d.ts +1 -0
- package/lib/components/form-stepper/form-stepper.module.d.ts +18 -0
- package/lib/components/form-stepper/index.d.ts +4 -0
- package/lib/components/index.d.ts +12 -0
- package/lib/{item-header → components/item-header}/index.d.ts +1 -0
- package/lib/{item-header → components/item-header}/item-header.component.d.ts +3 -3
- package/lib/components/item-header/item-header.module.d.ts +9 -0
- package/lib/{step-card → components/step-card}/index.d.ts +1 -0
- package/lib/{step-card → components/step-card}/step-card.component.d.ts +1 -1
- package/lib/components/step-card/step-card.module.d.ts +13 -0
- package/lib/core/_all-color.scss +13 -15
- package/lib/core/_all-theme.scss +13 -18
- package/lib/core/_all-typography.scss +13 -15
- package/lib/{form-item-controls → directives}/base-single-selection-parent.directive.d.ts +1 -1
- package/lib/directives/index.d.ts +4 -0
- package/lib/models/index.d.ts +6 -0
- package/lib/models/toggle-form-item-data.model.d.ts +7 -0
- package/lib/pipes/coerce-date-item.pipe.d.ts +17 -0
- package/lib/pipes/coerce-form-control.pipe.d.ts +13 -0
- package/lib/{core/pipes → pipes}/coerce-form-group.pipe.d.ts +5 -0
- package/lib/pipes/date-quarter.pipe.d.ts +12 -0
- package/lib/{form-stepper → pipes}/form-step-group.pipe.d.ts +6 -1
- package/lib/pipes/get-auto-complete.pipe.d.ts +12 -0
- package/lib/{core/pipes → pipes}/get-available-quarters.pipe.d.ts +5 -0
- package/lib/pipes/get-form-control-error.pipe.d.ts +19 -0
- package/lib/pipes/get-list-icon.pipe.d.ts +12 -0
- package/lib/pipes/get-object-type.pipe.d.ts +12 -0
- package/lib/{core/pipes → pipes}/get-selected-option.pipe.d.ts +5 -0
- package/lib/pipes/index.d.ts +13 -0
- package/lib/{core/pipes → pipes}/items-with-value.pipe.d.ts +5 -0
- package/lib/{core/pipes → pipes}/sanitize-html.pipe.d.ts +5 -0
- package/lib/{core/services → services}/api.service.d.ts +1 -1
- package/lib/services/dialog.service.d.ts +21 -0
- package/lib/{core/services → services}/form-manager.service.d.ts +1 -1
- package/lib/{core/services → services}/index.d.ts +2 -0
- package/lib/services/resource-search-selection.service.d.ts +10 -0
- package/lib/{core/services → services}/ui.service.d.ts +1 -1
- package/lib/{core/utilities → utilities}/flatten-steps.d.ts +1 -1
- package/lib/{form-stepper → utilities}/form-step.util.d.ts +1 -1
- package/lib/{core/utilities → utilities}/generate-form-steps.d.ts +1 -1
- package/lib/utilities/get-item-class-suffix.d.ts +1 -0
- package/lib/{core/utilities → utilities}/index.d.ts +4 -0
- package/lib/utilities/is-form-control.d.ts +2 -0
- package/lib/{core/utilities → utilities}/update-step-status.d.ts +1 -1
- package/package.json +4 -2
- package/public-api.d.ts +7 -9
- package/esm2015/lib/core/animations.js +0 -8
- package/esm2015/lib/core/api-config.js +0 -3
- package/esm2015/lib/core/index.js +0 -7
- package/esm2015/lib/core/pipes/coerce-date-item.pipe.js +0 -23
- package/esm2015/lib/core/pipes/coerce-form-group.pipe.js +0 -35
- package/esm2015/lib/core/pipes/date-quarter.pipe.js +0 -43
- package/esm2015/lib/core/pipes/get-auto-complete.pipe.js +0 -42
- package/esm2015/lib/core/pipes/get-available-quarters.pipe.js +0 -29
- package/esm2015/lib/core/pipes/get-form-control-error.pipe.js +0 -20
- package/esm2015/lib/core/pipes/get-list-icon.pipe.js +0 -53
- package/esm2015/lib/core/pipes/get-object-type.pipe.js +0 -17
- package/esm2015/lib/core/pipes/get-selected-option.pipe.js +0 -20
- package/esm2015/lib/core/pipes/index.js +0 -71
- package/esm2015/lib/core/pipes/items-with-value.pipe.js +0 -30
- package/esm2015/lib/core/pipes/sanitize-html.pipe.js +0 -23
- package/esm2015/lib/core/services/api.service.js +0 -67
- package/esm2015/lib/core/services/form-manager.service.js +0 -465
- package/esm2015/lib/core/services/index.js +0 -5
- package/esm2015/lib/core/services/ng-form.service.js +0 -150
- package/esm2015/lib/core/services/ui.service.js +0 -333
- package/esm2015/lib/core/utilities/find-form-control.js +0 -29
- package/esm2015/lib/core/utilities/find-form-item.js +0 -25
- package/esm2015/lib/core/utilities/flatten-steps.js +0 -10
- package/esm2015/lib/core/utilities/generate-form-steps.js +0 -38
- package/esm2015/lib/core/utilities/index.js +0 -9
- package/esm2015/lib/core/utilities/is-form-group.js +0 -6
- package/esm2015/lib/core/utilities/serializer-util.js +0 -358
- package/esm2015/lib/core/utilities/update-step-status.js +0 -38
- package/esm2015/lib/core/validators/index.js +0 -3
- package/esm2015/lib/core/validators/instant-validation-result-error-state-matcher.js +0 -23
- package/esm2015/lib/core/validators/validation-result-validator.js +0 -19
- package/esm2015/lib/file-upload/file-upload.component.js +0 -66
- package/esm2015/lib/file-upload/index.js +0 -2
- package/esm2015/lib/form/base-form-item.model.js +0 -2
- package/esm2015/lib/form/form.component.js +0 -250
- package/esm2015/lib/form/form.module.js +0 -214
- package/esm2015/lib/form/index.js +0 -5
- package/esm2015/lib/form/white-list.model.js +0 -11
- package/esm2015/lib/form-item-controls/base-form-item-control.directive.js +0 -58
- package/esm2015/lib/form-item-controls/base-parent-item-control.directive.js +0 -42
- package/esm2015/lib/form-item-controls/base-single-selection-parent.directive.js +0 -53
- package/esm2015/lib/form-item-controls/date-range.component.js +0 -84
- package/esm2015/lib/form-item-controls/date.component.js +0 -134
- package/esm2015/lib/form-item-controls/dropdown.component.js +0 -109
- package/esm2015/lib/form-item-controls/index.js +0 -8
- package/esm2015/lib/form-item-controls/input.component.js +0 -149
- package/esm2015/lib/form-item-controls/year-quarter-range.component.js +0 -75
- package/esm2015/lib/form-item-controls/year-quarter.component.js +0 -228
- package/esm2015/lib/form-stepper/form-step-group.component.js +0 -95
- package/esm2015/lib/form-stepper/form-step-group.pipe.js +0 -20
- package/esm2015/lib/form-stepper/form-step.component.js +0 -110
- package/esm2015/lib/form-stepper/form-step.util.js +0 -28
- package/esm2015/lib/form-stepper/form-stepper.component.js +0 -115
- package/esm2015/lib/form-stepper/form-stepper.module.js +0 -53
- package/esm2015/lib/form-stepper/index.js +0 -8
- package/esm2015/lib/groups/group-components.js +0 -646
- package/esm2015/lib/groups/index.js +0 -3
- package/esm2015/lib/groups/repeatable-item.component.js +0 -23
- package/esm2015/lib/item-header/index.js +0 -2
- package/esm2015/lib/item-header/item-header.component.js +0 -108
- package/esm2015/lib/static-form-items/index.js +0 -3
- package/esm2015/lib/static-form-items/ordered-list-item.js +0 -50
- package/esm2015/lib/static-form-items/unordered-list-item.js +0 -52
- package/esm2015/lib/step-card/index.js +0 -2
- package/lib/_index.scss +0 -24
- package/lib/core/index.d.ts +0 -6
- package/lib/core/pipes/coerce-date-item.pipe.d.ts +0 -11
- package/lib/core/pipes/date-quarter.pipe.d.ts +0 -7
- package/lib/core/pipes/get-auto-complete.pipe.d.ts +0 -7
- package/lib/core/pipes/get-form-control-error.pipe.d.ts +0 -14
- package/lib/core/pipes/get-list-icon.pipe.d.ts +0 -7
- package/lib/core/pipes/get-object-type.pipe.d.ts +0 -7
- package/lib/core/pipes/index.d.ts +0 -28
- package/lib/file-upload/file-upload.component.d.ts +0 -23
- package/lib/form/form.module.d.ts +0 -52
- package/lib/form/index.d.ts +0 -4
- package/lib/form-item-controls/index.d.ts +0 -7
- package/lib/form-stepper/form-stepper.module.d.ts +0 -18
- package/lib/form-stepper/index.d.ts +0 -7
- package/lib/groups/group-components.d.ts +0 -221
- package/lib/groups/repeatable-item.component.d.ts +0 -5
- package/lib/static-form-items/index.d.ts +0 -2
- package/lib/static-form-items/ordered-list-item.d.ts +0 -11
- package/lib/static-form-items/unordered-list-item.d.ts +0 -11
- /package/lib/{form → components/form-disabler}/form-disabler.component.d.ts +0 -0
- /package/lib/{groups → components/form-item-impl/checkbox}/_checkbox-theme.scss +0 -0
- /package/lib/{form-item-controls → components/form-item-impl/date}/_date-item-theme.scss +0 -0
- /package/lib/{groups → components/form-item-impl/form-group}/_form-group-theme.scss +0 -0
- /package/lib/{groups → components/form-item-impl/multiple-choice}/_multiple-choice-theme.scss +0 -0
- /package/lib/{groups/_repeatable-item-theme.scss → components/form-item-impl/repeatable-item-container/_repeatable-item-container-theme.scss} +0 -0
- /package/lib/{form-item-controls → components/form-item-impl/year-quarter}/_year-quarter-item-theme.scss +0 -0
- /package/lib/{form-stepper → components/form-stepper/form-step-group}/_form-step-group-theme.scss +0 -0
- /package/lib/{form-stepper → components/form-stepper/form-stepper}/_form-stepper-theme.scss +0 -0
- /package/lib/{item-header → components/item-header}/_item-header-theme.scss +0 -0
- /package/lib/{step-card → components/step-card}/_step-card-theme.scss +0 -0
- /package/lib/{form-item-controls → core}/_form-control-theme.scss +0 -0
- /package/lib/{form-item-controls → directives}/base-form-item-control.directive.d.ts +0 -0
- /package/lib/{form-item-controls → directives}/base-parent-item-control.directive.d.ts +0 -0
- /package/lib/{form → directives}/form-item.directive.d.ts +0 -0
- /package/lib/{core → models}/api-config.d.ts +0 -0
- /package/lib/{form → models}/base-form-item.model.d.ts +0 -0
- /package/lib/{groups → models}/form-item-dialog-data.model.d.ts +0 -0
- /package/lib/{form-stepper/models → models/form-stepper}/base-form-step.model.d.ts +0 -0
- /package/lib/{form-stepper/models → models/form-stepper}/form-step-group.model.d.ts +0 -0
- /package/lib/{form-stepper/models → models/form-stepper}/form-step.model.d.ts +0 -0
- /package/lib/{form-stepper/models → models/form-stepper}/index.d.ts +0 -0
- /package/lib/{form → models}/white-list.model.d.ts +0 -0
- /package/lib/{core/services → services}/ng-form.service.d.ts +0 -0
- /package/lib/{core → utilities}/animations.d.ts +0 -0
- /package/lib/{core/utilities → utilities}/find-form-control.d.ts +0 -0
- /package/lib/{core/utilities → utilities}/find-form-item.d.ts +0 -0
- /package/lib/{core/utilities → utilities}/is-form-group.d.ts +0 -0
- /package/lib/{core/utilities → utilities}/serializer-util.d.ts +0 -0
- /package/lib/{core/validators → validators}/index.d.ts +0 -0
- /package/lib/{core/validators → validators}/instant-validation-result-error-state-matcher.d.ts +0 -0
- /package/lib/{core/validators → validators}/validation-result-validator.d.ts +0 -0
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './group-components';
|
|
2
|
-
export * from './repeatable-item.component';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93ZWItZm9ybS1hbmd1bGFyL3NyYy9saWIvZ3JvdXBzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyw2QkFBNkIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZ3JvdXAtY29tcG9uZW50cyc7XG5leHBvcnQgKiBmcm9tICcuL3JlcGVhdGFibGUtaXRlbS5jb21wb25lbnQnO1xuIl19
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class RepeatableItemComponent {
|
|
4
|
-
}
|
|
5
|
-
RepeatableItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: RepeatableItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6
|
-
RepeatableItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: RepeatableItemComponent, selector: "mtna-wf-repeatable-item", ngImport: i0, template: ` <ng-content></ng-content> `, isInline: true, styles: ["\n mtna-wf-repeatable-item {\n display: block;\n }\n "], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
7
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: RepeatableItemComponent, decorators: [{
|
|
8
|
-
type: Component,
|
|
9
|
-
args: [{
|
|
10
|
-
selector: 'mtna-wf-repeatable-item',
|
|
11
|
-
template: ` <ng-content></ng-content> `,
|
|
12
|
-
styles: [
|
|
13
|
-
`
|
|
14
|
-
mtna-wf-repeatable-item {
|
|
15
|
-
display: block;
|
|
16
|
-
}
|
|
17
|
-
`,
|
|
18
|
-
],
|
|
19
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
20
|
-
encapsulation: ViewEncapsulation.None,
|
|
21
|
-
}]
|
|
22
|
-
}] });
|
|
23
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwZWF0YWJsZS1pdGVtLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dlYi1mb3JtLWFuZ3VsYXIvc3JjL2xpYi9ncm91cHMvcmVwZWF0YWJsZS1pdGVtLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOztBQWV0RixNQUFNLE9BQU8sdUJBQXVCOztxSEFBdkIsdUJBQXVCO3lHQUF2Qix1QkFBdUIsK0RBWHhCLDZCQUE2Qjs0RkFXNUIsdUJBQXVCO2tCQWJuQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSx5QkFBeUI7b0JBQ25DLFFBQVEsRUFBRSw2QkFBNkI7b0JBQ3ZDLE1BQU0sRUFBRTt3QkFDTjs7OztLQUlDO3FCQUNGO29CQUNELGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtpQkFDdEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdtdG5hLXdmLXJlcGVhdGFibGUtaXRlbScsXG4gIHRlbXBsYXRlOiBgIDxuZy1jb250ZW50PjwvbmctY29udGVudD4gYCxcbiAgc3R5bGVzOiBbXG4gICAgYFxuICAgICAgbXRuYS13Zi1yZXBlYXRhYmxlLWl0ZW0ge1xuICAgICAgICBkaXNwbGF5OiBibG9jaztcbiAgICAgIH1cbiAgICBgLFxuICBdLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbn0pXG5leHBvcnQgY2xhc3MgUmVwZWF0YWJsZUl0ZW1Db21wb25lbnQge31cbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './item-header.component';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93ZWItZm9ybS1hbmd1bGFyL3NyYy9saWIvaXRlbS1oZWFkZXIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vaXRlbS1oZWFkZXIuY29tcG9uZW50JztcbiJdfQ==
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, HostBinding, Input, ViewEncapsulation } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "@angular/common";
|
|
5
|
-
import * as i2 from "../core/pipes/sanitize-html.pipe";
|
|
6
|
-
/**
|
|
7
|
-
* Common header html for a form item.
|
|
8
|
-
*
|
|
9
|
-
* @author Will Davis <will.davis@mtna.us>
|
|
10
|
-
*/
|
|
11
|
-
export class ItemHeaderComponent {
|
|
12
|
-
constructor() {
|
|
13
|
-
this.itemHeaderClass = true;
|
|
14
|
-
this._disabled = false;
|
|
15
|
-
this._hideRequiredMarker = false;
|
|
16
|
-
this._invalid = false;
|
|
17
|
-
/** Whether the form item is required */
|
|
18
|
-
this.required = false;
|
|
19
|
-
/** HTML to insert for required items */
|
|
20
|
-
this._requiredHtml = `<span aria-hidden="true"> *</span>`;
|
|
21
|
-
}
|
|
22
|
-
/** Whether the form item is disabled */
|
|
23
|
-
get disabled() {
|
|
24
|
-
return this._disabled;
|
|
25
|
-
}
|
|
26
|
-
set disabled(disabled) {
|
|
27
|
-
this._disabled = coerceBooleanProperty(disabled);
|
|
28
|
-
}
|
|
29
|
-
/** Whether the required marker (asterix) is hidden. Defaults to false. */
|
|
30
|
-
get hideRequiredMarker() {
|
|
31
|
-
return this._hideRequiredMarker;
|
|
32
|
-
}
|
|
33
|
-
set hideRequiredMarker(hideRequiredMarker) {
|
|
34
|
-
this._hideRequiredMarker = coerceBooleanProperty(hideRequiredMarker);
|
|
35
|
-
}
|
|
36
|
-
/** Whether the form item is invalid */
|
|
37
|
-
get invalid() {
|
|
38
|
-
return this._invalid;
|
|
39
|
-
}
|
|
40
|
-
set invalid(invalid) {
|
|
41
|
-
this._invalid = coerceBooleanProperty(invalid);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
ItemHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ItemHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
45
|
-
ItemHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ItemHeaderComponent, selector: "mtna-wf-item-header", inputs: { descriptiveText: "descriptiveText", disabled: "disabled", hideRequiredMarker: "hideRequiredMarker", invalid: "invalid", questionText: "questionText", required: "required" }, host: { properties: { "class.mtna-wf-item-header": "this.itemHeaderClass" } }, ngImport: i0, template: `
|
|
46
|
-
<h3
|
|
47
|
-
*ngIf="!!questionText"
|
|
48
|
-
class="mtna-wf-item-question"
|
|
49
|
-
[class.invalid]="invalid"
|
|
50
|
-
[innerHTML]="questionText + (required && !disabled && !hideRequiredMarker ? _requiredHtml : '') | mtnaWfSanitizeHtml"
|
|
51
|
-
></h3>
|
|
52
|
-
<p *ngIf="!!descriptiveText" class="mtna-wf-item-description" [innerHTML]="descriptiveText | mtnaWfSanitizeHtml"></p>
|
|
53
|
-
`, isInline: true, styles: ["\n .mtna-wf-item-header {\n display: block;\n margin-bottom: 0.5rem;\n }\n .mtna-wf-item-header .mtna-wf-item-question,\n .mtna-wf-item-description {\n margin: 0;\n font-size: 0.9rem;\n line-height: 1.6;\n }\n .mtna-wf-item-header .mtna-wf-item-description {\n opacity: 0.56;\n }\n\n mtna-annotations-indicator + mtna-wf-repeatable-item-container > mtna-wf-item-header,\n mtna-annotations-indicator + mtna-wf-value-item > mtna-wf-input-item > mtna-wf-item-header {\n padding-right: 24px; // provide space for annotation indicator\n }\n "], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "mtnaWfSanitizeHtml": i2.MtnaWfSanitizeHtmlPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
54
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ItemHeaderComponent, decorators: [{
|
|
55
|
-
type: Component,
|
|
56
|
-
args: [{
|
|
57
|
-
selector: 'mtna-wf-item-header',
|
|
58
|
-
template: `
|
|
59
|
-
<h3
|
|
60
|
-
*ngIf="!!questionText"
|
|
61
|
-
class="mtna-wf-item-question"
|
|
62
|
-
[class.invalid]="invalid"
|
|
63
|
-
[innerHTML]="questionText + (required && !disabled && !hideRequiredMarker ? _requiredHtml : '') | mtnaWfSanitizeHtml"
|
|
64
|
-
></h3>
|
|
65
|
-
<p *ngIf="!!descriptiveText" class="mtna-wf-item-description" [innerHTML]="descriptiveText | mtnaWfSanitizeHtml"></p>
|
|
66
|
-
`,
|
|
67
|
-
styles: [
|
|
68
|
-
`
|
|
69
|
-
.mtna-wf-item-header {
|
|
70
|
-
display: block;
|
|
71
|
-
margin-bottom: 0.5rem;
|
|
72
|
-
}
|
|
73
|
-
.mtna-wf-item-header .mtna-wf-item-question,
|
|
74
|
-
.mtna-wf-item-description {
|
|
75
|
-
margin: 0;
|
|
76
|
-
font-size: 0.9rem;
|
|
77
|
-
line-height: 1.6;
|
|
78
|
-
}
|
|
79
|
-
.mtna-wf-item-header .mtna-wf-item-description {
|
|
80
|
-
opacity: 0.56;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
mtna-annotations-indicator + mtna-wf-repeatable-item-container > mtna-wf-item-header,
|
|
84
|
-
mtna-annotations-indicator + mtna-wf-value-item > mtna-wf-input-item > mtna-wf-item-header {
|
|
85
|
-
padding-right: 24px; // provide space for annotation indicator
|
|
86
|
-
}
|
|
87
|
-
`,
|
|
88
|
-
],
|
|
89
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
90
|
-
encapsulation: ViewEncapsulation.None,
|
|
91
|
-
}]
|
|
92
|
-
}], propDecorators: { itemHeaderClass: [{
|
|
93
|
-
type: HostBinding,
|
|
94
|
-
args: ['class.mtna-wf-item-header']
|
|
95
|
-
}], descriptiveText: [{
|
|
96
|
-
type: Input
|
|
97
|
-
}], disabled: [{
|
|
98
|
-
type: Input
|
|
99
|
-
}], hideRequiredMarker: [{
|
|
100
|
-
type: Input
|
|
101
|
-
}], invalid: [{
|
|
102
|
-
type: Input
|
|
103
|
-
}], questionText: [{
|
|
104
|
-
type: Input
|
|
105
|
-
}], required: [{
|
|
106
|
-
type: Input
|
|
107
|
-
}] } });
|
|
108
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXRlbS1oZWFkZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvd2ViLWZvcm0tYW5ndWxhci9zcmMvbGliL2l0ZW0taGVhZGVyL2l0ZW0taGVhZGVyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQWdCLHFCQUFxQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDNUUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOzs7O0FBRTFHOzs7O0dBSUc7QUFxQ0gsTUFBTSxPQUFPLG1CQUFtQjtJQXBDaEM7UUF5QzRDLG9CQUFlLEdBQUcsSUFBSSxDQUFDO1FBV3pELGNBQVMsR0FBRyxLQUFLLENBQUM7UUFVbEIsd0JBQW1CLEdBQUcsS0FBSyxDQUFDO1FBVTVCLGFBQVEsR0FBRyxLQUFLLENBQUM7UUFHekIsd0NBQXdDO1FBQy9CLGFBQVEsR0FBRyxLQUFLLENBQUM7UUFFMUIsd0NBQXdDO1FBQ3hDLGtCQUFhLEdBQUcsd0NBQXdDLENBQUM7S0FDMUQ7SUFwQ0Msd0NBQXdDO0lBQ3hDLElBQ0ksUUFBUTtRQUNWLE9BQU8sSUFBSSxDQUFDLFNBQVMsQ0FBQztJQUN4QixDQUFDO0lBQ0QsSUFBSSxRQUFRLENBQUMsUUFBaUI7UUFDNUIsSUFBSSxDQUFDLFNBQVMsR0FBRyxxQkFBcUIsQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUNuRCxDQUFDO0lBR0QsMEVBQTBFO0lBQzFFLElBQ0ksa0JBQWtCO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLG1CQUFtQixDQUFDO0lBQ2xDLENBQUM7SUFDRCxJQUFJLGtCQUFrQixDQUFDLGtCQUEyQjtRQUNoRCxJQUFJLENBQUMsbUJBQW1CLEdBQUcscUJBQXFCLENBQUMsa0JBQWtCLENBQUMsQ0FBQztJQUN2RSxDQUFDO0lBR0QsdUNBQXVDO0lBQ3ZDLElBQ0ksT0FBTztRQUNULE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQztJQUN2QixDQUFDO0lBQ0QsSUFBSSxPQUFPLENBQUMsT0FBZ0I7UUFDMUIsSUFBSSxDQUFDLFFBQVEsR0FBRyxxQkFBcUIsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUNqRCxDQUFDOztpSEFuQ1UsbUJBQW1CO3FHQUFuQixtQkFBbUIsa1VBbENwQjs7Ozs7Ozs7R0FRVDs0RkEwQlUsbUJBQW1CO2tCQXBDL0IsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUscUJBQXFCO29CQUMvQixRQUFRLEVBQUU7Ozs7Ozs7O0dBUVQ7b0JBQ0QsTUFBTSxFQUFFO3dCQUNOOzs7Ozs7Ozs7Ozs7Ozs7Ozs7O0tBbUJDO3FCQUNGO29CQUNELGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtpQkFDdEM7OEJBTTJDLGVBQWU7c0JBQXhELFdBQVc7dUJBQUMsMkJBQTJCO2dCQUUvQixlQUFlO3NCQUF2QixLQUFLO2dCQUdGLFFBQVE7c0JBRFgsS0FBSztnQkFXRixrQkFBa0I7c0JBRHJCLEtBQUs7Z0JBV0YsT0FBTztzQkFEVixLQUFLO2dCQVNHLFlBQVk7c0JBQXBCLEtBQUs7Z0JBRUcsUUFBUTtzQkFBaEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEJvb2xlYW5JbnB1dCwgY29lcmNlQm9vbGVhblByb3BlcnR5IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2NvZXJjaW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIEhvc3RCaW5kaW5nLCBJbnB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuLyoqXG4gKiBDb21tb24gaGVhZGVyIGh0bWwgZm9yIGEgZm9ybSBpdGVtLlxuICpcbiAqIEBhdXRob3IgV2lsbCBEYXZpcyA8d2lsbC5kYXZpc0BtdG5hLnVzPlxuICovXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdtdG5hLXdmLWl0ZW0taGVhZGVyJyxcbiAgdGVtcGxhdGU6IGBcbiAgICA8aDNcbiAgICAgICpuZ0lmPVwiISFxdWVzdGlvblRleHRcIlxuICAgICAgY2xhc3M9XCJtdG5hLXdmLWl0ZW0tcXVlc3Rpb25cIlxuICAgICAgW2NsYXNzLmludmFsaWRdPVwiaW52YWxpZFwiXG4gICAgICBbaW5uZXJIVE1MXT1cInF1ZXN0aW9uVGV4dCArIChyZXF1aXJlZCAmJiAhZGlzYWJsZWQgJiYgIWhpZGVSZXF1aXJlZE1hcmtlciA/IF9yZXF1aXJlZEh0bWwgOiAnJykgfCBtdG5hV2ZTYW5pdGl6ZUh0bWxcIlxuICAgID48L2gzPlxuICAgIDxwICpuZ0lmPVwiISFkZXNjcmlwdGl2ZVRleHRcIiBjbGFzcz1cIm10bmEtd2YtaXRlbS1kZXNjcmlwdGlvblwiIFtpbm5lckhUTUxdPVwiZGVzY3JpcHRpdmVUZXh0IHwgbXRuYVdmU2FuaXRpemVIdG1sXCI+PC9wPlxuICBgLFxuICBzdHlsZXM6IFtcbiAgICBgXG4gICAgICAubXRuYS13Zi1pdGVtLWhlYWRlciB7XG4gICAgICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgICAgICBtYXJnaW4tYm90dG9tOiAwLjVyZW07XG4gICAgICB9XG4gICAgICAubXRuYS13Zi1pdGVtLWhlYWRlciAubXRuYS13Zi1pdGVtLXF1ZXN0aW9uLFxuICAgICAgLm10bmEtd2YtaXRlbS1kZXNjcmlwdGlvbiB7XG4gICAgICAgIG1hcmdpbjogMDtcbiAgICAgICAgZm9udC1zaXplOiAwLjlyZW07XG4gICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7XG4gICAgICB9XG4gICAgICAubXRuYS13Zi1pdGVtLWhlYWRlciAubXRuYS13Zi1pdGVtLWRlc2NyaXB0aW9uIHtcbiAgICAgICAgb3BhY2l0eTogMC41NjtcbiAgICAgIH1cblxuICAgICAgbXRuYS1hbm5vdGF0aW9ucy1pbmRpY2F0b3IgKyBtdG5hLXdmLXJlcGVhdGFibGUtaXRlbS1jb250YWluZXIgPiBtdG5hLXdmLWl0ZW0taGVhZGVyLFxuICAgICAgbXRuYS1hbm5vdGF0aW9ucy1pbmRpY2F0b3IgKyBtdG5hLXdmLXZhbHVlLWl0ZW0gPiBtdG5hLXdmLWlucHV0LWl0ZW0gPiBtdG5hLXdmLWl0ZW0taGVhZGVyIHtcbiAgICAgICAgcGFkZGluZy1yaWdodDogMjRweDsgLy8gcHJvdmlkZSBzcGFjZSBmb3IgYW5ub3RhdGlvbiBpbmRpY2F0b3JcbiAgICAgIH1cbiAgICBgLFxuICBdLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbn0pXG5leHBvcnQgY2xhc3MgSXRlbUhlYWRlckNvbXBvbmVudCB7XG4gIHN0YXRpYyBuZ0FjY2VwdElucHV0VHlwZV9kaXNhYmxlZDogQm9vbGVhbklucHV0O1xuICBzdGF0aWMgbmdBY2NlcHRJbnB1dFR5cGVfaGlkZVJlcXVpcmVkTWFya2VyOiBCb29sZWFuSW5wdXQ7XG4gIHN0YXRpYyBuZ0FjY2VwdElucHV0VHlwZV9pbnZhbGlkOiBCb29sZWFuSW5wdXQ7XG5cbiAgQEhvc3RCaW5kaW5nKCdjbGFzcy5tdG5hLXdmLWl0ZW0taGVhZGVyJykgaXRlbUhlYWRlckNsYXNzID0gdHJ1ZTtcbiAgLyoqIE9wdGlvbmFsIGRlc2NyaXB0aXZlIHRleHQvSFRNTCAqL1xuICBASW5wdXQoKSBkZXNjcmlwdGl2ZVRleHQ6IHN0cmluZyB8IG51bGwgfCB1bmRlZmluZWQ7XG4gIC8qKiBXaGV0aGVyIHRoZSBmb3JtIGl0ZW0gaXMgZGlzYWJsZWQgKi9cbiAgQElucHV0KClcbiAgZ2V0IGRpc2FibGVkKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLl9kaXNhYmxlZDtcbiAgfVxuICBzZXQgZGlzYWJsZWQoZGlzYWJsZWQ6IGJvb2xlYW4pIHtcbiAgICB0aGlzLl9kaXNhYmxlZCA9IGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eShkaXNhYmxlZCk7XG4gIH1cbiAgcHJpdmF0ZSBfZGlzYWJsZWQgPSBmYWxzZTtcblxuICAvKiogV2hldGhlciB0aGUgcmVxdWlyZWQgbWFya2VyIChhc3Rlcml4KSBpcyBoaWRkZW4uIERlZmF1bHRzIHRvIGZhbHNlLiAqL1xuICBASW5wdXQoKVxuICBnZXQgaGlkZVJlcXVpcmVkTWFya2VyKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLl9oaWRlUmVxdWlyZWRNYXJrZXI7XG4gIH1cbiAgc2V0IGhpZGVSZXF1aXJlZE1hcmtlcihoaWRlUmVxdWlyZWRNYXJrZXI6IGJvb2xlYW4pIHtcbiAgICB0aGlzLl9oaWRlUmVxdWlyZWRNYXJrZXIgPSBjb2VyY2VCb29sZWFuUHJvcGVydHkoaGlkZVJlcXVpcmVkTWFya2VyKTtcbiAgfVxuICBwcml2YXRlIF9oaWRlUmVxdWlyZWRNYXJrZXIgPSBmYWxzZTtcblxuICAvKiogV2hldGhlciB0aGUgZm9ybSBpdGVtIGlzIGludmFsaWQgKi9cbiAgQElucHV0KClcbiAgZ2V0IGludmFsaWQoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuX2ludmFsaWQ7XG4gIH1cbiAgc2V0IGludmFsaWQoaW52YWxpZDogYm9vbGVhbikge1xuICAgIHRoaXMuX2ludmFsaWQgPSBjb2VyY2VCb29sZWFuUHJvcGVydHkoaW52YWxpZCk7XG4gIH1cbiAgcHJpdmF0ZSBfaW52YWxpZCA9IGZhbHNlO1xuICAvKiogT3B0aW9uYWwgcXVlc3Rpb24gdGV4dC9IVE1MICovXG4gIEBJbnB1dCgpIHF1ZXN0aW9uVGV4dDogc3RyaW5nIHwgbnVsbCB8IHVuZGVmaW5lZDtcbiAgLyoqIFdoZXRoZXIgdGhlIGZvcm0gaXRlbSBpcyByZXF1aXJlZCAqL1xuICBASW5wdXQoKSByZXF1aXJlZCA9IGZhbHNlO1xuXG4gIC8qKiBIVE1MIHRvIGluc2VydCBmb3IgcmVxdWlyZWQgaXRlbXMgKi9cbiAgX3JlcXVpcmVkSHRtbCA9IGA8c3BhbiBhcmlhLWhpZGRlbj1cInRydWVcIj4mIzMyOyo8L3NwYW4+YDtcbn1cbiJdfQ==
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './ordered-list-item';
|
|
2
|
-
export * from './unordered-list-item';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93ZWItZm9ybS1hbmd1bGFyL3NyYy9saWIvc3RhdGljLWZvcm0taXRlbXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLHVCQUF1QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9vcmRlcmVkLWxpc3QtaXRlbSc7XG5leHBvcnQgKiBmcm9tICcuL3Vub3JkZXJlZC1saXN0LWl0ZW0nO1xuIl19
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
import * as i2 from "@mtna/core-angular";
|
|
5
|
-
import * as i3 from "../core/pipes/sanitize-html.pipe";
|
|
6
|
-
export class MtnaWfOrderedListItemComponent {
|
|
7
|
-
constructor() {
|
|
8
|
-
this.header = null;
|
|
9
|
-
this.indicatorStatus = 'INACTIVE';
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
MtnaWfOrderedListItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: MtnaWfOrderedListItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
13
|
-
MtnaWfOrderedListItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: MtnaWfOrderedListItemComponent, selector: "mtna-wf-ordered-list-item", inputs: { header: "header", indicatorStatus: "indicatorStatus", item: "item" }, ngImport: i0, template: `
|
|
14
|
-
<ng-container *ngTemplateOutlet="header"></ng-container>
|
|
15
|
-
<ol [mtnaHighlight]="indicatorStatus === 'ACTIVE' && !item.questionText && !item.descriptiveText">
|
|
16
|
-
<li *ngFor="let item of item.value" [innerHTML]="item | mtnaWfSanitizeHtml"></li>
|
|
17
|
-
</ol>
|
|
18
|
-
`, isInline: true, styles: ["\n mtna-wf-ordered-list-item > ol {\n list-style: decimal outside;\n padding-left: 1rem;\n }\n mtna-annotations-indicator + mtna-wf-value-item mtna-wf-ordered-list-item > ol {\n padding-right: 24px; // provide space for annotation indicator\n }\n "], directives: [{ type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.MtnaHighlightDirective, selector: "[mtnaHighlight]", inputs: ["mtnaHighlight", "mtnaHighlightColor"], exportAs: ["mtnaHighlight"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], pipes: { "mtnaWfSanitizeHtml": i3.MtnaWfSanitizeHtmlPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: MtnaWfOrderedListItemComponent, decorators: [{
|
|
20
|
-
type: Component,
|
|
21
|
-
args: [{
|
|
22
|
-
selector: 'mtna-wf-ordered-list-item',
|
|
23
|
-
template: `
|
|
24
|
-
<ng-container *ngTemplateOutlet="header"></ng-container>
|
|
25
|
-
<ol [mtnaHighlight]="indicatorStatus === 'ACTIVE' && !item.questionText && !item.descriptiveText">
|
|
26
|
-
<li *ngFor="let item of item.value" [innerHTML]="item | mtnaWfSanitizeHtml"></li>
|
|
27
|
-
</ol>
|
|
28
|
-
`,
|
|
29
|
-
styles: [
|
|
30
|
-
`
|
|
31
|
-
mtna-wf-ordered-list-item > ol {
|
|
32
|
-
list-style: decimal outside;
|
|
33
|
-
padding-left: 1rem;
|
|
34
|
-
}
|
|
35
|
-
mtna-annotations-indicator + mtna-wf-value-item mtna-wf-ordered-list-item > ol {
|
|
36
|
-
padding-right: 24px; // provide space for annotation indicator
|
|
37
|
-
}
|
|
38
|
-
`,
|
|
39
|
-
],
|
|
40
|
-
encapsulation: ViewEncapsulation.None,
|
|
41
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
42
|
-
}]
|
|
43
|
-
}], propDecorators: { header: [{
|
|
44
|
-
type: Input
|
|
45
|
-
}], indicatorStatus: [{
|
|
46
|
-
type: Input
|
|
47
|
-
}], item: [{
|
|
48
|
-
type: Input
|
|
49
|
-
}] } });
|
|
50
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3JkZXJlZC1saXN0LWl0ZW0uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93ZWItZm9ybS1hbmd1bGFyL3NyYy9saWIvc3RhdGljLWZvcm0taXRlbXMvb3JkZXJlZC1saXN0LWl0ZW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQWUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7O0FBMkIxRyxNQUFNLE9BQU8sOEJBQThCO0lBdEIzQztRQXVCVyxXQUFNLEdBQWdDLElBQUksQ0FBQztRQUMzQyxvQkFBZSxHQUE4QixVQUFVLENBQUM7S0FFbEU7OzRIQUpZLDhCQUE4QjtnSEFBOUIsOEJBQThCLGlKQXBCL0I7Ozs7O0dBS1Q7NEZBZVUsOEJBQThCO2tCQXRCMUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsMkJBQTJCO29CQUNyQyxRQUFRLEVBQUU7Ozs7O0dBS1Q7b0JBQ0QsTUFBTSxFQUFFO3dCQUNOOzs7Ozs7OztLQVFDO3FCQUNGO29CQUNELGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO29CQUNyQyxlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtpQkFDaEQ7OEJBRVUsTUFBTTtzQkFBZCxLQUFLO2dCQUNHLGVBQWU7c0JBQXZCLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQsIFRlbXBsYXRlUmVmLCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBBbm5vdGF0aW9uSW5kaWNhdG9yU3RhdHVzLCBJbmRpY2F0b3JTdGF0dXNSZXBlYXRlciB9IGZyb20gJ0BtdG5hL3Bvam8tc29jaWFsLWFuZ3VsYXInO1xuaW1wb3J0IHsgTnVtYmVyZWRMaXN0SXRlbSB9IGZyb20gJ0BtdG5hL3dlYi1mb3JtLXRzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbXRuYS13Zi1vcmRlcmVkLWxpc3QtaXRlbScsXG4gIHRlbXBsYXRlOiBgXG4gICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImhlYWRlclwiPjwvbmctY29udGFpbmVyPlxuICAgIDxvbCBbbXRuYUhpZ2hsaWdodF09XCJpbmRpY2F0b3JTdGF0dXMgPT09ICdBQ1RJVkUnICYmICFpdGVtLnF1ZXN0aW9uVGV4dCAmJiAhaXRlbS5kZXNjcmlwdGl2ZVRleHRcIj5cbiAgICAgIDxsaSAqbmdGb3I9XCJsZXQgaXRlbSBvZiBpdGVtLnZhbHVlXCIgW2lubmVySFRNTF09XCJpdGVtIHwgbXRuYVdmU2FuaXRpemVIdG1sXCI+PC9saT5cbiAgICA8L29sPlxuICBgLFxuICBzdHlsZXM6IFtcbiAgICBgXG4gICAgICBtdG5hLXdmLW9yZGVyZWQtbGlzdC1pdGVtID4gb2wge1xuICAgICAgICBsaXN0LXN0eWxlOiBkZWNpbWFsIG91dHNpZGU7XG4gICAgICAgIHBhZGRpbmctbGVmdDogMXJlbTtcbiAgICAgIH1cbiAgICAgIG10bmEtYW5ub3RhdGlvbnMtaW5kaWNhdG9yICsgbXRuYS13Zi12YWx1ZS1pdGVtIG10bmEtd2Ytb3JkZXJlZC1saXN0LWl0ZW0gPiBvbCB7XG4gICAgICAgIHBhZGRpbmctcmlnaHQ6IDI0cHg7IC8vIHByb3ZpZGUgc3BhY2UgZm9yIGFubm90YXRpb24gaW5kaWNhdG9yXG4gICAgICB9XG4gICAgYCxcbiAgXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIE10bmFXZk9yZGVyZWRMaXN0SXRlbUNvbXBvbmVudCBpbXBsZW1lbnRzIEluZGljYXRvclN0YXR1c1JlcGVhdGVyIHtcbiAgQElucHV0KCkgaGVhZGVyOiBUZW1wbGF0ZVJlZjx1bmtub3duPiB8IG51bGwgPSBudWxsO1xuICBASW5wdXQoKSBpbmRpY2F0b3JTdGF0dXM6IEFubm90YXRpb25JbmRpY2F0b3JTdGF0dXMgPSAnSU5BQ1RJVkUnO1xuICBASW5wdXQoKSBpdGVtITogTnVtYmVyZWRMaXN0SXRlbTtcbn1cbiJdfQ==
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
import * as i2 from "@mtna/core-angular";
|
|
5
|
-
import * as i3 from "../core/pipes/sanitize-html.pipe";
|
|
6
|
-
export class MtnaWfUnorderedListItemComponent {
|
|
7
|
-
constructor() {
|
|
8
|
-
this.header = null;
|
|
9
|
-
this.indicatorStatus = 'INACTIVE';
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
MtnaWfUnorderedListItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: MtnaWfUnorderedListItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
13
|
-
MtnaWfUnorderedListItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: MtnaWfUnorderedListItemComponent, selector: "mtna-wf-unordered-list-item", inputs: { header: "header", indicatorStatus: "indicatorStatus", item: "item" }, ngImport: i0, template: `
|
|
14
|
-
<ng-container *ngTemplateOutlet="header"></ng-container>
|
|
15
|
-
<ul [mtnaHighlight]="indicatorStatus === 'ACTIVE' && !item.questionText && !item.descriptiveText">
|
|
16
|
-
<li *ngFor="let item of item.value" [innerHTML]="item | mtnaWfSanitizeHtml"></li>
|
|
17
|
-
</ul>
|
|
18
|
-
`, isInline: true, styles: ["\n mtna-wf-unordered-list-item > ul {\n list-style: disc outside;\n padding-left: 1rem;\n }\n\n mtna-annotations-indicator + mtna-wf-value-item mtna-wf-unordered-list-item > ul {\n padding-right: 24px;\n / / provide space for annotation indicator\n }\n "], directives: [{ type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.MtnaHighlightDirective, selector: "[mtnaHighlight]", inputs: ["mtnaHighlight", "mtnaHighlightColor"], exportAs: ["mtnaHighlight"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], pipes: { "mtnaWfSanitizeHtml": i3.MtnaWfSanitizeHtmlPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: MtnaWfUnorderedListItemComponent, decorators: [{
|
|
20
|
-
type: Component,
|
|
21
|
-
args: [{
|
|
22
|
-
selector: 'mtna-wf-unordered-list-item',
|
|
23
|
-
template: `
|
|
24
|
-
<ng-container *ngTemplateOutlet="header"></ng-container>
|
|
25
|
-
<ul [mtnaHighlight]="indicatorStatus === 'ACTIVE' && !item.questionText && !item.descriptiveText">
|
|
26
|
-
<li *ngFor="let item of item.value" [innerHTML]="item | mtnaWfSanitizeHtml"></li>
|
|
27
|
-
</ul>
|
|
28
|
-
`,
|
|
29
|
-
styles: [
|
|
30
|
-
`
|
|
31
|
-
mtna-wf-unordered-list-item > ul {
|
|
32
|
-
list-style: disc outside;
|
|
33
|
-
padding-left: 1rem;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
mtna-annotations-indicator + mtna-wf-value-item mtna-wf-unordered-list-item > ul {
|
|
37
|
-
padding-right: 24px;
|
|
38
|
-
/ / provide space for annotation indicator
|
|
39
|
-
}
|
|
40
|
-
`,
|
|
41
|
-
],
|
|
42
|
-
encapsulation: ViewEncapsulation.None,
|
|
43
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
44
|
-
}]
|
|
45
|
-
}], propDecorators: { header: [{
|
|
46
|
-
type: Input
|
|
47
|
-
}], indicatorStatus: [{
|
|
48
|
-
type: Input
|
|
49
|
-
}], item: [{
|
|
50
|
-
type: Input
|
|
51
|
-
}] } });
|
|
52
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5vcmRlcmVkLWxpc3QtaXRlbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dlYi1mb3JtLWFuZ3VsYXIvc3JjL2xpYi9zdGF0aWMtZm9ybS1pdGVtcy91bm9yZGVyZWQtbGlzdC1pdGVtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFlLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOzs7OztBQTZCMUcsTUFBTSxPQUFPLGdDQUFnQztJQXhCN0M7UUF5QlcsV0FBTSxHQUFnQyxJQUFJLENBQUM7UUFDM0Msb0JBQWUsR0FBOEIsVUFBVSxDQUFDO0tBRWxFOzs4SEFKWSxnQ0FBZ0M7a0hBQWhDLGdDQUFnQyxtSkF0QmpDOzs7OztHQUtUOzRGQWlCVSxnQ0FBZ0M7a0JBeEI1QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSw2QkFBNkI7b0JBQ3ZDLFFBQVEsRUFBRTs7Ozs7R0FLVDtvQkFDRCxNQUFNLEVBQUU7d0JBQ047Ozs7Ozs7Ozs7S0FVQztxQkFDRjtvQkFDRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07aUJBQ2hEOzhCQUVVLE1BQU07c0JBQWQsS0FBSztnQkFDRyxlQUFlO3NCQUF2QixLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0LCBUZW1wbGF0ZVJlZiwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgQW5ub3RhdGlvbkluZGljYXRvclN0YXR1cywgSW5kaWNhdG9yU3RhdHVzUmVwZWF0ZXIgfSBmcm9tICdAbXRuYS9wb2pvLXNvY2lhbC1hbmd1bGFyJztcbmltcG9ydCB7IEJ1bGxldGVkTGlzdEl0ZW0gfSBmcm9tICdAbXRuYS93ZWItZm9ybS10cyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ210bmEtd2YtdW5vcmRlcmVkLWxpc3QtaXRlbScsXG4gIHRlbXBsYXRlOiBgXG4gICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImhlYWRlclwiPjwvbmctY29udGFpbmVyPlxuICAgIDx1bCBbbXRuYUhpZ2hsaWdodF09XCJpbmRpY2F0b3JTdGF0dXMgPT09ICdBQ1RJVkUnICYmICFpdGVtLnF1ZXN0aW9uVGV4dCAmJiAhaXRlbS5kZXNjcmlwdGl2ZVRleHRcIj5cbiAgICAgIDxsaSAqbmdGb3I9XCJsZXQgaXRlbSBvZiBpdGVtLnZhbHVlXCIgW2lubmVySFRNTF09XCJpdGVtIHwgbXRuYVdmU2FuaXRpemVIdG1sXCI+PC9saT5cbiAgICA8L3VsPlxuICBgLFxuICBzdHlsZXM6IFtcbiAgICBgXG4gICAgICAgIG10bmEtd2YtdW5vcmRlcmVkLWxpc3QtaXRlbSA+IHVsIHtcbiAgICAgICAgICAgIGxpc3Qtc3R5bGU6IGRpc2Mgb3V0c2lkZTtcbiAgICAgICAgICAgIHBhZGRpbmctbGVmdDogMXJlbTtcbiAgICAgICAgfVxuXG4gICAgICAgIG10bmEtYW5ub3RhdGlvbnMtaW5kaWNhdG9yICsgbXRuYS13Zi12YWx1ZS1pdGVtIG10bmEtd2YtdW5vcmRlcmVkLWxpc3QtaXRlbSA+IHVsIHtcbiAgICAgICAgICAgIHBhZGRpbmctcmlnaHQ6IDI0cHg7XG4gICAgICAgIC8gLyBwcm92aWRlIHNwYWNlIGZvciBhbm5vdGF0aW9uIGluZGljYXRvclxuICAgICAgICB9XG4gICAgYCxcbiAgXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIE10bmFXZlVub3JkZXJlZExpc3RJdGVtQ29tcG9uZW50IGltcGxlbWVudHMgSW5kaWNhdG9yU3RhdHVzUmVwZWF0ZXIge1xuICBASW5wdXQoKSBoZWFkZXI6IFRlbXBsYXRlUmVmPHVua25vd24+IHwgbnVsbCA9IG51bGw7XG4gIEBJbnB1dCgpIGluZGljYXRvclN0YXR1czogQW5ub3RhdGlvbkluZGljYXRvclN0YXR1cyA9ICdJTkFDVElWRSc7XG4gIEBJbnB1dCgpIGl0ZW0hOiBCdWxsZXRlZExpc3RJdGVtO1xufVxuIl19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './step-card.component';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93ZWItZm9ybS1hbmd1bGFyL3NyYy9saWIvc3RlcC1jYXJkL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsdUJBQXVCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3N0ZXAtY2FyZC5jb21wb25lbnQnO1xuIl19
|
package/lib/_index.scss
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
// Theme bundles
|
|
2
|
-
@forward './lib/core/all-color' show all-component-colors;
|
|
3
|
-
@forward './lib/core/all-theme' show all-component-themes;
|
|
4
|
-
@forward './lib/core/all-typography' show all-component-typographies;
|
|
5
|
-
|
|
6
|
-
// Component themes
|
|
7
|
-
@forward './lib/form-item-controls/date-item-theme' as date-item-* show date-item-theme, date-item-color, date-item-typography;
|
|
8
|
-
@forward './lib/form-item-controls/form-control-theme' as form-control-* show form-control-theme, form-control-color,
|
|
9
|
-
form-control-typography;
|
|
10
|
-
@forward './lib/form-item-controls/year-quarter-item-theme' as year-quarter-item-* show year-quarter-item-theme, year-quarter-item-color,
|
|
11
|
-
year-quarter-item-typography;
|
|
12
|
-
@forward './lib/form-stepper/form-step-group-theme' as form-step-group-* show form-step-group-theme, form-step-group-color,
|
|
13
|
-
form-step-group-typography;
|
|
14
|
-
@forward './lib/form-stepper/form-stepper-theme' as form-stepper-* show form-stepper-theme, form-stepper-color, form-stepper-typography;
|
|
15
|
-
@forward './lib/groups/checkbox-theme' as checkbox-* show checkbox-theme, checkbox-color, checkbox-typography;
|
|
16
|
-
@forward './lib/groups/form-group-theme' as form-group-* show form-group-theme, form-group-color, form-group-typography;
|
|
17
|
-
@forward './lib/groups/multiple-choice-theme' as multiple-choice-* show multiple-choice-theme, multiple-choice-color,
|
|
18
|
-
multiple-choice-typography;
|
|
19
|
-
@forward './lib/groups/repeatable-item-theme' as repeatable-item-* show repeatable-item-theme, repeatable-item-color,
|
|
20
|
-
repeatable-item-typography;
|
|
21
|
-
@forward './lib/item-header/item-header-theme' as item-header-* show item-header-theme, item-header-color, item-header-typography;
|
|
22
|
-
@forward './lib/step-card/step-card-theme' as step-card-* show step-card-theme, step-card-color, step-card-typography;
|
|
23
|
-
|
|
24
|
-
@forward './lib/core/core-theme' as core-* show core-theme;
|
package/lib/core/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { DateItem, ValueItem } from '@mtna/web-form-ts';
|
|
3
|
-
import { GetObjectTypePipe } from './get-object-type.pipe';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CoerceDateItemPipe implements PipeTransform {
|
|
6
|
-
private objectTypePipe;
|
|
7
|
-
constructor(objectTypePipe: GetObjectTypePipe);
|
|
8
|
-
transform(item: ValueItem<unknown> | undefined | null): DateItem | null;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoerceDateItemPipe, never>;
|
|
10
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<CoerceDateItemPipe, "coerceDateItem">;
|
|
11
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class DateQuarterPipe implements PipeTransform {
|
|
4
|
-
transform(quarter: 0 | 1 | 2 | 3, format?: string): string;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DateQuarterPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<DateQuarterPipe, "mtnaWfDateQuarter">;
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class GetAutoCompletePipe implements PipeTransform {
|
|
4
|
-
transform(label: string | null | undefined): string;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GetAutoCompletePipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<GetAutoCompletePipe, "getAutoComplete">;
|
|
7
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { FormItemImpl } from '@mtna/web-form-ts';
|
|
3
|
-
import { MtnaWfUIService } from '../services/ui.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MtnaGetFormControlErrorPipe implements PipeTransform {
|
|
6
|
-
private uiService;
|
|
7
|
-
constructor(uiService: MtnaWfUIService);
|
|
8
|
-
transform(error: {
|
|
9
|
-
key: string;
|
|
10
|
-
value: unknown;
|
|
11
|
-
}, item?: FormItemImpl<unknown>): unknown;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaGetFormControlErrorPipe, never>;
|
|
13
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<MtnaGetFormControlErrorPipe, "mtnaWfGetControlError">;
|
|
14
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class GetListIconPipe implements PipeTransform {
|
|
4
|
-
transform(header: string | null | undefined): string | null;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GetListIconPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<GetListIconPipe, "getListIcon">;
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class GetObjectTypePipe implements PipeTransform {
|
|
4
|
-
transform(id: string): string;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GetObjectTypePipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<GetObjectTypePipe, "getObjectType">;
|
|
7
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./coerce-date-item.pipe";
|
|
3
|
-
import * as i2 from "./date-quarter.pipe";
|
|
4
|
-
import * as i3 from "./get-auto-complete.pipe";
|
|
5
|
-
import * as i4 from "./get-list-icon.pipe";
|
|
6
|
-
import * as i5 from "./get-object-type.pipe";
|
|
7
|
-
import * as i6 from "./get-form-control-error.pipe";
|
|
8
|
-
import * as i7 from "./coerce-form-group.pipe";
|
|
9
|
-
import * as i8 from "./get-available-quarters.pipe";
|
|
10
|
-
import * as i9 from "./get-selected-option.pipe";
|
|
11
|
-
import * as i10 from "./items-with-value.pipe";
|
|
12
|
-
import * as i11 from "./sanitize-html.pipe";
|
|
13
|
-
export declare class PipesModule {
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PipesModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PipesModule, [typeof i1.CoerceDateItemPipe, typeof i2.DateQuarterPipe, typeof i3.GetAutoCompletePipe, typeof i4.GetListIconPipe, typeof i5.GetObjectTypePipe, typeof i6.MtnaGetFormControlErrorPipe, typeof i7.MtnaWfCoerceFormGroupPipe, typeof i8.MtnaWfGetAvailableQuartersPipe, typeof i9.MtnaWfGetSelectedOptionNamePipe, typeof i10.MtnaWfItemsWithValuePipe, typeof i11.MtnaWfSanitizeHtmlPipe], never, [typeof i1.CoerceDateItemPipe, typeof i2.DateQuarterPipe, typeof i3.GetAutoCompletePipe, typeof i4.GetListIconPipe, typeof i5.GetObjectTypePipe, typeof i6.MtnaGetFormControlErrorPipe, typeof i7.MtnaWfCoerceFormGroupPipe, typeof i8.MtnaWfGetAvailableQuartersPipe, typeof i9.MtnaWfGetSelectedOptionNamePipe, typeof i10.MtnaWfItemsWithValuePipe, typeof i11.MtnaWfSanitizeHtmlPipe]>;
|
|
16
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PipesModule>;
|
|
17
|
-
}
|
|
18
|
-
export * from './coerce-date-item.pipe';
|
|
19
|
-
export * from './coerce-form-group.pipe';
|
|
20
|
-
export * from './date-quarter.pipe';
|
|
21
|
-
export * from './get-auto-complete.pipe';
|
|
22
|
-
export * from './get-available-quarters.pipe';
|
|
23
|
-
export * from './get-form-control-error.pipe';
|
|
24
|
-
export * from './get-list-icon.pipe';
|
|
25
|
-
export * from './get-object-type.pipe';
|
|
26
|
-
export * from './get-selected-option.pipe';
|
|
27
|
-
export * from './items-with-value.pipe';
|
|
28
|
-
export * from './sanitize-html.pipe';
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import { FileInformation } from '@mtna/file-manager-ts';
|
|
3
|
-
import { FileService } from '@mtna/file-manager-angular';
|
|
4
|
-
import { AnnotationIndicatorStatus, IndicatorStatusRepeater } from '@mtna/pojo-social-angular';
|
|
5
|
-
import { FileUploadItem } from '@mtna/web-form-ts';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class MtnaWfFileUploadComponent implements IndicatorStatusRepeater, OnInit {
|
|
8
|
-
private fileService;
|
|
9
|
-
header: TemplateRef<unknown> | null;
|
|
10
|
-
indicatorStatus: AnnotationIndicatorStatus;
|
|
11
|
-
item: FileUploadItem | undefined | null;
|
|
12
|
-
readonly: boolean;
|
|
13
|
-
file: EventEmitter<FileInformation | undefined>;
|
|
14
|
-
fileInfo?: FileInformation;
|
|
15
|
-
loading: boolean;
|
|
16
|
-
constructor(fileService: FileService);
|
|
17
|
-
fileToUpload(file: FileList): void;
|
|
18
|
-
handleDownload(template: FileInformation): void;
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
removeFile(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfFileUploadComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MtnaWfFileUploadComponent, "mtna-wf-file-upload-item", never, { "header": "header"; "indicatorStatus": "indicatorStatus"; "item": "item"; "readonly": "readonly"; }, { "file": "file"; }, never, never>;
|
|
23
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "../item-header/item-header.component";
|
|
3
|
-
import * as i2 from "../groups/group-components";
|
|
4
|
-
import * as i3 from "../form-item-controls/date.component";
|
|
5
|
-
import * as i4 from "../form-item-controls/date-range.component";
|
|
6
|
-
import * as i5 from "../form-item-controls/dropdown.component";
|
|
7
|
-
import * as i6 from "../file-upload/file-upload.component";
|
|
8
|
-
import * as i7 from "./form.component";
|
|
9
|
-
import * as i8 from "./form-disabler.component";
|
|
10
|
-
import * as i9 from "./form-item.directive";
|
|
11
|
-
import * as i10 from "../form-item-controls/input.component";
|
|
12
|
-
import * as i11 from "../static-form-items/ordered-list-item";
|
|
13
|
-
import * as i12 from "../step-card/step-card.component";
|
|
14
|
-
import * as i13 from "../static-form-items/unordered-list-item";
|
|
15
|
-
import * as i14 from "../form-item-controls/year-quarter.component";
|
|
16
|
-
import * as i15 from "../form-item-controls/year-quarter-range.component";
|
|
17
|
-
import * as i16 from "../groups/repeatable-item.component";
|
|
18
|
-
import * as i17 from "@angular/cdk/a11y";
|
|
19
|
-
import * as i18 from "@angular/common";
|
|
20
|
-
import * as i19 from "@angular/flex-layout";
|
|
21
|
-
import * as i20 from "@angular/forms";
|
|
22
|
-
import * as i21 from "@angular/material/autocomplete";
|
|
23
|
-
import * as i22 from "@angular/material/button";
|
|
24
|
-
import * as i23 from "@angular/material/card";
|
|
25
|
-
import * as i24 from "@angular/material/checkbox";
|
|
26
|
-
import * as i25 from "@angular/material/chips";
|
|
27
|
-
import * as i26 from "@angular/material/datepicker";
|
|
28
|
-
import * as i27 from "@angular/material/dialog";
|
|
29
|
-
import * as i28 from "@angular/material/divider";
|
|
30
|
-
import * as i29 from "@angular/material/form-field";
|
|
31
|
-
import * as i30 from "@angular/material/icon";
|
|
32
|
-
import * as i31 from "@angular/material/input";
|
|
33
|
-
import * as i32 from "@angular/material/list";
|
|
34
|
-
import * as i33 from "@angular/material-moment-adapter";
|
|
35
|
-
import * as i34 from "@angular/material/core";
|
|
36
|
-
import * as i35 from "@angular/material/progress-spinner";
|
|
37
|
-
import * as i36 from "@angular/material/radio";
|
|
38
|
-
import * as i37 from "@angular/material/select";
|
|
39
|
-
import * as i38 from "@angular/material/slide-toggle";
|
|
40
|
-
import * as i39 from "@angular/material/table";
|
|
41
|
-
import * as i40 from "@angular/material/tooltip";
|
|
42
|
-
import * as i41 from "@mtna/pojo-social-angular";
|
|
43
|
-
import * as i42 from "@mtna/file-manager-angular";
|
|
44
|
-
import * as i43 from "@mtna/core-angular";
|
|
45
|
-
import * as i44 from "../form-stepper/form-stepper.module";
|
|
46
|
-
import * as i45 from "../core/pipes/index";
|
|
47
|
-
import * as i46 from "../form-stepper/form-stepper.component";
|
|
48
|
-
export declare class MtnaFormModule {
|
|
49
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaFormModule, never>;
|
|
50
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaFormModule, [typeof i1.ItemHeaderComponent, typeof i2.MtnaWfAcknowledgeDialogComponent, typeof i2.MtnaWfBooleanComponent, typeof i2.MtnaWfCheckboxComponent, typeof i3.MtnaWfDateComponent, typeof i4.MtnaWfDateRangeComponent, typeof i5.MtnaWfDropdownComponent, typeof i6.MtnaWfFileUploadComponent, typeof i7.MtnaWfFormComponent, typeof i8.MtnaWfFormDisablerComponent, typeof i2.MtnaWfFormGroupComponent, typeof i2.MtnaWfFormItemComponent, typeof i2.MtnaWfFormItemDialogComponent, typeof i9.MtnaWfFormItemDirective, typeof i2.MtnaWfFormSectionComponent, typeof i10.MtnaWfInputComponent, typeof i2.MtnaWfMultipleChoiceComponent, typeof i11.MtnaWfOrderedListItemComponent, typeof i12.MtnaWfStepCardComponent, typeof i2.MtnaWfTableFormItemComponent, typeof i13.MtnaWfUnorderedListItemComponent, typeof i14.MtnaWfYearQuarterComponent, typeof i15.MtnaWfYearQuarterRangeComponent, typeof i16.RepeatableItemComponent, typeof i2.RepeatableItemContainerComponent, typeof i2.ValueItemComponent], [typeof i17.A11yModule, typeof i18.CommonModule, typeof i19.FlexLayoutModule, typeof i20.FormsModule, typeof i21.MatAutocompleteModule, typeof i22.MatButtonModule, typeof i23.MatCardModule, typeof i24.MatCheckboxModule, typeof i25.MatChipsModule, typeof i26.MatDatepickerModule, typeof i27.MatDialogModule, typeof i28.MatDividerModule, typeof i29.MatFormFieldModule, typeof i30.MatIconModule, typeof i31.MatInputModule, typeof i32.MatListModule, typeof i33.MatMomentDateModule, typeof i34.MatOptionModule, typeof i35.MatProgressSpinnerModule, typeof i36.MatRadioModule, typeof i34.MatRippleModule, typeof i37.MatSelectModule, typeof i38.MatSlideToggleModule, typeof i39.MatTableModule, typeof i40.MatTooltipModule, typeof i41.MtnaAnnotationsIndicatorModule, typeof i42.MtnaFileDownloadModule, typeof i42.MtnaFileUploadModule, typeof i43.MtnaHighlightModule, typeof i43.MtnaStatusCircleModule, typeof i43.MtnaStatusCircleModule, typeof i43.MtnaTrackByPropertyPipeModule, typeof i44.MtnaWfFormStepperModule, typeof i45.PipesModule, typeof i20.ReactiveFormsModule], [typeof i12.MtnaWfStepCardComponent, typeof i46.MtnaWfFormStepperComponent, typeof i7.MtnaWfFormComponent, typeof i45.PipesModule]>;
|
|
51
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MtnaFormModule>;
|
|
52
|
-
}
|
package/lib/form/index.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export * from './base-form-item-control.directive';
|
|
2
|
-
export * from './date.component';
|
|
3
|
-
export * from './date-range.component';
|
|
4
|
-
export * from './dropdown.component';
|
|
5
|
-
export * from './input.component';
|
|
6
|
-
export * from './year-quarter.component';
|
|
7
|
-
export * from './year-quarter-range.component';
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./form-step.component";
|
|
3
|
-
import * as i2 from "./form-step-group.component";
|
|
4
|
-
import * as i3 from "./form-step-group.pipe";
|
|
5
|
-
import * as i4 from "./form-stepper.component";
|
|
6
|
-
import * as i5 from "@angular/common";
|
|
7
|
-
import * as i6 from "@angular/flex-layout";
|
|
8
|
-
import * as i7 from "@angular/material/divider";
|
|
9
|
-
import * as i8 from "@mtna/core-angular";
|
|
10
|
-
import * as i9 from "@angular/material/core";
|
|
11
|
-
import * as i10 from "@angular/material/button";
|
|
12
|
-
import * as i11 from "@angular/material/tooltip";
|
|
13
|
-
import * as i12 from "@angular/material/icon";
|
|
14
|
-
export declare class MtnaWfFormStepperModule {
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MtnaWfFormStepperModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtnaWfFormStepperModule, [typeof i1.MtnaWfFormStepComponent, typeof i2.MtnaWfFormStepGroupComponent, typeof i3.MtnaWfFormStepGroupPipe, typeof i4.MtnaWfFormStepperComponent], [typeof i5.CommonModule, typeof i6.FlexLayoutModule, typeof i7.MatDividerModule, typeof i8.MtnaStatusCircleModule, typeof i9.MatRippleModule, typeof i10.MatButtonModule, typeof i11.MatTooltipModule, typeof i12.MatIconModule], [typeof i1.MtnaWfFormStepComponent, typeof i2.MtnaWfFormStepGroupComponent, typeof i3.MtnaWfFormStepGroupPipe, typeof i4.MtnaWfFormStepperComponent]>;
|
|
17
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MtnaWfFormStepperModule>;
|
|
18
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export * from './form-step-group.component';
|
|
2
|
-
export * from './form-step-group.pipe';
|
|
3
|
-
export * from './form-step.component';
|
|
4
|
-
export * from './form-step.util';
|
|
5
|
-
export * from './form-stepper.component';
|
|
6
|
-
export * from './form-stepper.module';
|
|
7
|
-
export * from './models/index';
|