@ampath-kenya/ngx-openmrs-formentry 3.0.0-alpha9 → 3.0.0-ampath.1-beta.0
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/abstract-controls-extension/afe-control-type.d.ts +1 -1
- package/abstract-controls-extension/afe-form-array.d.ts +2 -3
- package/abstract-controls-extension/afe-form-control.d.ts +1 -1
- package/abstract-controls-extension/afe-form-group.d.ts +1 -1
- package/ampath-kenya-ngx-openmrs-formentry.d.ts +48 -74
- package/ampath-kenya-ngx-openmrs-formentry.metadata.json +1 -1
- package/bundles/ampath-kenya-ngx-openmrs-formentry.umd.js +5729 -9376
- package/bundles/ampath-kenya-ngx-openmrs-formentry.umd.js.map +1 -1
- package/bundles/ampath-kenya-ngx-openmrs-formentry.umd.min.js +1 -16
- package/bundles/ampath-kenya-ngx-openmrs-formentry.umd.min.js.map +1 -1
- package/change-tracking/control-relation.d.ts +4 -4
- package/change-tracking/control-relations.d.ts +3 -3
- package/components/check-box/checkbox.component.d.ts +1 -2
- package/components/date-time-picker/date-time-picker.component.d.ts +1 -2
- package/components/date-time-picker/date-time-picker.module.d.ts +0 -3
- package/components/file-upload/file-upload.component.d.ts +25 -0
- package/components/file-upload/file-upload.module.d.ts +2 -0
- package/components/file-upload/secure.pipe.d.ts +5 -5
- package/components/ngx-date-time-picker/ngx-date-time-picker.component.d.ts +52 -0
- package/components/{ngx-datetime-picker/ngx-datetime-picker.module.d.ts → ngx-date-time-picker/ngx-date-time-picker.module.d.ts} +0 -3
- package/components/ngx-time-picker/ngx-time-picker.component.d.ts +13 -0
- package/components/ngx-time-picker/ngx-time-picker.module.d.ts +2 -0
- package/components/{ngx-remote-select/ngx-remote-select.component.d.ts → remote-select/remote-select.component.d.ts} +8 -12
- package/components/remote-select/remote-select.module.d.ts +2 -0
- package/components/select/diacritics.d.ts +844 -0
- package/components/select/option-list.d.ts +36 -0
- package/components/select/option.d.ts +17 -0
- package/components/select/select-dropdown.component.d.ts +40 -0
- package/components/select/select-dropdown.component.style.d.ts +1 -0
- package/components/select/select.component.d.ts +96 -108
- package/components/select/select.component.style.d.ts +1 -0
- package/encounter-viewer/display-controls/file-preview.component.d.ts +25 -0
- package/encounter-viewer/display-controls/question-control.component.d.ts +15 -0
- package/encounter-viewer/display-controls/remote-answer.component.d.ts +17 -0
- package/encounter-viewer/encounter-container/encounter-container.component.d.ts +15 -0
- package/encounter-viewer/encounter-pdf-viewer.service.d.ts +27 -0
- package/encounter-viewer/encounter-view/encounter-viewer.component.d.ts +30 -0
- package/encounter-viewer/encounter-viewer.module.d.ts +2 -0
- package/encounter-viewer/encounter-viewer.service.d.ts +16 -0
- package/esm2015/abstract-controls-extension/afe-control-type.js +2 -1
- package/esm2015/abstract-controls-extension/afe-form-array.js +2 -1
- package/esm2015/abstract-controls-extension/afe-form-control.js +2 -1
- package/esm2015/abstract-controls-extension/afe-form-group.js +2 -1
- package/esm2015/abstract-controls-extension/control-extensions.js +2 -1
- package/esm2015/abstract-controls-extension/index.js +2 -1
- package/esm2015/abstract-controls-extension/value-change.listener.js +2 -2
- package/esm2015/ampath-kenya-ngx-openmrs-formentry.js +40 -65
- package/esm2015/change-tracking/control-relation.js +2 -1
- package/esm2015/change-tracking/control-relations.js +2 -1
- package/esm2015/components/afe-ng-select.component.js +3 -2
- package/esm2015/components/appointments-overview/appointments-overview.component.js +78 -33
- package/esm2015/components/check-box/checkbox.component.js +24 -3
- package/esm2015/components/check-box/checkbox.module.js +3 -2
- package/esm2015/components/date-time-picker/date-picker/date-picker.component.js +93 -4
- package/esm2015/components/date-time-picker/date-time-picker.component.js +109 -5
- package/esm2015/components/date-time-picker/date-time-picker.module.js +3 -2
- package/esm2015/components/date-time-picker/picker-modal/modal.component.js +13 -5
- package/esm2015/components/date-time-picker/pipes/moment.pipe.js +3 -2
- package/esm2015/components/date-time-picker/time-picker/time-picker.component.js +51 -4
- package/esm2015/components/file-upload/file-upload.component.js +130 -0
- package/esm2015/components/file-upload/file-upload.module.js +28 -0
- package/esm2015/components/file-upload/secure.pipe.js +5 -3
- package/esm2015/components/ngx-date-time-picker/ngx-date-time-picker.component.js +259 -0
- package/esm2015/components/ngx-date-time-picker/ngx-date-time-picker.module.js +43 -0
- package/esm2015/components/ngx-time-picker/ngx-time-picker.component.js +78 -0
- package/esm2015/components/ngx-time-picker/ngx-time-picker.module.js +16 -0
- package/esm2015/components/remote-select/remote-select.component.js +171 -0
- package/esm2015/components/remote-select/remote-select.module.js +18 -0
- package/esm2015/components/select/diacritics.js +856 -0
- package/esm2015/components/select/option-list.js +180 -0
- package/esm2015/components/select/option.js +30 -0
- package/esm2015/components/select/select-dropdown.component.js +162 -0
- package/esm2015/components/select/select-dropdown.component.style.js +59 -0
- package/esm2015/components/select/select.component.js +493 -216
- package/esm2015/components/select/select.component.style.js +102 -0
- package/esm2015/components/select/select.module.js +11 -24
- package/esm2015/encounter-viewer/display-controls/file-preview.component.js +111 -0
- package/esm2015/encounter-viewer/display-controls/question-control.component.js +94 -0
- package/esm2015/encounter-viewer/display-controls/remote-answer.component.js +81 -0
- package/esm2015/encounter-viewer/encounter-container/encounter-container.component.js +50 -0
- package/esm2015/encounter-viewer/encounter-pdf-viewer.service.js +437 -0
- package/esm2015/encounter-viewer/encounter-view/encounter-viewer.component.js +301 -0
- package/esm2015/encounter-viewer/encounter-viewer.module.js +36 -0
- package/esm2015/encounter-viewer/encounter-viewer.service.js +162 -0
- package/esm2015/form-entry/control-alerts/alert-helpers.js +2 -1
- package/esm2015/form-entry/control-alerts/can-generate-alert.js +2 -2
- package/esm2015/form-entry/control-calculators/can-calculate.js +2 -2
- package/esm2015/form-entry/control-hiders-disablers/can-disable.js +2 -2
- package/esm2015/form-entry/control-hiders-disablers/can-hide.js +2 -2
- package/esm2015/form-entry/control-hiders-disablers/disabler-helper.js +2 -1
- package/esm2015/form-entry/control-hiders-disablers/hider-helpers.js +2 -1
- package/esm2015/form-entry/data-sources/data-sources.js +5 -3
- package/esm2015/form-entry/data-sources/dummy-data-source.js +2 -1
- package/esm2015/form-entry/directives/historical-value-directive.js +4 -2
- package/esm2015/form-entry/error-renderer/error-renderer.component.js +20 -4
- package/esm2015/form-entry/expression-runner/expression-runner.js +13 -16
- package/esm2015/form-entry/form-entry.module.js +29 -25
- package/esm2015/form-entry/form-factory/control-relations.factory.js +4 -2
- package/esm2015/form-entry/form-factory/form-control.service.js +4 -2
- package/esm2015/form-entry/form-factory/form-node.js +2 -4
- package/esm2015/form-entry/form-factory/form.factory.js +4 -2
- package/esm2015/form-entry/form-factory/form.js +2 -1
- package/esm2015/form-entry/form-factory/hiders-disablers.factory.js +4 -2
- package/esm2015/form-entry/form-factory/question.factory.js +158 -23
- package/esm2015/form-entry/form-factory/show-messages.factory.js +4 -2
- package/esm2015/form-entry/form-factory/validation.factory.js +4 -2
- package/esm2015/form-entry/form-renderer/form-renderer.component.css.js +8 -12
- package/esm2015/form-entry/form-renderer/form-renderer.component.js +458 -9
- package/esm2015/form-entry/helpers/historical-expression-helper-service.js +4 -2
- package/esm2015/form-entry/helpers/historical-field-helper-service.js +2 -5
- package/esm2015/form-entry/helpers/js-expression-helper.js +2 -5
- package/esm2015/form-entry/question-models/checkbox.model.js +2 -1
- package/esm2015/form-entry/question-models/conditional-validation.model.js +2 -1
- package/esm2015/form-entry/question-models/date-question.js +3 -1
- package/esm2015/form-entry/question-models/date-validation.model.js +2 -1
- package/esm2015/form-entry/question-models/decimal-point-validation.model.js +20 -0
- package/esm2015/form-entry/question-models/file-upload-question.js +2 -1
- package/esm2015/form-entry/question-models/group-question.js +2 -1
- package/esm2015/form-entry/question-models/interfaces/base-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/checkbox-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/data-source.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/date-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/file-upload-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/group-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/multi-select-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/nested-questions.js +2 -1
- package/esm2015/form-entry/question-models/interfaces/repeating-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/select-option.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/select-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/test-order-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/text-area-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/text-question-options.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/time-question-options.js +2 -0
- package/esm2015/form-entry/question-models/interfaces/ui-select-question-options.js +2 -2
- package/esm2015/form-entry/question-models/js-expression-validation.model.js +2 -1
- package/esm2015/form-entry/question-models/max-validation.model.js +2 -1
- package/esm2015/form-entry/question-models/min-validation.model.js +2 -1
- package/esm2015/form-entry/question-models/models.js +2 -1
- package/esm2015/form-entry/question-models/multi-select-question.js +2 -1
- package/esm2015/form-entry/question-models/pair.model.js +2 -1
- package/esm2015/form-entry/question-models/question-base.js +2 -1
- package/esm2015/form-entry/question-models/rendering-type.js +2 -1
- package/esm2015/form-entry/question-models/repeating-question.js +2 -1
- package/esm2015/form-entry/question-models/select-option.js +2 -1
- package/esm2015/form-entry/question-models/select-question.js +2 -1
- package/esm2015/form-entry/question-models/test-order-question.js +2 -1
- package/esm2015/form-entry/question-models/text-area-input-question.js +2 -1
- package/esm2015/form-entry/question-models/text-input-question.js +2 -1
- package/esm2015/form-entry/question-models/time-question.js +11 -0
- package/esm2015/form-entry/question-models/ui-select-question.js +2 -1
- package/esm2015/form-entry/question-models/validation.model.js +2 -1
- package/esm2015/form-entry/services/debug-mode.service.js +4 -2
- package/esm2015/form-entry/services/form-errors.service.js +3 -2
- package/esm2015/form-entry/services/form-schema-compiler.service.js +4 -2
- package/esm2015/form-entry/services/historical-encounter-data.service.js +4 -2
- package/esm2015/form-entry/utils/messages.js +2 -1
- package/esm2015/form-entry/validators/conditional-answered.validator.js +2 -1
- package/esm2015/form-entry/validators/conditional-required.validator.js +2 -1
- package/esm2015/form-entry/validators/date.validator.js +2 -1
- package/esm2015/form-entry/validators/future-date-restriction.validator.js +2 -1
- package/esm2015/form-entry/validators/js-expression.validator.js +2 -1
- package/esm2015/form-entry/validators/max-date.validator.js +2 -1
- package/esm2015/form-entry/validators/max.validator.js +2 -1
- package/esm2015/form-entry/validators/min-date.validator.js +2 -1
- package/esm2015/form-entry/validators/min.validator.js +2 -1
- package/esm2015/form-entry/validators/required.validator.js +2 -1
- package/esm2015/form-entry/validators/validations.js +2 -1
- package/esm2015/form-entry/value-adapters/encounter.adapter.js +5 -3
- package/esm2015/form-entry/value-adapters/obs-adapter-helper.js +5 -11
- package/esm2015/form-entry/value-adapters/obs.adapter.js +5 -6
- package/esm2015/form-entry/value-adapters/order.adapter.js +3 -2
- package/esm2015/form-entry/value-adapters/person-attribute.adapter.js +8 -3
- package/esm2015/form-entry/value-adapters/value.adapter.js +2 -2
- package/esm2015/public_api.js +52 -2
- package/esm2015/shared.module.js +3 -2
- package/esm5/abstract-controls-extension/afe-control-type.js +9 -0
- package/esm5/abstract-controls-extension/afe-form-array.js +99 -0
- package/esm5/abstract-controls-extension/afe-form-control.js +97 -0
- package/esm5/abstract-controls-extension/afe-form-group.js +71 -0
- package/esm5/abstract-controls-extension/control-extensions.js +6 -0
- package/esm5/abstract-controls-extension/index.js +6 -0
- package/esm5/abstract-controls-extension/value-change.listener.js +2 -0
- package/esm5/ampath-kenya-ngx-openmrs-formentry.js +45 -0
- package/esm5/change-tracking/control-relation.js +60 -0
- package/esm5/change-tracking/control-relations.js +47 -0
- package/esm5/components/afe-ng-select.component.js +88 -0
- package/esm5/components/appointments-overview/appointments-overview.component.js +127 -0
- package/esm5/components/check-box/checkbox.component.js +89 -0
- package/esm5/components/check-box/checkbox.module.js +19 -0
- package/esm5/components/date-time-picker/date-picker/date-picker.component.js +188 -0
- package/esm5/components/date-time-picker/date-time-picker.component.js +113 -0
- package/esm5/components/date-time-picker/date-time-picker.module.js +39 -0
- package/esm5/components/date-time-picker/picker-modal/modal.component.js +34 -0
- package/esm5/components/date-time-picker/pipes/moment.pipe.js +18 -0
- package/esm5/components/date-time-picker/time-picker/time-picker.component.js +119 -0
- package/esm5/components/file-upload/file-upload.component.js +128 -0
- package/esm5/components/file-upload/file-upload.module.js +32 -0
- package/esm5/components/file-upload/secure.pipe.js +107 -0
- package/esm5/components/ngx-date-time-picker/ngx-date-time-picker.component.js +221 -0
- package/esm5/components/ngx-date-time-picker/ngx-date-time-picker.module.js +47 -0
- package/esm5/components/ngx-time-picker/ngx-time-picker.component.js +74 -0
- package/esm5/components/ngx-time-picker/ngx-time-picker.module.js +20 -0
- package/esm5/components/remote-select/remote-select.component.js +165 -0
- package/esm5/components/remote-select/remote-select.module.js +22 -0
- package/esm5/components/select/diacritics.js +861 -0
- package/esm5/components/select/option-list.js +225 -0
- package/esm5/components/select/option.js +32 -0
- package/esm5/components/select/select-dropdown.component.js +132 -0
- package/esm5/components/select/select-dropdown.component.style.js +3 -0
- package/esm5/components/select/select.component.js +457 -0
- package/esm5/components/select/select.component.style.js +3 -0
- package/esm5/components/select/select.module.js +20 -0
- package/esm5/encounter-viewer/display-controls/file-preview.component.js +111 -0
- package/esm5/encounter-viewer/display-controls/question-control.component.js +106 -0
- package/esm5/encounter-viewer/display-controls/remote-answer.component.js +88 -0
- package/esm5/encounter-viewer/encounter-container/encounter-container.component.js +47 -0
- package/esm5/encounter-viewer/encounter-pdf-viewer.service.js +523 -0
- package/esm5/encounter-viewer/encounter-view/encounter-viewer.component.js +187 -0
- package/esm5/encounter-viewer/encounter-viewer.module.js +40 -0
- package/esm5/encounter-viewer/encounter-viewer.service.js +167 -0
- package/esm5/form-entry/control-alerts/alert-helpers.js +45 -0
- package/esm5/form-entry/control-alerts/can-generate-alert.js +2 -0
- package/esm5/form-entry/control-calculators/can-calculate.js +2 -0
- package/esm5/form-entry/control-hiders-disablers/can-disable.js +2 -0
- package/esm5/form-entry/control-hiders-disablers/can-hide.js +2 -0
- package/esm5/form-entry/control-hiders-disablers/disabler-helper.js +38 -0
- package/esm5/form-entry/control-hiders-disablers/hider-helpers.js +45 -0
- package/esm5/form-entry/data-sources/data-sources.js +39 -0
- package/esm5/form-entry/data-sources/dummy-data-source.js +107 -0
- package/esm5/form-entry/directives/historical-value-directive.js +74 -0
- package/esm5/form-entry/error-renderer/error-renderer.component.js +64 -0
- package/esm5/form-entry/expression-runner/expression-runner.js +159 -0
- package/esm5/form-entry/form-entry.module.js +111 -0
- package/esm5/form-entry/form-factory/control-relations.factory.js +245 -0
- package/esm5/form-entry/form-factory/form-control.service.js +122 -0
- package/esm5/form-entry/form-factory/form-node.js +117 -0
- package/esm5/form-entry/form-factory/form.factory.js +138 -0
- package/esm5/form-entry/form-factory/form.js +214 -0
- package/esm5/form-entry/form-factory/hiders-disablers.factory.js +70 -0
- package/esm5/form-entry/form-factory/question.factory.js +980 -0
- package/esm5/form-entry/form-factory/show-messages.factory.js +34 -0
- package/esm5/form-entry/form-factory/validation.factory.js +191 -0
- package/esm5/form-entry/form-renderer/form-renderer.component.css.js +3 -0
- package/esm5/form-entry/form-renderer/form-renderer.component.js +219 -0
- package/esm5/form-entry/helpers/historical-expression-helper-service.js +43 -0
- package/esm5/form-entry/helpers/historical-field-helper-service.js +37 -0
- package/esm5/form-entry/helpers/js-expression-helper.js +243 -0
- package/esm5/form-entry/question-models/checkbox.model.js +17 -0
- package/esm5/form-entry/question-models/conditional-validation.model.js +15 -0
- package/esm5/form-entry/question-models/date-question.js +19 -0
- package/esm5/form-entry/question-models/date-validation.model.js +16 -0
- package/esm5/form-entry/question-models/decimal-point-validation.model.js +22 -0
- package/esm5/form-entry/question-models/file-upload-question.js +19 -0
- package/esm5/form-entry/question-models/group-question.js +18 -0
- package/esm5/form-entry/question-models/interfaces/base-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/checkbox-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/data-source.js +2 -0
- package/esm5/form-entry/question-models/interfaces/date-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/file-upload-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/group-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/multi-select-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/nested-questions.js +12 -0
- package/esm5/form-entry/question-models/interfaces/repeating-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/select-option.js +2 -0
- package/esm5/form-entry/question-models/interfaces/select-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/test-order-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/text-area-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/text-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/time-question-options.js +2 -0
- package/esm5/form-entry/question-models/interfaces/ui-select-question-options.js +2 -0
- package/esm5/form-entry/question-models/js-expression-validation.model.js +14 -0
- package/esm5/form-entry/question-models/max-validation.model.js +15 -0
- package/esm5/form-entry/question-models/min-validation.model.js +15 -0
- package/esm5/form-entry/question-models/models.js +13 -0
- package/esm5/form-entry/question-models/multi-select-question.js +17 -0
- package/esm5/form-entry/question-models/pair.model.js +10 -0
- package/esm5/form-entry/question-models/question-base.js +27 -0
- package/esm5/form-entry/question-models/rendering-type.js +10 -0
- package/esm5/form-entry/question-models/repeating-question.js +17 -0
- package/esm5/form-entry/question-models/select-option.js +10 -0
- package/esm5/form-entry/question-models/select-question.js +18 -0
- package/esm5/form-entry/question-models/test-order-question.js +21 -0
- package/esm5/form-entry/question-models/text-area-input-question.js +19 -0
- package/esm5/form-entry/question-models/text-input-question.js +16 -0
- package/esm5/form-entry/question-models/time-question.js +16 -0
- package/esm5/form-entry/question-models/ui-select-question.js +17 -0
- package/esm5/form-entry/question-models/validation.model.js +10 -0
- package/esm5/form-entry/services/debug-mode.service.js +26 -0
- package/esm5/form-entry/services/form-errors.service.js +21 -0
- package/esm5/form-entry/services/form-schema-compiler.service.js +254 -0
- package/esm5/form-entry/services/historical-encounter-data.service.js +180 -0
- package/esm5/form-entry/utils/messages.js +17 -0
- package/esm5/form-entry/validators/conditional-answered.validator.js +50 -0
- package/esm5/form-entry/validators/conditional-required.validator.js +44 -0
- package/esm5/form-entry/validators/date.validator.js +22 -0
- package/esm5/form-entry/validators/future-date-restriction.validator.js +25 -0
- package/esm5/form-entry/validators/js-expression.validator.js +30 -0
- package/esm5/form-entry/validators/max-date.validator.js +28 -0
- package/esm5/form-entry/validators/max.validator.js +22 -0
- package/esm5/form-entry/validators/min-date.validator.js +28 -0
- package/esm5/form-entry/validators/min.validator.js +22 -0
- package/esm5/form-entry/validators/required.validator.js +16 -0
- package/esm5/form-entry/validators/validations.js +9 -0
- package/esm5/form-entry/value-adapters/encounter.adapter.js +178 -0
- package/esm5/form-entry/value-adapters/obs-adapter-helper.js +509 -0
- package/esm5/form-entry/value-adapters/obs.adapter.js +737 -0
- package/esm5/form-entry/value-adapters/order.adapter.js +227 -0
- package/esm5/form-entry/value-adapters/person-attribute.adapter.js +96 -0
- package/esm5/form-entry/value-adapters/value.adapter.js +2 -0
- package/esm5/public_api.js +52 -0
- package/esm5/shared.module.js +20 -0
- package/fesm2015/ampath-kenya-ngx-openmrs-formentry.js +5093 -6889
- package/fesm2015/ampath-kenya-ngx-openmrs-formentry.js.map +1 -1
- package/fesm5/ampath-kenya-ngx-openmrs-formentry.js +10737 -0
- package/fesm5/ampath-kenya-ngx-openmrs-formentry.js.map +1 -0
- package/form-entry/data-sources/data-sources.d.ts +1 -1
- package/form-entry/directives/historical-value-directive.d.ts +2 -2
- package/form-entry/error-renderer/error-renderer.component.d.ts +1 -1
- package/form-entry/expression-runner/expression-runner.d.ts +6 -6
- package/form-entry/form-factory/form-control.service.d.ts +3 -3
- package/form-entry/form-factory/form-node.d.ts +9 -10
- package/form-entry/form-factory/form.d.ts +6 -7
- package/form-entry/form-factory/question.factory.d.ts +7 -1
- package/form-entry/form-factory/validation.factory.d.ts +10 -10
- package/form-entry/form-renderer/form-renderer.component.css.d.ts +1 -1
- package/form-entry/form-renderer/form-renderer.component.d.ts +4 -6
- package/form-entry/helpers/js-expression-helper.d.ts +1 -1
- package/form-entry/question-models/date-question.d.ts +2 -0
- package/form-entry/question-models/decimal-point-validation.model.d.ts +10 -0
- package/form-entry/question-models/interfaces/base-options.d.ts +1 -0
- package/form-entry/question-models/interfaces/time-question-options.d.ts +3 -0
- package/form-entry/question-models/question-base.d.ts +4 -0
- package/form-entry/question-models/rendering-type.d.ts +1 -1
- package/form-entry/question-models/time-question.d.ts +5 -0
- package/form-entry/services/form-errors.service.d.ts +2 -1
- package/form-entry/services/form-schema-compiler.service.d.ts +16 -16
- package/form-entry/services/historical-encounter-data.service.d.ts +3 -3
- package/form-entry/utils/messages.d.ts +9 -9
- package/form-entry/value-adapters/encounter.adapter.d.ts +2 -2
- package/form-entry/value-adapters/order.adapter.d.ts +9 -9
- package/form-entry/value-adapters/person-attribute.adapter.d.ts +1 -1
- package/package.json +18 -16
- package/public_api.d.ts +50 -1
- package/components/input/input.directive.d.ts +0 -28
- package/components/input/input.module.d.ts +0 -2
- package/components/input/label.component.d.ts +0 -87
- package/components/input/text-area.directive.d.ts +0 -21
- package/components/ngx-datetime-picker/ngx-datetime-picker.component.d.ts +0 -13
- package/components/ngx-pick-datetime/lib/date-time/adapter/date-time-adapter.class.d.ts +0 -189
- package/components/ngx-pick-datetime/lib/date-time/adapter/date-time-format.class.d.ts +0 -15
- package/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time-adapter.class.d.ts +0 -73
- package/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time-format.class.d.ts +0 -5
- package/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time.module.d.ts +0 -7
- package/components/ngx-pick-datetime/lib/date-time/calendar-body.component.d.ts +0 -77
- package/components/ngx-pick-datetime/lib/date-time/calendar-month-view.component.d.ts +0 -139
- package/components/ngx-pick-datetime/lib/date-time/calendar-multi-year-view.component.d.ts +0 -109
- package/components/ngx-pick-datetime/lib/date-time/calendar-year-view.component.d.ts +0 -120
- package/components/ngx-pick-datetime/lib/date-time/calendar.component.d.ts +0 -141
- package/components/ngx-pick-datetime/lib/date-time/date-time-inline.component.d.ts +0 -90
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker-container.component.d.ts +0 -122
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker-input.directive.d.ts +0 -152
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker-intl.service.d.ts +0 -51
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker-trigger.directive.d.ts +0 -21
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker.animations.d.ts +0 -8
- package/components/ngx-pick-datetime/lib/date-time/date-time-picker.component.d.ts +0 -157
- package/components/ngx-pick-datetime/lib/date-time/date-time.class.d.ts +0 -86
- package/components/ngx-pick-datetime/lib/date-time/date-time.module.d.ts +0 -5
- package/components/ngx-pick-datetime/lib/date-time/numberedFixLen.pipe.d.ts +0 -7
- package/components/ngx-pick-datetime/lib/date-time/timer-box.component.d.ts +0 -35
- package/components/ngx-pick-datetime/lib/date-time/timer.component.d.ts +0 -129
- package/components/ngx-pick-datetime/lib/dialog/dialog-config.class.d.ts +0 -93
- package/components/ngx-pick-datetime/lib/dialog/dialog-container.component.d.ts +0 -56
- package/components/ngx-pick-datetime/lib/dialog/dialog-ref.class.d.ts +0 -49
- package/components/ngx-pick-datetime/lib/dialog/dialog.module.d.ts +0 -5
- package/components/ngx-pick-datetime/lib/dialog/dialog.service.d.ts +0 -70
- package/components/ngx-pick-datetime/lib/utils/index.d.ts +0 -4
- package/components/ngx-pick-datetime/lib/utils/object.utils.d.ts +0 -11
- package/components/ngx-remote-select/ngx-remote-select.module.d.ts +0 -2
- package/components/ngx-tabset/components/tab-set.d.ts +0 -15
- package/components/ngx-tabset/components/tab.d.ts +0 -10
- package/components/ngx-tabset/directives/hover-class.directive.d.ts +0 -8
- package/components/ngx-tabset/modules/ngx-tabset.module.d.ts +0 -11
- package/components/number-input/number-input.component.d.ts +0 -148
- package/components/number-input/number-input.module.d.ts +0 -2
- package/components/select/optgroup.directive.d.ts +0 -3
- package/components/select/option.directive.d.ts +0 -3
- package/esm2015/components/input/input.directive.js +0 -55
- package/esm2015/components/input/input.module.js +0 -29
- package/esm2015/components/input/label.component.js +0 -139
- package/esm2015/components/input/text-area.directive.js +0 -40
- package/esm2015/components/ngx-datetime-picker/ngx-datetime-picker.component.js +0 -52
- package/esm2015/components/ngx-datetime-picker/ngx-datetime-picker.module.js +0 -28
- package/esm2015/components/ngx-pick-datetime/lib/date-time/adapter/date-time-adapter.class.js +0 -115
- package/esm2015/components/ngx-pick-datetime/lib/date-time/adapter/date-time-format.class.js +0 -7
- package/esm2015/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time-adapter.class.js +0 -346
- package/esm2015/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time-format.class.js +0 -10
- package/esm2015/components/ngx-pick-datetime/lib/date-time/adapter/native-date-time.module.js +0 -30
- package/esm2015/components/ngx-pick-datetime/lib/date-time/calendar-body.component.js +0 -149
- package/esm2015/components/ngx-pick-datetime/lib/date-time/calendar-month-view.component.js +0 -432
- package/esm2015/components/ngx-pick-datetime/lib/date-time/calendar-multi-year-view.component.js +0 -353
- package/esm2015/components/ngx-pick-datetime/lib/date-time/calendar-year-view.component.js +0 -362
- package/esm2015/components/ngx-pick-datetime/lib/date-time/calendar.component.js +0 -337
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-inline.component.js +0 -252
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker-container.component.js +0 -379
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker-input.directive.js +0 -601
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker-intl.service.js +0 -60
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker-trigger.directive.js +0 -69
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker.animations.js +0 -21
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time-picker.component.js +0 -515
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time.class.js +0 -154
- package/esm2015/components/ngx-pick-datetime/lib/date-time/date-time.module.js +0 -63
- package/esm2015/components/ngx-pick-datetime/lib/date-time/numberedFixLen.pipe.js +0 -24
- package/esm2015/components/ngx-pick-datetime/lib/date-time/timer-box.component.js +0 -83
- package/esm2015/components/ngx-pick-datetime/lib/date-time/timer.component.js +0 -293
- package/esm2015/components/ngx-pick-datetime/lib/dialog/dialog-config.class.js +0 -56
- package/esm2015/components/ngx-pick-datetime/lib/dialog/dialog-container.component.js +0 -208
- package/esm2015/components/ngx-pick-datetime/lib/dialog/dialog-ref.class.js +0 -113
- package/esm2015/components/ngx-pick-datetime/lib/dialog/dialog.module.js +0 -29
- package/esm2015/components/ngx-pick-datetime/lib/dialog/dialog.service.js +0 -228
- package/esm2015/components/ngx-pick-datetime/lib/utils/index.js +0 -5
- package/esm2015/components/ngx-pick-datetime/lib/utils/object.utils.js +0 -26
- package/esm2015/components/ngx-remote-select/ngx-remote-select.component.js +0 -119
- package/esm2015/components/ngx-remote-select/ngx-remote-select.module.js +0 -18
- package/esm2015/components/ngx-tabset/components/tab-set.js +0 -67
- package/esm2015/components/ngx-tabset/components/tab.js +0 -38
- package/esm2015/components/ngx-tabset/directives/hover-class.directive.js +0 -26
- package/esm2015/components/ngx-tabset/modules/ngx-tabset.module.js +0 -40
- package/esm2015/components/number-input/number-input.component.js +0 -203
- package/esm2015/components/number-input/number-input.module.js +0 -15
- package/esm2015/components/select/optgroup.directive.js +0 -17
- package/esm2015/components/select/option.directive.js +0 -17
- package/esm2015/form-entry/directives/collapse-animations.js +0 -11
- package/esm2015/form-entry/directives/collapse.directive.js +0 -157
- package/esm2015/form-entry/pipes/time-ago.pipe.js +0 -107
- package/esm2015/lib/index.js +0 -49
- package/form-entry/directives/collapse-animations.d.ts +0 -4
- package/form-entry/directives/collapse.directive.d.ts +0 -42
- package/form-entry/pipes/time-ago.pipe.d.ts +0 -11
- package/lib/index.d.ts +0 -49
- package/styles/ngx-formentry.css +0 -317
- package/styles/picker.min.css +0 -1
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* dialog-config.class
|
|
3
|
-
*/
|
|
4
|
-
import { ViewContainerRef } from '@angular/core';
|
|
5
|
-
import { ScrollStrategy } from '@angular/cdk/overlay';
|
|
6
|
-
/** Possible overrides for a dialog's position. */
|
|
7
|
-
export interface DialogPosition {
|
|
8
|
-
/** Override for the dialog's top position. */
|
|
9
|
-
top?: string;
|
|
10
|
-
/** Override for the dialog's bottom position. */
|
|
11
|
-
bottom?: string;
|
|
12
|
-
/** Override for the dialog's left position. */
|
|
13
|
-
left?: string;
|
|
14
|
-
/** Override for the dialog's right position. */
|
|
15
|
-
right?: string;
|
|
16
|
-
}
|
|
17
|
-
export declare class OwlDialogConfig {
|
|
18
|
-
/**
|
|
19
|
-
* ID of the element that describes the dialog.
|
|
20
|
-
*/
|
|
21
|
-
ariaDescribedBy?: string | null;
|
|
22
|
-
/**
|
|
23
|
-
* Whether to focus the dialog when the dialog is opened
|
|
24
|
-
*/
|
|
25
|
-
autoFocus?: boolean;
|
|
26
|
-
/** Whether the dialog has a backdrop. */
|
|
27
|
-
hasBackdrop?: boolean;
|
|
28
|
-
/**
|
|
29
|
-
* Custom style for the backdrop
|
|
30
|
-
* */
|
|
31
|
-
backdropStyle?: any;
|
|
32
|
-
/** Data being injected into the child component. */
|
|
33
|
-
data?: any;
|
|
34
|
-
/** Whether the user can use escape or clicking outside to close a modal. */
|
|
35
|
-
disableClose?: boolean;
|
|
36
|
-
/**
|
|
37
|
-
* ID for the modal. If omitted, a unique one will be generated.
|
|
38
|
-
*/
|
|
39
|
-
id?: string;
|
|
40
|
-
/**
|
|
41
|
-
* The ARIA role of the dialog element.
|
|
42
|
-
*/
|
|
43
|
-
role?: 'dialog' | 'alertdialog';
|
|
44
|
-
/**
|
|
45
|
-
* Custom class for the pane
|
|
46
|
-
* */
|
|
47
|
-
paneClass?: string | string[];
|
|
48
|
-
/**
|
|
49
|
-
* Mouse Event
|
|
50
|
-
* */
|
|
51
|
-
event?: MouseEvent;
|
|
52
|
-
/**
|
|
53
|
-
* Custom class for the backdrop
|
|
54
|
-
* */
|
|
55
|
-
backdropClass?: string | string[];
|
|
56
|
-
/**
|
|
57
|
-
* Whether the dialog should close when the user goes backwards/forwards in history.
|
|
58
|
-
* */
|
|
59
|
-
closeOnNavigation: boolean;
|
|
60
|
-
/** Width of the dialog. */
|
|
61
|
-
width: string;
|
|
62
|
-
/** Height of the dialog. */
|
|
63
|
-
height: string;
|
|
64
|
-
/**
|
|
65
|
-
* The min-width of the overlay panel.
|
|
66
|
-
* If a number is provided, pixel units are assumed.
|
|
67
|
-
* */
|
|
68
|
-
minWidth?: number | string;
|
|
69
|
-
/**
|
|
70
|
-
* The min-height of the overlay panel.
|
|
71
|
-
* If a number is provided, pixel units are assumed.
|
|
72
|
-
* */
|
|
73
|
-
minHeight?: number | string;
|
|
74
|
-
/**
|
|
75
|
-
* The max-width of the overlay panel.
|
|
76
|
-
* If a number is provided, pixel units are assumed.
|
|
77
|
-
* */
|
|
78
|
-
maxWidth?: number | string;
|
|
79
|
-
/**
|
|
80
|
-
* The max-height of the overlay panel.
|
|
81
|
-
* If a number is provided, pixel units are assumed.
|
|
82
|
-
* */
|
|
83
|
-
maxHeight?: number | string;
|
|
84
|
-
/** Position overrides. */
|
|
85
|
-
position?: DialogPosition;
|
|
86
|
-
/**
|
|
87
|
-
* The scroll strategy when the dialog is open
|
|
88
|
-
* Learn more this from https://material.angular.io/cdk/overlay/overview#scroll-strategies
|
|
89
|
-
* */
|
|
90
|
-
scrollStrategy?: ScrollStrategy;
|
|
91
|
-
viewContainerRef?: ViewContainerRef;
|
|
92
|
-
constructor();
|
|
93
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* dialog-container.component
|
|
3
|
-
*/
|
|
4
|
-
import { ChangeDetectorRef, ComponentRef, ElementRef, EmbeddedViewRef, EventEmitter, OnInit } from '@angular/core';
|
|
5
|
-
import { AnimationEvent } from '@angular/animations';
|
|
6
|
-
import { FocusTrapFactory } from '@angular/cdk/a11y';
|
|
7
|
-
import { BasePortalOutlet, CdkPortalOutlet, ComponentPortal, TemplatePortal } from '@angular/cdk/portal';
|
|
8
|
-
import { OwlDialogConfig } from './dialog-config.class';
|
|
9
|
-
export declare class OwlDialogContainerComponent extends BasePortalOutlet implements OnInit {
|
|
10
|
-
private changeDetector;
|
|
11
|
-
private elementRef;
|
|
12
|
-
private focusTrapFactory;
|
|
13
|
-
private document;
|
|
14
|
-
portalOutlet: CdkPortalOutlet;
|
|
15
|
-
/** The class that traps and manages focus within the dialog. */
|
|
16
|
-
private focusTrap;
|
|
17
|
-
/** ID of the element that should be considered as the dialog's label. */
|
|
18
|
-
ariaLabelledBy: string | null;
|
|
19
|
-
/** Emits when an animation state changes. */
|
|
20
|
-
animationStateChanged: EventEmitter<AnimationEvent>;
|
|
21
|
-
isAnimating: boolean;
|
|
22
|
-
private _config;
|
|
23
|
-
get config(): OwlDialogConfig;
|
|
24
|
-
private state;
|
|
25
|
-
private params;
|
|
26
|
-
private elementFocusedBeforeDialogWasOpened;
|
|
27
|
-
get owlDialogContainerClass(): boolean;
|
|
28
|
-
get owlDialogContainerTabIndex(): number;
|
|
29
|
-
get owlDialogContainerId(): string;
|
|
30
|
-
get owlDialogContainerRole(): string;
|
|
31
|
-
get owlDialogContainerAriaLabelledby(): string;
|
|
32
|
-
get owlDialogContainerAriaDescribedby(): string;
|
|
33
|
-
get owlDialogContainerAnimation(): any;
|
|
34
|
-
constructor(changeDetector: ChangeDetectorRef, elementRef: ElementRef, focusTrapFactory: FocusTrapFactory, document: any);
|
|
35
|
-
ngOnInit(): void;
|
|
36
|
-
/**
|
|
37
|
-
* Attach a ComponentPortal as content to this dialog container.
|
|
38
|
-
*/
|
|
39
|
-
attachComponentPortal<T>(portal: ComponentPortal<T>): ComponentRef<T>;
|
|
40
|
-
attachTemplatePortal<C>(portal: TemplatePortal<C>): EmbeddedViewRef<C>;
|
|
41
|
-
setConfig(config: OwlDialogConfig): void;
|
|
42
|
-
onAnimationStart(event: AnimationEvent): void;
|
|
43
|
-
onAnimationDone(event: AnimationEvent): void;
|
|
44
|
-
startExitAnimation(): void;
|
|
45
|
-
/**
|
|
46
|
-
* Calculate origin used in the `zoomFadeInFrom()`
|
|
47
|
-
* for animation purpose
|
|
48
|
-
*/
|
|
49
|
-
private calculateZoomOrigin;
|
|
50
|
-
/**
|
|
51
|
-
* Save the focused element before dialog was open
|
|
52
|
-
*/
|
|
53
|
-
private savePreviouslyFocusedElement;
|
|
54
|
-
private trapFocus;
|
|
55
|
-
private restoreFocus;
|
|
56
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { Location } from '@angular/common';
|
|
2
|
-
import { OverlayRef } from '@angular/cdk/overlay';
|
|
3
|
-
import { OwlDialogContainerComponent } from './dialog-container.component';
|
|
4
|
-
import { DialogPosition } from './dialog-config.class';
|
|
5
|
-
import { Observable } from 'rxjs';
|
|
6
|
-
export declare class OwlDialogRef<T> {
|
|
7
|
-
private overlayRef;
|
|
8
|
-
private container;
|
|
9
|
-
readonly id: string;
|
|
10
|
-
private result;
|
|
11
|
-
private _beforeClose$;
|
|
12
|
-
private _afterOpen$;
|
|
13
|
-
private _afterClosed$;
|
|
14
|
-
/** Subscription to changes in the user's location. */
|
|
15
|
-
private locationChanged;
|
|
16
|
-
/**
|
|
17
|
-
* The instance of component opened into modal
|
|
18
|
-
* */
|
|
19
|
-
componentInstance: T;
|
|
20
|
-
/** Whether the user is allowed to close the dialog. */
|
|
21
|
-
disableClose: boolean;
|
|
22
|
-
constructor(overlayRef: OverlayRef, container: OwlDialogContainerComponent, id: string, location?: Location);
|
|
23
|
-
close(dialogResult?: any): void;
|
|
24
|
-
/**
|
|
25
|
-
* Gets an observable that emits when the overlay's backdrop has been clicked.
|
|
26
|
-
*/
|
|
27
|
-
backdropClick(): Observable<any>;
|
|
28
|
-
/**
|
|
29
|
-
* Gets an observable that emits when keydown events are targeted on the overlay.
|
|
30
|
-
*/
|
|
31
|
-
keydownEvents(): Observable<KeyboardEvent>;
|
|
32
|
-
/**
|
|
33
|
-
* Updates the dialog's position.
|
|
34
|
-
* @param position New dialog position.
|
|
35
|
-
*/
|
|
36
|
-
updatePosition(position?: DialogPosition): this;
|
|
37
|
-
/**
|
|
38
|
-
* Updates the dialog's width and height.
|
|
39
|
-
* @param width New width of the dialog.
|
|
40
|
-
* @param height New height of the dialog.
|
|
41
|
-
*/
|
|
42
|
-
updateSize(width?: string, height?: string): this;
|
|
43
|
-
isAnimating(): boolean;
|
|
44
|
-
afterOpen(): Observable<any>;
|
|
45
|
-
beforeClose(): Observable<any>;
|
|
46
|
-
afterClosed(): Observable<any>;
|
|
47
|
-
/** Fetches the position strategy object from the overlay ref. */
|
|
48
|
-
private getPositionStrategy;
|
|
49
|
-
}
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* dialog.service
|
|
3
|
-
*/
|
|
4
|
-
import { InjectionToken, Injector, TemplateRef } from '@angular/core';
|
|
5
|
-
import { Location } from '@angular/common';
|
|
6
|
-
import { OwlDialogConfig } from './dialog-config.class';
|
|
7
|
-
import { OwlDialogRef } from './dialog-ref.class';
|
|
8
|
-
import { Observable, Subject } from 'rxjs';
|
|
9
|
-
import { Overlay, OverlayContainer, ScrollStrategy } from '@angular/cdk/overlay';
|
|
10
|
-
import { ComponentType } from '@angular/cdk/portal';
|
|
11
|
-
export declare const OWL_DIALOG_DATA: InjectionToken<any>;
|
|
12
|
-
/**
|
|
13
|
-
* Injection token that determines the scroll handling while the dialog is open.
|
|
14
|
-
* */
|
|
15
|
-
export declare const OWL_DIALOG_SCROLL_STRATEGY: InjectionToken<() => ScrollStrategy>;
|
|
16
|
-
export declare function OWL_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY(overlay: Overlay): () => ScrollStrategy;
|
|
17
|
-
/** @docs-private */
|
|
18
|
-
export declare const OWL_DIALOG_SCROLL_STRATEGY_PROVIDER: {
|
|
19
|
-
provide: InjectionToken<() => ScrollStrategy>;
|
|
20
|
-
deps: (typeof Overlay)[];
|
|
21
|
-
useFactory: typeof OWL_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY;
|
|
22
|
-
};
|
|
23
|
-
/** I
|
|
24
|
-
* njection token that can be used to specify default dialog options.
|
|
25
|
-
* */
|
|
26
|
-
export declare const OWL_DIALOG_DEFAULT_OPTIONS: InjectionToken<OwlDialogConfig>;
|
|
27
|
-
export declare class OwlDialogService {
|
|
28
|
-
private overlay;
|
|
29
|
-
private injector;
|
|
30
|
-
private location;
|
|
31
|
-
private defaultOptions;
|
|
32
|
-
private parentDialog;
|
|
33
|
-
private overlayContainer;
|
|
34
|
-
private ariaHiddenElements;
|
|
35
|
-
private _openDialogsAtThisLevel;
|
|
36
|
-
private _afterOpenAtThisLevel;
|
|
37
|
-
private _afterAllClosedAtThisLevel;
|
|
38
|
-
/** Keeps track of the currently-open dialogs. */
|
|
39
|
-
get openDialogs(): OwlDialogRef<any>[];
|
|
40
|
-
/** Stream that emits when a dialog has been opened. */
|
|
41
|
-
get afterOpen(): Subject<OwlDialogRef<any>>;
|
|
42
|
-
get _afterAllClosed(): any;
|
|
43
|
-
/**
|
|
44
|
-
* Stream that emits when all open dialog have finished closing.
|
|
45
|
-
* Will emit on subscribe if there are no open dialogs to begin with.
|
|
46
|
-
*/
|
|
47
|
-
afterAllClosed: Observable<{}>;
|
|
48
|
-
private scrollStrategy;
|
|
49
|
-
constructor(overlay: Overlay, injector: Injector, location: Location, scrollStrategy: any, defaultOptions: OwlDialogConfig, parentDialog: OwlDialogService, overlayContainer: OverlayContainer);
|
|
50
|
-
open<T>(componentOrTemplateRef: ComponentType<T> | TemplateRef<T>, config?: OwlDialogConfig): OwlDialogRef<any>;
|
|
51
|
-
/**
|
|
52
|
-
* Closes all of the currently-open dialogs.
|
|
53
|
-
*/
|
|
54
|
-
closeAll(): void;
|
|
55
|
-
/**
|
|
56
|
-
* Finds an open dialog by its id.
|
|
57
|
-
* @param id ID to use when looking up the dialog.
|
|
58
|
-
*/
|
|
59
|
-
getDialogById(id: string): OwlDialogRef<any> | undefined;
|
|
60
|
-
private attachDialogContent;
|
|
61
|
-
private createInjector;
|
|
62
|
-
private createOverlay;
|
|
63
|
-
private attachDialogContainer;
|
|
64
|
-
private getOverlayConfig;
|
|
65
|
-
private removeOpenDialog;
|
|
66
|
-
/**
|
|
67
|
-
* Hides all of the content that isn't an overlay from assistive technology.
|
|
68
|
-
*/
|
|
69
|
-
private hideNonDialogContentFromAssistiveTechnology;
|
|
70
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* object.utils
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* Extends an object with the *enumerable* and *own* properties of one or more source objects,
|
|
6
|
-
* similar to Object.assign.
|
|
7
|
-
*
|
|
8
|
-
* @param dest The object which will have properties copied to it.
|
|
9
|
-
* @param sources The source objects from which properties will be copied.
|
|
10
|
-
*/
|
|
11
|
-
export declare function extendObject(dest: any, ...sources: any[]): any;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { QueryList, AfterContentInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { TabComponent } from './tab';
|
|
3
|
-
export declare class TabsetComponent implements AfterContentInit, OnChanges {
|
|
4
|
-
tabs: QueryList<TabComponent>;
|
|
5
|
-
disableStyle: boolean;
|
|
6
|
-
customNavClass: String;
|
|
7
|
-
customTabsClass: String;
|
|
8
|
-
selectedIndex: Number;
|
|
9
|
-
onSelect: EventEmitter<any>;
|
|
10
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
-
ngAfterContentInit(): void;
|
|
12
|
-
onHover($event: any): void;
|
|
13
|
-
selectTab(tabToSelect: TabComponent): void;
|
|
14
|
-
getStatusClasses(active: any, disabled: any): "active" | "disabled" | "enabled";
|
|
15
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
-
export declare class NgxTabSetModule {
|
|
3
|
-
/**
|
|
4
|
-
* Use in AppModule: new instance of NgxTabset.
|
|
5
|
-
*/
|
|
6
|
-
static forRoot(): ModuleWithProviders<NgxTabSetModule>;
|
|
7
|
-
/**
|
|
8
|
-
* Use in features modules with lazy loading: new instance of NgxTabset.
|
|
9
|
-
*/
|
|
10
|
-
static forChild(): ModuleWithProviders<NgxTabSetModule>;
|
|
11
|
-
}
|
|
@@ -1,148 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
/**
|
|
4
|
-
* Used to emit changes performed on number input components.
|
|
5
|
-
*/
|
|
6
|
-
export declare class NumberChangeEvent {
|
|
7
|
-
/**
|
|
8
|
-
* Contains the `NumberInputComponent` that has been changed.
|
|
9
|
-
*/
|
|
10
|
-
source: NumberInputComponent;
|
|
11
|
-
/**
|
|
12
|
-
* The value of the `NumberInputComponent` field encompassed in the `NumberChange` class.
|
|
13
|
-
*/
|
|
14
|
-
value: number;
|
|
15
|
-
}
|
|
16
|
-
export declare class NumberInputComponent implements ControlValueAccessor {
|
|
17
|
-
/**
|
|
18
|
-
* Variable used for creating unique ids for number input components.
|
|
19
|
-
*/
|
|
20
|
-
static numberCount: number;
|
|
21
|
-
/**
|
|
22
|
-
* `light` or `dark` number input theme.
|
|
23
|
-
*/
|
|
24
|
-
theme: 'light' | 'dark';
|
|
25
|
-
/**
|
|
26
|
-
* Set to `true` for a disabled number input.
|
|
27
|
-
*/
|
|
28
|
-
disabled: boolean;
|
|
29
|
-
/**
|
|
30
|
-
* Set to `true` for a loading number component.
|
|
31
|
-
*/
|
|
32
|
-
skeleton: boolean;
|
|
33
|
-
/**
|
|
34
|
-
* Set to `true` for an invalid number component.
|
|
35
|
-
*/
|
|
36
|
-
invalid: boolean;
|
|
37
|
-
/**
|
|
38
|
-
* The unique id for the number component.
|
|
39
|
-
*/
|
|
40
|
-
id: string;
|
|
41
|
-
/**
|
|
42
|
-
* Number input field render size
|
|
43
|
-
*/
|
|
44
|
-
size: 'sm' | 'md' | 'xl';
|
|
45
|
-
/**
|
|
46
|
-
* Reflects the required attribute of the `input` element.
|
|
47
|
-
*/
|
|
48
|
-
required: boolean;
|
|
49
|
-
/**
|
|
50
|
-
* Sets the value attribute on the `input` element.
|
|
51
|
-
*/
|
|
52
|
-
set value(v: any);
|
|
53
|
-
get value(): any;
|
|
54
|
-
/**
|
|
55
|
-
* Sets the min attribute on the `input` element.
|
|
56
|
-
*/
|
|
57
|
-
min: any;
|
|
58
|
-
/**
|
|
59
|
-
* Sets the max attribute on the `input` element.
|
|
60
|
-
*/
|
|
61
|
-
max: any;
|
|
62
|
-
/**
|
|
63
|
-
* Sets the text inside the `label` tag.
|
|
64
|
-
*/
|
|
65
|
-
label: string | TemplateRef<any>;
|
|
66
|
-
/**
|
|
67
|
-
* Sets the optional helper text.
|
|
68
|
-
*/
|
|
69
|
-
helperText: string | TemplateRef<any>;
|
|
70
|
-
/**
|
|
71
|
-
* Sets the invalid text.
|
|
72
|
-
*/
|
|
73
|
-
invalidText: string | TemplateRef<any>;
|
|
74
|
-
/**
|
|
75
|
-
* Sets the amount the number controls increment and decrement by.
|
|
76
|
-
*/
|
|
77
|
-
step: number;
|
|
78
|
-
/**
|
|
79
|
-
* If `step` is a decimal, we may want precision to be set to go around floating point precision.
|
|
80
|
-
*/
|
|
81
|
-
precision: number;
|
|
82
|
-
/**
|
|
83
|
-
* Set to `true` to show a warning (contents set by warningText)
|
|
84
|
-
*/
|
|
85
|
-
warn: boolean;
|
|
86
|
-
/**
|
|
87
|
-
* Sets the warning text
|
|
88
|
-
*/
|
|
89
|
-
warnText: string | TemplateRef<any>;
|
|
90
|
-
/**
|
|
91
|
-
* Emits event notifying other classes when a change in state occurs in the input.
|
|
92
|
-
*/
|
|
93
|
-
change: EventEmitter<NumberChangeEvent>;
|
|
94
|
-
/**
|
|
95
|
-
* Sets the decrement label text
|
|
96
|
-
*/
|
|
97
|
-
decrementLabel: string;
|
|
98
|
-
/**
|
|
99
|
-
* Sets the increment label text
|
|
100
|
-
*/
|
|
101
|
-
incrementLabel: string;
|
|
102
|
-
protected _value: number;
|
|
103
|
-
/**
|
|
104
|
-
* Creates an instance of `Number`.
|
|
105
|
-
*/
|
|
106
|
-
constructor();
|
|
107
|
-
/**
|
|
108
|
-
* This is the initial value set to the component
|
|
109
|
-
* @param value The input value.
|
|
110
|
-
*/
|
|
111
|
-
writeValue(value: any): void;
|
|
112
|
-
/**
|
|
113
|
-
* Sets a method in order to propagate changes back to the form.
|
|
114
|
-
*/
|
|
115
|
-
registerOnChange(fn: any): void;
|
|
116
|
-
/**
|
|
117
|
-
* Registers a callback to be triggered when the control has been touched.
|
|
118
|
-
* @param fn Callback to be triggered when the number input is touched.
|
|
119
|
-
*/
|
|
120
|
-
registerOnTouched(fn: any): void;
|
|
121
|
-
focusOut(): void;
|
|
122
|
-
/**
|
|
123
|
-
* Sets the disabled state through the model
|
|
124
|
-
*/
|
|
125
|
-
setDisabledState(isDisabled: boolean): void;
|
|
126
|
-
/**
|
|
127
|
-
* Called when number input is blurred. Needed to properly implement `ControlValueAccessor`.
|
|
128
|
-
*/
|
|
129
|
-
onTouched: () => any;
|
|
130
|
-
/**
|
|
131
|
-
* Method set in `registerOnChange` to propagate changes back to the form.
|
|
132
|
-
*/
|
|
133
|
-
propagateChange: (_: any) => void;
|
|
134
|
-
/**
|
|
135
|
-
* Adds `step` to the current `value`.
|
|
136
|
-
*/
|
|
137
|
-
onIncrement(): void;
|
|
138
|
-
/**
|
|
139
|
-
* Subtracts `step` to the current `value`.
|
|
140
|
-
*/
|
|
141
|
-
onDecrement(): void;
|
|
142
|
-
/**
|
|
143
|
-
* Creates a class of `NumberChange` to emit the change in the `Number`.
|
|
144
|
-
*/
|
|
145
|
-
emitChangeEvent(): void;
|
|
146
|
-
onNumberInputChange(event: any): void;
|
|
147
|
-
isTemplate(value: any): boolean;
|
|
148
|
-
}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
/* tslint:disable:component-class-suffix directive-class-suffix */
|
|
2
|
-
import { Directive, HostBinding, Input } from "@angular/core";
|
|
3
|
-
/**
|
|
4
|
-
* A directive for applying styling to an input element.
|
|
5
|
-
*
|
|
6
|
-
* Example:
|
|
7
|
-
*
|
|
8
|
-
* ```html
|
|
9
|
-
* <input ibmText/>
|
|
10
|
-
* ```
|
|
11
|
-
*
|
|
12
|
-
* See the [vanilla carbon docs](http://www.carbondesignsystem.com/components/text-input/code) for more detail.
|
|
13
|
-
*/
|
|
14
|
-
export class TextInput {
|
|
15
|
-
constructor() {
|
|
16
|
-
/**
|
|
17
|
-
* `light` or `dark` input theme
|
|
18
|
-
*/
|
|
19
|
-
this.theme = "dark";
|
|
20
|
-
/**
|
|
21
|
-
* Input field render size
|
|
22
|
-
*/
|
|
23
|
-
this.size = "md";
|
|
24
|
-
this.inputClass = true;
|
|
25
|
-
this.invalid = false;
|
|
26
|
-
this.warn = false;
|
|
27
|
-
this.skeleton = false;
|
|
28
|
-
}
|
|
29
|
-
get isSizeXl() {
|
|
30
|
-
return this.size === "xl";
|
|
31
|
-
}
|
|
32
|
-
get isSizeSm() {
|
|
33
|
-
return this.size === "sm";
|
|
34
|
-
}
|
|
35
|
-
get isLightTheme() {
|
|
36
|
-
return this.theme === "light";
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
TextInput.decorators = [
|
|
40
|
-
{ type: Directive, args: [{
|
|
41
|
-
selector: "[ibmText]"
|
|
42
|
-
},] }
|
|
43
|
-
];
|
|
44
|
-
TextInput.propDecorators = {
|
|
45
|
-
theme: [{ type: Input }],
|
|
46
|
-
size: [{ type: Input }],
|
|
47
|
-
inputClass: [{ type: HostBinding, args: ["class.bx--text-input",] }],
|
|
48
|
-
isSizeXl: [{ type: HostBinding, args: ["class.bx--text-input--xl",] }],
|
|
49
|
-
isSizeSm: [{ type: HostBinding, args: ["class.bx--text-input--sm",] }],
|
|
50
|
-
invalid: [{ type: HostBinding, args: ["class.bx--text-input--invalid",] }, { type: Input }],
|
|
51
|
-
warn: [{ type: HostBinding, args: ["class.bx--text-input__field-wrapper--warning",] }, { type: Input }],
|
|
52
|
-
skeleton: [{ type: HostBinding, args: ["class.bx--skeleton",] }, { type: Input }],
|
|
53
|
-
isLightTheme: [{ type: HostBinding, args: ["class.bx--text-input--light",] }]
|
|
54
|
-
};
|
|
55
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LWZvcm1lbnRyeS9zcmMvY29tcG9uZW50cy9pbnB1dC9pbnB1dC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsbUVBQW1FO0FBQ25FLE9BQU8sRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUU5RDs7Ozs7Ozs7OztHQVVHO0FBSUgsTUFBTSxPQUFPLFNBQVM7SUFIdEI7UUFJSTs7V0FFRztRQUNNLFVBQUssR0FBcUIsTUFBTSxDQUFDO1FBRTFDOztXQUVHO1FBQ00sU0FBSSxHQUF1QixJQUFJLENBQUM7UUFFSixlQUFVLEdBQUcsSUFBSSxDQUFDO1FBT0EsWUFBTyxHQUFHLEtBQUssQ0FBQztRQUNELFNBQUksR0FBRyxLQUFLLENBQUM7UUFDdkMsYUFBUSxHQUFHLEtBQUssQ0FBQztJQUlqRSxDQUFDO0lBWkcsSUFBNkMsUUFBUTtRQUNqRCxPQUFPLElBQUksQ0FBQyxJQUFJLEtBQUssSUFBSSxDQUFDO0lBQzlCLENBQUM7SUFDRCxJQUE2QyxRQUFRO1FBQ2pELE9BQU8sSUFBSSxDQUFDLElBQUksS0FBSyxJQUFJLENBQUM7SUFDOUIsQ0FBQztJQUlELElBQWdELFlBQVk7UUFDeEQsT0FBTyxJQUFJLENBQUMsS0FBSyxLQUFLLE9BQU8sQ0FBQztJQUNsQyxDQUFDOzs7WUExQkosU0FBUyxTQUFDO2dCQUNQLFFBQVEsRUFBRSxXQUFXO2FBQ3hCOzs7b0JBS0ksS0FBSzttQkFLTCxLQUFLO3lCQUVMLFdBQVcsU0FBQyxzQkFBc0I7dUJBQ2xDLFdBQVcsU0FBQywwQkFBMEI7dUJBR3RDLFdBQVcsU0FBQywwQkFBMEI7c0JBR3RDLFdBQVcsU0FBQywrQkFBK0IsY0FBRyxLQUFLO21CQUNuRCxXQUFXLFNBQUMsOENBQThDLGNBQUcsS0FBSzt1QkFDbEUsV0FBVyxTQUFDLG9CQUFvQixjQUFHLEtBQUs7MkJBQ3hDLFdBQVcsU0FBQyw2QkFBNkIiLCJzb3VyY2VzQ29udGVudCI6WyIvKiB0c2xpbnQ6ZGlzYWJsZTpjb21wb25lbnQtY2xhc3Mtc3VmZml4ICBkaXJlY3RpdmUtY2xhc3Mtc3VmZml4ICovXG5pbXBvcnQgeyBEaXJlY3RpdmUsIEhvc3RCaW5kaW5nLCBJbnB1dCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XG5cbi8qKlxuICogQSBkaXJlY3RpdmUgZm9yIGFwcGx5aW5nIHN0eWxpbmcgdG8gYW4gaW5wdXQgZWxlbWVudC5cbiAqXG4gKiBFeGFtcGxlOlxuICpcbiAqIGBgYGh0bWxcbiAqIDxpbnB1dCBpYm1UZXh0Lz5cbiAqIGBgYFxuICpcbiAqIFNlZSB0aGUgW3ZhbmlsbGEgY2FyYm9uIGRvY3NdKGh0dHA6Ly93d3cuY2FyYm9uZGVzaWduc3lzdGVtLmNvbS9jb21wb25lbnRzL3RleHQtaW5wdXQvY29kZSkgZm9yIG1vcmUgZGV0YWlsLlxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogXCJbaWJtVGV4dF1cIlxufSlcbmV4cG9ydCBjbGFzcyBUZXh0SW5wdXQge1xuICAgIC8qKlxuICAgICAqIGBsaWdodGAgb3IgYGRhcmtgIGlucHV0IHRoZW1lXG4gICAgICovXG4gICAgQElucHV0KCkgdGhlbWU6IFwibGlnaHRcIiB8IFwiZGFya1wiID0gXCJkYXJrXCI7XG5cbiAgICAvKipcbiAgICAgKiBJbnB1dCBmaWVsZCByZW5kZXIgc2l6ZVxuICAgICAqL1xuICAgIEBJbnB1dCgpIHNpemU6IFwic21cIiB8IFwibWRcIiB8IFwieGxcIiA9IFwibWRcIjtcblxuICAgIEBIb3N0QmluZGluZyhcImNsYXNzLmJ4LS10ZXh0LWlucHV0XCIpIGlucHV0Q2xhc3MgPSB0cnVlO1xuICAgIEBIb3N0QmluZGluZyhcImNsYXNzLmJ4LS10ZXh0LWlucHV0LS14bFwiKSBnZXQgaXNTaXplWGwoKSB7XG4gICAgICAgIHJldHVybiB0aGlzLnNpemUgPT09IFwieGxcIjtcbiAgICB9XG4gICAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuYngtLXRleHQtaW5wdXQtLXNtXCIpIGdldCBpc1NpemVTbSgpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuc2l6ZSA9PT0gXCJzbVwiO1xuICAgIH1cbiAgICBASG9zdEJpbmRpbmcoXCJjbGFzcy5ieC0tdGV4dC1pbnB1dC0taW52YWxpZFwiKSBASW5wdXQoKSBpbnZhbGlkID0gZmFsc2U7XG4gICAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuYngtLXRleHQtaW5wdXRfX2ZpZWxkLXdyYXBwZXItLXdhcm5pbmdcIikgQElucHV0KCkgd2FybiA9IGZhbHNlO1xuICAgIEBIb3N0QmluZGluZyhcImNsYXNzLmJ4LS1za2VsZXRvblwiKSBASW5wdXQoKSBza2VsZXRvbiA9IGZhbHNlO1xuICAgIEBIb3N0QmluZGluZyhcImNsYXNzLmJ4LS10ZXh0LWlucHV0LS1saWdodFwiKSBnZXQgaXNMaWdodFRoZW1lKCkge1xuICAgICAgICByZXR1cm4gdGhpcy50aGVtZSA9PT0gXCJsaWdodFwiO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
// modules
|
|
2
|
-
import { NgModule } from "@angular/core";
|
|
3
|
-
import { FormsModule } from "@angular/forms";
|
|
4
|
-
import { CommonModule } from "@angular/common";
|
|
5
|
-
// imports
|
|
6
|
-
import { Label } from "./label.component";
|
|
7
|
-
import { TextInput } from "./input.directive";
|
|
8
|
-
import { TextArea } from "./text-area.directive";
|
|
9
|
-
export class InputModule {
|
|
10
|
-
}
|
|
11
|
-
InputModule.decorators = [
|
|
12
|
-
{ type: NgModule, args: [{
|
|
13
|
-
declarations: [
|
|
14
|
-
Label,
|
|
15
|
-
TextInput,
|
|
16
|
-
TextArea
|
|
17
|
-
],
|
|
18
|
-
exports: [
|
|
19
|
-
Label,
|
|
20
|
-
TextInput,
|
|
21
|
-
TextArea
|
|
22
|
-
],
|
|
23
|
-
imports: [
|
|
24
|
-
CommonModule,
|
|
25
|
-
FormsModule
|
|
26
|
-
]
|
|
27
|
-
},] }
|
|
28
|
-
];
|
|
29
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LWZvcm1lbnRyeS9zcmMvY29tcG9uZW50cy9pbnB1dC9pbnB1dC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsVUFBVTtBQUNWLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzdDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxVQUFVO0FBQ1YsT0FBTyxFQUFFLEtBQUssRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQzFDLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUM5QyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFrQmpELE1BQU0sT0FBTyxXQUFXOzs7WUFoQnZCLFFBQVEsU0FBQztnQkFDTixZQUFZLEVBQUU7b0JBQ1YsS0FBSztvQkFDTCxTQUFTO29CQUNULFFBQVE7aUJBQ1g7Z0JBQ0QsT0FBTyxFQUFFO29CQUNMLEtBQUs7b0JBQ0wsU0FBUztvQkFDVCxRQUFRO2lCQUNYO2dCQUNELE9BQU8sRUFBRTtvQkFDTCxZQUFZO29CQUNaLFdBQVc7aUJBQ2Q7YUFDSiIsInNvdXJjZXNDb250ZW50IjpbIi8vIG1vZHVsZXNcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcbmltcG9ydCB7IEZvcm1zTW9kdWxlIH0gZnJvbSBcIkBhbmd1bGFyL2Zvcm1zXCI7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tIFwiQGFuZ3VsYXIvY29tbW9uXCI7XG5cbi8vIGltcG9ydHNcbmltcG9ydCB7IExhYmVsIH0gZnJvbSBcIi4vbGFiZWwuY29tcG9uZW50XCI7XG5pbXBvcnQgeyBUZXh0SW5wdXQgfSBmcm9tIFwiLi9pbnB1dC5kaXJlY3RpdmVcIjtcbmltcG9ydCB7IFRleHRBcmVhIH0gZnJvbSBcIi4vdGV4dC1hcmVhLmRpcmVjdGl2ZVwiO1xuXG5ATmdNb2R1bGUoe1xuICAgIGRlY2xhcmF0aW9uczogW1xuICAgICAgICBMYWJlbCxcbiAgICAgICAgVGV4dElucHV0LFxuICAgICAgICBUZXh0QXJlYVxuICAgIF0sXG4gICAgZXhwb3J0czogW1xuICAgICAgICBMYWJlbCxcbiAgICAgICAgVGV4dElucHV0LFxuICAgICAgICBUZXh0QXJlYVxuICAgIF0sXG4gICAgaW1wb3J0czogW1xuICAgICAgICBDb21tb25Nb2R1bGUsXG4gICAgICAgIEZvcm1zTW9kdWxlXG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBJbnB1dE1vZHVsZSB7IH1cbiJdfQ==
|