@openmrs/ngx-formentry 3.0.1-pre.44 → 3.0.1-pre.50
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/bundles/openmrs-ngx-formentry.umd.js +221 -82
- package/bundles/openmrs-ngx-formentry.umd.js.map +1 -1
- package/components/radio-button/radio.component.d.ts +19 -0
- package/components/radio-button/radio.module.d.ts +9 -0
- package/esm2015/components/afe-ng-select.component.js +1 -4
- package/esm2015/components/ngx-tabset/components/ngx-tab-set.component.js +2 -4
- package/esm2015/components/radio-button/radio.component.js +84 -0
- package/esm2015/components/radio-button/radio.module.js +19 -0
- package/esm2015/form-entry/control-hiders-disablers/disabler-helper.js +1 -2
- package/esm2015/form-entry/data-sources/data-sources.js +1 -2
- package/esm2015/form-entry/form-entry.module.js +5 -1
- package/esm2015/form-entry/form-factory/question.factory.js +35 -2
- package/esm2015/form-entry/form-renderer/form-renderer.component.js +13 -12
- package/esm2015/form-entry/question-models/checkbox.model.js +2 -2
- package/esm2015/form-entry/question-models/interfaces/base-options.js +1 -1
- package/esm2015/form-entry/question-models/interfaces/radio-button-options.js +2 -0
- package/esm2015/form-entry/question-models/models.js +2 -1
- package/esm2015/form-entry/question-models/question-base.js +2 -1
- package/esm2015/form-entry/question-models/radio-button.model.js +12 -0
- package/esm2015/form-entry/services/form-schema-compiler.service.js +3 -3
- package/esm2015/form-entry/value-adapters/encounter.adapter.js +1 -2
- package/esm2015/form-entry/value-adapters/obs-adapter-helper.js +1 -2
- package/esm2015/form-entry/value-adapters/order.adapter.js +1 -3
- package/fesm2015/openmrs-ngx-formentry.js +150 -21
- package/fesm2015/openmrs-ngx-formentry.js.map +1 -1
- package/form-entry/form-entry.module.d.ts +7 -6
- package/form-entry/form-factory/question.factory.d.ts +2 -0
- package/form-entry/question-models/interfaces/base-options.d.ts +1 -0
- package/form-entry/question-models/interfaces/radio-button-options.d.ts +7 -0
- package/form-entry/question-models/models.d.ts +1 -0
- package/form-entry/question-models/question-base.d.ts +1 -0
- package/form-entry/question-models/radio-button.model.d.ts +9 -0
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('@angular/forms'), require('rxjs'), require('moment'), require('lodash'), require('@angular-extensions/elements'), require('ngx-file-uploader-openmrs'), require('@angular/platform-browser'), require('rxjs/operators'), require('@ng-select/ng-select'), require('@angular/cdk/portal'), require('@angular/cdk/overlay'), require('@angular/cdk/keycodes'), require('@angular/cdk/coercion'), require('@angular/cdk/a11y'), require('@angular/animations'), require('ngx-webcam'), require('@angular/cdk/platform')) :
|
|
3
3
|
typeof define === 'function' && define.amd ? define('@openmrs/ngx-formentry', ['exports', '@angular/core', '@angular/common', '@angular/forms', 'rxjs', 'moment', 'lodash', '@angular-extensions/elements', 'ngx-file-uploader-openmrs', '@angular/platform-browser', 'rxjs/operators', '@ng-select/ng-select', '@angular/cdk/portal', '@angular/cdk/overlay', '@angular/cdk/keycodes', '@angular/cdk/coercion', '@angular/cdk/a11y', '@angular/animations', 'ngx-webcam', '@angular/cdk/platform'], factory) :
|
|
4
4
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.openmrs = global.openmrs || {}, global.openmrs["ngx-formentry"] = {}), global.ng.core, global.ng.common, global.ng.forms, global.rxjs, global.moment, global.lodash, global["@angular-extensions/elements"], global["ngx-file-uploader-openmrs"], global.ng.platformBrowser, global.rxjs.operators, global["@ng-select/ng-select"], global.ng.cdk.portal, global.ng.cdk.overlay, global.ng.cdk.keycodes, global.ng.cdk.coercion, global.ng.cdk.a11y, global.ng.animations, global["ngx-webcam"], global.ng.cdk.platform));
|
|
5
|
-
})(this, (function (exports, i0, i1,
|
|
5
|
+
})(this, (function (exports, i0, i1, i20, rxjs, moment, _, i2, i1$2, i1$1, operators, i1$3, i2$1, i1$6, keycodes, coercion, i1$4, i1$5, ngxWebcam, i1$7) { 'use strict';
|
|
6
6
|
|
|
7
7
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
8
8
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
|
|
28
28
|
var i1__namespace = /*#__PURE__*/_interopNamespace(i1);
|
|
29
|
-
var
|
|
29
|
+
var i20__namespace = /*#__PURE__*/_interopNamespace(i20);
|
|
30
30
|
var moment__default = /*#__PURE__*/_interopDefaultLegacy(moment);
|
|
31
31
|
var ___namespace = /*#__PURE__*/_interopNamespace(_);
|
|
32
32
|
var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
@@ -605,7 +605,7 @@
|
|
|
605
605
|
configurable: true
|
|
606
606
|
});
|
|
607
607
|
ControlRelations.prototype.addRelatedControls = function (relatedTo) {
|
|
608
|
-
if (relatedTo instanceof
|
|
608
|
+
if (relatedTo instanceof i20.AbstractControl) {
|
|
609
609
|
this.relations.push(new ControlRelation(this._relationFor, relatedTo));
|
|
610
610
|
}
|
|
611
611
|
if (relatedTo instanceof Array) {
|
|
@@ -721,7 +721,6 @@
|
|
|
721
721
|
toDisable = true;
|
|
722
722
|
}
|
|
723
723
|
});
|
|
724
|
-
// console.log('Control', control);
|
|
725
724
|
if (toDisable) {
|
|
726
725
|
control.disable();
|
|
727
726
|
}
|
|
@@ -1401,7 +1400,7 @@
|
|
|
1401
1400
|
_super.prototype.setValue.call(this, value);
|
|
1402
1401
|
};
|
|
1403
1402
|
return AfeFormControl;
|
|
1404
|
-
}(
|
|
1403
|
+
}(i20.FormControl));
|
|
1405
1404
|
|
|
1406
1405
|
var AfeFormGroup = /** @class */ (function (_super) {
|
|
1407
1406
|
__extends(AfeFormGroup, _super);
|
|
@@ -1464,7 +1463,7 @@
|
|
|
1464
1463
|
_super.prototype.setValue.call(this, value);
|
|
1465
1464
|
};
|
|
1466
1465
|
return AfeFormGroup;
|
|
1467
|
-
}(
|
|
1466
|
+
}(i20.FormGroup));
|
|
1468
1467
|
|
|
1469
1468
|
var AfeFormArray = /** @class */ (function (_super) {
|
|
1470
1469
|
__extends(AfeFormArray, _super);
|
|
@@ -1555,7 +1554,7 @@
|
|
|
1555
1554
|
_super.prototype.setValue.call(this, value);
|
|
1556
1555
|
};
|
|
1557
1556
|
return AfeFormArray;
|
|
1558
|
-
}(
|
|
1557
|
+
}(i20.FormArray));
|
|
1559
1558
|
|
|
1560
1559
|
exports.AfeControlType = void 0;
|
|
1561
1560
|
(function (AfeControlType) {
|
|
@@ -1581,6 +1580,7 @@
|
|
|
1581
1580
|
this.alert = options.alert;
|
|
1582
1581
|
this.historicalDataValue = options.historicalDataValue;
|
|
1583
1582
|
this.calculateExpression = options.calculateExpression;
|
|
1583
|
+
this.allowRadioUnselect = options.allowRadioUnselect;
|
|
1584
1584
|
}
|
|
1585
1585
|
QuestionBase.prototype.setHistoricalValue = function (v) {
|
|
1586
1586
|
this.enableHistoricalValue = v;
|
|
@@ -2215,14 +2215,14 @@
|
|
|
2215
2215
|
});
|
|
2216
2216
|
Object.defineProperty(ValidationFactory.prototype, "minLengthValidator", {
|
|
2217
2217
|
get: function () {
|
|
2218
|
-
return
|
|
2218
|
+
return i20.Validators.minLength;
|
|
2219
2219
|
},
|
|
2220
2220
|
enumerable: false,
|
|
2221
2221
|
configurable: true
|
|
2222
2222
|
});
|
|
2223
2223
|
Object.defineProperty(ValidationFactory.prototype, "maxLengthValidator", {
|
|
2224
2224
|
get: function () {
|
|
2225
|
-
return
|
|
2225
|
+
return i20.Validators.maxLength;
|
|
2226
2226
|
},
|
|
2227
2227
|
enumerable: false,
|
|
2228
2228
|
configurable: true
|
|
@@ -2504,7 +2504,6 @@
|
|
|
2504
2504
|
if (unWrap) {
|
|
2505
2505
|
// eslint-disable-next-line guard-for-in
|
|
2506
2506
|
for (var o in dataSource) {
|
|
2507
|
-
// console.log('registering', o, dataSource[o]);
|
|
2508
2507
|
this.registerDataSource(o, dataSource[o], false);
|
|
2509
2508
|
}
|
|
2510
2509
|
}
|
|
@@ -2614,9 +2613,7 @@
|
|
|
2614
2613
|
}
|
|
2615
2614
|
});
|
|
2616
2615
|
};
|
|
2617
|
-
TabSetComponent.prototype.onHover = function ($event) {
|
|
2618
|
-
console.log($event);
|
|
2619
|
-
};
|
|
2616
|
+
TabSetComponent.prototype.onHover = function ($event) { };
|
|
2620
2617
|
TabSetComponent.prototype.selectTab = function (tabToSelect) {
|
|
2621
2618
|
if (tabToSelect.disabled === true || tabToSelect.active === true) {
|
|
2622
2619
|
return;
|
|
@@ -2732,7 +2729,7 @@
|
|
|
2732
2729
|
CustomControlWrapperComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CustomControlWrapperComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2733
2730
|
CustomControlWrapperComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: CustomControlWrapperComponent, selector: "app-custom-control-wrapper", inputs: { question: "question" }, providers: [
|
|
2734
2731
|
{
|
|
2735
|
-
provide:
|
|
2732
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
2736
2733
|
multi: true,
|
|
2737
2734
|
useExisting: i0.forwardRef(function () { return CustomControlWrapperComponent; })
|
|
2738
2735
|
}
|
|
@@ -2744,7 +2741,7 @@
|
|
|
2744
2741
|
templateUrl: 'custom-control-wrapper.component.html',
|
|
2745
2742
|
providers: [
|
|
2746
2743
|
{
|
|
2747
|
-
provide:
|
|
2744
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
2748
2745
|
multi: true,
|
|
2749
2746
|
useExisting: i0.forwardRef(function () { return CustomControlWrapperComponent; })
|
|
2750
2747
|
}
|
|
@@ -2886,7 +2883,7 @@
|
|
|
2886
2883
|
Select.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: Select, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2887
2884
|
Select.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: Select, selector: "ibm-select", inputs: { display: "display", label: "label", helperText: "helperText", invalidText: "invalidText", warn: "warn", warnText: "warnText", id: "id", size: "size", disabled: "disabled", skeleton: "skeleton", invalid: "invalid", theme: "theme", ariaLabel: "ariaLabel", value: "value" }, outputs: { valueChange: "valueChange" }, host: { listeners: { "focusout": "focusOut()" } }, providers: [
|
|
2888
2885
|
{
|
|
2889
|
-
provide:
|
|
2886
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
2890
2887
|
useExisting: Select,
|
|
2891
2888
|
multi: true
|
|
2892
2889
|
}
|
|
@@ -2901,7 +2898,7 @@
|
|
|
2901
2898
|
],
|
|
2902
2899
|
providers: [
|
|
2903
2900
|
{
|
|
2904
|
-
provide:
|
|
2901
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
2905
2902
|
useExisting: Select,
|
|
2906
2903
|
multi: true
|
|
2907
2904
|
}
|
|
@@ -3147,11 +3144,11 @@
|
|
|
3147
3144
|
FileUploadComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: FileUploadComponent, deps: [{ token: i0__namespace.Renderer2 }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
3148
3145
|
FileUploadComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: FileUploadComponent, selector: "app-file-upload", inputs: { dataSource: "dataSource" }, providers: [
|
|
3149
3146
|
{
|
|
3150
|
-
provide:
|
|
3147
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
3151
3148
|
useExisting: i0.forwardRef(function () { return FileUploadComponent; }),
|
|
3152
3149
|
multi: true
|
|
3153
3150
|
}
|
|
3154
|
-
], ngImport: i0__namespace, template: "<lib-ngx-file-uploader\n [srcUrl]=\"pdfUrl\"\n [formEntry]=\"formEntryMode\"\n [(ngModel)]=\"fileUuid\"\n (_onClear)=\"clearValue()\"\n (uploadData)=\"onFileChange($event)\"\n>\n</lib-ngx-file-uploader>\n<div *ngIf=\"fileUuid\">\n <img\n *ngIf=\"!pdfUploaded\"\n class=\"img-responsive\"\n [src]=\"fileUuid | secure: this.dataSource.fetchFile\"\n alt=\"\"\n />\n</div>\n", styles: ["\n img {\n margin-left: auto;\n margin-right: auto;\n display: block;\n }\n "], components: [{ type: i1__namespace$2.NgxFileUploaderComponent, selector: "lib-ngx-file-uploader", inputs: ["singleFile", "formEntry", "srcUrl", "source"], outputs: ["fileChanged", "uploadData", "_onClear"] }], directives: [{ type:
|
|
3151
|
+
], ngImport: i0__namespace, template: "<lib-ngx-file-uploader\n [srcUrl]=\"pdfUrl\"\n [formEntry]=\"formEntryMode\"\n [(ngModel)]=\"fileUuid\"\n (_onClear)=\"clearValue()\"\n (uploadData)=\"onFileChange($event)\"\n>\n</lib-ngx-file-uploader>\n<div *ngIf=\"fileUuid\">\n <img\n *ngIf=\"!pdfUploaded\"\n class=\"img-responsive\"\n [src]=\"fileUuid | secure: this.dataSource.fetchFile\"\n alt=\"\"\n />\n</div>\n", styles: ["\n img {\n margin-left: auto;\n margin-right: auto;\n display: block;\n }\n "], components: [{ type: i1__namespace$2.NgxFileUploaderComponent, selector: "lib-ngx-file-uploader", inputs: ["singleFile", "formEntry", "srcUrl", "source"], outputs: ["fileChanged", "uploadData", "_onClear"] }], directives: [{ type: i20__namespace.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i20__namespace.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "secure": SecurePipe } });
|
|
3155
3152
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: FileUploadComponent, decorators: [{
|
|
3156
3153
|
type: i0.Component,
|
|
3157
3154
|
args: [{
|
|
@@ -3159,7 +3156,7 @@
|
|
|
3159
3156
|
templateUrl: 'file-upload.component.html',
|
|
3160
3157
|
providers: [
|
|
3161
3158
|
{
|
|
3162
|
-
provide:
|
|
3159
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
3163
3160
|
useExisting: i0.forwardRef(function () { return FileUploadComponent; }),
|
|
3164
3161
|
multi: true
|
|
3165
3162
|
}
|
|
@@ -3275,11 +3272,11 @@
|
|
|
3275
3272
|
RemoteSelectComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RemoteSelectComponent, deps: [{ token: i0__namespace.Renderer2 }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
3276
3273
|
RemoteSelectComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: RemoteSelectComponent, selector: "ngx-remote-select", inputs: { placeholder: "placeholder", componentID: "componentID", disabled: "disabled", theme: "theme", dataSource: "dataSource" }, outputs: { done: "done" }, providers: [
|
|
3277
3274
|
{
|
|
3278
|
-
provide:
|
|
3275
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
3279
3276
|
useExisting: i0.forwardRef(function () { return RemoteSelectComponent; }),
|
|
3280
3277
|
multi: true
|
|
3281
3278
|
}
|
|
3282
|
-
], ngImport: i0__namespace, template: "<div>\n <ng-select\n [ngClass]=\"{ 'afe-custom': theme === 'light' }\"\n [disabled]=\"disabled\"\n [items]=\"remoteOptions$ | async\"\n bindLabel=\"label\"\n bindValue=\"value\"\n [multiple]=\"false\"\n [hideSelected]=\"true\"\n [compareWith]=\"compareItems\"\n [trackByFn]=\"trackByFn\"\n [loading]=\"loading\"\n typeToSearchText=\"Please enter 2 or more characters\"\n [typeahead]=\"remoteOptionInput$\"\n [(ngModel)]=\"selectedRemoteOptions\"\n (ngModelChange)=\"selected($event)\"\n >\n </ng-select>\n</div>\n", components: [{ type: i1__namespace$3.NgSelectComponent, selector: "ng-select", inputs: ["markFirst", "dropdownPosition", "loading", "closeOnSelect", "hideSelected", "selectOnTab", "bufferAmount", "selectableGroup", "selectableGroupAsModel", "searchFn", "trackByFn", "clearOnBackspace", "labelForId", "inputAttrs", "readonly", "searchWhileComposing", "minTermLength", "editableSearchTerm", "keyDownFn", "multiple", "addTag", "searchable", "clearable", "isOpen", "items", "compareWith", "clearSearchOnAdd", "bindLabel", "placeholder", "notFoundText", "typeToSearchText", "addTagText", "loadingText", "clearAllText", "virtualScroll", "openOnEnter", "appendTo", "bindValue", "appearance", "maxSelectedItems", "groupBy", "groupValue", "tabIndex", "typeahead"], outputs: ["blur", "focus", "change", "open", "close", "search", "clear", "add", "remove", "scroll", "scrollToEnd"] }], directives: [{ type: i1__namespace.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type:
|
|
3279
|
+
], ngImport: i0__namespace, template: "<div>\n <ng-select\n [ngClass]=\"{ 'afe-custom': theme === 'light' }\"\n [disabled]=\"disabled\"\n [items]=\"remoteOptions$ | async\"\n bindLabel=\"label\"\n bindValue=\"value\"\n [multiple]=\"false\"\n [hideSelected]=\"true\"\n [compareWith]=\"compareItems\"\n [trackByFn]=\"trackByFn\"\n [loading]=\"loading\"\n typeToSearchText=\"Please enter 2 or more characters\"\n [typeahead]=\"remoteOptionInput$\"\n [(ngModel)]=\"selectedRemoteOptions\"\n (ngModelChange)=\"selected($event)\"\n >\n </ng-select>\n</div>\n", components: [{ type: i1__namespace$3.NgSelectComponent, selector: "ng-select", inputs: ["markFirst", "dropdownPosition", "loading", "closeOnSelect", "hideSelected", "selectOnTab", "bufferAmount", "selectableGroup", "selectableGroupAsModel", "searchFn", "trackByFn", "clearOnBackspace", "labelForId", "inputAttrs", "readonly", "searchWhileComposing", "minTermLength", "editableSearchTerm", "keyDownFn", "multiple", "addTag", "searchable", "clearable", "isOpen", "items", "compareWith", "clearSearchOnAdd", "bindLabel", "placeholder", "notFoundText", "typeToSearchText", "addTagText", "loadingText", "clearAllText", "virtualScroll", "openOnEnter", "appendTo", "bindValue", "appearance", "maxSelectedItems", "groupBy", "groupValue", "tabIndex", "typeahead"], outputs: ["blur", "focus", "change", "open", "close", "search", "clear", "add", "remove", "scroll", "scrollToEnd"] }], directives: [{ type: i1__namespace.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i20__namespace.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i20__namespace.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], pipes: { "async": i1__namespace.AsyncPipe } });
|
|
3283
3280
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RemoteSelectComponent, decorators: [{
|
|
3284
3281
|
type: i0.Component,
|
|
3285
3282
|
args: [{
|
|
@@ -3287,7 +3284,7 @@
|
|
|
3287
3284
|
templateUrl: 'remote-select.component.html',
|
|
3288
3285
|
providers: [
|
|
3289
3286
|
{
|
|
3290
|
-
provide:
|
|
3287
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
3291
3288
|
useExisting: i0.forwardRef(function () { return RemoteSelectComponent; }),
|
|
3292
3289
|
multi: true
|
|
3293
3290
|
}
|
|
@@ -7892,12 +7889,12 @@
|
|
|
7892
7889
|
|
|
7893
7890
|
/* eslint-disable @angular-eslint/no-host-metadata-property */
|
|
7894
7891
|
var OWL_DATETIME_VALUE_ACCESSOR$1 = {
|
|
7895
|
-
provide:
|
|
7892
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
7896
7893
|
useExisting: i0.forwardRef(function () { return OwlDateTimeInputDirective; }),
|
|
7897
7894
|
multi: true
|
|
7898
7895
|
};
|
|
7899
7896
|
var OWL_DATETIME_VALIDATORS = {
|
|
7900
|
-
provide:
|
|
7897
|
+
provide: i20.NG_VALIDATORS,
|
|
7901
7898
|
useExisting: i0.forwardRef(function () { return OwlDateTimeInputDirective; }),
|
|
7902
7899
|
multi: true
|
|
7903
7900
|
};
|
|
@@ -8012,7 +8009,7 @@
|
|
|
8012
8009
|
: { owlDateTimeRange: true };
|
|
8013
8010
|
};
|
|
8014
8011
|
/** The combined form control validator for this input. */
|
|
8015
|
-
this.validator =
|
|
8012
|
+
this.validator = i20.Validators.compose([
|
|
8016
8013
|
this.parseValidator,
|
|
8017
8014
|
this.minValidator,
|
|
8018
8015
|
this.maxValidator,
|
|
@@ -8673,11 +8670,11 @@
|
|
|
8673
8670
|
NgxDatetimeComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NgxDatetimeComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
8674
8671
|
NgxDatetimeComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: NgxDatetimeComponent, selector: "ngx-datetimepicker", inputs: { id: "id", theme: "theme", datePickerFormat: "datePickerFormat", showWeeks: "showWeeks", weeks: "weeks" }, providers: [
|
|
8675
8672
|
{
|
|
8676
|
-
provide:
|
|
8673
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
8677
8674
|
useExisting: i0.forwardRef(function () { return NgxDatetimeComponent; }),
|
|
8678
8675
|
multi: true
|
|
8679
8676
|
}
|
|
8680
|
-
], ngImport: i0__namespace, template: "<div class=\"date-time-picker-container\">\n <div\n data-date-picker\n data-date-picker-type=\"single\"\n class=\"cds--date-picker cds--date-picker--single cds--date-picker--light\"\n [ngClass]=\"{\n 'cds--date-picker--light': theme === 'light'\n}\"\n >\n <div class=\"cds--date-picker-container fill\">\n <div class=\"cds--date-picker-input__wrapper\">\n <input\n [disabled]=\"isDisabled\"\n (dateTimeChange)=\"onInput($event)\"\n type=\"text\"\n class=\"cds--date-picker__input fill\"\n [id]=\"id\"\n [value]=\"value\"\n [owlDateTime]=\"dt1\"\n [owlDateTimeTrigger]=\"dt1\"\n placeholder=\"mm/dd/yyyy\"\n data-date-picker-input\n />\n <svg\n [owlDateTimeTrigger]=\"dt1\"\n focusable=\"false\"\n preserveAspectRatio=\"xMidYMid meet\"\n style=\"will-change: transform\"\n xmlns=\"http://www.w3.org/2000/svg\"\n data-date-picker-icon=\"true\"\n class=\"cds--date-picker__icon\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M13,2h-2V1h-1v1H6V1H5v1H3C2.4,2,2,2.4,2,3v10c0,0.6,0.4,1,1,1h10c0.6,0,1-0.4,1-1V3C14,2.4,13.6,2,13,2z M13,13H3V6h10V13z M13,5H3V3h2v1h1V3h4v1h1V3h2V5z\"\n ></path>\n </svg>\n </div>\n </div>\n </div>\n\n <div\n *ngIf=\"showWeeks\"\n class=\"cds--select some-class week-select-wrapper\"\n [ngClass]=\"{'cds--select--light': theme === 'light'}\"\n >\n <div class=\"cds--select-input__wrapper\">\n <select\n (change)=\"onWeeksSelected($event.target.value)\"\n id=\"select-1\"\n class=\"cds--select-input\"\n >\n <option\n class=\"cds--select-option\"\n value=\"placeholder-item\"\n disabled=\"\"\n hidden=\"\"\n selected=\"\"\n >\n Select Weeks\n </option>\n <option\n class=\"cds--select-option\"\n [value]=\"week\"\n *ngFor=\"let week of weeks\"\n >\n {{week}} Weeks\n </option>\n </select>\n <svg\n focusable=\"false\"\n preserveAspectRatio=\"xMidYMid meet\"\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n aria-hidden=\"true\"\n class=\"cds--select__arrow\"\n >\n <path d=\"M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z\"></path>\n </svg>\n </div>\n </div>\n</div>\n<owl-date-time\n [pickerType]=\"datePickerFormat ? datePickerFormat :'calendar'\"\n [disabled]=\"isDisabled\"\n #dt1\n></owl-date-time>\n", styles: [".date-time-picker-container{display:flex;justify-content:space-between}.week-select-wrapper{margin-left:1rem;width:30%}\n"], components: [{ type: OwlDateTimeComponent, selector: "owl-date-time", inputs: ["backdropClass", "panelClass", "startAt", "pickerType", "pickerMode", "disabled", "opened", "scrollStrategy"], outputs: ["afterPickerClosed", "afterPickerOpen", "yearSelected", "monthSelected"], exportAs: ["owlDateTime"] }], directives: [{ type: i1__namespace.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: OwlDateTimeInputDirective, selector: "input[owlDateTime]", inputs: ["owlDateTime", "owlDateTimeFilter", "min", "max", "selectMode", "value", "values", "_disabled", "rangeSeparator"], outputs: ["dateTimeChange", "dateTimeInput"], exportAs: ["owlDateTimeInput"] }, { type: OwlDateTimeTriggerDirective, selector: "[owlDateTimeTrigger]", inputs: ["owlDateTimeTrigger", "disabled"] }, { type: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type:
|
|
8677
|
+
], ngImport: i0__namespace, template: "<div class=\"date-time-picker-container\">\n <div\n data-date-picker\n data-date-picker-type=\"single\"\n class=\"cds--date-picker cds--date-picker--single cds--date-picker--light\"\n [ngClass]=\"{\n 'cds--date-picker--light': theme === 'light'\n}\"\n >\n <div class=\"cds--date-picker-container fill\">\n <div class=\"cds--date-picker-input__wrapper\">\n <input\n [disabled]=\"isDisabled\"\n (dateTimeChange)=\"onInput($event)\"\n type=\"text\"\n class=\"cds--date-picker__input fill\"\n [id]=\"id\"\n [value]=\"value\"\n [owlDateTime]=\"dt1\"\n [owlDateTimeTrigger]=\"dt1\"\n placeholder=\"mm/dd/yyyy\"\n data-date-picker-input\n />\n <svg\n [owlDateTimeTrigger]=\"dt1\"\n focusable=\"false\"\n preserveAspectRatio=\"xMidYMid meet\"\n style=\"will-change: transform\"\n xmlns=\"http://www.w3.org/2000/svg\"\n data-date-picker-icon=\"true\"\n class=\"cds--date-picker__icon\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M13,2h-2V1h-1v1H6V1H5v1H3C2.4,2,2,2.4,2,3v10c0,0.6,0.4,1,1,1h10c0.6,0,1-0.4,1-1V3C14,2.4,13.6,2,13,2z M13,13H3V6h10V13z M13,5H3V3h2v1h1V3h4v1h1V3h2V5z\"\n ></path>\n </svg>\n </div>\n </div>\n </div>\n\n <div\n *ngIf=\"showWeeks\"\n class=\"cds--select some-class week-select-wrapper\"\n [ngClass]=\"{'cds--select--light': theme === 'light'}\"\n >\n <div class=\"cds--select-input__wrapper\">\n <select\n (change)=\"onWeeksSelected($event.target.value)\"\n id=\"select-1\"\n class=\"cds--select-input\"\n >\n <option\n class=\"cds--select-option\"\n value=\"placeholder-item\"\n disabled=\"\"\n hidden=\"\"\n selected=\"\"\n >\n Select Weeks\n </option>\n <option\n class=\"cds--select-option\"\n [value]=\"week\"\n *ngFor=\"let week of weeks\"\n >\n {{week}} Weeks\n </option>\n </select>\n <svg\n focusable=\"false\"\n preserveAspectRatio=\"xMidYMid meet\"\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n aria-hidden=\"true\"\n class=\"cds--select__arrow\"\n >\n <path d=\"M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z\"></path>\n </svg>\n </div>\n </div>\n</div>\n<owl-date-time\n [pickerType]=\"datePickerFormat ? datePickerFormat :'calendar'\"\n [disabled]=\"isDisabled\"\n #dt1\n></owl-date-time>\n", styles: [".date-time-picker-container{display:flex;justify-content:space-between}.week-select-wrapper{margin-left:1rem;width:30%}\n"], components: [{ type: OwlDateTimeComponent, selector: "owl-date-time", inputs: ["backdropClass", "panelClass", "startAt", "pickerType", "pickerMode", "disabled", "opened", "scrollStrategy"], outputs: ["afterPickerClosed", "afterPickerOpen", "yearSelected", "monthSelected"], exportAs: ["owlDateTime"] }], directives: [{ type: i1__namespace.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: OwlDateTimeInputDirective, selector: "input[owlDateTime]", inputs: ["owlDateTime", "owlDateTimeFilter", "min", "max", "selectMode", "value", "values", "_disabled", "rangeSeparator"], outputs: ["dateTimeChange", "dateTimeInput"], exportAs: ["owlDateTimeInput"] }, { type: OwlDateTimeTriggerDirective, selector: "[owlDateTimeTrigger]", inputs: ["owlDateTimeTrigger", "disabled"] }, { type: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i20__namespace.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { type: i20__namespace.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { type: i1__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
8681
8678
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NgxDatetimeComponent, decorators: [{
|
|
8682
8679
|
type: i0.Component,
|
|
8683
8680
|
args: [{
|
|
@@ -8686,7 +8683,7 @@
|
|
|
8686
8683
|
styleUrls: ['./ngx-datetime-picker.css'],
|
|
8687
8684
|
providers: [
|
|
8688
8685
|
{
|
|
8689
|
-
provide:
|
|
8686
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
8690
8687
|
useExisting: i0.forwardRef(function () { return NgxDatetimeComponent; }),
|
|
8691
8688
|
multi: true
|
|
8692
8689
|
}
|
|
@@ -8878,7 +8875,7 @@
|
|
|
8878
8875
|
NumberInputComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NumberInputComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
8879
8876
|
NumberInputComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: NumberInputComponent, selector: "number-input", inputs: { theme: "theme", disabled: "disabled", skeleton: "skeleton", invalid: "invalid", id: "id", size: "size", required: "required", value: "value", min: "min", max: "max", label: "label", helperText: "helperText", invalidText: "invalidText", step: "step", precision: "precision", warn: "warn", warnText: "warnText", decrementLabel: "decrementLabel", incrementLabel: "incrementLabel" }, outputs: { change: "change" }, host: { listeners: { "focusout": "focusOut()" } }, providers: [
|
|
8880
8877
|
{
|
|
8881
|
-
provide:
|
|
8878
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
8882
8879
|
useExisting: i0.forwardRef(function () { return NumberInputComponent; }),
|
|
8883
8880
|
multi: true
|
|
8884
8881
|
}
|
|
@@ -8890,7 +8887,7 @@
|
|
|
8890
8887
|
templateUrl: 'number-input.component.html',
|
|
8891
8888
|
providers: [
|
|
8892
8889
|
{
|
|
8893
|
-
provide:
|
|
8890
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
8894
8891
|
useExisting: i0.forwardRef(function () { return NumberInputComponent; }),
|
|
8895
8892
|
multi: true
|
|
8896
8893
|
}
|
|
@@ -8941,6 +8938,90 @@
|
|
|
8941
8938
|
args: ['focusout']
|
|
8942
8939
|
}] } });
|
|
8943
8940
|
|
|
8941
|
+
var RadioButtonControlComponent = /** @class */ (function () {
|
|
8942
|
+
function RadioButtonControlComponent() {
|
|
8943
|
+
this.onChange = function (change) { };
|
|
8944
|
+
this.onTouched = function () { };
|
|
8945
|
+
}
|
|
8946
|
+
RadioButtonControlComponent.prototype.ngOnInit = function () {
|
|
8947
|
+
var _this = this;
|
|
8948
|
+
this.options = this.options.map(function (option) {
|
|
8949
|
+
if (_this.selected == option.value) {
|
|
8950
|
+
_this.selected = option.value;
|
|
8951
|
+
Object.assign(option, { checked: true });
|
|
8952
|
+
}
|
|
8953
|
+
return option;
|
|
8954
|
+
});
|
|
8955
|
+
};
|
|
8956
|
+
RadioButtonControlComponent.prototype.ngAfterViewInit = function () { };
|
|
8957
|
+
RadioButtonControlComponent.prototype.writeValue = function (value) { };
|
|
8958
|
+
RadioButtonControlComponent.prototype.registerOnChange = function (fn) {
|
|
8959
|
+
this.onChange = fn;
|
|
8960
|
+
};
|
|
8961
|
+
RadioButtonControlComponent.prototype.registerOnTouched = function (fn) {
|
|
8962
|
+
this.onTouched = fn;
|
|
8963
|
+
};
|
|
8964
|
+
RadioButtonControlComponent.prototype.selectOpt = function (option, event) {
|
|
8965
|
+
var _this = this;
|
|
8966
|
+
this.options.forEach(function (o) {
|
|
8967
|
+
if (event.target.checked && o.value == option.value) {
|
|
8968
|
+
_this.selected = o.value;
|
|
8969
|
+
Object.assign(o, { checked: true });
|
|
8970
|
+
}
|
|
8971
|
+
else {
|
|
8972
|
+
_this.selected = null;
|
|
8973
|
+
Object.assign(o, { checked: false });
|
|
8974
|
+
}
|
|
8975
|
+
});
|
|
8976
|
+
};
|
|
8977
|
+
RadioButtonControlComponent.prototype.selectUnselectOpt = function (option, event) {
|
|
8978
|
+
var _this = this;
|
|
8979
|
+
this.options.forEach(function (o) {
|
|
8980
|
+
if (event.target.checked &&
|
|
8981
|
+
_this.selected == o.value &&
|
|
8982
|
+
_this.selected == option.value) {
|
|
8983
|
+
_this.selected = null;
|
|
8984
|
+
Object.assign(o, { checked: false });
|
|
8985
|
+
}
|
|
8986
|
+
else if (event.target.checked && o.value == option.value) {
|
|
8987
|
+
_this.selected = o.value;
|
|
8988
|
+
Object.assign(o, { checked: true });
|
|
8989
|
+
}
|
|
8990
|
+
});
|
|
8991
|
+
};
|
|
8992
|
+
return RadioButtonControlComponent;
|
|
8993
|
+
}());
|
|
8994
|
+
RadioButtonControlComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioButtonControlComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
8995
|
+
RadioButtonControlComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: RadioButtonControlComponent, selector: "radio", inputs: { id: "id", selected: "selected", options: "options", allowRadioUnselect: "allowRadioUnselect" }, providers: [
|
|
8996
|
+
{
|
|
8997
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
8998
|
+
useExisting: i0.forwardRef(function () { return RadioButtonControlComponent; }),
|
|
8999
|
+
multi: true
|
|
9000
|
+
}
|
|
9001
|
+
], ngImport: i0__namespace, template: "<fieldset class=\"bx--fieldset\">\n <div *ngFor=\"let option of options; let i = index\" class=\"bx--form-item bx--radio-wrapper\">\n <label class=\"form-control no-border\">\n <input type=\"radio\" [id]=\"id + '_' + i\" name=\"id\" [checked]=\"option.checked\" [value]=\"option.value\" (click)=\"allowRadioUnselect ? selectOpt(option, $event) : selectUnselectOpt(option, $event)\" />\n {{ option.label }}\n </label>\n </div>\n</fieldset>\n\n", directives: [{ type: i1__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
9002
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioButtonControlComponent, decorators: [{
|
|
9003
|
+
type: i0.Component,
|
|
9004
|
+
args: [{
|
|
9005
|
+
selector: 'radio',
|
|
9006
|
+
templateUrl: './radio.component.html',
|
|
9007
|
+
providers: [
|
|
9008
|
+
{
|
|
9009
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
9010
|
+
useExisting: i0.forwardRef(function () { return RadioButtonControlComponent; }),
|
|
9011
|
+
multi: true
|
|
9012
|
+
}
|
|
9013
|
+
]
|
|
9014
|
+
}]
|
|
9015
|
+
}], propDecorators: { id: [{
|
|
9016
|
+
type: i0.Input
|
|
9017
|
+
}], selected: [{
|
|
9018
|
+
type: i0.Input
|
|
9019
|
+
}], options: [{
|
|
9020
|
+
type: i0.Input
|
|
9021
|
+
}], allowRadioUnselect: [{
|
|
9022
|
+
type: i0.Input
|
|
9023
|
+
}] } });
|
|
9024
|
+
|
|
8944
9025
|
var CheckboxControlComponent = /** @class */ (function () {
|
|
8945
9026
|
function CheckboxControlComponent() {
|
|
8946
9027
|
this._value = [];
|
|
@@ -9008,7 +9089,7 @@
|
|
|
9008
9089
|
CheckboxControlComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CheckboxControlComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
9009
9090
|
CheckboxControlComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: CheckboxControlComponent, selector: "checkbox", inputs: { id: "id", options: "options", selected: "selected" }, providers: [
|
|
9010
9091
|
{
|
|
9011
|
-
provide:
|
|
9092
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
9012
9093
|
useExisting: i0.forwardRef(function () { return CheckboxControlComponent; }),
|
|
9013
9094
|
multi: true
|
|
9014
9095
|
}
|
|
@@ -9020,7 +9101,7 @@
|
|
|
9020
9101
|
templateUrl: './checkbox.component.html',
|
|
9021
9102
|
providers: [
|
|
9022
9103
|
{
|
|
9023
|
-
provide:
|
|
9104
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
9024
9105
|
useExisting: i0.forwardRef(function () { return CheckboxControlComponent; }),
|
|
9025
9106
|
multi: true
|
|
9026
9107
|
}
|
|
@@ -9831,7 +9912,7 @@
|
|
|
9831
9912
|
return FormRendererComponent;
|
|
9832
9913
|
}());
|
|
9833
9914
|
FormRendererComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: FormRendererComponent, deps: [{ token: ValidationFactory }, { token: DataSources }, { token: FormErrorsService }, { token: i1.DOCUMENT }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
9834
|
-
FormRendererComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: FormRendererComponent, selector: "form-renderer", inputs: { parentComponent: "parentComponent", node: "node", parentGroup: "parentGroup", theme: "theme", labelMap: "labelMap" }, usesOnChanges: true, ngImport: i0__namespace, template: "<!--CONTAINERS-->\n<div *ngIf=\"node.question.renderingType === 'form'\">\n <ngx-tab-set (onSelect)=\"tabSelected($event)\" [selectedIndex]=\"activeTab\">\n <ngx-tab\n [tabTitle]=\"question.label\"\n *ngFor=\"let question of node.question.questions; let i = index\"\n >\n <form-renderer\n [node]=\"node.children[question.key]\"\n [parentComponent]=\"this\"\n [parentGroup]=\"node.control\"\n [labelMap]=\"labelMap\"\n >\n </form-renderer>\n </ngx-tab>\n\n <div *ngIf=\"showErrors()\" class=\"container\">\n <div\n data-notification\n *ngFor=\"let errorNode of errorNodes\"\n class=\"cds--inline-notification cds--inline-notification--error cds--inline-notification--low-contrast pointer\"\n role=\"alert\"\n (click)=\"announceErrorField(errorNode)\"\n >\n <div class=\"cds--inline-notification__details\">\n <div class=\"cds--inline-notification__text-wrapper\">\n <p class=\"cds--inline-notification__title\">\n {{ errorNode.question.label }}\n </p>\n <p class=\"cds--inline-notification__subtitle\">\n {{ getControlError(errorNode) }}\n </p>\n </div>\n </div>\n <button\n tabindex=\"0\"\n class=\"cds--inline-notification__action-button cds--btn cds--btn--sm cds--btn--ghost\"\n type=\"button\"\n >\n Fix\n </button>\n <svg\n focusable=\"false\"\n preserveAspectRatio=\"xMidYMid meet\"\n style=\"will-change: transform\"\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"cds--inline-notification__icon\"\n width=\"20\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M10,1c-5,0-9,4-9,9s4,9,9,9s9-4,9-9S15,1,10,1z M13.5,14.5l-8-8l1-1l8,8L13.5,14.5z\"\n ></path>\n <path\n d=\"M13.5,14.5l-8-8l1-1l8,8L13.5,14.5z\"\n data-icon-path=\"inner-path\"\n opacity=\"0\"\n ></path>\n </svg>\n </div>\n </div>\n </ngx-tab-set>\n</div>\n<div *ngIf=\"node.question.renderingType === 'page'\">\n <!--Page Components-->\n <app-custom-component-wrapper\n [dark]=\"theme === 'light'\"\n [componentConfigs]=\"node.question.componentConfigs\"\n >\n </app-custom-component-wrapper>\n <form-renderer\n *ngFor=\"let question of node.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"node.children[question.key]\"\n [parentGroup]=\"parentGroup\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n</div>\n<div *ngIf=\"node.question.renderingType === 'section' && checkSection(node)\">\n <div\n class=\"cds--accordion__item\"\n [ngClass]=\"{ 'cds--accordion__item--active': !isCollapsed }\"\n >\n <button\n class=\"cds--accordion__heading\"\n type=\"button\"\n [attr.aria-expanded]=\"isCollapsed ? 'false' : 'true'\"\n aria-controls=\"accordion-item-0\"\n (click)=\"isCollapsed = !isCollapsed\"\n >\n <svg\n class=\"cds--accordion__arrow\"\n ibmIcon=\"chevron--right\"\n size=\"16\"\n xmlns=\"http://www.w3.org/2000/svg\"\n focusable=\"false\"\n preserveAspectRatio=\"xMidYMid meet\"\n aria-hidden=\"true\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n >\n <path d=\"M11 8L6 13 5.3 12.3 9.6 8 5.3 3.7 6 3z\"></path>\n </svg>\n <p class=\"cds--accordion__title\">\n {{ node.question.label }}\n </p>\n </button>\n <div [collapse]=\"isCollapsed\">\n <!--Section Components-->\n <app-custom-component-wrapper\n [dark]=\"theme === 'light'\"\n [componentConfigs]=\"node.question.componentConfigs\"\n >\n </app-custom-component-wrapper>\n <div\n class=\"cds--accordion__content accordion-content-override\"\n [ngClass]=\"{\n 'accordion-content-dark': theme === 'light'\n }\"\n >\n <form-renderer\n *ngFor=\"let question of node.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"node.children[question.key]\"\n [parentGroup]=\"parentGroup\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n </div>\n </div>\n </div>\n</div>\n\n<!-- MESSAGES -->\n<div\n *ngIf=\"node.control && node.control.alert && node.control.alert !== ''\"\n class=\"alert alert-warning\"\n>\n <a class=\"close\" data-dismiss=\"alert\">×</a> {{ node.control.alert }}\n</div>\n\n<!--CONTROLS-->\n\n<div\n *ngIf=\"node.question.controlType === 0\"\n [formGroup]=\"parentGroup\"\n [hidden]=\"node.control.hidden\"\n [ngClass]=\"{ disabled: node.control.disabled }\"\n>\n <app-custom-component-wrapper\n [dark]=\"!(theme === 'light')\"\n [componentConfigs]=\"node.question.componentConfigs\"\n >\n </app-custom-component-wrapper>\n <div class=\"cds--form-item\">\n <!--LEAF CONTROL-->\n <div class=\"question-area\">\n <a\n class=\"form-tooltip pull-right\"\n (click)=\"toggleInformation(node.question.extras.id)\"\n data-placement=\"right\"\n *ngIf=\"\n node.question &&\n node.question.extras.questionInfo &&\n node.question.extras.questionInfo !== '' &&\n node.question.extras.questionInfo !== ' '\n \"\n >\n <i class=\"glyphicon glyphicon-question-sign\" aria-hidden=\"true\"></i>\n </a>\n\n <label\n *ngIf=\"node.question.label\"\n [style.color]=\"hasErrors() ? 'red' : ''\"\n class=\"cds--label\"\n [attr.for]=\"node.question.key\"\n >\n {{ node.question.required ? '*' : '' }}\n {{ node.question.prefix ? node.question.prefix + ' ' : ''\n }}{{ node.question.label }}\n </label>\n\n <div\n *ngIf=\"\n node.question.extras.questionOptions.customControl;\n else nativeControls\n \"\n >\n <app-custom-control-wrapper\n [formControlName]=\"node.question.key\"\n [id]=\"node.question.key + 'id'\"\n [question]=\"node.question\"\n >\n </app-custom-control-wrapper>\n </div>\n\n <ng-template #nativeControls>\n <div class=\"afe-control\" [ngSwitch]=\"node.question.renderingType\">\n <ibm-select\n [theme]=\"theme\"\n *ngSwitchCase=\"'select'\"\n [formControlName]=\"node.question.key\"\n [id]=\"node.question.key + 'id'\"\n >\n <option *ngFor=\"let o of node.question.options\" [value]=\"o.value\">\n {{ o.label }}\n </option>\n </ibm-select>\n\n <div *ngSwitchCase=\"'file'\">\n <app-file-upload\n [dataSource]=\"dataSource\"\n [formControlName]=\"node.question.key\"\n [id]=\"node.question.key + 'id'\"\n (fileChanged)=\"upload($event)\"\n >\n </app-file-upload>\n </div>\n\n <textarea\n [theme]=\"theme\"\n ibmTextArea\n [ngClass]=\"{\n 'cds--text-area--light': theme === 'light',\n 'cds--text-area--invalid': !node.control.valid\n }\"\n [placeholder]=\"node.question.placeholder\"\n [rows]=\"node.question.rows\"\n class=\"cds--text-area\"\n *ngSwitchCase=\"'textarea'\"\n [formControlName]=\"node.question.key\"\n [id]=\"node.question.key + 'id'\"\n [readOnly]=\"node.question.extras.readOnly\"\n >\n </textarea>\n\n <ngx-remote-select\n [theme]=\"theme\"\n *ngSwitchCase=\"'remote-select'\"\n [placeholder]=\"node.question.placeholder\"\n tabindex=\"0\"\n [dataSource]=\"dataSource\"\n [componentID]=\"node.question.key + 'id'\"\n [formControlName]=\"node.question.key\"\n [id]=\"node.question.key + 'id'\"\n ></ngx-remote-select>\n\n <ngx-datetimepicker\n [weeks]=\"node.question.extras.questionOptions.weeksList\"\n [showWeeks]=\"node.question.showWeeksAdder\"\n [theme]=\"theme\"\n [id]=\"node.question.key + 'id'\"\n [formControlName]=\"node.question.key\"\n *ngSwitchCase=\"'date'\"\n [datePickerFormat]=\"node.question.datePickerFormat\"\n >\n </ngx-datetimepicker>\n <ng-select\n [ngClass]=\"{ 'afe-custom': theme === 'light' }\"\n [id]=\"node.question.key + 'id'\"\n *ngSwitchCase=\"'multi-select'\"\n [items]=\"node.question.options\"\n bindLabel=\"label\"\n bindValue=\"value\"\n [multiple]=\"true\"\n placeholder=\"\"\n clearAllText=\"Clear\"\n [formControlName]=\"node.question.key\"\n >\n </ng-select>\n\n <ng-select\n [ngClass]=\"{ 'afe-custom': theme === 'light' }\"\n [id]=\"node.question.key + 'id'\"\n *ngSwitchCase=\"'single-select'\"\n [items]=\"node.question.options\"\n bindLabel=\"label\"\n bindValue=\"value\"\n placeholder=\"\"\n clearAllText=\"Clear\"\n [formControlName]=\"node.question.key\"\n >\n </ng-select>\n\n <number-input\n [theme]=\"theme\"\n *ngSwitchCase=\"'number'\"\n [id]=\"node.question.key + 'id'\"\n [min]=\"node.question.extras.questionOptions.min\"\n [max]=\"node.question.extras.questionOptions.max\"\n [formControlName]=\"node.question.key\"\n [attr.placeholder]=\"node.question.placeholder\"\n >\n </number-input>\n\n <input\n [theme]=\"theme\"\n class=\"cds--text-input\"\n ibmText\n *ngSwitchDefault\n [formControlName]=\"node.question.key\"\n [attr.placeholder]=\"node.question.placeholder\"\n [type]=\"node.question.renderingType\"\n [id]=\"node.question.key + 'id'\"\n [readOnly]=\"node.question.extras.readOnly\"\n />\n\n <div *ngSwitchCase=\"'radio'\">\n <div\n *ngFor=\"let o of node.question.options\"\n [ngClass]=\"{\n 'in-line': node.question.orientation === 'horizontal'\n }\"\n >\n <label class=\"form-control no-border\">\n <input\n type=\"radio\"\n [formControlName]=\"node.question.key\"\n [id]=\"node.question.key + 'id'\"\n [value]=\"o.value\"\n />\n {{ o.label }}\n </label>\n </div>\n </div>\n\n <div *ngSwitchCase=\"'checkbox'\">\n <checkbox\n [id]=\"node.question.key + 'id'\"\n [formControlName]=\"node.question.key\"\n [options]=\"node.question.options\"\n [selected]=\"node.control.value\"\n ></checkbox>\n </div>\n\n <div\n *ngIf=\"\n node.question.enableHistoricalValue &&\n node.question.historicalDisplay\n \"\n style=\"margin-top: 2px\"\n >\n <div class=\"container-fluid\">\n <div class=\"row\">\n <div class=\"col-xs-9\">\n <span class=\"text-warning\">Previous Value: </span>\n <strong>{{ node.question.historicalDisplay?.text }}</strong>\n <span *ngIf=\"node.question.showHistoricalValueDate\">\n <span> | </span>\n <strong class=\"text-primary\"\n >{{ node.question.historicalDisplay?._date | date }}\n </strong>\n <span\n class=\"text-primary\"\n *ngIf=\"\n node.question.historicalDisplay &&\n node.question.historicalDisplay._date\n \"\n >\n ({{\n node.question.historicalDisplay._date | timeAgo\n }})</span\n >\n </span>\n </div>\n <button\n type=\"button\"\n [node]=\"node\"\n [name]=\"'historyValue'\"\n class=\"cds--btn cds--btn--primary cds--btn--sm col-xs-3\"\n >\n Use Value\n </button>\n </div>\n </div>\n </div>\n <appointments-overview [node]=\"node\"></appointments-overview>\n <div *ngIf=\"hasErrors()\">\n <div *ngFor=\"let e of errors()\">\n <span class=\"text-danger\">{{ e }}</span>\n </div>\n </div>\n </div>\n </ng-template>\n\n <div\n class=\"question-info col-md-12 col-lg-12 col-sm-12\"\n id=\"{{ node.question.extras.id }}\"\n *ngIf=\"\n node.question &&\n node.question.extras.questionInfo &&\n node.question.extras.questionInfo !== '' &&\n node.question.extras.questionInfo !== ' '\n \"\n >\n {{ node.question.extras.questionInfo }}\n </div>\n </div>\n </div>\n</div>\n<div\n *ngIf=\"node.question.controlType === 1\"\n [hidden]=\"node.control.hidden\"\n [ngClass]=\"{ disabled: node.control.disabled }\"\n>\n <!--ARRAY CONTROL-->\n <div [ngSwitch]=\"node.question.renderingType\">\n <div class=\"well\" style=\"padding: 2px\" *ngSwitchCase=\"'repeating'\">\n <h4 style=\"margin: 2px; font-weight: bold\">{{ node.question.label }}</h4>\n <hr\n style=\"\n margin-left: -2px;\n margin-right: -2px;\n margin-bottom: 4px;\n margin-top: 8px;\n border-width: 2px;\n \"\n />\n <div [ngSwitch]=\"node.question.extras.type\">\n <div *ngSwitchCase=\"'testOrder'\">\n <div *ngFor=\"let child of node.children; let i = index\">\n <form-renderer\n *ngFor=\"let question of child.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"child.children[question.key]\"\n [parentGroup]=\"child.control\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n <div>{{ child.orderNumber }}</div>\n <button\n type=\"button \"\n class=\"cds--btn cds--btn--danger cds--btn--sm\"\n (click)=\"node.removeAt(i)\"\n >\n Remove\n </button>\n <br />\n <hr\n style=\"\n margin-left: -2px;\n margin-right: -2px;\n margin-bottom: 4px;\n margin-top: 8px;\n border-width: 1px;\n \"\n />\n </div>\n </div>\n\n <div *ngSwitchCase=\"'obsGroup'\" style=\"margin-bottom: 20px\">\n <div *ngFor=\"let child of node.children; let i = index\">\n <form-renderer\n *ngFor=\"let question of child.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"child.children[question.key]\"\n [parentGroup]=\"child.control\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n <button\n type=\"button \"\n class=\"cds--btn cds--btn--danger cds--btn--sm\"\n (click)=\"node.removeAt(i)\"\n >\n Remove\n </button>\n <br />\n <hr\n style=\"\n margin-left: -2px;\n margin-right: -2px;\n margin-bottom: 4px;\n margin-top: 8px;\n border-width: 1px;\n \"\n />\n </div>\n </div>\n </div>\n <button\n type=\"button\"\n class=\"cds--btn cds--btn--primary\"\n (click)=\"node.createChildNode()\"\n >\n Add\n </button>\n </div>\n </div>\n</div>\n<div\n *ngIf=\"node.question.controlType === 2\"\n [hidden]=\"node.control.hidden\"\n [ngClass]=\"{ disabled: node.control.disabled }\"\n>\n <!--GROUP-->\n <div [ngSwitch]=\"node.question.renderingType\">\n <div *ngSwitchCase=\"'group'\">\n <form-renderer\n *ngFor=\"let question of node.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"node.children[question.key]\"\n [parentGroup]=\"node.control\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n </div>\n <div\n *ngSwitchCase=\"'field-set'\"\n style=\"border: 1px solid #eeeeee; padding: 2px; margin: 2px\"\n >\n <form-renderer\n *ngFor=\"let question of node.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"node.children[question.key]\"\n [parentGroup]=\"node.control\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n </div>\n </div>\n</div>\n", styles: [".slider{width:auto;margin:30px}.slick-prev:before,.slick-next:before{color:#337ab7}.slick-dots{bottom:-40px}.slick-slide{outline:none}\n", "a{color:#fff;text-decoration:none;font-size:12px;text-transform:uppercase}ul{list-style-type:none;margin:2px auto;position:relative}li{display:block;padding:10px 20px;white-space:nowrap;transition:all .3s ease-in;border-bottom:4px solid transparent}li:hover{border-bottom:4px solid white;opacity:.7;cursor:pointer}.owl-theme .owl-controls .owl-nav{position:absolute;width:100%;top:0}.owl-theme .owl-controls .owl-nav [class*=owl-]{position:absolute;background:none;color:#000}.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{background:none;color:#000}.owl-theme .owl-controls .owl-nav .owl-next{right:0;transform:translate(120%)}.owl-theme .owl-controls .owl-nav .owl-prev{left:0;transform:translate(-120%)}.slick-initialized .swipe-tab-content{position:relative;min-height:365px}@media screen and (min-width: 767px){.slick-initialized .swipe-tab-content{min-height:500px}}.slick-initialized .swipe-tab{display:flex;align-items:center;justify-content:center;height:50px;background:none;border:0;color:#757575;cursor:pointer;text-align:center;border-bottom:2px solid rgba(51,122,183,0);transition:all .5s}.slick-initialized .swipe-tab:hover{color:#337ab7}.slick-initialized .swipe-tab.active-tab{border-bottom-color:#337ab7;color:#337ab7;font-weight:bold}.disabled{opacity:.5;pointer-events:none}.select2-container{margin-top:-5px}.btn{padding:0 12px!important}.form-tooltip{color:#337ab7;display:inline-block}.question-info{opacity:0;height:0px;display:none;transition-duration:opacity 1s ease-out;transtion-delay:.5s;padding-top:2px;padding-bottom:2px;color:#696969;border-style:ridge;border-width:1px;border-color:#337ab7;margin-top:2px}.hide-info{display:none;height:0px}.form-tooltip:hover~.question-info{display:block;opacity:1;height:auto}.form-tooltip .tooltipcontent:after{content:\" \";position:absolute;bottom:100%;right:0%;margin-left:-5px;border-width:5px;border-style:solid;border-top-color:transparent;border-right-color:transparent;border-bottom-color:#337ab7;border-left-color:transparent}ng-select.form-control{padding-top:0;height:auto;padding-bottom:0}.forms-dropdown-menu{max-height:450px;overflow-y:scroll}.no-border{border:0;box-shadow:none}.text-danger{color:var(--cds-support-01, #da1e28)}.error{margin-bottom:3rem}.afe-control{margin-bottom:1.5rem}[hidden]{display:none!important}.accordion-content-dark{background-color:#f4f4f4;padding-right:1rem}.accordion-content-override{box-sizing:content-box}.question-area{width:100%;max-width:18rem}.in-line{display:inline-block;padding-right:.5rem}\n"], components: [{ type: TabSetComponent, selector: "ngx-tab-set", inputs: ["disableStyle", "customNavClass", "customTabsClass", "selectedIndex"], outputs: ["onSelect"] }, { type: TabComponent, selector: "ngx-tab", inputs: ["tabTitle", "tabSubTitle", "active", "disabled", "bypassDOM", "customPaneClass"] }, { type: FormRendererComponent, selector: "form-renderer", inputs: ["parentComponent", "node", "parentGroup", "theme", "labelMap"] }, { type: CustomComponentWrapperComponent, selector: "app-custom-component-wrapper", inputs: ["componentConfigs", "dark"] }, { type: CustomControlWrapperComponent, selector: "app-custom-control-wrapper", inputs: ["question"] }, { type: Select, selector: "ibm-select", inputs: ["display", "label", "helperText", "invalidText", "warn", "warnText", "id", "size", "disabled", "skeleton", "invalid", "theme", "ariaLabel", "value"], outputs: ["valueChange"] }, { type: FileUploadComponent, selector: "app-file-upload", inputs: ["dataSource"] }, { type: RemoteSelectComponent, selector: "ngx-remote-select", inputs: ["placeholder", "componentID", "disabled", "theme", "dataSource"], outputs: ["done"] }, { type: NgxDatetimeComponent, selector: "ngx-datetimepicker", inputs: ["id", "theme", "datePickerFormat", "showWeeks", "weeks"] }, { type: i1__namespace$3.NgSelectComponent, selector: "ng-select", inputs: ["markFirst", "dropdownPosition", "loading", "closeOnSelect", "hideSelected", "selectOnTab", "bufferAmount", "selectableGroup", "selectableGroupAsModel", "searchFn", "trackByFn", "clearOnBackspace", "labelForId", "inputAttrs", "readonly", "searchWhileComposing", "minTermLength", "editableSearchTerm", "keyDownFn", "multiple", "addTag", "searchable", "clearable", "isOpen", "items", "compareWith", "clearSearchOnAdd", "bindLabel", "placeholder", "notFoundText", "typeToSearchText", "addTagText", "loadingText", "clearAllText", "virtualScroll", "openOnEnter", "appendTo", "bindValue", "appearance", "maxSelectedItems", "groupBy", "groupValue", "tabIndex", "typeahead"], outputs: ["blur", "focus", "change", "open", "close", "search", "clear", "add", "remove", "scroll", "scrollToEnd"] }, { type: NumberInputComponent, selector: "number-input", inputs: ["theme", "disabled", "skeleton", "invalid", "id", "size", "required", "value", "min", "max", "label", "helperText", "invalidText", "step", "precision", "warn", "warnText", "decrementLabel", "incrementLabel"], outputs: ["change"] }, { type: CheckboxControlComponent, selector: "checkbox", inputs: ["id", "options", "selected"] }, { type: AppointmentsOverviewComponent, selector: "appointments-overview", inputs: ["node"] }], directives: [{ type: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: HistoricalValueDirective, selector: "[node]", inputs: ["_node", "node"], outputs: ["_nodeChange"] }, { type: i1__namespace.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: CollapseDirective, selector: "[collapse]", inputs: ["display", "isAnimated", "collapse"], outputs: ["collapsed", "collapses", "expanded", "expands"], exportAs: ["bs-collapse"] }, { type: i19__namespace.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i19__namespace.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i19__namespace.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i19__namespace.FormControlName, selector: "[formControlName]", inputs: ["disabled", "formControlName", "ngModel"], outputs: ["ngModelChange"] }, { type: i1__namespace.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i1__namespace.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i19__namespace.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { type: i19__namespace.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { type: Option$1, selector: "option" }, { type: i19__namespace.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: TextArea, selector: "[ibmTextArea]", inputs: ["theme", "invalid", "skeleton"] }, { type: i1__namespace.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { type: TextInput, selector: "[ibmText]", inputs: ["theme", "size", "invalid", "warn", "skeleton"] }, { type: i19__namespace.RadioControlValueAccessor, selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", inputs: ["name", "formControlName", "value"] }], pipes: { "date": i1__namespace.DatePipe, "timeAgo": TimeAgoPipe } });
|
|
9915
|
+
FormRendererComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: FormRendererComponent, selector: "form-renderer", inputs: { parentComponent: "parentComponent", node: "node", parentGroup: "parentGroup", theme: "theme", labelMap: "labelMap" }, usesOnChanges: true, ngImport: i0__namespace, template: "<!--CONTAINERS-->\n<div *ngIf=\"node.question.renderingType === 'form'\">\n <ngx-tab-set (onSelect)=\"tabSelected($event)\" [selectedIndex]=\"activeTab\">\n <ngx-tab\n [tabTitle]=\"question.label\"\n *ngFor=\"let question of node.question.questions; let i = index\"\n >\n <form-renderer\n [node]=\"node.children[question.key]\"\n [parentComponent]=\"this\"\n [parentGroup]=\"node.control\"\n [labelMap]=\"labelMap\"\n >\n </form-renderer>\n </ngx-tab>\n\n <div *ngIf=\"showErrors()\" class=\"container\">\n <div\n data-notification\n *ngFor=\"let errorNode of errorNodes\"\n class=\"cds--inline-notification cds--inline-notification--error cds--inline-notification--low-contrast pointer\"\n role=\"alert\"\n (click)=\"announceErrorField(errorNode)\"\n >\n <div class=\"cds--inline-notification__details\">\n <div class=\"cds--inline-notification__text-wrapper\">\n <p class=\"cds--inline-notification__title\">\n {{ errorNode.question.label }}\n </p>\n <p class=\"cds--inline-notification__subtitle\">\n {{ getControlError(errorNode) }}\n </p>\n </div>\n </div>\n <button\n tabindex=\"0\"\n class=\"cds--inline-notification__action-button cds--btn cds--btn--sm cds--btn--ghost\"\n type=\"button\"\n >\n Fix\n </button>\n <svg\n focusable=\"false\"\n preserveAspectRatio=\"xMidYMid meet\"\n style=\"will-change: transform\"\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"cds--inline-notification__icon\"\n width=\"20\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n aria-hidden=\"true\"\n >\n <path\n d=\"M10,1c-5,0-9,4-9,9s4,9,9,9s9-4,9-9S15,1,10,1z M13.5,14.5l-8-8l1-1l8,8L13.5,14.5z\"\n ></path>\n <path\n d=\"M13.5,14.5l-8-8l1-1l8,8L13.5,14.5z\"\n data-icon-path=\"inner-path\"\n opacity=\"0\"\n ></path>\n </svg>\n </div>\n </div>\n </ngx-tab-set>\n</div>\n<div *ngIf=\"node.question.renderingType === 'page'\">\n <!--Page Components-->\n <app-custom-component-wrapper\n [dark]=\"theme === 'light'\"\n [componentConfigs]=\"node.question.componentConfigs\"\n >\n </app-custom-component-wrapper>\n <form-renderer\n *ngFor=\"let question of node.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"node.children[question.key]\"\n [parentGroup]=\"parentGroup\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n</div>\n<div *ngIf=\"node.question.renderingType === 'section' && checkSection(node)\">\n <div\n class=\"cds--accordion__item\"\n [ngClass]=\"{ 'cds--accordion__item--active': !isCollapsed }\"\n >\n <button\n class=\"cds--accordion__heading\"\n type=\"button\"\n [attr.aria-expanded]=\"isCollapsed ? 'false' : 'true'\"\n aria-controls=\"accordion-item-0\"\n (click)=\"isCollapsed = !isCollapsed\"\n >\n <svg\n class=\"cds--accordion__arrow\"\n ibmIcon=\"chevron--right\"\n size=\"16\"\n xmlns=\"http://www.w3.org/2000/svg\"\n focusable=\"false\"\n preserveAspectRatio=\"xMidYMid meet\"\n aria-hidden=\"true\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n >\n <path d=\"M11 8L6 13 5.3 12.3 9.6 8 5.3 3.7 6 3z\"></path>\n </svg>\n <p class=\"cds--accordion__title\">\n {{ node.question.label }}\n </p>\n </button>\n <div [collapse]=\"isCollapsed\">\n <!--Section Components-->\n <app-custom-component-wrapper\n [dark]=\"theme === 'light'\"\n [componentConfigs]=\"node.question.componentConfigs\"\n >\n </app-custom-component-wrapper>\n <div\n class=\"cds--accordion__content accordion-content-override\"\n [ngClass]=\"{\n 'accordion-content-dark': theme === 'light'\n }\"\n >\n <form-renderer\n *ngFor=\"let question of node.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"node.children[question.key]\"\n [parentGroup]=\"parentGroup\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n </div>\n </div>\n </div>\n</div>\n\n<!-- MESSAGES -->\n<div\n *ngIf=\"node.control && node.control.alert && node.control.alert !== ''\"\n class=\"alert alert-warning\"\n>\n <a class=\"close\" data-dismiss=\"alert\">×</a> {{ node.control.alert }}\n</div>\n\n<!--CONTROLS-->\n\n<div\n *ngIf=\"node.question.controlType === 0\"\n [formGroup]=\"parentGroup\"\n [hidden]=\"node.control.hidden\"\n [ngClass]=\"{ disabled: node.control.disabled }\"\n>\n <app-custom-component-wrapper\n [dark]=\"!(theme === 'light')\"\n [componentConfigs]=\"node.question.componentConfigs\"\n >\n </app-custom-component-wrapper>\n <div class=\"cds--form-item\">\n <!--LEAF CONTROL-->\n <div class=\"question-area\">\n <a\n class=\"form-tooltip pull-right\"\n (click)=\"toggleInformation(node.question.extras.id)\"\n data-placement=\"right\"\n *ngIf=\"\n node.question &&\n node.question.extras.questionInfo &&\n node.question.extras.questionInfo !== '' &&\n node.question.extras.questionInfo !== ' '\n \"\n >\n <i class=\"glyphicon glyphicon-question-sign\" aria-hidden=\"true\"></i>\n </a>\n\n <label\n *ngIf=\"node.question.label\"\n [style.color]=\"hasErrors() ? 'red' : ''\"\n class=\"cds--label\"\n [attr.for]=\"node.question.key\"\n >\n {{ node.question.required ? '*' : '' }}\n {{ node.question.prefix ? node.question.prefix + ' ' : ''\n }}{{ node.question.label }}\n </label>\n\n <div\n *ngIf=\"\n node.question.extras.questionOptions.customControl;\n else nativeControls\n \"\n >\n <app-custom-control-wrapper\n [formControlName]=\"node.question.key\"\n [id]=\"node.question.key + 'id'\"\n [question]=\"node.question\"\n >\n </app-custom-control-wrapper>\n </div>\n\n <ng-template #nativeControls>\n <div class=\"afe-control\" [ngSwitch]=\"node.question.renderingType\">\n <ibm-select\n [theme]=\"theme\"\n *ngSwitchCase=\"'select'\"\n [formControlName]=\"node.question.key\"\n [id]=\"node.question.key + 'id'\"\n >\n <option *ngFor=\"let o of node.question.options\" [value]=\"o.value\">\n {{ o.label }}\n </option>\n </ibm-select>\n\n <div *ngSwitchCase=\"'file'\">\n <app-file-upload\n [dataSource]=\"dataSource\"\n [formControlName]=\"node.question.key\"\n [id]=\"node.question.key + 'id'\"\n (fileChanged)=\"upload($event)\"\n >\n </app-file-upload>\n </div>\n\n <textarea\n [theme]=\"theme\"\n ibmTextArea\n [ngClass]=\"{\n 'cds--text-area--light': theme === 'light',\n 'cds--text-area--invalid': !node.control.valid\n }\"\n [placeholder]=\"node.question.placeholder\"\n [rows]=\"node.question.rows\"\n class=\"cds--text-area\"\n *ngSwitchCase=\"'textarea'\"\n [formControlName]=\"node.question.key\"\n [id]=\"node.question.key + 'id'\"\n [readOnly]=\"node.question.extras.readOnly\"\n >\n </textarea>\n\n <ngx-remote-select\n [theme]=\"theme\"\n *ngSwitchCase=\"'remote-select'\"\n [placeholder]=\"node.question.placeholder\"\n tabindex=\"0\"\n [dataSource]=\"dataSource\"\n [componentID]=\"node.question.key + 'id'\"\n [formControlName]=\"node.question.key\"\n [id]=\"node.question.key + 'id'\"\n ></ngx-remote-select>\n\n <ngx-datetimepicker\n [weeks]=\"node.question.extras.questionOptions.weeksList\"\n [showWeeks]=\"node.question.showWeeksAdder\"\n [theme]=\"theme\"\n [id]=\"node.question.key + 'id'\"\n [formControlName]=\"node.question.key\"\n *ngSwitchCase=\"'date'\"\n [datePickerFormat]=\"node.question.datePickerFormat\"\n >\n </ngx-datetimepicker>\n <ng-select\n [ngClass]=\"{ 'afe-custom': theme === 'light' }\"\n [id]=\"node.question.key + 'id'\"\n *ngSwitchCase=\"'multi-select'\"\n [items]=\"node.question.options\"\n bindLabel=\"label\"\n bindValue=\"value\"\n [multiple]=\"true\"\n placeholder=\"\"\n clearAllText=\"Clear\"\n [formControlName]=\"node.question.key\"\n >\n </ng-select>\n\n <ng-select\n [ngClass]=\"{ 'afe-custom': theme === 'light' }\"\n [id]=\"node.question.key + 'id'\"\n *ngSwitchCase=\"'single-select'\"\n [items]=\"node.question.options\"\n bindLabel=\"label\"\n bindValue=\"value\"\n placeholder=\"\"\n clearAllText=\"Clear\"\n [formControlName]=\"node.question.key\"\n >\n </ng-select>\n\n <number-input\n [theme]=\"theme\"\n *ngSwitchCase=\"'number'\"\n [id]=\"node.question.key + 'id'\"\n [min]=\"node.question.extras.questionOptions.min\"\n [max]=\"node.question.extras.questionOptions.max\"\n [formControlName]=\"node.question.key\"\n [attr.placeholder]=\"node.question.placeholder\"\n >\n </number-input>\n\n <input\n [theme]=\"theme\"\n class=\"cds--text-input\"\n ibmText\n *ngSwitchDefault\n [formControlName]=\"node.question.key\"\n [attr.placeholder]=\"node.question.placeholder\"\n [type]=\"node.question.renderingType\"\n [id]=\"node.question.key + 'id'\"\n [readOnly]=\"node.question.extras.readOnly\"\n />\n\n <div *ngSwitchCase=\"'radio'\">\n <radio [id]=\"node.question.key + 'id'\" [formControlName]=\"node.question.key\"\n [options]=\"node.question.options\" [selected]=\"node.control.value\" [allowRadioUnselect]=\"node.question.allowRadioUnselect\"></radio>\n </div>\n\n <div *ngSwitchCase=\"'checkbox'\">\n <checkbox\n [id]=\"node.question.key + 'id'\"\n [formControlName]=\"node.question.key\"\n [options]=\"node.question.options\"\n [selected]=\"node.control.value\"\n ></checkbox>\n </div>\n\n <div\n *ngIf=\"\n node.question.enableHistoricalValue &&\n node.question.historicalDisplay\n \"\n style=\"margin-top: 2px\"\n >\n <div class=\"container-fluid\">\n <div class=\"row\">\n <div class=\"col-xs-9\">\n <span class=\"text-warning\">Previous Value: </span>\n <strong>{{ node.question.historicalDisplay?.text }}</strong>\n <span *ngIf=\"node.question.showHistoricalValueDate\">\n <span> | </span>\n <strong class=\"text-primary\"\n >{{ node.question.historicalDisplay?._date | date }}\n </strong>\n <span\n class=\"text-primary\"\n *ngIf=\"\n node.question.historicalDisplay &&\n node.question.historicalDisplay._date\n \"\n >\n ({{\n node.question.historicalDisplay._date | timeAgo\n }})</span\n >\n </span>\n </div>\n <button\n type=\"button\"\n [node]=\"node\"\n [name]=\"'historyValue'\"\n class=\"cds--btn cds--btn--primary cds--btn--sm col-xs-3\"\n >\n Use Value\n </button>\n </div>\n </div>\n </div>\n <appointments-overview [node]=\"node\"></appointments-overview>\n <div *ngIf=\"hasErrors()\">\n <div *ngFor=\"let e of errors()\">\n <span class=\"text-danger\">{{ e }}</span>\n </div>\n </div>\n </div>\n </ng-template>\n\n <div\n class=\"question-info col-md-12 col-lg-12 col-sm-12\"\n id=\"{{ node.question.extras.id }}\"\n *ngIf=\"\n node.question &&\n node.question.extras.questionInfo &&\n node.question.extras.questionInfo !== '' &&\n node.question.extras.questionInfo !== ' '\n \"\n >\n {{ node.question.extras.questionInfo }}\n </div>\n </div>\n </div>\n</div>\n<div\n *ngIf=\"node.question.controlType === 1\"\n [hidden]=\"node.control.hidden\"\n [ngClass]=\"{ disabled: node.control.disabled }\"\n>\n <!--ARRAY CONTROL-->\n <div [ngSwitch]=\"node.question.renderingType\">\n <div class=\"well\" style=\"padding: 2px\" *ngSwitchCase=\"'repeating'\">\n <h4 style=\"margin: 2px; font-weight: bold\">{{ node.question.label }}</h4>\n <hr\n style=\"\n margin-left: -2px;\n margin-right: -2px;\n margin-bottom: 4px;\n margin-top: 8px;\n border-width: 2px;\n \"\n />\n <div [ngSwitch]=\"node.question.extras.type\">\n <div *ngSwitchCase=\"'testOrder'\">\n <div *ngFor=\"let child of node.children; let i = index\">\n <form-renderer\n *ngFor=\"let question of child.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"child.children[question.key]\"\n [parentGroup]=\"child.control\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n <div>{{ child.orderNumber }}</div>\n <button\n type=\"button \"\n class=\"cds--btn cds--btn--danger cds--btn--sm\"\n (click)=\"node.removeAt(i)\"\n >\n Remove\n </button>\n <br />\n <hr\n style=\"\n margin-left: -2px;\n margin-right: -2px;\n margin-bottom: 4px;\n margin-top: 8px;\n border-width: 1px;\n \"\n />\n </div>\n </div>\n\n <div *ngSwitchCase=\"'obsGroup'\" style=\"margin-bottom: 20px\">\n <div *ngFor=\"let child of node.children; let i = index\">\n <form-renderer\n *ngFor=\"let question of child.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"child.children[question.key]\"\n [parentGroup]=\"child.control\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n <button\n type=\"button \"\n class=\"cds--btn cds--btn--danger cds--btn--sm\"\n (click)=\"node.removeAt(i)\"\n >\n Remove\n </button>\n <br />\n <hr\n style=\"\n margin-left: -2px;\n margin-right: -2px;\n margin-bottom: 4px;\n margin-top: 8px;\n border-width: 1px;\n \"\n />\n </div>\n </div>\n </div>\n <button\n type=\"button\"\n class=\"cds--btn cds--btn--primary\"\n (click)=\"node.createChildNode()\"\n >\n Add\n </button>\n </div>\n </div>\n</div>\n<div\n *ngIf=\"node.question.controlType === 2\"\n [hidden]=\"node.control.hidden\"\n [ngClass]=\"{ disabled: node.control.disabled }\"\n>\n <!--GROUP-->\n <div [ngSwitch]=\"node.question.renderingType\">\n <div *ngSwitchCase=\"'group'\">\n <form-renderer\n *ngFor=\"let question of node.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"node.children[question.key]\"\n [parentGroup]=\"node.control\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n </div>\n <div\n *ngSwitchCase=\"'field-set'\"\n style=\"border: 1px solid #eeeeee; padding: 2px; margin: 2px\"\n >\n <form-renderer\n *ngFor=\"let question of node.question.questions\"\n [parentComponent]=\"this\"\n [node]=\"node.children[question.key]\"\n [parentGroup]=\"node.control\"\n [labelMap]=\"labelMap\"\n ></form-renderer>\n </div>\n </div>\n</div>\n", styles: [".slider{width:auto;margin:30px}.slick-prev:before,.slick-next:before{color:#337ab7}.slick-dots{bottom:-40px}.slick-slide{outline:none}\n", "a{color:#fff;text-decoration:none;font-size:12px;text-transform:uppercase}ul{list-style-type:none;margin:2px auto;position:relative}li{display:block;padding:10px 20px;white-space:nowrap;transition:all .3s ease-in;border-bottom:4px solid transparent}li:hover{border-bottom:4px solid white;opacity:.7;cursor:pointer}.owl-theme .owl-controls .owl-nav{position:absolute;width:100%;top:0}.owl-theme .owl-controls .owl-nav [class*=owl-]{position:absolute;background:none;color:#000}.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{background:none;color:#000}.owl-theme .owl-controls .owl-nav .owl-next{right:0;transform:translate(120%)}.owl-theme .owl-controls .owl-nav .owl-prev{left:0;transform:translate(-120%)}.slick-initialized .swipe-tab-content{position:relative;min-height:365px}@media screen and (min-width: 767px){.slick-initialized .swipe-tab-content{min-height:500px}}.slick-initialized .swipe-tab{display:flex;align-items:center;justify-content:center;height:50px;background:none;border:0;color:#757575;cursor:pointer;text-align:center;border-bottom:2px solid rgba(51,122,183,0);transition:all .5s}.slick-initialized .swipe-tab:hover{color:#337ab7}.slick-initialized .swipe-tab.active-tab{border-bottom-color:#337ab7;color:#337ab7;font-weight:bold}.disabled{opacity:.5;pointer-events:none}.select2-container{margin-top:-5px}.btn{padding:0 12px!important}.form-tooltip{color:#337ab7;display:inline-block}.question-info{opacity:0;height:0px;display:none;transition-duration:opacity 1s ease-out;transtion-delay:.5s;padding-top:2px;padding-bottom:2px;color:#696969;border-style:ridge;border-width:1px;border-color:#337ab7;margin-top:2px}.hide-info{display:none;height:0px}.form-tooltip:hover~.question-info{display:block;opacity:1;height:auto}.form-tooltip .tooltipcontent:after{content:\" \";position:absolute;bottom:100%;right:0%;margin-left:-5px;border-width:5px;border-style:solid;border-top-color:transparent;border-right-color:transparent;border-bottom-color:#337ab7;border-left-color:transparent}ng-select.form-control{padding-top:0;height:auto;padding-bottom:0}.forms-dropdown-menu{max-height:450px;overflow-y:scroll}.no-border{border:0;box-shadow:none}.text-danger{color:var(--cds-support-01, #da1e28)}.error{margin-bottom:3rem}.afe-control{margin-bottom:1.5rem}[hidden]{display:none!important}.accordion-content-dark{background-color:#f4f4f4;padding-right:1rem}.accordion-content-override{box-sizing:content-box}.question-area{width:100%;max-width:18rem}.in-line{display:inline-block;padding-right:.5rem}\n"], components: [{ type: TabSetComponent, selector: "ngx-tab-set", inputs: ["disableStyle", "customNavClass", "customTabsClass", "selectedIndex"], outputs: ["onSelect"] }, { type: TabComponent, selector: "ngx-tab", inputs: ["tabTitle", "tabSubTitle", "active", "disabled", "bypassDOM", "customPaneClass"] }, { type: FormRendererComponent, selector: "form-renderer", inputs: ["parentComponent", "node", "parentGroup", "theme", "labelMap"] }, { type: CustomComponentWrapperComponent, selector: "app-custom-component-wrapper", inputs: ["componentConfigs", "dark"] }, { type: CustomControlWrapperComponent, selector: "app-custom-control-wrapper", inputs: ["question"] }, { type: Select, selector: "ibm-select", inputs: ["display", "label", "helperText", "invalidText", "warn", "warnText", "id", "size", "disabled", "skeleton", "invalid", "theme", "ariaLabel", "value"], outputs: ["valueChange"] }, { type: FileUploadComponent, selector: "app-file-upload", inputs: ["dataSource"] }, { type: RemoteSelectComponent, selector: "ngx-remote-select", inputs: ["placeholder", "componentID", "disabled", "theme", "dataSource"], outputs: ["done"] }, { type: NgxDatetimeComponent, selector: "ngx-datetimepicker", inputs: ["id", "theme", "datePickerFormat", "showWeeks", "weeks"] }, { type: i1__namespace$3.NgSelectComponent, selector: "ng-select", inputs: ["markFirst", "dropdownPosition", "loading", "closeOnSelect", "hideSelected", "selectOnTab", "bufferAmount", "selectableGroup", "selectableGroupAsModel", "searchFn", "trackByFn", "clearOnBackspace", "labelForId", "inputAttrs", "readonly", "searchWhileComposing", "minTermLength", "editableSearchTerm", "keyDownFn", "multiple", "addTag", "searchable", "clearable", "isOpen", "items", "compareWith", "clearSearchOnAdd", "bindLabel", "placeholder", "notFoundText", "typeToSearchText", "addTagText", "loadingText", "clearAllText", "virtualScroll", "openOnEnter", "appendTo", "bindValue", "appearance", "maxSelectedItems", "groupBy", "groupValue", "tabIndex", "typeahead"], outputs: ["blur", "focus", "change", "open", "close", "search", "clear", "add", "remove", "scroll", "scrollToEnd"] }, { type: NumberInputComponent, selector: "number-input", inputs: ["theme", "disabled", "skeleton", "invalid", "id", "size", "required", "value", "min", "max", "label", "helperText", "invalidText", "step", "precision", "warn", "warnText", "decrementLabel", "incrementLabel"], outputs: ["change"] }, { type: RadioButtonControlComponent, selector: "radio", inputs: ["id", "selected", "options", "allowRadioUnselect"] }, { type: CheckboxControlComponent, selector: "checkbox", inputs: ["id", "options", "selected"] }, { type: AppointmentsOverviewComponent, selector: "appointments-overview", inputs: ["node"] }], directives: [{ type: i1__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: HistoricalValueDirective, selector: "[node]", inputs: ["_node", "node"], outputs: ["_nodeChange"] }, { type: i1__namespace.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: CollapseDirective, selector: "[collapse]", inputs: ["display", "isAnimated", "collapse"], outputs: ["collapsed", "collapses", "expanded", "expands"], exportAs: ["bs-collapse"] }, { type: i20__namespace.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i20__namespace.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i20__namespace.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i20__namespace.FormControlName, selector: "[formControlName]", inputs: ["disabled", "formControlName", "ngModel"], outputs: ["ngModelChange"] }, { type: i1__namespace.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i1__namespace.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i20__namespace.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { type: i20__namespace.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { type: Option$1, selector: "option" }, { type: i20__namespace.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: TextArea, selector: "[ibmTextArea]", inputs: ["theme", "invalid", "skeleton"] }, { type: i1__namespace.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { type: TextInput, selector: "[ibmText]", inputs: ["theme", "size", "invalid", "warn", "skeleton"] }], pipes: { "date": i1__namespace.DatePipe, "timeAgo": TimeAgoPipe } });
|
|
9835
9916
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: FormRendererComponent, decorators: [{
|
|
9836
9917
|
type: i0.Component,
|
|
9837
9918
|
args: [{
|
|
@@ -9916,12 +9997,12 @@
|
|
|
9916
9997
|
return NumberInputModule;
|
|
9917
9998
|
}());
|
|
9918
9999
|
NumberInputModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NumberInputModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
9919
|
-
NumberInputModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NumberInputModule, declarations: [NumberInputComponent], imports: [i1.CommonModule,
|
|
9920
|
-
NumberInputModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NumberInputModule, providers: [], imports: [[i1.CommonModule,
|
|
10000
|
+
NumberInputModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NumberInputModule, declarations: [NumberInputComponent], imports: [i1.CommonModule, i20.FormsModule], exports: [NumberInputComponent] });
|
|
10001
|
+
NumberInputModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NumberInputModule, providers: [], imports: [[i1.CommonModule, i20.FormsModule]] });
|
|
9921
10002
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NumberInputModule, decorators: [{
|
|
9922
10003
|
type: i0.NgModule,
|
|
9923
10004
|
args: [{
|
|
9924
|
-
imports: [i1.CommonModule,
|
|
10005
|
+
imports: [i1.CommonModule, i20.FormsModule],
|
|
9925
10006
|
exports: [NumberInputComponent],
|
|
9926
10007
|
declarations: [NumberInputComponent],
|
|
9927
10008
|
providers: []
|
|
@@ -9953,13 +10034,13 @@
|
|
|
9953
10034
|
}());
|
|
9954
10035
|
RemoteFileUploadModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RemoteFileUploadModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
9955
10036
|
RemoteFileUploadModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RemoteFileUploadModule, declarations: [FileUploadComponent], imports: [i1.CommonModule,
|
|
9956
|
-
|
|
10037
|
+
i20.FormsModule,
|
|
9957
10038
|
SharedModule,
|
|
9958
10039
|
ngxWebcam.WebcamModule,
|
|
9959
10040
|
i1$2.NgxFileUploaderModule], exports: [FileUploadComponent] });
|
|
9960
10041
|
RemoteFileUploadModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RemoteFileUploadModule, providers: [], imports: [[
|
|
9961
10042
|
i1.CommonModule,
|
|
9962
|
-
|
|
10043
|
+
i20.FormsModule,
|
|
9963
10044
|
SharedModule,
|
|
9964
10045
|
ngxWebcam.WebcamModule,
|
|
9965
10046
|
i1$2.NgxFileUploaderModule
|
|
@@ -9969,7 +10050,7 @@
|
|
|
9969
10050
|
args: [{
|
|
9970
10051
|
imports: [
|
|
9971
10052
|
i1.CommonModule,
|
|
9972
|
-
|
|
10053
|
+
i20.FormsModule,
|
|
9973
10054
|
SharedModule,
|
|
9974
10055
|
ngxWebcam.WebcamModule,
|
|
9975
10056
|
i1$2.NgxFileUploaderModule
|
|
@@ -10421,7 +10502,7 @@
|
|
|
10421
10502
|
DateTimePickerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: DateTimePickerComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
10422
10503
|
DateTimePickerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: DateTimePickerComponent, selector: "date-time-picker", inputs: { modelValue: "modelValue", showDate: "showDate", showTime: "showTime", showWeeks: "showWeeks", weeks: "weeks" }, outputs: { onDateChange: "onDateChange" }, providers: [
|
|
10423
10504
|
{
|
|
10424
|
-
provide:
|
|
10505
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
10425
10506
|
useExisting: i0.forwardRef(function () { return DateTimePickerComponent; }),
|
|
10426
10507
|
multi: true
|
|
10427
10508
|
}
|
|
@@ -10434,7 +10515,7 @@
|
|
|
10434
10515
|
styleUrls: ['./date-time-picker.component.css'],
|
|
10435
10516
|
providers: [
|
|
10436
10517
|
{
|
|
10437
|
-
provide:
|
|
10518
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
10438
10519
|
useExisting: i0.forwardRef(function () { return DateTimePickerComponent; }),
|
|
10439
10520
|
multi: true
|
|
10440
10521
|
}
|
|
@@ -10467,16 +10548,16 @@
|
|
|
10467
10548
|
TimePickerComponent,
|
|
10468
10549
|
ModalComponent,
|
|
10469
10550
|
MomentPipe,
|
|
10470
|
-
DateTimePickerComponent], imports: [i1.CommonModule,
|
|
10551
|
+
DateTimePickerComponent], imports: [i1.CommonModule, i20.FormsModule], exports: [DatePickerComponent,
|
|
10471
10552
|
TimePickerComponent,
|
|
10472
10553
|
ModalComponent,
|
|
10473
10554
|
MomentPipe,
|
|
10474
10555
|
DateTimePickerComponent] });
|
|
10475
|
-
DateTimePickerModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: DateTimePickerModule, providers: [], imports: [[i1.CommonModule,
|
|
10556
|
+
DateTimePickerModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: DateTimePickerModule, providers: [], imports: [[i1.CommonModule, i20.FormsModule]] });
|
|
10476
10557
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: DateTimePickerModule, decorators: [{
|
|
10477
10558
|
type: i0.NgModule,
|
|
10478
10559
|
args: [{
|
|
10479
|
-
imports: [i1.CommonModule,
|
|
10560
|
+
imports: [i1.CommonModule, i20.FormsModule],
|
|
10480
10561
|
declarations: [
|
|
10481
10562
|
DatePickerComponent,
|
|
10482
10563
|
TimePickerComponent,
|
|
@@ -10496,7 +10577,7 @@
|
|
|
10496
10577
|
}] });
|
|
10497
10578
|
|
|
10498
10579
|
var OWL_DATETIME_VALUE_ACCESSOR = {
|
|
10499
|
-
provide:
|
|
10580
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
10500
10581
|
useExisting: i0.forwardRef(function () { return OwlDateTimeInlineComponent; }),
|
|
10501
10582
|
multi: true
|
|
10502
10583
|
};
|
|
@@ -11329,12 +11410,12 @@
|
|
|
11329
11410
|
}());
|
|
11330
11411
|
NgxDateTimePickerModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NgxDateTimePickerModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
11331
11412
|
NgxDateTimePickerModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NgxDateTimePickerModule, declarations: [NgxDatetimeComponent], imports: [i1.CommonModule,
|
|
11332
|
-
|
|
11413
|
+
i20.FormsModule,
|
|
11333
11414
|
OwlDateTimeModule,
|
|
11334
11415
|
OwlNativeDateTimeModule], exports: [NgxDatetimeComponent] });
|
|
11335
11416
|
NgxDateTimePickerModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NgxDateTimePickerModule, providers: [], imports: [[
|
|
11336
11417
|
i1.CommonModule,
|
|
11337
|
-
|
|
11418
|
+
i20.FormsModule,
|
|
11338
11419
|
OwlDateTimeModule,
|
|
11339
11420
|
OwlNativeDateTimeModule
|
|
11340
11421
|
]] });
|
|
@@ -11344,7 +11425,7 @@
|
|
|
11344
11425
|
schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
|
|
11345
11426
|
imports: [
|
|
11346
11427
|
i1.CommonModule,
|
|
11347
|
-
|
|
11428
|
+
i20.FormsModule,
|
|
11348
11429
|
OwlDateTimeModule,
|
|
11349
11430
|
OwlNativeDateTimeModule
|
|
11350
11431
|
],
|
|
@@ -11370,7 +11451,6 @@
|
|
|
11370
11451
|
}
|
|
11371
11452
|
AfeNgSelectComponent.prototype.getChangingText = function (event) {
|
|
11372
11453
|
var _this = this;
|
|
11373
|
-
// console.log(event);
|
|
11374
11454
|
this.getData(event).subscribe(function (options) {
|
|
11375
11455
|
_this.question_options = options;
|
|
11376
11456
|
});
|
|
@@ -11396,7 +11476,6 @@
|
|
|
11396
11476
|
this.subject = new rxjs.BehaviorSubject([]);
|
|
11397
11477
|
var OptionsObservable = this.dataSource.searchOptions(searchText);
|
|
11398
11478
|
OptionsObservable.subscribe(function (options) {
|
|
11399
|
-
// console.log('options', options);
|
|
11400
11479
|
var mappedOptions = new Array();
|
|
11401
11480
|
for (var i = 0; i < options.length; i++) {
|
|
11402
11481
|
mappedOptions.push(new Option(options[i]));
|
|
@@ -11413,7 +11492,6 @@
|
|
|
11413
11492
|
this.subjectOption = new rxjs.BehaviorSubject(null);
|
|
11414
11493
|
var OptionObservable = this.dataSource.resolveSelectedValue(value);
|
|
11415
11494
|
OptionObservable.subscribe(function (option) {
|
|
11416
|
-
// console.log('option', option);
|
|
11417
11495
|
_this.subjectOption.next(option);
|
|
11418
11496
|
}, function (error) {
|
|
11419
11497
|
_this.subjectOption.error(error);
|
|
@@ -11428,7 +11506,7 @@
|
|
|
11428
11506
|
AfeNgSelectComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: AfeNgSelectComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
11429
11507
|
AfeNgSelectComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: AfeNgSelectComponent, selector: "afe-ng-select", inputs: { dataSource: "dataSource", multiple: "multiple", extras: "extras" }, providers: [
|
|
11430
11508
|
{
|
|
11431
|
-
provide:
|
|
11509
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
11432
11510
|
useExisting: i0.forwardRef(function () { return AfeNgSelectComponent; }),
|
|
11433
11511
|
multi: true
|
|
11434
11512
|
}
|
|
@@ -11440,7 +11518,7 @@
|
|
|
11440
11518
|
template: "<ng-select\n (searchInputText)=\"getChangingText($event)\"\n (ngModelChange)=\"onValueChange($event)\"\n [options]=\"question_options\"\n [multiple]=\"multiple\"\n >\n </ng-select> ",
|
|
11441
11519
|
providers: [
|
|
11442
11520
|
{
|
|
11443
|
-
provide:
|
|
11521
|
+
provide: i20.NG_VALUE_ACCESSOR,
|
|
11444
11522
|
useExisting: i0.forwardRef(function () { return AfeNgSelectComponent; }),
|
|
11445
11523
|
multi: true
|
|
11446
11524
|
}
|
|
@@ -11463,12 +11541,12 @@
|
|
|
11463
11541
|
if (___namespace.isEmpty(refForms)) {
|
|
11464
11542
|
return formSchema;
|
|
11465
11543
|
}
|
|
11466
|
-
// get all
|
|
11544
|
+
// get all placeholders from the form schema
|
|
11467
11545
|
var placeHolders = this.getAllPlaceholderObjects(formSchema);
|
|
11468
11546
|
if (___namespace.isEmpty(placeHolders)) {
|
|
11469
11547
|
return formSchema;
|
|
11470
11548
|
}
|
|
11471
|
-
// replace all
|
|
11549
|
+
// replace all placeholders
|
|
11472
11550
|
this.replaceAllPlaceholdersWithActualObjects(refForms, placeHolders);
|
|
11473
11551
|
return formSchema;
|
|
11474
11552
|
};
|
|
@@ -11816,7 +11894,7 @@
|
|
|
11816
11894
|
__extends(CheckBoxQuestion, _super);
|
|
11817
11895
|
function CheckBoxQuestion(options) {
|
|
11818
11896
|
var _this = _super.call(this, options) || this;
|
|
11819
|
-
_this.renderingType = 'checkbox'
|
|
11897
|
+
_this.renderingType = 'checkbox';
|
|
11820
11898
|
_this.options = options.options || [];
|
|
11821
11899
|
_this.controlType = exports.AfeControlType.AfeFormControl;
|
|
11822
11900
|
return _this;
|
|
@@ -11824,6 +11902,19 @@
|
|
|
11824
11902
|
return CheckBoxQuestion;
|
|
11825
11903
|
}(QuestionBase));
|
|
11826
11904
|
|
|
11905
|
+
var RadioButtonQuestion = /** @class */ (function (_super) {
|
|
11906
|
+
__extends(RadioButtonQuestion, _super);
|
|
11907
|
+
function RadioButtonQuestion(options) {
|
|
11908
|
+
var _this = _super.call(this, options) || this;
|
|
11909
|
+
_this.renderingType = 'radio';
|
|
11910
|
+
_this.allowRadioUnselect = options.allowRadioUnselect === false;
|
|
11911
|
+
_this.options = options.options || [];
|
|
11912
|
+
_this.controlType = exports.AfeControlType.AfeFormControl;
|
|
11913
|
+
return _this;
|
|
11914
|
+
}
|
|
11915
|
+
return RadioButtonQuestion;
|
|
11916
|
+
}(QuestionBase));
|
|
11917
|
+
|
|
11827
11918
|
var Form = /** @class */ (function () {
|
|
11828
11919
|
function Form(schema, formFactory, questionFactory) {
|
|
11829
11920
|
this.schema = schema;
|
|
@@ -12594,6 +12685,38 @@
|
|
|
12594
12685
|
this.addCalculatorProperty(schemaQuestion, question);
|
|
12595
12686
|
return question;
|
|
12596
12687
|
};
|
|
12688
|
+
QuestionFactory.prototype.toRadioButtonQuestion = function (schemaQuestion) {
|
|
12689
|
+
var question = new RadioButtonQuestion({
|
|
12690
|
+
options: [],
|
|
12691
|
+
type: '',
|
|
12692
|
+
key: ''
|
|
12693
|
+
});
|
|
12694
|
+
question.label = schemaQuestion.label;
|
|
12695
|
+
question.key = schemaQuestion.id;
|
|
12696
|
+
question.extras = schemaQuestion;
|
|
12697
|
+
question.allowRadioUnselect =
|
|
12698
|
+
schemaQuestion.questionOptions.allowRadioUnselect;
|
|
12699
|
+
question.options = schemaQuestion.questionOptions.answers.map(function (obj) {
|
|
12700
|
+
return {
|
|
12701
|
+
label: obj.label,
|
|
12702
|
+
value: obj.concept
|
|
12703
|
+
};
|
|
12704
|
+
});
|
|
12705
|
+
question.options.splice(0, 0);
|
|
12706
|
+
question.renderingType = schemaQuestion.questionOptions.rendering;
|
|
12707
|
+
var mappings = {
|
|
12708
|
+
label: 'label',
|
|
12709
|
+
required: 'required',
|
|
12710
|
+
id: 'key'
|
|
12711
|
+
};
|
|
12712
|
+
question.componentConfigs = schemaQuestion.componentConfigs || [];
|
|
12713
|
+
this.copyProperties(mappings, schemaQuestion, question);
|
|
12714
|
+
this.addDisableOrHideProperty(schemaQuestion, question);
|
|
12715
|
+
this.addAlertProperty(schemaQuestion, question);
|
|
12716
|
+
this.addHistoricalExpressions(schemaQuestion, question);
|
|
12717
|
+
this.addCalculatorProperty(schemaQuestion, question);
|
|
12718
|
+
return question;
|
|
12719
|
+
};
|
|
12597
12720
|
QuestionFactory.prototype.toMultiCheckboxQuestion = function (schemaQuestion) {
|
|
12598
12721
|
var question = new MultiSelectQuestion({
|
|
12599
12722
|
renderType: '',
|
|
@@ -13106,7 +13229,7 @@
|
|
|
13106
13229
|
case 'encounterProvider':
|
|
13107
13230
|
return this.toEncounterProviderQuestion(schema);
|
|
13108
13231
|
case 'radio':
|
|
13109
|
-
return this.
|
|
13232
|
+
return this.toRadioButtonQuestion(schema);
|
|
13110
13233
|
case 'checkbox':
|
|
13111
13234
|
return this.toCheckBoxQuestion(schema);
|
|
13112
13235
|
case 'encounterProvider':
|
|
@@ -13578,7 +13701,6 @@
|
|
|
13578
13701
|
}
|
|
13579
13702
|
}
|
|
13580
13703
|
}
|
|
13581
|
-
// console.log('Deleted Orders ', deleteOrders);
|
|
13582
13704
|
return deleteOrders;
|
|
13583
13705
|
};
|
|
13584
13706
|
OrderValueAdapter.prototype._setOrderNodeValues = function (node, orders) {
|
|
@@ -13595,7 +13717,6 @@
|
|
|
13595
13717
|
childNode.control.setValue(value);
|
|
13596
13718
|
childNode['initialValue'] = value;
|
|
13597
13719
|
childNode['orderNumber'] = order.orderNumber;
|
|
13598
|
-
// console.log('Set Value', node.children[index].control.value, node, childNode);
|
|
13599
13720
|
index++;
|
|
13600
13721
|
}
|
|
13601
13722
|
}
|
|
@@ -14055,7 +14176,6 @@
|
|
|
14055
14176
|
}
|
|
14056
14177
|
});
|
|
14057
14178
|
// void deleted groups
|
|
14058
|
-
// console.log('groupsUuidsAfterEditting', groupsUuidsAfterEditting);
|
|
14059
14179
|
if (nodeAsArray.initialValue && Array.isArray(nodeAsArray.initialValue)) {
|
|
14060
14180
|
___default["default"].each(nodeAsArray.initialValue, function (obs) {
|
|
14061
14181
|
if (groupsUuidsAfterEditting.indexOf(obs.uuid) < 0) {
|
|
@@ -14934,7 +15054,6 @@
|
|
|
14934
15054
|
switch (node.question.extras.type) {
|
|
14935
15055
|
case 'encounterDatetime':
|
|
14936
15056
|
if (payload['encounterDatetime']) {
|
|
14937
|
-
// console.log('date', payload['encounterDatetime']);
|
|
14938
15057
|
node.control.setValue(moment__default["default"](payload['encounterDatetime']).toDate());
|
|
14939
15058
|
node.initialValue = moment__default["default"](payload['encounterDatetime']).toDate();
|
|
14940
15059
|
}
|
|
@@ -15173,12 +15292,12 @@
|
|
|
15173
15292
|
return NgxRemoteSelectModule;
|
|
15174
15293
|
}());
|
|
15175
15294
|
NgxRemoteSelectModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NgxRemoteSelectModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
15176
|
-
NgxRemoteSelectModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NgxRemoteSelectModule, declarations: [RemoteSelectComponent], imports: [i1.CommonModule, i1$3.NgSelectModule,
|
|
15177
|
-
NgxRemoteSelectModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NgxRemoteSelectModule, providers: [], imports: [[i1.CommonModule, i1$3.NgSelectModule,
|
|
15295
|
+
NgxRemoteSelectModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NgxRemoteSelectModule, declarations: [RemoteSelectComponent], imports: [i1.CommonModule, i1$3.NgSelectModule, i20.FormsModule], exports: [RemoteSelectComponent] });
|
|
15296
|
+
NgxRemoteSelectModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NgxRemoteSelectModule, providers: [], imports: [[i1.CommonModule, i1$3.NgSelectModule, i20.FormsModule]] });
|
|
15178
15297
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: NgxRemoteSelectModule, decorators: [{
|
|
15179
15298
|
type: i0.NgModule,
|
|
15180
15299
|
args: [{
|
|
15181
|
-
imports: [i1.CommonModule, i1$3.NgSelectModule,
|
|
15300
|
+
imports: [i1.CommonModule, i1$3.NgSelectModule, i20.FormsModule],
|
|
15182
15301
|
exports: [RemoteSelectComponent],
|
|
15183
15302
|
declarations: [RemoteSelectComponent],
|
|
15184
15303
|
providers: []
|
|
@@ -15191,14 +15310,31 @@
|
|
|
15191
15310
|
return CheckboxModule;
|
|
15192
15311
|
}());
|
|
15193
15312
|
CheckboxModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CheckboxModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
15194
|
-
CheckboxModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CheckboxModule, declarations: [CheckboxControlComponent], imports: [i1.CommonModule,
|
|
15195
|
-
CheckboxModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CheckboxModule, imports: [[i1.CommonModule,
|
|
15313
|
+
CheckboxModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CheckboxModule, declarations: [CheckboxControlComponent], imports: [i1.CommonModule, i20.FormsModule], exports: [CheckboxControlComponent] });
|
|
15314
|
+
CheckboxModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CheckboxModule, imports: [[i1.CommonModule, i20.FormsModule]] });
|
|
15196
15315
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CheckboxModule, decorators: [{
|
|
15197
15316
|
type: i0.NgModule,
|
|
15198
15317
|
args: [{
|
|
15199
15318
|
declarations: [CheckboxControlComponent],
|
|
15200
15319
|
exports: [CheckboxControlComponent],
|
|
15201
|
-
imports: [i1.CommonModule,
|
|
15320
|
+
imports: [i1.CommonModule, i20.FormsModule]
|
|
15321
|
+
}]
|
|
15322
|
+
}] });
|
|
15323
|
+
|
|
15324
|
+
var RadioModule = /** @class */ (function () {
|
|
15325
|
+
function RadioModule() {
|
|
15326
|
+
}
|
|
15327
|
+
return RadioModule;
|
|
15328
|
+
}());
|
|
15329
|
+
RadioModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
15330
|
+
RadioModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioModule, declarations: [RadioButtonControlComponent], imports: [i1.CommonModule, i20.FormsModule], exports: [RadioButtonControlComponent] });
|
|
15331
|
+
RadioModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioModule, imports: [[i1.CommonModule, i20.FormsModule]] });
|
|
15332
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RadioModule, decorators: [{
|
|
15333
|
+
type: i0.NgModule,
|
|
15334
|
+
args: [{
|
|
15335
|
+
declarations: [RadioButtonControlComponent],
|
|
15336
|
+
exports: [RadioButtonControlComponent],
|
|
15337
|
+
imports: [i1.CommonModule, i20.FormsModule]
|
|
15202
15338
|
}]
|
|
15203
15339
|
}] });
|
|
15204
15340
|
|
|
@@ -15264,14 +15400,14 @@
|
|
|
15264
15400
|
return SelectModule;
|
|
15265
15401
|
}());
|
|
15266
15402
|
SelectModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SelectModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
15267
|
-
SelectModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SelectModule, declarations: [Select, Option$1, OptGroup], imports: [i1.CommonModule,
|
|
15268
|
-
SelectModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SelectModule, imports: [[i1.CommonModule,
|
|
15403
|
+
SelectModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SelectModule, declarations: [Select, Option$1, OptGroup], imports: [i1.CommonModule, i20.FormsModule], exports: [Select, Option$1, OptGroup] });
|
|
15404
|
+
SelectModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SelectModule, imports: [[i1.CommonModule, i20.FormsModule]] });
|
|
15269
15405
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SelectModule, decorators: [{
|
|
15270
15406
|
type: i0.NgModule,
|
|
15271
15407
|
args: [{
|
|
15272
15408
|
declarations: [Select, Option$1, OptGroup],
|
|
15273
15409
|
exports: [Select, Option$1, OptGroup],
|
|
15274
|
-
imports: [i1.CommonModule,
|
|
15410
|
+
imports: [i1.CommonModule, i20.FormsModule]
|
|
15275
15411
|
}]
|
|
15276
15412
|
}] });
|
|
15277
15413
|
|
|
@@ -15403,14 +15539,14 @@
|
|
|
15403
15539
|
return InputModule;
|
|
15404
15540
|
}());
|
|
15405
15541
|
InputModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: InputModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
15406
|
-
InputModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: InputModule, declarations: [Label, TextInput, TextArea], imports: [i1.CommonModule,
|
|
15407
|
-
InputModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: InputModule, imports: [[i1.CommonModule,
|
|
15542
|
+
InputModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: InputModule, declarations: [Label, TextInput, TextArea], imports: [i1.CommonModule, i20.FormsModule], exports: [Label, TextInput, TextArea] });
|
|
15543
|
+
InputModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: InputModule, imports: [[i1.CommonModule, i20.FormsModule]] });
|
|
15408
15544
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: InputModule, decorators: [{
|
|
15409
15545
|
type: i0.NgModule,
|
|
15410
15546
|
args: [{
|
|
15411
15547
|
declarations: [Label, TextInput, TextArea],
|
|
15412
15548
|
exports: [Label, TextInput, TextArea],
|
|
15413
|
-
imports: [i1.CommonModule,
|
|
15549
|
+
imports: [i1.CommonModule, i20.FormsModule]
|
|
15414
15550
|
}]
|
|
15415
15551
|
}] });
|
|
15416
15552
|
|
|
@@ -15420,13 +15556,13 @@
|
|
|
15420
15556
|
return CustomControlWrapperModule;
|
|
15421
15557
|
}());
|
|
15422
15558
|
CustomControlWrapperModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CustomControlWrapperModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
15423
|
-
CustomControlWrapperModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CustomControlWrapperModule, declarations: [CustomControlWrapperComponent], imports: [i1.CommonModule,
|
|
15424
|
-
CustomControlWrapperModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CustomControlWrapperModule, providers: [], imports: [[i1.CommonModule,
|
|
15559
|
+
CustomControlWrapperModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CustomControlWrapperModule, declarations: [CustomControlWrapperComponent], imports: [i1.CommonModule, i20.FormsModule, i2.LazyElementsModule], exports: [CustomControlWrapperComponent] });
|
|
15560
|
+
CustomControlWrapperModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CustomControlWrapperModule, providers: [], imports: [[i1.CommonModule, i20.FormsModule, i2.LazyElementsModule]] });
|
|
15425
15561
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: CustomControlWrapperModule, decorators: [{
|
|
15426
15562
|
type: i0.NgModule,
|
|
15427
15563
|
args: [{
|
|
15428
15564
|
schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
|
|
15429
|
-
imports: [i1.CommonModule,
|
|
15565
|
+
imports: [i1.CommonModule, i20.FormsModule, i2.LazyElementsModule],
|
|
15430
15566
|
exports: [CustomControlWrapperComponent],
|
|
15431
15567
|
declarations: [CustomControlWrapperComponent],
|
|
15432
15568
|
providers: []
|
|
@@ -15465,7 +15601,7 @@
|
|
|
15465
15601
|
ErrorRendererComponent,
|
|
15466
15602
|
TimeAgoPipe,
|
|
15467
15603
|
CollapseDirective], imports: [i1.CommonModule,
|
|
15468
|
-
|
|
15604
|
+
i20.ReactiveFormsModule,
|
|
15469
15605
|
SelectModule,
|
|
15470
15606
|
i1$3.NgSelectModule,
|
|
15471
15607
|
NumberInputModule,
|
|
@@ -15475,6 +15611,7 @@
|
|
|
15475
15611
|
// NoopAnimationsModule,
|
|
15476
15612
|
RemoteFileUploadModule,
|
|
15477
15613
|
CheckboxModule,
|
|
15614
|
+
RadioModule,
|
|
15478
15615
|
NgxDateTimePickerModule,
|
|
15479
15616
|
SharedModule,
|
|
15480
15617
|
CustomControlWrapperModule,
|
|
@@ -15484,7 +15621,7 @@
|
|
|
15484
15621
|
DateTimePickerModule,
|
|
15485
15622
|
NgxDateTimePickerModule] });
|
|
15486
15623
|
FormEntryModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: FormEntryModule, providers: [
|
|
15487
|
-
|
|
15624
|
+
i20.FormBuilder,
|
|
15488
15625
|
FormControlService,
|
|
15489
15626
|
FormErrorsService,
|
|
15490
15627
|
ValidationFactory,
|
|
@@ -15506,7 +15643,7 @@
|
|
|
15506
15643
|
DebugModeService
|
|
15507
15644
|
], imports: [[
|
|
15508
15645
|
i1.CommonModule,
|
|
15509
|
-
|
|
15646
|
+
i20.ReactiveFormsModule,
|
|
15510
15647
|
SelectModule,
|
|
15511
15648
|
i1$3.NgSelectModule,
|
|
15512
15649
|
NumberInputModule,
|
|
@@ -15516,6 +15653,7 @@
|
|
|
15516
15653
|
// NoopAnimationsModule,
|
|
15517
15654
|
RemoteFileUploadModule,
|
|
15518
15655
|
CheckboxModule,
|
|
15656
|
+
RadioModule,
|
|
15519
15657
|
NgxDateTimePickerModule,
|
|
15520
15658
|
SharedModule,
|
|
15521
15659
|
CustomControlWrapperModule,
|
|
@@ -15529,7 +15667,7 @@
|
|
|
15529
15667
|
schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
|
|
15530
15668
|
imports: [
|
|
15531
15669
|
i1.CommonModule,
|
|
15532
|
-
|
|
15670
|
+
i20.ReactiveFormsModule,
|
|
15533
15671
|
SelectModule,
|
|
15534
15672
|
i1$3.NgSelectModule,
|
|
15535
15673
|
NumberInputModule,
|
|
@@ -15539,6 +15677,7 @@
|
|
|
15539
15677
|
// NoopAnimationsModule,
|
|
15540
15678
|
RemoteFileUploadModule,
|
|
15541
15679
|
CheckboxModule,
|
|
15680
|
+
RadioModule,
|
|
15542
15681
|
NgxDateTimePickerModule,
|
|
15543
15682
|
SharedModule,
|
|
15544
15683
|
CustomControlWrapperModule,
|
|
@@ -15555,7 +15694,7 @@
|
|
|
15555
15694
|
CollapseDirective
|
|
15556
15695
|
],
|
|
15557
15696
|
providers: [
|
|
15558
|
-
|
|
15697
|
+
i20.FormBuilder,
|
|
15559
15698
|
FormControlService,
|
|
15560
15699
|
FormErrorsService,
|
|
15561
15700
|
ValidationFactory,
|