@huntsman-cancer-institute/reporting-framework 17.0.6 → 17.0.8
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 +8 -8
- 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 +295 -295
- package/fesm2022/huntsman-cancer-institute-reporting-framework.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -12,241 +12,241 @@ export class ParameterComponent {
|
|
|
12
12
|
this.param.selectedValue = o.value;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1
|
|
16
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1
|
|
17
|
-
|
|
18
|
-
<!--Text Input-->
|
|
19
|
-
<ng-container *ngIf="param.type === 'input'">
|
|
20
|
-
<div style="display: block;">
|
|
21
|
-
<div class="row">
|
|
22
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
23
|
-
<input type="text" class="form-control input-field"
|
|
24
|
-
[id]="param.name"
|
|
25
|
-
[name]="param.name"
|
|
26
|
-
[(ngModel)]="param.selectedValue"
|
|
27
|
-
>
|
|
28
|
-
</div>
|
|
29
|
-
</div>
|
|
30
|
-
</ng-container>
|
|
31
|
-
|
|
32
|
-
<!--Date-->
|
|
33
|
-
<ng-container *ngIf="param.type === 'date'">
|
|
34
|
-
<div style="display: block;">
|
|
35
|
-
<div class="row">
|
|
36
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
37
|
-
<report-datepicker class="date-input"
|
|
38
|
-
placeholder=""
|
|
39
|
-
id="{{param.name}}"
|
|
40
|
-
[(value)]="param.selectedValue"
|
|
41
|
-
>
|
|
42
|
-
</report-datepicker>
|
|
43
|
-
</div>
|
|
44
|
-
</div>
|
|
45
|
-
</ng-container>
|
|
46
|
-
|
|
47
|
-
<!--Select with dictionary-->
|
|
48
|
-
<ng-container *ngIf="param.type === 'select' && param.className && param.className != ''">
|
|
49
|
-
<div style="display: block;">
|
|
50
|
-
<div class="row">
|
|
51
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
52
|
-
<hci-native-select class="report-select"
|
|
53
|
-
[id]="param.name"
|
|
54
|
-
[name]="param.name"
|
|
55
|
-
[idKey]="param.valueXPath"
|
|
56
|
-
[displayKey]="param.displayXPath"
|
|
57
|
-
[(ngModel)]="param.selectedValue"
|
|
58
|
-
[url]="param.calculateDictionaryURL()"
|
|
59
|
-
></hci-native-select>
|
|
60
|
-
</div>
|
|
61
|
-
</div>
|
|
62
|
-
</ng-container>
|
|
63
|
-
|
|
64
|
-
<!--Select with manual options-->
|
|
65
|
-
<ng-container *ngIf="param.type === 'select' && (!param.className || param.className === '')">
|
|
66
|
-
<div style="display: block;">
|
|
67
|
-
<div class="row">
|
|
68
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
69
|
-
<hci-native-select class="report-select"
|
|
70
|
-
[id]="param.name"
|
|
71
|
-
[name]="param.name"
|
|
72
|
-
[(ngModel)]="param.selectedValue"
|
|
73
|
-
[entries] = "entries"
|
|
74
|
-
></hci-native-select>
|
|
75
|
-
</div>
|
|
76
|
-
</div>
|
|
77
|
-
</ng-container>
|
|
78
|
-
|
|
79
|
-
<!--Multi-select with dictionary-->
|
|
80
|
-
<ng-container *ngIf="param.type === 'multiselect' && param.className && param.className != ''">
|
|
81
|
-
<div style="display: block;">
|
|
82
|
-
<div class="row">
|
|
83
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
84
|
-
<hci-md-multi-select class="multi-report-select"
|
|
85
|
-
[id]="param.name"
|
|
86
|
-
[name]="param.name"
|
|
87
|
-
[idKey]="param.valueXPath"
|
|
88
|
-
[displayKey]="param.displayXPath"
|
|
89
|
-
[(ngModel)]="param.selectedValueList"
|
|
90
|
-
[url]="param.calculateDictionaryURL()"
|
|
91
|
-
>
|
|
92
|
-
</hci-md-multi-select>
|
|
93
|
-
</div>
|
|
94
|
-
</div>
|
|
95
|
-
</ng-container>
|
|
96
|
-
|
|
97
|
-
<!--Multi-select with manual options-->
|
|
98
|
-
<ng-container *ngIf="param.type === 'multiselect' && (!param.className || param.className === '')">
|
|
99
|
-
<div style="display: block;">
|
|
100
|
-
<div class="row">
|
|
101
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
102
|
-
<hci-md-multi-select class="multi-report-select"
|
|
103
|
-
[id]="param.name"
|
|
104
|
-
[name]="param.name"
|
|
105
|
-
[entries] = "entries"
|
|
106
|
-
[(ngModel)]="param.selectedValueList"
|
|
107
|
-
>
|
|
108
|
-
</hci-md-multi-select>
|
|
109
|
-
</div>
|
|
110
|
-
</div>
|
|
111
|
-
</ng-container>
|
|
112
|
-
|
|
113
|
-
<!--Radio buttons-->
|
|
114
|
-
<ng-container *ngIf="param.type === 'radio'">
|
|
115
|
-
<div style="display: block;">
|
|
116
|
-
<div class="row">
|
|
117
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
118
|
-
<div class="radio-pair" *ngFor="let o of param.options">
|
|
119
|
-
<input type="radio"
|
|
120
|
-
style="margin-right: 3px;"
|
|
121
|
-
[value]="o.value"
|
|
122
|
-
[id]="param.name + '-' + o.value"
|
|
123
|
-
[(ngModel)]="param.selectedValue"
|
|
124
|
-
[name]="param.name">
|
|
125
|
-
<label for="{{param.name + '-' + o.value}}">{{o.display}}</label>
|
|
126
|
-
</div>
|
|
127
|
-
</div>
|
|
128
|
-
</div>
|
|
129
|
-
</ng-container>
|
|
130
|
-
|
|
15
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: ParameterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
16
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.1", type: ParameterComponent, selector: "hci-parameter", ngImport: i0, template: `
|
|
17
|
+
|
|
18
|
+
<!--Text Input-->
|
|
19
|
+
<ng-container *ngIf="param.type === 'input'">
|
|
20
|
+
<div style="display: block;">
|
|
21
|
+
<div class="row">
|
|
22
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
23
|
+
<input type="text" class="form-control input-field"
|
|
24
|
+
[id]="param.name"
|
|
25
|
+
[name]="param.name"
|
|
26
|
+
[(ngModel)]="param.selectedValue"
|
|
27
|
+
>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
</ng-container>
|
|
31
|
+
|
|
32
|
+
<!--Date-->
|
|
33
|
+
<ng-container *ngIf="param.type === 'date'">
|
|
34
|
+
<div style="display: block;">
|
|
35
|
+
<div class="row">
|
|
36
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
37
|
+
<report-datepicker class="date-input"
|
|
38
|
+
placeholder=""
|
|
39
|
+
id="{{param.name}}"
|
|
40
|
+
[(value)]="param.selectedValue"
|
|
41
|
+
>
|
|
42
|
+
</report-datepicker>
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
</ng-container>
|
|
46
|
+
|
|
47
|
+
<!--Select with dictionary-->
|
|
48
|
+
<ng-container *ngIf="param.type === 'select' && param.className && param.className != ''">
|
|
49
|
+
<div style="display: block;">
|
|
50
|
+
<div class="row">
|
|
51
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
52
|
+
<hci-native-select class="report-select"
|
|
53
|
+
[id]="param.name"
|
|
54
|
+
[name]="param.name"
|
|
55
|
+
[idKey]="param.valueXPath"
|
|
56
|
+
[displayKey]="param.displayXPath"
|
|
57
|
+
[(ngModel)]="param.selectedValue"
|
|
58
|
+
[url]="param.calculateDictionaryURL()"
|
|
59
|
+
></hci-native-select>
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
|
+
</ng-container>
|
|
63
|
+
|
|
64
|
+
<!--Select with manual options-->
|
|
65
|
+
<ng-container *ngIf="param.type === 'select' && (!param.className || param.className === '')">
|
|
66
|
+
<div style="display: block;">
|
|
67
|
+
<div class="row">
|
|
68
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
69
|
+
<hci-native-select class="report-select"
|
|
70
|
+
[id]="param.name"
|
|
71
|
+
[name]="param.name"
|
|
72
|
+
[(ngModel)]="param.selectedValue"
|
|
73
|
+
[entries] = "entries"
|
|
74
|
+
></hci-native-select>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</ng-container>
|
|
78
|
+
|
|
79
|
+
<!--Multi-select with dictionary-->
|
|
80
|
+
<ng-container *ngIf="param.type === 'multiselect' && param.className && param.className != ''">
|
|
81
|
+
<div style="display: block;">
|
|
82
|
+
<div class="row">
|
|
83
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
84
|
+
<hci-md-multi-select class="multi-report-select"
|
|
85
|
+
[id]="param.name"
|
|
86
|
+
[name]="param.name"
|
|
87
|
+
[idKey]="param.valueXPath"
|
|
88
|
+
[displayKey]="param.displayXPath"
|
|
89
|
+
[(ngModel)]="param.selectedValueList"
|
|
90
|
+
[url]="param.calculateDictionaryURL()"
|
|
91
|
+
>
|
|
92
|
+
</hci-md-multi-select>
|
|
93
|
+
</div>
|
|
94
|
+
</div>
|
|
95
|
+
</ng-container>
|
|
96
|
+
|
|
97
|
+
<!--Multi-select with manual options-->
|
|
98
|
+
<ng-container *ngIf="param.type === 'multiselect' && (!param.className || param.className === '')">
|
|
99
|
+
<div style="display: block;">
|
|
100
|
+
<div class="row">
|
|
101
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
102
|
+
<hci-md-multi-select class="multi-report-select"
|
|
103
|
+
[id]="param.name"
|
|
104
|
+
[name]="param.name"
|
|
105
|
+
[entries] = "entries"
|
|
106
|
+
[(ngModel)]="param.selectedValueList"
|
|
107
|
+
>
|
|
108
|
+
</hci-md-multi-select>
|
|
109
|
+
</div>
|
|
110
|
+
</div>
|
|
111
|
+
</ng-container>
|
|
112
|
+
|
|
113
|
+
<!--Radio buttons-->
|
|
114
|
+
<ng-container *ngIf="param.type === 'radio'">
|
|
115
|
+
<div style="display: block;">
|
|
116
|
+
<div class="row">
|
|
117
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
118
|
+
<div class="radio-pair" *ngFor="let o of param.options">
|
|
119
|
+
<input type="radio"
|
|
120
|
+
style="margin-right: 3px;"
|
|
121
|
+
[value]="o.value"
|
|
122
|
+
[id]="param.name + '-' + o.value"
|
|
123
|
+
[(ngModel)]="param.selectedValue"
|
|
124
|
+
[name]="param.name">
|
|
125
|
+
<label for="{{param.name + '-' + o.value}}">{{o.display}}</label>
|
|
126
|
+
</div>
|
|
127
|
+
</div>
|
|
128
|
+
</div>
|
|
129
|
+
</ng-container>
|
|
130
|
+
|
|
131
131
|
`, 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.MdMultiSelectComponent, selector: "hci-md-multi-select", inputs: ["class", "name", "label", "url", "entries", "required", "idKey", "displayKey"] }, { kind: "component", type: i3.NativeSelectComponent, selector: "hci-native-select", inputs: ["class", "name", "label", "url", "entries", "required", "idKey", "displayKey", "disabled", "sortKey", "sortNumeric", "filterKey", "filter"] }, { kind: "component", type: i4.ReportDatepickerComponent, selector: "report-datepicker", inputs: ["value", "placeholder", "minDate", "maxDate", "invalid"], outputs: ["valueChange"] }] }); }
|
|
132
132
|
}
|
|
133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1
|
|
133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: ParameterComponent, decorators: [{
|
|
134
134
|
type: Component,
|
|
135
|
-
args: [{ selector: "hci-parameter", template: `
|
|
136
|
-
|
|
137
|
-
<!--Text Input-->
|
|
138
|
-
<ng-container *ngIf="param.type === 'input'">
|
|
139
|
-
<div style="display: block;">
|
|
140
|
-
<div class="row">
|
|
141
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
142
|
-
<input type="text" class="form-control input-field"
|
|
143
|
-
[id]="param.name"
|
|
144
|
-
[name]="param.name"
|
|
145
|
-
[(ngModel)]="param.selectedValue"
|
|
146
|
-
>
|
|
147
|
-
</div>
|
|
148
|
-
</div>
|
|
149
|
-
</ng-container>
|
|
150
|
-
|
|
151
|
-
<!--Date-->
|
|
152
|
-
<ng-container *ngIf="param.type === 'date'">
|
|
153
|
-
<div style="display: block;">
|
|
154
|
-
<div class="row">
|
|
155
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
156
|
-
<report-datepicker class="date-input"
|
|
157
|
-
placeholder=""
|
|
158
|
-
id="{{param.name}}"
|
|
159
|
-
[(value)]="param.selectedValue"
|
|
160
|
-
>
|
|
161
|
-
</report-datepicker>
|
|
162
|
-
</div>
|
|
163
|
-
</div>
|
|
164
|
-
</ng-container>
|
|
165
|
-
|
|
166
|
-
<!--Select with dictionary-->
|
|
167
|
-
<ng-container *ngIf="param.type === 'select' && param.className && param.className != ''">
|
|
168
|
-
<div style="display: block;">
|
|
169
|
-
<div class="row">
|
|
170
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
171
|
-
<hci-native-select class="report-select"
|
|
172
|
-
[id]="param.name"
|
|
173
|
-
[name]="param.name"
|
|
174
|
-
[idKey]="param.valueXPath"
|
|
175
|
-
[displayKey]="param.displayXPath"
|
|
176
|
-
[(ngModel)]="param.selectedValue"
|
|
177
|
-
[url]="param.calculateDictionaryURL()"
|
|
178
|
-
></hci-native-select>
|
|
179
|
-
</div>
|
|
180
|
-
</div>
|
|
181
|
-
</ng-container>
|
|
182
|
-
|
|
183
|
-
<!--Select with manual options-->
|
|
184
|
-
<ng-container *ngIf="param.type === 'select' && (!param.className || param.className === '')">
|
|
185
|
-
<div style="display: block;">
|
|
186
|
-
<div class="row">
|
|
187
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
188
|
-
<hci-native-select class="report-select"
|
|
189
|
-
[id]="param.name"
|
|
190
|
-
[name]="param.name"
|
|
191
|
-
[(ngModel)]="param.selectedValue"
|
|
192
|
-
[entries] = "entries"
|
|
193
|
-
></hci-native-select>
|
|
194
|
-
</div>
|
|
195
|
-
</div>
|
|
196
|
-
</ng-container>
|
|
197
|
-
|
|
198
|
-
<!--Multi-select with dictionary-->
|
|
199
|
-
<ng-container *ngIf="param.type === 'multiselect' && param.className && param.className != ''">
|
|
200
|
-
<div style="display: block;">
|
|
201
|
-
<div class="row">
|
|
202
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
203
|
-
<hci-md-multi-select class="multi-report-select"
|
|
204
|
-
[id]="param.name"
|
|
205
|
-
[name]="param.name"
|
|
206
|
-
[idKey]="param.valueXPath"
|
|
207
|
-
[displayKey]="param.displayXPath"
|
|
208
|
-
[(ngModel)]="param.selectedValueList"
|
|
209
|
-
[url]="param.calculateDictionaryURL()"
|
|
210
|
-
>
|
|
211
|
-
</hci-md-multi-select>
|
|
212
|
-
</div>
|
|
213
|
-
</div>
|
|
214
|
-
</ng-container>
|
|
215
|
-
|
|
216
|
-
<!--Multi-select with manual options-->
|
|
217
|
-
<ng-container *ngIf="param.type === 'multiselect' && (!param.className || param.className === '')">
|
|
218
|
-
<div style="display: block;">
|
|
219
|
-
<div class="row">
|
|
220
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
221
|
-
<hci-md-multi-select class="multi-report-select"
|
|
222
|
-
[id]="param.name"
|
|
223
|
-
[name]="param.name"
|
|
224
|
-
[entries] = "entries"
|
|
225
|
-
[(ngModel)]="param.selectedValueList"
|
|
226
|
-
>
|
|
227
|
-
</hci-md-multi-select>
|
|
228
|
-
</div>
|
|
229
|
-
</div>
|
|
230
|
-
</ng-container>
|
|
231
|
-
|
|
232
|
-
<!--Radio buttons-->
|
|
233
|
-
<ng-container *ngIf="param.type === 'radio'">
|
|
234
|
-
<div style="display: block;">
|
|
235
|
-
<div class="row">
|
|
236
|
-
<label class="data-label">{{param.caption}}:</label>
|
|
237
|
-
<div class="radio-pair" *ngFor="let o of param.options">
|
|
238
|
-
<input type="radio"
|
|
239
|
-
style="margin-right: 3px;"
|
|
240
|
-
[value]="o.value"
|
|
241
|
-
[id]="param.name + '-' + o.value"
|
|
242
|
-
[(ngModel)]="param.selectedValue"
|
|
243
|
-
[name]="param.name">
|
|
244
|
-
<label for="{{param.name + '-' + o.value}}">{{o.display}}</label>
|
|
245
|
-
</div>
|
|
246
|
-
</div>
|
|
247
|
-
</div>
|
|
248
|
-
</ng-container>
|
|
249
|
-
|
|
135
|
+
args: [{ selector: "hci-parameter", template: `
|
|
136
|
+
|
|
137
|
+
<!--Text Input-->
|
|
138
|
+
<ng-container *ngIf="param.type === 'input'">
|
|
139
|
+
<div style="display: block;">
|
|
140
|
+
<div class="row">
|
|
141
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
142
|
+
<input type="text" class="form-control input-field"
|
|
143
|
+
[id]="param.name"
|
|
144
|
+
[name]="param.name"
|
|
145
|
+
[(ngModel)]="param.selectedValue"
|
|
146
|
+
>
|
|
147
|
+
</div>
|
|
148
|
+
</div>
|
|
149
|
+
</ng-container>
|
|
150
|
+
|
|
151
|
+
<!--Date-->
|
|
152
|
+
<ng-container *ngIf="param.type === 'date'">
|
|
153
|
+
<div style="display: block;">
|
|
154
|
+
<div class="row">
|
|
155
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
156
|
+
<report-datepicker class="date-input"
|
|
157
|
+
placeholder=""
|
|
158
|
+
id="{{param.name}}"
|
|
159
|
+
[(value)]="param.selectedValue"
|
|
160
|
+
>
|
|
161
|
+
</report-datepicker>
|
|
162
|
+
</div>
|
|
163
|
+
</div>
|
|
164
|
+
</ng-container>
|
|
165
|
+
|
|
166
|
+
<!--Select with dictionary-->
|
|
167
|
+
<ng-container *ngIf="param.type === 'select' && param.className && param.className != ''">
|
|
168
|
+
<div style="display: block;">
|
|
169
|
+
<div class="row">
|
|
170
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
171
|
+
<hci-native-select class="report-select"
|
|
172
|
+
[id]="param.name"
|
|
173
|
+
[name]="param.name"
|
|
174
|
+
[idKey]="param.valueXPath"
|
|
175
|
+
[displayKey]="param.displayXPath"
|
|
176
|
+
[(ngModel)]="param.selectedValue"
|
|
177
|
+
[url]="param.calculateDictionaryURL()"
|
|
178
|
+
></hci-native-select>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
</ng-container>
|
|
182
|
+
|
|
183
|
+
<!--Select with manual options-->
|
|
184
|
+
<ng-container *ngIf="param.type === 'select' && (!param.className || param.className === '')">
|
|
185
|
+
<div style="display: block;">
|
|
186
|
+
<div class="row">
|
|
187
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
188
|
+
<hci-native-select class="report-select"
|
|
189
|
+
[id]="param.name"
|
|
190
|
+
[name]="param.name"
|
|
191
|
+
[(ngModel)]="param.selectedValue"
|
|
192
|
+
[entries] = "entries"
|
|
193
|
+
></hci-native-select>
|
|
194
|
+
</div>
|
|
195
|
+
</div>
|
|
196
|
+
</ng-container>
|
|
197
|
+
|
|
198
|
+
<!--Multi-select with dictionary-->
|
|
199
|
+
<ng-container *ngIf="param.type === 'multiselect' && param.className && param.className != ''">
|
|
200
|
+
<div style="display: block;">
|
|
201
|
+
<div class="row">
|
|
202
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
203
|
+
<hci-md-multi-select class="multi-report-select"
|
|
204
|
+
[id]="param.name"
|
|
205
|
+
[name]="param.name"
|
|
206
|
+
[idKey]="param.valueXPath"
|
|
207
|
+
[displayKey]="param.displayXPath"
|
|
208
|
+
[(ngModel)]="param.selectedValueList"
|
|
209
|
+
[url]="param.calculateDictionaryURL()"
|
|
210
|
+
>
|
|
211
|
+
</hci-md-multi-select>
|
|
212
|
+
</div>
|
|
213
|
+
</div>
|
|
214
|
+
</ng-container>
|
|
215
|
+
|
|
216
|
+
<!--Multi-select with manual options-->
|
|
217
|
+
<ng-container *ngIf="param.type === 'multiselect' && (!param.className || param.className === '')">
|
|
218
|
+
<div style="display: block;">
|
|
219
|
+
<div class="row">
|
|
220
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
221
|
+
<hci-md-multi-select class="multi-report-select"
|
|
222
|
+
[id]="param.name"
|
|
223
|
+
[name]="param.name"
|
|
224
|
+
[entries] = "entries"
|
|
225
|
+
[(ngModel)]="param.selectedValueList"
|
|
226
|
+
>
|
|
227
|
+
</hci-md-multi-select>
|
|
228
|
+
</div>
|
|
229
|
+
</div>
|
|
230
|
+
</ng-container>
|
|
231
|
+
|
|
232
|
+
<!--Radio buttons-->
|
|
233
|
+
<ng-container *ngIf="param.type === 'radio'">
|
|
234
|
+
<div style="display: block;">
|
|
235
|
+
<div class="row">
|
|
236
|
+
<label class="data-label">{{param.caption}}:</label>
|
|
237
|
+
<div class="radio-pair" *ngFor="let o of param.options">
|
|
238
|
+
<input type="radio"
|
|
239
|
+
style="margin-right: 3px;"
|
|
240
|
+
[value]="o.value"
|
|
241
|
+
[id]="param.name + '-' + o.value"
|
|
242
|
+
[(ngModel)]="param.selectedValue"
|
|
243
|
+
[name]="param.name">
|
|
244
|
+
<label for="{{param.name + '-' + o.value}}">{{o.display}}</label>
|
|
245
|
+
</div>
|
|
246
|
+
</div>
|
|
247
|
+
</div>
|
|
248
|
+
</ng-container>
|
|
249
|
+
|
|
250
250
|
`, 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"] }]
|
|
251
251
|
}] });
|
|
252
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
252
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFyYW1ldGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3JlcG9ydGluZy1mcmFtZXdvcmsvc3JjL3BhcmFtZXRlci9wYXJhbWV0ZXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUMsTUFBTSxlQUFlLENBQUM7Ozs7OztBQThKeEMsTUFBTSxPQUFPLGtCQUFrQjtJQUszQixRQUFRLENBQUMsQ0FBUTtRQUNmLElBQUksQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDO1FBRWYsSUFBRyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksS0FBSyxPQUFPLEVBQUUsQ0FBQyxDQUFDLG9DQUFvQztZQUNwRSxJQUFJLENBQUMsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUM5QixJQUFJLENBQUMsS0FBSyxDQUFDLGFBQWEsR0FBRyxDQUFDLENBQUMsS0FBSyxDQUFDO1FBQ3JDLENBQUM7SUFDSCxDQUFDOzhHQVpRLGtCQUFrQjtrR0FBbEIsa0JBQWtCLHFEQXhKakI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7S0FtSFQ7OzJGQXFDUSxrQkFBa0I7a0JBMUo5QixTQUFTOytCQUNJLGVBQWUsWUFDZjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztLQW1IVCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50fSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge1BhcmFtfSBmcm9tIFwiLi4vbW9kZWwvcGFyYW0ubW9kZWxcIjtcclxuXHJcblxyXG5AQ29tcG9uZW50KHtcclxuICAgIHNlbGVjdG9yOiBcImhjaS1wYXJhbWV0ZXJcIixcclxuICAgIHRlbXBsYXRlOiBgXG5cbiAgICAgIDwhLS1UZXh0IElucHV0LS0+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwicGFyYW0udHlwZSA9PT0gJ2lucHV0J1wiPlxuICAgICAgICA8ZGl2IHN0eWxlPVwiZGlzcGxheTogYmxvY2s7XCI+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cInJvd1wiPlxuICAgICAgICAgICAgPGxhYmVsIGNsYXNzPVwiZGF0YS1sYWJlbFwiPnt7cGFyYW0uY2FwdGlvbn19OjwvbGFiZWw+XG4gICAgICAgICAgICA8aW5wdXQgdHlwZT1cInRleHRcIiBjbGFzcz1cImZvcm0tY29udHJvbCBpbnB1dC1maWVsZFwiXG4gICAgICAgICAgICAgICAgICAgW2lkXT1cInBhcmFtLm5hbWVcIlxuICAgICAgICAgICAgICAgICAgIFtuYW1lXT1cInBhcmFtLm5hbWVcIlxuICAgICAgICAgICAgICAgICAgIFsobmdNb2RlbCldPVwicGFyYW0uc2VsZWN0ZWRWYWx1ZVwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgIDwhLS1EYXRlLS0+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwicGFyYW0udHlwZSA9PT0gJ2RhdGUnXCI+XG4gICAgICAgIDxkaXYgc3R5bGU9XCJkaXNwbGF5OiBibG9jaztcIj5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwicm93XCI+XG4gICAgICAgICAgICA8bGFiZWwgY2xhc3M9XCJkYXRhLWxhYmVsXCI+e3twYXJhbS5jYXB0aW9ufX06PC9sYWJlbD5cbiAgICAgICAgICAgIDxyZXBvcnQtZGF0ZXBpY2tlciBjbGFzcz1cImRhdGUtaW5wdXRcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHBsYWNlaG9sZGVyPVwiXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBpZD1cInt7cGFyYW0ubmFtZX19XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbKHZhbHVlKV09XCJwYXJhbS5zZWxlY3RlZFZhbHVlXCJcbiAgICAgICAgICAgID5cbiAgICAgICAgICAgIDwvcmVwb3J0LWRhdGVwaWNrZXI+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgIDwhLS1TZWxlY3Qgd2l0aCBkaWN0aW9uYXJ5LS0+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwicGFyYW0udHlwZSA9PT0gJ3NlbGVjdCcgJiYgcGFyYW0uY2xhc3NOYW1lICYmIHBhcmFtLmNsYXNzTmFtZSAhPSAnJ1wiPlxuICAgICAgICA8ZGl2IHN0eWxlPVwiZGlzcGxheTogYmxvY2s7XCI+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cInJvd1wiPlxuICAgICAgICAgICAgPGxhYmVsIGNsYXNzPVwiZGF0YS1sYWJlbFwiPnt7cGFyYW0uY2FwdGlvbn19OjwvbGFiZWw+XG4gICAgICAgICAgICA8aGNpLW5hdGl2ZS1zZWxlY3QgY2xhc3M9XCJyZXBvcnQtc2VsZWN0XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbaWRdPVwicGFyYW0ubmFtZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW25hbWVdPVwicGFyYW0ubmFtZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW2lkS2V5XT1cInBhcmFtLnZhbHVlWFBhdGhcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtkaXNwbGF5S2V5XT1cInBhcmFtLmRpc3BsYXlYUGF0aFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgWyhuZ01vZGVsKV09XCJwYXJhbS5zZWxlY3RlZFZhbHVlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbdXJsXT1cInBhcmFtLmNhbGN1bGF0ZURpY3Rpb25hcnlVUkwoKVwiXG4gICAgICAgICAgICA+PC9oY2ktbmF0aXZlLXNlbGVjdD5cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgICAgPCEtLVNlbGVjdCB3aXRoIG1hbnVhbCBvcHRpb25zLS0+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwicGFyYW0udHlwZSA9PT0gJ3NlbGVjdCcgJiYgKCFwYXJhbS5jbGFzc05hbWUgfHwgcGFyYW0uY2xhc3NOYW1lID09PSAnJylcIj5cbiAgICAgICAgPGRpdiBzdHlsZT1cImRpc3BsYXk6IGJsb2NrO1wiPlxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJyb3dcIj5cbiAgICAgICAgICAgIDxsYWJlbCBjbGFzcz1cImRhdGEtbGFiZWxcIj57e3BhcmFtLmNhcHRpb259fTo8L2xhYmVsPlxuICAgICAgICAgICAgPGhjaS1uYXRpdmUtc2VsZWN0IGNsYXNzPVwicmVwb3J0LXNlbGVjdFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW2lkXT1cInBhcmFtLm5hbWVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtuYW1lXT1cInBhcmFtLm5hbWVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFsobmdNb2RlbCldPVwicGFyYW0uc2VsZWN0ZWRWYWx1ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW2VudHJpZXNdID0gXCJlbnRyaWVzXCJcbiAgICAgICAgICAgID48L2hjaS1uYXRpdmUtc2VsZWN0PlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuXG4gICAgICA8IS0tTXVsdGktc2VsZWN0IHdpdGggZGljdGlvbmFyeS0tPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInBhcmFtLnR5cGUgPT09ICdtdWx0aXNlbGVjdCcgJiYgcGFyYW0uY2xhc3NOYW1lICYmIHBhcmFtLmNsYXNzTmFtZSAhPSAnJ1wiPlxuICAgICAgICA8ZGl2IHN0eWxlPVwiZGlzcGxheTogYmxvY2s7XCI+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cInJvd1wiPlxuICAgICAgICAgICAgPGxhYmVsIGNsYXNzPVwiZGF0YS1sYWJlbFwiPnt7cGFyYW0uY2FwdGlvbn19OjwvbGFiZWw+XG4gICAgICAgICAgICA8aGNpLW1kLW11bHRpLXNlbGVjdCBjbGFzcz1cIm11bHRpLXJlcG9ydC1zZWxlY3RcIlxuICAgICAgICAgICAgICBbaWRdPVwicGFyYW0ubmFtZVwiXG4gICAgICAgICAgICAgIFtuYW1lXT1cInBhcmFtLm5hbWVcIlxuICAgICAgICAgICAgICBbaWRLZXldPVwicGFyYW0udmFsdWVYUGF0aFwiXG4gICAgICAgICAgICAgIFtkaXNwbGF5S2V5XT1cInBhcmFtLmRpc3BsYXlYUGF0aFwiXG4gICAgICAgICAgICAgIFsobmdNb2RlbCldPVwicGFyYW0uc2VsZWN0ZWRWYWx1ZUxpc3RcIlxuICAgICAgICAgICAgICBbdXJsXT1cInBhcmFtLmNhbGN1bGF0ZURpY3Rpb25hcnlVUkwoKVwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICA8L2hjaS1tZC1tdWx0aS1zZWxlY3Q+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgIDwhLS1NdWx0aS1zZWxlY3Qgd2l0aCBtYW51YWwgb3B0aW9ucy0tPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInBhcmFtLnR5cGUgPT09ICdtdWx0aXNlbGVjdCcgJiYgKCFwYXJhbS5jbGFzc05hbWUgfHwgcGFyYW0uY2xhc3NOYW1lID09PSAnJylcIj5cbiAgICAgICAgPGRpdiBzdHlsZT1cImRpc3BsYXk6IGJsb2NrO1wiPlxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJyb3dcIj5cbiAgICAgICAgICAgIDxsYWJlbCBjbGFzcz1cImRhdGEtbGFiZWxcIj57e3BhcmFtLmNhcHRpb259fTo8L2xhYmVsPlxuICAgICAgICAgICAgPGhjaS1tZC1tdWx0aS1zZWxlY3QgY2xhc3M9XCJtdWx0aS1yZXBvcnQtc2VsZWN0XCJcbiAgICAgICAgICAgICAgW2lkXT1cInBhcmFtLm5hbWVcIlxuICAgICAgICAgICAgICBbbmFtZV09XCJwYXJhbS5uYW1lXCJcbiAgICAgICAgICAgICAgW2VudHJpZXNdID0gXCJlbnRyaWVzXCJcbiAgICAgICAgICAgICAgWyhuZ01vZGVsKV09XCJwYXJhbS5zZWxlY3RlZFZhbHVlTGlzdFwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICA8L2hjaS1tZC1tdWx0aS1zZWxlY3Q+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgIDwhLS1SYWRpbyBidXR0b25zLS0+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwicGFyYW0udHlwZSA9PT0gJ3JhZGlvJ1wiPlxuICAgICAgICA8ZGl2IHN0eWxlPVwiZGlzcGxheTogYmxvY2s7XCI+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cInJvd1wiPlxuICAgICAgICAgICAgPGxhYmVsIGNsYXNzPVwiZGF0YS1sYWJlbFwiPnt7cGFyYW0uY2FwdGlvbn19OjwvbGFiZWw+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwicmFkaW8tcGFpclwiICpuZ0Zvcj1cImxldCBvIG9mIHBhcmFtLm9wdGlvbnNcIj5cbiAgICAgICAgICAgICAgPGlucHV0IHR5cGU9XCJyYWRpb1wiXG4gICAgICAgICAgICAgICAgICAgICBzdHlsZT1cIm1hcmdpbi1yaWdodDogM3B4O1wiXG4gICAgICAgICAgICAgICAgICAgICBbdmFsdWVdPVwiby52YWx1ZVwiXG4gICAgICAgICAgICAgICAgICAgICBbaWRdPVwicGFyYW0ubmFtZSArICctJyArIG8udmFsdWVcIlxuICAgICAgICAgICAgICAgICAgICAgWyhuZ01vZGVsKV09XCJwYXJhbS5zZWxlY3RlZFZhbHVlXCJcbiAgICAgICAgICAgICAgICAgICAgIFtuYW1lXT1cInBhcmFtLm5hbWVcIj5cbiAgICAgICAgICAgICAgPGxhYmVsIGZvcj1cInt7cGFyYW0ubmFtZSArICctJyArIG8udmFsdWV9fVwiPnt7by5kaXNwbGF5fX08L2xhYmVsPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICBgLFxyXG4gICAgc3R5bGVzOiBbYFxuXG4gICAgICAuZGF0YS1sYWJlbHtcbiAgICAgICAgd2lkdGg6IDI3MHB4O1xuICAgICAgICBtYXJnaW4tcmlnaHQ6IDMwcHg7XG4gICAgICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgICAgIGp1c3RpZnktY29udGVudDogZmxleC1lbmQ7XG4gICAgICB9XG5cbiAgICAgIC5kYXRlLWlucHV0e1xuICAgICAgICB3aWR0aDogNDUlO1xuICAgICAgfVxuXG4gICAgICAucmVwb3J0LXNlbGVjdHtcbiAgICAgICAgZmxleC1ncm93OiB1bnNldCAhaW1wb3J0YW50O1xuICAgICAgICB3aWR0aDogNDUlO1xuICAgIH1cblxuICAgIC5tdWx0aS1yZXBvcnQtc2VsZWN0e1xuICAgICAgICBmbGV4LWdyb3c6IHVuc2V0ICFpbXBvcnRhbnQ7XG4gICAgICAgIHdpZHRoOiA0NSU7XG4gICAgfVxuXG4gICAgLnJhZGlvLXBhaXJ7XG4gICAgICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgICAgIHBhZGRpbmctcmlnaHQ6IDVweDtcbiAgICAgICAgbWFyZ2luLXJpZ2h0OiAxNXB4O1xuICAgIH1cblxuICAgIC5pbnB1dC1maWVsZHtcbiAgICAgICAgd2lkdGg6IDQ1JVxuICAgIH1cbiAgICBgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgUGFyYW1ldGVyQ29tcG9uZW50IHtcclxuXHJcbiAgICBwYXJhbTogUGFyYW07XHJcbiAgICBlbnRyaWVzOiBhbnlbXTtcclxuXHJcbiAgICBzZXRQYXJhbShwOiBQYXJhbSkge1xyXG4gICAgICB0aGlzLnBhcmFtID0gcDtcclxuXHJcbiAgICAgIGlmKHRoaXMucGFyYW0udHlwZSA9PT0gXCJyYWRpb1wiKSB7IC8vaWYgcmFkaW8sIGF1dG8gc2VsZWN0IGZpcnN0IG9wdGlvblxyXG4gICAgICAgIGxldCBvID0gdGhpcy5wYXJhbS5vcHRpb25zWzBdO1xyXG4gICAgICAgIHRoaXMucGFyYW0uc2VsZWN0ZWRWYWx1ZSA9IG8udmFsdWU7XHJcbiAgICAgIH1cclxuICAgIH1cclxuXHJcbn1cclxuIl19
|
|
@@ -17,8 +17,8 @@ import { ResizableSectionDividerComponent } from "./resizable-divider/resizable-
|
|
|
17
17
|
import { MatLegacyTabsModule as MatTabsModule } from "@angular/material/legacy-tabs";
|
|
18
18
|
import * as i0 from "@angular/core";
|
|
19
19
|
export class ReportModule {
|
|
20
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1
|
|
21
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1
|
|
20
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: ReportModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
21
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.1", ngImport: i0, type: ReportModule, declarations: [ReportingFrameworkComponent,
|
|
22
22
|
ReportDatepickerComponent,
|
|
23
23
|
ParameterComponent,
|
|
24
24
|
FormatComponent,
|
|
@@ -32,7 +32,7 @@ export class ReportModule {
|
|
|
32
32
|
MatTabsModule,
|
|
33
33
|
SelectModule,
|
|
34
34
|
AgGridModule], exports: [ReportingFrameworkComponent] }); }
|
|
35
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1
|
|
35
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: ReportModule, providers: [
|
|
36
36
|
DatePipe,
|
|
37
37
|
DialogsService
|
|
38
38
|
], imports: [CommonModule,
|
|
@@ -45,7 +45,7 @@ export class ReportModule {
|
|
|
45
45
|
SelectModule,
|
|
46
46
|
AgGridModule] }); }
|
|
47
47
|
}
|
|
48
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1
|
|
48
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: ReportModule, decorators: [{
|
|
49
49
|
type: NgModule,
|
|
50
50
|
args: [{
|
|
51
51
|
imports: [
|
|
@@ -399,8 +399,8 @@ export class ReportingFrameworkComponent {
|
|
|
399
399
|
ngOnDestroy() {
|
|
400
400
|
this.destroyComponentRefs();
|
|
401
401
|
}
|
|
402
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1
|
|
403
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1
|
|
402
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: ReportingFrameworkComponent, deps: [{ token: i1.HttpClient }, { token: i0.ComponentFactoryResolver }, { token: i2.DatePipe }, { token: i3.DialogsService }, { token: i4.NgbModal }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
403
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.1", 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: `
|
|
404
404
|
<div style="height: 100vh">
|
|
405
405
|
<resizable-section-divider class="flex-grow-1" [isVerticalLayout]="true">
|
|
406
406
|
<div topSection class="d-flex flex-column" style="height: 100%; width: 100%; overflow: auto;">
|
|
@@ -504,7 +504,7 @@ export class ReportingFrameworkComponent {
|
|
|
504
504
|
|
|
505
505
|
`, 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: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.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: i7.ResizableSectionDividerComponent, selector: "resizable-section-divider", inputs: ["initialPercentage", "isVerticalLayout", "maxPercentage", "minPercentage"] }] }); }
|
|
506
506
|
}
|
|
507
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1
|
|
507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: ReportingFrameworkComponent, decorators: [{
|
|
508
508
|
type: Component,
|
|
509
509
|
args: [{ selector: "hci-reporting-framework", template: `
|
|
510
510
|
<div style="height: 100vh">
|