@huntsman-cancer-institute/reporting-framework 17.0.8 → 17.0.9
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/datepicker/report-datepicker.component.mjs +22 -22
- package/esm2022/format/format.component.mjs +23 -23
- package/esm2022/parameter/parameter.component.mjs +233 -233
- package/esm2022/report.module.mjs +4 -4
- package/esm2022/reporting-framework.component.mjs +3 -3
- package/esm2022/resizable-divider/resizable-section-divider.component.mjs +3 -3
- package/esm2022/spinner/dialogs.service.mjs +3 -3
- package/esm2022/spinner/spinner-dialog.component.mjs +3 -3
- package/fesm2022/huntsman-cancer-institute-reporting-framework.mjs +291 -291
- package/fesm2022/huntsman-cancer-institute-reporting-framework.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -79,31 +79,31 @@ class ReportDatepickerComponent {
|
|
|
79
79
|
this.valueChange.emit();
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
83
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
82
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ReportDatepickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
83
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: ReportDatepickerComponent, selector: "report-datepicker", inputs: { value: "value", placeholder: "placeholder", minDate: "minDate", maxDate: "maxDate", invalid: "invalid" }, outputs: { valueChange: "valueChange" }, providers: [
|
|
84
84
|
{ provide: MAT_DATE_LOCALE, useValue: "en-GB" }
|
|
85
|
-
], ngImport: i0, template: `
|
|
86
|
-
<div class="d-flex" style="width: 100%;">
|
|
87
|
-
<input matInput [matDatepicker]="picker" class="form-control" style="cursor: pointer;" [placeholder]="placeholder" [ngModel]="value" (ngModelChange)="onChange($event)"
|
|
88
|
-
(click)="picker.open()" (blur)="onBlur()" [min]="minDate" [max]="maxDate"
|
|
89
|
-
[ngStyle]="{'background-color':invalid ? 'red' : '#fff'}" >
|
|
90
|
-
<span class="input-group-text" id="clearIcon" (click)="clear()"><i class="fas fa-times"></i></span>
|
|
91
|
-
<button class="btn btn-outline-secondary" type="button" (click)="picker.open()" style="height:32px; width:32px;"><i class="fas fa-calendar-alt"></i></button>
|
|
92
|
-
<mat-datepicker #picker ></mat-datepicker>
|
|
93
|
-
</div>
|
|
85
|
+
], ngImport: i0, template: `
|
|
86
|
+
<div class="d-flex" style="width: 100%;">
|
|
87
|
+
<input matInput [matDatepicker]="picker" class="form-control" style="cursor: pointer;" [placeholder]="placeholder" [ngModel]="value" (ngModelChange)="onChange($event)"
|
|
88
|
+
(click)="picker.open()" (blur)="onBlur()" [min]="minDate" [max]="maxDate"
|
|
89
|
+
[ngStyle]="{'background-color':invalid ? 'red' : '#fff'}" >
|
|
90
|
+
<span class="input-group-text" id="clearIcon" (click)="clear()"><i class="fas fa-times"></i></span>
|
|
91
|
+
<button class="btn btn-outline-secondary" type="button" (click)="picker.open()" style="height:32px; width:32px;"><i class="fas fa-calendar-alt"></i></button>
|
|
92
|
+
<mat-datepicker #picker ></mat-datepicker>
|
|
93
|
+
</div>
|
|
94
94
|
`, isInline: true, styles: ["#clearIcon{cursor:pointer}#clearIcon:Hover{background-color:#495057;color:#e9ecef}\n"], dependencies: [{ kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { 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: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }] }); }
|
|
95
95
|
}
|
|
96
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
96
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ReportDatepickerComponent, decorators: [{
|
|
97
97
|
type: Component,
|
|
98
|
-
args: [{ selector: "report-datepicker", template: `
|
|
99
|
-
<div class="d-flex" style="width: 100%;">
|
|
100
|
-
<input matInput [matDatepicker]="picker" class="form-control" style="cursor: pointer;" [placeholder]="placeholder" [ngModel]="value" (ngModelChange)="onChange($event)"
|
|
101
|
-
(click)="picker.open()" (blur)="onBlur()" [min]="minDate" [max]="maxDate"
|
|
102
|
-
[ngStyle]="{'background-color':invalid ? 'red' : '#fff'}" >
|
|
103
|
-
<span class="input-group-text" id="clearIcon" (click)="clear()"><i class="fas fa-times"></i></span>
|
|
104
|
-
<button class="btn btn-outline-secondary" type="button" (click)="picker.open()" style="height:32px; width:32px;"><i class="fas fa-calendar-alt"></i></button>
|
|
105
|
-
<mat-datepicker #picker ></mat-datepicker>
|
|
106
|
-
</div>
|
|
98
|
+
args: [{ selector: "report-datepicker", template: `
|
|
99
|
+
<div class="d-flex" style="width: 100%;">
|
|
100
|
+
<input matInput [matDatepicker]="picker" class="form-control" style="cursor: pointer;" [placeholder]="placeholder" [ngModel]="value" (ngModelChange)="onChange($event)"
|
|
101
|
+
(click)="picker.open()" (blur)="onBlur()" [min]="minDate" [max]="maxDate"
|
|
102
|
+
[ngStyle]="{'background-color':invalid ? 'red' : '#fff'}" >
|
|
103
|
+
<span class="input-group-text" id="clearIcon" (click)="clear()"><i class="fas fa-times"></i></span>
|
|
104
|
+
<button class="btn btn-outline-secondary" type="button" (click)="picker.open()" style="height:32px; width:32px;"><i class="fas fa-calendar-alt"></i></button>
|
|
105
|
+
<mat-datepicker #picker ></mat-datepicker>
|
|
106
|
+
</div>
|
|
107
107
|
`, providers: [
|
|
108
108
|
{ provide: MAT_DATE_LOCALE, useValue: "en-GB" }
|
|
109
109
|
], styles: ["#clearIcon{cursor:pointer}#clearIcon:Hover{background-color:#495057;color:#e9ecef}\n"] }]
|
|
@@ -129,241 +129,241 @@ class ParameterComponent {
|
|
|
129
129
|
this.param.selectedValue = o.value;
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
133
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
134
|
-
|
|
135
|
-
<!--Text Input-->
|
|
136
|
-
<ng-container *ngIf="param.type === 'input'">
|
|
137
|
-
<div style="display: block;">
|
|
138
|
-
<div class="row">
|
|
139
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
140
|
-
<input type="text" class="form-control input-field"
|
|
141
|
-
[id]="param.name"
|
|
142
|
-
[name]="param.name"
|
|
143
|
-
[(ngModel)]="param.selectedValue"
|
|
144
|
-
>
|
|
145
|
-
</div>
|
|
146
|
-
</div>
|
|
147
|
-
</ng-container>
|
|
148
|
-
|
|
149
|
-
<!--Date-->
|
|
150
|
-
<ng-container *ngIf="param.type === 'date'">
|
|
151
|
-
<div style="display: block;">
|
|
152
|
-
<div class="row">
|
|
153
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
154
|
-
<report-datepicker class="date-input"
|
|
155
|
-
placeholder=""
|
|
156
|
-
id="{{param.name}}"
|
|
157
|
-
[(value)]="param.selectedValue"
|
|
158
|
-
>
|
|
159
|
-
</report-datepicker>
|
|
160
|
-
</div>
|
|
161
|
-
</div>
|
|
162
|
-
</ng-container>
|
|
163
|
-
|
|
164
|
-
<!--Select with dictionary-->
|
|
165
|
-
<ng-container *ngIf="param.type === 'select' && param.className && param.className != ''">
|
|
166
|
-
<div style="display: block;">
|
|
167
|
-
<div class="row">
|
|
168
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
169
|
-
<hci-native-select class="report-select"
|
|
170
|
-
[id]="param.name"
|
|
171
|
-
[name]="param.name"
|
|
172
|
-
[idKey]="param.valueXPath"
|
|
173
|
-
[displayKey]="param.displayXPath"
|
|
174
|
-
[(ngModel)]="param.selectedValue"
|
|
175
|
-
[url]="param.calculateDictionaryURL()"
|
|
176
|
-
></hci-native-select>
|
|
177
|
-
</div>
|
|
178
|
-
</div>
|
|
179
|
-
</ng-container>
|
|
180
|
-
|
|
181
|
-
<!--Select with manual options-->
|
|
182
|
-
<ng-container *ngIf="param.type === 'select' && (!param.className || param.className === '')">
|
|
183
|
-
<div style="display: block;">
|
|
184
|
-
<div class="row">
|
|
185
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
186
|
-
<hci-native-select class="report-select"
|
|
187
|
-
[id]="param.name"
|
|
188
|
-
[name]="param.name"
|
|
189
|
-
[(ngModel)]="param.selectedValue"
|
|
190
|
-
[entries] = "entries"
|
|
191
|
-
></hci-native-select>
|
|
192
|
-
</div>
|
|
193
|
-
</div>
|
|
194
|
-
</ng-container>
|
|
195
|
-
|
|
196
|
-
<!--Multi-select with dictionary-->
|
|
197
|
-
<ng-container *ngIf="param.type === 'multiselect' && param.className && param.className != ''">
|
|
198
|
-
<div style="display: block;">
|
|
199
|
-
<div class="row">
|
|
200
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
201
|
-
<hci-md-multi-select class="multi-report-select"
|
|
202
|
-
[id]="param.name"
|
|
203
|
-
[name]="param.name"
|
|
204
|
-
[idKey]="param.valueXPath"
|
|
205
|
-
[displayKey]="param.displayXPath"
|
|
206
|
-
[(ngModel)]="param.selectedValueList"
|
|
207
|
-
[url]="param.calculateDictionaryURL()"
|
|
208
|
-
>
|
|
209
|
-
</hci-md-multi-select>
|
|
210
|
-
</div>
|
|
211
|
-
</div>
|
|
212
|
-
</ng-container>
|
|
213
|
-
|
|
214
|
-
<!--Multi-select with manual options-->
|
|
215
|
-
<ng-container *ngIf="param.type === 'multiselect' && (!param.className || param.className === '')">
|
|
216
|
-
<div style="display: block;">
|
|
217
|
-
<div class="row">
|
|
218
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
219
|
-
<hci-md-multi-select class="multi-report-select"
|
|
220
|
-
[id]="param.name"
|
|
221
|
-
[name]="param.name"
|
|
222
|
-
[entries] = "entries"
|
|
223
|
-
[(ngModel)]="param.selectedValueList"
|
|
224
|
-
>
|
|
225
|
-
</hci-md-multi-select>
|
|
226
|
-
</div>
|
|
227
|
-
</div>
|
|
228
|
-
</ng-container>
|
|
229
|
-
|
|
230
|
-
<!--Radio buttons-->
|
|
231
|
-
<ng-container *ngIf="param.type === 'radio'">
|
|
232
|
-
<div style="display: block;">
|
|
233
|
-
<div class="row">
|
|
234
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
235
|
-
<div class="radio-pair" *ngFor="let o of param.options">
|
|
236
|
-
<input type="radio"
|
|
237
|
-
style="margin-right: 3px;"
|
|
238
|
-
[value]="o.value"
|
|
239
|
-
[id]="param.name + '-' + o.value"
|
|
240
|
-
[(ngModel)]="param.selectedValue"
|
|
241
|
-
[name]="param.name">
|
|
242
|
-
<label for="{{param.name + '-' + o.value}}">{{o.display}}</label>
|
|
243
|
-
</div>
|
|
244
|
-
</div>
|
|
245
|
-
</div>
|
|
246
|
-
</ng-container>
|
|
247
|
-
|
|
132
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ParameterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
133
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: ParameterComponent, selector: "hci-parameter", ngImport: i0, template: `
|
|
134
|
+
|
|
135
|
+
<!--Text Input-->
|
|
136
|
+
<ng-container *ngIf="param.type === 'input'">
|
|
137
|
+
<div style="display: block;">
|
|
138
|
+
<div class="row">
|
|
139
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
140
|
+
<input type="text" class="form-control input-field"
|
|
141
|
+
[id]="param.name"
|
|
142
|
+
[name]="param.name"
|
|
143
|
+
[(ngModel)]="param.selectedValue"
|
|
144
|
+
>
|
|
145
|
+
</div>
|
|
146
|
+
</div>
|
|
147
|
+
</ng-container>
|
|
148
|
+
|
|
149
|
+
<!--Date-->
|
|
150
|
+
<ng-container *ngIf="param.type === 'date'">
|
|
151
|
+
<div style="display: block;">
|
|
152
|
+
<div class="row">
|
|
153
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
154
|
+
<report-datepicker class="date-input"
|
|
155
|
+
placeholder=""
|
|
156
|
+
id="{{param.name}}"
|
|
157
|
+
[(value)]="param.selectedValue"
|
|
158
|
+
>
|
|
159
|
+
</report-datepicker>
|
|
160
|
+
</div>
|
|
161
|
+
</div>
|
|
162
|
+
</ng-container>
|
|
163
|
+
|
|
164
|
+
<!--Select with dictionary-->
|
|
165
|
+
<ng-container *ngIf="param.type === 'select' && param.className && param.className != ''">
|
|
166
|
+
<div style="display: block;">
|
|
167
|
+
<div class="row">
|
|
168
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
169
|
+
<hci-native-select class="report-select"
|
|
170
|
+
[id]="param.name"
|
|
171
|
+
[name]="param.name"
|
|
172
|
+
[idKey]="param.valueXPath"
|
|
173
|
+
[displayKey]="param.displayXPath"
|
|
174
|
+
[(ngModel)]="param.selectedValue"
|
|
175
|
+
[url]="param.calculateDictionaryURL()"
|
|
176
|
+
></hci-native-select>
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
</ng-container>
|
|
180
|
+
|
|
181
|
+
<!--Select with manual options-->
|
|
182
|
+
<ng-container *ngIf="param.type === 'select' && (!param.className || param.className === '')">
|
|
183
|
+
<div style="display: block;">
|
|
184
|
+
<div class="row">
|
|
185
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
186
|
+
<hci-native-select class="report-select"
|
|
187
|
+
[id]="param.name"
|
|
188
|
+
[name]="param.name"
|
|
189
|
+
[(ngModel)]="param.selectedValue"
|
|
190
|
+
[entries] = "entries"
|
|
191
|
+
></hci-native-select>
|
|
192
|
+
</div>
|
|
193
|
+
</div>
|
|
194
|
+
</ng-container>
|
|
195
|
+
|
|
196
|
+
<!--Multi-select with dictionary-->
|
|
197
|
+
<ng-container *ngIf="param.type === 'multiselect' && param.className && param.className != ''">
|
|
198
|
+
<div style="display: block;">
|
|
199
|
+
<div class="row">
|
|
200
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
201
|
+
<hci-md-multi-select class="multi-report-select"
|
|
202
|
+
[id]="param.name"
|
|
203
|
+
[name]="param.name"
|
|
204
|
+
[idKey]="param.valueXPath"
|
|
205
|
+
[displayKey]="param.displayXPath"
|
|
206
|
+
[(ngModel)]="param.selectedValueList"
|
|
207
|
+
[url]="param.calculateDictionaryURL()"
|
|
208
|
+
>
|
|
209
|
+
</hci-md-multi-select>
|
|
210
|
+
</div>
|
|
211
|
+
</div>
|
|
212
|
+
</ng-container>
|
|
213
|
+
|
|
214
|
+
<!--Multi-select with manual options-->
|
|
215
|
+
<ng-container *ngIf="param.type === 'multiselect' && (!param.className || param.className === '')">
|
|
216
|
+
<div style="display: block;">
|
|
217
|
+
<div class="row">
|
|
218
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
219
|
+
<hci-md-multi-select class="multi-report-select"
|
|
220
|
+
[id]="param.name"
|
|
221
|
+
[name]="param.name"
|
|
222
|
+
[entries] = "entries"
|
|
223
|
+
[(ngModel)]="param.selectedValueList"
|
|
224
|
+
>
|
|
225
|
+
</hci-md-multi-select>
|
|
226
|
+
</div>
|
|
227
|
+
</div>
|
|
228
|
+
</ng-container>
|
|
229
|
+
|
|
230
|
+
<!--Radio buttons-->
|
|
231
|
+
<ng-container *ngIf="param.type === 'radio'">
|
|
232
|
+
<div style="display: block;">
|
|
233
|
+
<div class="row">
|
|
234
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
235
|
+
<div class="radio-pair" *ngFor="let o of param.options">
|
|
236
|
+
<input type="radio"
|
|
237
|
+
style="margin-right: 3px;"
|
|
238
|
+
[value]="o.value"
|
|
239
|
+
[id]="param.name + '-' + o.value"
|
|
240
|
+
[(ngModel)]="param.selectedValue"
|
|
241
|
+
[name]="param.name">
|
|
242
|
+
<label for="{{param.name + '-' + o.value}}">{{o.display}}</label>
|
|
243
|
+
</div>
|
|
244
|
+
</div>
|
|
245
|
+
</div>
|
|
246
|
+
</ng-container>
|
|
247
|
+
|
|
248
248
|
`, isInline: true, styles: [".data-label{width:270px;margin-right:30px;display:flex;align-items:center;justify-content:flex-end}.date-input{width:45%}.report-select,.multi-report-select{flex-grow:unset!important;width:45%}.radio-pair{display:flex;align-items:center;padding-right:5px;margin-right:15px}.input-field{width:45%}\n"], 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.RadioControlValueAccessor, selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", inputs: ["name", "formControlName", "value"] }, { 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: "component", type: i3$1.MdMultiSelectComponent, selector: "hci-md-multi-select", inputs: ["class", "name", "label", "url", "entries", "required", "idKey", "displayKey"] }, { kind: "component", type: i3$1.NativeSelectComponent, selector: "hci-native-select", inputs: ["class", "name", "label", "url", "entries", "required", "idKey", "displayKey", "disabled", "sortKey", "sortNumeric", "filterKey", "filter"] }, { kind: "component", type: ReportDatepickerComponent, selector: "report-datepicker", inputs: ["value", "placeholder", "minDate", "maxDate", "invalid"], outputs: ["valueChange"] }] }); }
|
|
249
249
|
}
|
|
250
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
250
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ParameterComponent, decorators: [{
|
|
251
251
|
type: Component,
|
|
252
|
-
args: [{ selector: "hci-parameter", template: `
|
|
253
|
-
|
|
254
|
-
<!--Text Input-->
|
|
255
|
-
<ng-container *ngIf="param.type === 'input'">
|
|
256
|
-
<div style="display: block;">
|
|
257
|
-
<div class="row">
|
|
258
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
259
|
-
<input type="text" class="form-control input-field"
|
|
260
|
-
[id]="param.name"
|
|
261
|
-
[name]="param.name"
|
|
262
|
-
[(ngModel)]="param.selectedValue"
|
|
263
|
-
>
|
|
264
|
-
</div>
|
|
265
|
-
</div>
|
|
266
|
-
</ng-container>
|
|
267
|
-
|
|
268
|
-
<!--Date-->
|
|
269
|
-
<ng-container *ngIf="param.type === 'date'">
|
|
270
|
-
<div style="display: block;">
|
|
271
|
-
<div class="row">
|
|
272
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
273
|
-
<report-datepicker class="date-input"
|
|
274
|
-
placeholder=""
|
|
275
|
-
id="{{param.name}}"
|
|
276
|
-
[(value)]="param.selectedValue"
|
|
277
|
-
>
|
|
278
|
-
</report-datepicker>
|
|
279
|
-
</div>
|
|
280
|
-
</div>
|
|
281
|
-
</ng-container>
|
|
282
|
-
|
|
283
|
-
<!--Select with dictionary-->
|
|
284
|
-
<ng-container *ngIf="param.type === 'select' && param.className && param.className != ''">
|
|
285
|
-
<div style="display: block;">
|
|
286
|
-
<div class="row">
|
|
287
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
288
|
-
<hci-native-select class="report-select"
|
|
289
|
-
[id]="param.name"
|
|
290
|
-
[name]="param.name"
|
|
291
|
-
[idKey]="param.valueXPath"
|
|
292
|
-
[displayKey]="param.displayXPath"
|
|
293
|
-
[(ngModel)]="param.selectedValue"
|
|
294
|
-
[url]="param.calculateDictionaryURL()"
|
|
295
|
-
></hci-native-select>
|
|
296
|
-
</div>
|
|
297
|
-
</div>
|
|
298
|
-
</ng-container>
|
|
299
|
-
|
|
300
|
-
<!--Select with manual options-->
|
|
301
|
-
<ng-container *ngIf="param.type === 'select' && (!param.className || param.className === '')">
|
|
302
|
-
<div style="display: block;">
|
|
303
|
-
<div class="row">
|
|
304
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
305
|
-
<hci-native-select class="report-select"
|
|
306
|
-
[id]="param.name"
|
|
307
|
-
[name]="param.name"
|
|
308
|
-
[(ngModel)]="param.selectedValue"
|
|
309
|
-
[entries] = "entries"
|
|
310
|
-
></hci-native-select>
|
|
311
|
-
</div>
|
|
312
|
-
</div>
|
|
313
|
-
</ng-container>
|
|
314
|
-
|
|
315
|
-
<!--Multi-select with dictionary-->
|
|
316
|
-
<ng-container *ngIf="param.type === 'multiselect' && param.className && param.className != ''">
|
|
317
|
-
<div style="display: block;">
|
|
318
|
-
<div class="row">
|
|
319
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
320
|
-
<hci-md-multi-select class="multi-report-select"
|
|
321
|
-
[id]="param.name"
|
|
322
|
-
[name]="param.name"
|
|
323
|
-
[idKey]="param.valueXPath"
|
|
324
|
-
[displayKey]="param.displayXPath"
|
|
325
|
-
[(ngModel)]="param.selectedValueList"
|
|
326
|
-
[url]="param.calculateDictionaryURL()"
|
|
327
|
-
>
|
|
328
|
-
</hci-md-multi-select>
|
|
329
|
-
</div>
|
|
330
|
-
</div>
|
|
331
|
-
</ng-container>
|
|
332
|
-
|
|
333
|
-
<!--Multi-select with manual options-->
|
|
334
|
-
<ng-container *ngIf="param.type === 'multiselect' && (!param.className || param.className === '')">
|
|
335
|
-
<div style="display: block;">
|
|
336
|
-
<div class="row">
|
|
337
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
338
|
-
<hci-md-multi-select class="multi-report-select"
|
|
339
|
-
[id]="param.name"
|
|
340
|
-
[name]="param.name"
|
|
341
|
-
[entries] = "entries"
|
|
342
|
-
[(ngModel)]="param.selectedValueList"
|
|
343
|
-
>
|
|
344
|
-
</hci-md-multi-select>
|
|
345
|
-
</div>
|
|
346
|
-
</div>
|
|
347
|
-
</ng-container>
|
|
348
|
-
|
|
349
|
-
<!--Radio buttons-->
|
|
350
|
-
<ng-container *ngIf="param.type === 'radio'">
|
|
351
|
-
<div style="display: block;">
|
|
352
|
-
<div class="row">
|
|
353
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
354
|
-
<div class="radio-pair" *ngFor="let o of param.options">
|
|
355
|
-
<input type="radio"
|
|
356
|
-
style="margin-right: 3px;"
|
|
357
|
-
[value]="o.value"
|
|
358
|
-
[id]="param.name + '-' + o.value"
|
|
359
|
-
[(ngModel)]="param.selectedValue"
|
|
360
|
-
[name]="param.name">
|
|
361
|
-
<label for="{{param.name + '-' + o.value}}">{{o.display}}</label>
|
|
362
|
-
</div>
|
|
363
|
-
</div>
|
|
364
|
-
</div>
|
|
365
|
-
</ng-container>
|
|
366
|
-
|
|
252
|
+
args: [{ selector: "hci-parameter", template: `
|
|
253
|
+
|
|
254
|
+
<!--Text Input-->
|
|
255
|
+
<ng-container *ngIf="param.type === 'input'">
|
|
256
|
+
<div style="display: block;">
|
|
257
|
+
<div class="row">
|
|
258
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
259
|
+
<input type="text" class="form-control input-field"
|
|
260
|
+
[id]="param.name"
|
|
261
|
+
[name]="param.name"
|
|
262
|
+
[(ngModel)]="param.selectedValue"
|
|
263
|
+
>
|
|
264
|
+
</div>
|
|
265
|
+
</div>
|
|
266
|
+
</ng-container>
|
|
267
|
+
|
|
268
|
+
<!--Date-->
|
|
269
|
+
<ng-container *ngIf="param.type === 'date'">
|
|
270
|
+
<div style="display: block;">
|
|
271
|
+
<div class="row">
|
|
272
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
273
|
+
<report-datepicker class="date-input"
|
|
274
|
+
placeholder=""
|
|
275
|
+
id="{{param.name}}"
|
|
276
|
+
[(value)]="param.selectedValue"
|
|
277
|
+
>
|
|
278
|
+
</report-datepicker>
|
|
279
|
+
</div>
|
|
280
|
+
</div>
|
|
281
|
+
</ng-container>
|
|
282
|
+
|
|
283
|
+
<!--Select with dictionary-->
|
|
284
|
+
<ng-container *ngIf="param.type === 'select' && param.className && param.className != ''">
|
|
285
|
+
<div style="display: block;">
|
|
286
|
+
<div class="row">
|
|
287
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
288
|
+
<hci-native-select class="report-select"
|
|
289
|
+
[id]="param.name"
|
|
290
|
+
[name]="param.name"
|
|
291
|
+
[idKey]="param.valueXPath"
|
|
292
|
+
[displayKey]="param.displayXPath"
|
|
293
|
+
[(ngModel)]="param.selectedValue"
|
|
294
|
+
[url]="param.calculateDictionaryURL()"
|
|
295
|
+
></hci-native-select>
|
|
296
|
+
</div>
|
|
297
|
+
</div>
|
|
298
|
+
</ng-container>
|
|
299
|
+
|
|
300
|
+
<!--Select with manual options-->
|
|
301
|
+
<ng-container *ngIf="param.type === 'select' && (!param.className || param.className === '')">
|
|
302
|
+
<div style="display: block;">
|
|
303
|
+
<div class="row">
|
|
304
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
305
|
+
<hci-native-select class="report-select"
|
|
306
|
+
[id]="param.name"
|
|
307
|
+
[name]="param.name"
|
|
308
|
+
[(ngModel)]="param.selectedValue"
|
|
309
|
+
[entries] = "entries"
|
|
310
|
+
></hci-native-select>
|
|
311
|
+
</div>
|
|
312
|
+
</div>
|
|
313
|
+
</ng-container>
|
|
314
|
+
|
|
315
|
+
<!--Multi-select with dictionary-->
|
|
316
|
+
<ng-container *ngIf="param.type === 'multiselect' && param.className && param.className != ''">
|
|
317
|
+
<div style="display: block;">
|
|
318
|
+
<div class="row">
|
|
319
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
320
|
+
<hci-md-multi-select class="multi-report-select"
|
|
321
|
+
[id]="param.name"
|
|
322
|
+
[name]="param.name"
|
|
323
|
+
[idKey]="param.valueXPath"
|
|
324
|
+
[displayKey]="param.displayXPath"
|
|
325
|
+
[(ngModel)]="param.selectedValueList"
|
|
326
|
+
[url]="param.calculateDictionaryURL()"
|
|
327
|
+
>
|
|
328
|
+
</hci-md-multi-select>
|
|
329
|
+
</div>
|
|
330
|
+
</div>
|
|
331
|
+
</ng-container>
|
|
332
|
+
|
|
333
|
+
<!--Multi-select with manual options-->
|
|
334
|
+
<ng-container *ngIf="param.type === 'multiselect' && (!param.className || param.className === '')">
|
|
335
|
+
<div style="display: block;">
|
|
336
|
+
<div class="row">
|
|
337
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
338
|
+
<hci-md-multi-select class="multi-report-select"
|
|
339
|
+
[id]="param.name"
|
|
340
|
+
[name]="param.name"
|
|
341
|
+
[entries] = "entries"
|
|
342
|
+
[(ngModel)]="param.selectedValueList"
|
|
343
|
+
>
|
|
344
|
+
</hci-md-multi-select>
|
|
345
|
+
</div>
|
|
346
|
+
</div>
|
|
347
|
+
</ng-container>
|
|
348
|
+
|
|
349
|
+
<!--Radio buttons-->
|
|
350
|
+
<ng-container *ngIf="param.type === 'radio'">
|
|
351
|
+
<div style="display: block;">
|
|
352
|
+
<div class="row">
|
|
353
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
354
|
+
<div class="radio-pair" *ngFor="let o of param.options">
|
|
355
|
+
<input type="radio"
|
|
356
|
+
style="margin-right: 3px;"
|
|
357
|
+
[value]="o.value"
|
|
358
|
+
[id]="param.name + '-' + o.value"
|
|
359
|
+
[(ngModel)]="param.selectedValue"
|
|
360
|
+
[name]="param.name">
|
|
361
|
+
<label for="{{param.name + '-' + o.value}}">{{o.display}}</label>
|
|
362
|
+
</div>
|
|
363
|
+
</div>
|
|
364
|
+
</div>
|
|
365
|
+
</ng-container>
|
|
366
|
+
|
|
367
367
|
`, styles: [".data-label{width:270px;margin-right:30px;display:flex;align-items:center;justify-content:flex-end}.date-input{width:45%}.report-select,.multi-report-select{flex-grow:unset!important;width:45%}.radio-pair{display:flex;align-items:center;padding-right:5px;margin-right:15px}.input-field{width:45%}\n"] }]
|
|
368
368
|
}] });
|
|
369
369
|
|
|
@@ -384,31 +384,31 @@ class FormatComponent {
|
|
|
384
384
|
this.selectedValue = s;
|
|
385
385
|
this.selectedValueChange.emit(s);
|
|
386
386
|
}
|
|
387
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
388
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
389
|
-
<div class="radio-pair">
|
|
390
|
-
<input type="radio" #radio
|
|
391
|
-
[value]="format.name"
|
|
392
|
-
[id]="format.name"
|
|
393
|
-
[checked]="selectedValue === format.name ? true : false"
|
|
394
|
-
(click)="selectFormat(radio.value)"
|
|
395
|
-
name="format">
|
|
396
|
-
<label>{{format.caption}}</label>
|
|
397
|
-
</div>
|
|
387
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: FormatComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
388
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: FormatComponent, selector: "hci-format", inputs: { selectedValue: "selectedValue" }, outputs: { selectedValueChange: "selectedValueChange" }, ngImport: i0, template: `
|
|
389
|
+
<div class="radio-pair">
|
|
390
|
+
<input type="radio" #radio
|
|
391
|
+
[value]="format.name"
|
|
392
|
+
[id]="format.name"
|
|
393
|
+
[checked]="selectedValue === format.name ? true : false"
|
|
394
|
+
(click)="selectFormat(radio.value)"
|
|
395
|
+
name="format">
|
|
396
|
+
<label>{{format.caption}}</label>
|
|
397
|
+
</div>
|
|
398
398
|
`, isInline: true, styles: [".radio-pair{display:flex;align-items:center;padding-right:5px}\n"] }); }
|
|
399
399
|
}
|
|
400
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
400
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: FormatComponent, decorators: [{
|
|
401
401
|
type: Component,
|
|
402
|
-
args: [{ selector: "hci-format", template: `
|
|
403
|
-
<div class="radio-pair">
|
|
404
|
-
<input type="radio" #radio
|
|
405
|
-
[value]="format.name"
|
|
406
|
-
[id]="format.name"
|
|
407
|
-
[checked]="selectedValue === format.name ? true : false"
|
|
408
|
-
(click)="selectFormat(radio.value)"
|
|
409
|
-
name="format">
|
|
410
|
-
<label>{{format.caption}}</label>
|
|
411
|
-
</div>
|
|
402
|
+
args: [{ selector: "hci-format", template: `
|
|
403
|
+
<div class="radio-pair">
|
|
404
|
+
<input type="radio" #radio
|
|
405
|
+
[value]="format.name"
|
|
406
|
+
[id]="format.name"
|
|
407
|
+
[checked]="selectedValue === format.name ? true : false"
|
|
408
|
+
(click)="selectFormat(radio.value)"
|
|
409
|
+
name="format">
|
|
410
|
+
<label>{{format.caption}}</label>
|
|
411
|
+
</div>
|
|
412
412
|
`, styles: [".radio-pair{display:flex;align-items:center;padding-right:5px}\n"] }]
|
|
413
413
|
}], propDecorators: { selectedValue: [{
|
|
414
414
|
type: Input
|
|
@@ -435,8 +435,8 @@ class SpinnerDialogComponent {
|
|
|
435
435
|
}
|
|
436
436
|
}
|
|
437
437
|
}
|
|
438
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
439
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
438
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SpinnerDialogComponent, deps: [{ token: i1$1.MatLegacyDialogRef }, { token: MAT_LEGACY_DIALOG_DATA }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
439
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: SpinnerDialogComponent, selector: "spinner-dialog", inputs: { strokeWidth: "strokeWidth", diameter: "diameter", message: "message" }, ngImport: i0, template: `
|
|
440
440
|
<div mat-dialog-content class="full-height padded">
|
|
441
441
|
<div class="full-width full-height t">
|
|
442
442
|
<div class="tr">
|
|
@@ -453,7 +453,7 @@ class SpinnerDialogComponent {
|
|
|
453
453
|
</div>
|
|
454
454
|
`, isInline: true, styles: [".t{display:table}.tr{display:table-row}.td{display:table-cell}.full-height{height:100%}.full-width{width:100%}.vertical-center{vertical-align:middle}.padded{padding-top:.4em;padding-bottom:.4em}.not-rendered{padding:0;margin:0;min-height:0;max-height:0;height:0}\n"], dependencies: [{ kind: "directive", type: i1$1.MatLegacyDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "directive", type: i1$1.MatLegacyDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "component", type: i2$1.MatLegacyProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "diameter", "strokeWidth", "mode", "value"], exportAs: ["matProgressSpinner"] }] }); }
|
|
455
455
|
}
|
|
456
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
456
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: SpinnerDialogComponent, decorators: [{
|
|
457
457
|
type: Component,
|
|
458
458
|
args: [{ selector: "spinner-dialog", template: `
|
|
459
459
|
<div mat-dialog-content class="full-height padded">
|
|
@@ -572,10 +572,10 @@ class DialogsService {
|
|
|
572
572
|
this.stopAllSpinnerDialogs();
|
|
573
573
|
}
|
|
574
574
|
}
|
|
575
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
576
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.
|
|
575
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DialogsService, deps: [{ token: i1$1.MatLegacyDialog }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
576
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DialogsService }); }
|
|
577
577
|
}
|
|
578
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: DialogsService, decorators: [{
|
|
579
579
|
type: Injectable
|
|
580
580
|
}], ctorParameters: () => [{ type: i1$1.MatLegacyDialog }] });
|
|
581
581
|
|
|
@@ -666,8 +666,8 @@ class ResizableSectionDividerComponent {
|
|
|
666
666
|
window.removeEventListener("touchmove", this.horizontalTouchFunction);
|
|
667
667
|
}
|
|
668
668
|
}
|
|
669
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
670
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
669
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ResizableSectionDividerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
670
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: ResizableSectionDividerComponent, selector: "resizable-section-divider", inputs: { initialPercentage: "initialPercentage", isVerticalLayout: "isVerticalLayout", maxPercentage: "maxPercentage", minPercentage: "minPercentage" }, host: { listeners: { "document:mousemove": "mouseMove($event)", "document:mouseup": "mouseUp($event)", "document:touchend": "mouseUp($event)" } }, viewQueries: [{ propertyName: "verticalContainer", first: true, predicate: ["verticalContainer"], descendants: true }, { propertyName: "horizontalContainer", first: true, predicate: ["horizontalContainer"], descendants: true }], ngImport: i0, template: `
|
|
671
671
|
<div *ngIf="isVerticalLayout" style="height: 100%; width: 100%;" #verticalContainer>
|
|
672
672
|
<div class="p-1" style="width: 100%;" [style.min-height.%]="minPercentage" [style.max-height.%]="maxPercentage" [style.height.%]="(100 - sectionSize - grabberOffset)">
|
|
673
673
|
<ng-content select="[topSection]"></ng-content>
|
|
@@ -697,7 +697,7 @@ class ResizableSectionDividerComponent {
|
|
|
697
697
|
</div>
|
|
698
698
|
`, isInline: true, styles: [".rad-grabber{cursor:ew-resize}.rad-grabber-vertical{cursor:ns-resize}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
699
699
|
}
|
|
700
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
700
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ResizableSectionDividerComponent, decorators: [{
|
|
701
701
|
type: Component,
|
|
702
702
|
args: [{ selector: "resizable-section-divider", template: `
|
|
703
703
|
<div *ngIf="isVerticalLayout" style="height: 100%; width: 100%;" #verticalContainer>
|
|
@@ -1133,8 +1133,8 @@ class ReportingFrameworkComponent {
|
|
|
1133
1133
|
ngOnDestroy() {
|
|
1134
1134
|
this.destroyComponentRefs();
|
|
1135
1135
|
}
|
|
1136
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1137
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.
|
|
1136
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ReportingFrameworkComponent, deps: [{ token: i1$2.HttpClient }, { token: i0.ComponentFactoryResolver }, { token: i1.DatePipe }, { token: DialogsService }, { token: i4.NgbModal }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1137
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: ReportingFrameworkComponent, selector: "hci-reporting-framework", inputs: { manageReportUrl: "manageReportUrl", commandPrefix: "commandPrefix", dictAPILeadIn: "dictAPILeadIn", reportsByType: "reportsByType" }, viewQueries: [{ propertyName: "paramContainer", first: true, predicate: ["paramContainer"], descendants: true, read: ViewContainerRef }, { propertyName: "formatContainer", first: true, predicate: ["formatContainer"], descendants: true, read: ViewContainerRef }], ngImport: i0, template: `
|
|
1138
1138
|
<div style="height: 100vh">
|
|
1139
1139
|
<resizable-section-divider class="flex-grow-1" [isVerticalLayout]="true">
|
|
1140
1140
|
<div topSection class="d-flex flex-column" style="height: 100%; width: 100%; overflow: auto;">
|
|
@@ -1238,7 +1238,7 @@ class ReportingFrameworkComponent {
|
|
|
1238
1238
|
|
|
1239
1239
|
`, isInline: true, styles: [":host ::ng-deep .mat-tab-body-wrapper{flex-grow:1}:host ::ng-deep .mat-tab-label{background-color:#98c7e0}:host ::ng-deep .mat-tab-label-active{background-color:#def4ff}.report-details{height:100%;width:100%;position:absolute}.center-row{margin-top:10px;margin-left:60vw}\n"], 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: i5.MatLegacyTabGroup, selector: "mat-tab-group", inputs: ["color", "disableRipple"], exportAs: ["matTabGroup"] }, { kind: "component", type: i5.MatLegacyTab, selector: "mat-tab", inputs: ["disabled"], exportAs: ["matTab"] }, { kind: "directive", type: i5.MatLegacyTabContent, selector: "[matTabContent]" }, { kind: "component", type: i6.AgGridAngular, selector: "ag-grid-angular", inputs: ["gridOptions", "modules", "statusBar", "sideBar", "suppressContextMenu", "preventDefaultOnContextMenu", "allowContextMenuWithControlKey", "suppressMenuHide", "enableBrowserTooltips", "tooltipShowDelay", "tooltipHideDelay", "tooltipMouseTrack", "popupParent", "copyHeadersToClipboard", "copyGroupHeadersToClipboard", "clipboardDelimiter", "suppressCopyRowsToClipboard", "suppressCopySingleCellRanges", "suppressLastEmptyLineOnPaste", "suppressClipboardPaste", "suppressClipboardApi", "columnDefs", "defaultColDef", "defaultColGroupDef", "columnTypes", "maintainColumnOrder", "suppressFieldDotNotation", "deltaColumnMode", "applyColumnDefOrder", "immutableColumns", "suppressSetColumnStateEvents", "suppressColumnStateEvents", "colWidth", "minColWidth", "maxColWidth", "headerHeight", "groupHeaderHeight", "floatingFiltersHeight", "pivotHeaderHeight", "pivotGroupHeaderHeight", "allowDragFromColumnsToolPanel", "suppressMovableColumns", "suppressColumnMoveAnimation", "suppressDragLeaveHidesColumns", "suppressRowGroupHidesColumns", "colResizeDefault", "suppressAutoSize", "autoSizePadding", "skipHeaderOnAutoSize", "components", "frameworkComponents", "editType", "singleClickEdit", "suppressClickEdit", "readOnlyEdit", "stopEditingWhenCellsLoseFocus", "enterMovesDown", "enterMovesDownAfterEdit", "enableCellEditingOnBackspace", "undoRedoCellEditing", "undoRedoCellEditingLimit", "stopEditingWhenGridLosesFocus", "defaultCsvExportParams", "suppressCsvExport", "defaultExcelExportParams", "suppressExcelExport", "excelStyles", "defaultExportParams", "quickFilterText", "cacheQuickFilter", "excludeChildrenWhenTreeDataFiltering", "enableCharts", "chartThemes", "customChartThemes", "chartThemeOverrides", "enableChartToolPanelsButton", "chartToolPanelsDef", "loadingCellRenderer", "loadingCellRendererFramework", "loadingCellRendererParams", "loadingCellRendererSelector", "localeText", "masterDetail", "keepDetailRows", "keepDetailRowsCount", "detailCellRenderer", "detailCellRendererFramework", "detailCellRendererParams", "detailRowHeight", "detailRowAutoHeight", "context", "alignedGrids", "tabIndex", "rowBuffer", "valueCache", "valueCacheNeverExpires", "enableCellExpressions", "suppressParentsInRowNodes", "suppressTouch", "suppressFocusAfterRefresh", "suppressAsyncEvents", "suppressBrowserResizeObserver", "suppressPropertyNamesCheck", "suppressChangeDetection", "debug", "overlayLoadingTemplate", "loadingOverlayComponent", "loadingOverlayComponentFramework", "loadingOverlayComponentParams", "suppressLoadingOverlay", "overlayNoRowsTemplate", "noRowsOverlayComponent", "noRowsOverlayComponentFramework", "noRowsOverlayComponentParams", "suppressNoRowsOverlay", "pagination", "paginationPageSize", "paginationAutoPageSize", "paginateChildRows", "suppressPaginationPanel", "pivotMode", "pivotPanelShow", "pivotColumnGroupTotals", "pivotRowTotals", "pivotSuppressAutoColumn", "suppressExpandablePivotGroups", "functionsReadOnly", "aggFuncs", "suppressAggFuncInHeader", "suppressAggAtRootLevel", "aggregateOnlyChangedColumns", "suppressAggFilteredOnly", "removePivotHeaderRowWhenSingleValueColumn", "animateRows", "enableCellChangeFlash", "cellFlashDelay", "cellFadeDelay", "allowShowChangeAfterFilter", "domLayout", "ensureDomOrder", "enableRtl", "suppressColumnVirtualisation", "suppressMaxRenderedRowRestriction", "suppressRowVirtualisation", "rowDragManaged", "suppressRowDrag", "suppressMoveWhenRowDragging", "rowDragEntireRow", "rowDragMultiRow", "rowDragText", "fullWidthCellRenderer", "fullWidthCellRendererFramework", "fullWidthCellRendererParams", "embedFullWidthRows", "deprecatedEmbedFullWidthRows", "groupDisplayType", "groupDefaultExpanded", "autoGroupColumnDef", "groupMaintainOrder", "groupSelectsChildren", "groupAggFiltering", "groupIncludeFooter", "groupIncludeTotalFooter", "groupSuppressBlankHeader", "groupSelectsFiltered", "showOpenedGroup", "groupRemoveSingleChildren", "groupRemoveLowestSingleChildren", "groupHideOpenParents", "rowGroupPanelShow", "groupRowRenderer", "groupRowRendererFramework", "groupRowRendererParams", "suppressMakeColumnVisibleAfterUnGroup", "treeData", "rowGroupPanelSuppressSort", "groupRowsSticky", "groupRowInnerRenderer", "groupRowInnerRendererFramework", "groupMultiAutoColumn", "groupUseEntireRow", "groupSuppressAutoColumn", "rememberGroupStateWhenNewData", "pinnedTopRowData", "pinnedBottomRowData", "rowModelType", "rowData", "immutableData", "asyncTransactionWaitMillis", "suppressModelUpdateAfterUpdateTransaction", "deltaRowDataMode", "batchUpdateWaitMillis", "datasource", "cacheOverflowSize", "infiniteInitialRowCount", "serverSideInitialRowCount", "serverSideStoreType", "serverSideInfiniteScroll", "cacheBlockSize", "maxBlocksInCache", "maxConcurrentDatasourceRequests", "blockLoadDebounceMillis", "purgeClosedRowNodes", "serverSideDatasource", "serverSideSortAllLevels", "serverSideFilterAllLevels", "serverSideSortOnServer", "serverSideFilterOnServer", "serverSideSortingAlwaysResets", "serverSideFilteringAlwaysResets", "suppressEnterpriseResetOnNewColumns", "viewportDatasource", "viewportRowModelPageSize", "viewportRowModelBufferSize", "alwaysShowHorizontalScroll", "alwaysShowVerticalScroll", "debounceVerticalScrollbar", "suppressHorizontalScroll", "suppressScrollOnNewData", "suppressScrollWhenPopupsAreOpen", "suppressAnimationFrame", "suppressMiddleClickScrolls", "suppressPreventDefaultOnMouseWheel", "scrollbarWidth", "rowSelection", "rowMultiSelectWithClick", "suppressRowDeselection", "suppressRowClickSelection", "suppressCellSelection", "suppressCellFocus", "suppressMultiRangeSelection", "enableCellTextSelection", "enableRangeSelection", "enableRangeHandle", "enableFillHandle", "fillHandleDirection", "suppressClearOnFillReduction", "sortingOrder", "accentedSort", "unSortIcon", "suppressMultiSort", "alwaysMultiSort", "multiSortKey", "suppressMaintainUnsortedOrder", "icons", "rowHeight", "rowStyle", "rowClass", "rowClassRules", "suppressRowHoverHighlight", "suppressRowTransform", "columnHoverHighlight", "deltaSort", "treeDataDisplayType", "angularCompileRows", "angularCompileFilters", "functionsPassive", "enableGroupEdit", "getContextMenuItems", "getMainMenuItems", "postProcessPopup", "processCellForClipboard", "processHeaderForClipboard", "processGroupHeaderForClipboard", "processCellFromClipboard", "sendToClipboard", "processDataFromClipboard", "isExternalFilterPresent", "doesExternalFilterPass", "getChartToolbarItems", "createChartContainer", "navigateToNextHeader", "tabToNextHeader", "navigateToNextCell", "tabToNextCell", "suppressKeyboardEvent", "localeTextFunc", "getLocaleText", "getDocument", "paginationNumberFormatter", "groupRowAggNodes", "getGroupRowAgg", "isGroupOpenByDefault", "initialGroupOrderComparator", "defaultGroupOrderComparator", "processSecondaryColDef", "processSecondaryColGroupDef", "processPivotResultColDef", "processPivotResultColGroupDef", "getDataPath", "defaultGroupSortComparator", "getChildCount", "getServerSideGroupLevelParams", "getServerSideStoreParams", "isServerSideGroupOpenByDefault", "isApplyServerSideTransaction", "isServerSideGroup", "getServerSideGroupKey", "getBusinessKeyForNode", "getRowNodeId", "getRowId", "resetRowDataOnUpdate", "processRowPostCreate", "isRowSelectable", "isRowMaster", "fillOperation", "postSort", "postSortRows", "getRowStyle", "getRowClass", "getRowHeight", "isFullWidthCell", "isFullWidthRow"], outputs: ["toolPanelVisibleChanged", "toolPanelSizeChanged", "pasteStart", "pasteEnd", "columnVisible", "columnPinned", "columnResized", "columnMoved", "columnValueChanged", "columnPivotModeChanged", "columnPivotChanged", "columnGroupOpened", "newColumnsLoaded", "gridColumnsChanged", "displayedColumnsChanged", "virtualColumnsChanged", "columnEverythingChanged", "componentStateChanged", "cellValueChanged", "cellEditRequest", "rowValueChanged", "cellEditingStarted", "cellEditingStopped", "rowEditingStarted", "rowEditingStopped", "filterOpened", "filterChanged", "filterModified", "chartCreated", "chartRangeSelectionChanged", "chartOptionsChanged", "chartDestroyed", "cellKeyDown", "cellKeyPress", "gridReady", "firstDataRendered", "gridSizeChanged", "modelUpdated", "virtualRowRemoved", "viewportChanged", "bodyScroll", "bodyScrollEnd", "dragStarted", "dragStopped", "paginationChanged", "rowDragEnter", "rowDragMove", "rowDragLeave", "rowDragEnd", "columnRowGroupChanged", "rowGroupOpened", "expandOrCollapseAll", "pinnedRowDataChanged", "rowDataChanged", "rowDataUpdated", "asyncTransactionsFlushed", "cellClicked", "cellDoubleClicked", "cellFocused", "cellMouseOver", "cellMouseOut", "cellMouseDown", "rowClicked", "rowDoubleClicked", "rowSelected", "selectionChanged", "cellContextMenu", "rangeSelectionChanged", "sortChanged", "columnRowGroupChangeRequest", "columnPivotChangeRequest", "columnValueChangeRequest", "columnAggFuncChangeRequest"] }, { kind: "component", type: ResizableSectionDividerComponent, selector: "resizable-section-divider", inputs: ["initialPercentage", "isVerticalLayout", "maxPercentage", "minPercentage"] }] }); }
|
|
1240
1240
|
}
|
|
1241
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ReportingFrameworkComponent, decorators: [{
|
|
1242
1242
|
type: Component,
|
|
1243
1243
|
args: [{ selector: "hci-reporting-framework", template: `
|
|
1244
1244
|
<div style="height: 100vh">
|
|
@@ -1360,8 +1360,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
|
|
|
1360
1360
|
}] } });
|
|
1361
1361
|
|
|
1362
1362
|
class ReportModule {
|
|
1363
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
1364
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
1363
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ReportModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1364
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: ReportModule, declarations: [ReportingFrameworkComponent,
|
|
1365
1365
|
ReportDatepickerComponent,
|
|
1366
1366
|
ParameterComponent,
|
|
1367
1367
|
FormatComponent,
|
|
@@ -1375,7 +1375,7 @@ class ReportModule {
|
|
|
1375
1375
|
MatLegacyTabsModule,
|
|
1376
1376
|
SelectModule,
|
|
1377
1377
|
AgGridModule], exports: [ReportingFrameworkComponent] }); }
|
|
1378
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
1378
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ReportModule, providers: [
|
|
1379
1379
|
DatePipe,
|
|
1380
1380
|
DialogsService
|
|
1381
1381
|
], imports: [CommonModule,
|
|
@@ -1388,7 +1388,7 @@ class ReportModule {
|
|
|
1388
1388
|
SelectModule,
|
|
1389
1389
|
AgGridModule] }); }
|
|
1390
1390
|
}
|
|
1391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
1391
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ReportModule, decorators: [{
|
|
1392
1392
|
type: NgModule,
|
|
1393
1393
|
args: [{
|
|
1394
1394
|
imports: [
|