@abgov/angular-components 5.0.0-next.1 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -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],
|
|
@@ -230,11 +232,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
230
232
|
}]
|
|
231
233
|
}] });
|
|
232
234
|
|
|
235
|
+
/** Provides shared margin and test id inputs for Angular GoA wrapper components. */
|
|
233
236
|
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.
|
|
237
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
238
|
+
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
239
|
}
|
|
237
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBaseComponent, decorators: [{
|
|
238
241
|
type: Component,
|
|
239
242
|
args: [{
|
|
240
243
|
standalone: true,
|
|
@@ -299,6 +302,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
299
302
|
* - `fcTouched?`: A function to handle touch events on the form control.
|
|
300
303
|
*/
|
|
301
304
|
class GoabControlValueAccessor extends GoabBaseComponent {
|
|
305
|
+
constructor() {
|
|
306
|
+
super(...arguments);
|
|
307
|
+
this.touched = false;
|
|
308
|
+
this.renderer = inject(Renderer2);
|
|
309
|
+
}
|
|
302
310
|
/**
|
|
303
311
|
* Marks the component as touched. If the component is not already marked as touched,
|
|
304
312
|
* it triggers the `fcTouched` callback (if defined) and sets the `touched` property to `true`.
|
|
@@ -309,11 +317,6 @@ class GoabControlValueAccessor extends GoabBaseComponent {
|
|
|
309
317
|
this.touched = true;
|
|
310
318
|
}
|
|
311
319
|
}
|
|
312
|
-
constructor(renderer) {
|
|
313
|
-
super();
|
|
314
|
-
this.renderer = renderer;
|
|
315
|
-
this.touched = false;
|
|
316
|
-
}
|
|
317
320
|
/**
|
|
318
321
|
* Convert an arbitrary value into a string for DOM attribute assignment.
|
|
319
322
|
* Child classes can override when they need special formatting.
|
|
@@ -360,16 +363,16 @@ class GoabControlValueAccessor extends GoabBaseComponent {
|
|
|
360
363
|
setDisabledState(isDisabled) {
|
|
361
364
|
this.disabled = isDisabled;
|
|
362
365
|
}
|
|
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.
|
|
366
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
367
|
+
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
368
|
}
|
|
366
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabControlValueAccessor, decorators: [{
|
|
367
370
|
type: Component,
|
|
368
371
|
args: [{
|
|
369
372
|
standalone: true,
|
|
370
373
|
template: ``, //** IMPLEMENT IN SUBCLASS
|
|
371
374
|
}]
|
|
372
|
-
}],
|
|
375
|
+
}], propDecorators: { id: [{
|
|
373
376
|
type: Input
|
|
374
377
|
}], disabled: [{
|
|
375
378
|
type: Input,
|
|
@@ -384,10 +387,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
384
387
|
args: ["goaComponentRef", { static: false, read: ElementRef }]
|
|
385
388
|
}] } });
|
|
386
389
|
|
|
390
|
+
/** Let users show and hide sections of related content on a page. */
|
|
387
391
|
class GoabAccordion extends GoabBaseComponent {
|
|
388
|
-
constructor(
|
|
389
|
-
super();
|
|
390
|
-
this.cdr =
|
|
392
|
+
constructor() {
|
|
393
|
+
super(...arguments);
|
|
394
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
395
|
+
/** Emits when the accordion opens or closes. Emits the new open state as a boolean. */
|
|
391
396
|
this.onChange = new EventEmitter();
|
|
392
397
|
this.isReady = false;
|
|
393
398
|
}
|
|
@@ -403,8 +408,8 @@ class GoabAccordion extends GoabBaseComponent {
|
|
|
403
408
|
const detail = e.detail;
|
|
404
409
|
this.onChange.emit(detail.open);
|
|
405
410
|
}
|
|
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.
|
|
411
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAccordion, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
412
|
+
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
413
|
@if (isReady) {
|
|
409
414
|
<goa-accordion
|
|
410
415
|
[attr.heading]="heading"
|
|
@@ -428,7 +433,7 @@ class GoabAccordion extends GoabBaseComponent {
|
|
|
428
433
|
}
|
|
429
434
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
430
435
|
}
|
|
431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
436
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAccordion, decorators: [{
|
|
432
437
|
type: Component,
|
|
433
438
|
args: [{
|
|
434
439
|
standalone: true,
|
|
@@ -459,7 +464,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
459
464
|
`,
|
|
460
465
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
461
466
|
}]
|
|
462
|
-
}],
|
|
467
|
+
}], propDecorators: { heading: [{
|
|
463
468
|
type: Input
|
|
464
469
|
}], secondaryText: [{
|
|
465
470
|
type: Input
|
|
@@ -478,11 +483,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
478
483
|
type: Output
|
|
479
484
|
}] } });
|
|
480
485
|
|
|
486
|
+
/** Small labels which hold small amounts of information, system feedback, or states. */
|
|
481
487
|
class GoabBadge extends GoabBaseComponent {
|
|
482
|
-
constructor(
|
|
483
|
-
super();
|
|
484
|
-
this.cdr =
|
|
488
|
+
constructor() {
|
|
489
|
+
super(...arguments);
|
|
490
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
491
|
+
/** Sets the size of the badge. @default "medium" */
|
|
485
492
|
this.size = "medium";
|
|
493
|
+
/** Sets the visual emphasis. 'subtle' for less prominent, 'strong' for more emphasis. @default "strong" */
|
|
486
494
|
this.emphasis = "strong";
|
|
487
495
|
this.isReady = false;
|
|
488
496
|
this.version = "2";
|
|
@@ -495,8 +503,8 @@ class GoabBadge extends GoabBaseComponent {
|
|
|
495
503
|
this.cdr.detectChanges();
|
|
496
504
|
}, 0);
|
|
497
505
|
}
|
|
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.
|
|
506
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBadge, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
507
|
+
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
508
|
@if (isReady) {
|
|
501
509
|
<goa-badge
|
|
502
510
|
[attr.version]="version"
|
|
@@ -517,7 +525,7 @@ class GoabBadge extends GoabBaseComponent {
|
|
|
517
525
|
}
|
|
518
526
|
`, isInline: true, styles: [":host{display:contents}\n"] }); }
|
|
519
527
|
}
|
|
520
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBadge, decorators: [{
|
|
521
529
|
type: Component,
|
|
522
530
|
args: [{ standalone: true, selector: "goab-badge", template: `
|
|
523
531
|
@if (isReady) {
|
|
@@ -539,7 +547,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
539
547
|
</goa-badge>
|
|
540
548
|
}
|
|
541
549
|
`, schemas: [CUSTOM_ELEMENTS_SCHEMA], styles: [":host{display:contents}\n"] }]
|
|
542
|
-
}],
|
|
550
|
+
}], propDecorators: { type: [{
|
|
543
551
|
type: Input
|
|
544
552
|
}], content: [{
|
|
545
553
|
type: Input
|
|
@@ -556,10 +564,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
556
564
|
type: Input
|
|
557
565
|
}] } });
|
|
558
566
|
|
|
567
|
+
/** Group components into a block with consistent space between. */
|
|
559
568
|
class GoabBlock extends GoabBaseComponent {
|
|
560
|
-
constructor(
|
|
561
|
-
super();
|
|
562
|
-
this.cdr =
|
|
569
|
+
constructor() {
|
|
570
|
+
super(...arguments);
|
|
571
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
563
572
|
this.isReady = false;
|
|
564
573
|
}
|
|
565
574
|
ngOnInit() {
|
|
@@ -570,8 +579,8 @@ class GoabBlock extends GoabBaseComponent {
|
|
|
570
579
|
this.cdr.detectChanges();
|
|
571
580
|
}, 0);
|
|
572
581
|
}
|
|
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.
|
|
582
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBlock, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
583
|
+
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
584
|
@if (isReady) {
|
|
576
585
|
<goa-block
|
|
577
586
|
[attr.gap]="gap"
|
|
@@ -591,7 +600,7 @@ class GoabBlock extends GoabBaseComponent {
|
|
|
591
600
|
}
|
|
592
601
|
`, isInline: true }); }
|
|
593
602
|
}
|
|
594
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabBlock, decorators: [{
|
|
595
604
|
type: Component,
|
|
596
605
|
args: [{
|
|
597
606
|
standalone: true,
|
|
@@ -617,7 +626,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
617
626
|
`,
|
|
618
627
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
619
628
|
}]
|
|
620
|
-
}],
|
|
629
|
+
}], propDecorators: { gap: [{
|
|
621
630
|
type: Input
|
|
622
631
|
}], direction: [{
|
|
623
632
|
type: Input
|
|
@@ -631,11 +640,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
631
640
|
type: Input
|
|
632
641
|
}] } });
|
|
633
642
|
|
|
643
|
+
/** Carry out an important action or navigate to another page. */
|
|
634
644
|
class GoabButton extends GoabBaseComponent {
|
|
635
|
-
constructor(
|
|
636
|
-
super();
|
|
637
|
-
this.cdr =
|
|
645
|
+
constructor() {
|
|
646
|
+
super(...arguments);
|
|
647
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
648
|
+
/** Sets the visual style of the button. Use "primary" for main actions, "secondary" for alternative actions, "tertiary" for low-emphasis actions, "start" for prominent call-to-action buttons, and "text" for text-only buttons. @default "primary" */
|
|
638
649
|
this.type = "primary";
|
|
650
|
+
/** Emits when the button is clicked. */
|
|
639
651
|
this.onClick = new EventEmitter();
|
|
640
652
|
this.isReady = false;
|
|
641
653
|
this.version = "2";
|
|
@@ -652,8 +664,8 @@ class GoabButton extends GoabBaseComponent {
|
|
|
652
664
|
_onClick() {
|
|
653
665
|
this.onClick.emit();
|
|
654
666
|
}
|
|
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.
|
|
667
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabButton, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
668
|
+
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
669
|
@if (isReady) {
|
|
658
670
|
<goa-button
|
|
659
671
|
[attr.version]="version"
|
|
@@ -679,7 +691,7 @@ class GoabButton extends GoabBaseComponent {
|
|
|
679
691
|
}
|
|
680
692
|
`, isInline: true }); }
|
|
681
693
|
}
|
|
682
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
694
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabButton, decorators: [{
|
|
683
695
|
type: Component,
|
|
684
696
|
args: [{
|
|
685
697
|
standalone: true,
|
|
@@ -711,7 +723,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
711
723
|
`,
|
|
712
724
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
713
725
|
}]
|
|
714
|
-
}],
|
|
726
|
+
}], propDecorators: { type: [{
|
|
715
727
|
type: Input
|
|
716
728
|
}], size: [{
|
|
717
729
|
type: Input
|
|
@@ -736,10 +748,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
736
748
|
type: Output
|
|
737
749
|
}] } });
|
|
738
750
|
|
|
751
|
+
/** Display multiple related actions stacked or in a horizontal row to help with arrangement and spacing. */
|
|
739
752
|
class GoabButtonGroup extends GoabBaseComponent {
|
|
740
|
-
constructor(
|
|
741
|
-
super();
|
|
742
|
-
this.cdr =
|
|
753
|
+
constructor() {
|
|
754
|
+
super(...arguments);
|
|
755
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
743
756
|
this.isReady = false;
|
|
744
757
|
}
|
|
745
758
|
ngOnInit() {
|
|
@@ -750,8 +763,8 @@ class GoabButtonGroup extends GoabBaseComponent {
|
|
|
750
763
|
this.cdr.detectChanges();
|
|
751
764
|
}, 0);
|
|
752
765
|
}
|
|
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.
|
|
766
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabButtonGroup, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
767
|
+
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
768
|
@if (isReady) {
|
|
756
769
|
<goa-button-group
|
|
757
770
|
[attr.alignment]="alignment"
|
|
@@ -767,7 +780,7 @@ class GoabButtonGroup extends GoabBaseComponent {
|
|
|
767
780
|
}
|
|
768
781
|
`, isInline: true }); }
|
|
769
782
|
}
|
|
770
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
783
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabButtonGroup, decorators: [{
|
|
771
784
|
type: Component,
|
|
772
785
|
args: [{
|
|
773
786
|
standalone: true,
|
|
@@ -789,13 +802,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
789
802
|
`,
|
|
790
803
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
791
804
|
}]
|
|
792
|
-
}],
|
|
805
|
+
}], propDecorators: { alignment: [{
|
|
793
806
|
type: Input
|
|
794
807
|
}], gap: [{
|
|
795
808
|
type: Input
|
|
796
809
|
}] } });
|
|
797
810
|
|
|
811
|
+
/** Visual calendar for date selection. */
|
|
798
812
|
class GoabCalendar extends GoabBaseComponent {
|
|
813
|
+
constructor() {
|
|
814
|
+
super(...arguments);
|
|
815
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
816
|
+
this.version = "2";
|
|
817
|
+
/** Emits when the selected date changes. Emits the selected date details as GoabCalendarOnChangeDetail. */
|
|
818
|
+
this.onChange = new EventEmitter();
|
|
819
|
+
this.isReady = false;
|
|
820
|
+
this.once = new Once();
|
|
821
|
+
}
|
|
799
822
|
formatValue(param, val) {
|
|
800
823
|
if (!val)
|
|
801
824
|
return "";
|
|
@@ -813,14 +836,6 @@ class GoabCalendar extends GoabBaseComponent {
|
|
|
813
836
|
maxString() {
|
|
814
837
|
return this.formatValue("max", this.max);
|
|
815
838
|
}
|
|
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
839
|
ngOnInit() {
|
|
825
840
|
// For Angular 20, we need to delay rendering the web component
|
|
826
841
|
// to ensure all attributes are properly bound before the component initializes
|
|
@@ -833,8 +848,8 @@ class GoabCalendar extends GoabBaseComponent {
|
|
|
833
848
|
const details = e.detail;
|
|
834
849
|
this.onChange.emit(details);
|
|
835
850
|
}
|
|
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.
|
|
851
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCalendar, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
852
|
+
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
853
|
@if (isReady) {
|
|
839
854
|
<goa-calendar
|
|
840
855
|
[attr.name]="name"
|
|
@@ -854,7 +869,7 @@ class GoabCalendar extends GoabBaseComponent {
|
|
|
854
869
|
}
|
|
855
870
|
`, isInline: true }); }
|
|
856
871
|
}
|
|
857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
872
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCalendar, decorators: [{
|
|
858
873
|
type: Component,
|
|
859
874
|
args: [{
|
|
860
875
|
standalone: true,
|
|
@@ -880,7 +895,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
880
895
|
`,
|
|
881
896
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
882
897
|
}]
|
|
883
|
-
}],
|
|
898
|
+
}], propDecorators: { name: [{
|
|
884
899
|
type: Input
|
|
885
900
|
}], value: [{
|
|
886
901
|
type: Input
|
|
@@ -892,17 +907,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
892
907
|
type: Output
|
|
893
908
|
}] } });
|
|
894
909
|
|
|
910
|
+
/** Communicate important information through a strong visual emphasis. */
|
|
895
911
|
class GoabCallout extends GoabBaseComponent {
|
|
896
|
-
constructor(
|
|
897
|
-
super();
|
|
898
|
-
this.cdr =
|
|
912
|
+
constructor() {
|
|
913
|
+
super(...arguments);
|
|
914
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
899
915
|
this.isReady = false;
|
|
900
916
|
this.version = "2";
|
|
917
|
+
/** Define the context and colour of the callout. @default "information" */
|
|
901
918
|
this.type = "information";
|
|
919
|
+
/** Callout heading text. */
|
|
902
920
|
this.heading = "";
|
|
921
|
+
/** Sets the size of the callout. 'medium' has reduced padding and type size for compact areas. @default "large" */
|
|
903
922
|
this.size = "large";
|
|
923
|
+
/** Indicates how assistive technology should handle updates to the live region. @default "off" */
|
|
904
924
|
this.ariaLive = "off";
|
|
925
|
+
/** Sets the icon theme. 'outline' for stroked icons, 'filled' for solid icons. @default "outline" */
|
|
905
926
|
this.iconTheme = "outline";
|
|
927
|
+
/** Sets the visual prominence. 'high' for full background, 'medium' for subtle, 'low' for minimal. @default "medium" */
|
|
906
928
|
this.emphasis = "medium";
|
|
907
929
|
}
|
|
908
930
|
ngOnInit() {
|
|
@@ -913,8 +935,8 @@ class GoabCallout extends GoabBaseComponent {
|
|
|
913
935
|
this.cdr.detectChanges();
|
|
914
936
|
}, 0);
|
|
915
937
|
}
|
|
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.
|
|
938
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCallout, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
939
|
+
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
940
|
@if (isReady) {
|
|
919
941
|
<goa-callout
|
|
920
942
|
[attr.version]="version"
|
|
@@ -936,7 +958,7 @@ class GoabCallout extends GoabBaseComponent {
|
|
|
936
958
|
}
|
|
937
959
|
`, isInline: true }); }
|
|
938
960
|
}
|
|
939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
961
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCallout, decorators: [{
|
|
940
962
|
type: Component,
|
|
941
963
|
args: [{
|
|
942
964
|
standalone: true,
|
|
@@ -964,7 +986,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
964
986
|
`,
|
|
965
987
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
966
988
|
}]
|
|
967
|
-
}],
|
|
989
|
+
}], propDecorators: { type: [{
|
|
968
990
|
type: Input
|
|
969
991
|
}], heading: [{
|
|
970
992
|
type: Input
|
|
@@ -980,10 +1002,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
980
1002
|
type: Input
|
|
981
1003
|
}] } });
|
|
982
1004
|
|
|
1005
|
+
/** A container that groups related content and actions. */
|
|
983
1006
|
class GoabCard extends GoabBaseComponent {
|
|
984
|
-
constructor(
|
|
985
|
-
super();
|
|
986
|
-
this.cdr =
|
|
1007
|
+
constructor() {
|
|
1008
|
+
super(...arguments);
|
|
1009
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
987
1010
|
this.isReady = false;
|
|
988
1011
|
}
|
|
989
1012
|
ngOnInit() {
|
|
@@ -994,8 +1017,8 @@ class GoabCard extends GoabBaseComponent {
|
|
|
994
1017
|
this.cdr.detectChanges();
|
|
995
1018
|
}, 0);
|
|
996
1019
|
}
|
|
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.
|
|
1020
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCard, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1021
|
+
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
1022
|
@if (isReady) {
|
|
1000
1023
|
<goa-card
|
|
1001
1024
|
[attr.elevation]="elevation"
|
|
@@ -1011,7 +1034,7 @@ class GoabCard extends GoabBaseComponent {
|
|
|
1011
1034
|
}
|
|
1012
1035
|
`, isInline: true }); }
|
|
1013
1036
|
}
|
|
1014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCard, decorators: [{
|
|
1015
1038
|
type: Component,
|
|
1016
1039
|
args: [{
|
|
1017
1040
|
standalone: true,
|
|
@@ -1033,16 +1056,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1033
1056
|
`,
|
|
1034
1057
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1035
1058
|
}]
|
|
1036
|
-
}],
|
|
1059
|
+
}], propDecorators: { elevation: [{
|
|
1037
1060
|
type: Input,
|
|
1038
1061
|
args: [{ transform: numberAttribute }]
|
|
1039
1062
|
}], width: [{
|
|
1040
1063
|
type: Input
|
|
1041
1064
|
}] } });
|
|
1042
1065
|
|
|
1066
|
+
/** A container that groups related content and actions. */
|
|
1043
1067
|
class GoabCardContent {
|
|
1044
|
-
constructor(
|
|
1045
|
-
this.cdr =
|
|
1068
|
+
constructor() {
|
|
1069
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1046
1070
|
this.isReady = false;
|
|
1047
1071
|
}
|
|
1048
1072
|
ngOnInit() {
|
|
@@ -1053,8 +1077,8 @@ class GoabCardContent {
|
|
|
1053
1077
|
this.cdr.detectChanges();
|
|
1054
1078
|
}, 0);
|
|
1055
1079
|
}
|
|
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.
|
|
1080
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardContent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1081
|
+
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
1082
|
@if (isReady) {
|
|
1059
1083
|
<goa-card-content>
|
|
1060
1084
|
<ng-content />
|
|
@@ -1062,7 +1086,7 @@ class GoabCardContent {
|
|
|
1062
1086
|
}
|
|
1063
1087
|
`, isInline: true }); }
|
|
1064
1088
|
}
|
|
1065
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1089
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardContent, decorators: [{
|
|
1066
1090
|
type: Component,
|
|
1067
1091
|
args: [{
|
|
1068
1092
|
standalone: true,
|
|
@@ -1076,11 +1100,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1076
1100
|
`,
|
|
1077
1101
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1078
1102
|
}]
|
|
1079
|
-
}]
|
|
1103
|
+
}] });
|
|
1080
1104
|
|
|
1105
|
+
/** A container that groups related content and actions. */
|
|
1081
1106
|
class GoabCardActions {
|
|
1082
|
-
constructor(
|
|
1083
|
-
this.cdr =
|
|
1107
|
+
constructor() {
|
|
1108
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1084
1109
|
this.isReady = false;
|
|
1085
1110
|
}
|
|
1086
1111
|
ngOnInit() {
|
|
@@ -1091,8 +1116,8 @@ class GoabCardActions {
|
|
|
1091
1116
|
this.cdr.detectChanges();
|
|
1092
1117
|
}, 0);
|
|
1093
1118
|
}
|
|
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.
|
|
1119
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardActions, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1120
|
+
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
1121
|
@if (isReady) {
|
|
1097
1122
|
<goa-card-actions>
|
|
1098
1123
|
<ng-content />
|
|
@@ -1100,7 +1125,7 @@ class GoabCardActions {
|
|
|
1100
1125
|
}
|
|
1101
1126
|
`, isInline: true }); }
|
|
1102
1127
|
}
|
|
1103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1128
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardActions, decorators: [{
|
|
1104
1129
|
type: Component,
|
|
1105
1130
|
args: [{
|
|
1106
1131
|
standalone: true,
|
|
@@ -1114,11 +1139,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1114
1139
|
`,
|
|
1115
1140
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1116
1141
|
}]
|
|
1117
|
-
}]
|
|
1142
|
+
}] });
|
|
1118
1143
|
|
|
1144
|
+
/** A container that groups related content and actions. */
|
|
1119
1145
|
class GoabCardImage {
|
|
1120
|
-
constructor(
|
|
1121
|
-
this.cdr =
|
|
1146
|
+
constructor() {
|
|
1147
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1122
1148
|
this.isReady = false;
|
|
1123
1149
|
}
|
|
1124
1150
|
ngOnInit() {
|
|
@@ -1129,8 +1155,8 @@ class GoabCardImage {
|
|
|
1129
1155
|
this.cdr.detectChanges();
|
|
1130
1156
|
}, 0);
|
|
1131
1157
|
}
|
|
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.
|
|
1158
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardImage, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1159
|
+
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
1160
|
@if (isReady) {
|
|
1135
1161
|
<goa-card-image [attr.src]="src" [attr.height]="height">
|
|
1136
1162
|
<ng-content />
|
|
@@ -1138,7 +1164,7 @@ class GoabCardImage {
|
|
|
1138
1164
|
}
|
|
1139
1165
|
`, isInline: true }); }
|
|
1140
1166
|
}
|
|
1141
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1167
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCardImage, decorators: [{
|
|
1142
1168
|
type: Component,
|
|
1143
1169
|
args: [{
|
|
1144
1170
|
standalone: true,
|
|
@@ -1152,7 +1178,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1152
1178
|
`,
|
|
1153
1179
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1154
1180
|
}]
|
|
1155
|
-
}],
|
|
1181
|
+
}], propDecorators: { src: [{
|
|
1156
1182
|
type: Input,
|
|
1157
1183
|
args: [{ required: true }]
|
|
1158
1184
|
}], height: [{
|
|
@@ -1160,13 +1186,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1160
1186
|
args: [{ required: true }]
|
|
1161
1187
|
}] } });
|
|
1162
1188
|
|
|
1189
|
+
/** Let the user select one or more options. */
|
|
1163
1190
|
class GoabCheckbox extends GoabControlValueAccessor {
|
|
1164
|
-
constructor(
|
|
1165
|
-
super(
|
|
1166
|
-
this.cdr =
|
|
1191
|
+
constructor() {
|
|
1192
|
+
super(...arguments);
|
|
1193
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1167
1194
|
this.isReady = false;
|
|
1168
1195
|
this.version = "2";
|
|
1196
|
+
/** Sets the size of the checkbox. 'compact' reduces spacing for dense layouts. @default "default" */
|
|
1169
1197
|
this.size = "default";
|
|
1198
|
+
/** Emits when the checkbox value changes. Emits the new checkbox state as a GoabCheckboxOnChangeDetail object. */
|
|
1170
1199
|
this.onChange = new EventEmitter();
|
|
1171
1200
|
}
|
|
1172
1201
|
ngOnInit() {
|
|
@@ -1201,8 +1230,8 @@ class GoabCheckbox extends GoabControlValueAccessor {
|
|
|
1201
1230
|
this.renderer.setAttribute(el, "checked", this.checked ? "true" : "false");
|
|
1202
1231
|
}
|
|
1203
1232
|
}
|
|
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.
|
|
1233
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCheckbox, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1234
|
+
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
1235
|
{
|
|
1207
1236
|
provide: NG_VALUE_ACCESSOR,
|
|
1208
1237
|
multi: true,
|
|
@@ -1244,7 +1273,7 @@ class GoabCheckbox extends GoabControlValueAccessor {
|
|
|
1244
1273
|
</goa-checkbox>
|
|
1245
1274
|
}`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
1246
1275
|
}
|
|
1247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1276
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCheckbox, decorators: [{
|
|
1248
1277
|
type: Component,
|
|
1249
1278
|
args: [{
|
|
1250
1279
|
standalone: true,
|
|
@@ -1294,7 +1323,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1294
1323
|
],
|
|
1295
1324
|
imports: [NgTemplateOutlet],
|
|
1296
1325
|
}]
|
|
1297
|
-
}],
|
|
1326
|
+
}], propDecorators: { name: [{
|
|
1298
1327
|
type: Input
|
|
1299
1328
|
}], checked: [{
|
|
1300
1329
|
type: Input,
|
|
@@ -1322,13 +1351,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1322
1351
|
type: Output
|
|
1323
1352
|
}] } });
|
|
1324
1353
|
|
|
1354
|
+
/** A multiple selection input. */
|
|
1325
1355
|
class GoabCheckboxList extends GoabControlValueAccessor {
|
|
1326
|
-
constructor(
|
|
1327
|
-
super(
|
|
1328
|
-
this.cdr =
|
|
1356
|
+
constructor() {
|
|
1357
|
+
super(...arguments);
|
|
1358
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1329
1359
|
this.isReady = false;
|
|
1330
1360
|
this.version = "2";
|
|
1361
|
+
/** Sets the size of the checkbox list. 'compact' reduces spacing between items. @default "default" */
|
|
1331
1362
|
this.size = "default";
|
|
1363
|
+
/** Emits when a checkbox selection changes. Emits the change detail including name, value array, and event. */
|
|
1332
1364
|
this.onChange = new EventEmitter();
|
|
1333
1365
|
}
|
|
1334
1366
|
ngOnInit() {
|
|
@@ -1355,8 +1387,8 @@ class GoabCheckboxList extends GoabControlValueAccessor {
|
|
|
1355
1387
|
// clone to ensure a new reference and trigger downstream updates
|
|
1356
1388
|
this.value = Array.isArray(value) ? [...value] : [];
|
|
1357
1389
|
}
|
|
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.
|
|
1390
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCheckboxList, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1391
|
+
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
1392
|
{
|
|
1361
1393
|
provide: NG_VALUE_ACCESSOR,
|
|
1362
1394
|
multi: true,
|
|
@@ -1383,7 +1415,7 @@ class GoabCheckboxList extends GoabControlValueAccessor {
|
|
|
1383
1415
|
</goa-checkbox-list>
|
|
1384
1416
|
}`, isInline: true }); }
|
|
1385
1417
|
}
|
|
1386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1418
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCheckboxList, decorators: [{
|
|
1387
1419
|
type: Component,
|
|
1388
1420
|
args: [{
|
|
1389
1421
|
standalone: true,
|
|
@@ -1417,7 +1449,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1417
1449
|
},
|
|
1418
1450
|
],
|
|
1419
1451
|
}]
|
|
1420
|
-
}],
|
|
1452
|
+
}], propDecorators: { name: [{
|
|
1421
1453
|
type: Input
|
|
1422
1454
|
}], maxWidth: [{
|
|
1423
1455
|
type: Input
|
|
@@ -1429,12 +1461,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1429
1461
|
type: Output
|
|
1430
1462
|
}] } });
|
|
1431
1463
|
|
|
1464
|
+
/** Compact element for labels, tags, or selections. */
|
|
1432
1465
|
class GoabChip extends GoabBaseComponent {
|
|
1433
|
-
constructor(
|
|
1434
|
-
super();
|
|
1435
|
-
this.cdr =
|
|
1466
|
+
constructor() {
|
|
1467
|
+
super(...arguments);
|
|
1468
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1436
1469
|
this.isReady = false;
|
|
1470
|
+
/** @deprecated Use GoAFilterChip instead. The text content displayed in the chip. */
|
|
1437
1471
|
this.content = "";
|
|
1472
|
+
/** Emits when the chip is clicked. */
|
|
1438
1473
|
this.onClick = new EventEmitter();
|
|
1439
1474
|
}
|
|
1440
1475
|
ngOnInit() {
|
|
@@ -1448,8 +1483,8 @@ class GoabChip extends GoabBaseComponent {
|
|
|
1448
1483
|
_onClick() {
|
|
1449
1484
|
this.onClick.emit();
|
|
1450
1485
|
}
|
|
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.
|
|
1486
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabChip, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1487
|
+
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
1488
|
<goa-chip
|
|
1454
1489
|
[attr.leadingicon]="leadingIcon"
|
|
1455
1490
|
[attr.variant]="variant"
|
|
@@ -1468,7 +1503,7 @@ class GoabChip extends GoabBaseComponent {
|
|
|
1468
1503
|
</goa-chip>
|
|
1469
1504
|
}`, isInline: true }); }
|
|
1470
1505
|
}
|
|
1471
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabChip, decorators: [{
|
|
1472
1507
|
type: Component,
|
|
1473
1508
|
args: [{
|
|
1474
1509
|
standalone: true,
|
|
@@ -1493,7 +1528,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1493
1528
|
}`,
|
|
1494
1529
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1495
1530
|
}]
|
|
1496
|
-
}],
|
|
1531
|
+
}], propDecorators: { leadingIcon: [{
|
|
1497
1532
|
type: Input
|
|
1498
1533
|
}], error: [{
|
|
1499
1534
|
type: Input,
|
|
@@ -1511,9 +1546,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1511
1546
|
type: Output
|
|
1512
1547
|
}] } });
|
|
1513
1548
|
|
|
1549
|
+
/** Provide feedback of progress to users while loading. */
|
|
1514
1550
|
class GoabCircularProgress {
|
|
1515
|
-
constructor(
|
|
1516
|
-
this.cdr =
|
|
1551
|
+
constructor() {
|
|
1552
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1517
1553
|
this.isReady = false;
|
|
1518
1554
|
}
|
|
1519
1555
|
ngOnInit() {
|
|
@@ -1524,8 +1560,8 @@ class GoabCircularProgress {
|
|
|
1524
1560
|
this.cdr.detectChanges();
|
|
1525
1561
|
}, 0);
|
|
1526
1562
|
}
|
|
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.
|
|
1563
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCircularProgress, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1564
|
+
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
1565
|
@if (isReady) {
|
|
1530
1566
|
<goa-circular-progress
|
|
1531
1567
|
[attr.variant]="variant || 'inline'"
|
|
@@ -1539,7 +1575,7 @@ class GoabCircularProgress {
|
|
|
1539
1575
|
}
|
|
1540
1576
|
`, isInline: true }); }
|
|
1541
1577
|
}
|
|
1542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabCircularProgress, decorators: [{
|
|
1543
1579
|
type: Component,
|
|
1544
1580
|
args: [{
|
|
1545
1581
|
standalone: true,
|
|
@@ -1559,7 +1595,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1559
1595
|
`,
|
|
1560
1596
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1561
1597
|
}]
|
|
1562
|
-
}],
|
|
1598
|
+
}], propDecorators: { variant: [{
|
|
1563
1599
|
type: Input
|
|
1564
1600
|
}], size: [{
|
|
1565
1601
|
type: Input
|
|
@@ -1575,9 +1611,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1575
1611
|
type: Input
|
|
1576
1612
|
}] } });
|
|
1577
1613
|
|
|
1614
|
+
/** Organizes page content in one, two, or three responsive columns. */
|
|
1578
1615
|
class GoabColumnLayout {
|
|
1579
|
-
constructor(
|
|
1580
|
-
this.cdr =
|
|
1616
|
+
constructor() {
|
|
1617
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1581
1618
|
/** no props **/
|
|
1582
1619
|
this.isReady = false;
|
|
1583
1620
|
}
|
|
@@ -1589,8 +1626,8 @@ class GoabColumnLayout {
|
|
|
1589
1626
|
this.cdr.detectChanges();
|
|
1590
1627
|
}, 0);
|
|
1591
1628
|
}
|
|
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.
|
|
1629
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabColumnLayout, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1630
|
+
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
1631
|
@if (isReady) {
|
|
1595
1632
|
<goa-one-column-layout>
|
|
1596
1633
|
<ng-content />
|
|
@@ -1598,7 +1635,7 @@ class GoabColumnLayout {
|
|
|
1598
1635
|
}
|
|
1599
1636
|
`, isInline: true }); }
|
|
1600
1637
|
}
|
|
1601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1638
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabColumnLayout, decorators: [{
|
|
1602
1639
|
type: Component,
|
|
1603
1640
|
args: [{
|
|
1604
1641
|
standalone: true,
|
|
@@ -1612,15 +1649,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1612
1649
|
`,
|
|
1613
1650
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1614
1651
|
}]
|
|
1615
|
-
}]
|
|
1652
|
+
}] });
|
|
1616
1653
|
|
|
1654
|
+
/** Group information, create hierarchy, and show related information. */
|
|
1617
1655
|
class GoabContainer extends GoabBaseComponent {
|
|
1618
|
-
constructor(
|
|
1619
|
-
super();
|
|
1620
|
-
this.cdr =
|
|
1656
|
+
constructor() {
|
|
1657
|
+
super(...arguments);
|
|
1658
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1659
|
+
/** Sets the container and accent bar styling. @default "interactive" */
|
|
1621
1660
|
this.type = "interactive";
|
|
1661
|
+
/** Sets the style of accent on the container. @default "filled" */
|
|
1622
1662
|
this.accent = "filled";
|
|
1663
|
+
/** Sets the amount of white space in the container. @default "relaxed" */
|
|
1623
1664
|
this.padding = "relaxed";
|
|
1665
|
+
/** Sets the width of the container. @default "full" */
|
|
1624
1666
|
this.width = "full";
|
|
1625
1667
|
this.isReady = false;
|
|
1626
1668
|
}
|
|
@@ -1632,8 +1674,8 @@ class GoabContainer extends GoabBaseComponent {
|
|
|
1632
1674
|
this.cdr.detectChanges();
|
|
1633
1675
|
}, 0);
|
|
1634
1676
|
}
|
|
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.
|
|
1677
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabContainer, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1678
|
+
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
1679
|
<goa-container
|
|
1638
1680
|
[attr.type]="type"
|
|
1639
1681
|
[attr.accent]="accent"
|
|
@@ -1662,7 +1704,7 @@ class GoabContainer extends GoabBaseComponent {
|
|
|
1662
1704
|
</goa-container>
|
|
1663
1705
|
}`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
1664
1706
|
}
|
|
1665
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1707
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabContainer, decorators: [{
|
|
1666
1708
|
type: Component,
|
|
1667
1709
|
args: [{
|
|
1668
1710
|
standalone: true,
|
|
@@ -1698,7 +1740,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1698
1740
|
}`,
|
|
1699
1741
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1700
1742
|
}]
|
|
1701
|
-
}],
|
|
1743
|
+
}], propDecorators: { type: [{
|
|
1702
1744
|
type: Input
|
|
1703
1745
|
}], accent: [{
|
|
1704
1746
|
type: Input
|
|
@@ -1718,10 +1760,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1718
1760
|
type: Input
|
|
1719
1761
|
}] } });
|
|
1720
1762
|
|
|
1763
|
+
/** Advanced table with sorting and selection. */
|
|
1721
1764
|
class GoabDataGrid {
|
|
1722
|
-
constructor(
|
|
1723
|
-
this.cdr =
|
|
1765
|
+
constructor() {
|
|
1766
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1767
|
+
/** Controls visibility of the keyboard navigation indicator icon. Use "visible" to show or "hidden" to hide. @default "visible" */
|
|
1724
1768
|
this.keyboardIconVisibility = "visible";
|
|
1769
|
+
/** Position of the keyboard navigation indicator icon. @default "left" */
|
|
1725
1770
|
this.keyboardIconPosition = "left";
|
|
1726
1771
|
this.isReady = false;
|
|
1727
1772
|
}
|
|
@@ -1733,8 +1778,8 @@ class GoabDataGrid {
|
|
|
1733
1778
|
this.cdr.detectChanges();
|
|
1734
1779
|
}, 0);
|
|
1735
1780
|
}
|
|
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.
|
|
1781
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDataGrid, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1782
|
+
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
1783
|
@if (isReady) {
|
|
1739
1784
|
<goa-data-grid
|
|
1740
1785
|
[attr.keyboard-icon-visibility]="keyboardIconVisibility"
|
|
@@ -1746,7 +1791,7 @@ class GoabDataGrid {
|
|
|
1746
1791
|
}
|
|
1747
1792
|
`, isInline: true }); }
|
|
1748
1793
|
}
|
|
1749
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1794
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDataGrid, decorators: [{
|
|
1750
1795
|
type: Component,
|
|
1751
1796
|
args: [{
|
|
1752
1797
|
standalone: true,
|
|
@@ -1764,7 +1809,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1764
1809
|
`,
|
|
1765
1810
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1766
1811
|
}]
|
|
1767
|
-
}],
|
|
1812
|
+
}], propDecorators: { keyboardIconVisibility: [{
|
|
1768
1813
|
type: Input
|
|
1769
1814
|
}], keyboardIconPosition: [{
|
|
1770
1815
|
type: Input
|
|
@@ -1773,7 +1818,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1773
1818
|
args: [{ required: true }]
|
|
1774
1819
|
}] } });
|
|
1775
1820
|
|
|
1821
|
+
/** Lets users select a date through a calendar without the need to manually type it in a field. */
|
|
1776
1822
|
class GoabDatePicker extends GoabControlValueAccessor {
|
|
1823
|
+
constructor() {
|
|
1824
|
+
super(...arguments);
|
|
1825
|
+
this.elementRef = inject(ElementRef);
|
|
1826
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1827
|
+
this.isReady = false;
|
|
1828
|
+
this.version = "2";
|
|
1829
|
+
/** Emits when the selected date changes. Emits the date picker change detail including name and value. */
|
|
1830
|
+
this.onChange = new EventEmitter();
|
|
1831
|
+
this.once = new Once();
|
|
1832
|
+
}
|
|
1777
1833
|
formatValue(param, val) {
|
|
1778
1834
|
if (!val)
|
|
1779
1835
|
return "";
|
|
@@ -1800,15 +1856,6 @@ class GoabDatePicker extends GoabControlValueAccessor {
|
|
|
1800
1856
|
this.markAsTouched();
|
|
1801
1857
|
this.fcChange?.(detail.value);
|
|
1802
1858
|
}
|
|
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
1859
|
ngOnInit() {
|
|
1813
1860
|
// For Angular 20, we need to delay rendering the web component
|
|
1814
1861
|
// to ensure all attributes are properly bound before the component initializes
|
|
@@ -1840,8 +1887,8 @@ class GoabDatePicker extends GoabControlValueAccessor {
|
|
|
1840
1887
|
}
|
|
1841
1888
|
}
|
|
1842
1889
|
}
|
|
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.
|
|
1890
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDatePicker, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1891
|
+
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
1892
|
{
|
|
1846
1893
|
provide: NG_VALUE_ACCESSOR,
|
|
1847
1894
|
multi: true,
|
|
@@ -1870,7 +1917,7 @@ class GoabDatePicker extends GoabControlValueAccessor {
|
|
|
1870
1917
|
</goa-date-picker>
|
|
1871
1918
|
}`, isInline: true }); }
|
|
1872
1919
|
}
|
|
1873
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
1920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDatePicker, decorators: [{
|
|
1874
1921
|
type: Component,
|
|
1875
1922
|
args: [{
|
|
1876
1923
|
standalone: true,
|
|
@@ -1906,7 +1953,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1906
1953
|
},
|
|
1907
1954
|
],
|
|
1908
1955
|
}]
|
|
1909
|
-
}],
|
|
1956
|
+
}], propDecorators: { name: [{
|
|
1910
1957
|
type: Input
|
|
1911
1958
|
}], value: [{
|
|
1912
1959
|
type: Input
|
|
@@ -1927,10 +1974,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1927
1974
|
args: ["disabledChange", ["$event"]]
|
|
1928
1975
|
}] } });
|
|
1929
1976
|
|
|
1977
|
+
/** Let users reveal more detailed information when they need it. */
|
|
1930
1978
|
class GoabDetails extends GoabBaseComponent {
|
|
1931
|
-
constructor(
|
|
1932
|
-
super();
|
|
1933
|
-
this.cdr =
|
|
1979
|
+
constructor() {
|
|
1980
|
+
super(...arguments);
|
|
1981
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1934
1982
|
this.isReady = false;
|
|
1935
1983
|
}
|
|
1936
1984
|
ngOnInit() {
|
|
@@ -1941,8 +1989,8 @@ class GoabDetails extends GoabBaseComponent {
|
|
|
1941
1989
|
this.cdr.detectChanges();
|
|
1942
1990
|
}, 0);
|
|
1943
1991
|
}
|
|
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.
|
|
1992
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDetails, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1993
|
+
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
1994
|
@if (isReady) {
|
|
1947
1995
|
<goa-details
|
|
1948
1996
|
[attr.heading]="heading"
|
|
@@ -1959,7 +2007,7 @@ class GoabDetails extends GoabBaseComponent {
|
|
|
1959
2007
|
}
|
|
1960
2008
|
`, isInline: true }); }
|
|
1961
2009
|
}
|
|
1962
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2010
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDetails, decorators: [{
|
|
1963
2011
|
type: Component,
|
|
1964
2012
|
args: [{
|
|
1965
2013
|
standalone: true,
|
|
@@ -1982,7 +2030,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1982
2030
|
`,
|
|
1983
2031
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1984
2032
|
}]
|
|
1985
|
-
}],
|
|
2033
|
+
}], propDecorators: { heading: [{
|
|
1986
2034
|
type: Input,
|
|
1987
2035
|
args: [{ required: true }]
|
|
1988
2036
|
}], open: [{
|
|
@@ -1992,10 +2040,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
1992
2040
|
type: Input
|
|
1993
2041
|
}] } });
|
|
1994
2042
|
|
|
2043
|
+
/** Indicate a separation of layout, or to distinguish large chunks of information on a page. */
|
|
1995
2044
|
class GoabDivider extends GoabBaseComponent {
|
|
1996
|
-
constructor(
|
|
1997
|
-
super();
|
|
1998
|
-
this.cdr =
|
|
2045
|
+
constructor() {
|
|
2046
|
+
super(...arguments);
|
|
2047
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
1999
2048
|
this.isReady = false;
|
|
2000
2049
|
}
|
|
2001
2050
|
ngOnInit() {
|
|
@@ -2006,8 +2055,8 @@ class GoabDivider extends GoabBaseComponent {
|
|
|
2006
2055
|
this.cdr.detectChanges();
|
|
2007
2056
|
}, 0);
|
|
2008
2057
|
}
|
|
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.
|
|
2058
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDivider, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2059
|
+
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
2060
|
@if (isReady) {
|
|
2012
2061
|
<goa-divider
|
|
2013
2062
|
[attr.testid]="testId"
|
|
@@ -2020,7 +2069,7 @@ class GoabDivider extends GoabBaseComponent {
|
|
|
2020
2069
|
}
|
|
2021
2070
|
`, isInline: true }); }
|
|
2022
2071
|
}
|
|
2023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2072
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDivider, decorators: [{
|
|
2024
2073
|
type: Component,
|
|
2025
2074
|
args: [{
|
|
2026
2075
|
standalone: true,
|
|
@@ -2039,12 +2088,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2039
2088
|
`,
|
|
2040
2089
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2041
2090
|
}]
|
|
2042
|
-
}]
|
|
2091
|
+
}] });
|
|
2043
2092
|
|
|
2093
|
+
/** A panel that slides in from the side of the screen to display additional content or actions without navigating away from the current view. */
|
|
2044
2094
|
class GoabDrawer {
|
|
2045
|
-
constructor(
|
|
2046
|
-
this.cdr =
|
|
2095
|
+
constructor() {
|
|
2096
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2047
2097
|
this.version = "2";
|
|
2098
|
+
/** Emits when the drawer is closed. */
|
|
2048
2099
|
this.onClose = new EventEmitter();
|
|
2049
2100
|
this.isReady = false;
|
|
2050
2101
|
}
|
|
@@ -2067,8 +2118,8 @@ class GoabDrawer {
|
|
|
2067
2118
|
return null;
|
|
2068
2119
|
return this.heading instanceof TemplateRef ? this.heading : null;
|
|
2069
2120
|
}
|
|
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.
|
|
2121
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDrawer, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2122
|
+
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
2123
|
<goa-drawer
|
|
2073
2124
|
[open]="open"
|
|
2074
2125
|
[attr.position]="position"
|
|
@@ -2088,7 +2139,7 @@ class GoabDrawer {
|
|
|
2088
2139
|
</goa-drawer>
|
|
2089
2140
|
} `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
2090
2141
|
}
|
|
2091
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDrawer, decorators: [{
|
|
2092
2143
|
type: Component,
|
|
2093
2144
|
args: [{
|
|
2094
2145
|
standalone: true,
|
|
@@ -2115,7 +2166,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2115
2166
|
} `,
|
|
2116
2167
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2117
2168
|
}]
|
|
2118
|
-
}],
|
|
2169
|
+
}], propDecorators: { open: [{
|
|
2119
2170
|
type: Input,
|
|
2120
2171
|
args: [{ required: true, transform: booleanAttribute }]
|
|
2121
2172
|
}], position: [{
|
|
@@ -2134,11 +2185,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2134
2185
|
}] } });
|
|
2135
2186
|
|
|
2136
2187
|
// "disabled", "value", "id" is an exposed property of HTMLInputElement, no need to bind with attr
|
|
2188
|
+
/** Present a list of options to the user to select from. */
|
|
2137
2189
|
class GoabDropdown extends GoabControlValueAccessor {
|
|
2138
|
-
constructor(
|
|
2139
|
-
super(
|
|
2140
|
-
this.cdr =
|
|
2190
|
+
constructor() {
|
|
2191
|
+
super(...arguments);
|
|
2192
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2193
|
+
/** Sets the size of the dropdown. Compact reduces height for dense layouts. @default "default" */
|
|
2141
2194
|
this.size = "default";
|
|
2195
|
+
/** Emits when the user selects a value from the dropdown. Emits a GoabDropdownOnChangeDetail object with the new value. */
|
|
2142
2196
|
this.onChange = new EventEmitter();
|
|
2143
2197
|
this.isReady = false;
|
|
2144
2198
|
this.version = "2";
|
|
@@ -2159,8 +2213,8 @@ class GoabDropdown extends GoabControlValueAccessor {
|
|
|
2159
2213
|
this.markAsTouched();
|
|
2160
2214
|
this.fcChange?.(detail.value || "");
|
|
2161
2215
|
}
|
|
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.
|
|
2216
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDropdown, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2217
|
+
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
2218
|
{
|
|
2165
2219
|
provide: NG_VALUE_ACCESSOR,
|
|
2166
2220
|
multi: true,
|
|
@@ -2201,7 +2255,7 @@ class GoabDropdown extends GoabControlValueAccessor {
|
|
|
2201
2255
|
}
|
|
2202
2256
|
`, isInline: true }); }
|
|
2203
2257
|
}
|
|
2204
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2258
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDropdown, decorators: [{
|
|
2205
2259
|
type: Component,
|
|
2206
2260
|
args: [{
|
|
2207
2261
|
standalone: true,
|
|
@@ -2249,7 +2303,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2249
2303
|
},
|
|
2250
2304
|
],
|
|
2251
2305
|
}]
|
|
2252
|
-
}],
|
|
2306
|
+
}], propDecorators: { name: [{
|
|
2253
2307
|
type: Input
|
|
2254
2308
|
}], ariaLabel: [{
|
|
2255
2309
|
type: Input
|
|
@@ -2284,9 +2338,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2284
2338
|
type: Output
|
|
2285
2339
|
}] } });
|
|
2286
2340
|
|
|
2341
|
+
/** Present a list of options to the user to select from. */
|
|
2287
2342
|
class GoabDropdownItem {
|
|
2288
|
-
constructor(
|
|
2289
|
-
this.cdr =
|
|
2343
|
+
constructor() {
|
|
2344
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2290
2345
|
this.isReady = false;
|
|
2291
2346
|
}
|
|
2292
2347
|
ngOnInit() {
|
|
@@ -2297,8 +2352,8 @@ class GoabDropdownItem {
|
|
|
2297
2352
|
this.cdr.detectChanges();
|
|
2298
2353
|
}, 0);
|
|
2299
2354
|
}
|
|
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.
|
|
2355
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDropdownItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2356
|
+
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
2357
|
<goa-dropdown-item
|
|
2303
2358
|
[value]="value"
|
|
2304
2359
|
[label]="label"
|
|
@@ -2309,7 +2364,7 @@ class GoabDropdownItem {
|
|
|
2309
2364
|
</goa-dropdown-item>
|
|
2310
2365
|
}`, isInline: true }); }
|
|
2311
2366
|
}
|
|
2312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2367
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabDropdownItem, decorators: [{
|
|
2313
2368
|
type: Component,
|
|
2314
2369
|
args: [{
|
|
2315
2370
|
standalone: true,
|
|
@@ -2326,7 +2381,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2326
2381
|
}`,
|
|
2327
2382
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2328
2383
|
}]
|
|
2329
|
-
}],
|
|
2384
|
+
}], propDecorators: { value: [{
|
|
2330
2385
|
type: Input
|
|
2331
2386
|
}], filter: [{
|
|
2332
2387
|
type: Input
|
|
@@ -2338,10 +2393,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2338
2393
|
type: Input
|
|
2339
2394
|
}] } });
|
|
2340
2395
|
|
|
2396
|
+
/** Display uploaded file with actions. */
|
|
2341
2397
|
class GoabFileUploadCard {
|
|
2342
|
-
constructor(
|
|
2343
|
-
this.cdr =
|
|
2398
|
+
constructor() {
|
|
2399
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2400
|
+
/** Emits when the user cancels a file upload. Emits a GoabFileUploadOnCancelDetail object with the filename. */
|
|
2344
2401
|
this.onCancel = new EventEmitter();
|
|
2402
|
+
/** Emits when the user removes an uploaded file. Emits a GoabFileUploadOnDeleteDetail object with the filename. */
|
|
2345
2403
|
this.onDelete = new EventEmitter();
|
|
2346
2404
|
this.isReady = false;
|
|
2347
2405
|
this.version = "2";
|
|
@@ -2360,8 +2418,8 @@ class GoabFileUploadCard {
|
|
|
2360
2418
|
_onDelete(event) {
|
|
2361
2419
|
this.onDelete.emit({ filename: this.filename, event });
|
|
2362
2420
|
}
|
|
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.
|
|
2421
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFileUploadCard, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2422
|
+
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
2423
|
<goa-file-upload-card
|
|
2366
2424
|
[attr.version]="version"
|
|
2367
2425
|
[attr.filename]="filename"
|
|
@@ -2376,7 +2434,7 @@ class GoabFileUploadCard {
|
|
|
2376
2434
|
</goa-file-upload-card>
|
|
2377
2435
|
}`, isInline: true }); }
|
|
2378
2436
|
}
|
|
2379
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2437
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFileUploadCard, decorators: [{
|
|
2380
2438
|
type: Component,
|
|
2381
2439
|
args: [{
|
|
2382
2440
|
standalone: true,
|
|
@@ -2397,12 +2455,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2397
2455
|
}`,
|
|
2398
2456
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2399
2457
|
}]
|
|
2400
|
-
}],
|
|
2458
|
+
}], propDecorators: { filename: [{
|
|
2401
2459
|
type: Input,
|
|
2402
2460
|
args: [{ required: true }]
|
|
2403
2461
|
}], size: [{
|
|
2404
2462
|
type: Input,
|
|
2405
|
-
args: [{ transform: numberAttribute }]
|
|
2463
|
+
args: [{ required: true, transform: numberAttribute }]
|
|
2406
2464
|
}], type: [{
|
|
2407
2465
|
type: Input
|
|
2408
2466
|
}], progress: [{
|
|
@@ -2418,12 +2476,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2418
2476
|
type: Output
|
|
2419
2477
|
}] } });
|
|
2420
2478
|
|
|
2479
|
+
/** Help users select and upload a file. */
|
|
2421
2480
|
class GoabFileUploadInput extends GoabBaseComponent {
|
|
2422
|
-
constructor(
|
|
2423
|
-
super();
|
|
2424
|
-
this.cdr =
|
|
2481
|
+
constructor() {
|
|
2482
|
+
super(...arguments);
|
|
2483
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2484
|
+
/** Sets the id attribute on the file upload input element. */
|
|
2425
2485
|
this.id = "";
|
|
2486
|
+
/** Maximum file size with unit (e.g., "5MB", "100KB", "1GB"). Files exceeding this will be rejected. @default "5MB" */
|
|
2426
2487
|
this.maxFileSize = "5MB";
|
|
2488
|
+
/** Emits when a file is selected. Emits the selected file details. */
|
|
2427
2489
|
this.onSelectFile = new EventEmitter();
|
|
2428
2490
|
this.isReady = false;
|
|
2429
2491
|
this.version = "2";
|
|
@@ -2443,8 +2505,8 @@ class GoabFileUploadInput extends GoabBaseComponent {
|
|
|
2443
2505
|
};
|
|
2444
2506
|
this.onSelectFile.emit(detail);
|
|
2445
2507
|
}
|
|
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.
|
|
2508
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFileUploadInput, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2509
|
+
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
2510
|
<goa-file-upload-input
|
|
2449
2511
|
[attr.version]="version"
|
|
2450
2512
|
[attr.variant]="variant"
|
|
@@ -2461,7 +2523,7 @@ class GoabFileUploadInput extends GoabBaseComponent {
|
|
|
2461
2523
|
</goa-file-upload-input>
|
|
2462
2524
|
}`, isInline: true }); }
|
|
2463
2525
|
}
|
|
2464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2526
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFileUploadInput, decorators: [{
|
|
2465
2527
|
type: Component,
|
|
2466
2528
|
args: [{
|
|
2467
2529
|
standalone: true,
|
|
@@ -2484,11 +2546,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2484
2546
|
}`,
|
|
2485
2547
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2486
2548
|
}]
|
|
2487
|
-
}],
|
|
2549
|
+
}], propDecorators: { id: [{
|
|
2488
2550
|
type: Input
|
|
2489
2551
|
}], variant: [{
|
|
2490
|
-
type: Input
|
|
2491
|
-
args: [{ required: true }]
|
|
2552
|
+
type: Input
|
|
2492
2553
|
}], maxFileSize: [{
|
|
2493
2554
|
type: Input
|
|
2494
2555
|
}], accept: [{
|
|
@@ -2497,13 +2558,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2497
2558
|
type: Output
|
|
2498
2559
|
}] } });
|
|
2499
2560
|
|
|
2561
|
+
/** Allow the user to enter information, filter content, and make selections. */
|
|
2500
2562
|
class GoabFilterChip extends GoabBaseComponent {
|
|
2501
|
-
constructor(
|
|
2502
|
-
super();
|
|
2503
|
-
this.cdr =
|
|
2563
|
+
constructor() {
|
|
2564
|
+
super(...arguments);
|
|
2565
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2566
|
+
/** Text label of the chip. */
|
|
2504
2567
|
this.content = "";
|
|
2568
|
+
/** Secondary text displayed in a smaller size before the main content. */
|
|
2505
2569
|
this.secondaryText = "";
|
|
2570
|
+
/** Icon displayed at the start of the chip. */
|
|
2506
2571
|
this.leadingIcon = null;
|
|
2572
|
+
/** Emits when the filter chip delete button is clicked. */
|
|
2507
2573
|
this.onClick = new EventEmitter();
|
|
2508
2574
|
this.isReady = false;
|
|
2509
2575
|
this.version = "2";
|
|
@@ -2519,8 +2585,8 @@ class GoabFilterChip extends GoabBaseComponent {
|
|
|
2519
2585
|
_onClick() {
|
|
2520
2586
|
this.onClick.emit();
|
|
2521
2587
|
}
|
|
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.
|
|
2588
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFilterChip, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2589
|
+
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
2590
|
<goa-filter-chip
|
|
2525
2591
|
[attr.version]="version"
|
|
2526
2592
|
[attr.error]="error"
|
|
@@ -2539,7 +2605,7 @@ class GoabFilterChip extends GoabBaseComponent {
|
|
|
2539
2605
|
</goa-filter-chip>
|
|
2540
2606
|
}`, isInline: true }); }
|
|
2541
2607
|
}
|
|
2542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFilterChip, decorators: [{
|
|
2543
2609
|
type: Component,
|
|
2544
2610
|
args: [{
|
|
2545
2611
|
standalone: true,
|
|
@@ -2564,7 +2630,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2564
2630
|
}`,
|
|
2565
2631
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2566
2632
|
}]
|
|
2567
|
-
}],
|
|
2633
|
+
}], propDecorators: { error: [{
|
|
2568
2634
|
type: Input,
|
|
2569
2635
|
args: [{ transform: booleanAttribute }]
|
|
2570
2636
|
}], deletable: [{
|
|
@@ -2582,9 +2648,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2582
2648
|
type: Output
|
|
2583
2649
|
}] } });
|
|
2584
2650
|
|
|
2651
|
+
/** Provides information related your service at the bottom of every page. */
|
|
2585
2652
|
class GoabAppFooter {
|
|
2586
|
-
constructor(
|
|
2587
|
-
this.cdr =
|
|
2653
|
+
constructor() {
|
|
2654
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2588
2655
|
this.isReady = false;
|
|
2589
2656
|
this.version = "2";
|
|
2590
2657
|
}
|
|
@@ -2596,8 +2663,8 @@ class GoabAppFooter {
|
|
|
2596
2663
|
this.cdr.detectChanges();
|
|
2597
2664
|
}, 0);
|
|
2598
2665
|
}
|
|
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.
|
|
2666
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooter, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2667
|
+
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
2668
|
<goa-app-footer
|
|
2602
2669
|
[attr.maxcontentwidth]="maxContentWidth"
|
|
2603
2670
|
[attr.url]="url"
|
|
@@ -2610,7 +2677,7 @@ class GoabAppFooter {
|
|
|
2610
2677
|
</goa-app-footer>
|
|
2611
2678
|
}`, isInline: true }); }
|
|
2612
2679
|
}
|
|
2613
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2680
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooter, decorators: [{
|
|
2614
2681
|
type: Component,
|
|
2615
2682
|
args: [{
|
|
2616
2683
|
standalone: true,
|
|
@@ -2629,7 +2696,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2629
2696
|
}`,
|
|
2630
2697
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2631
2698
|
}]
|
|
2632
|
-
}],
|
|
2699
|
+
}], propDecorators: { maxContentWidth: [{
|
|
2633
2700
|
type: Input
|
|
2634
2701
|
}], testId: [{
|
|
2635
2702
|
type: Input
|
|
@@ -2637,9 +2704,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2637
2704
|
type: Input
|
|
2638
2705
|
}] } });
|
|
2639
2706
|
|
|
2707
|
+
/** Copyright and legal links in footer. */
|
|
2640
2708
|
class GoabAppFooterMetaSection {
|
|
2641
|
-
constructor(
|
|
2642
|
-
this.cdr =
|
|
2709
|
+
constructor() {
|
|
2710
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2643
2711
|
this.isReady = false;
|
|
2644
2712
|
}
|
|
2645
2713
|
ngOnInit() {
|
|
@@ -2650,30 +2718,32 @@ class GoabAppFooterMetaSection {
|
|
|
2650
2718
|
this.cdr.detectChanges();
|
|
2651
2719
|
}, 0);
|
|
2652
2720
|
}
|
|
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.
|
|
2721
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooterMetaSection, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2722
|
+
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
2723
|
<goa-app-footer-meta-section [attr.testid]="testId">
|
|
2656
2724
|
<ng-content />
|
|
2657
2725
|
</goa-app-footer-meta-section>
|
|
2658
2726
|
}`, isInline: true, styles: [":host{width:100%}\n"] }); }
|
|
2659
2727
|
}
|
|
2660
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2728
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooterMetaSection, decorators: [{
|
|
2661
2729
|
type: Component,
|
|
2662
2730
|
args: [{ standalone: true, selector: "goab-app-footer-meta-section", template: `@if (isReady) {
|
|
2663
2731
|
<goa-app-footer-meta-section [attr.testid]="testId">
|
|
2664
2732
|
<ng-content />
|
|
2665
2733
|
</goa-app-footer-meta-section>
|
|
2666
2734
|
}`, schemas: [CUSTOM_ELEMENTS_SCHEMA], styles: [":host{width:100%}\n"] }]
|
|
2667
|
-
}],
|
|
2735
|
+
}], propDecorators: { testId: [{
|
|
2668
2736
|
type: Input
|
|
2669
2737
|
}], slot: [{
|
|
2670
2738
|
type: Input,
|
|
2671
2739
|
args: [{ required: true }]
|
|
2672
2740
|
}] } });
|
|
2673
2741
|
|
|
2742
|
+
/** Navigation links section in footer. */
|
|
2674
2743
|
class GoabAppFooterNavSection {
|
|
2675
|
-
constructor(
|
|
2676
|
-
this.cdr =
|
|
2744
|
+
constructor() {
|
|
2745
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2746
|
+
/** Maximum number of columns to display links in on larger screens. @default 1 */
|
|
2677
2747
|
this.maxColumnCount = 1;
|
|
2678
2748
|
this.isReady = false;
|
|
2679
2749
|
}
|
|
@@ -2685,8 +2755,8 @@ class GoabAppFooterNavSection {
|
|
|
2685
2755
|
this.cdr.detectChanges();
|
|
2686
2756
|
}, 0);
|
|
2687
2757
|
}
|
|
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.
|
|
2758
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooterNavSection, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2759
|
+
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
2760
|
<goa-app-footer-nav-section
|
|
2691
2761
|
[attr.maxcolumncount]="maxColumnCount"
|
|
2692
2762
|
[attr.heading]="heading"
|
|
@@ -2696,7 +2766,7 @@ class GoabAppFooterNavSection {
|
|
|
2696
2766
|
</goa-app-footer-nav-section>
|
|
2697
2767
|
}`, isInline: true, styles: [":host{width:100%}\n"] }); }
|
|
2698
2768
|
}
|
|
2699
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2769
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppFooterNavSection, decorators: [{
|
|
2700
2770
|
type: Component,
|
|
2701
2771
|
args: [{ standalone: true, selector: "goab-app-footer-nav-section", template: `@if (isReady) {
|
|
2702
2772
|
<goa-app-footer-nav-section
|
|
@@ -2707,7 +2777,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2707
2777
|
<ng-content />
|
|
2708
2778
|
</goa-app-footer-nav-section>
|
|
2709
2779
|
}`, schemas: [CUSTOM_ELEMENTS_SCHEMA], styles: [":host{width:100%}\n"] }]
|
|
2710
|
-
}],
|
|
2780
|
+
}], propDecorators: { heading: [{
|
|
2711
2781
|
type: Input
|
|
2712
2782
|
}], maxColumnCount: [{
|
|
2713
2783
|
type: Input
|
|
@@ -2718,11 +2788,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2718
2788
|
args: [{ required: true }]
|
|
2719
2789
|
}] } });
|
|
2720
2790
|
|
|
2791
|
+
/** Container for form inputs and validation. */
|
|
2721
2792
|
class GoabPublicForm {
|
|
2722
2793
|
constructor() {
|
|
2794
|
+
/** The initialization status of the form. Set to "initializing" while loading external state, then "complete" when ready. @default "complete" */
|
|
2723
2795
|
this.status = "complete";
|
|
2796
|
+
/** Emits when the form is initialized. */
|
|
2724
2797
|
this.onInit = new EventEmitter();
|
|
2798
|
+
/** Emits when the form is complete. Emits the form state. */
|
|
2725
2799
|
this.onComplete = new EventEmitter();
|
|
2800
|
+
/** Emits when the form state changes. Emits the updated form state. */
|
|
2726
2801
|
this.onStateChange = new EventEmitter();
|
|
2727
2802
|
}
|
|
2728
2803
|
_onInit(e) {
|
|
@@ -2736,8 +2811,8 @@ class GoabPublicForm {
|
|
|
2736
2811
|
const detail = e.detail;
|
|
2737
2812
|
this.onStateChange.emit(detail.data);
|
|
2738
2813
|
}
|
|
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.
|
|
2814
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicForm, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2815
|
+
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
2816
|
<goa-public-form
|
|
2742
2817
|
[attr.status]="status"
|
|
2743
2818
|
[attr.name]="name"
|
|
@@ -2749,7 +2824,7 @@ class GoabPublicForm {
|
|
|
2749
2824
|
</goa-public-form>
|
|
2750
2825
|
`, isInline: true }); }
|
|
2751
2826
|
}
|
|
2752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2827
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicForm, decorators: [{
|
|
2753
2828
|
type: Component,
|
|
2754
2829
|
args: [{
|
|
2755
2830
|
selector: "goab-public-form",
|
|
@@ -2779,28 +2854,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2779
2854
|
type: Output
|
|
2780
2855
|
}] } });
|
|
2781
2856
|
|
|
2857
|
+
/** Container for form inputs and validation. */
|
|
2782
2858
|
class GoabPublicFormPage extends GoabBaseComponent {
|
|
2783
2859
|
constructor() {
|
|
2784
2860
|
super(...arguments);
|
|
2861
|
+
/** Sets the id of the form page. */
|
|
2785
2862
|
this.id = "";
|
|
2863
|
+
/** Sets the main heading text of the form page. */
|
|
2786
2864
|
this.heading = "";
|
|
2865
|
+
/** Sets the sub-heading text displayed below the main heading. */
|
|
2787
2866
|
this.subHeading = "";
|
|
2867
|
+
/** Sets the heading used in the summary view for this page. */
|
|
2788
2868
|
this.summaryHeading = "";
|
|
2869
|
+
/** Sets the section title displayed above the heading. */
|
|
2789
2870
|
this.sectionTitle = "";
|
|
2871
|
+
/** Sets the URL for the back navigation link. */
|
|
2790
2872
|
this.backUrl = "";
|
|
2873
|
+
/** Sets the type of the form page step. @default "step" */
|
|
2791
2874
|
this.type = "step";
|
|
2875
|
+
/** Sets the text for the continue or confirm button. */
|
|
2792
2876
|
this.buttonText = "";
|
|
2877
|
+
/** Sets the visibility of the continue button. @default "visible" */
|
|
2793
2878
|
this.buttonVisibility = "visible";
|
|
2794
|
-
/**
|
|
2795
|
-
* triggers when the form page continues to the next step
|
|
2796
|
-
*/
|
|
2879
|
+
/** Emits when the form page continues to the next step. */
|
|
2797
2880
|
this.onContinue = new EventEmitter();
|
|
2798
2881
|
}
|
|
2799
2882
|
_onContinue(event) {
|
|
2800
2883
|
this.onContinue.emit(event);
|
|
2801
2884
|
}
|
|
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.
|
|
2885
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormPage, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2886
|
+
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
2887
|
<goa-public-form-page
|
|
2805
2888
|
[id]="id"
|
|
2806
2889
|
[attr.heading]="heading"
|
|
@@ -2821,7 +2904,7 @@ class GoabPublicFormPage extends GoabBaseComponent {
|
|
|
2821
2904
|
</goa-public-form-page>
|
|
2822
2905
|
`, isInline: true }); }
|
|
2823
2906
|
}
|
|
2824
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2907
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormPage, decorators: [{
|
|
2825
2908
|
type: Component,
|
|
2826
2909
|
args: [{
|
|
2827
2910
|
selector: "goab-public-form-page",
|
|
@@ -2870,15 +2953,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2870
2953
|
type: Output
|
|
2871
2954
|
}] } });
|
|
2872
2955
|
|
|
2956
|
+
/** Container for form inputs and validation. */
|
|
2873
2957
|
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.
|
|
2958
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormSummary, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2959
|
+
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
2960
|
<goa-public-form-summary [attr.heading]="heading">
|
|
2877
2961
|
<ng-content />
|
|
2878
2962
|
</goa-public-form-summary>
|
|
2879
2963
|
`, isInline: true }); }
|
|
2880
2964
|
}
|
|
2881
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
2965
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormSummary, decorators: [{
|
|
2882
2966
|
type: Component,
|
|
2883
2967
|
args: [{
|
|
2884
2968
|
selector: "goab-public-form-summary",
|
|
@@ -2894,13 +2978,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2894
2978
|
type: Input
|
|
2895
2979
|
}] } });
|
|
2896
2980
|
|
|
2981
|
+
/** Container for form inputs and validation. */
|
|
2897
2982
|
class GoabPublicSubform extends GoabBaseComponent {
|
|
2898
2983
|
constructor() {
|
|
2899
2984
|
super(...arguments);
|
|
2985
|
+
/** Sets the id of the subform. */
|
|
2900
2986
|
this.id = "";
|
|
2987
|
+
/** Sets the name identifier for the subform. */
|
|
2901
2988
|
this.name = "";
|
|
2989
|
+
/** Sets the text for the continue button. */
|
|
2902
2990
|
this.continueMsg = "";
|
|
2991
|
+
/** Emits when the subform is initialized. */
|
|
2903
2992
|
this.onInit = new EventEmitter();
|
|
2993
|
+
/** Emits when the subform state changes. */
|
|
2904
2994
|
this.onStateChange = new EventEmitter();
|
|
2905
2995
|
}
|
|
2906
2996
|
_onInit(e) {
|
|
@@ -2909,8 +2999,8 @@ class GoabPublicSubform extends GoabBaseComponent {
|
|
|
2909
2999
|
_onStateChange(e) {
|
|
2910
3000
|
this.onStateChange.emit(e);
|
|
2911
3001
|
}
|
|
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.
|
|
3002
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicSubform, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3003
|
+
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
3004
|
<goa-public-subform
|
|
2915
3005
|
[attr.id]="id"
|
|
2916
3006
|
[attr.name]="name"
|
|
@@ -2926,7 +3016,7 @@ class GoabPublicSubform extends GoabBaseComponent {
|
|
|
2926
3016
|
</goa-public-subform>
|
|
2927
3017
|
`, isInline: true }); }
|
|
2928
3018
|
}
|
|
2929
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3019
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicSubform, decorators: [{
|
|
2930
3020
|
type: Component,
|
|
2931
3021
|
args: [{
|
|
2932
3022
|
selector: "goab-public-subform",
|
|
@@ -2960,16 +3050,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
2960
3050
|
type: Output
|
|
2961
3051
|
}] } });
|
|
2962
3052
|
|
|
3053
|
+
/** Container for form inputs and validation. */
|
|
2963
3054
|
class GoabPublicSubformIndex extends GoabBaseComponent {
|
|
2964
3055
|
constructor() {
|
|
2965
3056
|
super(...arguments);
|
|
3057
|
+
/** Sets the heading text of the subform index page. */
|
|
2966
3058
|
this.heading = "";
|
|
3059
|
+
/** Sets the section title displayed above the heading. */
|
|
2967
3060
|
this.sectionTitle = "";
|
|
3061
|
+
/** Sets the text for the action button that navigates to the subform. */
|
|
2968
3062
|
this.actionButtonText = "";
|
|
3063
|
+
/** Sets the visibility of the continue button. @default "hidden" */
|
|
2969
3064
|
this.buttonVisibility = "hidden";
|
|
2970
3065
|
}
|
|
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.
|
|
3066
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicSubformIndex, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3067
|
+
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
3068
|
<goa-public-subform-index
|
|
2974
3069
|
[attr.heading]="heading"
|
|
2975
3070
|
[attr.section-title]="sectionTitle"
|
|
@@ -2984,7 +3079,7 @@ class GoabPublicSubformIndex extends GoabBaseComponent {
|
|
|
2984
3079
|
</goa-public-subform-index>
|
|
2985
3080
|
`, isInline: true }); }
|
|
2986
3081
|
}
|
|
2987
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3082
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicSubformIndex, decorators: [{
|
|
2988
3083
|
type: Component,
|
|
2989
3084
|
args: [{
|
|
2990
3085
|
selector: "goab-public-subform-index",
|
|
@@ -3018,15 +3113,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3018
3113
|
type: Input
|
|
3019
3114
|
}] } });
|
|
3020
3115
|
|
|
3116
|
+
/** Container for form inputs and validation. */
|
|
3021
3117
|
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.
|
|
3118
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormTask, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3119
|
+
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
3120
|
<goa-public-form-task [attr.status]="status">
|
|
3025
3121
|
<ng-content />
|
|
3026
3122
|
</goa-public-form-task>
|
|
3027
3123
|
`, isInline: true }); }
|
|
3028
3124
|
}
|
|
3029
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormTask, decorators: [{
|
|
3030
3126
|
type: Component,
|
|
3031
3127
|
args: [{
|
|
3032
3128
|
selector: "goab-public-form-task",
|
|
@@ -3042,9 +3138,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3042
3138
|
type: Input
|
|
3043
3139
|
}] } });
|
|
3044
3140
|
|
|
3141
|
+
/** Container for form inputs and validation. */
|
|
3045
3142
|
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.
|
|
3143
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormTaskList, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3144
|
+
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
3145
|
<goa-public-form-task-list
|
|
3049
3146
|
[attr.heading]="heading"
|
|
3050
3147
|
[attr.mt]="mt"
|
|
@@ -3056,7 +3153,7 @@ class GoabPublicFormTaskList extends GoabBaseComponent {
|
|
|
3056
3153
|
</goa-public-form-task-list>
|
|
3057
3154
|
`, isInline: true }); }
|
|
3058
3155
|
}
|
|
3059
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3156
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPublicFormTaskList, decorators: [{
|
|
3060
3157
|
type: Component,
|
|
3061
3158
|
args: [{
|
|
3062
3159
|
selector: "goab-public-form-task-list",
|
|
@@ -3078,17 +3175,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3078
3175
|
type: Input
|
|
3079
3176
|
}] } });
|
|
3080
3177
|
|
|
3178
|
+
/** Container for form inputs and validation. */
|
|
3081
3179
|
class GoabFieldset {
|
|
3082
3180
|
constructor() {
|
|
3181
|
+
/** Sets when changes will be dispatched to the form. @default "continue" */
|
|
3083
3182
|
this.dispatchOn = "continue";
|
|
3183
|
+
/** Emits when the fieldset continues to the next step. Emits the continue detail. */
|
|
3084
3184
|
this.onContinue = new EventEmitter();
|
|
3085
3185
|
}
|
|
3086
3186
|
_onContinue(event) {
|
|
3087
3187
|
const detail = event.detail;
|
|
3088
3188
|
this.onContinue.emit(detail);
|
|
3089
3189
|
}
|
|
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.
|
|
3190
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFieldset, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3191
|
+
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
3192
|
[attr.section-title]="sectionTitle"
|
|
3093
3193
|
[attr.dispatch-on]="dispatchOn"
|
|
3094
3194
|
[attr.id]="id"
|
|
@@ -3097,7 +3197,7 @@ class GoabFieldset {
|
|
|
3097
3197
|
<ng-content></ng-content>
|
|
3098
3198
|
</goa-fieldset>`, isInline: true }); }
|
|
3099
3199
|
}
|
|
3100
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3200
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFieldset, decorators: [{
|
|
3101
3201
|
type: Component,
|
|
3102
3202
|
args: [{
|
|
3103
3203
|
selector: "goab-fieldset",
|
|
@@ -3122,14 +3222,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3122
3222
|
type: Output
|
|
3123
3223
|
}] } });
|
|
3124
3224
|
|
|
3225
|
+
/** Wraps an input control with a text label, requirement label, helper text, and error text. */
|
|
3125
3226
|
class GoabFormItem extends GoabBaseComponent {
|
|
3126
|
-
constructor(
|
|
3127
|
-
super();
|
|
3128
|
-
this.cdr =
|
|
3227
|
+
constructor() {
|
|
3228
|
+
super(...arguments);
|
|
3229
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3230
|
+
/** Specifies the input type for appropriate message spacing. Used with checkbox-list or radio-group. */
|
|
3129
3231
|
this.type = "";
|
|
3130
3232
|
this.isReady = false;
|
|
3131
3233
|
this.version = "2";
|
|
3132
3234
|
}
|
|
3235
|
+
getHelpTextAsString() {
|
|
3236
|
+
return typeof this.helpText === "string" ? this.helpText : undefined;
|
|
3237
|
+
}
|
|
3238
|
+
getHelpTextAsTemplate() {
|
|
3239
|
+
return this.helpText instanceof TemplateRef ? this.helpText : null;
|
|
3240
|
+
}
|
|
3241
|
+
getErrorAsString() {
|
|
3242
|
+
return typeof this.error === "string" ? this.error : undefined;
|
|
3243
|
+
}
|
|
3244
|
+
getErrorAsTemplate() {
|
|
3245
|
+
return this.error instanceof TemplateRef ? this.error : null;
|
|
3246
|
+
}
|
|
3133
3247
|
ngOnInit() {
|
|
3134
3248
|
// For Angular 20, we need to delay rendering the web component
|
|
3135
3249
|
// to ensure all attributes are properly bound before the component initializes
|
|
@@ -3138,14 +3252,14 @@ class GoabFormItem extends GoabBaseComponent {
|
|
|
3138
3252
|
this.cdr.detectChanges();
|
|
3139
3253
|
}, 0);
|
|
3140
3254
|
}
|
|
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.
|
|
3255
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormItem, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3256
|
+
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
3257
|
<goa-form-item
|
|
3144
3258
|
[attr.version]="version"
|
|
3145
3259
|
[attr.label]="label"
|
|
3146
3260
|
[attr.labelsize]="labelSize"
|
|
3147
|
-
[attr.helptext]="
|
|
3148
|
-
[attr.error]="
|
|
3261
|
+
[attr.helptext]="getHelpTextAsString()"
|
|
3262
|
+
[attr.error]="getErrorAsString()"
|
|
3149
3263
|
[attr.testid]="testId"
|
|
3150
3264
|
[attr.type]="type"
|
|
3151
3265
|
[id]="id"
|
|
@@ -3158,23 +3272,33 @@ class GoabFormItem extends GoabBaseComponent {
|
|
|
3158
3272
|
[attr.mr]="mr"
|
|
3159
3273
|
[attr.ml]="ml"
|
|
3160
3274
|
>
|
|
3275
|
+
@if (getErrorAsTemplate()) {
|
|
3276
|
+
<div slot="error">
|
|
3277
|
+
<ng-container [ngTemplateOutlet]="getErrorAsTemplate()"></ng-container>
|
|
3278
|
+
</div>
|
|
3279
|
+
}
|
|
3280
|
+
@if (getHelpTextAsTemplate()) {
|
|
3281
|
+
<div slot="helptext">
|
|
3282
|
+
<ng-container [ngTemplateOutlet]="getHelpTextAsTemplate()"></ng-container>
|
|
3283
|
+
</div>
|
|
3284
|
+
}
|
|
3161
3285
|
<ng-content />
|
|
3162
|
-
<ng-content select="goab-form-item-slot"></ng-content>
|
|
3163
3286
|
</goa-form-item>
|
|
3164
|
-
}`, isInline: true }); }
|
|
3287
|
+
}`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
3165
3288
|
}
|
|
3166
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3289
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormItem, decorators: [{
|
|
3167
3290
|
type: Component,
|
|
3168
3291
|
args: [{
|
|
3169
3292
|
standalone: true,
|
|
3170
3293
|
selector: "goab-form-item",
|
|
3294
|
+
imports: [NgTemplateOutlet],
|
|
3171
3295
|
template: `@if (isReady) {
|
|
3172
3296
|
<goa-form-item
|
|
3173
3297
|
[attr.version]="version"
|
|
3174
3298
|
[attr.label]="label"
|
|
3175
3299
|
[attr.labelsize]="labelSize"
|
|
3176
|
-
[attr.helptext]="
|
|
3177
|
-
[attr.error]="
|
|
3300
|
+
[attr.helptext]="getHelpTextAsString()"
|
|
3301
|
+
[attr.error]="getErrorAsString()"
|
|
3178
3302
|
[attr.testid]="testId"
|
|
3179
3303
|
[attr.type]="type"
|
|
3180
3304
|
[id]="id"
|
|
@@ -3187,13 +3311,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3187
3311
|
[attr.mr]="mr"
|
|
3188
3312
|
[attr.ml]="ml"
|
|
3189
3313
|
>
|
|
3314
|
+
@if (getErrorAsTemplate()) {
|
|
3315
|
+
<div slot="error">
|
|
3316
|
+
<ng-container [ngTemplateOutlet]="getErrorAsTemplate()"></ng-container>
|
|
3317
|
+
</div>
|
|
3318
|
+
}
|
|
3319
|
+
@if (getHelpTextAsTemplate()) {
|
|
3320
|
+
<div slot="helptext">
|
|
3321
|
+
<ng-container [ngTemplateOutlet]="getHelpTextAsTemplate()"></ng-container>
|
|
3322
|
+
</div>
|
|
3323
|
+
}
|
|
3190
3324
|
<ng-content />
|
|
3191
|
-
<ng-content select="goab-form-item-slot"></ng-content>
|
|
3192
3325
|
</goa-form-item>
|
|
3193
3326
|
}`,
|
|
3194
3327
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3195
3328
|
}]
|
|
3196
|
-
}],
|
|
3329
|
+
}], propDecorators: { label: [{
|
|
3197
3330
|
type: Input
|
|
3198
3331
|
}], labelSize: [{
|
|
3199
3332
|
type: Input
|
|
@@ -3216,16 +3349,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3216
3349
|
}] } });
|
|
3217
3350
|
|
|
3218
3351
|
/**
|
|
3219
|
-
*
|
|
3220
|
-
* We need to use a separate component with a required attribute `slot` because
|
|
3221
|
-
* svelte component renders based on the `slot` of the wrapper component (which is `div` before)
|
|
3222
|
-
* // similar to app-footer-meta-section & app-footer-nav-section
|
|
3352
|
+
* @deprecated Use `TemplateRef` inputs on `goab-form-item` (`[helpText]` / `[error]`) instead.
|
|
3223
3353
|
*/
|
|
3224
3354
|
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.
|
|
3355
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormItemSlot, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3356
|
+
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
3357
|
}
|
|
3228
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3358
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormItemSlot, decorators: [{
|
|
3229
3359
|
type: Component,
|
|
3230
3360
|
args: [{
|
|
3231
3361
|
standalone: true,
|
|
@@ -3237,9 +3367,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3237
3367
|
args: [{ required: true }]
|
|
3238
3368
|
}] } });
|
|
3239
3369
|
|
|
3370
|
+
/** Individual step in a multi-step form. */
|
|
3240
3371
|
class GoabFormStep {
|
|
3241
|
-
constructor(
|
|
3242
|
-
this.cdr =
|
|
3372
|
+
constructor() {
|
|
3373
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3243
3374
|
this.isReady = false;
|
|
3244
3375
|
}
|
|
3245
3376
|
ngOnInit() {
|
|
@@ -3248,14 +3379,14 @@ class GoabFormStep {
|
|
|
3248
3379
|
this.cdr.detectChanges();
|
|
3249
3380
|
});
|
|
3250
3381
|
}
|
|
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.
|
|
3382
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormStep, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3383
|
+
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
3384
|
@if (isReady) {
|
|
3254
3385
|
<goa-form-step [attr.text]="text" [attr.status]="status"></goa-form-step>
|
|
3255
3386
|
}
|
|
3256
3387
|
`, isInline: true }); }
|
|
3257
3388
|
}
|
|
3258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormStep, decorators: [{
|
|
3259
3390
|
type: Component,
|
|
3260
3391
|
args: [{
|
|
3261
3392
|
standalone: true,
|
|
@@ -3267,17 +3398,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3267
3398
|
`,
|
|
3268
3399
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3269
3400
|
}]
|
|
3270
|
-
}],
|
|
3401
|
+
}], propDecorators: { text: [{
|
|
3271
3402
|
type: Input
|
|
3272
3403
|
}], status: [{
|
|
3273
3404
|
type: Input
|
|
3274
3405
|
}] } });
|
|
3275
3406
|
|
|
3407
|
+
/** Provides a visual representation of a form through a series of steps. */
|
|
3276
3408
|
class GoabFormStepper extends GoabBaseComponent {
|
|
3277
|
-
constructor(
|
|
3278
|
-
super();
|
|
3279
|
-
this.cdr =
|
|
3409
|
+
constructor() {
|
|
3410
|
+
super(...arguments);
|
|
3411
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3412
|
+
/** The current step state value (1-based index). Leaving it blank (-1) will allow any step to be accessed. @default -1 */
|
|
3280
3413
|
this.step = -1;
|
|
3414
|
+
/** Emits when the form stepper step changes. Emits the new step as GoabFormStepperOnChangeDetail. */
|
|
3281
3415
|
this.onChange = new EventEmitter();
|
|
3282
3416
|
this.isReady = false;
|
|
3283
3417
|
}
|
|
@@ -3291,8 +3425,8 @@ class GoabFormStepper extends GoabBaseComponent {
|
|
|
3291
3425
|
const detail = e.detail;
|
|
3292
3426
|
this.onChange.emit(detail);
|
|
3293
3427
|
}
|
|
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.
|
|
3428
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormStepper, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3429
|
+
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
3430
|
@if (isReady) {
|
|
3297
3431
|
<goa-form-stepper
|
|
3298
3432
|
[attr.step]="step"
|
|
@@ -3308,7 +3442,7 @@ class GoabFormStepper extends GoabBaseComponent {
|
|
|
3308
3442
|
}
|
|
3309
3443
|
`, isInline: true }); }
|
|
3310
3444
|
}
|
|
3311
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabFormStepper, decorators: [{
|
|
3312
3446
|
type: Component,
|
|
3313
3447
|
args: [{
|
|
3314
3448
|
standalone: true,
|
|
@@ -3330,16 +3464,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3330
3464
|
`,
|
|
3331
3465
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3332
3466
|
}]
|
|
3333
|
-
}],
|
|
3467
|
+
}], propDecorators: { step: [{
|
|
3334
3468
|
type: Input
|
|
3335
3469
|
}], onChange: [{
|
|
3336
3470
|
type: Output
|
|
3337
3471
|
}] } });
|
|
3338
3472
|
|
|
3473
|
+
/** Arrange a number of components into a responsive grid pattern. */
|
|
3339
3474
|
class GoabGrid extends GoabBaseComponent {
|
|
3340
|
-
constructor(
|
|
3341
|
-
super();
|
|
3342
|
-
this.cdr =
|
|
3475
|
+
constructor() {
|
|
3476
|
+
super(...arguments);
|
|
3477
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3343
3478
|
this.isReady = false;
|
|
3344
3479
|
}
|
|
3345
3480
|
ngOnInit() {
|
|
@@ -3348,8 +3483,8 @@ class GoabGrid extends GoabBaseComponent {
|
|
|
3348
3483
|
this.cdr.detectChanges();
|
|
3349
3484
|
});
|
|
3350
3485
|
}
|
|
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.
|
|
3486
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabGrid, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3487
|
+
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
3488
|
@if (isReady) {
|
|
3354
3489
|
<goa-grid
|
|
3355
3490
|
[attr.gap]="gap"
|
|
@@ -3365,7 +3500,7 @@ class GoabGrid extends GoabBaseComponent {
|
|
|
3365
3500
|
}
|
|
3366
3501
|
`, isInline: true }); }
|
|
3367
3502
|
}
|
|
3368
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3503
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabGrid, decorators: [{
|
|
3369
3504
|
type: Component,
|
|
3370
3505
|
args: [{
|
|
3371
3506
|
standalone: true,
|
|
@@ -3387,19 +3522,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3387
3522
|
`,
|
|
3388
3523
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3389
3524
|
}]
|
|
3390
|
-
}],
|
|
3525
|
+
}], propDecorators: { minChildWidth: [{
|
|
3391
3526
|
type: Input,
|
|
3392
3527
|
args: [{ required: true }]
|
|
3393
3528
|
}], gap: [{
|
|
3394
3529
|
type: Input
|
|
3395
3530
|
}] } });
|
|
3396
3531
|
|
|
3532
|
+
/** Provide structure to help users find their way around the service. */
|
|
3397
3533
|
class GoabAppHeader extends GoabBaseComponent {
|
|
3398
|
-
constructor(
|
|
3399
|
-
super();
|
|
3400
|
-
this.cdr =
|
|
3534
|
+
constructor() {
|
|
3535
|
+
super(...arguments);
|
|
3536
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3401
3537
|
this.isReady = false;
|
|
3402
3538
|
this.version = "2";
|
|
3539
|
+
/** Emits when the menu button is clicked. Used for custom menu handling. */
|
|
3403
3540
|
this.onMenuClick = new EventEmitter();
|
|
3404
3541
|
}
|
|
3405
3542
|
ngOnInit() {
|
|
@@ -3411,8 +3548,8 @@ class GoabAppHeader extends GoabBaseComponent {
|
|
|
3411
3548
|
_onMenuClick() {
|
|
3412
3549
|
this.onMenuClick.emit();
|
|
3413
3550
|
}
|
|
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.
|
|
3551
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppHeader, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3552
|
+
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
3553
|
<goa-app-header
|
|
3417
3554
|
[attr.url]="url"
|
|
3418
3555
|
[attr.heading]="heading"
|
|
@@ -3428,7 +3565,7 @@ class GoabAppHeader extends GoabBaseComponent {
|
|
|
3428
3565
|
</goa-app-header>
|
|
3429
3566
|
}`, isInline: true }); }
|
|
3430
3567
|
}
|
|
3431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3568
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppHeader, decorators: [{
|
|
3432
3569
|
type: Component,
|
|
3433
3570
|
args: [{
|
|
3434
3571
|
standalone: true,
|
|
@@ -3450,7 +3587,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3450
3587
|
}`,
|
|
3451
3588
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3452
3589
|
}]
|
|
3453
|
-
}],
|
|
3590
|
+
}], propDecorators: { url: [{
|
|
3454
3591
|
type: Input
|
|
3455
3592
|
}], heading: [{
|
|
3456
3593
|
type: Input
|
|
@@ -3465,23 +3602,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3465
3602
|
type: Output
|
|
3466
3603
|
}] } });
|
|
3467
3604
|
|
|
3605
|
+
/** Menu items within the app header. */
|
|
3468
3606
|
class GoabAppHeaderMenu extends GoabBaseComponent {
|
|
3607
|
+
constructor() {
|
|
3608
|
+
super(...arguments);
|
|
3609
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3610
|
+
this.isReady = false;
|
|
3611
|
+
}
|
|
3469
3612
|
get hostSlot() {
|
|
3470
3613
|
return this.slotName ?? null;
|
|
3471
3614
|
}
|
|
3472
|
-
constructor(cdr) {
|
|
3473
|
-
super();
|
|
3474
|
-
this.cdr = cdr;
|
|
3475
|
-
this.isReady = false;
|
|
3476
|
-
}
|
|
3477
3615
|
ngOnInit() {
|
|
3478
3616
|
setTimeout(() => {
|
|
3479
3617
|
this.isReady = true;
|
|
3480
3618
|
this.cdr.detectChanges();
|
|
3481
3619
|
}, 0);
|
|
3482
3620
|
}
|
|
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.
|
|
3621
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppHeaderMenu, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3622
|
+
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
3623
|
<goa-app-header-menu
|
|
3486
3624
|
[attr.leadingicon]="leadingIcon"
|
|
3487
3625
|
[attr.heading]="heading"
|
|
@@ -3491,7 +3629,7 @@ class GoabAppHeaderMenu extends GoabBaseComponent {
|
|
|
3491
3629
|
</goa-app-header-menu>
|
|
3492
3630
|
}`, isInline: true }); }
|
|
3493
3631
|
}
|
|
3494
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3632
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabAppHeaderMenu, decorators: [{
|
|
3495
3633
|
type: Component,
|
|
3496
3634
|
args: [{
|
|
3497
3635
|
standalone: true,
|
|
@@ -3507,7 +3645,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3507
3645
|
}`,
|
|
3508
3646
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3509
3647
|
}]
|
|
3510
|
-
}],
|
|
3648
|
+
}], propDecorators: { leadingIcon: [{
|
|
3511
3649
|
type: Input
|
|
3512
3650
|
}], heading: [{
|
|
3513
3651
|
type: Input
|
|
@@ -3518,9 +3656,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3518
3656
|
args: ["attr.slot"]
|
|
3519
3657
|
}] } });
|
|
3520
3658
|
|
|
3659
|
+
/** A visual band of text, including an image and a call to action. */
|
|
3521
3660
|
class GoabHeroBanner {
|
|
3522
|
-
constructor(
|
|
3523
|
-
this.cdr =
|
|
3661
|
+
constructor() {
|
|
3662
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3524
3663
|
this.isReady = false;
|
|
3525
3664
|
}
|
|
3526
3665
|
ngOnInit() {
|
|
@@ -3529,8 +3668,8 @@ class GoabHeroBanner {
|
|
|
3529
3668
|
this.cdr.detectChanges();
|
|
3530
3669
|
});
|
|
3531
3670
|
}
|
|
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.
|
|
3671
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabHeroBanner, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3672
|
+
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
3673
|
@if (isReady) {
|
|
3535
3674
|
<goa-hero-banner
|
|
3536
3675
|
[attr.heading]="heading"
|
|
@@ -3549,7 +3688,7 @@ class GoabHeroBanner {
|
|
|
3549
3688
|
}
|
|
3550
3689
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
3551
3690
|
}
|
|
3552
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabHeroBanner, decorators: [{
|
|
3553
3692
|
type: Component,
|
|
3554
3693
|
args: [{
|
|
3555
3694
|
standalone: true,
|
|
@@ -3575,7 +3714,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3575
3714
|
`,
|
|
3576
3715
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3577
3716
|
}]
|
|
3578
|
-
}],
|
|
3717
|
+
}], propDecorators: { heading: [{
|
|
3579
3718
|
type: Input
|
|
3580
3719
|
}], backgroundUrl: [{
|
|
3581
3720
|
type: Input
|
|
@@ -3593,10 +3732,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3593
3732
|
type: Input
|
|
3594
3733
|
}] } });
|
|
3595
3734
|
|
|
3735
|
+
/** A simple and universal graphic symbol representing an action, object, or concept to help guide the user. */
|
|
3596
3736
|
class GoabIcon extends GoabBaseComponent {
|
|
3597
|
-
constructor(
|
|
3598
|
-
super();
|
|
3599
|
-
this.cdr =
|
|
3737
|
+
constructor() {
|
|
3738
|
+
super(...arguments);
|
|
3739
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3600
3740
|
this.isReady = false;
|
|
3601
3741
|
}
|
|
3602
3742
|
ngOnInit() {
|
|
@@ -3607,8 +3747,8 @@ class GoabIcon extends GoabBaseComponent {
|
|
|
3607
3747
|
this.cdr.detectChanges();
|
|
3608
3748
|
}, 0);
|
|
3609
3749
|
}
|
|
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.
|
|
3750
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabIcon, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3751
|
+
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", role: "role" }, usesInheritance: true, ngImport: i0, template: `
|
|
3612
3752
|
@if (isReady) {
|
|
3613
3753
|
<goa-icon
|
|
3614
3754
|
[attr.type]="type"
|
|
@@ -3619,6 +3759,7 @@ class GoabIcon extends GoabBaseComponent {
|
|
|
3619
3759
|
[attr.opacity]="opacity"
|
|
3620
3760
|
[attr.title]="title"
|
|
3621
3761
|
[attr.arialabel]="ariaLabel"
|
|
3762
|
+
[attr.role]="role"
|
|
3622
3763
|
[attr.mt]="mt"
|
|
3623
3764
|
[attr.mb]="mb"
|
|
3624
3765
|
[attr.ml]="ml"
|
|
@@ -3629,7 +3770,7 @@ class GoabIcon extends GoabBaseComponent {
|
|
|
3629
3770
|
}
|
|
3630
3771
|
`, isInline: true, styles: [":host{display:inline-flex;align-items:center}\n"] }); }
|
|
3631
3772
|
}
|
|
3632
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabIcon, decorators: [{
|
|
3633
3774
|
type: Component,
|
|
3634
3775
|
args: [{ standalone: true, selector: "goab-icon", template: `
|
|
3635
3776
|
@if (isReady) {
|
|
@@ -3642,6 +3783,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3642
3783
|
[attr.opacity]="opacity"
|
|
3643
3784
|
[attr.title]="title"
|
|
3644
3785
|
[attr.arialabel]="ariaLabel"
|
|
3786
|
+
[attr.role]="role"
|
|
3645
3787
|
[attr.mt]="mt"
|
|
3646
3788
|
[attr.mb]="mb"
|
|
3647
3789
|
[attr.ml]="ml"
|
|
@@ -3651,7 +3793,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3651
3793
|
</goa-icon>
|
|
3652
3794
|
}
|
|
3653
3795
|
`, schemas: [CUSTOM_ELEMENTS_SCHEMA], styles: [":host{display:inline-flex;align-items:center}\n"] }]
|
|
3654
|
-
}],
|
|
3796
|
+
}], propDecorators: { type: [{
|
|
3655
3797
|
type: Input,
|
|
3656
3798
|
args: [{ required: true }]
|
|
3657
3799
|
}], size: [{
|
|
@@ -3670,15 +3812,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3670
3812
|
type: Input
|
|
3671
3813
|
}], ariaLabel: [{
|
|
3672
3814
|
type: Input
|
|
3815
|
+
}], role: [{
|
|
3816
|
+
type: Input
|
|
3673
3817
|
}] } });
|
|
3674
3818
|
|
|
3819
|
+
/** A compact button with an icon and no text. */
|
|
3675
3820
|
class GoabIconButton extends GoabBaseComponent {
|
|
3676
|
-
constructor(
|
|
3677
|
-
super();
|
|
3678
|
-
this.cdr =
|
|
3821
|
+
constructor() {
|
|
3822
|
+
super(...arguments);
|
|
3823
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3679
3824
|
this.isReady = false;
|
|
3680
3825
|
this.JSON = JSON;
|
|
3826
|
+
/** Sets the size of button. @default "medium" */
|
|
3681
3827
|
this.size = "medium";
|
|
3828
|
+
/** Sets the icon theme. "outline" for stroked icons, "filled" for solid icons. @default "outline" */
|
|
3829
|
+
this.theme = "outline";
|
|
3830
|
+
/** Emits when the icon button is clicked. */
|
|
3682
3831
|
this.onClick = new EventEmitter();
|
|
3683
3832
|
}
|
|
3684
3833
|
ngOnInit() {
|
|
@@ -3690,13 +3839,14 @@ class GoabIconButton extends GoabBaseComponent {
|
|
|
3690
3839
|
_onClick() {
|
|
3691
3840
|
this.onClick.emit();
|
|
3692
3841
|
}
|
|
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.
|
|
3842
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabIconButton, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3843
|
+
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", theme: "theme", title: "title", disabled: ["disabled", "disabled", booleanAttribute], ariaLabel: "ariaLabel", action: "action", actionArg: "actionArg", actionArgs: "actionArgs" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `
|
|
3695
3844
|
@if (isReady) {
|
|
3696
3845
|
<goa-icon-button
|
|
3697
3846
|
[attr.icon]="icon"
|
|
3698
3847
|
[disabled]="disabled"
|
|
3699
3848
|
[attr.size]="size"
|
|
3849
|
+
[attr.theme]="theme"
|
|
3700
3850
|
[attr.variant]="variant"
|
|
3701
3851
|
[title]="title"
|
|
3702
3852
|
[attr.arialabel]="ariaLabel"
|
|
@@ -3715,7 +3865,7 @@ class GoabIconButton extends GoabBaseComponent {
|
|
|
3715
3865
|
}
|
|
3716
3866
|
`, isInline: true }); }
|
|
3717
3867
|
}
|
|
3718
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
3868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabIconButton, decorators: [{
|
|
3719
3869
|
type: Component,
|
|
3720
3870
|
args: [{
|
|
3721
3871
|
standalone: true,
|
|
@@ -3726,6 +3876,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3726
3876
|
[attr.icon]="icon"
|
|
3727
3877
|
[disabled]="disabled"
|
|
3728
3878
|
[attr.size]="size"
|
|
3879
|
+
[attr.theme]="theme"
|
|
3729
3880
|
[attr.variant]="variant"
|
|
3730
3881
|
[title]="title"
|
|
3731
3882
|
[attr.arialabel]="ariaLabel"
|
|
@@ -3745,13 +3896,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3745
3896
|
`,
|
|
3746
3897
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3747
3898
|
}]
|
|
3748
|
-
}],
|
|
3899
|
+
}], propDecorators: { icon: [{
|
|
3749
3900
|
type: Input,
|
|
3750
3901
|
args: [{ required: true }]
|
|
3751
3902
|
}], size: [{
|
|
3752
3903
|
type: Input
|
|
3753
3904
|
}], variant: [{
|
|
3754
3905
|
type: Input
|
|
3906
|
+
}], theme: [{
|
|
3907
|
+
type: Input
|
|
3755
3908
|
}], title: [{
|
|
3756
3909
|
type: Input
|
|
3757
3910
|
}], disabled: [{
|
|
@@ -3769,17 +3922,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
3769
3922
|
type: Output
|
|
3770
3923
|
}] } });
|
|
3771
3924
|
|
|
3925
|
+
/** A single-line field where users can input and edit text. */
|
|
3772
3926
|
class GoabInput extends GoabControlValueAccessor {
|
|
3773
|
-
constructor(
|
|
3774
|
-
super(
|
|
3775
|
-
this.cdr =
|
|
3927
|
+
constructor() {
|
|
3928
|
+
super(...arguments);
|
|
3929
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
3930
|
+
/** Sets the type of the input field. @default "text" */
|
|
3776
3931
|
this.type = "text";
|
|
3932
|
+
/** Sets the text alignment within the input field. @default "left" */
|
|
3777
3933
|
this.textAlign = "left";
|
|
3934
|
+
/** Sets the size of the input. 'compact' reduces height for dense layouts. @default "default" */
|
|
3778
3935
|
this.size = "default";
|
|
3936
|
+
/** Emits when the trailing icon is clicked. */
|
|
3779
3937
|
this.onTrailingIconClick = new EventEmitter();
|
|
3938
|
+
/** Emits when the input receives focus. Emits focus detail including the current value. */
|
|
3780
3939
|
this.onFocus = new EventEmitter();
|
|
3940
|
+
/** Emits when the input loses focus. Emits blur detail including the current value. */
|
|
3781
3941
|
this.onBlur = new EventEmitter();
|
|
3942
|
+
/** Emits when a key is pressed in the input. Emits key press detail including the value and key pressed. */
|
|
3782
3943
|
this.onKeyPress = new EventEmitter();
|
|
3944
|
+
/** Emits when the input value changes. Emits change detail including the new value. */
|
|
3783
3945
|
this.onChange = new EventEmitter();
|
|
3784
3946
|
this.version = "2";
|
|
3785
3947
|
this.isReady = false;
|
|
@@ -3839,8 +4001,8 @@ class GoabInput extends GoabControlValueAccessor {
|
|
|
3839
4001
|
return null;
|
|
3840
4002
|
return this.trailingContent instanceof TemplateRef ? this.trailingContent : null;
|
|
3841
4003
|
}
|
|
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.
|
|
4004
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabInput, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4005
|
+
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
4006
|
{
|
|
3845
4007
|
provide: NG_VALUE_ACCESSOR,
|
|
3846
4008
|
multi: true,
|
|
@@ -3916,7 +4078,7 @@ class GoabInput extends GoabControlValueAccessor {
|
|
|
3916
4078
|
</goa-input>
|
|
3917
4079
|
}`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
3918
4080
|
}
|
|
3919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4081
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabInput, decorators: [{
|
|
3920
4082
|
type: Component,
|
|
3921
4083
|
args: [{
|
|
3922
4084
|
standalone: true,
|
|
@@ -4000,7 +4162,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4000
4162
|
},
|
|
4001
4163
|
],
|
|
4002
4164
|
}]
|
|
4003
|
-
}],
|
|
4165
|
+
}], propDecorators: { type: [{
|
|
4004
4166
|
type: Input
|
|
4005
4167
|
}], name: [{
|
|
4006
4168
|
type: Input
|
|
@@ -4067,17 +4229,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4067
4229
|
type: Output
|
|
4068
4230
|
}] } });
|
|
4069
4231
|
|
|
4232
|
+
/** A single-line field where users can input and edit numeric values. */
|
|
4070
4233
|
class GoabInputNumber {
|
|
4071
|
-
constructor(
|
|
4072
|
-
this.cdr =
|
|
4234
|
+
constructor() {
|
|
4235
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4073
4236
|
this.isReady = false;
|
|
4237
|
+
/** Sets the type of the input field. @default "number" */
|
|
4074
4238
|
this.type = "number";
|
|
4239
|
+
/** Sets the text alignment within the input field. @default "right" */
|
|
4075
4240
|
this.textAlign = "right"; // Default to right for numbers
|
|
4241
|
+
/** Bound to value. */
|
|
4076
4242
|
this.value = null;
|
|
4243
|
+
/** Emits when the trailing icon is clicked. */
|
|
4077
4244
|
this.onTrailingIconClick = new EventEmitter(); // Keep void type
|
|
4245
|
+
/** Emits when the input receives focus. Emits focus detail including the current value. */
|
|
4078
4246
|
this.onFocus = new EventEmitter();
|
|
4247
|
+
/** Emits when the input loses focus. Emits blur detail including the current value. */
|
|
4079
4248
|
this.onBlur = new EventEmitter();
|
|
4249
|
+
/** Emits when a key is pressed in the input. Emits key press detail including the value and key pressed. */
|
|
4080
4250
|
this.onKeyPress = new EventEmitter();
|
|
4251
|
+
/** Emits when the input value changes. Emits change detail including the new value. */
|
|
4081
4252
|
this.onChange = new EventEmitter();
|
|
4082
4253
|
this.handleTrailingIconClick = false;
|
|
4083
4254
|
this.touched = false;
|
|
@@ -4158,8 +4329,8 @@ class GoabInputNumber {
|
|
|
4158
4329
|
return null;
|
|
4159
4330
|
return this.trailingContent instanceof TemplateRef ? this.trailingContent : null;
|
|
4160
4331
|
}
|
|
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.
|
|
4332
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabInputNumber, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4333
|
+
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
4334
|
{
|
|
4164
4335
|
provide: NG_VALUE_ACCESSOR,
|
|
4165
4336
|
multi: true,
|
|
@@ -4235,7 +4406,7 @@ class GoabInputNumber {
|
|
|
4235
4406
|
}
|
|
4236
4407
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
4237
4408
|
}
|
|
4238
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4409
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabInputNumber, decorators: [{
|
|
4239
4410
|
type: Component,
|
|
4240
4411
|
args: [{
|
|
4241
4412
|
standalone: true,
|
|
@@ -4319,7 +4490,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4319
4490
|
},
|
|
4320
4491
|
],
|
|
4321
4492
|
}]
|
|
4322
|
-
}],
|
|
4493
|
+
}], propDecorators: { type: [{
|
|
4323
4494
|
type: Input
|
|
4324
4495
|
}], name: [{
|
|
4325
4496
|
type: Input
|
|
@@ -4402,9 +4573,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4402
4573
|
type: Output
|
|
4403
4574
|
}] } });
|
|
4404
4575
|
|
|
4576
|
+
/** Provide visual feedback to users while loading. */
|
|
4405
4577
|
class GoabLinearProgress {
|
|
4406
|
-
constructor(
|
|
4407
|
-
this.cdr =
|
|
4578
|
+
constructor() {
|
|
4579
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4408
4580
|
this.isReady = false;
|
|
4409
4581
|
}
|
|
4410
4582
|
ngOnInit() {
|
|
@@ -4415,8 +4587,8 @@ class GoabLinearProgress {
|
|
|
4415
4587
|
this.cdr.detectChanges();
|
|
4416
4588
|
}, 0);
|
|
4417
4589
|
}
|
|
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.
|
|
4590
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabLinearProgress, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4591
|
+
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
4592
|
@if (isReady) {
|
|
4421
4593
|
<goa-linear-progress
|
|
4422
4594
|
[attr.progress]="progress"
|
|
@@ -4429,7 +4601,7 @@ class GoabLinearProgress {
|
|
|
4429
4601
|
}
|
|
4430
4602
|
`, isInline: true }); }
|
|
4431
4603
|
}
|
|
4432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabLinearProgress, decorators: [{
|
|
4433
4605
|
type: Component,
|
|
4434
4606
|
args: [{
|
|
4435
4607
|
standalone: true,
|
|
@@ -4448,7 +4620,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4448
4620
|
`,
|
|
4449
4621
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4450
4622
|
}]
|
|
4451
|
-
}],
|
|
4623
|
+
}], propDecorators: { progress: [{
|
|
4452
4624
|
type: Input
|
|
4453
4625
|
}], percentVisibility: [{
|
|
4454
4626
|
type: Input
|
|
@@ -4460,11 +4632,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4460
4632
|
type: Input
|
|
4461
4633
|
}] } });
|
|
4462
4634
|
|
|
4635
|
+
/** Wraps an anchor element to add icons or margins. */
|
|
4463
4636
|
class GoabLink {
|
|
4464
|
-
constructor(
|
|
4465
|
-
this.cdr =
|
|
4637
|
+
constructor() {
|
|
4638
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4466
4639
|
this.isReady = false;
|
|
4640
|
+
/** Sets the color theme. 'interactive' for blue, 'dark' for black, 'light' for white text. @default "interactive" */
|
|
4467
4641
|
this.color = "interactive";
|
|
4642
|
+
/** Sets the text size and corresponding icon size. @default "medium" */
|
|
4468
4643
|
this.size = "medium";
|
|
4469
4644
|
this.JSON = JSON;
|
|
4470
4645
|
}
|
|
@@ -4474,8 +4649,8 @@ class GoabLink {
|
|
|
4474
4649
|
this.cdr.detectChanges();
|
|
4475
4650
|
});
|
|
4476
4651
|
}
|
|
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.
|
|
4652
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabLink, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4653
|
+
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
4654
|
@if (isReady) {
|
|
4480
4655
|
<goa-link
|
|
4481
4656
|
[attr.leadingicon]="leadingIcon"
|
|
@@ -4496,7 +4671,7 @@ class GoabLink {
|
|
|
4496
4671
|
}
|
|
4497
4672
|
`, isInline: true }); }
|
|
4498
4673
|
}
|
|
4499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabLink, decorators: [{
|
|
4500
4675
|
type: Component,
|
|
4501
4676
|
args: [{
|
|
4502
4677
|
standalone: true,
|
|
@@ -4523,7 +4698,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4523
4698
|
`,
|
|
4524
4699
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4525
4700
|
}]
|
|
4526
|
-
}],
|
|
4701
|
+
}], propDecorators: { leadingIcon: [{
|
|
4527
4702
|
type: Input
|
|
4528
4703
|
}], trailingIcon: [{
|
|
4529
4704
|
type: Input
|
|
@@ -4549,10 +4724,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4549
4724
|
type: Input
|
|
4550
4725
|
}] } });
|
|
4551
4726
|
|
|
4727
|
+
/** Communicate what stage the service is at, connect to Alberta.ca, and gather feedback on your service. */
|
|
4552
4728
|
class GoabMicrositeHeader {
|
|
4553
|
-
constructor(
|
|
4554
|
-
this.cdr =
|
|
4729
|
+
constructor() {
|
|
4730
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4555
4731
|
this.isReady = false;
|
|
4732
|
+
/** Emits when the feedback link is clicked. */
|
|
4556
4733
|
this.onFeedbackClick = new EventEmitter();
|
|
4557
4734
|
}
|
|
4558
4735
|
ngOnInit() {
|
|
@@ -4572,8 +4749,8 @@ class GoabMicrositeHeader {
|
|
|
4572
4749
|
_onFeedbackClick() {
|
|
4573
4750
|
this.onFeedbackClick.emit();
|
|
4574
4751
|
}
|
|
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.
|
|
4752
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMicrositeHeader, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4753
|
+
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
4754
|
@if (isReady) {
|
|
4578
4755
|
<goa-microsite-header
|
|
4579
4756
|
[attr.type]="type"
|
|
@@ -4593,7 +4770,7 @@ class GoabMicrositeHeader {
|
|
|
4593
4770
|
}
|
|
4594
4771
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
4595
4772
|
}
|
|
4596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMicrositeHeader, decorators: [{
|
|
4597
4774
|
type: Component,
|
|
4598
4775
|
args: [{
|
|
4599
4776
|
standalone: true,
|
|
@@ -4620,7 +4797,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4620
4797
|
imports: [NgTemplateOutlet],
|
|
4621
4798
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4622
4799
|
}]
|
|
4623
|
-
}],
|
|
4800
|
+
}], propDecorators: { type: [{
|
|
4624
4801
|
type: Input,
|
|
4625
4802
|
args: [{ required: true }]
|
|
4626
4803
|
}], version: [{
|
|
@@ -4639,12 +4816,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4639
4816
|
type: Output
|
|
4640
4817
|
}] } });
|
|
4641
4818
|
|
|
4819
|
+
/** An overlay that appears in front of all other content, and requires a user to take an action before continuing. */
|
|
4642
4820
|
class GoabModal {
|
|
4643
|
-
constructor(
|
|
4644
|
-
this.cdr =
|
|
4821
|
+
constructor() {
|
|
4822
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4645
4823
|
this.isReady = false;
|
|
4646
4824
|
this.version = "2";
|
|
4825
|
+
/** Show close icon and allow clicking the background to close the modal. */
|
|
4647
4826
|
this.closable = false;
|
|
4827
|
+
/** Emits when the modal is closed. */
|
|
4648
4828
|
this.onClose = new EventEmitter();
|
|
4649
4829
|
}
|
|
4650
4830
|
ngOnInit() {
|
|
@@ -4666,8 +4846,8 @@ class GoabModal {
|
|
|
4666
4846
|
_onClose() {
|
|
4667
4847
|
this.onClose.emit();
|
|
4668
4848
|
}
|
|
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.
|
|
4849
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabModal, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4850
|
+
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
4851
|
@if (isReady) {
|
|
4672
4852
|
<goa-modal
|
|
4673
4853
|
[attr.version]="version"
|
|
@@ -4698,7 +4878,7 @@ class GoabModal {
|
|
|
4698
4878
|
}
|
|
4699
4879
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
4700
4880
|
}
|
|
4701
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4881
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabModal, decorators: [{
|
|
4702
4882
|
type: Component,
|
|
4703
4883
|
args: [{
|
|
4704
4884
|
standalone: true,
|
|
@@ -4736,7 +4916,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4736
4916
|
`,
|
|
4737
4917
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4738
4918
|
}]
|
|
4739
|
-
}],
|
|
4919
|
+
}], propDecorators: { calloutVariant: [{
|
|
4740
4920
|
type: Input
|
|
4741
4921
|
}], open: [{
|
|
4742
4922
|
type: Input,
|
|
@@ -4759,16 +4939,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4759
4939
|
type: Output
|
|
4760
4940
|
}] } });
|
|
4761
4941
|
|
|
4942
|
+
/** A button with more than one action. */
|
|
4762
4943
|
class GoabMenuButton {
|
|
4763
4944
|
constructor() {
|
|
4945
|
+
/** Emits when a menu action is clicked. Emits the action detail. */
|
|
4764
4946
|
this.onAction = new EventEmitter();
|
|
4765
4947
|
}
|
|
4766
4948
|
_onAction(e) {
|
|
4767
4949
|
const detail = e.detail;
|
|
4768
4950
|
this.onAction.emit(detail);
|
|
4769
4951
|
}
|
|
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.
|
|
4952
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMenuButton, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4953
|
+
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
4954
|
<goa-menu-button
|
|
4773
4955
|
[attr.text]="text"
|
|
4774
4956
|
[attr.type]="type"
|
|
@@ -4785,7 +4967,7 @@ class GoabMenuButton {
|
|
|
4785
4967
|
</goa-menu-button>
|
|
4786
4968
|
`, isInline: true }); }
|
|
4787
4969
|
}
|
|
4788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
4970
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMenuButton, decorators: [{
|
|
4789
4971
|
type: Component,
|
|
4790
4972
|
args: [{
|
|
4791
4973
|
standalone: true,
|
|
@@ -4828,9 +5010,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4828
5010
|
type: Output
|
|
4829
5011
|
}] } });
|
|
4830
5012
|
|
|
5013
|
+
/** Individual action item within a menu button. */
|
|
4831
5014
|
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.
|
|
5015
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMenuAction, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5016
|
+
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
5017
|
<goa-menu-action
|
|
4835
5018
|
[attr.text]="text"
|
|
4836
5019
|
[attr.action]="action"
|
|
@@ -4840,7 +5023,7 @@ class GoabMenuAction {
|
|
|
4840
5023
|
</goa-menu-action>
|
|
4841
5024
|
`, isInline: true }); }
|
|
4842
5025
|
}
|
|
4843
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5026
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabMenuAction, decorators: [{
|
|
4844
5027
|
type: Component,
|
|
4845
5028
|
args: [{
|
|
4846
5029
|
standalone: true,
|
|
@@ -4868,13 +5051,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4868
5051
|
type: Input
|
|
4869
5052
|
}] } });
|
|
4870
5053
|
|
|
5054
|
+
/** Display important page level information or notifications. */
|
|
4871
5055
|
class GoabNotification {
|
|
4872
|
-
constructor(
|
|
4873
|
-
this.cdr =
|
|
5056
|
+
constructor() {
|
|
5057
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4874
5058
|
this.isReady = false;
|
|
4875
5059
|
this.version = "2";
|
|
5060
|
+
/** Define the context and colour of the notification. @default "information" */
|
|
4876
5061
|
this.type = "information";
|
|
5062
|
+
/** Sets the visual prominence. 'high' for full background, 'low' for medium. @default "high" */
|
|
4877
5063
|
this.emphasis = "high";
|
|
5064
|
+
/** Emits when the notification is dismissed. */
|
|
4878
5065
|
this.onDismiss = new EventEmitter();
|
|
4879
5066
|
}
|
|
4880
5067
|
ngOnInit() {
|
|
@@ -4886,8 +5073,8 @@ class GoabNotification {
|
|
|
4886
5073
|
_onDismiss() {
|
|
4887
5074
|
this.onDismiss.emit();
|
|
4888
5075
|
}
|
|
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.
|
|
5076
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabNotification, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5077
|
+
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
5078
|
@if (isReady) {
|
|
4892
5079
|
<goa-notification
|
|
4893
5080
|
[attr.version]="version"
|
|
@@ -4904,7 +5091,7 @@ class GoabNotification {
|
|
|
4904
5091
|
}
|
|
4905
5092
|
`, isInline: true }); }
|
|
4906
5093
|
}
|
|
4907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5094
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabNotification, decorators: [{
|
|
4908
5095
|
type: Component,
|
|
4909
5096
|
args: [{
|
|
4910
5097
|
standalone: true,
|
|
@@ -4927,7 +5114,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4927
5114
|
`,
|
|
4928
5115
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4929
5116
|
}]
|
|
4930
|
-
}],
|
|
5117
|
+
}], propDecorators: { type: [{
|
|
4931
5118
|
type: Input
|
|
4932
5119
|
}], ariaLive: [{
|
|
4933
5120
|
type: Input
|
|
@@ -4944,9 +5131,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4944
5131
|
type: Output
|
|
4945
5132
|
}] } });
|
|
4946
5133
|
|
|
5134
|
+
/** Full-width section with optional background. */
|
|
4947
5135
|
class GoabPageBlock {
|
|
4948
|
-
constructor(
|
|
4949
|
-
this.cdr =
|
|
5136
|
+
constructor() {
|
|
5137
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4950
5138
|
this.isReady = false;
|
|
4951
5139
|
}
|
|
4952
5140
|
ngOnInit() {
|
|
@@ -4955,8 +5143,8 @@ class GoabPageBlock {
|
|
|
4955
5143
|
this.cdr.detectChanges();
|
|
4956
5144
|
});
|
|
4957
5145
|
}
|
|
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.
|
|
5146
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPageBlock, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5147
|
+
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
5148
|
@if (isReady) {
|
|
4961
5149
|
<goa-page-block [attr.width]="width" [attr.testid]="testId">
|
|
4962
5150
|
<ng-content></ng-content>
|
|
@@ -4964,7 +5152,7 @@ class GoabPageBlock {
|
|
|
4964
5152
|
}
|
|
4965
5153
|
`, isInline: true }); }
|
|
4966
5154
|
}
|
|
4967
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5155
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPageBlock, decorators: [{
|
|
4968
5156
|
type: Component,
|
|
4969
5157
|
args: [{
|
|
4970
5158
|
standalone: true,
|
|
@@ -4978,16 +5166,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
4978
5166
|
`,
|
|
4979
5167
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4980
5168
|
}]
|
|
4981
|
-
}],
|
|
5169
|
+
}], propDecorators: { width: [{
|
|
4982
5170
|
type: Input
|
|
4983
5171
|
}], testId: [{
|
|
4984
5172
|
type: Input
|
|
4985
5173
|
}] } });
|
|
4986
5174
|
|
|
5175
|
+
/** Container for paginated content views. */
|
|
4987
5176
|
class GoabPages extends GoabBaseComponent {
|
|
4988
|
-
constructor(
|
|
4989
|
-
super();
|
|
4990
|
-
this.cdr =
|
|
5177
|
+
constructor() {
|
|
5178
|
+
super(...arguments);
|
|
5179
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
4991
5180
|
this.isReady = false;
|
|
4992
5181
|
}
|
|
4993
5182
|
ngOnInit() {
|
|
@@ -4996,8 +5185,8 @@ class GoabPages extends GoabBaseComponent {
|
|
|
4996
5185
|
this.cdr.detectChanges();
|
|
4997
5186
|
});
|
|
4998
5187
|
}
|
|
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.
|
|
5188
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPages, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5189
|
+
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
5190
|
@if (isReady) {
|
|
5002
5191
|
<goa-pages
|
|
5003
5192
|
[attr.current]="current"
|
|
@@ -5011,7 +5200,7 @@ class GoabPages extends GoabBaseComponent {
|
|
|
5011
5200
|
}
|
|
5012
5201
|
`, isInline: true }); }
|
|
5013
5202
|
}
|
|
5014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPages, decorators: [{
|
|
5015
5204
|
type: Component,
|
|
5016
5205
|
args: [{
|
|
5017
5206
|
standalone: true,
|
|
@@ -5031,19 +5220,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5031
5220
|
`,
|
|
5032
5221
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5033
5222
|
}]
|
|
5034
|
-
}],
|
|
5223
|
+
}], propDecorators: { current: [{
|
|
5035
5224
|
type: Input,
|
|
5036
5225
|
args: [{ transform: numberAttribute }]
|
|
5037
5226
|
}] } });
|
|
5038
5227
|
|
|
5228
|
+
/** Help users navigation between multiple pages or screens as part of a set. */
|
|
5039
5229
|
class GoabPagination extends GoabBaseComponent {
|
|
5040
|
-
constructor(
|
|
5041
|
-
super();
|
|
5042
|
-
this.cdr =
|
|
5230
|
+
constructor() {
|
|
5231
|
+
super(...arguments);
|
|
5232
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5043
5233
|
this.isReady = false;
|
|
5044
5234
|
this.version = "2";
|
|
5235
|
+
/** Number of data items shown per page. @default 10 */
|
|
5045
5236
|
this.perPageCount = 10;
|
|
5237
|
+
/** Controls which nav controls are visible. @default "all" */
|
|
5046
5238
|
this.variant = "all";
|
|
5239
|
+
/** Emits when the page changes. Emits the new page number as part of the change detail. */
|
|
5047
5240
|
this.onChange = new EventEmitter();
|
|
5048
5241
|
}
|
|
5049
5242
|
ngOnInit() {
|
|
@@ -5056,8 +5249,8 @@ class GoabPagination extends GoabBaseComponent {
|
|
|
5056
5249
|
const detail = e.detail;
|
|
5057
5250
|
this.onChange.emit(detail);
|
|
5058
5251
|
}
|
|
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.
|
|
5252
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPagination, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5253
|
+
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
5254
|
@if (isReady) {
|
|
5062
5255
|
<goa-pagination
|
|
5063
5256
|
[attr.version]="version"
|
|
@@ -5076,7 +5269,7 @@ class GoabPagination extends GoabBaseComponent {
|
|
|
5076
5269
|
}
|
|
5077
5270
|
`, isInline: true }); }
|
|
5078
5271
|
}
|
|
5079
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5272
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPagination, decorators: [{
|
|
5080
5273
|
type: Component,
|
|
5081
5274
|
args: [{
|
|
5082
5275
|
standalone: true,
|
|
@@ -5101,7 +5294,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5101
5294
|
`,
|
|
5102
5295
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5103
5296
|
}]
|
|
5104
|
-
}],
|
|
5297
|
+
}], propDecorators: { itemCount: [{
|
|
5105
5298
|
type: Input,
|
|
5106
5299
|
args: [{ required: true }]
|
|
5107
5300
|
}], pageNumber: [{
|
|
@@ -5115,12 +5308,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5115
5308
|
type: Output
|
|
5116
5309
|
}] } });
|
|
5117
5310
|
|
|
5311
|
+
/** A small overlay that opens on demand, used in other components. */
|
|
5118
5312
|
class GoabPopover extends GoabBaseComponent {
|
|
5119
|
-
constructor(
|
|
5120
|
-
super();
|
|
5121
|
-
this.cdr =
|
|
5313
|
+
constructor() {
|
|
5314
|
+
super(...arguments);
|
|
5315
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5122
5316
|
this.isReady = false;
|
|
5317
|
+
/** Sets the maximum width of the popover container. @default "320px" */
|
|
5123
5318
|
this.maxWidth = "320px";
|
|
5319
|
+
/** Sets if the popover has padding. Use false when content needs to be flush with boundaries. @default true */
|
|
5124
5320
|
this.padded = true;
|
|
5125
5321
|
}
|
|
5126
5322
|
ngOnInit() {
|
|
@@ -5129,8 +5325,8 @@ class GoabPopover extends GoabBaseComponent {
|
|
|
5129
5325
|
this.cdr.detectChanges();
|
|
5130
5326
|
});
|
|
5131
5327
|
}
|
|
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.
|
|
5328
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPopover, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5329
|
+
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
5330
|
@if (isReady) {
|
|
5135
5331
|
<goa-popover
|
|
5136
5332
|
[attr.maxwidth]="maxWidth"
|
|
@@ -5152,7 +5348,7 @@ class GoabPopover extends GoabBaseComponent {
|
|
|
5152
5348
|
}
|
|
5153
5349
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
5154
5350
|
}
|
|
5155
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPopover, decorators: [{
|
|
5156
5352
|
type: Component,
|
|
5157
5353
|
args: [{
|
|
5158
5354
|
standalone: true,
|
|
@@ -5181,7 +5377,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5181
5377
|
`,
|
|
5182
5378
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5183
5379
|
}]
|
|
5184
|
-
}],
|
|
5380
|
+
}], propDecorators: { maxWidth: [{
|
|
5185
5381
|
type: Input
|
|
5186
5382
|
}], minWidth: [{
|
|
5187
5383
|
type: Input
|
|
@@ -5196,10 +5392,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5196
5392
|
args: [{ required: true }]
|
|
5197
5393
|
}] } });
|
|
5198
5394
|
|
|
5395
|
+
/** A panel that pushes the main page content aside on desktop, falling back to an overlay drawer on smaller screens. */
|
|
5199
5396
|
class GoabPushDrawer {
|
|
5200
|
-
constructor(
|
|
5201
|
-
this.cdr =
|
|
5397
|
+
constructor() {
|
|
5398
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5202
5399
|
this.version = "2";
|
|
5400
|
+
/** Emits when the push drawer closes. */
|
|
5203
5401
|
this.onClose = new EventEmitter();
|
|
5204
5402
|
this.isReady = false;
|
|
5205
5403
|
}
|
|
@@ -5220,8 +5418,8 @@ class GoabPushDrawer {
|
|
|
5220
5418
|
return null;
|
|
5221
5419
|
return this.heading instanceof TemplateRef ? this.heading : null;
|
|
5222
5420
|
}
|
|
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.
|
|
5421
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPushDrawer, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5422
|
+
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
5423
|
<goa-push-drawer
|
|
5226
5424
|
[open]="open"
|
|
5227
5425
|
[attr.heading]="getHeadingAsString()"
|
|
@@ -5242,7 +5440,7 @@ class GoabPushDrawer {
|
|
|
5242
5440
|
</goa-push-drawer>
|
|
5243
5441
|
} `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
5244
5442
|
}
|
|
5245
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5443
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabPushDrawer, decorators: [{
|
|
5246
5444
|
type: Component,
|
|
5247
5445
|
args: [{
|
|
5248
5446
|
standalone: true,
|
|
@@ -5270,7 +5468,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5270
5468
|
} `,
|
|
5271
5469
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5272
5470
|
}]
|
|
5273
|
-
}],
|
|
5471
|
+
}], propDecorators: { open: [{
|
|
5274
5472
|
type: Input,
|
|
5275
5473
|
args: [{ transform: booleanAttribute }]
|
|
5276
5474
|
}], heading: [{
|
|
@@ -5285,13 +5483,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5285
5483
|
type: Output
|
|
5286
5484
|
}] } });
|
|
5287
5485
|
|
|
5486
|
+
/** Allow users to select one option from a set. */
|
|
5288
5487
|
class GoabRadioGroup extends GoabControlValueAccessor {
|
|
5289
|
-
constructor(
|
|
5290
|
-
super(
|
|
5291
|
-
this.cdr =
|
|
5488
|
+
constructor() {
|
|
5489
|
+
super(...arguments);
|
|
5490
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5292
5491
|
this.isReady = false;
|
|
5293
5492
|
this.version = "2";
|
|
5493
|
+
/** Sets the size of all radio items. 'compact' reduces spacing for dense layouts (V2 only). @default "default" */
|
|
5294
5494
|
this.size = "default";
|
|
5495
|
+
/** Emits when the selected radio item changes. Emits the name, value, and event of the selected item. */
|
|
5295
5496
|
this.onChange = new EventEmitter();
|
|
5296
5497
|
}
|
|
5297
5498
|
ngOnInit() {
|
|
@@ -5309,8 +5510,8 @@ class GoabRadioGroup extends GoabControlValueAccessor {
|
|
|
5309
5510
|
this.onChange.emit(detail);
|
|
5310
5511
|
this.fcChange?.(detail.value);
|
|
5311
5512
|
}
|
|
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.
|
|
5513
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabRadioGroup, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5514
|
+
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
5515
|
{
|
|
5315
5516
|
provide: NG_VALUE_ACCESSOR,
|
|
5316
5517
|
multi: true,
|
|
@@ -5341,7 +5542,7 @@ class GoabRadioGroup extends GoabControlValueAccessor {
|
|
|
5341
5542
|
}
|
|
5342
5543
|
`, isInline: true }); }
|
|
5343
5544
|
}
|
|
5344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5545
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabRadioGroup, decorators: [{
|
|
5345
5546
|
type: Component,
|
|
5346
5547
|
args: [{
|
|
5347
5548
|
standalone: true,
|
|
@@ -5379,7 +5580,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5379
5580
|
},
|
|
5380
5581
|
],
|
|
5381
5582
|
}]
|
|
5382
|
-
}],
|
|
5583
|
+
}], propDecorators: { name: [{
|
|
5383
5584
|
type: Input
|
|
5384
5585
|
}], orientation: [{
|
|
5385
5586
|
type: Input
|
|
@@ -5391,10 +5592,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5391
5592
|
type: Output
|
|
5392
5593
|
}] } });
|
|
5393
5594
|
|
|
5595
|
+
/** Individual radio option within a group. */
|
|
5394
5596
|
class GoabRadioItem extends GoabBaseComponent {
|
|
5395
|
-
constructor(
|
|
5396
|
-
super();
|
|
5397
|
-
this.cdr =
|
|
5597
|
+
constructor() {
|
|
5598
|
+
super(...arguments);
|
|
5599
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5398
5600
|
this.isReady = false;
|
|
5399
5601
|
this.version = "2";
|
|
5400
5602
|
}
|
|
@@ -5416,8 +5618,8 @@ class GoabRadioItem extends GoabBaseComponent {
|
|
|
5416
5618
|
return null;
|
|
5417
5619
|
return this.description instanceof TemplateRef ? this.description : null;
|
|
5418
5620
|
}
|
|
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.
|
|
5621
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabRadioItem, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5622
|
+
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
5623
|
@if (isReady) {
|
|
5422
5624
|
<goa-radio-item
|
|
5423
5625
|
[attr.version]="version"
|
|
@@ -5450,7 +5652,7 @@ class GoabRadioItem extends GoabBaseComponent {
|
|
|
5450
5652
|
}
|
|
5451
5653
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
5452
5654
|
}
|
|
5453
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabRadioItem, decorators: [{
|
|
5454
5656
|
type: Component,
|
|
5455
5657
|
args: [{
|
|
5456
5658
|
standalone: true,
|
|
@@ -5490,7 +5692,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5490
5692
|
imports: [NgTemplateOutlet],
|
|
5491
5693
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5492
5694
|
}]
|
|
5493
|
-
}],
|
|
5695
|
+
}], propDecorators: { value: [{
|
|
5494
5696
|
type: Input
|
|
5495
5697
|
}], label: [{
|
|
5496
5698
|
type: Input
|
|
@@ -5520,9 +5722,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5520
5722
|
args: [{ transform: booleanAttribute }]
|
|
5521
5723
|
}] } });
|
|
5522
5724
|
|
|
5725
|
+
/** A side navigation that helps the user navigate between pages. */
|
|
5523
5726
|
class GoabSideMenu {
|
|
5524
|
-
constructor(
|
|
5525
|
-
this.cdr =
|
|
5727
|
+
constructor() {
|
|
5728
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5526
5729
|
this.isReady = false;
|
|
5527
5730
|
this.version = "2";
|
|
5528
5731
|
}
|
|
@@ -5532,8 +5735,8 @@ class GoabSideMenu {
|
|
|
5532
5735
|
this.cdr.detectChanges();
|
|
5533
5736
|
});
|
|
5534
5737
|
}
|
|
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.
|
|
5738
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenu, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5739
|
+
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
5740
|
@if (isReady) {
|
|
5538
5741
|
<goa-side-menu [attr.version]="version" [attr.testid]="testId">
|
|
5539
5742
|
<ng-content />
|
|
@@ -5541,7 +5744,7 @@ class GoabSideMenu {
|
|
|
5541
5744
|
}
|
|
5542
5745
|
`, isInline: true }); }
|
|
5543
5746
|
}
|
|
5544
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5747
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenu, decorators: [{
|
|
5545
5748
|
type: Component,
|
|
5546
5749
|
args: [{
|
|
5547
5750
|
standalone: true,
|
|
@@ -5555,14 +5758,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5555
5758
|
`,
|
|
5556
5759
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5557
5760
|
}]
|
|
5558
|
-
}],
|
|
5761
|
+
}], propDecorators: { testId: [{
|
|
5559
5762
|
type: Input
|
|
5560
5763
|
}] } });
|
|
5561
5764
|
|
|
5765
|
+
/** Group of related side menu items. */
|
|
5562
5766
|
class GoabSideMenuGroup extends GoabBaseComponent {
|
|
5563
|
-
constructor(
|
|
5564
|
-
super();
|
|
5565
|
-
this.cdr =
|
|
5767
|
+
constructor() {
|
|
5768
|
+
super(...arguments);
|
|
5769
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5566
5770
|
this.isReady = false;
|
|
5567
5771
|
this.version = "2";
|
|
5568
5772
|
}
|
|
@@ -5572,8 +5776,8 @@ class GoabSideMenuGroup extends GoabBaseComponent {
|
|
|
5572
5776
|
this.cdr.detectChanges();
|
|
5573
5777
|
});
|
|
5574
5778
|
}
|
|
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.
|
|
5779
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenuGroup, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5780
|
+
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
5781
|
@if (isReady) {
|
|
5578
5782
|
<goa-side-menu-group
|
|
5579
5783
|
[attr.version]="version"
|
|
@@ -5590,7 +5794,7 @@ class GoabSideMenuGroup extends GoabBaseComponent {
|
|
|
5590
5794
|
}
|
|
5591
5795
|
`, isInline: true }); }
|
|
5592
5796
|
}
|
|
5593
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5797
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenuGroup, decorators: [{
|
|
5594
5798
|
type: Component,
|
|
5595
5799
|
args: [{
|
|
5596
5800
|
standalone: true,
|
|
@@ -5613,16 +5817,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5613
5817
|
`,
|
|
5614
5818
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5615
5819
|
}]
|
|
5616
|
-
}],
|
|
5820
|
+
}], propDecorators: { heading: [{
|
|
5617
5821
|
type: Input,
|
|
5618
5822
|
args: [{ required: true }]
|
|
5619
5823
|
}], icon: [{
|
|
5620
5824
|
type: Input
|
|
5621
5825
|
}] } });
|
|
5622
5826
|
|
|
5827
|
+
/** Section heading in side menu. */
|
|
5623
5828
|
class GoabSideMenuHeading {
|
|
5624
|
-
constructor(
|
|
5625
|
-
this.cdr =
|
|
5829
|
+
constructor() {
|
|
5830
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5626
5831
|
this.isReady = false;
|
|
5627
5832
|
this.version = "2";
|
|
5628
5833
|
}
|
|
@@ -5632,8 +5837,8 @@ class GoabSideMenuHeading {
|
|
|
5632
5837
|
this.cdr.detectChanges();
|
|
5633
5838
|
});
|
|
5634
5839
|
}
|
|
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.
|
|
5840
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenuHeading, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5841
|
+
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
5842
|
@if (isReady) {
|
|
5638
5843
|
<goa-side-menu-heading
|
|
5639
5844
|
[attr.version]="version"
|
|
@@ -5648,7 +5853,7 @@ class GoabSideMenuHeading {
|
|
|
5648
5853
|
}
|
|
5649
5854
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
5650
5855
|
}
|
|
5651
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5856
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSideMenuHeading, decorators: [{
|
|
5652
5857
|
type: Component,
|
|
5653
5858
|
args: [{
|
|
5654
5859
|
standalone: true,
|
|
@@ -5670,7 +5875,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5670
5875
|
`,
|
|
5671
5876
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5672
5877
|
}]
|
|
5673
|
-
}],
|
|
5878
|
+
}], propDecorators: { icon: [{
|
|
5674
5879
|
type: Input
|
|
5675
5880
|
}], testId: [{
|
|
5676
5881
|
type: Input
|
|
@@ -5678,11 +5883,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5678
5883
|
type: Input
|
|
5679
5884
|
}] } });
|
|
5680
5885
|
|
|
5886
|
+
/** Provide visual feedback to users while loading a content heavy page or page element. */
|
|
5681
5887
|
class GoabSkeleton extends GoabBaseComponent {
|
|
5682
|
-
constructor(
|
|
5683
|
-
super();
|
|
5684
|
-
this.cdr =
|
|
5888
|
+
constructor() {
|
|
5889
|
+
super(...arguments);
|
|
5890
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5685
5891
|
this.isReady = false;
|
|
5892
|
+
/** Sets the maximum width. Currently only used in card skeleton type. @default "300px" */
|
|
5686
5893
|
this.maxWidth = "300px";
|
|
5687
5894
|
}
|
|
5688
5895
|
ngOnInit() {
|
|
@@ -5691,8 +5898,8 @@ class GoabSkeleton extends GoabBaseComponent {
|
|
|
5691
5898
|
this.cdr.detectChanges();
|
|
5692
5899
|
});
|
|
5693
5900
|
}
|
|
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.
|
|
5901
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSkeleton, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5902
|
+
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
5903
|
@if (isReady) {
|
|
5697
5904
|
<goa-skeleton
|
|
5698
5905
|
[attr.maxwidth]="maxWidth"
|
|
@@ -5709,7 +5916,7 @@ class GoabSkeleton extends GoabBaseComponent {
|
|
|
5709
5916
|
}
|
|
5710
5917
|
`, isInline: true }); }
|
|
5711
5918
|
}
|
|
5712
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSkeleton, decorators: [{
|
|
5713
5920
|
type: Component,
|
|
5714
5921
|
args: [{
|
|
5715
5922
|
standalone: true,
|
|
@@ -5732,7 +5939,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5732
5939
|
`,
|
|
5733
5940
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5734
5941
|
}]
|
|
5735
|
-
}],
|
|
5942
|
+
}], propDecorators: { type: [{
|
|
5736
5943
|
type: Input,
|
|
5737
5944
|
args: [{ required: true }]
|
|
5738
5945
|
}], maxWidth: [{
|
|
@@ -5744,9 +5951,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5744
5951
|
args: [{ transform: numberAttribute }]
|
|
5745
5952
|
}] } });
|
|
5746
5953
|
|
|
5954
|
+
/** Negative area between the components and the interface. */
|
|
5747
5955
|
class GoabSpacer {
|
|
5748
|
-
constructor(
|
|
5749
|
-
this.cdr =
|
|
5956
|
+
constructor() {
|
|
5957
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5750
5958
|
this.isReady = false;
|
|
5751
5959
|
}
|
|
5752
5960
|
ngOnInit() {
|
|
@@ -5755,8 +5963,8 @@ class GoabSpacer {
|
|
|
5755
5963
|
this.cdr.detectChanges();
|
|
5756
5964
|
});
|
|
5757
5965
|
}
|
|
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.
|
|
5966
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSpacer, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5967
|
+
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
5968
|
@if (isReady) {
|
|
5761
5969
|
<goa-spacer
|
|
5762
5970
|
[attr.hspacing]="hSpacing"
|
|
@@ -5767,7 +5975,7 @@ class GoabSpacer {
|
|
|
5767
5975
|
}
|
|
5768
5976
|
`, isInline: true }); }
|
|
5769
5977
|
}
|
|
5770
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
5978
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabSpacer, decorators: [{
|
|
5771
5979
|
type: Component,
|
|
5772
5980
|
args: [{
|
|
5773
5981
|
standalone: true,
|
|
@@ -5784,7 +5992,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5784
5992
|
`,
|
|
5785
5993
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5786
5994
|
}]
|
|
5787
|
-
}],
|
|
5995
|
+
}], propDecorators: { hSpacing: [{
|
|
5788
5996
|
type: Input
|
|
5789
5997
|
}], vSpacing: [{
|
|
5790
5998
|
type: Input
|
|
@@ -5792,9 +6000,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5792
6000
|
type: Input
|
|
5793
6001
|
}] } });
|
|
5794
6002
|
|
|
6003
|
+
/** Individual tab within a tabs component. */
|
|
5795
6004
|
class GoabTab {
|
|
5796
|
-
constructor(
|
|
5797
|
-
this.cdr =
|
|
6005
|
+
constructor() {
|
|
6006
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5798
6007
|
this.isReady = false;
|
|
5799
6008
|
}
|
|
5800
6009
|
ngOnInit() {
|
|
@@ -5811,8 +6020,8 @@ class GoabTab {
|
|
|
5811
6020
|
return null;
|
|
5812
6021
|
return this.heading instanceof TemplateRef ? this.heading : null;
|
|
5813
6022
|
}
|
|
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.
|
|
6023
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTab, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6024
|
+
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
6025
|
@if (isReady) {
|
|
5817
6026
|
<goa-tab
|
|
5818
6027
|
[attr.slug]="slug"
|
|
@@ -5829,7 +6038,7 @@ class GoabTab {
|
|
|
5829
6038
|
}
|
|
5830
6039
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
5831
6040
|
}
|
|
5832
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6041
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTab, decorators: [{
|
|
5833
6042
|
type: Component,
|
|
5834
6043
|
args: [{
|
|
5835
6044
|
standalone: true,
|
|
@@ -5853,7 +6062,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5853
6062
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5854
6063
|
imports: [NgTemplateOutlet],
|
|
5855
6064
|
}]
|
|
5856
|
-
}],
|
|
6065
|
+
}], propDecorators: { heading: [{
|
|
5857
6066
|
type: Input
|
|
5858
6067
|
}], disabled: [{
|
|
5859
6068
|
type: Input,
|
|
@@ -5862,13 +6071,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5862
6071
|
type: Input
|
|
5863
6072
|
}] } });
|
|
5864
6073
|
|
|
6074
|
+
/** A set of structured data that is easy for a user to scan, examine, and compare. */
|
|
5865
6075
|
class GoabTable extends GoabBaseComponent {
|
|
5866
|
-
constructor(
|
|
5867
|
-
super();
|
|
5868
|
-
this.cdr =
|
|
6076
|
+
constructor() {
|
|
6077
|
+
super(...arguments);
|
|
6078
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5869
6079
|
this.isReady = false;
|
|
5870
6080
|
this.version = "2";
|
|
6081
|
+
/** Emits when a table column is sorted. Emits the sort column and direction as GoabTableOnSortDetail. */
|
|
5871
6082
|
this.onSort = new EventEmitter();
|
|
6083
|
+
/** Emits when multi-column sorting changes. Emits an array of sort entries as GoabTableOnMultiSortDetail. */
|
|
5872
6084
|
this.onMultiSort = new EventEmitter();
|
|
5873
6085
|
}
|
|
5874
6086
|
ngOnInit() {
|
|
@@ -5885,8 +6097,8 @@ class GoabTable extends GoabBaseComponent {
|
|
|
5885
6097
|
const detail = e.detail;
|
|
5886
6098
|
this.onMultiSort.emit(detail);
|
|
5887
6099
|
}
|
|
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.
|
|
6100
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTable, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6101
|
+
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
6102
|
@if (isReady) {
|
|
5891
6103
|
<goa-table
|
|
5892
6104
|
[attr.version]="version"
|
|
@@ -5909,7 +6121,7 @@ class GoabTable extends GoabBaseComponent {
|
|
|
5909
6121
|
}
|
|
5910
6122
|
`, isInline: true }); }
|
|
5911
6123
|
}
|
|
5912
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6124
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTable, decorators: [{
|
|
5913
6125
|
type: Component,
|
|
5914
6126
|
args: [{
|
|
5915
6127
|
standalone: true,
|
|
@@ -5938,7 +6150,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5938
6150
|
`,
|
|
5939
6151
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5940
6152
|
}]
|
|
5941
|
-
}],
|
|
6153
|
+
}], propDecorators: { width: [{
|
|
5942
6154
|
type: Input
|
|
5943
6155
|
}], variant: [{
|
|
5944
6156
|
type: Input
|
|
@@ -5953,10 +6165,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5953
6165
|
type: Output
|
|
5954
6166
|
}] } });
|
|
5955
6167
|
|
|
6168
|
+
/** A set of structured data that is easy for a user to scan, examine, and compare. */
|
|
5956
6169
|
class GoabTableSortHeader {
|
|
5957
|
-
constructor(
|
|
5958
|
-
this.cdr =
|
|
6170
|
+
constructor() {
|
|
6171
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5959
6172
|
this.isReady = false;
|
|
6173
|
+
/** Sets the sort direction indicator. @default "none" */
|
|
5960
6174
|
this.direction = "none";
|
|
5961
6175
|
}
|
|
5962
6176
|
ngOnInit() {
|
|
@@ -5965,8 +6179,8 @@ class GoabTableSortHeader {
|
|
|
5965
6179
|
this.cdr.detectChanges();
|
|
5966
6180
|
});
|
|
5967
6181
|
}
|
|
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.
|
|
6182
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTableSortHeader, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6183
|
+
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
6184
|
@if (isReady) {
|
|
5971
6185
|
<goa-table-sort-header
|
|
5972
6186
|
[attr.name]="name"
|
|
@@ -5978,7 +6192,7 @@ class GoabTableSortHeader {
|
|
|
5978
6192
|
}
|
|
5979
6193
|
`, isInline: true }); }
|
|
5980
6194
|
}
|
|
5981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTableSortHeader, decorators: [{
|
|
5982
6196
|
type: Component,
|
|
5983
6197
|
args: [{
|
|
5984
6198
|
standalone: true,
|
|
@@ -5996,7 +6210,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
5996
6210
|
`,
|
|
5997
6211
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
5998
6212
|
}]
|
|
5999
|
-
}],
|
|
6213
|
+
}], propDecorators: { name: [{
|
|
6000
6214
|
type: Input
|
|
6001
6215
|
}], direction: [{
|
|
6002
6216
|
type: Input
|
|
@@ -6004,11 +6218,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6004
6218
|
type: Input
|
|
6005
6219
|
}] } });
|
|
6006
6220
|
|
|
6221
|
+
/** Let users navigate between related sections of content, displaying one section at a time. */
|
|
6007
6222
|
class GoabTabs {
|
|
6008
|
-
constructor(
|
|
6009
|
-
this.cdr =
|
|
6223
|
+
constructor() {
|
|
6224
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6010
6225
|
this.isReady = false;
|
|
6011
6226
|
this.version = "2";
|
|
6227
|
+
/** Emits when the active tab changes. Emits the new tab index as GoabTabsOnChangeDetail. */
|
|
6012
6228
|
this.onChange = new EventEmitter();
|
|
6013
6229
|
}
|
|
6014
6230
|
ngOnInit() {
|
|
@@ -6021,8 +6237,8 @@ class GoabTabs {
|
|
|
6021
6237
|
const detail = e.detail;
|
|
6022
6238
|
this.onChange.emit(detail);
|
|
6023
6239
|
}
|
|
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.
|
|
6240
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTabs, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6241
|
+
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
6242
|
@if (isReady) {
|
|
6027
6243
|
<goa-tabs
|
|
6028
6244
|
[attr.version]="version"
|
|
@@ -6038,7 +6254,7 @@ class GoabTabs {
|
|
|
6038
6254
|
}
|
|
6039
6255
|
`, isInline: true }); }
|
|
6040
6256
|
}
|
|
6041
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6257
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTabs, decorators: [{
|
|
6042
6258
|
type: Component,
|
|
6043
6259
|
args: [{
|
|
6044
6260
|
standalone: true,
|
|
@@ -6060,7 +6276,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6060
6276
|
`,
|
|
6061
6277
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6062
6278
|
}]
|
|
6063
|
-
}],
|
|
6279
|
+
}], propDecorators: { initialTab: [{
|
|
6064
6280
|
type: Input,
|
|
6065
6281
|
args: [{ transform: numberAttribute }]
|
|
6066
6282
|
}], testId: [{
|
|
@@ -6075,11 +6291,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6075
6291
|
type: Output
|
|
6076
6292
|
}] } });
|
|
6077
6293
|
|
|
6294
|
+
/** A notification that appears at the bottom of the screen. */
|
|
6078
6295
|
class GoabTemporaryNotificationCtrl {
|
|
6079
|
-
constructor(
|
|
6080
|
-
this.cdr =
|
|
6296
|
+
constructor() {
|
|
6297
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6081
6298
|
this.isReady = false;
|
|
6299
|
+
/** Vertical position of the notification container. @default "bottom" */
|
|
6082
6300
|
this.verticalPosition = "bottom";
|
|
6301
|
+
/** Horizontal position of the notification container. @default "center" */
|
|
6083
6302
|
this.horizontalPosition = "center";
|
|
6084
6303
|
}
|
|
6085
6304
|
ngOnInit() {
|
|
@@ -6088,8 +6307,8 @@ class GoabTemporaryNotificationCtrl {
|
|
|
6088
6307
|
this.cdr.detectChanges();
|
|
6089
6308
|
});
|
|
6090
6309
|
}
|
|
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.
|
|
6310
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTemporaryNotificationCtrl, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6311
|
+
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
6312
|
@if (isReady) {
|
|
6094
6313
|
<goa-temp-notification-ctrl
|
|
6095
6314
|
[attr.vertical-position]="verticalPosition"
|
|
@@ -6100,7 +6319,7 @@ class GoabTemporaryNotificationCtrl {
|
|
|
6100
6319
|
}
|
|
6101
6320
|
`, isInline: true }); }
|
|
6102
6321
|
}
|
|
6103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTemporaryNotificationCtrl, decorators: [{
|
|
6104
6323
|
type: Component,
|
|
6105
6324
|
args: [{
|
|
6106
6325
|
standalone: true,
|
|
@@ -6117,7 +6336,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6117
6336
|
`,
|
|
6118
6337
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6119
6338
|
}]
|
|
6120
|
-
}],
|
|
6339
|
+
}], propDecorators: { verticalPosition: [{
|
|
6121
6340
|
type: Input
|
|
6122
6341
|
}], horizontalPosition: [{
|
|
6123
6342
|
type: Input
|
|
@@ -6125,7 +6344,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6125
6344
|
type: Input
|
|
6126
6345
|
}] } });
|
|
6127
6346
|
|
|
6347
|
+
/** Provides consistent sizing, spacing, and colour to written content. */
|
|
6128
6348
|
class GoabText {
|
|
6349
|
+
constructor() {
|
|
6350
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6351
|
+
this.isReady = false;
|
|
6352
|
+
}
|
|
6129
6353
|
/*
|
|
6130
6354
|
This is necessary because angular outputs two elements, <goab-text> and <goa-text>
|
|
6131
6355
|
This removes the id from <goa-text> and only outputs it to <goab-text>
|
|
@@ -6133,10 +6357,6 @@ class GoabText {
|
|
|
6133
6357
|
get hostId() {
|
|
6134
6358
|
return this.id;
|
|
6135
6359
|
}
|
|
6136
|
-
constructor(cdr) {
|
|
6137
|
-
this.cdr = cdr;
|
|
6138
|
-
this.isReady = false;
|
|
6139
|
-
}
|
|
6140
6360
|
ngOnInit() {
|
|
6141
6361
|
// For Angular 20, we need to delay rendering the web component
|
|
6142
6362
|
// to ensure all attributes are properly bound before the component initializes
|
|
@@ -6145,8 +6365,8 @@ class GoabText {
|
|
|
6145
6365
|
this.cdr.detectChanges();
|
|
6146
6366
|
}, 0);
|
|
6147
6367
|
}
|
|
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.
|
|
6368
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabText, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6369
|
+
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
6370
|
@if (isReady) {
|
|
6151
6371
|
<goa-text
|
|
6152
6372
|
[attr.as]="tag"
|
|
@@ -6163,7 +6383,7 @@ class GoabText {
|
|
|
6163
6383
|
}
|
|
6164
6384
|
`, isInline: true }); }
|
|
6165
6385
|
}
|
|
6166
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6386
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabText, decorators: [{
|
|
6167
6387
|
type: Component,
|
|
6168
6388
|
args: [{
|
|
6169
6389
|
standalone: true,
|
|
@@ -6186,7 +6406,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6186
6406
|
`,
|
|
6187
6407
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6188
6408
|
}]
|
|
6189
|
-
}],
|
|
6409
|
+
}], propDecorators: { tag: [{
|
|
6190
6410
|
type: Input
|
|
6191
6411
|
}], size: [{
|
|
6192
6412
|
type: Input
|
|
@@ -6209,16 +6429,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6209
6429
|
type: Input
|
|
6210
6430
|
}] } });
|
|
6211
6431
|
|
|
6432
|
+
/** A multi-line field where users can input and edit text. */
|
|
6212
6433
|
class GoabTextArea extends GoabControlValueAccessor {
|
|
6213
|
-
constructor(
|
|
6214
|
-
super(
|
|
6215
|
-
this.cdr =
|
|
6434
|
+
constructor() {
|
|
6435
|
+
super(...arguments);
|
|
6436
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6437
|
+
/** Counting interval for characters or words, specifying whether to count every character or word. @default "" */
|
|
6216
6438
|
this.countBy = "";
|
|
6439
|
+
/** Maximum number of characters or words allowed. @default -1 */
|
|
6217
6440
|
this.maxCount = -1;
|
|
6441
|
+
/** Specifies the autocomplete attribute for the textarea input. @default "on" */
|
|
6218
6442
|
this.autoComplete = "on";
|
|
6443
|
+
/** Sets the size variant of the textarea. @default "default" */
|
|
6219
6444
|
this.size = "default";
|
|
6445
|
+
/** Emits when the textarea value changes. Emits the name and new value. */
|
|
6220
6446
|
this.onChange = new EventEmitter();
|
|
6447
|
+
/** Emits when a key is pressed in the textarea. Emits the name, value, and key. */
|
|
6221
6448
|
this.onKeyPress = new EventEmitter();
|
|
6449
|
+
/** Emits when the textarea loses focus. Emits the name and current value. */
|
|
6222
6450
|
this.onBlur = new EventEmitter();
|
|
6223
6451
|
this.isReady = false;
|
|
6224
6452
|
this.version = "2";
|
|
@@ -6250,8 +6478,8 @@ class GoabTextArea extends GoabControlValueAccessor {
|
|
|
6250
6478
|
this.markAsTouched();
|
|
6251
6479
|
this.onBlur.emit(detail);
|
|
6252
6480
|
}
|
|
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.
|
|
6481
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTextArea, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6482
|
+
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
6483
|
{
|
|
6256
6484
|
provide: NG_VALUE_ACCESSOR,
|
|
6257
6485
|
multi: true,
|
|
@@ -6289,7 +6517,7 @@ class GoabTextArea extends GoabControlValueAccessor {
|
|
|
6289
6517
|
}
|
|
6290
6518
|
`, isInline: true }); }
|
|
6291
6519
|
}
|
|
6292
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6520
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTextArea, decorators: [{
|
|
6293
6521
|
type: Component,
|
|
6294
6522
|
args: [{
|
|
6295
6523
|
standalone: true,
|
|
@@ -6334,7 +6562,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6334
6562
|
},
|
|
6335
6563
|
],
|
|
6336
6564
|
}]
|
|
6337
|
-
}],
|
|
6565
|
+
}], propDecorators: { name: [{
|
|
6338
6566
|
type: Input
|
|
6339
6567
|
}], placeholder: [{
|
|
6340
6568
|
type: Input
|
|
@@ -6366,10 +6594,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6366
6594
|
type: Output
|
|
6367
6595
|
}] } });
|
|
6368
6596
|
|
|
6597
|
+
/** A small popover that displays more information about an item. */
|
|
6369
6598
|
class GoabTooltip extends GoabBaseComponent {
|
|
6370
|
-
constructor(
|
|
6371
|
-
super();
|
|
6372
|
-
this.cdr =
|
|
6599
|
+
constructor() {
|
|
6600
|
+
super(...arguments);
|
|
6601
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6373
6602
|
this.isReady = false;
|
|
6374
6603
|
}
|
|
6375
6604
|
ngOnInit() {
|
|
@@ -6386,8 +6615,8 @@ class GoabTooltip extends GoabBaseComponent {
|
|
|
6386
6615
|
return null;
|
|
6387
6616
|
return this.content instanceof TemplateRef ? this.content : null;
|
|
6388
6617
|
}
|
|
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.
|
|
6618
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTooltip, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6619
|
+
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
6620
|
@if (isReady) {
|
|
6392
6621
|
<goa-tooltip
|
|
6393
6622
|
[attr.position]="position"
|
|
@@ -6411,7 +6640,7 @@ class GoabTooltip extends GoabBaseComponent {
|
|
|
6411
6640
|
}
|
|
6412
6641
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
6413
6642
|
}
|
|
6414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6643
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabTooltip, decorators: [{
|
|
6415
6644
|
type: Component,
|
|
6416
6645
|
args: [{
|
|
6417
6646
|
standalone: true,
|
|
@@ -6442,7 +6671,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6442
6671
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6443
6672
|
imports: [NgTemplateOutlet],
|
|
6444
6673
|
}]
|
|
6445
|
-
}],
|
|
6674
|
+
}], propDecorators: { position: [{
|
|
6446
6675
|
type: Input
|
|
6447
6676
|
}], content: [{
|
|
6448
6677
|
type: Input
|
|
@@ -6452,10 +6681,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6452
6681
|
type: Input
|
|
6453
6682
|
}] } });
|
|
6454
6683
|
|
|
6684
|
+
/** Side menu variant for worker applications. */
|
|
6455
6685
|
class GoabWorkSideMenu {
|
|
6456
|
-
constructor(
|
|
6457
|
-
this.cdr =
|
|
6686
|
+
constructor() {
|
|
6687
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6688
|
+
/** Emits when the side menu is toggled open or closed. */
|
|
6458
6689
|
this.onToggle = new EventEmitter();
|
|
6690
|
+
/** Emits when a navigation link is clicked. Emits the URL as a string. */
|
|
6459
6691
|
this.onNavigate = new EventEmitter();
|
|
6460
6692
|
this.isReady = false;
|
|
6461
6693
|
}
|
|
@@ -6473,8 +6705,8 @@ class GoabWorkSideMenu {
|
|
|
6473
6705
|
_onNavigate(e) {
|
|
6474
6706
|
this.onNavigate.emit(e.detail.url);
|
|
6475
6707
|
}
|
|
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.
|
|
6708
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenu, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6709
|
+
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
6710
|
@if (isReady) {
|
|
6479
6711
|
<goa-work-side-menu
|
|
6480
6712
|
[open]="open ?? false"
|
|
@@ -6499,7 +6731,7 @@ class GoabWorkSideMenu {
|
|
|
6499
6731
|
}
|
|
6500
6732
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
6501
6733
|
}
|
|
6502
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenu, decorators: [{
|
|
6503
6735
|
type: Component,
|
|
6504
6736
|
args: [{
|
|
6505
6737
|
standalone: true,
|
|
@@ -6531,7 +6763,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6531
6763
|
`,
|
|
6532
6764
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6533
6765
|
}]
|
|
6534
|
-
}],
|
|
6766
|
+
}], propDecorators: { heading: [{
|
|
6535
6767
|
type: Input,
|
|
6536
6768
|
args: [{ required: true }]
|
|
6537
6769
|
}], url: [{
|
|
@@ -6558,9 +6790,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6558
6790
|
type: Output
|
|
6559
6791
|
}] } });
|
|
6560
6792
|
|
|
6793
|
+
/** Collapsible group of items within the work side menu. */
|
|
6561
6794
|
class GoabWorkSideMenuGroup {
|
|
6562
|
-
constructor(
|
|
6563
|
-
this.cdr =
|
|
6795
|
+
constructor() {
|
|
6796
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6564
6797
|
this.isReady = false;
|
|
6565
6798
|
}
|
|
6566
6799
|
ngOnInit() {
|
|
@@ -6571,8 +6804,8 @@ class GoabWorkSideMenuGroup {
|
|
|
6571
6804
|
this.cdr.detectChanges();
|
|
6572
6805
|
}, 0);
|
|
6573
6806
|
}
|
|
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.
|
|
6807
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenuGroup, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6808
|
+
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
6809
|
@if (isReady) {
|
|
6577
6810
|
<goa-work-side-menu-group
|
|
6578
6811
|
[attr.heading]="heading"
|
|
@@ -6585,7 +6818,7 @@ class GoabWorkSideMenuGroup {
|
|
|
6585
6818
|
}
|
|
6586
6819
|
`, isInline: true }); }
|
|
6587
6820
|
}
|
|
6588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6821
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenuGroup, decorators: [{
|
|
6589
6822
|
type: Component,
|
|
6590
6823
|
args: [{
|
|
6591
6824
|
standalone: true,
|
|
@@ -6604,7 +6837,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6604
6837
|
`,
|
|
6605
6838
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6606
6839
|
}]
|
|
6607
|
-
}],
|
|
6840
|
+
}], propDecorators: { heading: [{
|
|
6608
6841
|
type: Input,
|
|
6609
6842
|
args: [{ required: true }]
|
|
6610
6843
|
}], icon: [{
|
|
@@ -6616,9 +6849,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6616
6849
|
type: Input
|
|
6617
6850
|
}] } });
|
|
6618
6851
|
|
|
6852
|
+
/** Individual menu item within the work side menu. */
|
|
6619
6853
|
class GoabWorkSideMenuItem {
|
|
6620
|
-
constructor(
|
|
6621
|
-
this.cdr =
|
|
6854
|
+
constructor() {
|
|
6855
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6856
|
+
/** Sets the visual style of the badge. Use "emergency" for urgent items, "success" for positive status. @default "normal" */
|
|
6622
6857
|
this.type = "normal";
|
|
6623
6858
|
this.isReady = false;
|
|
6624
6859
|
}
|
|
@@ -6630,8 +6865,8 @@ class GoabWorkSideMenuItem {
|
|
|
6630
6865
|
this.cdr.detectChanges();
|
|
6631
6866
|
}, 0);
|
|
6632
6867
|
}
|
|
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.
|
|
6868
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenuItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6869
|
+
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
6870
|
@if (isReady) {
|
|
6636
6871
|
<goa-work-side-menu-item
|
|
6637
6872
|
[attr.label]="label"
|
|
@@ -6653,7 +6888,7 @@ class GoabWorkSideMenuItem {
|
|
|
6653
6888
|
}
|
|
6654
6889
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
6655
6890
|
}
|
|
6656
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideMenuItem, decorators: [{
|
|
6657
6892
|
type: Component,
|
|
6658
6893
|
args: [{
|
|
6659
6894
|
standalone: true,
|
|
@@ -6682,7 +6917,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6682
6917
|
`,
|
|
6683
6918
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6684
6919
|
}]
|
|
6685
|
-
}],
|
|
6920
|
+
}], propDecorators: { label: [{
|
|
6686
6921
|
type: Input,
|
|
6687
6922
|
args: [{ required: true }]
|
|
6688
6923
|
}], url: [{
|
|
@@ -6703,9 +6938,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6703
6938
|
type: Input
|
|
6704
6939
|
}] } });
|
|
6705
6940
|
|
|
6941
|
+
/** Displays an individual notification item in the work-side notification panel. */
|
|
6706
6942
|
class GoabWorkSideNotificationItem {
|
|
6707
|
-
constructor(
|
|
6708
|
-
this.cdr =
|
|
6943
|
+
constructor() {
|
|
6944
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
6945
|
+
/** Emits when the notification item is clicked. */
|
|
6709
6946
|
this.onClick = new EventEmitter();
|
|
6710
6947
|
this.isReady = false;
|
|
6711
6948
|
}
|
|
@@ -6718,44 +6955,44 @@ class GoabWorkSideNotificationItem {
|
|
|
6718
6955
|
_onClick() {
|
|
6719
6956
|
this.onClick.emit();
|
|
6720
6957
|
}
|
|
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.
|
|
6958
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideNotificationItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6959
|
+
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
6960
|
@if (isReady) {
|
|
6724
|
-
|
|
6725
|
-
|
|
6726
|
-
|
|
6727
|
-
|
|
6728
|
-
|
|
6729
|
-
|
|
6730
|
-
|
|
6731
|
-
|
|
6732
|
-
|
|
6733
|
-
|
|
6961
|
+
<goa-work-side-notification-item
|
|
6962
|
+
[attr.type]="type"
|
|
6963
|
+
[attr.timestamp]="timestamp"
|
|
6964
|
+
[attr.title]="title"
|
|
6965
|
+
[attr.description]="description"
|
|
6966
|
+
[attr.read-status]="readStatus"
|
|
6967
|
+
[attr.priority]="priority"
|
|
6968
|
+
[attr.testid]="testId"
|
|
6969
|
+
(_click)="_onClick()"
|
|
6970
|
+
/>
|
|
6734
6971
|
}
|
|
6735
6972
|
`, isInline: true }); }
|
|
6736
6973
|
}
|
|
6737
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
6974
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideNotificationItem, decorators: [{
|
|
6738
6975
|
type: Component,
|
|
6739
6976
|
args: [{
|
|
6740
6977
|
standalone: true,
|
|
6741
6978
|
selector: "goab-work-side-notification-item", // eslint-disable-line
|
|
6742
6979
|
template: `
|
|
6743
6980
|
@if (isReady) {
|
|
6744
|
-
|
|
6745
|
-
|
|
6746
|
-
|
|
6747
|
-
|
|
6748
|
-
|
|
6749
|
-
|
|
6750
|
-
|
|
6751
|
-
|
|
6752
|
-
|
|
6753
|
-
|
|
6981
|
+
<goa-work-side-notification-item
|
|
6982
|
+
[attr.type]="type"
|
|
6983
|
+
[attr.timestamp]="timestamp"
|
|
6984
|
+
[attr.title]="title"
|
|
6985
|
+
[attr.description]="description"
|
|
6986
|
+
[attr.read-status]="readStatus"
|
|
6987
|
+
[attr.priority]="priority"
|
|
6988
|
+
[attr.testid]="testId"
|
|
6989
|
+
(_click)="_onClick()"
|
|
6990
|
+
/>
|
|
6754
6991
|
}
|
|
6755
6992
|
`,
|
|
6756
6993
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6757
6994
|
}]
|
|
6758
|
-
}],
|
|
6995
|
+
}], propDecorators: { type: [{
|
|
6759
6996
|
type: Input
|
|
6760
6997
|
}], timestamp: [{
|
|
6761
6998
|
type: Input
|
|
@@ -6774,10 +7011,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.4", ngImpor
|
|
|
6774
7011
|
type: Output
|
|
6775
7012
|
}] } });
|
|
6776
7013
|
|
|
7014
|
+
/** Displays a panel of work-side notifications. */
|
|
6777
7015
|
class GoabWorkSideNotificationPanel {
|
|
6778
|
-
constructor(
|
|
6779
|
-
this.cdr =
|
|
7016
|
+
constructor() {
|
|
7017
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
7018
|
+
/** Emits when the user clicks "Mark all as read". */
|
|
6780
7019
|
this.onMarkAllRead = new EventEmitter();
|
|
7020
|
+
/** Emits when the user clicks "View all". */
|
|
6781
7021
|
this.onViewAll = new EventEmitter();
|
|
6782
7022
|
this.isReady = false;
|
|
6783
7023
|
}
|
|
@@ -6793,42 +7033,42 @@ class GoabWorkSideNotificationPanel {
|
|
|
6793
7033
|
_onViewAll() {
|
|
6794
7034
|
this.onViewAll.emit();
|
|
6795
7035
|
}
|
|
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.
|
|
7036
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideNotificationPanel, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7037
|
+
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
7038
|
@if (isReady) {
|
|
6799
|
-
|
|
6800
|
-
|
|
6801
|
-
|
|
6802
|
-
|
|
6803
|
-
|
|
6804
|
-
|
|
6805
|
-
|
|
6806
|
-
|
|
6807
|
-
|
|
7039
|
+
<goa-work-side-notification-panel
|
|
7040
|
+
[attr.heading]="heading"
|
|
7041
|
+
[attr.active-tab]="activeTab"
|
|
7042
|
+
[attr.testid]="testId"
|
|
7043
|
+
(_markAllRead)="_onMarkAllRead()"
|
|
7044
|
+
(_viewAll)="_onViewAll()"
|
|
7045
|
+
>
|
|
7046
|
+
<ng-content />
|
|
7047
|
+
</goa-work-side-notification-panel>
|
|
6808
7048
|
}
|
|
6809
7049
|
`, isInline: true }); }
|
|
6810
7050
|
}
|
|
6811
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.
|
|
7051
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: GoabWorkSideNotificationPanel, decorators: [{
|
|
6812
7052
|
type: Component,
|
|
6813
7053
|
args: [{
|
|
6814
7054
|
standalone: true,
|
|
6815
7055
|
selector: "goab-work-side-notification-panel", // eslint-disable-line
|
|
6816
7056
|
template: `
|
|
6817
7057
|
@if (isReady) {
|
|
6818
|
-
|
|
6819
|
-
|
|
6820
|
-
|
|
6821
|
-
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
|
|
6826
|
-
|
|
7058
|
+
<goa-work-side-notification-panel
|
|
7059
|
+
[attr.heading]="heading"
|
|
7060
|
+
[attr.active-tab]="activeTab"
|
|
7061
|
+
[attr.testid]="testId"
|
|
7062
|
+
(_markAllRead)="_onMarkAllRead()"
|
|
7063
|
+
(_viewAll)="_onViewAll()"
|
|
7064
|
+
>
|
|
7065
|
+
<ng-content />
|
|
7066
|
+
</goa-work-side-notification-panel>
|
|
6827
7067
|
}
|
|
6828
7068
|
`,
|
|
6829
7069
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
6830
7070
|
}]
|
|
6831
|
-
}],
|
|
7071
|
+
}], propDecorators: { heading: [{
|
|
6832
7072
|
type: Input
|
|
6833
7073
|
}], activeTab: [{
|
|
6834
7074
|
type: Input
|