@abgov/angular-components 5.0.0-dev.1 → 5.0.0-dev.3
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.
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { forwardRef, HostListener, Directive, CUSTOM_ELEMENTS_SCHEMA, NgModule, Input, Component,
|
|
2
|
+
import { inject, ElementRef, forwardRef, HostListener, Directive, Renderer2, CUSTOM_ELEMENTS_SCHEMA, NgModule, Input, Component, booleanAttribute, ViewChild, ChangeDetectorRef, EventEmitter, Output, numberAttribute, TemplateRef, HostBinding } from '@angular/core';
|
|
3
3
|
import { NG_VALUE_ACCESSOR, CheckboxControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import { NgTemplateOutlet } from '@angular/common';
|
|
5
|
-
import {
|
|
5
|
+
import { Once, CalendarDate } from '@abgov/ui-components-common';
|
|
6
6
|
export * from '@abgov/ui-components-common';
|
|
7
7
|
|
|
8
8
|
// @deprecated: Use the new <goab-input .. /> component
|
|
9
9
|
class ValueDirective {
|
|
10
|
+
constructor() {
|
|
11
|
+
this.elementRef = inject(ElementRef);
|
|
12
|
+
this._value = "";
|
|
13
|
+
this._disabled = false;
|
|
14
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
15
|
+
this.onChange = () => {
|
|
16
|
+
/* default implementation */
|
|
17
|
+
};
|
|
18
|
+
this.onTouched = () => {
|
|
19
|
+
/* default implementation */
|
|
20
|
+
};
|
|
21
|
+
}
|
|
10
22
|
get value() {
|
|
11
23
|
return this._value;
|
|
12
24
|
}
|
|
@@ -29,18 +41,6 @@ class ValueDirective {
|
|
|
29
41
|
this._disabled = isDisabled;
|
|
30
42
|
this.elementRef.nativeElement.disabled = isDisabled;
|
|
31
43
|
}
|
|
32
|
-
constructor(elementRef) {
|
|
33
|
-
this.elementRef = elementRef;
|
|
34
|
-
this._value = "";
|
|
35
|
-
this._disabled = false;
|
|
36
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
37
|
-
this.onChange = () => {
|
|
38
|
-
/* default implementation */
|
|
39
|
-
};
|
|
40
|
-
this.onTouched = () => {
|
|
41
|
-
/* default implementation */
|
|
42
|
-
};
|
|
43
|
-
}
|
|
44
44
|
listenForValueChange(event) {
|
|
45
45
|
const value = event.detail.value;
|
|
46
46
|
this.value = value;
|
|
@@ -49,8 +49,8 @@ class ValueDirective {
|
|
|
49
49
|
const isDisabled = event.detail.disabled;
|
|
50
50
|
this.setDisabledState(isDisabled);
|
|
51
51
|
}
|
|
52
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
53
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.
|
|
52
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValueDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
53
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: ValueDirective, isStandalone: true, selector: "[goaValue]", host: { listeners: { "_change": "listenForValueChange($event)", "disabledChange": "listenForDisabledChange($event)" } }, providers: [
|
|
54
54
|
{
|
|
55
55
|
provide: NG_VALUE_ACCESSOR,
|
|
56
56
|
useExisting: forwardRef(() => ValueDirective),
|
|
@@ -58,7 +58,7 @@ class ValueDirective {
|
|
|
58
58
|
},
|
|
59
59
|
], ngImport: i0 }); }
|
|
60
60
|
}
|
|
61
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
61
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValueDirective, decorators: [{
|
|
62
62
|
type: Directive,
|
|
63
63
|
args: [{
|
|
64
64
|
standalone: true,
|
|
@@ -71,7 +71,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
71
71
|
},
|
|
72
72
|
],
|
|
73
73
|
}]
|
|
74
|
-
}],
|
|
74
|
+
}], propDecorators: { listenForValueChange: [{
|
|
75
75
|
type: HostListener,
|
|
76
76
|
args: ["_change", ["$event"]]
|
|
77
77
|
}], listenForDisabledChange: [{
|
|
@@ -79,6 +79,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
79
79
|
args: ["disabledChange", ["$event"]]
|
|
80
80
|
}] } });
|
|
81
81
|
class ValueListDirective {
|
|
82
|
+
constructor() {
|
|
83
|
+
this.elementRef = inject(ElementRef);
|
|
84
|
+
this._value = [];
|
|
85
|
+
this.onChange = () => { };
|
|
86
|
+
this.onTouched = () => { };
|
|
87
|
+
}
|
|
82
88
|
get value() {
|
|
83
89
|
return this._value;
|
|
84
90
|
}
|
|
@@ -99,12 +105,6 @@ class ValueListDirective {
|
|
|
99
105
|
registerOnTouched(fn) {
|
|
100
106
|
this.onTouched = fn;
|
|
101
107
|
}
|
|
102
|
-
constructor(elementRef) {
|
|
103
|
-
this.elementRef = elementRef;
|
|
104
|
-
this._value = [];
|
|
105
|
-
this.onChange = () => { };
|
|
106
|
-
this.onTouched = () => { };
|
|
107
|
-
}
|
|
108
108
|
listenForValueChange(event) {
|
|
109
109
|
const value = event.detail.value;
|
|
110
110
|
if (!value) {
|
|
@@ -125,8 +125,8 @@ class ValueListDirective {
|
|
|
125
125
|
this.onChange(value);
|
|
126
126
|
this.onTouched();
|
|
127
127
|
}
|
|
128
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
129
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.
|
|
128
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValueListDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
129
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: ValueListDirective, isStandalone: true, selector: "[goaValueList]", host: { listeners: { "_change": "listenForValueChange($event)" } }, providers: [
|
|
130
130
|
{
|
|
131
131
|
provide: NG_VALUE_ACCESSOR,
|
|
132
132
|
useExisting: forwardRef(() => ValueListDirective),
|
|
@@ -134,7 +134,7 @@ class ValueListDirective {
|
|
|
134
134
|
},
|
|
135
135
|
], ngImport: i0 }); }
|
|
136
136
|
}
|
|
137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: ValueListDirective, decorators: [{
|
|
138
138
|
type: Directive,
|
|
139
139
|
args: [{
|
|
140
140
|
standalone: true,
|
|
@@ -147,17 +147,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
147
147
|
},
|
|
148
148
|
],
|
|
149
149
|
}]
|
|
150
|
-
}],
|
|
150
|
+
}], propDecorators: { listenForValueChange: [{
|
|
151
151
|
type: HostListener,
|
|
152
152
|
args: ["_change", ["$event"]]
|
|
153
153
|
}] } });
|
|
154
154
|
|
|
155
155
|
// @deprecated: Use the new <goab-checkbox .. /> component
|
|
156
156
|
class CheckedDirective extends CheckboxControlValueAccessor {
|
|
157
|
-
constructor(
|
|
157
|
+
constructor() {
|
|
158
|
+
const renderer = inject(Renderer2);
|
|
159
|
+
const elementRef = inject(ElementRef);
|
|
158
160
|
super(renderer, elementRef);
|
|
159
|
-
this.renderer = renderer;
|
|
160
|
-
this.elementRef = elementRef;
|
|
161
161
|
this._checked = false;
|
|
162
162
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
163
163
|
this.onChange = () => {
|
|
@@ -166,6 +166,8 @@ class CheckedDirective extends CheckboxControlValueAccessor {
|
|
|
166
166
|
this.onTouched = () => {
|
|
167
167
|
/** No implementation **/
|
|
168
168
|
};
|
|
169
|
+
this.renderer = renderer;
|
|
170
|
+
this.elementRef = elementRef;
|
|
169
171
|
}
|
|
170
172
|
get value() {
|
|
171
173
|
return this._checked ? "checked" : "";
|
|
@@ -189,8 +191,8 @@ class CheckedDirective extends CheckboxControlValueAccessor {
|
|
|
189
191
|
const checked = event.detail.checked;
|
|
190
192
|
this.value = checked;
|
|
191
193
|
}
|
|
192
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
193
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.
|
|
194
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: CheckedDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
195
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.6", type: CheckedDirective, isStandalone: true, selector: "[goaChecked]", host: { listeners: { "_change": "listenForValueChange($event)" } }, providers: [
|
|
194
196
|
{
|
|
195
197
|
useExisting: forwardRef(() => CheckedDirective),
|
|
196
198
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -198,7 +200,7 @@ class CheckedDirective extends CheckboxControlValueAccessor {
|
|
|
198
200
|
},
|
|
199
201
|
], usesInheritance: true, ngImport: i0 }); }
|
|
200
202
|
}
|
|
201
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: CheckedDirective, decorators: [{
|
|
202
204
|
type: Directive,
|
|
203
205
|
args: [{
|
|
204
206
|
standalone: true,
|
|
@@ -211,17 +213,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
211
213
|
},
|
|
212
214
|
],
|
|
213
215
|
}]
|
|
214
|
-
}], ctorParameters: () => [
|
|
216
|
+
}], ctorParameters: () => [], propDecorators: { listenForValueChange: [{
|
|
215
217
|
type: HostListener,
|
|
216
218
|
args: ["_change", ["$event"]]
|
|
217
219
|
}] } });
|
|
218
220
|
|
|
219
221
|
class AngularComponentsModule {
|
|
220
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
221
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.2.
|
|
222
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.
|
|
222
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
223
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.2.6", ngImport: i0, type: AngularComponentsModule, imports: [ValueDirective, ValueListDirective, CheckedDirective], exports: [ValueDirective, ValueListDirective, CheckedDirective] }); }
|
|
224
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AngularComponentsModule }); }
|
|
223
225
|
}
|
|
224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: AngularComponentsModule, decorators: [{
|
|
225
227
|
type: NgModule,
|
|
226
228
|
args: [{
|
|
227
229
|
imports: [ValueDirective, ValueListDirective, CheckedDirective],
|
|
@@ -231,10 +233,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
231
233
|
}] });
|
|
232
234
|
|
|
233
235
|
class GoabBaseComponent {
|
|
234
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
235
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
236
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
237
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabBaseComponent, isStandalone: true, selector: "ng-component", inputs: { mt: "mt", mb: "mb", ml: "ml", mr: "mr", testId: "testId" }, ngImport: i0, template: ``, isInline: true }); }
|
|
236
238
|
}
|
|
237
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBaseComponent, decorators: [{
|
|
238
240
|
type: Component,
|
|
239
241
|
args: [{
|
|
240
242
|
standalone: true,
|
|
@@ -299,6 +301,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
299
301
|
* - `fcTouched?`: A function to handle touch events on the form control.
|
|
300
302
|
*/
|
|
301
303
|
class GoabControlValueAccessor extends GoabBaseComponent {
|
|
304
|
+
constructor() {
|
|
305
|
+
super(...arguments);
|
|
306
|
+
this.touched = false;
|
|
307
|
+
this.renderer = inject(Renderer2);
|
|
308
|
+
}
|
|
302
309
|
/**
|
|
303
310
|
* Marks the component as touched. If the component is not already marked as touched,
|
|
304
311
|
* it triggers the `fcTouched` callback (if defined) and sets the `touched` property to `true`.
|
|
@@ -309,11 +316,6 @@ class GoabControlValueAccessor extends GoabBaseComponent {
|
|
|
309
316
|
this.touched = true;
|
|
310
317
|
}
|
|
311
318
|
}
|
|
312
|
-
constructor(renderer) {
|
|
313
|
-
super();
|
|
314
|
-
this.renderer = renderer;
|
|
315
|
-
this.touched = false;
|
|
316
|
-
}
|
|
317
319
|
/**
|
|
318
320
|
* Convert an arbitrary value into a string for DOM attribute assignment.
|
|
319
321
|
* Child classes can override when they need special formatting.
|
|
@@ -360,16 +362,16 @@ class GoabControlValueAccessor extends GoabBaseComponent {
|
|
|
360
362
|
setDisabledState(isDisabled) {
|
|
361
363
|
this.disabled = isDisabled;
|
|
362
364
|
}
|
|
363
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
364
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "21.2.
|
|
365
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
366
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "21.2.6", type: GoabControlValueAccessor, isStandalone: true, selector: "ng-component", inputs: { id: "id", disabled: ["disabled", "disabled", booleanAttribute], error: ["error", "error", booleanAttribute], value: "value" }, viewQueries: [{ propertyName: "goaComponentRef", first: true, predicate: ["goaComponentRef"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: ``, isInline: true }); }
|
|
365
367
|
}
|
|
366
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
368
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabControlValueAccessor, decorators: [{
|
|
367
369
|
type: Component,
|
|
368
370
|
args: [{
|
|
369
371
|
standalone: true,
|
|
370
372
|
template: ``, //** IMPLEMENT IN SUBCLASS
|
|
371
373
|
}]
|
|
372
|
-
}],
|
|
374
|
+
}], propDecorators: { id: [{
|
|
373
375
|
type: Input
|
|
374
376
|
}], disabled: [{
|
|
375
377
|
type: Input,
|
|
@@ -385,9 +387,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
385
387
|
}] } });
|
|
386
388
|
|
|
387
389
|
class GoabAccordion extends GoabBaseComponent {
|
|
388
|
-
constructor(
|
|
389
|
-
super();
|
|
390
|
-
this.cdr =
|
|
390
|
+
constructor() {
|
|
391
|
+
super(...arguments);
|
|
392
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
391
393
|
this.onChange = new EventEmitter();
|
|
392
394
|
this.isReady = false;
|
|
393
395
|
}
|
|
@@ -403,8 +405,8 @@ class GoabAccordion extends GoabBaseComponent {
|
|
|
403
405
|
const detail = e.detail;
|
|
404
406
|
this.onChange.emit(detail.open);
|
|
405
407
|
}
|
|
406
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
407
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
408
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAccordion, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
409
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabAccordion, isStandalone: true, selector: "goab-accordion", inputs: { heading: "heading", secondaryText: "secondaryText", open: ["open", "open", booleanAttribute], headingSize: "headingSize", headingContent: "headingContent", maxWidth: "maxWidth", iconPosition: "iconPosition" }, outputs: { onChange: "onChange" }, usesInheritance: true, ngImport: i0, template: `
|
|
408
410
|
@if (isReady) {
|
|
409
411
|
<goa-accordion
|
|
410
412
|
[attr.heading]="heading"
|
|
@@ -428,7 +430,7 @@ class GoabAccordion extends GoabBaseComponent {
|
|
|
428
430
|
}
|
|
429
431
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
430
432
|
}
|
|
431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAccordion, decorators: [{
|
|
432
434
|
type: Component,
|
|
433
435
|
args: [{
|
|
434
436
|
standalone: true,
|
|
@@ -459,7 +461,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
459
461
|
`,
|
|
460
462
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
461
463
|
}]
|
|
462
|
-
}],
|
|
464
|
+
}], propDecorators: { heading: [{
|
|
463
465
|
type: Input
|
|
464
466
|
}], secondaryText: [{
|
|
465
467
|
type: Input
|
|
@@ -479,9 +481,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
479
481
|
}] } });
|
|
480
482
|
|
|
481
483
|
class GoabBadge extends GoabBaseComponent {
|
|
482
|
-
constructor(
|
|
483
|
-
super();
|
|
484
|
-
this.cdr =
|
|
484
|
+
constructor() {
|
|
485
|
+
super(...arguments);
|
|
486
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
485
487
|
this.size = "medium";
|
|
486
488
|
this.emphasis = "strong";
|
|
487
489
|
this.isReady = false;
|
|
@@ -495,8 +497,8 @@ class GoabBadge extends GoabBaseComponent {
|
|
|
495
497
|
this.cdr.detectChanges();
|
|
496
498
|
}, 0);
|
|
497
499
|
}
|
|
498
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
499
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
500
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBadge, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
501
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabBadge, isStandalone: true, selector: "goab-badge", inputs: { type: "type", content: "content", icon: ["icon", "icon", booleanAttribute], iconType: "iconType", size: "size", emphasis: "emphasis", ariaLabel: "ariaLabel" }, usesInheritance: true, ngImport: i0, template: `
|
|
500
502
|
@if (isReady) {
|
|
501
503
|
<goa-badge
|
|
502
504
|
[attr.version]="version"
|
|
@@ -517,7 +519,7 @@ class GoabBadge extends GoabBaseComponent {
|
|
|
517
519
|
}
|
|
518
520
|
`, isInline: true, styles: [":host{display:contents}\n"] }); }
|
|
519
521
|
}
|
|
520
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBadge, decorators: [{
|
|
521
523
|
type: Component,
|
|
522
524
|
args: [{ standalone: true, selector: "goab-badge", template: `
|
|
523
525
|
@if (isReady) {
|
|
@@ -539,7 +541,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
539
541
|
</goa-badge>
|
|
540
542
|
}
|
|
541
543
|
`, schemas: [CUSTOM_ELEMENTS_SCHEMA], styles: [":host{display:contents}\n"] }]
|
|
542
|
-
}],
|
|
544
|
+
}], propDecorators: { type: [{
|
|
543
545
|
type: Input
|
|
544
546
|
}], content: [{
|
|
545
547
|
type: Input
|
|
@@ -557,9 +559,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
557
559
|
}] } });
|
|
558
560
|
|
|
559
561
|
class GoabBlock extends GoabBaseComponent {
|
|
560
|
-
constructor(
|
|
561
|
-
super();
|
|
562
|
-
this.cdr =
|
|
562
|
+
constructor() {
|
|
563
|
+
super(...arguments);
|
|
564
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
563
565
|
this.isReady = false;
|
|
564
566
|
}
|
|
565
567
|
ngOnInit() {
|
|
@@ -570,8 +572,8 @@ class GoabBlock extends GoabBaseComponent {
|
|
|
570
572
|
this.cdr.detectChanges();
|
|
571
573
|
}, 0);
|
|
572
574
|
}
|
|
573
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
574
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
575
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBlock, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
576
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabBlock, isStandalone: true, selector: "goab-block", inputs: { gap: "gap", direction: "direction", alignment: "alignment", width: "width", minWidth: "minWidth", maxWidth: "maxWidth" }, usesInheritance: true, ngImport: i0, template: `
|
|
575
577
|
@if (isReady) {
|
|
576
578
|
<goa-block
|
|
577
579
|
[attr.gap]="gap"
|
|
@@ -591,7 +593,7 @@ class GoabBlock extends GoabBaseComponent {
|
|
|
591
593
|
}
|
|
592
594
|
`, isInline: true }); }
|
|
593
595
|
}
|
|
594
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
596
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBlock, decorators: [{
|
|
595
597
|
type: Component,
|
|
596
598
|
args: [{
|
|
597
599
|
standalone: true,
|
|
@@ -617,7 +619,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
617
619
|
`,
|
|
618
620
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
619
621
|
}]
|
|
620
|
-
}],
|
|
622
|
+
}], propDecorators: { gap: [{
|
|
621
623
|
type: Input
|
|
622
624
|
}], direction: [{
|
|
623
625
|
type: Input
|
|
@@ -632,9 +634,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
632
634
|
}] } });
|
|
633
635
|
|
|
634
636
|
class GoabButton extends GoabBaseComponent {
|
|
635
|
-
constructor(
|
|
636
|
-
super();
|
|
637
|
-
this.cdr =
|
|
637
|
+
constructor() {
|
|
638
|
+
super(...arguments);
|
|
639
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
638
640
|
this.type = "primary";
|
|
639
641
|
this.onClick = new EventEmitter();
|
|
640
642
|
this.isReady = false;
|
|
@@ -652,8 +654,8 @@ class GoabButton extends GoabBaseComponent {
|
|
|
652
654
|
_onClick() {
|
|
653
655
|
this.onClick.emit();
|
|
654
656
|
}
|
|
655
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
656
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
657
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabButton, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
658
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabButton, isStandalone: true, selector: "goab-button", inputs: { type: "type", size: "size", variant: "variant", disabled: ["disabled", "disabled", booleanAttribute], leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", width: "width", action: "action", actionArg: "actionArg", actionArgs: "actionArgs" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `
|
|
657
659
|
@if (isReady) {
|
|
658
660
|
<goa-button
|
|
659
661
|
[attr.version]="version"
|
|
@@ -679,7 +681,7 @@ class GoabButton extends GoabBaseComponent {
|
|
|
679
681
|
}
|
|
680
682
|
`, isInline: true }); }
|
|
681
683
|
}
|
|
682
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
684
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabButton, decorators: [{
|
|
683
685
|
type: Component,
|
|
684
686
|
args: [{
|
|
685
687
|
standalone: true,
|
|
@@ -711,7 +713,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
711
713
|
`,
|
|
712
714
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
713
715
|
}]
|
|
714
|
-
}],
|
|
716
|
+
}], propDecorators: { type: [{
|
|
715
717
|
type: Input
|
|
716
718
|
}], size: [{
|
|
717
719
|
type: Input
|
|
@@ -737,9 +739,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
737
739
|
}] } });
|
|
738
740
|
|
|
739
741
|
class GoabButtonGroup extends GoabBaseComponent {
|
|
740
|
-
constructor(
|
|
741
|
-
super();
|
|
742
|
-
this.cdr =
|
|
742
|
+
constructor() {
|
|
743
|
+
super(...arguments);
|
|
744
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
743
745
|
this.isReady = false;
|
|
744
746
|
}
|
|
745
747
|
ngOnInit() {
|
|
@@ -750,8 +752,8 @@ class GoabButtonGroup extends GoabBaseComponent {
|
|
|
750
752
|
this.cdr.detectChanges();
|
|
751
753
|
}, 0);
|
|
752
754
|
}
|
|
753
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
754
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
755
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabButtonGroup, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
756
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabButtonGroup, isStandalone: true, selector: "goab-button-group", inputs: { alignment: "alignment", gap: "gap" }, usesInheritance: true, ngImport: i0, template: `
|
|
755
757
|
@if (isReady) {
|
|
756
758
|
<goa-button-group
|
|
757
759
|
[attr.alignment]="alignment"
|
|
@@ -767,7 +769,7 @@ class GoabButtonGroup extends GoabBaseComponent {
|
|
|
767
769
|
}
|
|
768
770
|
`, isInline: true }); }
|
|
769
771
|
}
|
|
770
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabButtonGroup, decorators: [{
|
|
771
773
|
type: Component,
|
|
772
774
|
args: [{
|
|
773
775
|
standalone: true,
|
|
@@ -789,13 +791,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
789
791
|
`,
|
|
790
792
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
791
793
|
}]
|
|
792
|
-
}],
|
|
794
|
+
}], propDecorators: { alignment: [{
|
|
793
795
|
type: Input
|
|
794
796
|
}], gap: [{
|
|
795
797
|
type: Input
|
|
796
798
|
}] } });
|
|
797
799
|
|
|
798
800
|
class GoabCalendar extends GoabBaseComponent {
|
|
801
|
+
constructor() {
|
|
802
|
+
super(...arguments);
|
|
803
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
804
|
+
this.version = "2";
|
|
805
|
+
this.onChange = new EventEmitter();
|
|
806
|
+
this.isReady = false;
|
|
807
|
+
this.once = new Once();
|
|
808
|
+
}
|
|
799
809
|
formatValue(param, val) {
|
|
800
810
|
if (!val)
|
|
801
811
|
return "";
|
|
@@ -813,14 +823,6 @@ class GoabCalendar extends GoabBaseComponent {
|
|
|
813
823
|
maxString() {
|
|
814
824
|
return this.formatValue("max", this.max);
|
|
815
825
|
}
|
|
816
|
-
constructor(cdr) {
|
|
817
|
-
super();
|
|
818
|
-
this.cdr = cdr;
|
|
819
|
-
this.version = "2";
|
|
820
|
-
this.onChange = new EventEmitter();
|
|
821
|
-
this.isReady = false;
|
|
822
|
-
this.once = new Once();
|
|
823
|
-
}
|
|
824
826
|
ngOnInit() {
|
|
825
827
|
// For Angular 20, we need to delay rendering the web component
|
|
826
828
|
// to ensure all attributes are properly bound before the component initializes
|
|
@@ -833,8 +835,8 @@ class GoabCalendar extends GoabBaseComponent {
|
|
|
833
835
|
const details = e.detail;
|
|
834
836
|
this.onChange.emit(details);
|
|
835
837
|
}
|
|
836
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
837
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
838
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCalendar, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
839
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabCalendar, isStandalone: true, selector: "goab-calendar", inputs: { name: "name", value: "value", min: "min", max: "max" }, outputs: { onChange: "onChange" }, usesInheritance: true, ngImport: i0, template: `
|
|
838
840
|
@if (isReady) {
|
|
839
841
|
<goa-calendar
|
|
840
842
|
[attr.name]="name"
|
|
@@ -854,7 +856,7 @@ class GoabCalendar extends GoabBaseComponent {
|
|
|
854
856
|
}
|
|
855
857
|
`, isInline: true }); }
|
|
856
858
|
}
|
|
857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
859
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCalendar, decorators: [{
|
|
858
860
|
type: Component,
|
|
859
861
|
args: [{
|
|
860
862
|
standalone: true,
|
|
@@ -880,7 +882,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
880
882
|
`,
|
|
881
883
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
882
884
|
}]
|
|
883
|
-
}],
|
|
885
|
+
}], propDecorators: { name: [{
|
|
884
886
|
type: Input
|
|
885
887
|
}], value: [{
|
|
886
888
|
type: Input
|
|
@@ -893,9 +895,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
893
895
|
}] } });
|
|
894
896
|
|
|
895
897
|
class GoabCallout extends GoabBaseComponent {
|
|
896
|
-
constructor(
|
|
897
|
-
super();
|
|
898
|
-
this.cdr =
|
|
898
|
+
constructor() {
|
|
899
|
+
super(...arguments);
|
|
900
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
899
901
|
this.isReady = false;
|
|
900
902
|
this.version = "2";
|
|
901
903
|
this.type = "information";
|
|
@@ -913,8 +915,8 @@ class GoabCallout extends GoabBaseComponent {
|
|
|
913
915
|
this.cdr.detectChanges();
|
|
914
916
|
}, 0);
|
|
915
917
|
}
|
|
916
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
917
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
918
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCallout, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
919
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabCallout, isStandalone: true, selector: "goab-callout", inputs: { type: "type", heading: "heading", size: "size", maxWidth: "maxWidth", ariaLive: "ariaLive", iconTheme: "iconTheme", emphasis: "emphasis" }, usesInheritance: true, ngImport: i0, template: `
|
|
918
920
|
@if (isReady) {
|
|
919
921
|
<goa-callout
|
|
920
922
|
[attr.version]="version"
|
|
@@ -936,7 +938,7 @@ class GoabCallout extends GoabBaseComponent {
|
|
|
936
938
|
}
|
|
937
939
|
`, isInline: true }); }
|
|
938
940
|
}
|
|
939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
941
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCallout, decorators: [{
|
|
940
942
|
type: Component,
|
|
941
943
|
args: [{
|
|
942
944
|
standalone: true,
|
|
@@ -964,7 +966,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
964
966
|
`,
|
|
965
967
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
966
968
|
}]
|
|
967
|
-
}],
|
|
969
|
+
}], propDecorators: { type: [{
|
|
968
970
|
type: Input
|
|
969
971
|
}], heading: [{
|
|
970
972
|
type: Input
|
|
@@ -981,9 +983,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
981
983
|
}] } });
|
|
982
984
|
|
|
983
985
|
class GoabCard extends GoabBaseComponent {
|
|
984
|
-
constructor(
|
|
985
|
-
super();
|
|
986
|
-
this.cdr =
|
|
986
|
+
constructor() {
|
|
987
|
+
super(...arguments);
|
|
988
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
987
989
|
this.isReady = false;
|
|
988
990
|
}
|
|
989
991
|
ngOnInit() {
|
|
@@ -994,8 +996,8 @@ class GoabCard extends GoabBaseComponent {
|
|
|
994
996
|
this.cdr.detectChanges();
|
|
995
997
|
}, 0);
|
|
996
998
|
}
|
|
997
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
998
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
999
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCard, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1000
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabCard, isStandalone: true, selector: "goab-card", inputs: { elevation: ["elevation", "elevation", numberAttribute], width: "width" }, usesInheritance: true, ngImport: i0, template: `
|
|
999
1001
|
@if (isReady) {
|
|
1000
1002
|
<goa-card
|
|
1001
1003
|
[attr.elevation]="elevation"
|
|
@@ -1011,7 +1013,7 @@ class GoabCard extends GoabBaseComponent {
|
|
|
1011
1013
|
}
|
|
1012
1014
|
`, isInline: true }); }
|
|
1013
1015
|
}
|
|
1014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCard, decorators: [{
|
|
1015
1017
|
type: Component,
|
|
1016
1018
|
args: [{
|
|
1017
1019
|
standalone: true,
|
|
@@ -1033,7 +1035,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1033
1035
|
`,
|
|
1034
1036
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1035
1037
|
}]
|
|
1036
|
-
}],
|
|
1038
|
+
}], propDecorators: { elevation: [{
|
|
1037
1039
|
type: Input,
|
|
1038
1040
|
args: [{ transform: numberAttribute }]
|
|
1039
1041
|
}], width: [{
|
|
@@ -1041,8 +1043,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1041
1043
|
}] } });
|
|
1042
1044
|
|
|
1043
1045
|
class GoabCardContent {
|
|
1044
|
-
constructor(
|
|
1045
|
-
this.cdr =
|
|
1046
|
+
constructor() {
|
|
1047
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1046
1048
|
this.isReady = false;
|
|
1047
1049
|
}
|
|
1048
1050
|
ngOnInit() {
|
|
@@ -1053,8 +1055,8 @@ class GoabCardContent {
|
|
|
1053
1055
|
this.cdr.detectChanges();
|
|
1054
1056
|
}, 0);
|
|
1055
1057
|
}
|
|
1056
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1057
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1058
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardContent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1059
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabCardContent, isStandalone: true, selector: "goab-card-content", ngImport: i0, template: `
|
|
1058
1060
|
@if (isReady) {
|
|
1059
1061
|
<goa-card-content>
|
|
1060
1062
|
<ng-content />
|
|
@@ -1062,7 +1064,7 @@ class GoabCardContent {
|
|
|
1062
1064
|
}
|
|
1063
1065
|
`, isInline: true }); }
|
|
1064
1066
|
}
|
|
1065
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1067
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardContent, decorators: [{
|
|
1066
1068
|
type: Component,
|
|
1067
1069
|
args: [{
|
|
1068
1070
|
standalone: true,
|
|
@@ -1076,11 +1078,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1076
1078
|
`,
|
|
1077
1079
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1078
1080
|
}]
|
|
1079
|
-
}]
|
|
1081
|
+
}] });
|
|
1080
1082
|
|
|
1081
1083
|
class GoabCardActions {
|
|
1082
|
-
constructor(
|
|
1083
|
-
this.cdr =
|
|
1084
|
+
constructor() {
|
|
1085
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1084
1086
|
this.isReady = false;
|
|
1085
1087
|
}
|
|
1086
1088
|
ngOnInit() {
|
|
@@ -1091,8 +1093,8 @@ class GoabCardActions {
|
|
|
1091
1093
|
this.cdr.detectChanges();
|
|
1092
1094
|
}, 0);
|
|
1093
1095
|
}
|
|
1094
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1095
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1096
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardActions, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1097
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabCardActions, isStandalone: true, selector: "goab-card-actions", ngImport: i0, template: `
|
|
1096
1098
|
@if (isReady) {
|
|
1097
1099
|
<goa-card-actions>
|
|
1098
1100
|
<ng-content />
|
|
@@ -1100,7 +1102,7 @@ class GoabCardActions {
|
|
|
1100
1102
|
}
|
|
1101
1103
|
`, isInline: true }); }
|
|
1102
1104
|
}
|
|
1103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardActions, decorators: [{
|
|
1104
1106
|
type: Component,
|
|
1105
1107
|
args: [{
|
|
1106
1108
|
standalone: true,
|
|
@@ -1114,11 +1116,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1114
1116
|
`,
|
|
1115
1117
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1116
1118
|
}]
|
|
1117
|
-
}]
|
|
1119
|
+
}] });
|
|
1118
1120
|
|
|
1119
1121
|
class GoabCardImage {
|
|
1120
|
-
constructor(
|
|
1121
|
-
this.cdr =
|
|
1122
|
+
constructor() {
|
|
1123
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1122
1124
|
this.isReady = false;
|
|
1123
1125
|
}
|
|
1124
1126
|
ngOnInit() {
|
|
@@ -1129,8 +1131,8 @@ class GoabCardImage {
|
|
|
1129
1131
|
this.cdr.detectChanges();
|
|
1130
1132
|
}, 0);
|
|
1131
1133
|
}
|
|
1132
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1133
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1134
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardImage, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1135
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabCardImage, isStandalone: true, selector: "goab-card-image", inputs: { src: "src", height: "height" }, ngImport: i0, template: `
|
|
1134
1136
|
@if (isReady) {
|
|
1135
1137
|
<goa-card-image [attr.src]="src" [attr.height]="height">
|
|
1136
1138
|
<ng-content />
|
|
@@ -1138,7 +1140,7 @@ class GoabCardImage {
|
|
|
1138
1140
|
}
|
|
1139
1141
|
`, isInline: true }); }
|
|
1140
1142
|
}
|
|
1141
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1143
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardImage, decorators: [{
|
|
1142
1144
|
type: Component,
|
|
1143
1145
|
args: [{
|
|
1144
1146
|
standalone: true,
|
|
@@ -1152,7 +1154,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1152
1154
|
`,
|
|
1153
1155
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1154
1156
|
}]
|
|
1155
|
-
}],
|
|
1157
|
+
}], propDecorators: { src: [{
|
|
1156
1158
|
type: Input,
|
|
1157
1159
|
args: [{ required: true }]
|
|
1158
1160
|
}], height: [{
|
|
@@ -1161,9 +1163,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1161
1163
|
}] } });
|
|
1162
1164
|
|
|
1163
1165
|
class GoabCheckbox extends GoabControlValueAccessor {
|
|
1164
|
-
constructor(
|
|
1165
|
-
super(
|
|
1166
|
-
this.cdr =
|
|
1166
|
+
constructor() {
|
|
1167
|
+
super(...arguments);
|
|
1168
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1167
1169
|
this.isReady = false;
|
|
1168
1170
|
this.version = "2";
|
|
1169
1171
|
this.size = "default";
|
|
@@ -1201,8 +1203,8 @@ class GoabCheckbox extends GoabControlValueAccessor {
|
|
|
1201
1203
|
this.renderer.setAttribute(el, "checked", this.checked ? "true" : "false");
|
|
1202
1204
|
}
|
|
1203
1205
|
}
|
|
1204
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1205
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1206
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCheckbox, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1207
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabCheckbox, isStandalone: true, selector: "goab-checkbox", inputs: { name: "name", checked: ["checked", "checked", booleanAttribute], indeterminate: ["indeterminate", "indeterminate", booleanAttribute], text: "text", value: "value", ariaLabel: "ariaLabel", description: "description", reveal: "reveal", revealArialLabel: "revealArialLabel", maxWidth: "maxWidth", size: "size" }, outputs: { onChange: "onChange" }, providers: [
|
|
1206
1208
|
{
|
|
1207
1209
|
provide: NG_VALUE_ACCESSOR,
|
|
1208
1210
|
multi: true,
|
|
@@ -1244,7 +1246,7 @@ class GoabCheckbox extends GoabControlValueAccessor {
|
|
|
1244
1246
|
</goa-checkbox>
|
|
1245
1247
|
}`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
1246
1248
|
}
|
|
1247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCheckbox, decorators: [{
|
|
1248
1250
|
type: Component,
|
|
1249
1251
|
args: [{
|
|
1250
1252
|
standalone: true,
|
|
@@ -1294,7 +1296,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1294
1296
|
],
|
|
1295
1297
|
imports: [NgTemplateOutlet],
|
|
1296
1298
|
}]
|
|
1297
|
-
}],
|
|
1299
|
+
}], propDecorators: { name: [{
|
|
1298
1300
|
type: Input
|
|
1299
1301
|
}], checked: [{
|
|
1300
1302
|
type: Input,
|
|
@@ -1323,9 +1325,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1323
1325
|
}] } });
|
|
1324
1326
|
|
|
1325
1327
|
class GoabCheckboxList extends GoabControlValueAccessor {
|
|
1326
|
-
constructor(
|
|
1327
|
-
super(
|
|
1328
|
-
this.cdr =
|
|
1328
|
+
constructor() {
|
|
1329
|
+
super(...arguments);
|
|
1330
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1329
1331
|
this.isReady = false;
|
|
1330
1332
|
this.version = "2";
|
|
1331
1333
|
this.size = "default";
|
|
@@ -1355,8 +1357,8 @@ class GoabCheckboxList extends GoabControlValueAccessor {
|
|
|
1355
1357
|
// clone to ensure a new reference and trigger downstream updates
|
|
1356
1358
|
this.value = Array.isArray(value) ? [...value] : [];
|
|
1357
1359
|
}
|
|
1358
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1359
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1360
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCheckboxList, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1361
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabCheckboxList, isStandalone: true, selector: "goab-checkbox-list", inputs: { name: "name", maxWidth: "maxWidth", size: "size", value: "value" }, outputs: { onChange: "onChange" }, providers: [
|
|
1360
1362
|
{
|
|
1361
1363
|
provide: NG_VALUE_ACCESSOR,
|
|
1362
1364
|
multi: true,
|
|
@@ -1383,7 +1385,7 @@ class GoabCheckboxList extends GoabControlValueAccessor {
|
|
|
1383
1385
|
</goa-checkbox-list>
|
|
1384
1386
|
}`, isInline: true }); }
|
|
1385
1387
|
}
|
|
1386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCheckboxList, decorators: [{
|
|
1387
1389
|
type: Component,
|
|
1388
1390
|
args: [{
|
|
1389
1391
|
standalone: true,
|
|
@@ -1417,7 +1419,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1417
1419
|
},
|
|
1418
1420
|
],
|
|
1419
1421
|
}]
|
|
1420
|
-
}],
|
|
1422
|
+
}], propDecorators: { name: [{
|
|
1421
1423
|
type: Input
|
|
1422
1424
|
}], maxWidth: [{
|
|
1423
1425
|
type: Input
|
|
@@ -1430,9 +1432,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1430
1432
|
}] } });
|
|
1431
1433
|
|
|
1432
1434
|
class GoabChip extends GoabBaseComponent {
|
|
1433
|
-
constructor(
|
|
1434
|
-
super();
|
|
1435
|
-
this.cdr =
|
|
1435
|
+
constructor() {
|
|
1436
|
+
super(...arguments);
|
|
1437
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1436
1438
|
this.isReady = false;
|
|
1437
1439
|
this.content = "";
|
|
1438
1440
|
this.onClick = new EventEmitter();
|
|
@@ -1448,8 +1450,8 @@ class GoabChip extends GoabBaseComponent {
|
|
|
1448
1450
|
_onClick() {
|
|
1449
1451
|
this.onClick.emit();
|
|
1450
1452
|
}
|
|
1451
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1452
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1453
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabChip, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1454
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabChip, isStandalone: true, selector: "goab-chip", inputs: { leadingIcon: "leadingIcon", error: ["error", "error", booleanAttribute], deletable: ["deletable", "deletable", booleanAttribute], content: "content", variant: "variant", iconTheme: "iconTheme" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `@if (isReady) {
|
|
1453
1455
|
<goa-chip
|
|
1454
1456
|
[attr.leadingicon]="leadingIcon"
|
|
1455
1457
|
[attr.variant]="variant"
|
|
@@ -1468,7 +1470,7 @@ class GoabChip extends GoabBaseComponent {
|
|
|
1468
1470
|
</goa-chip>
|
|
1469
1471
|
}`, isInline: true }); }
|
|
1470
1472
|
}
|
|
1471
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabChip, decorators: [{
|
|
1472
1474
|
type: Component,
|
|
1473
1475
|
args: [{
|
|
1474
1476
|
standalone: true,
|
|
@@ -1493,7 +1495,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1493
1495
|
}`,
|
|
1494
1496
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1495
1497
|
}]
|
|
1496
|
-
}],
|
|
1498
|
+
}], propDecorators: { leadingIcon: [{
|
|
1497
1499
|
type: Input
|
|
1498
1500
|
}], error: [{
|
|
1499
1501
|
type: Input,
|
|
@@ -1512,8 +1514,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1512
1514
|
}] } });
|
|
1513
1515
|
|
|
1514
1516
|
class GoabCircularProgress {
|
|
1515
|
-
constructor(
|
|
1516
|
-
this.cdr =
|
|
1517
|
+
constructor() {
|
|
1518
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1517
1519
|
this.isReady = false;
|
|
1518
1520
|
}
|
|
1519
1521
|
ngOnInit() {
|
|
@@ -1524,8 +1526,8 @@ class GoabCircularProgress {
|
|
|
1524
1526
|
this.cdr.detectChanges();
|
|
1525
1527
|
}, 0);
|
|
1526
1528
|
}
|
|
1527
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1528
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1529
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCircularProgress, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1530
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabCircularProgress, isStandalone: true, selector: "goab-circular-progress", inputs: { variant: "variant", size: "size", message: "message", visible: ["visible", "visible", booleanAttribute], progress: ["progress", "progress", numberAttribute], testId: "testId" }, ngImport: i0, template: `
|
|
1529
1531
|
@if (isReady) {
|
|
1530
1532
|
<goa-circular-progress
|
|
1531
1533
|
[attr.variant]="variant || 'inline'"
|
|
@@ -1539,7 +1541,7 @@ class GoabCircularProgress {
|
|
|
1539
1541
|
}
|
|
1540
1542
|
`, isInline: true }); }
|
|
1541
1543
|
}
|
|
1542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1544
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCircularProgress, decorators: [{
|
|
1543
1545
|
type: Component,
|
|
1544
1546
|
args: [{
|
|
1545
1547
|
standalone: true,
|
|
@@ -1559,7 +1561,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1559
1561
|
`,
|
|
1560
1562
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1561
1563
|
}]
|
|
1562
|
-
}],
|
|
1564
|
+
}], propDecorators: { variant: [{
|
|
1563
1565
|
type: Input
|
|
1564
1566
|
}], size: [{
|
|
1565
1567
|
type: Input
|
|
@@ -1576,8 +1578,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1576
1578
|
}] } });
|
|
1577
1579
|
|
|
1578
1580
|
class GoabColumnLayout {
|
|
1579
|
-
constructor(
|
|
1580
|
-
this.cdr =
|
|
1581
|
+
constructor() {
|
|
1582
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1581
1583
|
/** no props **/
|
|
1582
1584
|
this.isReady = false;
|
|
1583
1585
|
}
|
|
@@ -1589,8 +1591,8 @@ class GoabColumnLayout {
|
|
|
1589
1591
|
this.cdr.detectChanges();
|
|
1590
1592
|
}, 0);
|
|
1591
1593
|
}
|
|
1592
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1593
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1594
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabColumnLayout, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1595
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabColumnLayout, isStandalone: true, selector: "goab-column-layout", ngImport: i0, template: `
|
|
1594
1596
|
@if (isReady) {
|
|
1595
1597
|
<goa-one-column-layout>
|
|
1596
1598
|
<ng-content />
|
|
@@ -1598,7 +1600,7 @@ class GoabColumnLayout {
|
|
|
1598
1600
|
}
|
|
1599
1601
|
`, isInline: true }); }
|
|
1600
1602
|
}
|
|
1601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabColumnLayout, decorators: [{
|
|
1602
1604
|
type: Component,
|
|
1603
1605
|
args: [{
|
|
1604
1606
|
standalone: true,
|
|
@@ -1612,12 +1614,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1612
1614
|
`,
|
|
1613
1615
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1614
1616
|
}]
|
|
1615
|
-
}]
|
|
1617
|
+
}] });
|
|
1616
1618
|
|
|
1617
1619
|
class GoabContainer extends GoabBaseComponent {
|
|
1618
|
-
constructor(
|
|
1619
|
-
super();
|
|
1620
|
-
this.cdr =
|
|
1620
|
+
constructor() {
|
|
1621
|
+
super(...arguments);
|
|
1622
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1621
1623
|
this.type = "interactive";
|
|
1622
1624
|
this.accent = "filled";
|
|
1623
1625
|
this.padding = "relaxed";
|
|
@@ -1632,8 +1634,8 @@ class GoabContainer extends GoabBaseComponent {
|
|
|
1632
1634
|
this.cdr.detectChanges();
|
|
1633
1635
|
}, 0);
|
|
1634
1636
|
}
|
|
1635
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1636
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1637
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabContainer, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1638
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabContainer, isStandalone: true, selector: "goab-container", inputs: { type: "type", accent: "accent", padding: "padding", width: "width", maxWidth: "maxWidth", minHeight: "minHeight", maxHeight: "maxHeight", title: "title", actions: "actions" }, usesInheritance: true, ngImport: i0, template: `@if (isReady) {
|
|
1637
1639
|
<goa-container
|
|
1638
1640
|
[attr.type]="type"
|
|
1639
1641
|
[attr.accent]="accent"
|
|
@@ -1662,7 +1664,7 @@ class GoabContainer extends GoabBaseComponent {
|
|
|
1662
1664
|
</goa-container>
|
|
1663
1665
|
}`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
1664
1666
|
}
|
|
1665
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1667
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabContainer, decorators: [{
|
|
1666
1668
|
type: Component,
|
|
1667
1669
|
args: [{
|
|
1668
1670
|
standalone: true,
|
|
@@ -1698,7 +1700,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1698
1700
|
}`,
|
|
1699
1701
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1700
1702
|
}]
|
|
1701
|
-
}],
|
|
1703
|
+
}], propDecorators: { type: [{
|
|
1702
1704
|
type: Input
|
|
1703
1705
|
}], accent: [{
|
|
1704
1706
|
type: Input
|
|
@@ -1719,8 +1721,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1719
1721
|
}] } });
|
|
1720
1722
|
|
|
1721
1723
|
class GoabDataGrid {
|
|
1722
|
-
constructor(
|
|
1723
|
-
this.cdr =
|
|
1724
|
+
constructor() {
|
|
1725
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1724
1726
|
this.keyboardIconVisibility = "visible";
|
|
1725
1727
|
this.keyboardIconPosition = "left";
|
|
1726
1728
|
this.isReady = false;
|
|
@@ -1733,8 +1735,8 @@ class GoabDataGrid {
|
|
|
1733
1735
|
this.cdr.detectChanges();
|
|
1734
1736
|
}, 0);
|
|
1735
1737
|
}
|
|
1736
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1737
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1738
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDataGrid, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1739
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabDataGrid, isStandalone: true, selector: "goab-data-grid", inputs: { keyboardIconVisibility: "keyboardIconVisibility", keyboardIconPosition: "keyboardIconPosition", keyboardNav: "keyboardNav" }, ngImport: i0, template: `
|
|
1738
1740
|
@if (isReady) {
|
|
1739
1741
|
<goa-data-grid
|
|
1740
1742
|
[attr.keyboard-icon-visibility]="keyboardIconVisibility"
|
|
@@ -1746,7 +1748,7 @@ class GoabDataGrid {
|
|
|
1746
1748
|
}
|
|
1747
1749
|
`, isInline: true }); }
|
|
1748
1750
|
}
|
|
1749
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1751
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDataGrid, decorators: [{
|
|
1750
1752
|
type: Component,
|
|
1751
1753
|
args: [{
|
|
1752
1754
|
standalone: true,
|
|
@@ -1764,7 +1766,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1764
1766
|
`,
|
|
1765
1767
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1766
1768
|
}]
|
|
1767
|
-
}],
|
|
1769
|
+
}], propDecorators: { keyboardIconVisibility: [{
|
|
1768
1770
|
type: Input
|
|
1769
1771
|
}], keyboardIconPosition: [{
|
|
1770
1772
|
type: Input
|
|
@@ -1774,6 +1776,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1774
1776
|
}] } });
|
|
1775
1777
|
|
|
1776
1778
|
class GoabDatePicker extends GoabControlValueAccessor {
|
|
1779
|
+
constructor() {
|
|
1780
|
+
super(...arguments);
|
|
1781
|
+
this.elementRef = inject(ElementRef);
|
|
1782
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1783
|
+
this.isReady = false;
|
|
1784
|
+
this.version = "2";
|
|
1785
|
+
this.onChange = new EventEmitter();
|
|
1786
|
+
this.once = new Once();
|
|
1787
|
+
}
|
|
1777
1788
|
formatValue(param, val) {
|
|
1778
1789
|
if (!val)
|
|
1779
1790
|
return "";
|
|
@@ -1800,15 +1811,6 @@ class GoabDatePicker extends GoabControlValueAccessor {
|
|
|
1800
1811
|
this.markAsTouched();
|
|
1801
1812
|
this.fcChange?.(detail.value);
|
|
1802
1813
|
}
|
|
1803
|
-
constructor(elementRef, cdr, renderer) {
|
|
1804
|
-
super(renderer);
|
|
1805
|
-
this.elementRef = elementRef;
|
|
1806
|
-
this.cdr = cdr;
|
|
1807
|
-
this.isReady = false;
|
|
1808
|
-
this.version = "2";
|
|
1809
|
-
this.onChange = new EventEmitter();
|
|
1810
|
-
this.once = new Once();
|
|
1811
|
-
}
|
|
1812
1814
|
ngOnInit() {
|
|
1813
1815
|
// For Angular 20, we need to delay rendering the web component
|
|
1814
1816
|
// to ensure all attributes are properly bound before the component initializes
|
|
@@ -1840,8 +1842,8 @@ class GoabDatePicker extends GoabControlValueAccessor {
|
|
|
1840
1842
|
}
|
|
1841
1843
|
}
|
|
1842
1844
|
}
|
|
1843
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1844
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1845
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDatePicker, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1846
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabDatePicker, isStandalone: true, selector: "goab-date-picker", inputs: { name: "name", value: "value", min: "min", max: "max", type: "type", relative: "relative", width: "width" }, outputs: { onChange: "onChange" }, host: { listeners: { "disabledChange": "listenDisabledChange($event)" } }, providers: [
|
|
1845
1847
|
{
|
|
1846
1848
|
provide: NG_VALUE_ACCESSOR,
|
|
1847
1849
|
multi: true,
|
|
@@ -1870,7 +1872,7 @@ class GoabDatePicker extends GoabControlValueAccessor {
|
|
|
1870
1872
|
</goa-date-picker>
|
|
1871
1873
|
}`, isInline: true }); }
|
|
1872
1874
|
}
|
|
1873
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1875
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDatePicker, decorators: [{
|
|
1874
1876
|
type: Component,
|
|
1875
1877
|
args: [{
|
|
1876
1878
|
standalone: true,
|
|
@@ -1906,7 +1908,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1906
1908
|
},
|
|
1907
1909
|
],
|
|
1908
1910
|
}]
|
|
1909
|
-
}],
|
|
1911
|
+
}], propDecorators: { name: [{
|
|
1910
1912
|
type: Input
|
|
1911
1913
|
}], value: [{
|
|
1912
1914
|
type: Input
|
|
@@ -1928,9 +1930,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1928
1930
|
}] } });
|
|
1929
1931
|
|
|
1930
1932
|
class GoabDetails extends GoabBaseComponent {
|
|
1931
|
-
constructor(
|
|
1932
|
-
super();
|
|
1933
|
-
this.cdr =
|
|
1933
|
+
constructor() {
|
|
1934
|
+
super(...arguments);
|
|
1935
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1934
1936
|
this.isReady = false;
|
|
1935
1937
|
}
|
|
1936
1938
|
ngOnInit() {
|
|
@@ -1941,8 +1943,8 @@ class GoabDetails extends GoabBaseComponent {
|
|
|
1941
1943
|
this.cdr.detectChanges();
|
|
1942
1944
|
}, 0);
|
|
1943
1945
|
}
|
|
1944
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
1945
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
1946
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDetails, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1947
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabDetails, isStandalone: true, selector: "goab-details", inputs: { heading: "heading", open: ["open", "open", booleanAttribute], maxWidth: "maxWidth" }, usesInheritance: true, ngImport: i0, template: `
|
|
1946
1948
|
@if (isReady) {
|
|
1947
1949
|
<goa-details
|
|
1948
1950
|
[attr.heading]="heading"
|
|
@@ -1959,7 +1961,7 @@ class GoabDetails extends GoabBaseComponent {
|
|
|
1959
1961
|
}
|
|
1960
1962
|
`, isInline: true }); }
|
|
1961
1963
|
}
|
|
1962
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDetails, decorators: [{
|
|
1963
1965
|
type: Component,
|
|
1964
1966
|
args: [{
|
|
1965
1967
|
standalone: true,
|
|
@@ -1982,7 +1984,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1982
1984
|
`,
|
|
1983
1985
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1984
1986
|
}]
|
|
1985
|
-
}],
|
|
1987
|
+
}], propDecorators: { heading: [{
|
|
1986
1988
|
type: Input,
|
|
1987
1989
|
args: [{ required: true }]
|
|
1988
1990
|
}], open: [{
|
|
@@ -1993,9 +1995,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1993
1995
|
}] } });
|
|
1994
1996
|
|
|
1995
1997
|
class GoabDivider extends GoabBaseComponent {
|
|
1996
|
-
constructor(
|
|
1997
|
-
super();
|
|
1998
|
-
this.cdr =
|
|
1998
|
+
constructor() {
|
|
1999
|
+
super(...arguments);
|
|
2000
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1999
2001
|
this.isReady = false;
|
|
2000
2002
|
}
|
|
2001
2003
|
ngOnInit() {
|
|
@@ -2006,8 +2008,8 @@ class GoabDivider extends GoabBaseComponent {
|
|
|
2006
2008
|
this.cdr.detectChanges();
|
|
2007
2009
|
}, 0);
|
|
2008
2010
|
}
|
|
2009
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2010
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
2011
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDivider, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2012
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabDivider, isStandalone: true, selector: "goab-divider", usesInheritance: true, ngImport: i0, template: `
|
|
2011
2013
|
@if (isReady) {
|
|
2012
2014
|
<goa-divider
|
|
2013
2015
|
[attr.testid]="testId"
|
|
@@ -2020,7 +2022,7 @@ class GoabDivider extends GoabBaseComponent {
|
|
|
2020
2022
|
}
|
|
2021
2023
|
`, isInline: true }); }
|
|
2022
2024
|
}
|
|
2023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDivider, decorators: [{
|
|
2024
2026
|
type: Component,
|
|
2025
2027
|
args: [{
|
|
2026
2028
|
standalone: true,
|
|
@@ -2039,11 +2041,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2039
2041
|
`,
|
|
2040
2042
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2041
2043
|
}]
|
|
2042
|
-
}]
|
|
2044
|
+
}] });
|
|
2043
2045
|
|
|
2044
2046
|
class GoabDrawer {
|
|
2045
|
-
constructor(
|
|
2046
|
-
this.cdr =
|
|
2047
|
+
constructor() {
|
|
2048
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2047
2049
|
this.version = "2";
|
|
2048
2050
|
this.onClose = new EventEmitter();
|
|
2049
2051
|
this.isReady = false;
|
|
@@ -2067,8 +2069,8 @@ class GoabDrawer {
|
|
|
2067
2069
|
return null;
|
|
2068
2070
|
return this.heading instanceof TemplateRef ? this.heading : null;
|
|
2069
2071
|
}
|
|
2070
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2071
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
2072
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDrawer, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2073
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabDrawer, isStandalone: true, selector: "goab-drawer", inputs: { open: ["open", "open", booleanAttribute], position: "position", heading: "heading", maxSize: "maxSize", testId: "testId", actions: "actions" }, outputs: { onClose: "onClose" }, ngImport: i0, template: `@if (isReady) {
|
|
2072
2074
|
<goa-drawer
|
|
2073
2075
|
[open]="open"
|
|
2074
2076
|
[attr.position]="position"
|
|
@@ -2088,7 +2090,7 @@ class GoabDrawer {
|
|
|
2088
2090
|
</goa-drawer>
|
|
2089
2091
|
} `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
2090
2092
|
}
|
|
2091
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2093
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDrawer, decorators: [{
|
|
2092
2094
|
type: Component,
|
|
2093
2095
|
args: [{
|
|
2094
2096
|
standalone: true,
|
|
@@ -2115,7 +2117,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2115
2117
|
} `,
|
|
2116
2118
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2117
2119
|
}]
|
|
2118
|
-
}],
|
|
2120
|
+
}], propDecorators: { open: [{
|
|
2119
2121
|
type: Input,
|
|
2120
2122
|
args: [{ required: true, transform: booleanAttribute }]
|
|
2121
2123
|
}], position: [{
|
|
@@ -2135,9 +2137,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2135
2137
|
|
|
2136
2138
|
// "disabled", "value", "id" is an exposed property of HTMLInputElement, no need to bind with attr
|
|
2137
2139
|
class GoabDropdown extends GoabControlValueAccessor {
|
|
2138
|
-
constructor(
|
|
2139
|
-
super(
|
|
2140
|
-
this.cdr =
|
|
2140
|
+
constructor() {
|
|
2141
|
+
super(...arguments);
|
|
2142
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2141
2143
|
this.size = "default";
|
|
2142
2144
|
this.onChange = new EventEmitter();
|
|
2143
2145
|
this.isReady = false;
|
|
@@ -2159,8 +2161,8 @@ class GoabDropdown extends GoabControlValueAccessor {
|
|
|
2159
2161
|
this.markAsTouched();
|
|
2160
2162
|
this.fcChange?.(detail.value || "");
|
|
2161
2163
|
}
|
|
2162
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2163
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
2164
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDropdown, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2165
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabDropdown, isStandalone: true, selector: "goab-dropdown", inputs: { name: "name", ariaLabel: "ariaLabel", ariaLabelledBy: "ariaLabelledBy", filterable: ["filterable", "filterable", booleanAttribute], leadingIcon: "leadingIcon", maxHeight: "maxHeight", multiselect: ["multiselect", "multiselect", booleanAttribute], native: ["native", "native", booleanAttribute], placeholder: "placeholder", width: "width", maxWidth: "maxWidth", autoComplete: "autoComplete", size: "size", relative: "relative" }, outputs: { onChange: "onChange" }, providers: [
|
|
2164
2166
|
{
|
|
2165
2167
|
provide: NG_VALUE_ACCESSOR,
|
|
2166
2168
|
multi: true,
|
|
@@ -2201,7 +2203,7 @@ class GoabDropdown extends GoabControlValueAccessor {
|
|
|
2201
2203
|
}
|
|
2202
2204
|
`, isInline: true }); }
|
|
2203
2205
|
}
|
|
2204
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDropdown, decorators: [{
|
|
2205
2207
|
type: Component,
|
|
2206
2208
|
args: [{
|
|
2207
2209
|
standalone: true,
|
|
@@ -2249,7 +2251,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2249
2251
|
},
|
|
2250
2252
|
],
|
|
2251
2253
|
}]
|
|
2252
|
-
}],
|
|
2254
|
+
}], propDecorators: { name: [{
|
|
2253
2255
|
type: Input
|
|
2254
2256
|
}], ariaLabel: [{
|
|
2255
2257
|
type: Input
|
|
@@ -2285,8 +2287,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2285
2287
|
}] } });
|
|
2286
2288
|
|
|
2287
2289
|
class GoabDropdownItem {
|
|
2288
|
-
constructor(
|
|
2289
|
-
this.cdr =
|
|
2290
|
+
constructor() {
|
|
2291
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2290
2292
|
this.isReady = false;
|
|
2291
2293
|
}
|
|
2292
2294
|
ngOnInit() {
|
|
@@ -2297,8 +2299,8 @@ class GoabDropdownItem {
|
|
|
2297
2299
|
this.cdr.detectChanges();
|
|
2298
2300
|
}, 0);
|
|
2299
2301
|
}
|
|
2300
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2301
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
2302
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDropdownItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2303
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabDropdownItem, isStandalone: true, selector: "goab-dropdown-item", inputs: { value: "value", filter: "filter", label: "label", name: "name", mountType: "mountType" }, ngImport: i0, template: ` @if (isReady) {
|
|
2302
2304
|
<goa-dropdown-item
|
|
2303
2305
|
[value]="value"
|
|
2304
2306
|
[label]="label"
|
|
@@ -2309,7 +2311,7 @@ class GoabDropdownItem {
|
|
|
2309
2311
|
</goa-dropdown-item>
|
|
2310
2312
|
}`, isInline: true }); }
|
|
2311
2313
|
}
|
|
2312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDropdownItem, decorators: [{
|
|
2313
2315
|
type: Component,
|
|
2314
2316
|
args: [{
|
|
2315
2317
|
standalone: true,
|
|
@@ -2326,7 +2328,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2326
2328
|
}`,
|
|
2327
2329
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2328
2330
|
}]
|
|
2329
|
-
}],
|
|
2331
|
+
}], propDecorators: { value: [{
|
|
2330
2332
|
type: Input
|
|
2331
2333
|
}], filter: [{
|
|
2332
2334
|
type: Input
|
|
@@ -2339,8 +2341,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2339
2341
|
}] } });
|
|
2340
2342
|
|
|
2341
2343
|
class GoabFileUploadCard {
|
|
2342
|
-
constructor(
|
|
2343
|
-
this.cdr =
|
|
2344
|
+
constructor() {
|
|
2345
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2344
2346
|
this.onCancel = new EventEmitter();
|
|
2345
2347
|
this.onDelete = new EventEmitter();
|
|
2346
2348
|
this.isReady = false;
|
|
@@ -2360,8 +2362,8 @@ class GoabFileUploadCard {
|
|
|
2360
2362
|
_onDelete(event) {
|
|
2361
2363
|
this.onDelete.emit({ filename: this.filename, event });
|
|
2362
2364
|
}
|
|
2363
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2364
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
2365
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFileUploadCard, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2366
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabFileUploadCard, isStandalone: true, selector: "goab-file-upload-card", inputs: { filename: "filename", size: ["size", "size", numberAttribute], type: "type", progress: ["progress", "progress", numberAttribute], error: "error", testId: "testId" }, outputs: { onCancel: "onCancel", onDelete: "onDelete" }, ngImport: i0, template: ` @if (isReady) {
|
|
2365
2367
|
<goa-file-upload-card
|
|
2366
2368
|
[attr.version]="version"
|
|
2367
2369
|
[attr.filename]="filename"
|
|
@@ -2376,7 +2378,7 @@ class GoabFileUploadCard {
|
|
|
2376
2378
|
</goa-file-upload-card>
|
|
2377
2379
|
}`, isInline: true }); }
|
|
2378
2380
|
}
|
|
2379
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFileUploadCard, decorators: [{
|
|
2380
2382
|
type: Component,
|
|
2381
2383
|
args: [{
|
|
2382
2384
|
standalone: true,
|
|
@@ -2397,7 +2399,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2397
2399
|
}`,
|
|
2398
2400
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2399
2401
|
}]
|
|
2400
|
-
}],
|
|
2402
|
+
}], propDecorators: { filename: [{
|
|
2401
2403
|
type: Input,
|
|
2402
2404
|
args: [{ required: true }]
|
|
2403
2405
|
}], size: [{
|
|
@@ -2419,9 +2421,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2419
2421
|
}] } });
|
|
2420
2422
|
|
|
2421
2423
|
class GoabFileUploadInput extends GoabBaseComponent {
|
|
2422
|
-
constructor(
|
|
2423
|
-
super();
|
|
2424
|
-
this.cdr =
|
|
2424
|
+
constructor() {
|
|
2425
|
+
super(...arguments);
|
|
2426
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2425
2427
|
this.id = "";
|
|
2426
2428
|
this.maxFileSize = "5MB";
|
|
2427
2429
|
this.onSelectFile = new EventEmitter();
|
|
@@ -2443,8 +2445,8 @@ class GoabFileUploadInput extends GoabBaseComponent {
|
|
|
2443
2445
|
};
|
|
2444
2446
|
this.onSelectFile.emit(detail);
|
|
2445
2447
|
}
|
|
2446
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2447
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
2448
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFileUploadInput, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2449
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabFileUploadInput, isStandalone: true, selector: "goab-file-upload-input", inputs: { id: "id", variant: "variant", maxFileSize: "maxFileSize", accept: "accept" }, outputs: { onSelectFile: "onSelectFile" }, usesInheritance: true, ngImport: i0, template: `@if (isReady) {
|
|
2448
2450
|
<goa-file-upload-input
|
|
2449
2451
|
[attr.version]="version"
|
|
2450
2452
|
[attr.variant]="variant"
|
|
@@ -2461,7 +2463,7 @@ class GoabFileUploadInput extends GoabBaseComponent {
|
|
|
2461
2463
|
</goa-file-upload-input>
|
|
2462
2464
|
}`, isInline: true }); }
|
|
2463
2465
|
}
|
|
2464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2466
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFileUploadInput, decorators: [{
|
|
2465
2467
|
type: Component,
|
|
2466
2468
|
args: [{
|
|
2467
2469
|
standalone: true,
|
|
@@ -2484,7 +2486,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2484
2486
|
}`,
|
|
2485
2487
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2486
2488
|
}]
|
|
2487
|
-
}],
|
|
2489
|
+
}], propDecorators: { id: [{
|
|
2488
2490
|
type: Input
|
|
2489
2491
|
}], variant: [{
|
|
2490
2492
|
type: Input,
|
|
@@ -2498,9 +2500,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2498
2500
|
}] } });
|
|
2499
2501
|
|
|
2500
2502
|
class GoabFilterChip extends GoabBaseComponent {
|
|
2501
|
-
constructor(
|
|
2502
|
-
super();
|
|
2503
|
-
this.cdr =
|
|
2503
|
+
constructor() {
|
|
2504
|
+
super(...arguments);
|
|
2505
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2504
2506
|
this.content = "";
|
|
2505
2507
|
this.secondaryText = "";
|
|
2506
2508
|
this.leadingIcon = null;
|
|
@@ -2519,8 +2521,8 @@ class GoabFilterChip extends GoabBaseComponent {
|
|
|
2519
2521
|
_onClick() {
|
|
2520
2522
|
this.onClick.emit();
|
|
2521
2523
|
}
|
|
2522
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2523
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
2524
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFilterChip, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2525
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabFilterChip, isStandalone: true, selector: "goab-filter-chip", inputs: { error: ["error", "error", booleanAttribute], deletable: ["deletable", "deletable", booleanAttribute], content: "content", iconTheme: "iconTheme", secondaryText: "secondaryText", leadingIcon: "leadingIcon" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `@if (isReady) {
|
|
2524
2526
|
<goa-filter-chip
|
|
2525
2527
|
[attr.version]="version"
|
|
2526
2528
|
[attr.error]="error"
|
|
@@ -2539,7 +2541,7 @@ class GoabFilterChip extends GoabBaseComponent {
|
|
|
2539
2541
|
</goa-filter-chip>
|
|
2540
2542
|
}`, isInline: true }); }
|
|
2541
2543
|
}
|
|
2542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2544
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFilterChip, decorators: [{
|
|
2543
2545
|
type: Component,
|
|
2544
2546
|
args: [{
|
|
2545
2547
|
standalone: true,
|
|
@@ -2564,7 +2566,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2564
2566
|
}`,
|
|
2565
2567
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2566
2568
|
}]
|
|
2567
|
-
}],
|
|
2569
|
+
}], propDecorators: { error: [{
|
|
2568
2570
|
type: Input,
|
|
2569
2571
|
args: [{ transform: booleanAttribute }]
|
|
2570
2572
|
}], deletable: [{
|
|
@@ -2583,8 +2585,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2583
2585
|
}] } });
|
|
2584
2586
|
|
|
2585
2587
|
class GoabAppFooter {
|
|
2586
|
-
constructor(
|
|
2587
|
-
this.cdr =
|
|
2588
|
+
constructor() {
|
|
2589
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2588
2590
|
this.isReady = false;
|
|
2589
2591
|
this.version = "2";
|
|
2590
2592
|
}
|
|
@@ -2596,8 +2598,8 @@ class GoabAppFooter {
|
|
|
2596
2598
|
this.cdr.detectChanges();
|
|
2597
2599
|
}, 0);
|
|
2598
2600
|
}
|
|
2599
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2600
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
2601
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooter, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2602
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabAppFooter, isStandalone: true, selector: "goab-app-footer", inputs: { maxContentWidth: "maxContentWidth", testId: "testId", url: "url" }, ngImport: i0, template: `@if (isReady) {
|
|
2601
2603
|
<goa-app-footer
|
|
2602
2604
|
[attr.maxcontentwidth]="maxContentWidth"
|
|
2603
2605
|
[attr.url]="url"
|
|
@@ -2610,7 +2612,7 @@ class GoabAppFooter {
|
|
|
2610
2612
|
</goa-app-footer>
|
|
2611
2613
|
}`, isInline: true }); }
|
|
2612
2614
|
}
|
|
2613
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2615
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooter, decorators: [{
|
|
2614
2616
|
type: Component,
|
|
2615
2617
|
args: [{
|
|
2616
2618
|
standalone: true,
|
|
@@ -2629,7 +2631,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2629
2631
|
}`,
|
|
2630
2632
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2631
2633
|
}]
|
|
2632
|
-
}],
|
|
2634
|
+
}], propDecorators: { maxContentWidth: [{
|
|
2633
2635
|
type: Input
|
|
2634
2636
|
}], testId: [{
|
|
2635
2637
|
type: Input
|
|
@@ -2638,8 +2640,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2638
2640
|
}] } });
|
|
2639
2641
|
|
|
2640
2642
|
class GoabAppFooterMetaSection {
|
|
2641
|
-
constructor(
|
|
2642
|
-
this.cdr =
|
|
2643
|
+
constructor() {
|
|
2644
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2643
2645
|
this.isReady = false;
|
|
2644
2646
|
}
|
|
2645
2647
|
ngOnInit() {
|
|
@@ -2650,21 +2652,21 @@ class GoabAppFooterMetaSection {
|
|
|
2650
2652
|
this.cdr.detectChanges();
|
|
2651
2653
|
}, 0);
|
|
2652
2654
|
}
|
|
2653
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2654
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
2655
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooterMetaSection, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2656
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabAppFooterMetaSection, isStandalone: true, selector: "goab-app-footer-meta-section", inputs: { testId: "testId", slot: "slot" }, ngImport: i0, template: `@if (isReady) {
|
|
2655
2657
|
<goa-app-footer-meta-section [attr.testid]="testId">
|
|
2656
2658
|
<ng-content />
|
|
2657
2659
|
</goa-app-footer-meta-section>
|
|
2658
2660
|
}`, isInline: true, styles: [":host{width:100%}\n"] }); }
|
|
2659
2661
|
}
|
|
2660
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2662
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooterMetaSection, decorators: [{
|
|
2661
2663
|
type: Component,
|
|
2662
2664
|
args: [{ standalone: true, selector: "goab-app-footer-meta-section", template: `@if (isReady) {
|
|
2663
2665
|
<goa-app-footer-meta-section [attr.testid]="testId">
|
|
2664
2666
|
<ng-content />
|
|
2665
2667
|
</goa-app-footer-meta-section>
|
|
2666
2668
|
}`, schemas: [CUSTOM_ELEMENTS_SCHEMA], styles: [":host{width:100%}\n"] }]
|
|
2667
|
-
}],
|
|
2669
|
+
}], propDecorators: { testId: [{
|
|
2668
2670
|
type: Input
|
|
2669
2671
|
}], slot: [{
|
|
2670
2672
|
type: Input,
|
|
@@ -2672,8 +2674,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2672
2674
|
}] } });
|
|
2673
2675
|
|
|
2674
2676
|
class GoabAppFooterNavSection {
|
|
2675
|
-
constructor(
|
|
2676
|
-
this.cdr =
|
|
2677
|
+
constructor() {
|
|
2678
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2677
2679
|
this.maxColumnCount = 1;
|
|
2678
2680
|
this.isReady = false;
|
|
2679
2681
|
}
|
|
@@ -2685,8 +2687,8 @@ class GoabAppFooterNavSection {
|
|
|
2685
2687
|
this.cdr.detectChanges();
|
|
2686
2688
|
}, 0);
|
|
2687
2689
|
}
|
|
2688
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2689
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
2690
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooterNavSection, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2691
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabAppFooterNavSection, isStandalone: true, selector: "goab-app-footer-nav-section", inputs: { heading: "heading", maxColumnCount: "maxColumnCount", testId: "testId", slot: "slot" }, ngImport: i0, template: `@if (isReady) {
|
|
2690
2692
|
<goa-app-footer-nav-section
|
|
2691
2693
|
[attr.maxcolumncount]="maxColumnCount"
|
|
2692
2694
|
[attr.heading]="heading"
|
|
@@ -2696,7 +2698,7 @@ class GoabAppFooterNavSection {
|
|
|
2696
2698
|
</goa-app-footer-nav-section>
|
|
2697
2699
|
}`, isInline: true, styles: [":host{width:100%}\n"] }); }
|
|
2698
2700
|
}
|
|
2699
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2701
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooterNavSection, decorators: [{
|
|
2700
2702
|
type: Component,
|
|
2701
2703
|
args: [{ standalone: true, selector: "goab-app-footer-nav-section", template: `@if (isReady) {
|
|
2702
2704
|
<goa-app-footer-nav-section
|
|
@@ -2707,7 +2709,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2707
2709
|
<ng-content />
|
|
2708
2710
|
</goa-app-footer-nav-section>
|
|
2709
2711
|
}`, schemas: [CUSTOM_ELEMENTS_SCHEMA], styles: [":host{width:100%}\n"] }]
|
|
2710
|
-
}],
|
|
2712
|
+
}], propDecorators: { heading: [{
|
|
2711
2713
|
type: Input
|
|
2712
2714
|
}], maxColumnCount: [{
|
|
2713
2715
|
type: Input
|
|
@@ -2736,8 +2738,8 @@ class GoabPublicForm {
|
|
|
2736
2738
|
const detail = e.detail;
|
|
2737
2739
|
this.onStateChange.emit(detail.data);
|
|
2738
2740
|
}
|
|
2739
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2740
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
2741
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicForm, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2742
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabPublicForm, isStandalone: true, selector: "goab-public-form", inputs: { status: "status", name: "name" }, outputs: { onInit: "onInit", onComplete: "onComplete", onStateChange: "onStateChange" }, ngImport: i0, template: `
|
|
2741
2743
|
<goa-public-form
|
|
2742
2744
|
[attr.status]="status"
|
|
2743
2745
|
[attr.name]="name"
|
|
@@ -2749,7 +2751,7 @@ class GoabPublicForm {
|
|
|
2749
2751
|
</goa-public-form>
|
|
2750
2752
|
`, isInline: true }); }
|
|
2751
2753
|
}
|
|
2752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2754
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicForm, decorators: [{
|
|
2753
2755
|
type: Component,
|
|
2754
2756
|
args: [{
|
|
2755
2757
|
selector: "goab-public-form",
|
|
@@ -2799,8 +2801,8 @@ class GoabPublicFormPage extends GoabBaseComponent {
|
|
|
2799
2801
|
_onContinue(event) {
|
|
2800
2802
|
this.onContinue.emit(event);
|
|
2801
2803
|
}
|
|
2802
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2803
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
2804
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormPage, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2805
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabPublicFormPage, isStandalone: true, selector: "goab-public-form-page", inputs: { id: "id", heading: "heading", subHeading: "subHeading", summaryHeading: "summaryHeading", sectionTitle: "sectionTitle", backUrl: "backUrl", type: "type", buttonText: "buttonText", buttonVisibility: "buttonVisibility" }, outputs: { onContinue: "onContinue" }, usesInheritance: true, ngImport: i0, template: `
|
|
2804
2806
|
<goa-public-form-page
|
|
2805
2807
|
[id]="id"
|
|
2806
2808
|
[attr.heading]="heading"
|
|
@@ -2821,7 +2823,7 @@ class GoabPublicFormPage extends GoabBaseComponent {
|
|
|
2821
2823
|
</goa-public-form-page>
|
|
2822
2824
|
`, isInline: true }); }
|
|
2823
2825
|
}
|
|
2824
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormPage, decorators: [{
|
|
2825
2827
|
type: Component,
|
|
2826
2828
|
args: [{
|
|
2827
2829
|
selector: "goab-public-form-page",
|
|
@@ -2871,14 +2873,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2871
2873
|
}] } });
|
|
2872
2874
|
|
|
2873
2875
|
class GoabPublicFormSummary {
|
|
2874
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2875
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
2876
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormSummary, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2877
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabPublicFormSummary, isStandalone: true, selector: "goab-public-form-summary", inputs: { heading: "heading" }, ngImport: i0, template: `
|
|
2876
2878
|
<goa-public-form-summary [attr.heading]="heading">
|
|
2877
2879
|
<ng-content />
|
|
2878
2880
|
</goa-public-form-summary>
|
|
2879
2881
|
`, isInline: true }); }
|
|
2880
2882
|
}
|
|
2881
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormSummary, decorators: [{
|
|
2882
2884
|
type: Component,
|
|
2883
2885
|
args: [{
|
|
2884
2886
|
selector: "goab-public-form-summary",
|
|
@@ -2909,8 +2911,8 @@ class GoabPublicSubform extends GoabBaseComponent {
|
|
|
2909
2911
|
_onStateChange(e) {
|
|
2910
2912
|
this.onStateChange.emit(e);
|
|
2911
2913
|
}
|
|
2912
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2913
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
2914
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicSubform, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2915
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabPublicSubform, isStandalone: true, selector: "goab-public-subform", inputs: { id: "id", name: "name", continueMsg: "continueMsg" }, outputs: { onInit: "onInit", onStateChange: "onStateChange" }, usesInheritance: true, ngImport: i0, template: `
|
|
2914
2916
|
<goa-public-subform
|
|
2915
2917
|
[attr.id]="id"
|
|
2916
2918
|
[attr.name]="name"
|
|
@@ -2926,7 +2928,7 @@ class GoabPublicSubform extends GoabBaseComponent {
|
|
|
2926
2928
|
</goa-public-subform>
|
|
2927
2929
|
`, isInline: true }); }
|
|
2928
2930
|
}
|
|
2929
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2931
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicSubform, decorators: [{
|
|
2930
2932
|
type: Component,
|
|
2931
2933
|
args: [{
|
|
2932
2934
|
selector: "goab-public-subform",
|
|
@@ -2968,8 +2970,8 @@ class GoabPublicSubformIndex extends GoabBaseComponent {
|
|
|
2968
2970
|
this.actionButtonText = "";
|
|
2969
2971
|
this.buttonVisibility = "hidden";
|
|
2970
2972
|
}
|
|
2971
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
2972
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
2973
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicSubformIndex, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2974
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabPublicSubformIndex, isStandalone: true, selector: "goab-public-subform-index", inputs: { heading: "heading", sectionTitle: "sectionTitle", actionButtonText: "actionButtonText", buttonVisibility: "buttonVisibility" }, host: { attributes: { "slot": "subform-index" } }, usesInheritance: true, ngImport: i0, template: `
|
|
2973
2975
|
<goa-public-subform-index
|
|
2974
2976
|
[attr.heading]="heading"
|
|
2975
2977
|
[attr.section-title]="sectionTitle"
|
|
@@ -2984,7 +2986,7 @@ class GoabPublicSubformIndex extends GoabBaseComponent {
|
|
|
2984
2986
|
</goa-public-subform-index>
|
|
2985
2987
|
`, isInline: true }); }
|
|
2986
2988
|
}
|
|
2987
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2989
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicSubformIndex, decorators: [{
|
|
2988
2990
|
type: Component,
|
|
2989
2991
|
args: [{
|
|
2990
2992
|
selector: "goab-public-subform-index",
|
|
@@ -3019,14 +3021,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3019
3021
|
}] } });
|
|
3020
3022
|
|
|
3021
3023
|
class GoabPublicFormTask {
|
|
3022
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3023
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
3024
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormTask, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3025
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabPublicFormTask, isStandalone: true, selector: "goab-public-form-task", inputs: { status: "status" }, ngImport: i0, template: `
|
|
3024
3026
|
<goa-public-form-task [attr.status]="status">
|
|
3025
3027
|
<ng-content />
|
|
3026
3028
|
</goa-public-form-task>
|
|
3027
3029
|
`, isInline: true }); }
|
|
3028
3030
|
}
|
|
3029
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormTask, decorators: [{
|
|
3030
3032
|
type: Component,
|
|
3031
3033
|
args: [{
|
|
3032
3034
|
selector: "goab-public-form-task",
|
|
@@ -3043,8 +3045,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3043
3045
|
}] } });
|
|
3044
3046
|
|
|
3045
3047
|
class GoabPublicFormTaskList extends GoabBaseComponent {
|
|
3046
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3047
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
3048
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormTaskList, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3049
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabPublicFormTaskList, isStandalone: true, selector: "goab-public-form-task-list", inputs: { heading: "heading" }, usesInheritance: true, ngImport: i0, template: `
|
|
3048
3050
|
<goa-public-form-task-list
|
|
3049
3051
|
[attr.heading]="heading"
|
|
3050
3052
|
[attr.mt]="mt"
|
|
@@ -3056,7 +3058,7 @@ class GoabPublicFormTaskList extends GoabBaseComponent {
|
|
|
3056
3058
|
</goa-public-form-task-list>
|
|
3057
3059
|
`, isInline: true }); }
|
|
3058
3060
|
}
|
|
3059
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormTaskList, decorators: [{
|
|
3060
3062
|
type: Component,
|
|
3061
3063
|
args: [{
|
|
3062
3064
|
selector: "goab-public-form-task-list",
|
|
@@ -3087,8 +3089,8 @@ class GoabFieldset {
|
|
|
3087
3089
|
const detail = event.detail;
|
|
3088
3090
|
this.onContinue.emit(detail);
|
|
3089
3091
|
}
|
|
3090
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3091
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
3092
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFieldset, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3093
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabFieldset, isStandalone: true, selector: "goab-fieldset", inputs: { id: "id", sectionTitle: "sectionTitle", dispatchOn: "dispatchOn" }, outputs: { onContinue: "onContinue" }, ngImport: i0, template: ` <goa-fieldset
|
|
3092
3094
|
[attr.section-title]="sectionTitle"
|
|
3093
3095
|
[attr.dispatch-on]="dispatchOn"
|
|
3094
3096
|
[attr.id]="id"
|
|
@@ -3097,7 +3099,7 @@ class GoabFieldset {
|
|
|
3097
3099
|
<ng-content></ng-content>
|
|
3098
3100
|
</goa-fieldset>`, isInline: true }); }
|
|
3099
3101
|
}
|
|
3100
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3102
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFieldset, decorators: [{
|
|
3101
3103
|
type: Component,
|
|
3102
3104
|
args: [{
|
|
3103
3105
|
selector: "goab-fieldset",
|
|
@@ -3123,9 +3125,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3123
3125
|
}] } });
|
|
3124
3126
|
|
|
3125
3127
|
class GoabFormItem extends GoabBaseComponent {
|
|
3126
|
-
constructor(
|
|
3127
|
-
super();
|
|
3128
|
-
this.cdr =
|
|
3128
|
+
constructor() {
|
|
3129
|
+
super(...arguments);
|
|
3130
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3129
3131
|
this.type = "";
|
|
3130
3132
|
this.isReady = false;
|
|
3131
3133
|
this.version = "2";
|
|
@@ -3138,8 +3140,8 @@ class GoabFormItem extends GoabBaseComponent {
|
|
|
3138
3140
|
this.cdr.detectChanges();
|
|
3139
3141
|
}, 0);
|
|
3140
3142
|
}
|
|
3141
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3142
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
3143
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormItem, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3144
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabFormItem, isStandalone: true, selector: "goab-form-item", inputs: { label: "label", labelSize: "labelSize", helpText: "helpText", error: "error", requirement: "requirement", maxWidth: "maxWidth", id: "id", type: "type", publicFormSummaryOrder: "publicFormSummaryOrder", name: "name" }, usesInheritance: true, ngImport: i0, template: `@if (isReady) {
|
|
3143
3145
|
<goa-form-item
|
|
3144
3146
|
[attr.version]="version"
|
|
3145
3147
|
[attr.label]="label"
|
|
@@ -3163,7 +3165,7 @@ class GoabFormItem extends GoabBaseComponent {
|
|
|
3163
3165
|
</goa-form-item>
|
|
3164
3166
|
}`, isInline: true }); }
|
|
3165
3167
|
}
|
|
3166
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3168
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormItem, decorators: [{
|
|
3167
3169
|
type: Component,
|
|
3168
3170
|
args: [{
|
|
3169
3171
|
standalone: true,
|
|
@@ -3193,7 +3195,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3193
3195
|
}`,
|
|
3194
3196
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3195
3197
|
}]
|
|
3196
|
-
}],
|
|
3198
|
+
}], propDecorators: { label: [{
|
|
3197
3199
|
type: Input
|
|
3198
3200
|
}], labelSize: [{
|
|
3199
3201
|
type: Input
|
|
@@ -3222,10 +3224,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3222
3224
|
* // similar to app-footer-meta-section & app-footer-nav-section
|
|
3223
3225
|
*/
|
|
3224
3226
|
class GoabFormItemSlot {
|
|
3225
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3226
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
3227
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormItemSlot, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3228
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabFormItemSlot, isStandalone: true, selector: "goab-form-item-slot", inputs: { slot: "slot" }, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true }); }
|
|
3227
3229
|
}
|
|
3228
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormItemSlot, decorators: [{
|
|
3229
3231
|
type: Component,
|
|
3230
3232
|
args: [{
|
|
3231
3233
|
standalone: true,
|
|
@@ -3238,8 +3240,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3238
3240
|
}] } });
|
|
3239
3241
|
|
|
3240
3242
|
class GoabFormStep {
|
|
3241
|
-
constructor(
|
|
3242
|
-
this.cdr =
|
|
3243
|
+
constructor() {
|
|
3244
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3243
3245
|
this.isReady = false;
|
|
3244
3246
|
}
|
|
3245
3247
|
ngOnInit() {
|
|
@@ -3248,14 +3250,14 @@ class GoabFormStep {
|
|
|
3248
3250
|
this.cdr.detectChanges();
|
|
3249
3251
|
});
|
|
3250
3252
|
}
|
|
3251
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3252
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
3253
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormStep, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3254
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabFormStep, isStandalone: true, selector: "goab-form-step", inputs: { text: "text", status: "status" }, ngImport: i0, template: `
|
|
3253
3255
|
@if (isReady) {
|
|
3254
3256
|
<goa-form-step [attr.text]="text" [attr.status]="status"></goa-form-step>
|
|
3255
3257
|
}
|
|
3256
3258
|
`, isInline: true }); }
|
|
3257
3259
|
}
|
|
3258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormStep, decorators: [{
|
|
3259
3261
|
type: Component,
|
|
3260
3262
|
args: [{
|
|
3261
3263
|
standalone: true,
|
|
@@ -3267,16 +3269,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3267
3269
|
`,
|
|
3268
3270
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3269
3271
|
}]
|
|
3270
|
-
}],
|
|
3272
|
+
}], propDecorators: { text: [{
|
|
3271
3273
|
type: Input
|
|
3272
3274
|
}], status: [{
|
|
3273
3275
|
type: Input
|
|
3274
3276
|
}] } });
|
|
3275
3277
|
|
|
3276
3278
|
class GoabFormStepper extends GoabBaseComponent {
|
|
3277
|
-
constructor(
|
|
3278
|
-
super();
|
|
3279
|
-
this.cdr =
|
|
3279
|
+
constructor() {
|
|
3280
|
+
super(...arguments);
|
|
3281
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3280
3282
|
this.step = -1;
|
|
3281
3283
|
this.onChange = new EventEmitter();
|
|
3282
3284
|
this.isReady = false;
|
|
@@ -3291,8 +3293,8 @@ class GoabFormStepper extends GoabBaseComponent {
|
|
|
3291
3293
|
const detail = e.detail;
|
|
3292
3294
|
this.onChange.emit(detail);
|
|
3293
3295
|
}
|
|
3294
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3295
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
3296
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormStepper, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3297
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabFormStepper, isStandalone: true, selector: "goab-form-stepper", inputs: { step: "step" }, outputs: { onChange: "onChange" }, usesInheritance: true, ngImport: i0, template: `
|
|
3296
3298
|
@if (isReady) {
|
|
3297
3299
|
<goa-form-stepper
|
|
3298
3300
|
[attr.step]="step"
|
|
@@ -3308,7 +3310,7 @@ class GoabFormStepper extends GoabBaseComponent {
|
|
|
3308
3310
|
}
|
|
3309
3311
|
`, isInline: true }); }
|
|
3310
3312
|
}
|
|
3311
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3313
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormStepper, decorators: [{
|
|
3312
3314
|
type: Component,
|
|
3313
3315
|
args: [{
|
|
3314
3316
|
standalone: true,
|
|
@@ -3330,16 +3332,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3330
3332
|
`,
|
|
3331
3333
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3332
3334
|
}]
|
|
3333
|
-
}],
|
|
3335
|
+
}], propDecorators: { step: [{
|
|
3334
3336
|
type: Input
|
|
3335
3337
|
}], onChange: [{
|
|
3336
3338
|
type: Output
|
|
3337
3339
|
}] } });
|
|
3338
3340
|
|
|
3339
3341
|
class GoabGrid extends GoabBaseComponent {
|
|
3340
|
-
constructor(
|
|
3341
|
-
super();
|
|
3342
|
-
this.cdr =
|
|
3342
|
+
constructor() {
|
|
3343
|
+
super(...arguments);
|
|
3344
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3343
3345
|
this.isReady = false;
|
|
3344
3346
|
}
|
|
3345
3347
|
ngOnInit() {
|
|
@@ -3348,8 +3350,8 @@ class GoabGrid extends GoabBaseComponent {
|
|
|
3348
3350
|
this.cdr.detectChanges();
|
|
3349
3351
|
});
|
|
3350
3352
|
}
|
|
3351
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3352
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
3353
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabGrid, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3354
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabGrid, isStandalone: true, selector: "goab-grid", inputs: { minChildWidth: "minChildWidth", gap: "gap" }, usesInheritance: true, ngImport: i0, template: `
|
|
3353
3355
|
@if (isReady) {
|
|
3354
3356
|
<goa-grid
|
|
3355
3357
|
[attr.gap]="gap"
|
|
@@ -3365,7 +3367,7 @@ class GoabGrid extends GoabBaseComponent {
|
|
|
3365
3367
|
}
|
|
3366
3368
|
`, isInline: true }); }
|
|
3367
3369
|
}
|
|
3368
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabGrid, decorators: [{
|
|
3369
3371
|
type: Component,
|
|
3370
3372
|
args: [{
|
|
3371
3373
|
standalone: true,
|
|
@@ -3387,7 +3389,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3387
3389
|
`,
|
|
3388
3390
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3389
3391
|
}]
|
|
3390
|
-
}],
|
|
3392
|
+
}], propDecorators: { minChildWidth: [{
|
|
3391
3393
|
type: Input,
|
|
3392
3394
|
args: [{ required: true }]
|
|
3393
3395
|
}], gap: [{
|
|
@@ -3395,9 +3397,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3395
3397
|
}] } });
|
|
3396
3398
|
|
|
3397
3399
|
class GoabAppHeader extends GoabBaseComponent {
|
|
3398
|
-
constructor(
|
|
3399
|
-
super();
|
|
3400
|
-
this.cdr =
|
|
3400
|
+
constructor() {
|
|
3401
|
+
super(...arguments);
|
|
3402
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3401
3403
|
this.isReady = false;
|
|
3402
3404
|
this.version = "2";
|
|
3403
3405
|
this.onMenuClick = new EventEmitter();
|
|
@@ -3411,8 +3413,8 @@ class GoabAppHeader extends GoabBaseComponent {
|
|
|
3411
3413
|
_onMenuClick() {
|
|
3412
3414
|
this.onMenuClick.emit();
|
|
3413
3415
|
}
|
|
3414
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3415
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
3416
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppHeader, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3417
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabAppHeader, isStandalone: true, selector: "goab-app-header", inputs: { url: "url", heading: "heading", secondaryText: "secondaryText", maxContentWidth: "maxContentWidth", fullMenuBreakpoint: ["fullMenuBreakpoint", "fullMenuBreakpoint", numberAttribute] }, outputs: { onMenuClick: "onMenuClick" }, usesInheritance: true, ngImport: i0, template: `@if (isReady) {
|
|
3416
3418
|
<goa-app-header
|
|
3417
3419
|
[attr.url]="url"
|
|
3418
3420
|
[attr.heading]="heading"
|
|
@@ -3428,7 +3430,7 @@ class GoabAppHeader extends GoabBaseComponent {
|
|
|
3428
3430
|
</goa-app-header>
|
|
3429
3431
|
}`, isInline: true }); }
|
|
3430
3432
|
}
|
|
3431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppHeader, decorators: [{
|
|
3432
3434
|
type: Component,
|
|
3433
3435
|
args: [{
|
|
3434
3436
|
standalone: true,
|
|
@@ -3450,7 +3452,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3450
3452
|
}`,
|
|
3451
3453
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3452
3454
|
}]
|
|
3453
|
-
}],
|
|
3455
|
+
}], propDecorators: { url: [{
|
|
3454
3456
|
type: Input
|
|
3455
3457
|
}], heading: [{
|
|
3456
3458
|
type: Input
|
|
@@ -3466,22 +3468,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3466
3468
|
}] } });
|
|
3467
3469
|
|
|
3468
3470
|
class GoabAppHeaderMenu extends GoabBaseComponent {
|
|
3471
|
+
constructor() {
|
|
3472
|
+
super(...arguments);
|
|
3473
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3474
|
+
this.isReady = false;
|
|
3475
|
+
}
|
|
3469
3476
|
get hostSlot() {
|
|
3470
3477
|
return this.slotName ?? null;
|
|
3471
3478
|
}
|
|
3472
|
-
constructor(cdr) {
|
|
3473
|
-
super();
|
|
3474
|
-
this.cdr = cdr;
|
|
3475
|
-
this.isReady = false;
|
|
3476
|
-
}
|
|
3477
3479
|
ngOnInit() {
|
|
3478
3480
|
setTimeout(() => {
|
|
3479
3481
|
this.isReady = true;
|
|
3480
3482
|
this.cdr.detectChanges();
|
|
3481
3483
|
}, 0);
|
|
3482
3484
|
}
|
|
3483
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3484
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
3485
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppHeaderMenu, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3486
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabAppHeaderMenu, isStandalone: true, selector: "goab-app-header-menu", inputs: { leadingIcon: "leadingIcon", heading: "heading", slotName: "slotName" }, host: { properties: { "attr.slot": "this.hostSlot" } }, usesInheritance: true, ngImport: i0, template: `@if (isReady) {
|
|
3485
3487
|
<goa-app-header-menu
|
|
3486
3488
|
[attr.leadingicon]="leadingIcon"
|
|
3487
3489
|
[attr.heading]="heading"
|
|
@@ -3491,7 +3493,7 @@ class GoabAppHeaderMenu extends GoabBaseComponent {
|
|
|
3491
3493
|
</goa-app-header-menu>
|
|
3492
3494
|
}`, isInline: true }); }
|
|
3493
3495
|
}
|
|
3494
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppHeaderMenu, decorators: [{
|
|
3495
3497
|
type: Component,
|
|
3496
3498
|
args: [{
|
|
3497
3499
|
standalone: true,
|
|
@@ -3507,7 +3509,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3507
3509
|
}`,
|
|
3508
3510
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3509
3511
|
}]
|
|
3510
|
-
}],
|
|
3512
|
+
}], propDecorators: { leadingIcon: [{
|
|
3511
3513
|
type: Input
|
|
3512
3514
|
}], heading: [{
|
|
3513
3515
|
type: Input
|
|
@@ -3519,8 +3521,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3519
3521
|
}] } });
|
|
3520
3522
|
|
|
3521
3523
|
class GoabHeroBanner {
|
|
3522
|
-
constructor(
|
|
3523
|
-
this.cdr =
|
|
3524
|
+
constructor() {
|
|
3525
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3524
3526
|
this.isReady = false;
|
|
3525
3527
|
}
|
|
3526
3528
|
ngOnInit() {
|
|
@@ -3529,8 +3531,8 @@ class GoabHeroBanner {
|
|
|
3529
3531
|
this.cdr.detectChanges();
|
|
3530
3532
|
});
|
|
3531
3533
|
}
|
|
3532
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3533
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
3534
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabHeroBanner, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3535
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabHeroBanner, isStandalone: true, selector: "goab-hero-banner", inputs: { heading: "heading", backgroundUrl: "backgroundUrl", minHeight: "minHeight", testId: "testId", maxContentWidth: "maxContentWidth", backgroundColor: "backgroundColor", textColor: "textColor", actions: "actions" }, ngImport: i0, template: `
|
|
3534
3536
|
@if (isReady) {
|
|
3535
3537
|
<goa-hero-banner
|
|
3536
3538
|
[attr.heading]="heading"
|
|
@@ -3549,7 +3551,7 @@ class GoabHeroBanner {
|
|
|
3549
3551
|
}
|
|
3550
3552
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
3551
3553
|
}
|
|
3552
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabHeroBanner, decorators: [{
|
|
3553
3555
|
type: Component,
|
|
3554
3556
|
args: [{
|
|
3555
3557
|
standalone: true,
|
|
@@ -3575,7 +3577,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3575
3577
|
`,
|
|
3576
3578
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3577
3579
|
}]
|
|
3578
|
-
}],
|
|
3580
|
+
}], propDecorators: { heading: [{
|
|
3579
3581
|
type: Input
|
|
3580
3582
|
}], backgroundUrl: [{
|
|
3581
3583
|
type: Input
|
|
@@ -3594,9 +3596,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3594
3596
|
}] } });
|
|
3595
3597
|
|
|
3596
3598
|
class GoabIcon extends GoabBaseComponent {
|
|
3597
|
-
constructor(
|
|
3598
|
-
super();
|
|
3599
|
-
this.cdr =
|
|
3599
|
+
constructor() {
|
|
3600
|
+
super(...arguments);
|
|
3601
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3600
3602
|
this.isReady = false;
|
|
3601
3603
|
}
|
|
3602
3604
|
ngOnInit() {
|
|
@@ -3607,8 +3609,8 @@ class GoabIcon extends GoabBaseComponent {
|
|
|
3607
3609
|
this.cdr.detectChanges();
|
|
3608
3610
|
}, 0);
|
|
3609
3611
|
}
|
|
3610
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3611
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
3612
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabIcon, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3613
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabIcon, isStandalone: true, selector: "goab-icon", inputs: { type: "type", size: "size", theme: "theme", inverted: ["inverted", "inverted", booleanAttribute], fillColor: "fillColor", opacity: ["opacity", "opacity", numberAttribute], title: "title", ariaLabel: "ariaLabel" }, usesInheritance: true, ngImport: i0, template: `
|
|
3612
3614
|
@if (isReady) {
|
|
3613
3615
|
<goa-icon
|
|
3614
3616
|
[attr.type]="type"
|
|
@@ -3629,7 +3631,7 @@ class GoabIcon extends GoabBaseComponent {
|
|
|
3629
3631
|
}
|
|
3630
3632
|
`, isInline: true, styles: [":host{display:inline-flex;align-items:center}\n"] }); }
|
|
3631
3633
|
}
|
|
3632
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3634
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabIcon, decorators: [{
|
|
3633
3635
|
type: Component,
|
|
3634
3636
|
args: [{ standalone: true, selector: "goab-icon", template: `
|
|
3635
3637
|
@if (isReady) {
|
|
@@ -3651,7 +3653,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3651
3653
|
</goa-icon>
|
|
3652
3654
|
}
|
|
3653
3655
|
`, schemas: [CUSTOM_ELEMENTS_SCHEMA], styles: [":host{display:inline-flex;align-items:center}\n"] }]
|
|
3654
|
-
}],
|
|
3656
|
+
}], propDecorators: { type: [{
|
|
3655
3657
|
type: Input,
|
|
3656
3658
|
args: [{ required: true }]
|
|
3657
3659
|
}], size: [{
|
|
@@ -3673,9 +3675,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3673
3675
|
}] } });
|
|
3674
3676
|
|
|
3675
3677
|
class GoabIconButton extends GoabBaseComponent {
|
|
3676
|
-
constructor(
|
|
3677
|
-
super();
|
|
3678
|
-
this.cdr =
|
|
3678
|
+
constructor() {
|
|
3679
|
+
super(...arguments);
|
|
3680
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3679
3681
|
this.isReady = false;
|
|
3680
3682
|
this.JSON = JSON;
|
|
3681
3683
|
this.size = "medium";
|
|
@@ -3690,8 +3692,8 @@ class GoabIconButton extends GoabBaseComponent {
|
|
|
3690
3692
|
_onClick() {
|
|
3691
3693
|
this.onClick.emit();
|
|
3692
3694
|
}
|
|
3693
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3694
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
3695
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabIconButton, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3696
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabIconButton, isStandalone: true, selector: "goab-icon-button", inputs: { icon: "icon", size: "size", variant: "variant", title: "title", disabled: ["disabled", "disabled", booleanAttribute], ariaLabel: "ariaLabel", action: "action", actionArg: "actionArg", actionArgs: "actionArgs" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `
|
|
3695
3697
|
@if (isReady) {
|
|
3696
3698
|
<goa-icon-button
|
|
3697
3699
|
[attr.icon]="icon"
|
|
@@ -3715,7 +3717,7 @@ class GoabIconButton extends GoabBaseComponent {
|
|
|
3715
3717
|
}
|
|
3716
3718
|
`, isInline: true }); }
|
|
3717
3719
|
}
|
|
3718
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3720
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabIconButton, decorators: [{
|
|
3719
3721
|
type: Component,
|
|
3720
3722
|
args: [{
|
|
3721
3723
|
standalone: true,
|
|
@@ -3745,7 +3747,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3745
3747
|
`,
|
|
3746
3748
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3747
3749
|
}]
|
|
3748
|
-
}],
|
|
3750
|
+
}], propDecorators: { icon: [{
|
|
3749
3751
|
type: Input,
|
|
3750
3752
|
args: [{ required: true }]
|
|
3751
3753
|
}], size: [{
|
|
@@ -3770,9 +3772,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3770
3772
|
}] } });
|
|
3771
3773
|
|
|
3772
3774
|
class GoabInput extends GoabControlValueAccessor {
|
|
3773
|
-
constructor(
|
|
3774
|
-
super(
|
|
3775
|
-
this.cdr =
|
|
3775
|
+
constructor() {
|
|
3776
|
+
super(...arguments);
|
|
3777
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3776
3778
|
this.type = "text";
|
|
3777
3779
|
this.textAlign = "left";
|
|
3778
3780
|
this.size = "default";
|
|
@@ -3781,8 +3783,8 @@ class GoabInput extends GoabControlValueAccessor {
|
|
|
3781
3783
|
this.onBlur = new EventEmitter();
|
|
3782
3784
|
this.onKeyPress = new EventEmitter();
|
|
3783
3785
|
this.onChange = new EventEmitter();
|
|
3784
|
-
this.isReady = false;
|
|
3785
3786
|
this.version = "2";
|
|
3787
|
+
this.isReady = false;
|
|
3786
3788
|
this.handleTrailingIconClick = false;
|
|
3787
3789
|
}
|
|
3788
3790
|
ngOnInit() {
|
|
@@ -3839,8 +3841,8 @@ class GoabInput extends GoabControlValueAccessor {
|
|
|
3839
3841
|
return null;
|
|
3840
3842
|
return this.trailingContent instanceof TemplateRef ? this.trailingContent : null;
|
|
3841
3843
|
}
|
|
3842
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
3843
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
3844
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabInput, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3845
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabInput, isStandalone: true, selector: "goab-input", inputs: { type: "type", name: "name", debounce: ["debounce", "debounce", numberAttribute], autoCapitalize: "autoCapitalize", autoComplete: "autoComplete", placeholder: "placeholder", leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", variant: "variant", focused: ["focused", "focused", booleanAttribute], readonly: ["readonly", "readonly", booleanAttribute], width: "width", prefix: "prefix", suffix: "suffix", ariaLabel: "ariaLabel", maxLength: ["maxLength", "maxLength", numberAttribute], min: "min", max: "max", step: ["step", "step", numberAttribute], ariaLabelledBy: "ariaLabelledBy", trailingIconAriaLabel: "trailingIconAriaLabel", textAlign: "textAlign", leadingContent: "leadingContent", trailingContent: "trailingContent", size: "size" }, outputs: { onTrailingIconClick: "onTrailingIconClick", onFocus: "onFocus", onBlur: "onBlur", onKeyPress: "onKeyPress", onChange: "onChange" }, providers: [
|
|
3844
3846
|
{
|
|
3845
3847
|
provide: NG_VALUE_ACCESSOR,
|
|
3846
3848
|
multi: true,
|
|
@@ -3916,7 +3918,7 @@ class GoabInput extends GoabControlValueAccessor {
|
|
|
3916
3918
|
</goa-input>
|
|
3917
3919
|
}`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
3918
3920
|
}
|
|
3919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3921
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabInput, decorators: [{
|
|
3920
3922
|
type: Component,
|
|
3921
3923
|
args: [{
|
|
3922
3924
|
standalone: true,
|
|
@@ -4000,7 +4002,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4000
4002
|
},
|
|
4001
4003
|
],
|
|
4002
4004
|
}]
|
|
4003
|
-
}],
|
|
4005
|
+
}], propDecorators: { type: [{
|
|
4004
4006
|
type: Input
|
|
4005
4007
|
}], name: [{
|
|
4006
4008
|
type: Input
|
|
@@ -4068,8 +4070,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4068
4070
|
}] } });
|
|
4069
4071
|
|
|
4070
4072
|
class GoabInputNumber {
|
|
4071
|
-
constructor(
|
|
4072
|
-
this.cdr =
|
|
4073
|
+
constructor() {
|
|
4074
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4073
4075
|
this.isReady = false;
|
|
4074
4076
|
this.type = "number";
|
|
4075
4077
|
this.textAlign = "right"; // Default to right for numbers
|
|
@@ -4158,8 +4160,8 @@ class GoabInputNumber {
|
|
|
4158
4160
|
return null;
|
|
4159
4161
|
return this.trailingContent instanceof TemplateRef ? this.trailingContent : null;
|
|
4160
4162
|
}
|
|
4161
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
4162
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
4163
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabInputNumber, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4164
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabInputNumber, isStandalone: true, selector: "goab-input-number", inputs: { type: "type", name: "name", id: "id", debounce: ["debounce", "debounce", numberAttribute], disabled: ["disabled", "disabled", booleanAttribute], autoCapitalize: "autoCapitalize", placeholder: "placeholder", leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", variant: "variant", focused: ["focused", "focused", booleanAttribute], readonly: ["readonly", "readonly", booleanAttribute], error: ["error", "error", booleanAttribute], width: "width", prefix: "prefix", suffix: "suffix", testId: "testId", ariaLabel: "ariaLabel", maxLength: ["maxLength", "maxLength", numberAttribute], min: "min", max: "max", step: ["step", "step", numberAttribute], ariaLabelledBy: "ariaLabelledBy", mt: "mt", mr: "mr", mb: "mb", ml: "ml", trailingIconAriaLabel: "trailingIconAriaLabel", textAlign: "textAlign", value: "value", leadingContent: "leadingContent", trailingContent: "trailingContent" }, outputs: { onTrailingIconClick: "onTrailingIconClick", onFocus: "onFocus", onBlur: "onBlur", onKeyPress: "onKeyPress", onChange: "onChange" }, providers: [
|
|
4163
4165
|
{
|
|
4164
4166
|
provide: NG_VALUE_ACCESSOR,
|
|
4165
4167
|
multi: true,
|
|
@@ -4235,7 +4237,7 @@ class GoabInputNumber {
|
|
|
4235
4237
|
}
|
|
4236
4238
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
4237
4239
|
}
|
|
4238
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabInputNumber, decorators: [{
|
|
4239
4241
|
type: Component,
|
|
4240
4242
|
args: [{
|
|
4241
4243
|
standalone: true,
|
|
@@ -4319,7 +4321,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4319
4321
|
},
|
|
4320
4322
|
],
|
|
4321
4323
|
}]
|
|
4322
|
-
}],
|
|
4324
|
+
}], propDecorators: { type: [{
|
|
4323
4325
|
type: Input
|
|
4324
4326
|
}], name: [{
|
|
4325
4327
|
type: Input
|
|
@@ -4403,8 +4405,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4403
4405
|
}] } });
|
|
4404
4406
|
|
|
4405
4407
|
class GoabLinearProgress {
|
|
4406
|
-
constructor(
|
|
4407
|
-
this.cdr =
|
|
4408
|
+
constructor() {
|
|
4409
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4408
4410
|
this.isReady = false;
|
|
4409
4411
|
}
|
|
4410
4412
|
ngOnInit() {
|
|
@@ -4415,8 +4417,8 @@ class GoabLinearProgress {
|
|
|
4415
4417
|
this.cdr.detectChanges();
|
|
4416
4418
|
}, 0);
|
|
4417
4419
|
}
|
|
4418
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
4419
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
4420
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabLinearProgress, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4421
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabLinearProgress, isStandalone: true, selector: "goab-linear-progress", inputs: { progress: "progress", percentVisibility: "percentVisibility", ariaLabel: "ariaLabel", ariaLabelledBy: "ariaLabelledBy", testid: "testid" }, ngImport: i0, template: `
|
|
4420
4422
|
@if (isReady) {
|
|
4421
4423
|
<goa-linear-progress
|
|
4422
4424
|
[attr.progress]="progress"
|
|
@@ -4429,7 +4431,7 @@ class GoabLinearProgress {
|
|
|
4429
4431
|
}
|
|
4430
4432
|
`, isInline: true }); }
|
|
4431
4433
|
}
|
|
4432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabLinearProgress, decorators: [{
|
|
4433
4435
|
type: Component,
|
|
4434
4436
|
args: [{
|
|
4435
4437
|
standalone: true,
|
|
@@ -4448,7 +4450,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4448
4450
|
`,
|
|
4449
4451
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4450
4452
|
}]
|
|
4451
|
-
}],
|
|
4453
|
+
}], propDecorators: { progress: [{
|
|
4452
4454
|
type: Input
|
|
4453
4455
|
}], percentVisibility: [{
|
|
4454
4456
|
type: Input
|
|
@@ -4461,8 +4463,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4461
4463
|
}] } });
|
|
4462
4464
|
|
|
4463
4465
|
class GoabLink {
|
|
4464
|
-
constructor(
|
|
4465
|
-
this.cdr =
|
|
4466
|
+
constructor() {
|
|
4467
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4466
4468
|
this.isReady = false;
|
|
4467
4469
|
this.color = "interactive";
|
|
4468
4470
|
this.size = "medium";
|
|
@@ -4474,8 +4476,8 @@ class GoabLink {
|
|
|
4474
4476
|
this.cdr.detectChanges();
|
|
4475
4477
|
});
|
|
4476
4478
|
}
|
|
4477
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
4478
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
4479
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabLink, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4480
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabLink, isStandalone: true, selector: "goab-link", inputs: { leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", testId: "testId", action: "action", color: "color", size: "size", actionArg: "actionArg", actionArgs: "actionArgs", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
|
|
4479
4481
|
@if (isReady) {
|
|
4480
4482
|
<goa-link
|
|
4481
4483
|
[attr.leadingicon]="leadingIcon"
|
|
@@ -4496,7 +4498,7 @@ class GoabLink {
|
|
|
4496
4498
|
}
|
|
4497
4499
|
`, isInline: true }); }
|
|
4498
4500
|
}
|
|
4499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4501
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabLink, decorators: [{
|
|
4500
4502
|
type: Component,
|
|
4501
4503
|
args: [{
|
|
4502
4504
|
standalone: true,
|
|
@@ -4523,7 +4525,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4523
4525
|
`,
|
|
4524
4526
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4525
4527
|
}]
|
|
4526
|
-
}],
|
|
4528
|
+
}], propDecorators: { leadingIcon: [{
|
|
4527
4529
|
type: Input
|
|
4528
4530
|
}], trailingIcon: [{
|
|
4529
4531
|
type: Input
|
|
@@ -4550,8 +4552,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4550
4552
|
}] } });
|
|
4551
4553
|
|
|
4552
4554
|
class GoabMicrositeHeader {
|
|
4553
|
-
constructor(
|
|
4554
|
-
this.cdr =
|
|
4555
|
+
constructor() {
|
|
4556
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4555
4557
|
this.isReady = false;
|
|
4556
4558
|
this.onFeedbackClick = new EventEmitter();
|
|
4557
4559
|
}
|
|
@@ -4572,8 +4574,8 @@ class GoabMicrositeHeader {
|
|
|
4572
4574
|
_onFeedbackClick() {
|
|
4573
4575
|
this.onFeedbackClick.emit();
|
|
4574
4576
|
}
|
|
4575
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
4576
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
4577
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMicrositeHeader, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4578
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabMicrositeHeader, isStandalone: true, selector: "goab-microsite-header", inputs: { type: "type", version: "version", feedbackUrl: "feedbackUrl", testId: "testId", maxContentWidth: "maxContentWidth", feedbackUrlTarget: "feedbackUrlTarget", headerUrlTarget: "headerUrlTarget" }, outputs: { onFeedbackClick: "onFeedbackClick" }, ngImport: i0, template: `
|
|
4577
4579
|
@if (isReady) {
|
|
4578
4580
|
<goa-microsite-header
|
|
4579
4581
|
[attr.type]="type"
|
|
@@ -4593,7 +4595,7 @@ class GoabMicrositeHeader {
|
|
|
4593
4595
|
}
|
|
4594
4596
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
4595
4597
|
}
|
|
4596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4598
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMicrositeHeader, decorators: [{
|
|
4597
4599
|
type: Component,
|
|
4598
4600
|
args: [{
|
|
4599
4601
|
standalone: true,
|
|
@@ -4620,7 +4622,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4620
4622
|
imports: [NgTemplateOutlet],
|
|
4621
4623
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4622
4624
|
}]
|
|
4623
|
-
}],
|
|
4625
|
+
}], propDecorators: { type: [{
|
|
4624
4626
|
type: Input,
|
|
4625
4627
|
args: [{ required: true }]
|
|
4626
4628
|
}], version: [{
|
|
@@ -4640,8 +4642,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4640
4642
|
}] } });
|
|
4641
4643
|
|
|
4642
4644
|
class GoabModal {
|
|
4643
|
-
constructor(
|
|
4644
|
-
this.cdr =
|
|
4645
|
+
constructor() {
|
|
4646
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4645
4647
|
this.isReady = false;
|
|
4646
4648
|
this.version = "2";
|
|
4647
4649
|
this.closable = false;
|
|
@@ -4666,8 +4668,8 @@ class GoabModal {
|
|
|
4666
4668
|
_onClose() {
|
|
4667
4669
|
this.onClose.emit();
|
|
4668
4670
|
}
|
|
4669
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
4670
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
4671
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabModal, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4672
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabModal, isStandalone: true, selector: "goab-modal", inputs: { calloutVariant: "calloutVariant", open: ["open", "open", booleanAttribute], maxWidth: "maxWidth", closable: "closable", transition: "transition", testId: "testId", role: "role", heading: "heading", actions: "actions" }, outputs: { onClose: "onClose" }, ngImport: i0, template: `
|
|
4671
4673
|
@if (isReady) {
|
|
4672
4674
|
<goa-modal
|
|
4673
4675
|
[attr.version]="version"
|
|
@@ -4698,7 +4700,7 @@ class GoabModal {
|
|
|
4698
4700
|
}
|
|
4699
4701
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
4700
4702
|
}
|
|
4701
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabModal, decorators: [{
|
|
4702
4704
|
type: Component,
|
|
4703
4705
|
args: [{
|
|
4704
4706
|
standalone: true,
|
|
@@ -4736,7 +4738,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4736
4738
|
`,
|
|
4737
4739
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4738
4740
|
}]
|
|
4739
|
-
}],
|
|
4741
|
+
}], propDecorators: { calloutVariant: [{
|
|
4740
4742
|
type: Input
|
|
4741
4743
|
}], open: [{
|
|
4742
4744
|
type: Input,
|
|
@@ -4767,8 +4769,8 @@ class GoabMenuButton {
|
|
|
4767
4769
|
const detail = e.detail;
|
|
4768
4770
|
this.onAction.emit(detail);
|
|
4769
4771
|
}
|
|
4770
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
4771
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
4772
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMenuButton, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4773
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabMenuButton, isStandalone: true, selector: "goab-menu-button", inputs: { text: "text", type: "type", size: "size", variant: "variant", maxWidth: "maxWidth", leadingIcon: "leadingIcon", ariaLabel: "ariaLabel", testId: "testId" }, outputs: { onAction: "onAction" }, ngImport: i0, template: `
|
|
4772
4774
|
<goa-menu-button
|
|
4773
4775
|
[attr.text]="text"
|
|
4774
4776
|
[attr.type]="type"
|
|
@@ -4785,7 +4787,7 @@ class GoabMenuButton {
|
|
|
4785
4787
|
</goa-menu-button>
|
|
4786
4788
|
`, isInline: true }); }
|
|
4787
4789
|
}
|
|
4788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4790
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMenuButton, decorators: [{
|
|
4789
4791
|
type: Component,
|
|
4790
4792
|
args: [{
|
|
4791
4793
|
standalone: true,
|
|
@@ -4829,8 +4831,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4829
4831
|
}] } });
|
|
4830
4832
|
|
|
4831
4833
|
class GoabMenuAction {
|
|
4832
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
4833
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.
|
|
4834
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMenuAction, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4835
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: GoabMenuAction, isStandalone: true, selector: "goab-menu-action", inputs: { text: "text", action: "action", icon: "icon", testId: "testId" }, ngImport: i0, template: `
|
|
4834
4836
|
<goa-menu-action
|
|
4835
4837
|
[attr.text]="text"
|
|
4836
4838
|
[attr.action]="action"
|
|
@@ -4840,7 +4842,7 @@ class GoabMenuAction {
|
|
|
4840
4842
|
</goa-menu-action>
|
|
4841
4843
|
`, isInline: true }); }
|
|
4842
4844
|
}
|
|
4843
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMenuAction, decorators: [{
|
|
4844
4846
|
type: Component,
|
|
4845
4847
|
args: [{
|
|
4846
4848
|
standalone: true,
|
|
@@ -4869,8 +4871,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4869
4871
|
}] } });
|
|
4870
4872
|
|
|
4871
4873
|
class GoabNotification {
|
|
4872
|
-
constructor(
|
|
4873
|
-
this.cdr =
|
|
4874
|
+
constructor() {
|
|
4875
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4874
4876
|
this.isReady = false;
|
|
4875
4877
|
this.version = "2";
|
|
4876
4878
|
this.type = "information";
|
|
@@ -4886,8 +4888,8 @@ class GoabNotification {
|
|
|
4886
4888
|
_onDismiss() {
|
|
4887
4889
|
this.onDismiss.emit();
|
|
4888
4890
|
}
|
|
4889
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
4890
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
4891
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabNotification, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4892
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabNotification, isStandalone: true, selector: "goab-notification", inputs: { type: "type", ariaLive: "ariaLive", maxContentWidth: "maxContentWidth", emphasis: "emphasis", compact: ["compact", "compact", booleanAttribute], testId: "testId" }, outputs: { onDismiss: "onDismiss" }, ngImport: i0, template: `
|
|
4891
4893
|
@if (isReady) {
|
|
4892
4894
|
<goa-notification
|
|
4893
4895
|
[attr.version]="version"
|
|
@@ -4904,7 +4906,7 @@ class GoabNotification {
|
|
|
4904
4906
|
}
|
|
4905
4907
|
`, isInline: true }); }
|
|
4906
4908
|
}
|
|
4907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabNotification, decorators: [{
|
|
4908
4910
|
type: Component,
|
|
4909
4911
|
args: [{
|
|
4910
4912
|
standalone: true,
|
|
@@ -4927,7 +4929,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4927
4929
|
`,
|
|
4928
4930
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4929
4931
|
}]
|
|
4930
|
-
}],
|
|
4932
|
+
}], propDecorators: { type: [{
|
|
4931
4933
|
type: Input
|
|
4932
4934
|
}], ariaLive: [{
|
|
4933
4935
|
type: Input
|
|
@@ -4945,8 +4947,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4945
4947
|
}] } });
|
|
4946
4948
|
|
|
4947
4949
|
class GoabPageBlock {
|
|
4948
|
-
constructor(
|
|
4949
|
-
this.cdr =
|
|
4950
|
+
constructor() {
|
|
4951
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4950
4952
|
this.isReady = false;
|
|
4951
4953
|
}
|
|
4952
4954
|
ngOnInit() {
|
|
@@ -4955,8 +4957,8 @@ class GoabPageBlock {
|
|
|
4955
4957
|
this.cdr.detectChanges();
|
|
4956
4958
|
});
|
|
4957
4959
|
}
|
|
4958
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
4959
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
4960
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPageBlock, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4961
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabPageBlock, isStandalone: true, selector: "goab-page-block", inputs: { width: "width", testId: "testId" }, ngImport: i0, template: `
|
|
4960
4962
|
@if (isReady) {
|
|
4961
4963
|
<goa-page-block [attr.width]="width" [attr.testid]="testId">
|
|
4962
4964
|
<ng-content></ng-content>
|
|
@@ -4964,7 +4966,7 @@ class GoabPageBlock {
|
|
|
4964
4966
|
}
|
|
4965
4967
|
`, isInline: true }); }
|
|
4966
4968
|
}
|
|
4967
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4969
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPageBlock, decorators: [{
|
|
4968
4970
|
type: Component,
|
|
4969
4971
|
args: [{
|
|
4970
4972
|
standalone: true,
|
|
@@ -4978,16 +4980,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4978
4980
|
`,
|
|
4979
4981
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4980
4982
|
}]
|
|
4981
|
-
}],
|
|
4983
|
+
}], propDecorators: { width: [{
|
|
4982
4984
|
type: Input
|
|
4983
4985
|
}], testId: [{
|
|
4984
4986
|
type: Input
|
|
4985
4987
|
}] } });
|
|
4986
4988
|
|
|
4987
4989
|
class GoabPages extends GoabBaseComponent {
|
|
4988
|
-
constructor(
|
|
4989
|
-
super();
|
|
4990
|
-
this.cdr =
|
|
4990
|
+
constructor() {
|
|
4991
|
+
super(...arguments);
|
|
4992
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4991
4993
|
this.isReady = false;
|
|
4992
4994
|
}
|
|
4993
4995
|
ngOnInit() {
|
|
@@ -4996,8 +4998,8 @@ class GoabPages extends GoabBaseComponent {
|
|
|
4996
4998
|
this.cdr.detectChanges();
|
|
4997
4999
|
});
|
|
4998
5000
|
}
|
|
4999
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5000
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5001
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPages, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5002
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabPages, isStandalone: true, selector: "goab-pages", inputs: { current: ["current", "current", numberAttribute] }, usesInheritance: true, ngImport: i0, template: `
|
|
5001
5003
|
@if (isReady) {
|
|
5002
5004
|
<goa-pages
|
|
5003
5005
|
[attr.current]="current"
|
|
@@ -5011,7 +5013,7 @@ class GoabPages extends GoabBaseComponent {
|
|
|
5011
5013
|
}
|
|
5012
5014
|
`, isInline: true }); }
|
|
5013
5015
|
}
|
|
5014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPages, decorators: [{
|
|
5015
5017
|
type: Component,
|
|
5016
5018
|
args: [{
|
|
5017
5019
|
standalone: true,
|
|
@@ -5031,15 +5033,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5031
5033
|
`,
|
|
5032
5034
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5033
5035
|
}]
|
|
5034
|
-
}],
|
|
5036
|
+
}], propDecorators: { current: [{
|
|
5035
5037
|
type: Input,
|
|
5036
5038
|
args: [{ transform: numberAttribute }]
|
|
5037
5039
|
}] } });
|
|
5038
5040
|
|
|
5039
5041
|
class GoabPagination extends GoabBaseComponent {
|
|
5040
|
-
constructor(
|
|
5041
|
-
super();
|
|
5042
|
-
this.cdr =
|
|
5042
|
+
constructor() {
|
|
5043
|
+
super(...arguments);
|
|
5044
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5043
5045
|
this.isReady = false;
|
|
5044
5046
|
this.version = "2";
|
|
5045
5047
|
this.perPageCount = 10;
|
|
@@ -5056,8 +5058,8 @@ class GoabPagination extends GoabBaseComponent {
|
|
|
5056
5058
|
const detail = e.detail;
|
|
5057
5059
|
this.onChange.emit(detail);
|
|
5058
5060
|
}
|
|
5059
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5060
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5061
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPagination, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5062
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabPagination, isStandalone: true, selector: "goab-pagination", inputs: { itemCount: "itemCount", pageNumber: "pageNumber", perPageCount: "perPageCount", variant: "variant" }, outputs: { onChange: "onChange" }, usesInheritance: true, ngImport: i0, template: `
|
|
5061
5063
|
@if (isReady) {
|
|
5062
5064
|
<goa-pagination
|
|
5063
5065
|
[attr.version]="version"
|
|
@@ -5076,7 +5078,7 @@ class GoabPagination extends GoabBaseComponent {
|
|
|
5076
5078
|
}
|
|
5077
5079
|
`, isInline: true }); }
|
|
5078
5080
|
}
|
|
5079
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5081
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPagination, decorators: [{
|
|
5080
5082
|
type: Component,
|
|
5081
5083
|
args: [{
|
|
5082
5084
|
standalone: true,
|
|
@@ -5101,7 +5103,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5101
5103
|
`,
|
|
5102
5104
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5103
5105
|
}]
|
|
5104
|
-
}],
|
|
5106
|
+
}], propDecorators: { itemCount: [{
|
|
5105
5107
|
type: Input,
|
|
5106
5108
|
args: [{ required: true }]
|
|
5107
5109
|
}], pageNumber: [{
|
|
@@ -5116,9 +5118,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5116
5118
|
}] } });
|
|
5117
5119
|
|
|
5118
5120
|
class GoabPopover extends GoabBaseComponent {
|
|
5119
|
-
constructor(
|
|
5120
|
-
super();
|
|
5121
|
-
this.cdr =
|
|
5121
|
+
constructor() {
|
|
5122
|
+
super(...arguments);
|
|
5123
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5122
5124
|
this.isReady = false;
|
|
5123
5125
|
this.maxWidth = "320px";
|
|
5124
5126
|
this.padded = true;
|
|
@@ -5129,8 +5131,8 @@ class GoabPopover extends GoabBaseComponent {
|
|
|
5129
5131
|
this.cdr.detectChanges();
|
|
5130
5132
|
});
|
|
5131
5133
|
}
|
|
5132
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5133
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5134
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPopover, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5135
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabPopover, isStandalone: true, selector: "goab-popover", inputs: { maxWidth: "maxWidth", minWidth: "minWidth", padded: "padded", position: "position", relative: "relative", target: "target" }, usesInheritance: true, ngImport: i0, template: `
|
|
5134
5136
|
@if (isReady) {
|
|
5135
5137
|
<goa-popover
|
|
5136
5138
|
[attr.maxwidth]="maxWidth"
|
|
@@ -5152,7 +5154,7 @@ class GoabPopover extends GoabBaseComponent {
|
|
|
5152
5154
|
}
|
|
5153
5155
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
5154
5156
|
}
|
|
5155
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPopover, decorators: [{
|
|
5156
5158
|
type: Component,
|
|
5157
5159
|
args: [{
|
|
5158
5160
|
standalone: true,
|
|
@@ -5181,7 +5183,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5181
5183
|
`,
|
|
5182
5184
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5183
5185
|
}]
|
|
5184
|
-
}],
|
|
5186
|
+
}], propDecorators: { maxWidth: [{
|
|
5185
5187
|
type: Input
|
|
5186
5188
|
}], minWidth: [{
|
|
5187
5189
|
type: Input
|
|
@@ -5197,8 +5199,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5197
5199
|
}] } });
|
|
5198
5200
|
|
|
5199
5201
|
class GoabPushDrawer {
|
|
5200
|
-
constructor(
|
|
5201
|
-
this.cdr =
|
|
5202
|
+
constructor() {
|
|
5203
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5202
5204
|
this.version = "2";
|
|
5203
5205
|
this.onClose = new EventEmitter();
|
|
5204
5206
|
this.isReady = false;
|
|
@@ -5220,8 +5222,8 @@ class GoabPushDrawer {
|
|
|
5220
5222
|
return null;
|
|
5221
5223
|
return this.heading instanceof TemplateRef ? this.heading : null;
|
|
5222
5224
|
}
|
|
5223
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5224
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5225
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPushDrawer, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5226
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabPushDrawer, isStandalone: true, selector: "goab-push-drawer", inputs: { open: ["open", "open", booleanAttribute], heading: "heading", width: "width", testId: "testId", actions: "actions" }, outputs: { onClose: "onClose" }, ngImport: i0, template: `@if (isReady) {
|
|
5225
5227
|
<goa-push-drawer
|
|
5226
5228
|
[open]="open"
|
|
5227
5229
|
[attr.heading]="getHeadingAsString()"
|
|
@@ -5242,7 +5244,7 @@ class GoabPushDrawer {
|
|
|
5242
5244
|
</goa-push-drawer>
|
|
5243
5245
|
} `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
5244
5246
|
}
|
|
5245
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5247
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPushDrawer, decorators: [{
|
|
5246
5248
|
type: Component,
|
|
5247
5249
|
args: [{
|
|
5248
5250
|
standalone: true,
|
|
@@ -5270,7 +5272,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5270
5272
|
} `,
|
|
5271
5273
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5272
5274
|
}]
|
|
5273
|
-
}],
|
|
5275
|
+
}], propDecorators: { open: [{
|
|
5274
5276
|
type: Input,
|
|
5275
5277
|
args: [{ transform: booleanAttribute }]
|
|
5276
5278
|
}], heading: [{
|
|
@@ -5286,9 +5288,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5286
5288
|
}] } });
|
|
5287
5289
|
|
|
5288
5290
|
class GoabRadioGroup extends GoabControlValueAccessor {
|
|
5289
|
-
constructor(
|
|
5290
|
-
super(
|
|
5291
|
-
this.cdr =
|
|
5291
|
+
constructor() {
|
|
5292
|
+
super(...arguments);
|
|
5293
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5292
5294
|
this.isReady = false;
|
|
5293
5295
|
this.version = "2";
|
|
5294
5296
|
this.size = "default";
|
|
@@ -5309,8 +5311,8 @@ class GoabRadioGroup extends GoabControlValueAccessor {
|
|
|
5309
5311
|
this.onChange.emit(detail);
|
|
5310
5312
|
this.fcChange?.(detail.value);
|
|
5311
5313
|
}
|
|
5312
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5313
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5314
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabRadioGroup, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5315
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabRadioGroup, isStandalone: true, selector: "goab-radio-group", inputs: { name: "name", orientation: "orientation", ariaLabel: "ariaLabel", size: "size" }, outputs: { onChange: "onChange" }, providers: [
|
|
5314
5316
|
{
|
|
5315
5317
|
provide: NG_VALUE_ACCESSOR,
|
|
5316
5318
|
multi: true,
|
|
@@ -5341,7 +5343,7 @@ class GoabRadioGroup extends GoabControlValueAccessor {
|
|
|
5341
5343
|
}
|
|
5342
5344
|
`, isInline: true }); }
|
|
5343
5345
|
}
|
|
5344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabRadioGroup, decorators: [{
|
|
5345
5347
|
type: Component,
|
|
5346
5348
|
args: [{
|
|
5347
5349
|
standalone: true,
|
|
@@ -5379,7 +5381,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5379
5381
|
},
|
|
5380
5382
|
],
|
|
5381
5383
|
}]
|
|
5382
|
-
}],
|
|
5384
|
+
}], propDecorators: { name: [{
|
|
5383
5385
|
type: Input
|
|
5384
5386
|
}], orientation: [{
|
|
5385
5387
|
type: Input
|
|
@@ -5392,9 +5394,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5392
5394
|
}] } });
|
|
5393
5395
|
|
|
5394
5396
|
class GoabRadioItem extends GoabBaseComponent {
|
|
5395
|
-
constructor(
|
|
5396
|
-
super();
|
|
5397
|
-
this.cdr =
|
|
5397
|
+
constructor() {
|
|
5398
|
+
super(...arguments);
|
|
5399
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5398
5400
|
this.isReady = false;
|
|
5399
5401
|
this.version = "2";
|
|
5400
5402
|
}
|
|
@@ -5416,8 +5418,8 @@ class GoabRadioItem extends GoabBaseComponent {
|
|
|
5416
5418
|
return null;
|
|
5417
5419
|
return this.description instanceof TemplateRef ? this.description : null;
|
|
5418
5420
|
}
|
|
5419
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5420
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5421
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabRadioItem, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5422
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabRadioItem, isStandalone: true, selector: "goab-radio-item", inputs: { value: "value", label: "label", name: "name", description: "description", reveal: "reveal", ariaLabel: "ariaLabel", revealAriaLabel: "revealAriaLabel", disabled: ["disabled", "disabled", booleanAttribute], checked: ["checked", "checked", booleanAttribute], error: ["error", "error", booleanAttribute], maxWidth: "maxWidth", compact: ["compact", "compact", booleanAttribute] }, usesInheritance: true, ngImport: i0, template: `
|
|
5421
5423
|
@if (isReady) {
|
|
5422
5424
|
<goa-radio-item
|
|
5423
5425
|
[attr.version]="version"
|
|
@@ -5450,7 +5452,7 @@ class GoabRadioItem extends GoabBaseComponent {
|
|
|
5450
5452
|
}
|
|
5451
5453
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
5452
5454
|
}
|
|
5453
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5455
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabRadioItem, decorators: [{
|
|
5454
5456
|
type: Component,
|
|
5455
5457
|
args: [{
|
|
5456
5458
|
standalone: true,
|
|
@@ -5490,7 +5492,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5490
5492
|
imports: [NgTemplateOutlet],
|
|
5491
5493
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5492
5494
|
}]
|
|
5493
|
-
}],
|
|
5495
|
+
}], propDecorators: { value: [{
|
|
5494
5496
|
type: Input
|
|
5495
5497
|
}], label: [{
|
|
5496
5498
|
type: Input
|
|
@@ -5521,8 +5523,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5521
5523
|
}] } });
|
|
5522
5524
|
|
|
5523
5525
|
class GoabSideMenu {
|
|
5524
|
-
constructor(
|
|
5525
|
-
this.cdr =
|
|
5526
|
+
constructor() {
|
|
5527
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5526
5528
|
this.isReady = false;
|
|
5527
5529
|
this.version = "2";
|
|
5528
5530
|
}
|
|
@@ -5532,8 +5534,8 @@ class GoabSideMenu {
|
|
|
5532
5534
|
this.cdr.detectChanges();
|
|
5533
5535
|
});
|
|
5534
5536
|
}
|
|
5535
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5536
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5537
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenu, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5538
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabSideMenu, isStandalone: true, selector: "goab-side-menu", inputs: { testId: "testId" }, ngImport: i0, template: `
|
|
5537
5539
|
@if (isReady) {
|
|
5538
5540
|
<goa-side-menu [attr.version]="version" [attr.testid]="testId">
|
|
5539
5541
|
<ng-content />
|
|
@@ -5541,7 +5543,7 @@ class GoabSideMenu {
|
|
|
5541
5543
|
}
|
|
5542
5544
|
`, isInline: true }); }
|
|
5543
5545
|
}
|
|
5544
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5546
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenu, decorators: [{
|
|
5545
5547
|
type: Component,
|
|
5546
5548
|
args: [{
|
|
5547
5549
|
standalone: true,
|
|
@@ -5555,14 +5557,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5555
5557
|
`,
|
|
5556
5558
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5557
5559
|
}]
|
|
5558
|
-
}],
|
|
5560
|
+
}], propDecorators: { testId: [{
|
|
5559
5561
|
type: Input
|
|
5560
5562
|
}] } });
|
|
5561
5563
|
|
|
5562
5564
|
class GoabSideMenuGroup extends GoabBaseComponent {
|
|
5563
|
-
constructor(
|
|
5564
|
-
super();
|
|
5565
|
-
this.cdr =
|
|
5565
|
+
constructor() {
|
|
5566
|
+
super(...arguments);
|
|
5567
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5566
5568
|
this.isReady = false;
|
|
5567
5569
|
this.version = "2";
|
|
5568
5570
|
}
|
|
@@ -5572,8 +5574,8 @@ class GoabSideMenuGroup extends GoabBaseComponent {
|
|
|
5572
5574
|
this.cdr.detectChanges();
|
|
5573
5575
|
});
|
|
5574
5576
|
}
|
|
5575
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5576
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5577
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenuGroup, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5578
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabSideMenuGroup, isStandalone: true, selector: "goab-side-menu-group", inputs: { heading: "heading", icon: "icon" }, usesInheritance: true, ngImport: i0, template: `
|
|
5577
5579
|
@if (isReady) {
|
|
5578
5580
|
<goa-side-menu-group
|
|
5579
5581
|
[attr.version]="version"
|
|
@@ -5590,7 +5592,7 @@ class GoabSideMenuGroup extends GoabBaseComponent {
|
|
|
5590
5592
|
}
|
|
5591
5593
|
`, isInline: true }); }
|
|
5592
5594
|
}
|
|
5593
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenuGroup, decorators: [{
|
|
5594
5596
|
type: Component,
|
|
5595
5597
|
args: [{
|
|
5596
5598
|
standalone: true,
|
|
@@ -5613,7 +5615,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5613
5615
|
`,
|
|
5614
5616
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5615
5617
|
}]
|
|
5616
|
-
}],
|
|
5618
|
+
}], propDecorators: { heading: [{
|
|
5617
5619
|
type: Input,
|
|
5618
5620
|
args: [{ required: true }]
|
|
5619
5621
|
}], icon: [{
|
|
@@ -5621,8 +5623,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5621
5623
|
}] } });
|
|
5622
5624
|
|
|
5623
5625
|
class GoabSideMenuHeading {
|
|
5624
|
-
constructor(
|
|
5625
|
-
this.cdr =
|
|
5626
|
+
constructor() {
|
|
5627
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5626
5628
|
this.isReady = false;
|
|
5627
5629
|
this.version = "2";
|
|
5628
5630
|
}
|
|
@@ -5632,8 +5634,8 @@ class GoabSideMenuHeading {
|
|
|
5632
5634
|
this.cdr.detectChanges();
|
|
5633
5635
|
});
|
|
5634
5636
|
}
|
|
5635
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5636
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5637
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenuHeading, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5638
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabSideMenuHeading, isStandalone: true, selector: "goab-side-menu-heading", inputs: { icon: "icon", testId: "testId", meta: "meta" }, ngImport: i0, template: `
|
|
5637
5639
|
@if (isReady) {
|
|
5638
5640
|
<goa-side-menu-heading
|
|
5639
5641
|
[attr.version]="version"
|
|
@@ -5648,7 +5650,7 @@ class GoabSideMenuHeading {
|
|
|
5648
5650
|
}
|
|
5649
5651
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
5650
5652
|
}
|
|
5651
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5653
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenuHeading, decorators: [{
|
|
5652
5654
|
type: Component,
|
|
5653
5655
|
args: [{
|
|
5654
5656
|
standalone: true,
|
|
@@ -5670,7 +5672,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5670
5672
|
`,
|
|
5671
5673
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5672
5674
|
}]
|
|
5673
|
-
}],
|
|
5675
|
+
}], propDecorators: { icon: [{
|
|
5674
5676
|
type: Input
|
|
5675
5677
|
}], testId: [{
|
|
5676
5678
|
type: Input
|
|
@@ -5679,9 +5681,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5679
5681
|
}] } });
|
|
5680
5682
|
|
|
5681
5683
|
class GoabSkeleton extends GoabBaseComponent {
|
|
5682
|
-
constructor(
|
|
5683
|
-
super();
|
|
5684
|
-
this.cdr =
|
|
5684
|
+
constructor() {
|
|
5685
|
+
super(...arguments);
|
|
5686
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5685
5687
|
this.isReady = false;
|
|
5686
5688
|
this.maxWidth = "300px";
|
|
5687
5689
|
}
|
|
@@ -5691,8 +5693,8 @@ class GoabSkeleton extends GoabBaseComponent {
|
|
|
5691
5693
|
this.cdr.detectChanges();
|
|
5692
5694
|
});
|
|
5693
5695
|
}
|
|
5694
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5695
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5696
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSkeleton, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5697
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabSkeleton, isStandalone: true, selector: "goab-skeleton", inputs: { type: "type", maxWidth: "maxWidth", size: "size", lineCount: ["lineCount", "lineCount", numberAttribute] }, usesInheritance: true, ngImport: i0, template: `
|
|
5696
5698
|
@if (isReady) {
|
|
5697
5699
|
<goa-skeleton
|
|
5698
5700
|
[attr.maxwidth]="maxWidth"
|
|
@@ -5709,7 +5711,7 @@ class GoabSkeleton extends GoabBaseComponent {
|
|
|
5709
5711
|
}
|
|
5710
5712
|
`, isInline: true }); }
|
|
5711
5713
|
}
|
|
5712
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5714
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSkeleton, decorators: [{
|
|
5713
5715
|
type: Component,
|
|
5714
5716
|
args: [{
|
|
5715
5717
|
standalone: true,
|
|
@@ -5732,7 +5734,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5732
5734
|
`,
|
|
5733
5735
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5734
5736
|
}]
|
|
5735
|
-
}],
|
|
5737
|
+
}], propDecorators: { type: [{
|
|
5736
5738
|
type: Input,
|
|
5737
5739
|
args: [{ required: true }]
|
|
5738
5740
|
}], maxWidth: [{
|
|
@@ -5745,8 +5747,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5745
5747
|
}] } });
|
|
5746
5748
|
|
|
5747
5749
|
class GoabSpacer {
|
|
5748
|
-
constructor(
|
|
5749
|
-
this.cdr =
|
|
5750
|
+
constructor() {
|
|
5751
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5750
5752
|
this.isReady = false;
|
|
5751
5753
|
}
|
|
5752
5754
|
ngOnInit() {
|
|
@@ -5755,8 +5757,8 @@ class GoabSpacer {
|
|
|
5755
5757
|
this.cdr.detectChanges();
|
|
5756
5758
|
});
|
|
5757
5759
|
}
|
|
5758
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5759
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5760
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSpacer, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5761
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabSpacer, isStandalone: true, selector: "goab-spacer", inputs: { hSpacing: "hSpacing", vSpacing: "vSpacing", testId: "testId" }, ngImport: i0, template: `
|
|
5760
5762
|
@if (isReady) {
|
|
5761
5763
|
<goa-spacer
|
|
5762
5764
|
[attr.hspacing]="hSpacing"
|
|
@@ -5767,7 +5769,7 @@ class GoabSpacer {
|
|
|
5767
5769
|
}
|
|
5768
5770
|
`, isInline: true }); }
|
|
5769
5771
|
}
|
|
5770
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSpacer, decorators: [{
|
|
5771
5773
|
type: Component,
|
|
5772
5774
|
args: [{
|
|
5773
5775
|
standalone: true,
|
|
@@ -5784,7 +5786,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5784
5786
|
`,
|
|
5785
5787
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5786
5788
|
}]
|
|
5787
|
-
}],
|
|
5789
|
+
}], propDecorators: { hSpacing: [{
|
|
5788
5790
|
type: Input
|
|
5789
5791
|
}], vSpacing: [{
|
|
5790
5792
|
type: Input
|
|
@@ -5793,8 +5795,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5793
5795
|
}] } });
|
|
5794
5796
|
|
|
5795
5797
|
class GoabTab {
|
|
5796
|
-
constructor(
|
|
5797
|
-
this.cdr =
|
|
5798
|
+
constructor() {
|
|
5799
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5798
5800
|
this.isReady = false;
|
|
5799
5801
|
}
|
|
5800
5802
|
ngOnInit() {
|
|
@@ -5811,8 +5813,8 @@ class GoabTab {
|
|
|
5811
5813
|
return null;
|
|
5812
5814
|
return this.heading instanceof TemplateRef ? this.heading : null;
|
|
5813
5815
|
}
|
|
5814
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5815
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5816
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTab, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5817
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabTab, isStandalone: true, selector: "goab-tab", inputs: { heading: "heading", disabled: ["disabled", "disabled", booleanAttribute], slug: "slug" }, ngImport: i0, template: `
|
|
5816
5818
|
@if (isReady) {
|
|
5817
5819
|
<goa-tab
|
|
5818
5820
|
[attr.slug]="slug"
|
|
@@ -5829,7 +5831,7 @@ class GoabTab {
|
|
|
5829
5831
|
}
|
|
5830
5832
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
5831
5833
|
}
|
|
5832
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTab, decorators: [{
|
|
5833
5835
|
type: Component,
|
|
5834
5836
|
args: [{
|
|
5835
5837
|
standalone: true,
|
|
@@ -5853,7 +5855,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5853
5855
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5854
5856
|
imports: [NgTemplateOutlet],
|
|
5855
5857
|
}]
|
|
5856
|
-
}],
|
|
5858
|
+
}], propDecorators: { heading: [{
|
|
5857
5859
|
type: Input
|
|
5858
5860
|
}], disabled: [{
|
|
5859
5861
|
type: Input,
|
|
@@ -5863,9 +5865,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5863
5865
|
}] } });
|
|
5864
5866
|
|
|
5865
5867
|
class GoabTable extends GoabBaseComponent {
|
|
5866
|
-
constructor(
|
|
5867
|
-
super();
|
|
5868
|
-
this.cdr =
|
|
5868
|
+
constructor() {
|
|
5869
|
+
super(...arguments);
|
|
5870
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5869
5871
|
this.isReady = false;
|
|
5870
5872
|
this.version = "2";
|
|
5871
5873
|
this.onSort = new EventEmitter();
|
|
@@ -5885,8 +5887,8 @@ class GoabTable extends GoabBaseComponent {
|
|
|
5885
5887
|
const detail = e.detail;
|
|
5886
5888
|
this.onMultiSort.emit(detail);
|
|
5887
5889
|
}
|
|
5888
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5889
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5890
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTable, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5891
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabTable, isStandalone: true, selector: "goab-table", inputs: { width: "width", variant: "variant", sortMode: "sortMode", striped: ["striped", "striped", booleanAttribute] }, outputs: { onSort: "onSort", onMultiSort: "onMultiSort" }, usesInheritance: true, ngImport: i0, template: `
|
|
5890
5892
|
@if (isReady) {
|
|
5891
5893
|
<goa-table
|
|
5892
5894
|
[attr.version]="version"
|
|
@@ -5909,7 +5911,7 @@ class GoabTable extends GoabBaseComponent {
|
|
|
5909
5911
|
}
|
|
5910
5912
|
`, isInline: true }); }
|
|
5911
5913
|
}
|
|
5912
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5914
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTable, decorators: [{
|
|
5913
5915
|
type: Component,
|
|
5914
5916
|
args: [{
|
|
5915
5917
|
standalone: true,
|
|
@@ -5938,7 +5940,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5938
5940
|
`,
|
|
5939
5941
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5940
5942
|
}]
|
|
5941
|
-
}],
|
|
5943
|
+
}], propDecorators: { width: [{
|
|
5942
5944
|
type: Input
|
|
5943
5945
|
}], variant: [{
|
|
5944
5946
|
type: Input
|
|
@@ -5954,8 +5956,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5954
5956
|
}] } });
|
|
5955
5957
|
|
|
5956
5958
|
class GoabTableSortHeader {
|
|
5957
|
-
constructor(
|
|
5958
|
-
this.cdr =
|
|
5959
|
+
constructor() {
|
|
5960
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5959
5961
|
this.isReady = false;
|
|
5960
5962
|
this.direction = "none";
|
|
5961
5963
|
}
|
|
@@ -5965,8 +5967,8 @@ class GoabTableSortHeader {
|
|
|
5965
5967
|
this.cdr.detectChanges();
|
|
5966
5968
|
});
|
|
5967
5969
|
}
|
|
5968
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
5969
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
5970
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTableSortHeader, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5971
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabTableSortHeader, isStandalone: true, selector: "goab-table-sort-header", inputs: { name: "name", direction: "direction", sortOrder: "sortOrder" }, ngImport: i0, template: `
|
|
5970
5972
|
@if (isReady) {
|
|
5971
5973
|
<goa-table-sort-header
|
|
5972
5974
|
[attr.name]="name"
|
|
@@ -5978,7 +5980,7 @@ class GoabTableSortHeader {
|
|
|
5978
5980
|
}
|
|
5979
5981
|
`, isInline: true }); }
|
|
5980
5982
|
}
|
|
5981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTableSortHeader, decorators: [{
|
|
5982
5984
|
type: Component,
|
|
5983
5985
|
args: [{
|
|
5984
5986
|
standalone: true,
|
|
@@ -5996,7 +5998,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5996
5998
|
`,
|
|
5997
5999
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5998
6000
|
}]
|
|
5999
|
-
}],
|
|
6001
|
+
}], propDecorators: { name: [{
|
|
6000
6002
|
type: Input
|
|
6001
6003
|
}], direction: [{
|
|
6002
6004
|
type: Input
|
|
@@ -6005,8 +6007,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6005
6007
|
}] } });
|
|
6006
6008
|
|
|
6007
6009
|
class GoabTabs {
|
|
6008
|
-
constructor(
|
|
6009
|
-
this.cdr =
|
|
6010
|
+
constructor() {
|
|
6011
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6010
6012
|
this.isReady = false;
|
|
6011
6013
|
this.version = "2";
|
|
6012
6014
|
this.onChange = new EventEmitter();
|
|
@@ -6021,8 +6023,8 @@ class GoabTabs {
|
|
|
6021
6023
|
const detail = e.detail;
|
|
6022
6024
|
this.onChange.emit(detail);
|
|
6023
6025
|
}
|
|
6024
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
6025
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
6026
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTabs, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6027
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabTabs, isStandalone: true, selector: "goab-tabs", inputs: { initialTab: ["initialTab", "initialTab", numberAttribute], testId: "testId", variant: "variant", orientation: "orientation", navigation: "navigation" }, outputs: { onChange: "onChange" }, ngImport: i0, template: `
|
|
6026
6028
|
@if (isReady) {
|
|
6027
6029
|
<goa-tabs
|
|
6028
6030
|
[attr.version]="version"
|
|
@@ -6038,7 +6040,7 @@ class GoabTabs {
|
|
|
6038
6040
|
}
|
|
6039
6041
|
`, isInline: true }); }
|
|
6040
6042
|
}
|
|
6041
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTabs, decorators: [{
|
|
6042
6044
|
type: Component,
|
|
6043
6045
|
args: [{
|
|
6044
6046
|
standalone: true,
|
|
@@ -6060,7 +6062,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6060
6062
|
`,
|
|
6061
6063
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6062
6064
|
}]
|
|
6063
|
-
}],
|
|
6065
|
+
}], propDecorators: { initialTab: [{
|
|
6064
6066
|
type: Input,
|
|
6065
6067
|
args: [{ transform: numberAttribute }]
|
|
6066
6068
|
}], testId: [{
|
|
@@ -6076,8 +6078,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6076
6078
|
}] } });
|
|
6077
6079
|
|
|
6078
6080
|
class GoabTemporaryNotificationCtrl {
|
|
6079
|
-
constructor(
|
|
6080
|
-
this.cdr =
|
|
6081
|
+
constructor() {
|
|
6082
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6081
6083
|
this.isReady = false;
|
|
6082
6084
|
this.verticalPosition = "bottom";
|
|
6083
6085
|
this.horizontalPosition = "center";
|
|
@@ -6088,8 +6090,8 @@ class GoabTemporaryNotificationCtrl {
|
|
|
6088
6090
|
this.cdr.detectChanges();
|
|
6089
6091
|
});
|
|
6090
6092
|
}
|
|
6091
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
6092
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
6093
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTemporaryNotificationCtrl, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6094
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabTemporaryNotificationCtrl, isStandalone: true, selector: "goab-temporary-notification-ctrl", inputs: { verticalPosition: "verticalPosition", horizontalPosition: "horizontalPosition", testId: "testId" }, ngImport: i0, template: `
|
|
6093
6095
|
@if (isReady) {
|
|
6094
6096
|
<goa-temp-notification-ctrl
|
|
6095
6097
|
[attr.vertical-position]="verticalPosition"
|
|
@@ -6100,7 +6102,7 @@ class GoabTemporaryNotificationCtrl {
|
|
|
6100
6102
|
}
|
|
6101
6103
|
`, isInline: true }); }
|
|
6102
6104
|
}
|
|
6103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTemporaryNotificationCtrl, decorators: [{
|
|
6104
6106
|
type: Component,
|
|
6105
6107
|
args: [{
|
|
6106
6108
|
standalone: true,
|
|
@@ -6117,7 +6119,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6117
6119
|
`,
|
|
6118
6120
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6119
6121
|
}]
|
|
6120
|
-
}],
|
|
6122
|
+
}], propDecorators: { verticalPosition: [{
|
|
6121
6123
|
type: Input
|
|
6122
6124
|
}], horizontalPosition: [{
|
|
6123
6125
|
type: Input
|
|
@@ -6126,6 +6128,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6126
6128
|
}] } });
|
|
6127
6129
|
|
|
6128
6130
|
class GoabText {
|
|
6131
|
+
constructor() {
|
|
6132
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6133
|
+
this.isReady = false;
|
|
6134
|
+
}
|
|
6129
6135
|
/*
|
|
6130
6136
|
This is necessary because angular outputs two elements, <goab-text> and <goa-text>
|
|
6131
6137
|
This removes the id from <goa-text> and only outputs it to <goab-text>
|
|
@@ -6133,10 +6139,6 @@ class GoabText {
|
|
|
6133
6139
|
get hostId() {
|
|
6134
6140
|
return this.id;
|
|
6135
6141
|
}
|
|
6136
|
-
constructor(cdr) {
|
|
6137
|
-
this.cdr = cdr;
|
|
6138
|
-
this.isReady = false;
|
|
6139
|
-
}
|
|
6140
6142
|
ngOnInit() {
|
|
6141
6143
|
// For Angular 20, we need to delay rendering the web component
|
|
6142
6144
|
// to ensure all attributes are properly bound before the component initializes
|
|
@@ -6145,8 +6147,8 @@ class GoabText {
|
|
|
6145
6147
|
this.cdr.detectChanges();
|
|
6146
6148
|
}, 0);
|
|
6147
6149
|
}
|
|
6148
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
6149
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
6150
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabText, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6151
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabText, isStandalone: true, selector: "goab-text", inputs: { tag: "tag", size: "size", maxWidth: "maxWidth", color: "color", id: "id", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, host: { properties: { "attr.id": "this.hostId" } }, ngImport: i0, template: `
|
|
6150
6152
|
@if (isReady) {
|
|
6151
6153
|
<goa-text
|
|
6152
6154
|
[attr.as]="tag"
|
|
@@ -6163,7 +6165,7 @@ class GoabText {
|
|
|
6163
6165
|
}
|
|
6164
6166
|
`, isInline: true }); }
|
|
6165
6167
|
}
|
|
6166
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6168
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabText, decorators: [{
|
|
6167
6169
|
type: Component,
|
|
6168
6170
|
args: [{
|
|
6169
6171
|
standalone: true,
|
|
@@ -6186,7 +6188,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6186
6188
|
`,
|
|
6187
6189
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6188
6190
|
}]
|
|
6189
|
-
}],
|
|
6191
|
+
}], propDecorators: { tag: [{
|
|
6190
6192
|
type: Input
|
|
6191
6193
|
}], size: [{
|
|
6192
6194
|
type: Input
|
|
@@ -6210,9 +6212,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6210
6212
|
}] } });
|
|
6211
6213
|
|
|
6212
6214
|
class GoabTextArea extends GoabControlValueAccessor {
|
|
6213
|
-
constructor(
|
|
6214
|
-
super(
|
|
6215
|
-
this.cdr =
|
|
6215
|
+
constructor() {
|
|
6216
|
+
super(...arguments);
|
|
6217
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6216
6218
|
this.countBy = "";
|
|
6217
6219
|
this.maxCount = -1;
|
|
6218
6220
|
this.autoComplete = "on";
|
|
@@ -6250,8 +6252,8 @@ class GoabTextArea extends GoabControlValueAccessor {
|
|
|
6250
6252
|
this.markAsTouched();
|
|
6251
6253
|
this.onBlur.emit(detail);
|
|
6252
6254
|
}
|
|
6253
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
6254
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
6255
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTextArea, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6256
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabTextArea, isStandalone: true, selector: "goab-textarea", inputs: { name: "name", placeholder: "placeholder", rows: ["rows", "rows", numberAttribute], readOnly: ["readOnly", "readOnly", booleanAttribute], width: "width", ariaLabel: "ariaLabel", countBy: "countBy", maxCount: "maxCount", maxWidth: "maxWidth", autoComplete: "autoComplete", size: "size" }, outputs: { onChange: "onChange", onKeyPress: "onKeyPress", onBlur: "onBlur" }, providers: [
|
|
6255
6257
|
{
|
|
6256
6258
|
provide: NG_VALUE_ACCESSOR,
|
|
6257
6259
|
multi: true,
|
|
@@ -6289,7 +6291,7 @@ class GoabTextArea extends GoabControlValueAccessor {
|
|
|
6289
6291
|
}
|
|
6290
6292
|
`, isInline: true }); }
|
|
6291
6293
|
}
|
|
6292
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6294
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTextArea, decorators: [{
|
|
6293
6295
|
type: Component,
|
|
6294
6296
|
args: [{
|
|
6295
6297
|
standalone: true,
|
|
@@ -6334,7 +6336,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6334
6336
|
},
|
|
6335
6337
|
],
|
|
6336
6338
|
}]
|
|
6337
|
-
}],
|
|
6339
|
+
}], propDecorators: { name: [{
|
|
6338
6340
|
type: Input
|
|
6339
6341
|
}], placeholder: [{
|
|
6340
6342
|
type: Input
|
|
@@ -6367,9 +6369,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6367
6369
|
}] } });
|
|
6368
6370
|
|
|
6369
6371
|
class GoabTooltip extends GoabBaseComponent {
|
|
6370
|
-
constructor(
|
|
6371
|
-
super();
|
|
6372
|
-
this.cdr =
|
|
6372
|
+
constructor() {
|
|
6373
|
+
super(...arguments);
|
|
6374
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6373
6375
|
this.isReady = false;
|
|
6374
6376
|
}
|
|
6375
6377
|
ngOnInit() {
|
|
@@ -6386,8 +6388,8 @@ class GoabTooltip extends GoabBaseComponent {
|
|
|
6386
6388
|
return null;
|
|
6387
6389
|
return this.content instanceof TemplateRef ? this.content : null;
|
|
6388
6390
|
}
|
|
6389
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
6390
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
6391
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTooltip, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6392
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabTooltip, isStandalone: true, selector: "goab-tooltip", inputs: { position: "position", content: "content", hAlign: "hAlign", maxWidth: "maxWidth" }, usesInheritance: true, ngImport: i0, template: `
|
|
6391
6393
|
@if (isReady) {
|
|
6392
6394
|
<goa-tooltip
|
|
6393
6395
|
[attr.position]="position"
|
|
@@ -6411,7 +6413,7 @@ class GoabTooltip extends GoabBaseComponent {
|
|
|
6411
6413
|
}
|
|
6412
6414
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
6413
6415
|
}
|
|
6414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6416
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTooltip, decorators: [{
|
|
6415
6417
|
type: Component,
|
|
6416
6418
|
args: [{
|
|
6417
6419
|
standalone: true,
|
|
@@ -6442,7 +6444,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6442
6444
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6443
6445
|
imports: [NgTemplateOutlet],
|
|
6444
6446
|
}]
|
|
6445
|
-
}],
|
|
6447
|
+
}], propDecorators: { position: [{
|
|
6446
6448
|
type: Input
|
|
6447
6449
|
}], content: [{
|
|
6448
6450
|
type: Input
|
|
@@ -6453,8 +6455,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6453
6455
|
}] } });
|
|
6454
6456
|
|
|
6455
6457
|
class GoabWorkSideMenu {
|
|
6456
|
-
constructor(
|
|
6457
|
-
this.cdr =
|
|
6458
|
+
constructor() {
|
|
6459
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6458
6460
|
this.onToggle = new EventEmitter();
|
|
6459
6461
|
this.onNavigate = new EventEmitter();
|
|
6460
6462
|
this.isReady = false;
|
|
@@ -6473,8 +6475,8 @@ class GoabWorkSideMenu {
|
|
|
6473
6475
|
_onNavigate(e) {
|
|
6474
6476
|
this.onNavigate.emit(e.detail.url);
|
|
6475
6477
|
}
|
|
6476
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
6477
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
6478
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenu, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6479
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabWorkSideMenu, isStandalone: true, selector: "goab-work-side-menu", inputs: { heading: "heading", url: "url", userName: "userName", userSecondaryText: "userSecondaryText", open: ["open", "open", booleanAttribute], testId: "testId", primaryContent: "primaryContent", secondaryContent: "secondaryContent", accountContent: "accountContent" }, outputs: { onToggle: "onToggle", onNavigate: "onNavigate" }, ngImport: i0, template: `
|
|
6478
6480
|
@if (isReady) {
|
|
6479
6481
|
<goa-work-side-menu
|
|
6480
6482
|
[open]="open ?? false"
|
|
@@ -6499,7 +6501,7 @@ class GoabWorkSideMenu {
|
|
|
6499
6501
|
}
|
|
6500
6502
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
6501
6503
|
}
|
|
6502
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6504
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenu, decorators: [{
|
|
6503
6505
|
type: Component,
|
|
6504
6506
|
args: [{
|
|
6505
6507
|
standalone: true,
|
|
@@ -6531,7 +6533,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6531
6533
|
`,
|
|
6532
6534
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6533
6535
|
}]
|
|
6534
|
-
}],
|
|
6536
|
+
}], propDecorators: { heading: [{
|
|
6535
6537
|
type: Input,
|
|
6536
6538
|
args: [{ required: true }]
|
|
6537
6539
|
}], url: [{
|
|
@@ -6559,8 +6561,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6559
6561
|
}] } });
|
|
6560
6562
|
|
|
6561
6563
|
class GoabWorkSideMenuGroup {
|
|
6562
|
-
constructor(
|
|
6563
|
-
this.cdr =
|
|
6564
|
+
constructor() {
|
|
6565
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6564
6566
|
this.isReady = false;
|
|
6565
6567
|
}
|
|
6566
6568
|
ngOnInit() {
|
|
@@ -6571,8 +6573,8 @@ class GoabWorkSideMenuGroup {
|
|
|
6571
6573
|
this.cdr.detectChanges();
|
|
6572
6574
|
}, 0);
|
|
6573
6575
|
}
|
|
6574
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
6575
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
6576
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenuGroup, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6577
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabWorkSideMenuGroup, isStandalone: true, selector: "goab-work-side-menu-group", inputs: { heading: "heading", icon: "icon", open: ["open", "open", booleanAttribute], testId: "testId" }, ngImport: i0, template: `
|
|
6576
6578
|
@if (isReady) {
|
|
6577
6579
|
<goa-work-side-menu-group
|
|
6578
6580
|
[attr.heading]="heading"
|
|
@@ -6585,7 +6587,7 @@ class GoabWorkSideMenuGroup {
|
|
|
6585
6587
|
}
|
|
6586
6588
|
`, isInline: true }); }
|
|
6587
6589
|
}
|
|
6588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenuGroup, decorators: [{
|
|
6589
6591
|
type: Component,
|
|
6590
6592
|
args: [{
|
|
6591
6593
|
standalone: true,
|
|
@@ -6604,7 +6606,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6604
6606
|
`,
|
|
6605
6607
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6606
6608
|
}]
|
|
6607
|
-
}],
|
|
6609
|
+
}], propDecorators: { heading: [{
|
|
6608
6610
|
type: Input,
|
|
6609
6611
|
args: [{ required: true }]
|
|
6610
6612
|
}], icon: [{
|
|
@@ -6617,8 +6619,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6617
6619
|
}] } });
|
|
6618
6620
|
|
|
6619
6621
|
class GoabWorkSideMenuItem {
|
|
6620
|
-
constructor(
|
|
6621
|
-
this.cdr =
|
|
6622
|
+
constructor() {
|
|
6623
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6622
6624
|
this.type = "normal";
|
|
6623
6625
|
this.isReady = false;
|
|
6624
6626
|
}
|
|
@@ -6630,8 +6632,8 @@ class GoabWorkSideMenuItem {
|
|
|
6630
6632
|
this.cdr.detectChanges();
|
|
6631
6633
|
}, 0);
|
|
6632
6634
|
}
|
|
6633
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
6634
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
6635
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenuItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6636
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabWorkSideMenuItem, isStandalone: true, selector: "goab-work-side-menu-item", inputs: { label: "label", url: "url", badge: "badge", current: "current", divider: "divider", icon: "icon", testId: "testId", type: "type", popoverContent: "popoverContent" }, ngImport: i0, template: `
|
|
6635
6637
|
@if (isReady) {
|
|
6636
6638
|
<goa-work-side-menu-item
|
|
6637
6639
|
[attr.label]="label"
|
|
@@ -6653,7 +6655,7 @@ class GoabWorkSideMenuItem {
|
|
|
6653
6655
|
}
|
|
6654
6656
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
6655
6657
|
}
|
|
6656
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6658
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenuItem, decorators: [{
|
|
6657
6659
|
type: Component,
|
|
6658
6660
|
args: [{
|
|
6659
6661
|
standalone: true,
|
|
@@ -6682,7 +6684,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6682
6684
|
`,
|
|
6683
6685
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6684
6686
|
}]
|
|
6685
|
-
}],
|
|
6687
|
+
}], propDecorators: { label: [{
|
|
6686
6688
|
type: Input,
|
|
6687
6689
|
args: [{ required: true }]
|
|
6688
6690
|
}], url: [{
|
|
@@ -6704,8 +6706,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6704
6706
|
}] } });
|
|
6705
6707
|
|
|
6706
6708
|
class GoabWorkSideNotificationItem {
|
|
6707
|
-
constructor(
|
|
6708
|
-
this.cdr =
|
|
6709
|
+
constructor() {
|
|
6710
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6709
6711
|
this.onClick = new EventEmitter();
|
|
6710
6712
|
this.isReady = false;
|
|
6711
6713
|
}
|
|
@@ -6718,44 +6720,44 @@ class GoabWorkSideNotificationItem {
|
|
|
6718
6720
|
_onClick() {
|
|
6719
6721
|
this.onClick.emit();
|
|
6720
6722
|
}
|
|
6721
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
6722
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
6723
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideNotificationItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6724
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabWorkSideNotificationItem, isStandalone: true, selector: "goab-work-side-notification-item", inputs: { type: "type", timestamp: "timestamp", title: "title", description: "description", readStatus: "readStatus", priority: "priority", testId: "testId" }, outputs: { onClick: "onClick" }, ngImport: i0, template: `
|
|
6723
6725
|
@if (isReady) {
|
|
6724
|
-
|
|
6725
|
-
|
|
6726
|
-
|
|
6727
|
-
|
|
6728
|
-
|
|
6729
|
-
|
|
6730
|
-
|
|
6731
|
-
|
|
6732
|
-
|
|
6733
|
-
|
|
6726
|
+
<goa-work-side-notification-item
|
|
6727
|
+
[attr.type]="type"
|
|
6728
|
+
[attr.timestamp]="timestamp"
|
|
6729
|
+
[attr.title]="title"
|
|
6730
|
+
[attr.description]="description"
|
|
6731
|
+
[attr.read-status]="readStatus"
|
|
6732
|
+
[attr.priority]="priority"
|
|
6733
|
+
[attr.testid]="testId"
|
|
6734
|
+
(_click)="_onClick()"
|
|
6735
|
+
/>
|
|
6734
6736
|
}
|
|
6735
6737
|
`, isInline: true }); }
|
|
6736
6738
|
}
|
|
6737
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6739
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideNotificationItem, decorators: [{
|
|
6738
6740
|
type: Component,
|
|
6739
6741
|
args: [{
|
|
6740
6742
|
standalone: true,
|
|
6741
6743
|
selector: "goab-work-side-notification-item", // eslint-disable-line
|
|
6742
6744
|
template: `
|
|
6743
6745
|
@if (isReady) {
|
|
6744
|
-
|
|
6745
|
-
|
|
6746
|
-
|
|
6747
|
-
|
|
6748
|
-
|
|
6749
|
-
|
|
6750
|
-
|
|
6751
|
-
|
|
6752
|
-
|
|
6753
|
-
|
|
6746
|
+
<goa-work-side-notification-item
|
|
6747
|
+
[attr.type]="type"
|
|
6748
|
+
[attr.timestamp]="timestamp"
|
|
6749
|
+
[attr.title]="title"
|
|
6750
|
+
[attr.description]="description"
|
|
6751
|
+
[attr.read-status]="readStatus"
|
|
6752
|
+
[attr.priority]="priority"
|
|
6753
|
+
[attr.testid]="testId"
|
|
6754
|
+
(_click)="_onClick()"
|
|
6755
|
+
/>
|
|
6754
6756
|
}
|
|
6755
6757
|
`,
|
|
6756
6758
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6757
6759
|
}]
|
|
6758
|
-
}],
|
|
6760
|
+
}], propDecorators: { type: [{
|
|
6759
6761
|
type: Input
|
|
6760
6762
|
}], timestamp: [{
|
|
6761
6763
|
type: Input
|
|
@@ -6775,8 +6777,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6775
6777
|
}] } });
|
|
6776
6778
|
|
|
6777
6779
|
class GoabWorkSideNotificationPanel {
|
|
6778
|
-
constructor(
|
|
6779
|
-
this.cdr =
|
|
6780
|
+
constructor() {
|
|
6781
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6780
6782
|
this.onMarkAllRead = new EventEmitter();
|
|
6781
6783
|
this.onViewAll = new EventEmitter();
|
|
6782
6784
|
this.isReady = false;
|
|
@@ -6793,42 +6795,42 @@ class GoabWorkSideNotificationPanel {
|
|
|
6793
6795
|
_onViewAll() {
|
|
6794
6796
|
this.onViewAll.emit();
|
|
6795
6797
|
}
|
|
6796
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.
|
|
6797
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.
|
|
6798
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideNotificationPanel, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6799
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.6", type: GoabWorkSideNotificationPanel, isStandalone: true, selector: "goab-work-side-notification-panel", inputs: { heading: "heading", activeTab: "activeTab", testId: "testId" }, outputs: { onMarkAllRead: "onMarkAllRead", onViewAll: "onViewAll" }, ngImport: i0, template: `
|
|
6798
6800
|
@if (isReady) {
|
|
6799
|
-
|
|
6800
|
-
|
|
6801
|
-
|
|
6802
|
-
|
|
6803
|
-
|
|
6804
|
-
|
|
6805
|
-
|
|
6806
|
-
|
|
6807
|
-
|
|
6801
|
+
<goa-work-side-notification-panel
|
|
6802
|
+
[attr.heading]="heading"
|
|
6803
|
+
[attr.active-tab]="activeTab"
|
|
6804
|
+
[attr.testid]="testId"
|
|
6805
|
+
(_markAllRead)="_onMarkAllRead()"
|
|
6806
|
+
(_viewAll)="_onViewAll()"
|
|
6807
|
+
>
|
|
6808
|
+
<ng-content />
|
|
6809
|
+
</goa-work-side-notification-panel>
|
|
6808
6810
|
}
|
|
6809
6811
|
`, isInline: true }); }
|
|
6810
6812
|
}
|
|
6811
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6813
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideNotificationPanel, decorators: [{
|
|
6812
6814
|
type: Component,
|
|
6813
6815
|
args: [{
|
|
6814
6816
|
standalone: true,
|
|
6815
6817
|
selector: "goab-work-side-notification-panel", // eslint-disable-line
|
|
6816
6818
|
template: `
|
|
6817
6819
|
@if (isReady) {
|
|
6818
|
-
|
|
6819
|
-
|
|
6820
|
-
|
|
6821
|
-
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
|
|
6826
|
-
|
|
6820
|
+
<goa-work-side-notification-panel
|
|
6821
|
+
[attr.heading]="heading"
|
|
6822
|
+
[attr.active-tab]="activeTab"
|
|
6823
|
+
[attr.testid]="testId"
|
|
6824
|
+
(_markAllRead)="_onMarkAllRead()"
|
|
6825
|
+
(_viewAll)="_onViewAll()"
|
|
6826
|
+
>
|
|
6827
|
+
<ng-content />
|
|
6828
|
+
</goa-work-side-notification-panel>
|
|
6827
6829
|
}
|
|
6828
6830
|
`,
|
|
6829
6831
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6830
6832
|
}]
|
|
6831
|
-
}],
|
|
6833
|
+
}], propDecorators: { heading: [{
|
|
6832
6834
|
type: Input
|
|
6833
6835
|
}], activeTab: [{
|
|
6834
6836
|
type: Input
|