@huntsman-cancer-institute/input 15.0.3 → 16.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/date/date-date-range.component.d.ts +1 -1
- package/date/date-date.component.d.ts +1 -1
- package/dropdown/dropdown-select-result.component.d.ts +1 -1
- package/dropdown/dropdown-select.component.d.ts +1 -1
- package/dropdown/dropdown.component.d.ts +1 -1
- package/{esm2020 → esm2022}/date/date-base.mjs +4 -4
- package/{esm2020 → esm2022}/date/date-date-range.component.mjs +6 -6
- package/{esm2020 → esm2022}/date/date-date.component.mjs +6 -6
- package/esm2022/date/date-validator.mjs +40 -0
- package/{esm2020 → esm2022}/date/date.module.mjs +23 -23
- package/{esm2020 → esm2022}/dropdown/dropdown-select-result.component.mjs +6 -6
- package/{esm2020 → esm2022}/dropdown/dropdown-select.component.mjs +6 -6
- package/{esm2020 → esm2022}/dropdown/dropdown.component.mjs +6 -6
- package/{esm2020 → esm2022}/dropdown/dropdown.module.mjs +17 -17
- package/{esm2020 → esm2022}/dropdown/dropdown.service.mjs +4 -4
- package/esm2022/dropdown/messages.mjs +10 -0
- package/{esm2020 → esm2022}/dropdown/template-dropdown.directive.mjs +4 -4
- package/{esm2020 → esm2022}/inline/inline.component.mjs +12 -12
- package/{esm2020 → esm2022}/inline/inline.module.mjs +7 -7
- package/{esm2020 → esm2022}/search/search.component.mjs +6 -6
- package/{esm2020 → esm2022}/search/search.module.mjs +9 -9
- package/{esm2020 → esm2022}/select/custom-combobox.component.mjs +10 -10
- package/{esm2020 → esm2022}/select/custom-multi-combobox.component.mjs +10 -10
- package/{esm2020 → esm2022}/select/md-multi-select.component.mjs +12 -12
- package/{esm2020 → esm2022}/select/md-select.component.mjs +12 -12
- package/{esm2020 → esm2022}/select/native-select.component.mjs +12 -12
- package/{esm2020 → esm2022}/select/select.module.mjs +33 -33
- package/{fesm2020 → fesm2022}/huntsman-cancer-institute-input.mjs +191 -191
- package/{fesm2020 → fesm2022}/huntsman-cancer-institute-input.mjs.map +1 -1
- package/inline/inline.component.d.ts +1 -1
- package/package.json +13 -17
- package/search/search.component.d.ts +1 -1
- package/select/custom-combobox.component.d.ts +1 -1
- package/select/custom-multi-combobox.component.d.ts +1 -1
- package/select/md-multi-select.component.d.ts +1 -1
- package/select/md-select.component.d.ts +1 -1
- package/select/native-select.component.d.ts +1 -1
- package/esm2020/date/date-validator.mjs +0 -40
- package/esm2020/dropdown/messages.mjs +0 -10
- package/fesm2015/huntsman-cancer-institute-input.mjs +0 -3697
- package/fesm2015/huntsman-cancer-institute-input.mjs.map +0 -1
- /package/{esm2020 → esm2022}/dropdown/dropdown-index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/select-item.mjs +0 -0
- /package/{esm2020 → esm2022}/huntsman-cancer-institute-input.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
|
@@ -93,9 +93,8 @@ class DropdownSelectResultComponent {
|
|
|
93
93
|
this.activeIndex = 0;
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
DropdownSelectResultComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DropdownSelectResultComponent, selector: "hci-dropdown-select-result", inputs: { items: "items", searchFocused: "searchFocused", selectedItems: "selectedItems", templateRef: "templateRef" }, outputs: { itemSelectedEvent: "itemSelectedEvent" }, ngImport: i0, template: `
|
|
96
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownSelectResultComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
97
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DropdownSelectResultComponent, selector: "hci-dropdown-select-result", inputs: { items: "items", searchFocused: "searchFocused", selectedItems: "selectedItems", templateRef: "templateRef" }, outputs: { itemSelectedEvent: "itemSelectedEvent" }, ngImport: i0, template: `
|
|
99
98
|
<div class="select-results-container" *ngIf="items !== undefined && items.length > 0" id="resultsContainer">
|
|
100
99
|
<div *ngFor="let item of items; let i = index;"
|
|
101
100
|
class="select-result" id="item-{{i}}"
|
|
@@ -108,8 +107,9 @@ DropdownSelectResultComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "1
|
|
|
108
107
|
<ng-container *ngIf="!templateRef">{{item.text}}</ng-container>
|
|
109
108
|
</div>
|
|
110
109
|
</div>
|
|
111
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
112
|
-
|
|
110
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
111
|
+
}
|
|
112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownSelectResultComponent, decorators: [{
|
|
113
113
|
type: Component,
|
|
114
114
|
args: [{
|
|
115
115
|
selector: "hci-dropdown-select-result",
|
|
@@ -158,9 +158,9 @@ const KEY_CODE = Object.freeze({
|
|
|
158
158
|
* @since 5.0.0
|
|
159
159
|
*/
|
|
160
160
|
class Messages {
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
|
|
161
|
+
static { this.PARTIAL_COUNT_VAR = "%PARTIAL_COUNT%"; }
|
|
162
|
+
static { this.TOTAL_COUNT_VAR = "%TOTAL_COUNT%"; }
|
|
163
|
+
}
|
|
164
164
|
|
|
165
165
|
const VALUE_ACCESSOR = {
|
|
166
166
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -461,9 +461,8 @@ class DropdownSelectComponent {
|
|
|
461
461
|
});
|
|
462
462
|
}
|
|
463
463
|
}
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
DropdownSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DropdownSelectComponent, selector: "hci-dropdown-select", inputs: { messages: "messages", dataProvider: "dataProvider", selectedProvider: "selectedProvider", selectItemAdapter: "selectItemAdapter", referenceMode: "referenceMode", placeholder: "placeholder", disabled: "disabled", multiple: "multiple", clientMode: "clientMode", deleteIcon: "deleteIcon", inputState: "inputState", resultsCount: "resultsCount", searchDelay: "searchDelay" }, outputs: { select: "select", remove: "remove" }, host: { classAttribute: "flex-grow-1" }, providers: [VALUE_ACCESSOR], viewQueries: [{ propertyName: "results", first: true, predicate: ["results"], descendants: true }, { propertyName: "termInput", first: true, predicate: ["termInput"], descendants: true }], ngImport: i0, template: `
|
|
464
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownSelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
465
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DropdownSelectComponent, selector: "hci-dropdown-select", inputs: { messages: "messages", dataProvider: "dataProvider", selectedProvider: "selectedProvider", selectItemAdapter: "selectItemAdapter", referenceMode: "referenceMode", placeholder: "placeholder", disabled: "disabled", multiple: "multiple", clientMode: "clientMode", deleteIcon: "deleteIcon", inputState: "inputState", resultsCount: "resultsCount", searchDelay: "searchDelay" }, outputs: { select: "select", remove: "remove" }, host: { classAttribute: "flex-grow-1" }, providers: [VALUE_ACCESSOR], viewQueries: [{ propertyName: "results", first: true, predicate: ["results"], descendants: true }, { propertyName: "termInput", first: true, predicate: ["termInput"], descendants: true }], ngImport: i0, template: `
|
|
467
466
|
<div class="select-container">
|
|
468
467
|
<ul class="form-control"
|
|
469
468
|
[class.simple-selection]="!multiple"
|
|
@@ -513,8 +512,9 @@ DropdownSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
513
512
|
[searchFocused]="searchFocused"></hci-dropdown-select-result>
|
|
514
513
|
</div>
|
|
515
514
|
</div>
|
|
516
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: DropdownSelectResultComponent, selector: "hci-dropdown-select-result", inputs: ["items", "searchFocused", "selectedItems", "templateRef"], outputs: ["itemSelectedEvent"] }] });
|
|
517
|
-
|
|
515
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: DropdownSelectResultComponent, selector: "hci-dropdown-select-result", inputs: ["items", "searchFocused", "selectedItems", "templateRef"], outputs: ["itemSelectedEvent"] }] }); }
|
|
516
|
+
}
|
|
517
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownSelectComponent, decorators: [{
|
|
518
518
|
type: Component,
|
|
519
519
|
args: [{
|
|
520
520
|
selector: "hci-dropdown-select",
|
|
@@ -620,10 +620,10 @@ class TemplateDropdownDirective {
|
|
|
620
620
|
host.templateRef = templateRef;
|
|
621
621
|
}
|
|
622
622
|
}
|
|
623
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TemplateDropdownDirective, deps: [{ token: i0.TemplateRef }, { token: DropdownSelectComponent, host: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
624
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TemplateDropdownDirective, selector: "[appTemplateDropdown]", ngImport: i0 }); }
|
|
623
625
|
}
|
|
624
|
-
|
|
625
|
-
TemplateDropdownDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TemplateDropdownDirective, selector: "[appTemplateDropdown]", ngImport: i0 });
|
|
626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplateDropdownDirective, decorators: [{
|
|
626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TemplateDropdownDirective, decorators: [{
|
|
627
627
|
type: Directive,
|
|
628
628
|
args: [{
|
|
629
629
|
selector: "[appTemplateDropdown]"
|
|
@@ -748,10 +748,10 @@ class DropdownService {
|
|
|
748
748
|
getDataList(urlStr) {
|
|
749
749
|
return this.http.get(this.dictionaryEndpoint + urlStr);
|
|
750
750
|
}
|
|
751
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownService, deps: [{ token: i2$1.HttpClient }, { token: DICTIONARY_ENDPOINT }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
752
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownService }); }
|
|
751
753
|
}
|
|
752
|
-
|
|
753
|
-
DropdownService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropdownService });
|
|
754
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropdownService, decorators: [{
|
|
754
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownService, decorators: [{
|
|
755
755
|
type: Injectable
|
|
756
756
|
}], ctorParameters: function () { return [{ type: i2$1.HttpClient }, { type: undefined, decorators: [{
|
|
757
757
|
type: Inject,
|
|
@@ -877,9 +877,8 @@ class DropdownComponent {
|
|
|
877
877
|
this.modifiedData.push(this.inputSingleData);
|
|
878
878
|
}
|
|
879
879
|
}
|
|
880
|
-
}
|
|
881
|
-
|
|
882
|
-
DropdownComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DropdownComponent, selector: "hci-dropdown", inputs: { inputSingleData: "inputSingleData", inputMultiData: "inputMultiData", modifiedData: "modifiedData", optionData: "optionData", displayField: "displayField", displayId: "displayId", dataUrl: "dataUrl", dropdownType: "dropdownType", placeholder: "placeholder", isDisabled: "isDisabled" }, outputs: { inputSingleDataChange: "inputSingleDataChange", inputMultiDataChange: "inputMultiDataChange" }, providers: [DropdownService], viewQueries: [{ propertyName: "dropdownSingle", first: true, predicate: ["dropdownSingle"], descendants: true }], ngImport: i0, template: `
|
|
880
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownComponent, deps: [{ token: DropdownService }, { token: i2.UntypedFormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
881
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DropdownComponent, selector: "hci-dropdown", inputs: { inputSingleData: "inputSingleData", inputMultiData: "inputMultiData", modifiedData: "modifiedData", optionData: "optionData", displayField: "displayField", displayId: "displayId", dataUrl: "dataUrl", dropdownType: "dropdownType", placeholder: "placeholder", isDisabled: "isDisabled" }, outputs: { inputSingleDataChange: "inputSingleDataChange", inputMultiDataChange: "inputMultiDataChange" }, providers: [DropdownService], viewQueries: [{ propertyName: "dropdownSingle", first: true, predicate: ["dropdownSingle"], descendants: true }], ngImport: i0, template: `
|
|
883
882
|
<form novalidate [formGroup]="dropdownForm">
|
|
884
883
|
<div class="form-group">
|
|
885
884
|
<hci-dropdown-select #dropdownSingle *ngIf="dropdownType === 0"
|
|
@@ -951,8 +950,9 @@ DropdownComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
951
950
|
</hci-dropdown-select>
|
|
952
951
|
</div>
|
|
953
952
|
</form>
|
|
954
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: TemplateDropdownDirective, selector: "[appTemplateDropdown]" }, { kind: "component", type: DropdownSelectComponent, selector: "hci-dropdown-select", inputs: ["messages", "dataProvider", "selectedProvider", "selectItemAdapter", "referenceMode", "placeholder", "disabled", "multiple", "clientMode", "deleteIcon", "inputState", "resultsCount", "searchDelay"], outputs: ["select", "remove"] }] });
|
|
955
|
-
|
|
953
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: TemplateDropdownDirective, selector: "[appTemplateDropdown]" }, { kind: "component", type: DropdownSelectComponent, selector: "hci-dropdown-select", inputs: ["messages", "dataProvider", "selectedProvider", "selectItemAdapter", "referenceMode", "placeholder", "disabled", "multiple", "clientMode", "deleteIcon", "inputState", "resultsCount", "searchDelay"], outputs: ["select", "remove"] }] }); }
|
|
954
|
+
}
|
|
955
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownComponent, decorators: [{
|
|
956
956
|
type: Component,
|
|
957
957
|
args: [{
|
|
958
958
|
selector: "hci-dropdown",
|
|
@@ -1061,23 +1061,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1061
1061
|
}] } });
|
|
1062
1062
|
|
|
1063
1063
|
class DropdownModule {
|
|
1064
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1065
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DropdownModule, declarations: [TemplateDropdownDirective,
|
|
1066
|
+
DropdownSelectComponent,
|
|
1067
|
+
DropdownComponent,
|
|
1068
|
+
DropdownSelectResultComponent], imports: [CommonModule,
|
|
1069
|
+
FormsModule,
|
|
1070
|
+
ReactiveFormsModule,
|
|
1071
|
+
NgbModule], exports: [TemplateDropdownDirective,
|
|
1072
|
+
DropdownSelectComponent,
|
|
1073
|
+
DropdownComponent,
|
|
1074
|
+
DropdownSelectResultComponent] }); }
|
|
1075
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownModule, imports: [CommonModule,
|
|
1076
|
+
FormsModule,
|
|
1077
|
+
ReactiveFormsModule,
|
|
1078
|
+
NgbModule] }); }
|
|
1064
1079
|
}
|
|
1065
|
-
|
|
1066
|
-
DropdownModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DropdownModule, declarations: [TemplateDropdownDirective,
|
|
1067
|
-
DropdownSelectComponent,
|
|
1068
|
-
DropdownComponent,
|
|
1069
|
-
DropdownSelectResultComponent], imports: [CommonModule,
|
|
1070
|
-
FormsModule,
|
|
1071
|
-
ReactiveFormsModule,
|
|
1072
|
-
NgbModule], exports: [TemplateDropdownDirective,
|
|
1073
|
-
DropdownSelectComponent,
|
|
1074
|
-
DropdownComponent,
|
|
1075
|
-
DropdownSelectResultComponent] });
|
|
1076
|
-
DropdownModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropdownModule, imports: [CommonModule,
|
|
1077
|
-
FormsModule,
|
|
1078
|
-
ReactiveFormsModule,
|
|
1079
|
-
NgbModule] });
|
|
1080
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropdownModule, decorators: [{
|
|
1080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownModule, decorators: [{
|
|
1081
1081
|
type: NgModule,
|
|
1082
1082
|
args: [{
|
|
1083
1083
|
imports: [
|
|
@@ -1102,6 +1102,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1102
1102
|
}] });
|
|
1103
1103
|
|
|
1104
1104
|
class DateValidator {
|
|
1105
|
+
static { this.minValue = undefined; }
|
|
1106
|
+
static { this.maxValue = undefined; }
|
|
1105
1107
|
static dateFormatValidator(ac) {
|
|
1106
1108
|
if (ac && ac.value && !moment(ac.value, "M/D/YYYY", true).isValid()) {
|
|
1107
1109
|
return { "dateFormatValidator": true };
|
|
@@ -1136,9 +1138,7 @@ class DateValidator {
|
|
|
1136
1138
|
}
|
|
1137
1139
|
return false;
|
|
1138
1140
|
}
|
|
1139
|
-
}
|
|
1140
|
-
DateValidator.minValue = undefined;
|
|
1141
|
-
DateValidator.maxValue = undefined;
|
|
1141
|
+
}
|
|
1142
1142
|
|
|
1143
1143
|
/**
|
|
1144
1144
|
* Copyright (c) 2016 Huntsman Cancer Institute at the University of Utah, Confidential and Proprietary
|
|
@@ -1245,10 +1245,10 @@ class DateBase {
|
|
|
1245
1245
|
this.updateInternalDataFromModel();
|
|
1246
1246
|
this.state = 0;
|
|
1247
1247
|
}
|
|
1248
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1249
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateBase }); }
|
|
1248
1250
|
}
|
|
1249
|
-
|
|
1250
|
-
DateBase.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateBase });
|
|
1251
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateBase, decorators: [{
|
|
1251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateBase, decorators: [{
|
|
1252
1252
|
type: Injectable
|
|
1253
1253
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
1254
1254
|
|
|
@@ -1404,9 +1404,8 @@ class DateComponent extends DateBase {
|
|
|
1404
1404
|
}
|
|
1405
1405
|
return date.year + "-" + ((date.month < 10) ? "0" : "") + date.month + "-" + ((date.day < 10) ? "0" : "") + date.day + "T12:00-06:00";
|
|
1406
1406
|
}
|
|
1407
|
-
}
|
|
1408
|
-
|
|
1409
|
-
DateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateComponent, selector: "hci-date", inputs: { dateFormat: "dateFormat", minDate: "minDate", maxDate: "maxDate", label: "label", inputData: "inputData", modifiedData: "modifiedData" }, outputs: { inputDataChange: "inputDataChange" }, host: { listeners: { "document:click": "handleOutsideEvent($event)" } }, providers: [DatePipe, DateValidator], viewQueries: [{ propertyName: "dp", first: true, predicate: ["dp"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
1407
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateComponent, deps: [{ token: i0.ElementRef }, { token: i2.UntypedFormBuilder }, { token: i1.DatePipe }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1408
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DateComponent, selector: "hci-date", inputs: { dateFormat: "dateFormat", minDate: "minDate", maxDate: "maxDate", label: "label", inputData: "inputData", modifiedData: "modifiedData" }, outputs: { inputDataChange: "inputDataChange" }, host: { listeners: { "document:click": "handleOutsideEvent($event)" } }, providers: [DatePipe, DateValidator], viewQueries: [{ propertyName: "dp", first: true, predicate: ["dp"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
1410
1409
|
<div class="form-group">
|
|
1411
1410
|
<div class="input-group d-flex">
|
|
1412
1411
|
<form [formGroup]="dateForm" class="flex-grow-1">
|
|
@@ -1467,8 +1466,9 @@ DateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
1467
1466
|
</div>
|
|
1468
1467
|
</div>
|
|
1469
1468
|
|
|
1470
|
-
`, isInline: true, styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i3.NgbDatepicker, selector: "ngb-datepicker", inputs: ["dayTemplate", "dayTemplateData", "displayMonths", "firstDayOfWeek", "footerTemplate", "markDisabled", "maxDate", "minDate", "navigation", "outsideDays", "showWeekNumbers", "startDate", "weekdays"], outputs: ["navigate", "dateSelect"], exportAs: ["ngbDatepicker"] }] });
|
|
1471
|
-
|
|
1469
|
+
`, isInline: true, styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i3.NgbDatepicker, selector: "ngb-datepicker", inputs: ["contentTemplate", "dayTemplate", "dayTemplateData", "displayMonths", "firstDayOfWeek", "footerTemplate", "markDisabled", "maxDate", "minDate", "navigation", "outsideDays", "showWeekNumbers", "startDate", "weekdays"], outputs: ["navigate", "dateSelect"], exportAs: ["ngbDatepicker"] }] }); }
|
|
1470
|
+
}
|
|
1471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateComponent, decorators: [{
|
|
1472
1472
|
type: Component,
|
|
1473
1473
|
args: [{ selector: "hci-date", providers: [DatePipe, DateValidator], template: `
|
|
1474
1474
|
<div class="form-group">
|
|
@@ -1609,9 +1609,8 @@ class DateRangeComponent {
|
|
|
1609
1609
|
this.minEndDate = { year: startDate.getFullYear(), month: startDate.getMonth() + 1, day: startDate.getDate() };
|
|
1610
1610
|
}
|
|
1611
1611
|
}
|
|
1612
|
-
}
|
|
1613
|
-
|
|
1614
|
-
DateRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateRangeComponent, selector: "hci-date-range", inputs: { dateFormat: "dateFormat", inputStartData: "inputStartData", inputEndData: "inputEndData", startLabel: "startLabel", endLabel: "endLabel", minStartDate: "minStartDate" }, outputs: { inputDataChange: "inputDataChange" }, viewQueries: [{ propertyName: "sp", first: true, predicate: ["startdate"], descendants: true, static: true }, { propertyName: "ep", first: true, predicate: ["enddate"], descendants: true, static: true }], ngImport: i0, template: `
|
|
1612
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateRangeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1613
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DateRangeComponent, selector: "hci-date-range", inputs: { dateFormat: "dateFormat", inputStartData: "inputStartData", inputEndData: "inputEndData", startLabel: "startLabel", endLabel: "endLabel", minStartDate: "minStartDate" }, outputs: { inputDataChange: "inputDataChange" }, viewQueries: [{ propertyName: "sp", first: true, predicate: ["startdate"], descendants: true, static: true }, { propertyName: "ep", first: true, predicate: ["enddate"], descendants: true, static: true }], ngImport: i0, template: `
|
|
1615
1614
|
<div class="d-flex flex-wrap date-range">
|
|
1616
1615
|
<hci-date #startdate
|
|
1617
1616
|
class="date"
|
|
@@ -1632,8 +1631,9 @@ DateRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
1632
1631
|
[maxDate]="maxEndDate">
|
|
1633
1632
|
</hci-date>
|
|
1634
1633
|
</div>
|
|
1635
|
-
`, isInline: true, dependencies: [{ kind: "component", type: DateComponent, selector: "hci-date", inputs: ["dateFormat", "minDate", "maxDate", "label", "inputData", "modifiedData"], outputs: ["inputDataChange"] }] });
|
|
1636
|
-
|
|
1634
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DateComponent, selector: "hci-date", inputs: ["dateFormat", "minDate", "maxDate", "label", "inputData", "modifiedData"], outputs: ["inputDataChange"] }] }); }
|
|
1635
|
+
}
|
|
1636
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateRangeComponent, decorators: [{
|
|
1637
1637
|
type: Component,
|
|
1638
1638
|
args: [{
|
|
1639
1639
|
selector: "hci-date-range",
|
|
@@ -1683,29 +1683,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1683
1683
|
}] } });
|
|
1684
1684
|
|
|
1685
1685
|
class DateModule {
|
|
1686
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1687
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DateModule, declarations: [DateComponent,
|
|
1688
|
+
DateRangeComponent], imports: [CommonModule,
|
|
1689
|
+
FormsModule,
|
|
1690
|
+
ReactiveFormsModule,
|
|
1691
|
+
NgbModule,
|
|
1692
|
+
MatLegacyTabsModule,
|
|
1693
|
+
MatLegacyFormFieldModule,
|
|
1694
|
+
MatDatepickerModule,
|
|
1695
|
+
MatNativeDateModule,
|
|
1696
|
+
MatLegacyInputModule], exports: [DateComponent,
|
|
1697
|
+
DateRangeComponent] }); }
|
|
1698
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateModule, imports: [CommonModule,
|
|
1699
|
+
FormsModule,
|
|
1700
|
+
ReactiveFormsModule,
|
|
1701
|
+
NgbModule,
|
|
1702
|
+
MatLegacyTabsModule,
|
|
1703
|
+
MatLegacyFormFieldModule,
|
|
1704
|
+
MatDatepickerModule,
|
|
1705
|
+
MatNativeDateModule,
|
|
1706
|
+
MatLegacyInputModule] }); }
|
|
1686
1707
|
}
|
|
1687
|
-
|
|
1688
|
-
DateModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DateModule, declarations: [DateComponent,
|
|
1689
|
-
DateRangeComponent], imports: [CommonModule,
|
|
1690
|
-
FormsModule,
|
|
1691
|
-
ReactiveFormsModule,
|
|
1692
|
-
NgbModule,
|
|
1693
|
-
MatLegacyTabsModule,
|
|
1694
|
-
MatLegacyFormFieldModule,
|
|
1695
|
-
MatDatepickerModule,
|
|
1696
|
-
MatNativeDateModule,
|
|
1697
|
-
MatLegacyInputModule], exports: [DateComponent,
|
|
1698
|
-
DateRangeComponent] });
|
|
1699
|
-
DateModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateModule, imports: [CommonModule,
|
|
1700
|
-
FormsModule,
|
|
1701
|
-
ReactiveFormsModule,
|
|
1702
|
-
NgbModule,
|
|
1703
|
-
MatLegacyTabsModule,
|
|
1704
|
-
MatLegacyFormFieldModule,
|
|
1705
|
-
MatDatepickerModule,
|
|
1706
|
-
MatNativeDateModule,
|
|
1707
|
-
MatLegacyInputModule] });
|
|
1708
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateModule, decorators: [{
|
|
1708
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateModule, decorators: [{
|
|
1709
1709
|
type: NgModule,
|
|
1710
1710
|
args: [{
|
|
1711
1711
|
imports: [
|
|
@@ -1870,15 +1870,14 @@ class InlineComponent {
|
|
|
1870
1870
|
}
|
|
1871
1871
|
}
|
|
1872
1872
|
}
|
|
1873
|
-
}
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
}
|
|
1881
|
-
], queries: [{ propertyName: "renderTemplate", first: true, predicate: ["renderTemplate"], descendants: true, read: TemplateRef, static: true }, { propertyName: "contentChild", first: true, predicate: ["input"], descendants: true, read: NgModel }], ngImport: i0, template: `
|
|
1873
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InlineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1874
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: InlineComponent, selector: "hci-inline-input", inputs: { noValueMessage: "noValueMessage" }, host: { listeners: { "document:click": "documentClick($event)" } }, providers: [
|
|
1875
|
+
{
|
|
1876
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1877
|
+
useExisting: forwardRef(() => InlineComponent),
|
|
1878
|
+
multi: true
|
|
1879
|
+
}
|
|
1880
|
+
], queries: [{ propertyName: "renderTemplate", first: true, predicate: ["renderTemplate"], descendants: true, read: TemplateRef, static: true }, { propertyName: "contentChild", first: true, predicate: ["input"], descendants: true, read: NgModel }], ngImport: i0, template: `
|
|
1882
1881
|
<div *ngIf="!editMode; else editTemplate"
|
|
1883
1882
|
(click)="setEditMode($event, true)"
|
|
1884
1883
|
class="edit-false pl-1">
|
|
@@ -1913,8 +1912,9 @@ InlineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
1913
1912
|
</div>
|
|
1914
1913
|
</div>
|
|
1915
1914
|
</ng-template>
|
|
1916
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
1917
|
-
|
|
1915
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
1916
|
+
}
|
|
1917
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InlineComponent, decorators: [{
|
|
1918
1918
|
type: Component,
|
|
1919
1919
|
args: [{
|
|
1920
1920
|
selector: "hci-inline-input",
|
|
@@ -1976,13 +1976,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1976
1976
|
}] } });
|
|
1977
1977
|
|
|
1978
1978
|
class InlineModule {
|
|
1979
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InlineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1980
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: InlineModule, declarations: [InlineComponent], imports: [CommonModule,
|
|
1981
|
+
FormsModule], exports: [InlineComponent] }); }
|
|
1982
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InlineModule, imports: [CommonModule,
|
|
1983
|
+
FormsModule] }); }
|
|
1979
1984
|
}
|
|
1980
|
-
|
|
1981
|
-
InlineModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: InlineModule, declarations: [InlineComponent], imports: [CommonModule,
|
|
1982
|
-
FormsModule], exports: [InlineComponent] });
|
|
1983
|
-
InlineModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InlineModule, imports: [CommonModule,
|
|
1984
|
-
FormsModule] });
|
|
1985
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InlineModule, decorators: [{
|
|
1985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InlineModule, decorators: [{
|
|
1986
1986
|
type: NgModule,
|
|
1987
1987
|
args: [{
|
|
1988
1988
|
imports: [
|
|
@@ -2048,15 +2048,14 @@ class MdSelectComponent {
|
|
|
2048
2048
|
registerOnTouched(callback) {
|
|
2049
2049
|
this.onTouchedCallback = callback;
|
|
2050
2050
|
}
|
|
2051
|
-
}
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
], ngImport: i0, template: `
|
|
2051
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MdSelectComponent, deps: [{ token: i1$1.DictionaryService }, { token: i2$1.HttpClient }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2052
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: MdSelectComponent, selector: "hci-md-select", inputs: { classList: ["class", "classList"], name: "name", label: "label", url: "url", className: "className", entries: "entries", required: "required", idKey: "idKey", displayKey: "displayKey" }, host: { properties: { "class": "this.classList" } }, providers: [
|
|
2053
|
+
{
|
|
2054
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2055
|
+
useExisting: forwardRef(() => MdSelectComponent),
|
|
2056
|
+
multi: true
|
|
2057
|
+
}
|
|
2058
|
+
], ngImport: i0, template: `
|
|
2060
2059
|
<mat-form-field>
|
|
2061
2060
|
<mat-label>{{label}}</mat-label>
|
|
2062
2061
|
<mat-select [(value)]="value" [required]="required">
|
|
@@ -2064,8 +2063,9 @@ MdSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
2064
2063
|
<mat-option *ngFor="let row of entries" [value]="row[idKey]">{{ row[displayKey] }}</mat-option>
|
|
2065
2064
|
</mat-select>
|
|
2066
2065
|
</mat-form-field>
|
|
2067
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3$1.MatLegacyFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3$1.MatLegacyLabel, selector: "mat-label" }, { kind: "component", type: i6.MatLegacySelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { kind: "component", type: i6$1.MatLegacyOption, selector: "mat-option", exportAs: ["matOption"] }] });
|
|
2068
|
-
|
|
2066
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3$1.MatLegacyFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3$1.MatLegacyLabel, selector: "mat-label" }, { kind: "component", type: i6.MatLegacySelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { kind: "component", type: i6$1.MatLegacyOption, selector: "mat-option", exportAs: ["matOption"] }] }); }
|
|
2067
|
+
}
|
|
2068
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MdSelectComponent, decorators: [{
|
|
2069
2069
|
type: Component,
|
|
2070
2070
|
args: [{
|
|
2071
2071
|
selector: "hci-md-select",
|
|
@@ -2235,15 +2235,14 @@ class NativeSelectComponent {
|
|
|
2235
2235
|
};
|
|
2236
2236
|
}
|
|
2237
2237
|
registerOnTouched(fn) { }
|
|
2238
|
-
}
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
], ngImport: i0, template: `
|
|
2238
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NativeSelectComponent, deps: [{ token: i1$1.DictionaryService }, { token: i2$1.HttpClient }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2239
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: NativeSelectComponent, selector: "hci-native-select", inputs: { classList: ["class", "classList"], name: "name", label: "label", url: "url", entries: "entries", required: "required", idKey: "idKey", displayKey: "displayKey", disabled: "disabled", sortKey: "sortKey", sortNumeric: "sortNumeric", filterKey: "filterKey", filter: "filter" }, host: { properties: { "class": "this.classList" } }, providers: [
|
|
2240
|
+
{
|
|
2241
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2242
|
+
useExisting: forwardRef(() => NativeSelectComponent),
|
|
2243
|
+
multi: true
|
|
2244
|
+
}
|
|
2245
|
+
], ngImport: i0, template: `
|
|
2247
2246
|
<div *ngIf="label" class="label">
|
|
2248
2247
|
{{label}}{{(required) ? " *" : ""}}
|
|
2249
2248
|
</div>
|
|
@@ -2262,8 +2261,9 @@ NativeSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2262
2261
|
{{ row[displayKey] }}
|
|
2263
2262
|
</option>
|
|
2264
2263
|
</select>
|
|
2265
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i2.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i2.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
2266
|
-
|
|
2264
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i2.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i2.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] }); }
|
|
2265
|
+
}
|
|
2266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NativeSelectComponent, decorators: [{
|
|
2267
2267
|
type: Component,
|
|
2268
2268
|
args: [{
|
|
2269
2269
|
selector: "hci-native-select",
|
|
@@ -2398,15 +2398,14 @@ class MdMultiSelectComponent {
|
|
|
2398
2398
|
registerOnTouched(callback) {
|
|
2399
2399
|
this.onTouchedCallback = callback;
|
|
2400
2400
|
}
|
|
2401
|
-
}
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
], ngImport: i0, template: `
|
|
2401
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MdMultiSelectComponent, deps: [{ token: i1$1.DictionaryService }, { token: i2$1.HttpClient }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2402
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: MdMultiSelectComponent, selector: "hci-md-multi-select", inputs: { classList: ["class", "classList"], name: "name", label: "label", url: "url", entries: "entries", required: "required", idKey: "idKey", displayKey: "displayKey" }, host: { properties: { "class": "this.classList" } }, providers: [
|
|
2403
|
+
{
|
|
2404
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2405
|
+
useExisting: forwardRef(() => MdMultiSelectComponent),
|
|
2406
|
+
multi: true
|
|
2407
|
+
}
|
|
2408
|
+
], ngImport: i0, template: `
|
|
2410
2409
|
<mat-form-field class="flex-grow-1">
|
|
2411
2410
|
<mat-label>{{label}}</mat-label>
|
|
2412
2411
|
<mat-select [(value)]="value" [formControl]="options" [required]="required" multiple>
|
|
@@ -2421,8 +2420,9 @@ MdMultiSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2421
2420
|
<mat-option *ngFor="let row of entries" [value]="row[idKey]">{{ row[displayKey] }}</mat-option>
|
|
2422
2421
|
</mat-select>
|
|
2423
2422
|
</mat-form-field>
|
|
2424
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3$1.MatLegacyFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3$1.MatLegacyLabel, selector: "mat-label" }, { kind: "component", type: i6.MatLegacySelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { kind: "directive", type: i6.MatLegacySelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i6$1.MatLegacyOption, selector: "mat-option", exportAs: ["matOption"] }] });
|
|
2425
|
-
|
|
2423
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3$1.MatLegacyFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3$1.MatLegacyLabel, selector: "mat-label" }, { kind: "component", type: i6.MatLegacySelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { kind: "directive", type: i6.MatLegacySelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i6$1.MatLegacyOption, selector: "mat-option", exportAs: ["matOption"] }] }); }
|
|
2424
|
+
}
|
|
2425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MdMultiSelectComponent, decorators: [{
|
|
2426
2426
|
type: Component,
|
|
2427
2427
|
args: [{
|
|
2428
2428
|
selector: "hci-md-multi-select",
|
|
@@ -2908,13 +2908,12 @@ class CustomComboBoxComponent {
|
|
|
2908
2908
|
ngOnDestroy() {
|
|
2909
2909
|
this.subs.unsubscribe();
|
|
2910
2910
|
}
|
|
2911
|
-
}
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
}], viewQueries: [{ propertyName: "viewport", first: true, predicate: ["viewport"], descendants: true, static: true }, { propertyName: "inputElement", first: true, predicate: ["input"], descendants: true, static: true }, { propertyName: "autoCompleteTrigger", first: true, predicate: ["input"], descendants: true, read: MatLegacyAutocompleteTrigger }], usesOnChanges: true, ngImport: i0, template: `
|
|
2911
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CustomComboBoxComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2912
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CustomComboBoxComponent, selector: "hci-combobox", inputs: { maxOptionsToShow: "maxOptionsToShow", customViewportClass: "customViewportClass", customFieldClasses: "customFieldClasses", customOptionClasses: "customOptionClasses", label: "label", placeholder: "placeholder", temporaryPlaceholder: "temporaryPlaceholder", tooltip: "tooltip", allowNone: "allowNone", selectTextOnOpen: "selectTextOnOpen", cdkFocusInitial: "cdkFocusInitial", tabindex: "tabindex", options: "options", allowLoader: "allowLoader", valueField: "valueField", forceEmitObject: "forceEmitObject", displayField: "displayField", appearance: "appearance", floatLabel: "floatLabel", defineErrors: "defineErrors" }, outputs: { optionSelected: "optionSelected", optionChanged: "optionChanged", optionsLoaded: "optionsLoaded" }, host: { properties: { "attr.cdkFocusInitial": "this._cdkFocusInitial", "attr.tabindex": "this._tabindex" }, classAttribute: "hci-combobox-container" }, providers: [{
|
|
2913
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2914
|
+
useExisting: forwardRef(() => CustomComboBoxComponent),
|
|
2915
|
+
multi: true,
|
|
2916
|
+
}], viewQueries: [{ propertyName: "viewport", first: true, predicate: ["viewport"], descendants: true, static: true }, { propertyName: "inputElement", first: true, predicate: ["input"], descendants: true, static: true }, { propertyName: "autoCompleteTrigger", first: true, predicate: ["input"], descendants: true, read: MatLegacyAutocompleteTrigger }], usesOnChanges: true, ngImport: i0, template: `
|
|
2918
2917
|
<mat-form-field (click)="onClick($event)"
|
|
2919
2918
|
(mousedown)="startClick()"
|
|
2920
2919
|
(mouseup)="endClick()"
|
|
@@ -2988,8 +2987,9 @@ CustomComboBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
2988
2987
|
</mat-error>
|
|
2989
2988
|
<ng-content></ng-content>
|
|
2990
2989
|
</mat-form-field>
|
|
2991
|
-
`, isInline: true, styles: [".hci-combobox-container{display:inline-block}.hci-combobox-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px;color:#0000008a}.hci-combobox-arrow-wrapper{display:table-cell;vertical-align:middle}.hci-combobox-viewport mat-option{display:flex;align-items:center;padding:0 .2rem}.hci-combobox-viewport mat-option .mat-option-text{white-space:nowrap}.hci-combobox-viewport .hci-combobox-selected{background-color:#ddd}.hci-combobox-viewport .mat-active{background-color:#f3f3f3}.hci-combobox-viewport{overflow-anchor:none}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i3$1.MatLegacyError, selector: "mat-error", inputs: ["id"] }, { kind: "component", type: i3$1.MatLegacyFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3$1.MatLegacyLabel, selector: "mat-label" }, { kind: "directive", type: i3$1.MatLegacySuffix, selector: "[matSuffix]" }, { kind: "component", type: i6$1.MatLegacyOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "directive", type: i5.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i5.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i5.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }, { kind: "component", type: i6$2.MatLegacyAutocomplete, selector: "mat-autocomplete", inputs: ["disableRipple"], exportAs: ["matAutocomplete"] }, { kind: "directive", type: i6$2.MatLegacyAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", exportAs: ["matAutocompleteTrigger"] }, { kind: "directive", type: i7.MatLegacyInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", exportAs: ["matInput"] }, { kind: "directive", type: i8.MatLegacyTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }, { kind: "component", type: i9.MatLegacyProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "diameter", "strokeWidth", "mode", "value"], exportAs: ["matProgressSpinner"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
2992
|
-
|
|
2990
|
+
`, isInline: true, styles: [".hci-combobox-container{display:inline-block}.hci-combobox-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px;color:#0000008a}.hci-combobox-arrow-wrapper{display:table-cell;vertical-align:middle}.hci-combobox-viewport mat-option{display:flex;align-items:center;padding:0 .2rem}.hci-combobox-viewport mat-option .mat-option-text{white-space:nowrap}.hci-combobox-viewport .hci-combobox-selected{background-color:#ddd}.hci-combobox-viewport .mat-active{background-color:#f3f3f3}.hci-combobox-viewport{overflow-anchor:none}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i3$1.MatLegacyError, selector: "mat-error", inputs: ["id"] }, { kind: "component", type: i3$1.MatLegacyFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3$1.MatLegacyLabel, selector: "mat-label" }, { kind: "directive", type: i3$1.MatLegacySuffix, selector: "[matSuffix]" }, { kind: "component", type: i6$1.MatLegacyOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "directive", type: i5.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i5.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i5.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }, { kind: "component", type: i6$2.MatLegacyAutocomplete, selector: "mat-autocomplete", inputs: ["disableRipple"], exportAs: ["matAutocomplete"] }, { kind: "directive", type: i6$2.MatLegacyAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", exportAs: ["matAutocompleteTrigger"] }, { kind: "directive", type: i7.MatLegacyInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", exportAs: ["matInput"] }, { kind: "directive", type: i8.MatLegacyTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }, { kind: "component", type: i9.MatLegacyProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "diameter", "strokeWidth", "mode", "value"], exportAs: ["matProgressSpinner"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
2991
|
+
}
|
|
2992
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CustomComboBoxComponent, decorators: [{
|
|
2993
2993
|
type: Component,
|
|
2994
2994
|
args: [{ selector: "hci-combobox", template: `
|
|
2995
2995
|
<mat-form-field (click)="onClick($event)"
|
|
@@ -3309,13 +3309,12 @@ class CustomMultiComboBoxComponent {
|
|
|
3309
3309
|
this.innerControlSubscription.unsubscribe();
|
|
3310
3310
|
}
|
|
3311
3311
|
}
|
|
3312
|
-
}
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
}], viewQueries: [{ propertyName: "inputElement", first: true, predicate: ["input"], descendants: true }, { propertyName: "selectElement", first: true, predicate: ["select"], descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
3312
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CustomMultiComboBoxComponent, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3313
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CustomMultiComboBoxComponent, selector: "hci-multi-combobox", inputs: { label: "label", placeholder: "placeholder", temporaryPlaceholder: "temporaryPlaceholder", tooltip: "tooltip", options: "options", valueField: "valueField", forceEmitObject: "forceEmitObject", displayField: "displayField", appearance: "appearance", initialFocus: "initialFocus", floatLabel: "floatLabel" }, outputs: { selectionChanged: "selectionChanged" }, providers: [{
|
|
3314
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3315
|
+
useExisting: CustomMultiComboBoxComponent,
|
|
3316
|
+
multi: true,
|
|
3317
|
+
}], viewQueries: [{ propertyName: "inputElement", first: true, predicate: ["input"], descendants: true }, { propertyName: "selectElement", first: true, predicate: ["select"], descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
3319
3318
|
<div class="combobox-multi-container d-flex font-sm">
|
|
3320
3319
|
<mat-form-field [appearance]="appearance" [matTooltip]="this.tooltip" [floatLabel]="floatLabel">
|
|
3321
3320
|
<mat-label *ngIf="label !== undefined">{{ label }}</mat-label>
|
|
@@ -3344,8 +3343,9 @@ CustomMultiComboBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14
|
|
|
3344
3343
|
</div>
|
|
3345
3344
|
</mat-form-field>
|
|
3346
3345
|
</div>
|
|
3347
|
-
`, isInline: true, styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3$1.MatLegacyFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3$1.MatLegacyLabel, selector: "mat-label" }, { kind: "directive", type: i3$1.MatLegacySuffix, selector: "[matSuffix]" }, { kind: "component", type: i6.MatLegacySelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { kind: "component", type: i6$1.MatLegacyOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "directive", type: i7.MatLegacyInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", exportAs: ["matInput"] }, { kind: "directive", type: i8.MatLegacyTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }] });
|
|
3348
|
-
|
|
3346
|
+
`, isInline: true, styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3$1.MatLegacyFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3$1.MatLegacyLabel, selector: "mat-label" }, { kind: "directive", type: i3$1.MatLegacySuffix, selector: "[matSuffix]" }, { kind: "component", type: i6.MatLegacySelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { kind: "component", type: i6$1.MatLegacyOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "directive", type: i7.MatLegacyInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", exportAs: ["matInput"] }, { kind: "directive", type: i8.MatLegacyTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }] }); }
|
|
3347
|
+
}
|
|
3348
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CustomMultiComboBoxComponent, decorators: [{
|
|
3349
3349
|
type: Component,
|
|
3350
3350
|
args: [{ selector: "hci-multi-combobox", template: `
|
|
3351
3351
|
<div class="combobox-multi-container d-flex font-sm">
|
|
@@ -3414,39 +3414,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3414
3414
|
}] } });
|
|
3415
3415
|
|
|
3416
3416
|
class SelectModule {
|
|
3417
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3418
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: SelectModule, declarations: [MdSelectComponent,
|
|
3419
|
+
MdMultiSelectComponent,
|
|
3420
|
+
NativeSelectComponent,
|
|
3421
|
+
CustomComboBoxComponent,
|
|
3422
|
+
CustomMultiComboBoxComponent], imports: [CommonModule,
|
|
3423
|
+
FormsModule,
|
|
3424
|
+
ReactiveFormsModule,
|
|
3425
|
+
MatLegacySelectModule,
|
|
3426
|
+
ScrollingModule,
|
|
3427
|
+
MatLegacyAutocompleteModule,
|
|
3428
|
+
MatLegacyInputModule,
|
|
3429
|
+
MatLegacyTooltipModule,
|
|
3430
|
+
MatIconModule,
|
|
3431
|
+
MatLegacyProgressSpinnerModule,
|
|
3432
|
+
DictionaryServiceModule], exports: [MdSelectComponent,
|
|
3433
|
+
MdMultiSelectComponent,
|
|
3434
|
+
NativeSelectComponent,
|
|
3435
|
+
CustomComboBoxComponent,
|
|
3436
|
+
CustomMultiComboBoxComponent] }); }
|
|
3437
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectModule, imports: [CommonModule,
|
|
3438
|
+
FormsModule,
|
|
3439
|
+
ReactiveFormsModule,
|
|
3440
|
+
MatLegacySelectModule,
|
|
3441
|
+
ScrollingModule,
|
|
3442
|
+
MatLegacyAutocompleteModule,
|
|
3443
|
+
MatLegacyInputModule,
|
|
3444
|
+
MatLegacyTooltipModule,
|
|
3445
|
+
MatIconModule,
|
|
3446
|
+
MatLegacyProgressSpinnerModule,
|
|
3447
|
+
DictionaryServiceModule] }); }
|
|
3417
3448
|
}
|
|
3418
|
-
|
|
3419
|
-
SelectModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SelectModule, declarations: [MdSelectComponent,
|
|
3420
|
-
MdMultiSelectComponent,
|
|
3421
|
-
NativeSelectComponent,
|
|
3422
|
-
CustomComboBoxComponent,
|
|
3423
|
-
CustomMultiComboBoxComponent], imports: [CommonModule,
|
|
3424
|
-
FormsModule,
|
|
3425
|
-
ReactiveFormsModule,
|
|
3426
|
-
MatLegacySelectModule,
|
|
3427
|
-
ScrollingModule,
|
|
3428
|
-
MatLegacyAutocompleteModule,
|
|
3429
|
-
MatLegacyInputModule,
|
|
3430
|
-
MatLegacyTooltipModule,
|
|
3431
|
-
MatIconModule,
|
|
3432
|
-
MatLegacyProgressSpinnerModule,
|
|
3433
|
-
DictionaryServiceModule], exports: [MdSelectComponent,
|
|
3434
|
-
MdMultiSelectComponent,
|
|
3435
|
-
NativeSelectComponent,
|
|
3436
|
-
CustomComboBoxComponent,
|
|
3437
|
-
CustomMultiComboBoxComponent] });
|
|
3438
|
-
SelectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SelectModule, imports: [CommonModule,
|
|
3439
|
-
FormsModule,
|
|
3440
|
-
ReactiveFormsModule,
|
|
3441
|
-
MatLegacySelectModule,
|
|
3442
|
-
ScrollingModule,
|
|
3443
|
-
MatLegacyAutocompleteModule,
|
|
3444
|
-
MatLegacyInputModule,
|
|
3445
|
-
MatLegacyTooltipModule,
|
|
3446
|
-
MatIconModule,
|
|
3447
|
-
MatLegacyProgressSpinnerModule,
|
|
3448
|
-
DictionaryServiceModule] });
|
|
3449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SelectModule, decorators: [{
|
|
3449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectModule, decorators: [{
|
|
3450
3450
|
type: NgModule,
|
|
3451
3451
|
args: [{
|
|
3452
3452
|
imports: [
|
|
@@ -3610,9 +3610,8 @@ class SearchComponent {
|
|
|
3610
3610
|
}
|
|
3611
3611
|
return filteredData;
|
|
3612
3612
|
}
|
|
3613
|
-
}
|
|
3614
|
-
|
|
3615
|
-
SearchComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SearchComponent, selector: "hci-search", inputs: { isArray: "isArray", isIncludeChildren: "isIncludeChildren", anyComponent: "anyComponent", input: "input", data: "data" }, outputs: { dataFiltered: "dataFiltered" }, usesOnChanges: true, ngImport: i0, template: `
|
|
3613
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SearchComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3614
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SearchComponent, selector: "hci-search", inputs: { isArray: "isArray", isIncludeChildren: "isIncludeChildren", anyComponent: "anyComponent", input: "input", data: "data" }, outputs: { dataFiltered: "dataFiltered" }, usesOnChanges: true, ngImport: i0, template: `
|
|
3616
3615
|
<div class="input-group ">
|
|
3617
3616
|
<input #searchBox type="text"
|
|
3618
3617
|
(keyup.enter)="doSearch(searchBox.value)"
|
|
@@ -3625,8 +3624,9 @@ SearchComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
3625
3624
|
</button>
|
|
3626
3625
|
</div>
|
|
3627
3626
|
</div>
|
|
3628
|
-
`, isInline: true });
|
|
3629
|
-
|
|
3627
|
+
`, isInline: true }); }
|
|
3628
|
+
}
|
|
3629
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SearchComponent, decorators: [{
|
|
3630
3630
|
type: Component,
|
|
3631
3631
|
args: [{
|
|
3632
3632
|
selector: "hci-search",
|
|
@@ -3660,15 +3660,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3660
3660
|
}] } });
|
|
3661
3661
|
|
|
3662
3662
|
class SearchModule {
|
|
3663
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SearchModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3664
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: SearchModule, declarations: [SearchComponent], imports: [CommonModule,
|
|
3665
|
+
FormsModule,
|
|
3666
|
+
NgbModule], exports: [SearchComponent] }); }
|
|
3667
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SearchModule, imports: [CommonModule,
|
|
3668
|
+
FormsModule,
|
|
3669
|
+
NgbModule] }); }
|
|
3663
3670
|
}
|
|
3664
|
-
|
|
3665
|
-
SearchModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SearchModule, declarations: [SearchComponent], imports: [CommonModule,
|
|
3666
|
-
FormsModule,
|
|
3667
|
-
NgbModule], exports: [SearchComponent] });
|
|
3668
|
-
SearchModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SearchModule, imports: [CommonModule,
|
|
3669
|
-
FormsModule,
|
|
3670
|
-
NgbModule] });
|
|
3671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SearchModule, decorators: [{
|
|
3671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SearchModule, decorators: [{
|
|
3672
3672
|
type: NgModule,
|
|
3673
3673
|
args: [{
|
|
3674
3674
|
imports: [
|