@huntsman-cancer-institute/input 17.0.8 → 17.1.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/esm2022/date/date-base.mjs +3 -3
- package/esm2022/date/date-date-range.component.mjs +45 -45
- package/esm2022/date/date-date.component.mjs +3 -3
- package/esm2022/date/date.module.mjs +4 -4
- package/esm2022/dropdown/dropdown-select-result.component.mjs +29 -29
- package/esm2022/dropdown/dropdown-select.component.mjs +3 -3
- package/esm2022/dropdown/dropdown.component.mjs +3 -3
- package/esm2022/dropdown/dropdown.module.mjs +4 -4
- package/esm2022/dropdown/dropdown.service.mjs +3 -3
- package/esm2022/dropdown/template-dropdown.directive.mjs +3 -3
- package/esm2022/inline/inline.component.mjs +3 -3
- package/esm2022/inline/inline.module.mjs +4 -4
- package/esm2022/search/search.component.mjs +29 -29
- package/esm2022/search/search.module.mjs +4 -4
- package/esm2022/select/custom-combobox.component.mjs +3 -3
- package/esm2022/select/custom-multi-combobox.component.mjs +3 -3
- package/esm2022/select/md-multi-select.component.mjs +3 -3
- package/esm2022/select/md-select.component.mjs +20 -20
- package/esm2022/select/native-select.component.mjs +42 -42
- package/esm2022/select/select.module.mjs +4 -4
- package/fesm2022/huntsman-cancer-institute-input.mjs +210 -210
- package/fesm2022/huntsman-cancer-institute-input.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -93,39 +93,39 @@ class DropdownSelectResultComponent {
|
|
|
93
93
|
this.activeIndex = 0;
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
97
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
98
|
-
<div class="select-results-container" *ngIf="items !== undefined && items.length > 0" id="resultsContainer">
|
|
99
|
-
<div *ngFor="let item of items; let i = index;"
|
|
100
|
-
class="select-result" id="item-{{i}}"
|
|
101
|
-
(mousedown)="onSelected(item)" [class.selected]="isSelected(item)"
|
|
102
|
-
[class.active]="i === activeIndex"
|
|
103
|
-
(mouseover)="onMouseOver(i)"
|
|
104
|
-
(mouseenter)="onHovering($event)">
|
|
105
|
-
<ng-container [ngTemplateOutlet]="templateRef"
|
|
106
|
-
[ngTemplateOutletContext]="{$item: item, $entity: item.entity, $id: item.id, $index: i}"></ng-container>
|
|
107
|
-
<ng-container *ngIf="!templateRef">{{item.text}}</ng-container>
|
|
108
|
-
</div>
|
|
109
|
-
</div>
|
|
96
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DropdownSelectResultComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
97
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: DropdownSelectResultComponent, selector: "hci-dropdown-select-result", inputs: { items: "items", searchFocused: "searchFocused", selectedItems: "selectedItems", templateRef: "templateRef" }, outputs: { itemSelectedEvent: "itemSelectedEvent" }, ngImport: i0, template: `
|
|
98
|
+
<div class="select-results-container" *ngIf="items !== undefined && items.length > 0" id="resultsContainer">
|
|
99
|
+
<div *ngFor="let item of items; let i = index;"
|
|
100
|
+
class="select-result" id="item-{{i}}"
|
|
101
|
+
(mousedown)="onSelected(item)" [class.selected]="isSelected(item)"
|
|
102
|
+
[class.active]="i === activeIndex"
|
|
103
|
+
(mouseover)="onMouseOver(i)"
|
|
104
|
+
(mouseenter)="onHovering($event)">
|
|
105
|
+
<ng-container [ngTemplateOutlet]="templateRef"
|
|
106
|
+
[ngTemplateOutletContext]="{$item: item, $entity: item.entity, $id: item.id, $index: i}"></ng-container>
|
|
107
|
+
<ng-container *ngIf="!templateRef">{{item.text}}</ng-container>
|
|
108
|
+
</div>
|
|
109
|
+
</div>
|
|
110
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
111
|
}
|
|
112
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DropdownSelectResultComponent, decorators: [{
|
|
113
113
|
type: Component,
|
|
114
114
|
args: [{
|
|
115
115
|
selector: "hci-dropdown-select-result",
|
|
116
|
-
template: `
|
|
117
|
-
<div class="select-results-container" *ngIf="items !== undefined && items.length > 0" id="resultsContainer">
|
|
118
|
-
<div *ngFor="let item of items; let i = index;"
|
|
119
|
-
class="select-result" id="item-{{i}}"
|
|
120
|
-
(mousedown)="onSelected(item)" [class.selected]="isSelected(item)"
|
|
121
|
-
[class.active]="i === activeIndex"
|
|
122
|
-
(mouseover)="onMouseOver(i)"
|
|
123
|
-
(mouseenter)="onHovering($event)">
|
|
124
|
-
<ng-container [ngTemplateOutlet]="templateRef"
|
|
125
|
-
[ngTemplateOutletContext]="{$item: item, $entity: item.entity, $id: item.id, $index: i}"></ng-container>
|
|
126
|
-
<ng-container *ngIf="!templateRef">{{item.text}}</ng-container>
|
|
127
|
-
</div>
|
|
128
|
-
</div>
|
|
116
|
+
template: `
|
|
117
|
+
<div class="select-results-container" *ngIf="items !== undefined && items.length > 0" id="resultsContainer">
|
|
118
|
+
<div *ngFor="let item of items; let i = index;"
|
|
119
|
+
class="select-result" id="item-{{i}}"
|
|
120
|
+
(mousedown)="onSelected(item)" [class.selected]="isSelected(item)"
|
|
121
|
+
[class.active]="i === activeIndex"
|
|
122
|
+
(mouseover)="onMouseOver(i)"
|
|
123
|
+
(mouseenter)="onHovering($event)">
|
|
124
|
+
<ng-container [ngTemplateOutlet]="templateRef"
|
|
125
|
+
[ngTemplateOutletContext]="{$item: item, $entity: item.entity, $id: item.id, $index: i}"></ng-container>
|
|
126
|
+
<ng-container *ngIf="!templateRef">{{item.text}}</ng-container>
|
|
127
|
+
</div>
|
|
128
|
+
</div>
|
|
129
129
|
`
|
|
130
130
|
}]
|
|
131
131
|
}], propDecorators: { items: [{
|
|
@@ -461,8 +461,8 @@ class DropdownSelectComponent {
|
|
|
461
461
|
});
|
|
462
462
|
}
|
|
463
463
|
}
|
|
464
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
465
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
464
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DropdownSelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
465
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", 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: `
|
|
466
466
|
<div class="select-container">
|
|
467
467
|
<ul class="form-control"
|
|
468
468
|
[class.simple-selection]="!multiple"
|
|
@@ -514,7 +514,7 @@ class DropdownSelectComponent {
|
|
|
514
514
|
</div>
|
|
515
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
516
|
}
|
|
517
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
517
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", 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: "17.
|
|
624
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.
|
|
623
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", 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: "17.1.2", type: TemplateDropdownDirective, selector: "[appTemplateDropdown]", ngImport: i0 }); }
|
|
625
625
|
}
|
|
626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", 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: "17.
|
|
752
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.
|
|
751
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", 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: "17.1.2", ngImport: i0, type: DropdownService }); }
|
|
753
753
|
}
|
|
754
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
754
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DropdownService, decorators: [{
|
|
755
755
|
type: Injectable
|
|
756
756
|
}], ctorParameters: () => [{ type: i2$1.HttpClient }, { type: undefined, decorators: [{
|
|
757
757
|
type: Inject,
|
|
@@ -877,8 +877,8 @@ class DropdownComponent {
|
|
|
877
877
|
this.modifiedData.push(this.inputSingleData);
|
|
878
878
|
}
|
|
879
879
|
}
|
|
880
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
881
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
880
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", 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: "17.1.2", 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: `
|
|
882
882
|
<form novalidate [formGroup]="dropdownForm">
|
|
883
883
|
<div class="form-group">
|
|
884
884
|
<hci-dropdown-select #dropdownSingle *ngIf="dropdownType === 0"
|
|
@@ -952,7 +952,7 @@ class DropdownComponent {
|
|
|
952
952
|
</form>
|
|
953
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
954
|
}
|
|
955
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
955
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DropdownComponent, decorators: [{
|
|
956
956
|
type: Component,
|
|
957
957
|
args: [{
|
|
958
958
|
selector: "hci-dropdown",
|
|
@@ -1061,8 +1061,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
|
|
|
1061
1061
|
}] } });
|
|
1062
1062
|
|
|
1063
1063
|
class DropdownModule {
|
|
1064
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1065
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
1064
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DropdownModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1065
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: DropdownModule, declarations: [TemplateDropdownDirective,
|
|
1066
1066
|
DropdownSelectComponent,
|
|
1067
1067
|
DropdownComponent,
|
|
1068
1068
|
DropdownSelectResultComponent], imports: [CommonModule,
|
|
@@ -1072,12 +1072,12 @@ class DropdownModule {
|
|
|
1072
1072
|
DropdownSelectComponent,
|
|
1073
1073
|
DropdownComponent,
|
|
1074
1074
|
DropdownSelectResultComponent] }); }
|
|
1075
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
1075
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DropdownModule, imports: [CommonModule,
|
|
1076
1076
|
FormsModule,
|
|
1077
1077
|
ReactiveFormsModule,
|
|
1078
1078
|
NgbModule] }); }
|
|
1079
1079
|
}
|
|
1080
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DropdownModule, decorators: [{
|
|
1081
1081
|
type: NgModule,
|
|
1082
1082
|
args: [{
|
|
1083
1083
|
imports: [
|
|
@@ -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: "17.
|
|
1249
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.
|
|
1248
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DateBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1249
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DateBase }); }
|
|
1250
1250
|
}
|
|
1251
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DateBase, decorators: [{
|
|
1252
1252
|
type: Injectable
|
|
1253
1253
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
1254
1254
|
|
|
@@ -1404,8 +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
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1408
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1407
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", 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: "17.1.2", 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: `
|
|
1409
1409
|
<div class="form-group">
|
|
1410
1410
|
<div class="input-group d-flex">
|
|
1411
1411
|
<form [formGroup]="dateForm" class="flex-grow-1">
|
|
@@ -1468,7 +1468,7 @@ class DateComponent extends DateBase {
|
|
|
1468
1468
|
|
|
1469
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
1470
|
}
|
|
1471
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", 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,55 +1609,55 @@ class DateRangeComponent {
|
|
|
1609
1609
|
this.minEndDate = { year: startDate.getFullYear(), month: startDate.getMonth() + 1, day: startDate.getDate() };
|
|
1610
1610
|
}
|
|
1611
1611
|
}
|
|
1612
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1613
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1614
|
-
<div class="d-flex flex-wrap date-range">
|
|
1615
|
-
<hci-date #startdate
|
|
1616
|
-
class="date"
|
|
1617
|
-
[label]="startLabel"
|
|
1618
|
-
[(inputData)]="inputStartData"
|
|
1619
|
-
(inputDataChange)="onClickSubmitStartDate($event)"
|
|
1620
|
-
[dateFormat]="dateFormat"
|
|
1621
|
-
[minDate]="minStartDate"
|
|
1622
|
-
[maxDate]="maxStartDate">
|
|
1623
|
-
</hci-date>
|
|
1624
|
-
<hci-date #enddate
|
|
1625
|
-
class="date"
|
|
1626
|
-
[label]="endLabel"
|
|
1627
|
-
[(inputData)]="inputEndData"
|
|
1628
|
-
(inputDataChange)="onClickSubmitEndDate($event)"
|
|
1629
|
-
[dateFormat]="dateFormat"
|
|
1630
|
-
[minDate]="minEndDate"
|
|
1631
|
-
[maxDate]="maxEndDate">
|
|
1632
|
-
</hci-date>
|
|
1633
|
-
</div>
|
|
1612
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DateRangeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1613
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", 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: `
|
|
1614
|
+
<div class="d-flex flex-wrap date-range">
|
|
1615
|
+
<hci-date #startdate
|
|
1616
|
+
class="date"
|
|
1617
|
+
[label]="startLabel"
|
|
1618
|
+
[(inputData)]="inputStartData"
|
|
1619
|
+
(inputDataChange)="onClickSubmitStartDate($event)"
|
|
1620
|
+
[dateFormat]="dateFormat"
|
|
1621
|
+
[minDate]="minStartDate"
|
|
1622
|
+
[maxDate]="maxStartDate">
|
|
1623
|
+
</hci-date>
|
|
1624
|
+
<hci-date #enddate
|
|
1625
|
+
class="date"
|
|
1626
|
+
[label]="endLabel"
|
|
1627
|
+
[(inputData)]="inputEndData"
|
|
1628
|
+
(inputDataChange)="onClickSubmitEndDate($event)"
|
|
1629
|
+
[dateFormat]="dateFormat"
|
|
1630
|
+
[minDate]="minEndDate"
|
|
1631
|
+
[maxDate]="maxEndDate">
|
|
1632
|
+
</hci-date>
|
|
1633
|
+
</div>
|
|
1634
1634
|
`, isInline: true, dependencies: [{ kind: "component", type: DateComponent, selector: "hci-date", inputs: ["dateFormat", "minDate", "maxDate", "label", "inputData", "modifiedData"], outputs: ["inputDataChange"] }] }); }
|
|
1635
1635
|
}
|
|
1636
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1636
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DateRangeComponent, decorators: [{
|
|
1637
1637
|
type: Component,
|
|
1638
1638
|
args: [{
|
|
1639
1639
|
selector: "hci-date-range",
|
|
1640
|
-
template: `
|
|
1641
|
-
<div class="d-flex flex-wrap date-range">
|
|
1642
|
-
<hci-date #startdate
|
|
1643
|
-
class="date"
|
|
1644
|
-
[label]="startLabel"
|
|
1645
|
-
[(inputData)]="inputStartData"
|
|
1646
|
-
(inputDataChange)="onClickSubmitStartDate($event)"
|
|
1647
|
-
[dateFormat]="dateFormat"
|
|
1648
|
-
[minDate]="minStartDate"
|
|
1649
|
-
[maxDate]="maxStartDate">
|
|
1650
|
-
</hci-date>
|
|
1651
|
-
<hci-date #enddate
|
|
1652
|
-
class="date"
|
|
1653
|
-
[label]="endLabel"
|
|
1654
|
-
[(inputData)]="inputEndData"
|
|
1655
|
-
(inputDataChange)="onClickSubmitEndDate($event)"
|
|
1656
|
-
[dateFormat]="dateFormat"
|
|
1657
|
-
[minDate]="minEndDate"
|
|
1658
|
-
[maxDate]="maxEndDate">
|
|
1659
|
-
</hci-date>
|
|
1660
|
-
</div>
|
|
1640
|
+
template: `
|
|
1641
|
+
<div class="d-flex flex-wrap date-range">
|
|
1642
|
+
<hci-date #startdate
|
|
1643
|
+
class="date"
|
|
1644
|
+
[label]="startLabel"
|
|
1645
|
+
[(inputData)]="inputStartData"
|
|
1646
|
+
(inputDataChange)="onClickSubmitStartDate($event)"
|
|
1647
|
+
[dateFormat]="dateFormat"
|
|
1648
|
+
[minDate]="minStartDate"
|
|
1649
|
+
[maxDate]="maxStartDate">
|
|
1650
|
+
</hci-date>
|
|
1651
|
+
<hci-date #enddate
|
|
1652
|
+
class="date"
|
|
1653
|
+
[label]="endLabel"
|
|
1654
|
+
[(inputData)]="inputEndData"
|
|
1655
|
+
(inputDataChange)="onClickSubmitEndDate($event)"
|
|
1656
|
+
[dateFormat]="dateFormat"
|
|
1657
|
+
[minDate]="minEndDate"
|
|
1658
|
+
[maxDate]="maxEndDate">
|
|
1659
|
+
</hci-date>
|
|
1660
|
+
</div>
|
|
1661
1661
|
`
|
|
1662
1662
|
}]
|
|
1663
1663
|
}], propDecorators: { sp: [{
|
|
@@ -1683,8 +1683,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
|
|
|
1683
1683
|
}] } });
|
|
1684
1684
|
|
|
1685
1685
|
class DateModule {
|
|
1686
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1687
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
1686
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1687
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: DateModule, declarations: [DateComponent,
|
|
1688
1688
|
DateRangeComponent], imports: [CommonModule,
|
|
1689
1689
|
FormsModule,
|
|
1690
1690
|
ReactiveFormsModule,
|
|
@@ -1695,7 +1695,7 @@ class DateModule {
|
|
|
1695
1695
|
MatNativeDateModule,
|
|
1696
1696
|
MatLegacyInputModule], exports: [DateComponent,
|
|
1697
1697
|
DateRangeComponent] }); }
|
|
1698
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
1698
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DateModule, imports: [CommonModule,
|
|
1699
1699
|
FormsModule,
|
|
1700
1700
|
ReactiveFormsModule,
|
|
1701
1701
|
NgbModule,
|
|
@@ -1705,7 +1705,7 @@ class DateModule {
|
|
|
1705
1705
|
MatNativeDateModule,
|
|
1706
1706
|
MatLegacyInputModule] }); }
|
|
1707
1707
|
}
|
|
1708
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1708
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DateModule, decorators: [{
|
|
1709
1709
|
type: NgModule,
|
|
1710
1710
|
args: [{
|
|
1711
1711
|
imports: [
|
|
@@ -1870,8 +1870,8 @@ class InlineComponent {
|
|
|
1870
1870
|
}
|
|
1871
1871
|
}
|
|
1872
1872
|
}
|
|
1873
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1874
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1873
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: InlineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1874
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: InlineComponent, selector: "hci-inline-input", inputs: { noValueMessage: "noValueMessage" }, host: { listeners: { "document:click": "documentClick($event)" } }, providers: [
|
|
1875
1875
|
{
|
|
1876
1876
|
provide: NG_VALUE_ACCESSOR,
|
|
1877
1877
|
useExisting: forwardRef(() => InlineComponent),
|
|
@@ -1914,7 +1914,7 @@ class InlineComponent {
|
|
|
1914
1914
|
</ng-template>
|
|
1915
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
1916
|
}
|
|
1917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1917
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", 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: "17.3.1", ngImpor
|
|
|
1976
1976
|
}] } });
|
|
1977
1977
|
|
|
1978
1978
|
class InlineModule {
|
|
1979
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1980
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
1979
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: InlineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1980
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: InlineModule, declarations: [InlineComponent], imports: [CommonModule,
|
|
1981
1981
|
FormsModule], exports: [InlineComponent] }); }
|
|
1982
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
1982
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: InlineModule, imports: [CommonModule,
|
|
1983
1983
|
FormsModule] }); }
|
|
1984
1984
|
}
|
|
1985
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1985
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: InlineModule, decorators: [{
|
|
1986
1986
|
type: NgModule,
|
|
1987
1987
|
args: [{
|
|
1988
1988
|
imports: [
|
|
@@ -2048,35 +2048,35 @@ class MdSelectComponent {
|
|
|
2048
2048
|
registerOnTouched(callback) {
|
|
2049
2049
|
this.onTouchedCallback = callback;
|
|
2050
2050
|
}
|
|
2051
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
2052
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
2051
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", 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: "17.1.2", 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
2053
|
{
|
|
2054
2054
|
provide: NG_VALUE_ACCESSOR,
|
|
2055
2055
|
useExisting: forwardRef(() => MdSelectComponent),
|
|
2056
2056
|
multi: true
|
|
2057
2057
|
}
|
|
2058
|
-
], ngImport: i0, template: `
|
|
2059
|
-
<mat-form-field>
|
|
2060
|
-
<mat-label>{{label}}</mat-label>
|
|
2061
|
-
<mat-select [(value)]="value" [required]="required">
|
|
2062
|
-
<mat-option *ngIf="!required" [value]="undefined"></mat-option>
|
|
2063
|
-
<mat-option *ngFor="let row of entries" [value]="row[idKey]">{{ row[displayKey] }}</mat-option>
|
|
2064
|
-
</mat-select>
|
|
2065
|
-
</mat-form-field>
|
|
2058
|
+
], ngImport: i0, template: `
|
|
2059
|
+
<mat-form-field>
|
|
2060
|
+
<mat-label>{{label}}</mat-label>
|
|
2061
|
+
<mat-select [(value)]="value" [required]="required">
|
|
2062
|
+
<mat-option *ngIf="!required" [value]="undefined"></mat-option>
|
|
2063
|
+
<mat-option *ngFor="let row of entries" [value]="row[idKey]">{{ row[displayKey] }}</mat-option>
|
|
2064
|
+
</mat-select>
|
|
2065
|
+
</mat-form-field>
|
|
2066
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
2067
|
}
|
|
2068
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
2068
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: MdSelectComponent, decorators: [{
|
|
2069
2069
|
type: Component,
|
|
2070
2070
|
args: [{
|
|
2071
2071
|
selector: "hci-md-select",
|
|
2072
|
-
template: `
|
|
2073
|
-
<mat-form-field>
|
|
2074
|
-
<mat-label>{{label}}</mat-label>
|
|
2075
|
-
<mat-select [(value)]="value" [required]="required">
|
|
2076
|
-
<mat-option *ngIf="!required" [value]="undefined"></mat-option>
|
|
2077
|
-
<mat-option *ngFor="let row of entries" [value]="row[idKey]">{{ row[displayKey] }}</mat-option>
|
|
2078
|
-
</mat-select>
|
|
2079
|
-
</mat-form-field>
|
|
2072
|
+
template: `
|
|
2073
|
+
<mat-form-field>
|
|
2074
|
+
<mat-label>{{label}}</mat-label>
|
|
2075
|
+
<mat-select [(value)]="value" [required]="required">
|
|
2076
|
+
<mat-option *ngIf="!required" [value]="undefined"></mat-option>
|
|
2077
|
+
<mat-option *ngFor="let row of entries" [value]="row[idKey]">{{ row[displayKey] }}</mat-option>
|
|
2078
|
+
</mat-select>
|
|
2079
|
+
</mat-form-field>
|
|
2080
2080
|
`,
|
|
2081
2081
|
providers: [
|
|
2082
2082
|
{
|
|
@@ -2235,57 +2235,57 @@ class NativeSelectComponent {
|
|
|
2235
2235
|
};
|
|
2236
2236
|
}
|
|
2237
2237
|
registerOnTouched(fn) { }
|
|
2238
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
2239
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
2238
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", 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: "17.1.2", 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
2240
|
{
|
|
2241
2241
|
provide: NG_VALUE_ACCESSOR,
|
|
2242
2242
|
useExisting: forwardRef(() => NativeSelectComponent),
|
|
2243
2243
|
multi: true
|
|
2244
2244
|
}
|
|
2245
|
-
], ngImport: i0, template: `
|
|
2246
|
-
<div *ngIf="label" class="label">
|
|
2247
|
-
{{label}}{{(required) ? " *" : ""}}
|
|
2248
|
-
</div>
|
|
2249
|
-
<select [(ngModel)]="value"
|
|
2250
|
-
[style.height.px]="height"
|
|
2251
|
-
(change)="onChange()"
|
|
2252
|
-
[disabled]="disabled"
|
|
2253
|
-
class="form-control flex-grow-1"
|
|
2254
|
-
style="min-width: 4rem;">
|
|
2255
|
-
<ng-container *ngIf="!required">
|
|
2256
|
-
<option [ngValue]="undefined">
|
|
2257
|
-
</option>
|
|
2258
|
-
</ng-container>
|
|
2259
|
-
<option *ngFor="let row of entries"
|
|
2260
|
-
[ngValue]="row[idKey]">
|
|
2261
|
-
{{ row[displayKey] }}
|
|
2262
|
-
</option>
|
|
2263
|
-
</select>
|
|
2245
|
+
], ngImport: i0, template: `
|
|
2246
|
+
<div *ngIf="label" class="label">
|
|
2247
|
+
{{label}}{{(required) ? " *" : ""}}
|
|
2248
|
+
</div>
|
|
2249
|
+
<select [(ngModel)]="value"
|
|
2250
|
+
[style.height.px]="height"
|
|
2251
|
+
(change)="onChange()"
|
|
2252
|
+
[disabled]="disabled"
|
|
2253
|
+
class="form-control flex-grow-1"
|
|
2254
|
+
style="min-width: 4rem;">
|
|
2255
|
+
<ng-container *ngIf="!required">
|
|
2256
|
+
<option [ngValue]="undefined">
|
|
2257
|
+
</option>
|
|
2258
|
+
</ng-container>
|
|
2259
|
+
<option *ngFor="let row of entries"
|
|
2260
|
+
[ngValue]="row[idKey]">
|
|
2261
|
+
{{ row[displayKey] }}
|
|
2262
|
+
</option>
|
|
2263
|
+
</select>
|
|
2264
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
2265
|
}
|
|
2266
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
2266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: NativeSelectComponent, decorators: [{
|
|
2267
2267
|
type: Component,
|
|
2268
2268
|
args: [{
|
|
2269
2269
|
selector: "hci-native-select",
|
|
2270
|
-
template: `
|
|
2271
|
-
<div *ngIf="label" class="label">
|
|
2272
|
-
{{label}}{{(required) ? " *" : ""}}
|
|
2273
|
-
</div>
|
|
2274
|
-
<select [(ngModel)]="value"
|
|
2275
|
-
[style.height.px]="height"
|
|
2276
|
-
(change)="onChange()"
|
|
2277
|
-
[disabled]="disabled"
|
|
2278
|
-
class="form-control flex-grow-1"
|
|
2279
|
-
style="min-width: 4rem;">
|
|
2280
|
-
<ng-container *ngIf="!required">
|
|
2281
|
-
<option [ngValue]="undefined">
|
|
2282
|
-
</option>
|
|
2283
|
-
</ng-container>
|
|
2284
|
-
<option *ngFor="let row of entries"
|
|
2285
|
-
[ngValue]="row[idKey]">
|
|
2286
|
-
{{ row[displayKey] }}
|
|
2287
|
-
</option>
|
|
2288
|
-
</select>
|
|
2270
|
+
template: `
|
|
2271
|
+
<div *ngIf="label" class="label">
|
|
2272
|
+
{{label}}{{(required) ? " *" : ""}}
|
|
2273
|
+
</div>
|
|
2274
|
+
<select [(ngModel)]="value"
|
|
2275
|
+
[style.height.px]="height"
|
|
2276
|
+
(change)="onChange()"
|
|
2277
|
+
[disabled]="disabled"
|
|
2278
|
+
class="form-control flex-grow-1"
|
|
2279
|
+
style="min-width: 4rem;">
|
|
2280
|
+
<ng-container *ngIf="!required">
|
|
2281
|
+
<option [ngValue]="undefined">
|
|
2282
|
+
</option>
|
|
2283
|
+
</ng-container>
|
|
2284
|
+
<option *ngFor="let row of entries"
|
|
2285
|
+
[ngValue]="row[idKey]">
|
|
2286
|
+
{{ row[displayKey] }}
|
|
2287
|
+
</option>
|
|
2288
|
+
</select>
|
|
2289
2289
|
`,
|
|
2290
2290
|
providers: [
|
|
2291
2291
|
{
|
|
@@ -2398,8 +2398,8 @@ class MdMultiSelectComponent {
|
|
|
2398
2398
|
registerOnTouched(callback) {
|
|
2399
2399
|
this.onTouchedCallback = callback;
|
|
2400
2400
|
}
|
|
2401
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
2402
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
2401
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", 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: "17.1.2", 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
2403
|
{
|
|
2404
2404
|
provide: NG_VALUE_ACCESSOR,
|
|
2405
2405
|
useExisting: forwardRef(() => MdMultiSelectComponent),
|
|
@@ -2422,7 +2422,7 @@ class MdMultiSelectComponent {
|
|
|
2422
2422
|
</mat-form-field>
|
|
2423
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
2424
|
}
|
|
2425
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
2425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: MdMultiSelectComponent, decorators: [{
|
|
2426
2426
|
type: Component,
|
|
2427
2427
|
args: [{
|
|
2428
2428
|
selector: "hci-md-multi-select",
|
|
@@ -2908,8 +2908,8 @@ class CustomComboBoxComponent {
|
|
|
2908
2908
|
ngOnDestroy() {
|
|
2909
2909
|
this.subs.unsubscribe();
|
|
2910
2910
|
}
|
|
2911
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
2912
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
2911
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", 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: "17.1.2", 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
2913
|
provide: NG_VALUE_ACCESSOR,
|
|
2914
2914
|
useExisting: forwardRef(() => CustomComboBoxComponent),
|
|
2915
2915
|
multi: true,
|
|
@@ -2989,7 +2989,7 @@ class CustomComboBoxComponent {
|
|
|
2989
2989
|
</mat-form-field>
|
|
2990
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
2991
|
}
|
|
2992
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
2992
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", 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,8 +3309,8 @@ class CustomMultiComboBoxComponent {
|
|
|
3309
3309
|
this.innerControlSubscription.unsubscribe();
|
|
3310
3310
|
}
|
|
3311
3311
|
}
|
|
3312
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
3313
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
3312
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: CustomMultiComboBoxComponent, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3313
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", 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
3314
|
provide: NG_VALUE_ACCESSOR,
|
|
3315
3315
|
useExisting: CustomMultiComboBoxComponent,
|
|
3316
3316
|
multi: true,
|
|
@@ -3345,7 +3345,7 @@ class CustomMultiComboBoxComponent {
|
|
|
3345
3345
|
</div>
|
|
3346
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
3347
|
}
|
|
3348
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
3348
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", 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,8 +3414,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
|
|
|
3414
3414
|
}] } });
|
|
3415
3415
|
|
|
3416
3416
|
class SelectModule {
|
|
3417
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
3418
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
3417
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3418
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: SelectModule, declarations: [MdSelectComponent,
|
|
3419
3419
|
MdMultiSelectComponent,
|
|
3420
3420
|
NativeSelectComponent,
|
|
3421
3421
|
CustomComboBoxComponent,
|
|
@@ -3434,7 +3434,7 @@ class SelectModule {
|
|
|
3434
3434
|
NativeSelectComponent,
|
|
3435
3435
|
CustomComboBoxComponent,
|
|
3436
3436
|
CustomMultiComboBoxComponent] }); }
|
|
3437
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
3437
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SelectModule, imports: [CommonModule,
|
|
3438
3438
|
FormsModule,
|
|
3439
3439
|
ReactiveFormsModule,
|
|
3440
3440
|
MatLegacySelectModule,
|
|
@@ -3446,7 +3446,7 @@ class SelectModule {
|
|
|
3446
3446
|
MatLegacyProgressSpinnerModule,
|
|
3447
3447
|
DictionaryServiceModule] }); }
|
|
3448
3448
|
}
|
|
3449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
3449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SelectModule, decorators: [{
|
|
3450
3450
|
type: NgModule,
|
|
3451
3451
|
args: [{
|
|
3452
3452
|
imports: [
|
|
@@ -3610,39 +3610,39 @@ class SearchComponent {
|
|
|
3610
3610
|
}
|
|
3611
3611
|
return filteredData;
|
|
3612
3612
|
}
|
|
3613
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
3614
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
3615
|
-
<div class="input-group ">
|
|
3616
|
-
<input #searchBox type="text"
|
|
3617
|
-
(keyup.enter)="doSearch(searchBox.value)"
|
|
3618
|
-
class="form-control"
|
|
3619
|
-
placeholder="Search for..."
|
|
3620
|
-
aria-label="Search for text">
|
|
3621
|
-
<div class="input-group-append">
|
|
3622
|
-
<button class="btn btn-outline-secondary" type="button" (click)="doSearch(searchBox.value)">
|
|
3623
|
-
<i class="fas fa-search"></i>
|
|
3624
|
-
</button>
|
|
3625
|
-
</div>
|
|
3626
|
-
</div>
|
|
3613
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SearchComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3614
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: SearchComponent, selector: "hci-search", inputs: { isArray: "isArray", isIncludeChildren: "isIncludeChildren", anyComponent: "anyComponent", input: "input", data: "data" }, outputs: { dataFiltered: "dataFiltered" }, usesOnChanges: true, ngImport: i0, template: `
|
|
3615
|
+
<div class="input-group ">
|
|
3616
|
+
<input #searchBox type="text"
|
|
3617
|
+
(keyup.enter)="doSearch(searchBox.value)"
|
|
3618
|
+
class="form-control"
|
|
3619
|
+
placeholder="Search for..."
|
|
3620
|
+
aria-label="Search for text">
|
|
3621
|
+
<div class="input-group-append">
|
|
3622
|
+
<button class="btn btn-outline-secondary" type="button" (click)="doSearch(searchBox.value)">
|
|
3623
|
+
<i class="fas fa-search"></i>
|
|
3624
|
+
</button>
|
|
3625
|
+
</div>
|
|
3626
|
+
</div>
|
|
3627
3627
|
`, isInline: true }); }
|
|
3628
3628
|
}
|
|
3629
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
3629
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SearchComponent, decorators: [{
|
|
3630
3630
|
type: Component,
|
|
3631
3631
|
args: [{
|
|
3632
3632
|
selector: "hci-search",
|
|
3633
|
-
template: `
|
|
3634
|
-
<div class="input-group ">
|
|
3635
|
-
<input #searchBox type="text"
|
|
3636
|
-
(keyup.enter)="doSearch(searchBox.value)"
|
|
3637
|
-
class="form-control"
|
|
3638
|
-
placeholder="Search for..."
|
|
3639
|
-
aria-label="Search for text">
|
|
3640
|
-
<div class="input-group-append">
|
|
3641
|
-
<button class="btn btn-outline-secondary" type="button" (click)="doSearch(searchBox.value)">
|
|
3642
|
-
<i class="fas fa-search"></i>
|
|
3643
|
-
</button>
|
|
3644
|
-
</div>
|
|
3645
|
-
</div>
|
|
3633
|
+
template: `
|
|
3634
|
+
<div class="input-group ">
|
|
3635
|
+
<input #searchBox type="text"
|
|
3636
|
+
(keyup.enter)="doSearch(searchBox.value)"
|
|
3637
|
+
class="form-control"
|
|
3638
|
+
placeholder="Search for..."
|
|
3639
|
+
aria-label="Search for text">
|
|
3640
|
+
<div class="input-group-append">
|
|
3641
|
+
<button class="btn btn-outline-secondary" type="button" (click)="doSearch(searchBox.value)">
|
|
3642
|
+
<i class="fas fa-search"></i>
|
|
3643
|
+
</button>
|
|
3644
|
+
</div>
|
|
3645
|
+
</div>
|
|
3646
3646
|
`
|
|
3647
3647
|
}]
|
|
3648
3648
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { isArray: [{
|
|
@@ -3660,15 +3660,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
|
|
|
3660
3660
|
}] } });
|
|
3661
3661
|
|
|
3662
3662
|
class SearchModule {
|
|
3663
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
3664
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
3663
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SearchModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3664
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: SearchModule, declarations: [SearchComponent], imports: [CommonModule,
|
|
3665
3665
|
FormsModule,
|
|
3666
3666
|
NgbModule], exports: [SearchComponent] }); }
|
|
3667
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
3667
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SearchModule, imports: [CommonModule,
|
|
3668
3668
|
FormsModule,
|
|
3669
3669
|
NgbModule] }); }
|
|
3670
3670
|
}
|
|
3671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
3671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SearchModule, decorators: [{
|
|
3672
3672
|
type: NgModule,
|
|
3673
3673
|
args: [{
|
|
3674
3674
|
imports: [
|