@abgov/angular-components 3.2.2 → 4.0.0-alpha.1

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.
Files changed (123) hide show
  1. package/README.md +12 -7
  2. package/esm2022/index.mjs +2 -1
  3. package/esm2022/lib/angular-components.module.mjs +4 -4
  4. package/esm2022/lib/checked-directive.mjs +5 -4
  5. package/esm2022/lib/components/accordion/accordion.mjs +91 -0
  6. package/esm2022/lib/components/badge/badge.mjs +60 -0
  7. package/esm2022/lib/components/block/block.mjs +58 -0
  8. package/esm2022/lib/components/button/button.mjs +85 -0
  9. package/esm2022/lib/components/button-group/button-group.mjs +54 -0
  10. package/esm2022/lib/components/callout/callout.mjs +77 -0
  11. package/esm2022/lib/components/card/card.mjs +54 -0
  12. package/esm2022/lib/components/card-actions/card-actions.mjs +24 -0
  13. package/esm2022/lib/components/card-content/card-content.mjs +24 -0
  14. package/esm2022/lib/components/card-image/card-image.mjs +36 -0
  15. package/esm2022/lib/components/checkbox/checkbox.mjs +147 -0
  16. package/esm2022/lib/components/chip/chip.mjs +77 -0
  17. package/esm2022/lib/components/circular-progress/circular-progress.mjs +48 -0
  18. package/esm2022/lib/components/column-layout/column-layout.mjs +24 -0
  19. package/esm2022/lib/components/container/container.mjs +86 -0
  20. package/esm2022/lib/components/date-picker/date-picker.mjs +123 -0
  21. package/esm2022/lib/components/details/details.mjs +59 -0
  22. package/esm2022/lib/components/divider/divider.mjs +44 -0
  23. package/esm2022/lib/components/dropdown/dropdown.mjs +153 -0
  24. package/esm2022/lib/components/dropdown-item/dropdown-item.mjs +44 -0
  25. package/esm2022/lib/components/file-upload-card/file-upload-card.mjs +63 -0
  26. package/esm2022/lib/components/file-upload-input/file-upload-input.mjs +70 -0
  27. package/esm2022/lib/components/footer/footer.mjs +38 -0
  28. package/esm2022/lib/components/footer-meta-section/footer-meta-section.mjs +24 -0
  29. package/esm2022/lib/components/footer-nav-section/footer-nav-section.mjs +39 -0
  30. package/esm2022/lib/components/form-item/form-item-slot.mjs +24 -0
  31. package/esm2022/lib/components/form-item/form-item.mjs +76 -0
  32. package/esm2022/lib/components/form-step/form-step.mjs +28 -0
  33. package/esm2022/lib/components/form-stepper/form-stepper.mjs +62 -0
  34. package/esm2022/lib/components/grid/grid.mjs +55 -0
  35. package/esm2022/lib/components/header/header.mjs +58 -0
  36. package/esm2022/lib/components/header-menu/header-menu.mjs +38 -0
  37. package/esm2022/lib/components/hero-banner/hero-banner.mjs +64 -0
  38. package/esm2022/lib/components/icon/icon.mjs +81 -0
  39. package/esm2022/lib/components/icon-button/icon-button.mjs +82 -0
  40. package/esm2022/lib/components/index.mjs +59 -0
  41. package/esm2022/lib/components/input/input.mjs +232 -0
  42. package/esm2022/lib/components/microsite-header/microsite-header.mjs +81 -0
  43. package/esm2022/lib/components/modal/modal.mjs +93 -0
  44. package/esm2022/lib/components/notification-banner/notification-banner.mjs +53 -0
  45. package/esm2022/lib/components/pages/pages.mjs +46 -0
  46. package/esm2022/lib/components/pagination/pagination.mjs +75 -0
  47. package/esm2022/lib/components/popover/popover.mjs +81 -0
  48. package/esm2022/lib/components/radio-group/radio-group.mjs +116 -0
  49. package/esm2022/lib/components/radio-item/radio-item.mjs +94 -0
  50. package/esm2022/lib/components/side-menu/side-menu.mjs +26 -0
  51. package/esm2022/lib/components/side-menu-group/side-menu-group.mjs +55 -0
  52. package/esm2022/lib/components/side-menu-heading/side-menu-heading.mjs +38 -0
  53. package/esm2022/lib/components/skeleton/skeleton.mjs +64 -0
  54. package/esm2022/lib/components/spacer/spacer.mjs +36 -0
  55. package/esm2022/lib/components/tab/tab.mjs +44 -0
  56. package/esm2022/lib/components/table/table.mjs +69 -0
  57. package/esm2022/lib/components/table-sort-header/table-sort-header.mjs +37 -0
  58. package/esm2022/lib/components/tabs/tabs.mjs +47 -0
  59. package/esm2022/lib/components/textarea/textarea.mjs +153 -0
  60. package/esm2022/lib/components/tooltip/tooltip.mjs +58 -0
  61. package/esm2022/lib/validation.mjs +1 -1
  62. package/esm2022/lib/value-directive.mjs +8 -7
  63. package/fesm2022/abgov-angular-components.mjs +3560 -15
  64. package/fesm2022/abgov-angular-components.mjs.map +1 -1
  65. package/index.d.ts +1 -0
  66. package/lib/components/accordion/accordion.d.ts +21 -0
  67. package/lib/components/badge/badge.d.ts +15 -0
  68. package/lib/components/block/block.d.ts +14 -0
  69. package/lib/components/button/button.d.ts +21 -0
  70. package/lib/components/button-group/button-group.d.ts +13 -0
  71. package/lib/components/callout/callout.d.ts +17 -0
  72. package/lib/components/card/card.d.ts +13 -0
  73. package/lib/components/card-actions/card-actions.d.ts +5 -0
  74. package/lib/components/card-content/card-content.d.ts +5 -0
  75. package/lib/components/card-image/card-image.d.ts +7 -0
  76. package/lib/components/checkbox/checkbox.d.ts +35 -0
  77. package/lib/components/chip/chip.d.ts +20 -0
  78. package/lib/components/circular-progress/circular-progress.d.ts +12 -0
  79. package/lib/components/column-layout/column-layout.d.ts +5 -0
  80. package/lib/components/container/container.d.ts +19 -0
  81. package/lib/components/date-picker/date-picker.d.ts +33 -0
  82. package/lib/components/details/details.d.ts +14 -0
  83. package/lib/components/divider/divider.d.ts +11 -0
  84. package/lib/components/dropdown/dropdown.d.ts +38 -0
  85. package/lib/components/dropdown-item/dropdown-item.d.ts +11 -0
  86. package/lib/components/file-upload-card/file-upload-card.d.ts +17 -0
  87. package/lib/components/file-upload-input/file-upload-input.d.ts +18 -0
  88. package/lib/components/footer/footer.d.ts +7 -0
  89. package/lib/components/footer-meta-section/footer-meta-section.d.ts +8 -0
  90. package/lib/components/footer-nav-section/footer-nav-section.d.ts +10 -0
  91. package/lib/components/form-item/form-item-slot.d.ts +6 -0
  92. package/lib/components/form-item/form-item.d.ts +18 -0
  93. package/lib/components/form-step/form-step.d.ts +8 -0
  94. package/lib/components/form-stepper/form-stepper.d.ts +15 -0
  95. package/lib/components/grid/grid.d.ts +13 -0
  96. package/lib/components/header/header.d.ts +13 -0
  97. package/lib/components/header-menu/header-menu.d.ts +9 -0
  98. package/lib/components/hero-banner/hero-banner.d.ts +14 -0
  99. package/lib/components/icon/icon.d.ts +19 -0
  100. package/lib/components/icon-button/icon-button.d.ts +20 -0
  101. package/lib/components/index.d.ts +58 -0
  102. package/lib/components/input/input.d.ts +56 -0
  103. package/lib/components/microsite-header/microsite-header.d.ts +18 -0
  104. package/lib/components/modal/modal.d.ts +20 -0
  105. package/lib/components/notification-banner/notification-banner.d.ts +13 -0
  106. package/lib/components/pages/pages.d.ts +11 -0
  107. package/lib/components/pagination/pagination.d.ts +18 -0
  108. package/lib/components/popover/popover.d.ts +18 -0
  109. package/lib/components/radio-group/radio-group.d.ts +29 -0
  110. package/lib/components/radio-item/radio-item.d.ts +22 -0
  111. package/lib/components/side-menu/side-menu.d.ts +6 -0
  112. package/lib/components/side-menu-group/side-menu-group.d.ts +13 -0
  113. package/lib/components/side-menu-heading/side-menu-heading.d.ts +10 -0
  114. package/lib/components/skeleton/skeleton.d.ts +15 -0
  115. package/lib/components/spacer/spacer.d.ts +9 -0
  116. package/lib/components/tab/tab.d.ts +9 -0
  117. package/lib/components/table/table.d.ts +16 -0
  118. package/lib/components/table-sort-header/table-sort-header.d.ts +8 -0
  119. package/lib/components/tabs/tabs.d.ts +11 -0
  120. package/lib/components/textarea/textarea.d.ts +38 -0
  121. package/lib/components/tooltip/tooltip.d.ts +14 -0
  122. package/lib/validation.d.ts +1 -1
  123. package/package.json +5 -4
@@ -1,7 +1,9 @@
1
1
  import * as i0 from '@angular/core';
2
- import { forwardRef, Directive, HostListener, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
2
+ import { forwardRef, Directive, HostListener, NgModule, CUSTOM_ELEMENTS_SCHEMA, EventEmitter, Component, Input, Output, TemplateRef } from '@angular/core';
3
3
  import { NG_VALUE_ACCESSOR, CheckboxControlValueAccessor } from '@angular/forms';
4
+ import { NgTemplateOutlet } from '@angular/common';
4
5
 
6
+ // @deprecated: Use the new <goab-input .. /> component
5
7
  class ValueDirective {
6
8
  get value() {
7
9
  return this._value;
@@ -39,14 +41,14 @@ class ValueDirective {
39
41
  listenForDisabledChange(isDisabled) {
40
42
  this.setDisabledState(isDisabled);
41
43
  }
42
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: ValueDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
43
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.5", type: ValueDirective, selector: "[goaValue]", host: { listeners: { "_change": "listenForValueChange($event.detail.value)", "disabledChange": "listenForDisabledChange($event.detail.disabled)" } }, providers: [{
44
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: ValueDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
45
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.3", type: ValueDirective, selector: "[goaValue]", host: { listeners: { "_change": "listenForValueChange($event.detail.value)", "disabledChange": "listenForDisabledChange($event.detail.disabled)" } }, providers: [{
44
46
  provide: NG_VALUE_ACCESSOR,
45
47
  useExisting: forwardRef(() => ValueDirective),
46
48
  multi: true,
47
49
  }], ngImport: i0 }); }
48
50
  }
49
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: ValueDirective, decorators: [{
51
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: ValueDirective, decorators: [{
50
52
  type: Directive,
51
53
  args: [{
52
54
  selector: "[goaValue]", providers: [{
@@ -108,14 +110,14 @@ class ValueListDirective {
108
110
  this.onChange(value);
109
111
  this.onTouched();
110
112
  }
111
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: ValueListDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
112
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.5", type: ValueListDirective, selector: "[goaValueList]", host: { listeners: { "_change": "listenForValueChange($event.detail.value)" } }, providers: [{
113
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: ValueListDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
114
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.3", type: ValueListDirective, selector: "[goaValueList]", host: { listeners: { "_change": "listenForValueChange($event.detail.value)" } }, providers: [{
113
115
  provide: NG_VALUE_ACCESSOR,
114
116
  useExisting: forwardRef(() => ValueListDirective),
115
117
  multi: true,
116
118
  }], ngImport: i0 }); }
117
119
  }
118
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: ValueListDirective, decorators: [{
120
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: ValueListDirective, decorators: [{
119
121
  type: Directive,
120
122
  args: [{
121
123
  selector: "[goaValueList]",
@@ -130,6 +132,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImpor
130
132
  args: ["_change", ["$event.detail.value"]]
131
133
  }] } });
132
134
 
135
+ // @deprecated: Use the new <goab-checkbox .. /> component
133
136
  class CheckedDirective extends CheckboxControlValueAccessor {
134
137
  constructor(renderer, elementRef) {
135
138
  super(renderer, elementRef);
@@ -161,8 +164,8 @@ class CheckedDirective extends CheckboxControlValueAccessor {
161
164
  listenForValueChange(checked) {
162
165
  this.value = checked;
163
166
  }
164
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: CheckedDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
165
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.5", type: CheckedDirective, selector: "[goaChecked]", host: { listeners: { "_change": "listenForValueChange($event.detail.checked)" } }, providers: [
167
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: CheckedDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
168
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.3", type: CheckedDirective, selector: "[goaChecked]", host: { listeners: { "_change": "listenForValueChange($event.detail.checked)" } }, providers: [
166
169
  {
167
170
  useExisting: forwardRef(() => CheckedDirective),
168
171
  provide: NG_VALUE_ACCESSOR,
@@ -170,7 +173,7 @@ class CheckedDirective extends CheckboxControlValueAccessor {
170
173
  },
171
174
  ], usesInheritance: true, ngImport: i0 }); }
172
175
  }
173
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: CheckedDirective, decorators: [{
176
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: CheckedDirective, decorators: [{
174
177
  type: Directive,
175
178
  args: [{
176
179
  selector: "[goaChecked]",
@@ -188,11 +191,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImpor
188
191
  }] } });
189
192
 
190
193
  class AngularComponentsModule {
191
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: AngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
192
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.5", ngImport: i0, type: AngularComponentsModule, declarations: [ValueDirective, ValueListDirective, CheckedDirective], exports: [ValueDirective, ValueListDirective, CheckedDirective] }); }
193
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: AngularComponentsModule }); }
194
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
195
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.0.3", ngImport: i0, type: AngularComponentsModule, declarations: [ValueDirective, ValueListDirective, CheckedDirective], exports: [ValueDirective, ValueListDirective, CheckedDirective] }); }
196
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularComponentsModule }); }
194
197
  }
195
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImport: i0, type: AngularComponentsModule, decorators: [{
198
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: AngularComponentsModule, decorators: [{
196
199
  type: NgModule,
197
200
  args: [{
198
201
  declarations: [ValueDirective, ValueListDirective, CheckedDirective],
@@ -201,6 +204,3548 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.5", ngImpor
201
204
  }]
202
205
  }] });
203
206
 
207
+ class GoabAccordion {
208
+ constructor() {
209
+ this.onChange = new EventEmitter();
210
+ }
211
+ _onChange(e) {
212
+ const detail = e.detail;
213
+ this.onChange.emit(detail.open);
214
+ }
215
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAccordion, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
216
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabAccordion, isStandalone: true, selector: "goab-accordion", inputs: { heading: "heading", secondaryText: "secondaryText", testId: "testId", open: "open", headingSize: "headingSize", headingContent: "headingContent", maxWidth: "maxWidth", iconPosition: "iconPosition", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onChange: "onChange" }, ngImport: i0, template: `
217
+ <goa-accordion
218
+ [attr.heading]="heading"
219
+ [attr.secondarytext]="secondaryText"
220
+ [attr.open]="open"
221
+ [attr.headingsize]="headingSize"
222
+ [attr.maxwidth]="maxWidth"
223
+ [attr.testid]="testId"
224
+ [attr.iconposition]="iconPosition"
225
+ [attr.mt]="mt"
226
+ [attr.mb]="mb"
227
+ [attr.ml]="ml"
228
+ [attr.mr]="mr"
229
+ (_change)="_onChange($event)"
230
+ >
231
+ <div slot="headingcontent">
232
+ <ng-container [ngTemplateOutlet]="headingContent"></ng-container>
233
+ </div>
234
+ <ng-content></ng-content>
235
+ </goa-accordion>
236
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
237
+ }
238
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAccordion, decorators: [{
239
+ type: Component,
240
+ args: [{
241
+ standalone: true,
242
+ selector: "goab-accordion",
243
+ imports: [NgTemplateOutlet],
244
+ template: `
245
+ <goa-accordion
246
+ [attr.heading]="heading"
247
+ [attr.secondarytext]="secondaryText"
248
+ [attr.open]="open"
249
+ [attr.headingsize]="headingSize"
250
+ [attr.maxwidth]="maxWidth"
251
+ [attr.testid]="testId"
252
+ [attr.iconposition]="iconPosition"
253
+ [attr.mt]="mt"
254
+ [attr.mb]="mb"
255
+ [attr.ml]="ml"
256
+ [attr.mr]="mr"
257
+ (_change)="_onChange($event)"
258
+ >
259
+ <div slot="headingcontent">
260
+ <ng-container [ngTemplateOutlet]="headingContent"></ng-container>
261
+ </div>
262
+ <ng-content></ng-content>
263
+ </goa-accordion>
264
+ `,
265
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
266
+ }]
267
+ }], propDecorators: { heading: [{
268
+ type: Input
269
+ }], secondaryText: [{
270
+ type: Input
271
+ }], testId: [{
272
+ type: Input
273
+ }], open: [{
274
+ type: Input
275
+ }], headingSize: [{
276
+ type: Input
277
+ }], headingContent: [{
278
+ type: Input
279
+ }], maxWidth: [{
280
+ type: Input
281
+ }], iconPosition: [{
282
+ type: Input
283
+ }], mt: [{
284
+ type: Input
285
+ }], mb: [{
286
+ type: Input
287
+ }], ml: [{
288
+ type: Input
289
+ }], mr: [{
290
+ type: Input
291
+ }], onChange: [{
292
+ type: Output
293
+ }] } });
294
+
295
+ class GoabBadge {
296
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabBadge, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
297
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabBadge, isStandalone: true, selector: "goab-badge", inputs: { type: "type", content: "content", testId: "testId", icon: "icon", ariaLabel: "ariaLabel", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
298
+ <goa-badge
299
+ [attr.type]="type"
300
+ [attr.icon]="icon"
301
+ [attr.arialabel]="ariaLabel"
302
+ [attr.content]="content"
303
+ [attr.testid]="testId"
304
+ [attr.mt]="mt"
305
+ [attr.mb]="mb"
306
+ [attr.ml]="ml"
307
+ [attr.mr]="mr"
308
+ >
309
+ </goa-badge>
310
+ `, isInline: true }); }
311
+ }
312
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabBadge, decorators: [{
313
+ type: Component,
314
+ args: [{
315
+ standalone: true,
316
+ selector: "goab-badge",
317
+ template: `
318
+ <goa-badge
319
+ [attr.type]="type"
320
+ [attr.icon]="icon"
321
+ [attr.arialabel]="ariaLabel"
322
+ [attr.content]="content"
323
+ [attr.testid]="testId"
324
+ [attr.mt]="mt"
325
+ [attr.mb]="mb"
326
+ [attr.ml]="ml"
327
+ [attr.mr]="mr"
328
+ >
329
+ </goa-badge>
330
+ `,
331
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
332
+ }]
333
+ }], propDecorators: { type: [{
334
+ type: Input
335
+ }], content: [{
336
+ type: Input
337
+ }], testId: [{
338
+ type: Input
339
+ }], icon: [{
340
+ type: Input
341
+ }], ariaLabel: [{
342
+ type: Input
343
+ }], mt: [{
344
+ type: Input
345
+ }], mb: [{
346
+ type: Input
347
+ }], ml: [{
348
+ type: Input
349
+ }], mr: [{
350
+ type: Input
351
+ }] } });
352
+
353
+ class GoabBlock {
354
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabBlock, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
355
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabBlock, isStandalone: true, selector: "goab-block", inputs: { gap: "gap", direction: "direction", alignment: "alignment", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
356
+ <goa-block
357
+ [attr.gap]="gap"
358
+ [attr.direction]="direction"
359
+ [attr.alignment]="alignment"
360
+ [attr.testid]="testId"
361
+ [attr.mt]="mt"
362
+ [attr.mb]="mb"
363
+ [attr.ml]="ml"
364
+ [attr.mr]="mr"
365
+ >
366
+ <ng-content />
367
+ </goa-block>
368
+ `, isInline: true }); }
369
+ }
370
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabBlock, decorators: [{
371
+ type: Component,
372
+ args: [{
373
+ standalone: true,
374
+ selector: "goab-block",
375
+ template: `
376
+ <goa-block
377
+ [attr.gap]="gap"
378
+ [attr.direction]="direction"
379
+ [attr.alignment]="alignment"
380
+ [attr.testid]="testId"
381
+ [attr.mt]="mt"
382
+ [attr.mb]="mb"
383
+ [attr.ml]="ml"
384
+ [attr.mr]="mr"
385
+ >
386
+ <ng-content />
387
+ </goa-block>
388
+ `,
389
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
390
+ }]
391
+ }], propDecorators: { gap: [{
392
+ type: Input
393
+ }], direction: [{
394
+ type: Input
395
+ }], alignment: [{
396
+ type: Input
397
+ }], testId: [{
398
+ type: Input
399
+ }], mt: [{
400
+ type: Input
401
+ }], mb: [{
402
+ type: Input
403
+ }], ml: [{
404
+ type: Input
405
+ }], mr: [{
406
+ type: Input
407
+ }] } });
408
+
409
+ class GoabButton {
410
+ constructor() {
411
+ this.type = "primary";
412
+ this.onClick = new EventEmitter();
413
+ }
414
+ _onClick() {
415
+ this.onClick.emit();
416
+ }
417
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabButton, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
418
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabButton, isStandalone: true, selector: "goab-button", inputs: { type: "type", size: "size", variant: "variant", disabled: "disabled", leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", width: "width", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onClick: "onClick" }, ngImport: i0, template: `
419
+ <goa-button
420
+ [attr.type]="type"
421
+ [attr.size]="size"
422
+ [attr.variant]="variant"
423
+ [disabled]="disabled"
424
+ [attr.leadingicon]="leadingIcon"
425
+ [attr.trailingicon]="trailingIcon"
426
+ [attr.width]="width"
427
+ [attr.testid]="testId"
428
+ [attr.mt]="mt"
429
+ [attr.mb]="mb"
430
+ [attr.ml]="ml"
431
+ [attr.mr]="mr"
432
+ (_click)="_onClick()"
433
+ >
434
+ <ng-content />
435
+ </goa-button>
436
+ `, isInline: true }); }
437
+ }
438
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabButton, decorators: [{
439
+ type: Component,
440
+ args: [{
441
+ standalone: true,
442
+ selector: "goab-button",
443
+ template: `
444
+ <goa-button
445
+ [attr.type]="type"
446
+ [attr.size]="size"
447
+ [attr.variant]="variant"
448
+ [disabled]="disabled"
449
+ [attr.leadingicon]="leadingIcon"
450
+ [attr.trailingicon]="trailingIcon"
451
+ [attr.width]="width"
452
+ [attr.testid]="testId"
453
+ [attr.mt]="mt"
454
+ [attr.mb]="mb"
455
+ [attr.ml]="ml"
456
+ [attr.mr]="mr"
457
+ (_click)="_onClick()"
458
+ >
459
+ <ng-content />
460
+ </goa-button>
461
+ `,
462
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
463
+ }]
464
+ }], propDecorators: { type: [{
465
+ type: Input
466
+ }], size: [{
467
+ type: Input
468
+ }], variant: [{
469
+ type: Input
470
+ }], disabled: [{
471
+ type: Input
472
+ }], leadingIcon: [{
473
+ type: Input
474
+ }], trailingIcon: [{
475
+ type: Input
476
+ }], width: [{
477
+ type: Input
478
+ }], testId: [{
479
+ type: Input
480
+ }], mt: [{
481
+ type: Input
482
+ }], mb: [{
483
+ type: Input
484
+ }], ml: [{
485
+ type: Input
486
+ }], mr: [{
487
+ type: Input
488
+ }], onClick: [{
489
+ type: Output
490
+ }] } });
491
+
492
+ class GoabButtonGroup {
493
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabButtonGroup, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
494
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabButtonGroup, isStandalone: true, selector: "goab-button-group", inputs: { alignment: "alignment", gap: "gap", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
495
+ <goa-button-group
496
+ [attr.alignment]="alignment"
497
+ [attr.gap]="gap"
498
+ [attr.testid]="testId"
499
+ [attr.mt]="mt"
500
+ [attr.mb]="mb"
501
+ [attr.ml]="ml"
502
+ [attr.mr]="mr"
503
+ >
504
+ <ng-content />
505
+ </goa-button-group>
506
+ `, isInline: true }); }
507
+ }
508
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabButtonGroup, decorators: [{
509
+ type: Component,
510
+ args: [{
511
+ standalone: true,
512
+ selector: "goab-button-group",
513
+ template: `
514
+ <goa-button-group
515
+ [attr.alignment]="alignment"
516
+ [attr.gap]="gap"
517
+ [attr.testid]="testId"
518
+ [attr.mt]="mt"
519
+ [attr.mb]="mb"
520
+ [attr.ml]="ml"
521
+ [attr.mr]="mr"
522
+ >
523
+ <ng-content />
524
+ </goa-button-group>
525
+ `,
526
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
527
+ }]
528
+ }], propDecorators: { alignment: [{
529
+ type: Input
530
+ }], gap: [{
531
+ type: Input
532
+ }], testId: [{
533
+ type: Input
534
+ }], mt: [{
535
+ type: Input
536
+ }], mb: [{
537
+ type: Input
538
+ }], ml: [{
539
+ type: Input
540
+ }], mr: [{
541
+ type: Input
542
+ }] } });
543
+
544
+ class GoabCallout {
545
+ constructor() {
546
+ this.type = "information";
547
+ this.heading = "";
548
+ this.size = "large";
549
+ this.ariaLive = "off";
550
+ this.iconTheme = "outline";
551
+ }
552
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCallout, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
553
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabCallout, isStandalone: true, selector: "goab-callout", inputs: { type: "type", heading: "heading", size: "size", maxWidth: "maxWidth", ariaLive: "ariaLive", iconTheme: "iconTheme", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
554
+ <goa-callout
555
+ [attr.type]="type"
556
+ [attr.heading]="heading"
557
+ [attr.size]="size"
558
+ [attr.maxwidth]="maxWidth"
559
+ [attr.arialive]="ariaLive"
560
+ [attr.icontheme]="iconTheme"
561
+ [attr.testid]="testId"
562
+ [attr.mt]="mt"
563
+ [attr.mb]="mb"
564
+ [attr.ml]="ml"
565
+ [attr.mr]="mr"
566
+ >
567
+ <ng-content />
568
+ </goa-callout>
569
+ `, isInline: true }); }
570
+ }
571
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCallout, decorators: [{
572
+ type: Component,
573
+ args: [{
574
+ standalone: true,
575
+ selector: "goab-callout",
576
+ template: `
577
+ <goa-callout
578
+ [attr.type]="type"
579
+ [attr.heading]="heading"
580
+ [attr.size]="size"
581
+ [attr.maxwidth]="maxWidth"
582
+ [attr.arialive]="ariaLive"
583
+ [attr.icontheme]="iconTheme"
584
+ [attr.testid]="testId"
585
+ [attr.mt]="mt"
586
+ [attr.mb]="mb"
587
+ [attr.ml]="ml"
588
+ [attr.mr]="mr"
589
+ >
590
+ <ng-content />
591
+ </goa-callout>
592
+ `,
593
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
594
+ }]
595
+ }], propDecorators: { type: [{
596
+ type: Input
597
+ }], heading: [{
598
+ type: Input
599
+ }], size: [{
600
+ type: Input
601
+ }], maxWidth: [{
602
+ type: Input
603
+ }], ariaLive: [{
604
+ type: Input
605
+ }], iconTheme: [{
606
+ type: Input
607
+ }], testId: [{
608
+ type: Input
609
+ }], mt: [{
610
+ type: Input
611
+ }], mb: [{
612
+ type: Input
613
+ }], ml: [{
614
+ type: Input
615
+ }], mr: [{
616
+ type: Input
617
+ }] } });
618
+
619
+ class GoabCard {
620
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCard, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
621
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabCard, isStandalone: true, selector: "goab-card", inputs: { elevation: "elevation", width: "width", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
622
+ <goa-card
623
+ [attr.elevation]="elevation"
624
+ [attr.width]="width"
625
+ [attr.testid]="testId"
626
+ [attr.mt]="mt"
627
+ [attr.mb]="mb"
628
+ [attr.ml]="ml"
629
+ [attr.mr]="mr"
630
+ >
631
+ <ng-content />
632
+ </goa-card>
633
+ `, isInline: true }); }
634
+ }
635
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCard, decorators: [{
636
+ type: Component,
637
+ args: [{
638
+ standalone: true,
639
+ selector: "goab-card",
640
+ template: `
641
+ <goa-card
642
+ [attr.elevation]="elevation"
643
+ [attr.width]="width"
644
+ [attr.testid]="testId"
645
+ [attr.mt]="mt"
646
+ [attr.mb]="mb"
647
+ [attr.ml]="ml"
648
+ [attr.mr]="mr"
649
+ >
650
+ <ng-content />
651
+ </goa-card>
652
+ `,
653
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
654
+ }]
655
+ }], propDecorators: { elevation: [{
656
+ type: Input
657
+ }], width: [{
658
+ type: Input
659
+ }], testId: [{
660
+ type: Input
661
+ }], mt: [{
662
+ type: Input
663
+ }], mb: [{
664
+ type: Input
665
+ }], ml: [{
666
+ type: Input
667
+ }], mr: [{
668
+ type: Input
669
+ }] } });
670
+
671
+ class GoabCardContent {
672
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCardContent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
673
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabCardContent, isStandalone: true, selector: "goab-card-content", ngImport: i0, template: `
674
+ <goa-card-content>
675
+ <ng-content />
676
+ </goa-card-content>
677
+ `, isInline: true }); }
678
+ }
679
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCardContent, decorators: [{
680
+ type: Component,
681
+ args: [{
682
+ standalone: true,
683
+ selector: "goab-card-content",
684
+ template: `
685
+ <goa-card-content>
686
+ <ng-content />
687
+ </goa-card-content>
688
+ `,
689
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
690
+ }]
691
+ }] });
692
+
693
+ class GoabCardActions {
694
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCardActions, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
695
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabCardActions, isStandalone: true, selector: "goab-card-actions", ngImport: i0, template: `
696
+ <goa-card-actions>
697
+ <ng-content />
698
+ </goa-card-actions>
699
+ `, isInline: true }); }
700
+ }
701
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCardActions, decorators: [{
702
+ type: Component,
703
+ args: [{
704
+ standalone: true,
705
+ selector: "goab-card-actions",
706
+ template: `
707
+ <goa-card-actions>
708
+ <ng-content />
709
+ </goa-card-actions>
710
+ `,
711
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
712
+ }]
713
+ }] });
714
+
715
+ class GoabCardImage {
716
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCardImage, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
717
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabCardImage, isStandalone: true, selector: "goab-card-image", inputs: { src: "src", height: "height" }, ngImport: i0, template: `
718
+ <goa-card-image
719
+ [attr.src]="src"
720
+ [attr.height]="height"
721
+ >
722
+ <ng-content />
723
+ </goa-card-image>
724
+ `, isInline: true }); }
725
+ }
726
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCardImage, decorators: [{
727
+ type: Component,
728
+ args: [{
729
+ standalone: true,
730
+ selector: "goab-card-image",
731
+ template: `
732
+ <goa-card-image
733
+ [attr.src]="src"
734
+ [attr.height]="height"
735
+ >
736
+ <ng-content />
737
+ </goa-card-image>
738
+ `,
739
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
740
+ }]
741
+ }], propDecorators: { src: [{
742
+ type: Input,
743
+ args: [{ required: true }]
744
+ }], height: [{
745
+ type: Input,
746
+ args: [{ required: true }]
747
+ }] } });
748
+
749
+ class GoabCheckbox {
750
+ constructor() {
751
+ this.onChange = new EventEmitter();
752
+ this.touched = false;
753
+ }
754
+ getDescriptionAsString() {
755
+ return typeof this.description === "string" ? this.description : "";
756
+ }
757
+ getDescriptionAsTemplate() {
758
+ if (this.description) {
759
+ return typeof this.description === "string" ? null : this.description;
760
+ }
761
+ return null;
762
+ }
763
+ _onChange(e) {
764
+ const detail = e.detail;
765
+ this.onChange.emit(detail);
766
+ this.markAsTouched();
767
+ this.fcChange?.(detail.binding === "check" ? detail.checked : detail.value || "");
768
+ }
769
+ markAsTouched() {
770
+ if (!this.touched) {
771
+ this.fcTouched?.();
772
+ this.touched = true;
773
+ }
774
+ }
775
+ writeValue(value) {
776
+ this.value = value;
777
+ }
778
+ registerOnChange(fn) {
779
+ this.fcChange = fn;
780
+ }
781
+ registerOnTouched(fn) {
782
+ this.fcTouched = fn;
783
+ }
784
+ setDisabledState(isDisabled) {
785
+ this.disabled = isDisabled;
786
+ }
787
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCheckbox, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
788
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabCheckbox, isStandalone: true, selector: "goab-checkbox", inputs: { name: "name", checked: "checked", disabled: "disabled", error: "error", text: "text", value: "value", testId: "testId", ariaLabel: "ariaLabel", description: "description", id: "id", maxWidth: "maxWidth", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onChange: "onChange" }, providers: [
789
+ {
790
+ provide: NG_VALUE_ACCESSOR,
791
+ multi: true,
792
+ useExisting: forwardRef(() => GoabCheckbox),
793
+ },
794
+ ], ngImport: i0, template: `
795
+ <goa-checkbox
796
+ [attr.name]="name"
797
+ [checked]="checked"
798
+ [disabled]="disabled"
799
+ [attr.error]="error"
800
+ [attr.text]="text"
801
+ [value]="value"
802
+ [attr.testid]="testId"
803
+ [attr.arialabel]="ariaLabel"
804
+ [attr.description]="getDescriptionAsString()"
805
+ [id]="id"
806
+ [attr.maxwidth]="maxWidth"
807
+ [attr.mt]="mt"
808
+ [attr.mb]="mb"
809
+ [attr.ml]="ml"
810
+ [attr.mr]="mr"
811
+ (_change)="_onChange($event)"
812
+ >
813
+ <ng-content />
814
+ <div slot="description">
815
+ <ng-container [ngTemplateOutlet]="getDescriptionAsTemplate()"></ng-container>
816
+ </div>
817
+ </goa-checkbox>`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
818
+ }
819
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCheckbox, decorators: [{
820
+ type: Component,
821
+ args: [{
822
+ standalone: true,
823
+ selector: "goab-checkbox",
824
+ template: `
825
+ <goa-checkbox
826
+ [attr.name]="name"
827
+ [checked]="checked"
828
+ [disabled]="disabled"
829
+ [attr.error]="error"
830
+ [attr.text]="text"
831
+ [value]="value"
832
+ [attr.testid]="testId"
833
+ [attr.arialabel]="ariaLabel"
834
+ [attr.description]="getDescriptionAsString()"
835
+ [id]="id"
836
+ [attr.maxwidth]="maxWidth"
837
+ [attr.mt]="mt"
838
+ [attr.mb]="mb"
839
+ [attr.ml]="ml"
840
+ [attr.mr]="mr"
841
+ (_change)="_onChange($event)"
842
+ >
843
+ <ng-content />
844
+ <div slot="description">
845
+ <ng-container [ngTemplateOutlet]="getDescriptionAsTemplate()"></ng-container>
846
+ </div>
847
+ </goa-checkbox>`,
848
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
849
+ providers: [
850
+ {
851
+ provide: NG_VALUE_ACCESSOR,
852
+ multi: true,
853
+ useExisting: forwardRef(() => GoabCheckbox),
854
+ },
855
+ ],
856
+ imports: [NgTemplateOutlet],
857
+ }]
858
+ }], propDecorators: { name: [{
859
+ type: Input
860
+ }], checked: [{
861
+ type: Input
862
+ }], disabled: [{
863
+ type: Input
864
+ }], error: [{
865
+ type: Input
866
+ }], text: [{
867
+ type: Input
868
+ }], value: [{
869
+ type: Input
870
+ }], testId: [{
871
+ type: Input
872
+ }], ariaLabel: [{
873
+ type: Input
874
+ }], description: [{
875
+ type: Input
876
+ }], id: [{
877
+ type: Input
878
+ }], maxWidth: [{
879
+ type: Input
880
+ }], mt: [{
881
+ type: Input
882
+ }], mb: [{
883
+ type: Input
884
+ }], ml: [{
885
+ type: Input
886
+ }], mr: [{
887
+ type: Input
888
+ }], onChange: [{
889
+ type: Output
890
+ }] } });
891
+
892
+ class GoabChip {
893
+ constructor() {
894
+ this.content = "";
895
+ this.onClick = new EventEmitter();
896
+ }
897
+ _onClick() {
898
+ this.onClick.emit();
899
+ }
900
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabChip, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
901
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabChip, isStandalone: true, selector: "goab-chip", inputs: { leadingIcon: "leadingIcon", error: "error", deletable: "deletable", content: "content", testId: "testId", variant: "variant", iconTheme: "iconTheme", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onClick: "onClick" }, ngImport: i0, template: `<goa-chip
902
+ [attr.leadingicon]="leadingIcon"
903
+ [attr.variant]="variant"
904
+ [attr.error]="error"
905
+ [attr.deletable]="deletable"
906
+ [attr.icontheme]="iconTheme"
907
+ [attr.content]="content"
908
+ [attr.testid]="testId"
909
+ [attr.mt]="mt"
910
+ [attr.mb]="mb"
911
+ [attr.ml]="ml"
912
+ [attr.mr]="mr"
913
+ (_click)="_onClick()"
914
+ >
915
+ <ng-content />
916
+ </goa-chip>`, isInline: true }); }
917
+ }
918
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabChip, decorators: [{
919
+ type: Component,
920
+ args: [{
921
+ standalone: true,
922
+ selector: "goab-chip",
923
+ template: `<goa-chip
924
+ [attr.leadingicon]="leadingIcon"
925
+ [attr.variant]="variant"
926
+ [attr.error]="error"
927
+ [attr.deletable]="deletable"
928
+ [attr.icontheme]="iconTheme"
929
+ [attr.content]="content"
930
+ [attr.testid]="testId"
931
+ [attr.mt]="mt"
932
+ [attr.mb]="mb"
933
+ [attr.ml]="ml"
934
+ [attr.mr]="mr"
935
+ (_click)="_onClick()"
936
+ >
937
+ <ng-content />
938
+ </goa-chip>`,
939
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
940
+ }]
941
+ }], propDecorators: { leadingIcon: [{
942
+ type: Input
943
+ }], error: [{
944
+ type: Input
945
+ }], deletable: [{
946
+ type: Input
947
+ }], content: [{
948
+ type: Input
949
+ }], testId: [{
950
+ type: Input
951
+ }], variant: [{
952
+ type: Input
953
+ }], iconTheme: [{
954
+ type: Input
955
+ }], mt: [{
956
+ type: Input
957
+ }], mb: [{
958
+ type: Input
959
+ }], ml: [{
960
+ type: Input
961
+ }], mr: [{
962
+ type: Input
963
+ }], onClick: [{
964
+ type: Output
965
+ }] } });
966
+
967
+ class GoabCircularProgress {
968
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCircularProgress, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
969
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabCircularProgress, isStandalone: true, selector: "goab-circular-progress", inputs: { variant: "variant", size: "size", message: "message", visible: "visible", progress: "progress", testId: "testId" }, ngImport: i0, template: `
970
+ <goa-circular-progress
971
+ [attr.variant]="variant"
972
+ [attr.size]="size"
973
+ [attr.message]="message"
974
+ [attr.visible]="visible"
975
+ [attr.progress]="progress"
976
+ [attr.testid]="testId"
977
+ >
978
+ </goa-circular-progress>
979
+ `, isInline: true }); }
980
+ }
981
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCircularProgress, decorators: [{
982
+ type: Component,
983
+ args: [{
984
+ standalone: true,
985
+ selector: "goab-circular-progress",
986
+ template: `
987
+ <goa-circular-progress
988
+ [attr.variant]="variant"
989
+ [attr.size]="size"
990
+ [attr.message]="message"
991
+ [attr.visible]="visible"
992
+ [attr.progress]="progress"
993
+ [attr.testid]="testId"
994
+ >
995
+ </goa-circular-progress>
996
+ `,
997
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
998
+ }]
999
+ }], propDecorators: { variant: [{
1000
+ type: Input
1001
+ }], size: [{
1002
+ type: Input
1003
+ }], message: [{
1004
+ type: Input
1005
+ }], visible: [{
1006
+ type: Input
1007
+ }], progress: [{
1008
+ type: Input
1009
+ }], testId: [{
1010
+ type: Input
1011
+ }] } });
1012
+
1013
+ class GoabColumnLayout {
1014
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabColumnLayout, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1015
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabColumnLayout, isStandalone: true, selector: "goab-column-layout", ngImport: i0, template: `
1016
+ <goa-one-column-layout>
1017
+ <ng-content />
1018
+ </goa-one-column-layout>
1019
+ `, isInline: true }); }
1020
+ }
1021
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabColumnLayout, decorators: [{
1022
+ type: Component,
1023
+ args: [{
1024
+ standalone: true,
1025
+ selector: "goab-column-layout",
1026
+ template: `
1027
+ <goa-one-column-layout>
1028
+ <ng-content />
1029
+ </goa-one-column-layout>
1030
+ `,
1031
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1032
+ }]
1033
+ }] });
1034
+
1035
+ class GoabContainer {
1036
+ constructor() {
1037
+ this.type = "interactive";
1038
+ this.accent = "filled";
1039
+ this.padding = "relaxed";
1040
+ this.width = "full";
1041
+ }
1042
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabContainer, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1043
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabContainer, isStandalone: true, selector: "goab-container", inputs: { type: "type", accent: "accent", padding: "padding", width: "width", maxWidth: "maxWidth", testId: "testId", title: "title", actions: "actions", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `<goa-container
1044
+ [attr.type]="type"
1045
+ [attr.accent]="accent"
1046
+ [attr.padding]="padding"
1047
+ [attr.width]="width"
1048
+ [attr.maxwidth]="maxWidth"
1049
+ [attr.testid]="testId"
1050
+ [attr.mt]="mt"
1051
+ [attr.mb]="mb"
1052
+ [attr.ml]="ml"
1053
+ [attr.mr]="mr"
1054
+ >
1055
+ <div slot="title">
1056
+ <ng-container [ngTemplateOutlet]="title"></ng-container>
1057
+ </div>
1058
+ <ng-content />
1059
+ <div slot="actions">
1060
+ <ng-container [ngTemplateOutlet]="actions"></ng-container>
1061
+ </div>
1062
+ </goa-container>`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
1063
+ }
1064
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabContainer, decorators: [{
1065
+ type: Component,
1066
+ args: [{
1067
+ standalone: true,
1068
+ selector: "goab-container",
1069
+ imports: [NgTemplateOutlet],
1070
+ template: `<goa-container
1071
+ [attr.type]="type"
1072
+ [attr.accent]="accent"
1073
+ [attr.padding]="padding"
1074
+ [attr.width]="width"
1075
+ [attr.maxwidth]="maxWidth"
1076
+ [attr.testid]="testId"
1077
+ [attr.mt]="mt"
1078
+ [attr.mb]="mb"
1079
+ [attr.ml]="ml"
1080
+ [attr.mr]="mr"
1081
+ >
1082
+ <div slot="title">
1083
+ <ng-container [ngTemplateOutlet]="title"></ng-container>
1084
+ </div>
1085
+ <ng-content />
1086
+ <div slot="actions">
1087
+ <ng-container [ngTemplateOutlet]="actions"></ng-container>
1088
+ </div>
1089
+ </goa-container>`,
1090
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1091
+ }]
1092
+ }], propDecorators: { type: [{
1093
+ type: Input
1094
+ }], accent: [{
1095
+ type: Input
1096
+ }], padding: [{
1097
+ type: Input
1098
+ }], width: [{
1099
+ type: Input
1100
+ }], maxWidth: [{
1101
+ type: Input
1102
+ }], testId: [{
1103
+ type: Input
1104
+ }], title: [{
1105
+ type: Input
1106
+ }], actions: [{
1107
+ type: Input
1108
+ }], mt: [{
1109
+ type: Input
1110
+ }], mb: [{
1111
+ type: Input
1112
+ }], ml: [{
1113
+ type: Input
1114
+ }], mr: [{
1115
+ type: Input
1116
+ }] } });
1117
+
1118
+ class GoabDatePicker {
1119
+ _onChange(e) {
1120
+ const detail = e.detail;
1121
+ this.onChange.emit(detail);
1122
+ this.markAsTouched();
1123
+ this.fcChange?.(detail.value);
1124
+ }
1125
+ // ControlValueAccessor
1126
+ constructor(elementRef) {
1127
+ this.elementRef = elementRef;
1128
+ this.onChange = new EventEmitter();
1129
+ this.touched = false;
1130
+ }
1131
+ setDisabledState(isDisabled) {
1132
+ this.disabled = isDisabled;
1133
+ this.elementRef.nativeElement.disabled = isDisabled;
1134
+ }
1135
+ listenDisabledChange(isDisabled) {
1136
+ this.setDisabledState(isDisabled);
1137
+ }
1138
+ markAsTouched() {
1139
+ if (!this.touched) {
1140
+ this.fcTouched?.();
1141
+ this.touched = true;
1142
+ }
1143
+ }
1144
+ writeValue(value) {
1145
+ this.value = value;
1146
+ }
1147
+ registerOnChange(fn) {
1148
+ this.fcChange = fn;
1149
+ }
1150
+ registerOnTouched(fn) {
1151
+ this.fcTouched = fn;
1152
+ }
1153
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDatePicker, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
1154
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabDatePicker, isStandalone: true, selector: "goab-date-picker", inputs: { name: "name", value: "value", min: "min", max: "max", error: "error", disabled: "disabled", relative: "relative", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onChange: "onChange" }, host: { listeners: { "disabledChange": "listenDisabledChange($event.detail.disabled)" } }, providers: [
1155
+ {
1156
+ provide: NG_VALUE_ACCESSOR,
1157
+ multi: true,
1158
+ useExisting: forwardRef(() => GoabDatePicker),
1159
+ },
1160
+ ], ngImport: i0, template: ` <goa-date-picker
1161
+ [attr.name]="name"
1162
+ [attr.value]="value"
1163
+ [attr.min]="min"
1164
+ [attr.max]="max"
1165
+ [attr.error]="error"
1166
+ [attr.disabled]="disabled"
1167
+ [attr.relative]="relative"
1168
+ [attr.testid]="testId"
1169
+ [attr.mt]="mt"
1170
+ [attr.mb]="mb"
1171
+ [attr.ml]="ml"
1172
+ [attr.mr]="mr"
1173
+ (_change)="_onChange($event)"
1174
+ >
1175
+ </goa-date-picker>`, isInline: true }); }
1176
+ }
1177
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDatePicker, decorators: [{
1178
+ type: Component,
1179
+ args: [{
1180
+ standalone: true,
1181
+ selector: "goab-date-picker",
1182
+ template: ` <goa-date-picker
1183
+ [attr.name]="name"
1184
+ [attr.value]="value"
1185
+ [attr.min]="min"
1186
+ [attr.max]="max"
1187
+ [attr.error]="error"
1188
+ [attr.disabled]="disabled"
1189
+ [attr.relative]="relative"
1190
+ [attr.testid]="testId"
1191
+ [attr.mt]="mt"
1192
+ [attr.mb]="mb"
1193
+ [attr.ml]="ml"
1194
+ [attr.mr]="mr"
1195
+ (_change)="_onChange($event)"
1196
+ >
1197
+ </goa-date-picker>`,
1198
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1199
+ providers: [
1200
+ {
1201
+ provide: NG_VALUE_ACCESSOR,
1202
+ multi: true,
1203
+ useExisting: forwardRef(() => GoabDatePicker),
1204
+ },
1205
+ ],
1206
+ }]
1207
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { name: [{
1208
+ type: Input
1209
+ }], value: [{
1210
+ type: Input
1211
+ }], min: [{
1212
+ type: Input
1213
+ }], max: [{
1214
+ type: Input
1215
+ }], error: [{
1216
+ type: Input
1217
+ }], disabled: [{
1218
+ type: Input
1219
+ }], relative: [{
1220
+ type: Input
1221
+ }], testId: [{
1222
+ type: Input
1223
+ }], mt: [{
1224
+ type: Input
1225
+ }], mb: [{
1226
+ type: Input
1227
+ }], ml: [{
1228
+ type: Input
1229
+ }], mr: [{
1230
+ type: Input
1231
+ }], onChange: [{
1232
+ type: Output
1233
+ }], listenDisabledChange: [{
1234
+ type: HostListener,
1235
+ args: ["disabledChange", ["$event.detail.disabled"]]
1236
+ }] } });
1237
+
1238
+ class GoabDetails {
1239
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDetails, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1240
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabDetails, isStandalone: true, selector: "goab-details", inputs: { heading: "heading", testId: "testId", open: "open", maxWidth: "maxWidth", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
1241
+ <goa-details
1242
+ [attr.heading]="heading"
1243
+ [attr.testid]="testId"
1244
+ [attr.open]="open"
1245
+ [attr.maxwidth]="maxWidth"
1246
+ [attr.mt]="mt"
1247
+ [attr.mb]="mb"
1248
+ [attr.ml]="ml"
1249
+ [attr.mr]="mr"
1250
+ >
1251
+ <ng-content />
1252
+ </goa-details>
1253
+ `, isInline: true }); }
1254
+ }
1255
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDetails, decorators: [{
1256
+ type: Component,
1257
+ args: [{
1258
+ standalone: true,
1259
+ selector: "goab-details",
1260
+ template: `
1261
+ <goa-details
1262
+ [attr.heading]="heading"
1263
+ [attr.testid]="testId"
1264
+ [attr.open]="open"
1265
+ [attr.maxwidth]="maxWidth"
1266
+ [attr.mt]="mt"
1267
+ [attr.mb]="mb"
1268
+ [attr.ml]="ml"
1269
+ [attr.mr]="mr"
1270
+ >
1271
+ <ng-content />
1272
+ </goa-details>
1273
+ `,
1274
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
1275
+ }]
1276
+ }], propDecorators: { heading: [{
1277
+ type: Input,
1278
+ args: [{ required: true }]
1279
+ }], testId: [{
1280
+ type: Input
1281
+ }], open: [{
1282
+ type: Input
1283
+ }], maxWidth: [{
1284
+ type: Input
1285
+ }], mt: [{
1286
+ type: Input
1287
+ }], mb: [{
1288
+ type: Input
1289
+ }], ml: [{
1290
+ type: Input
1291
+ }], mr: [{
1292
+ type: Input
1293
+ }] } });
1294
+
1295
+ class GoabDivider {
1296
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDivider, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1297
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabDivider, isStandalone: true, selector: "goab-divider", inputs: { testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
1298
+ <goa-divider
1299
+ [attr.testid]="testId"
1300
+ [attr.mt]="mt"
1301
+ [attr.mb]="mb"
1302
+ [attr.ml]="ml"
1303
+ [attr.mr]="mr"
1304
+ >
1305
+ </goa-divider>
1306
+ `, isInline: true }); }
1307
+ }
1308
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDivider, decorators: [{
1309
+ type: Component,
1310
+ args: [{
1311
+ standalone: true,
1312
+ selector: "goab-divider",
1313
+ template: `
1314
+ <goa-divider
1315
+ [attr.testid]="testId"
1316
+ [attr.mt]="mt"
1317
+ [attr.mb]="mb"
1318
+ [attr.ml]="ml"
1319
+ [attr.mr]="mr"
1320
+ >
1321
+ </goa-divider>
1322
+ `,
1323
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
1324
+ }]
1325
+ }], propDecorators: { testId: [{
1326
+ type: Input
1327
+ }], mt: [{
1328
+ type: Input
1329
+ }], mb: [{
1330
+ type: Input
1331
+ }], ml: [{
1332
+ type: Input
1333
+ }], mr: [{
1334
+ type: Input
1335
+ }] } });
1336
+
1337
+ // "disabled", "value", "id" is an exposed property of HTMLInputElement, no need to bind with attr
1338
+ class GoabDropdown {
1339
+ constructor() {
1340
+ this.onChange = new EventEmitter();
1341
+ this.touched = false;
1342
+ }
1343
+ _onChange(e) {
1344
+ const detail = e.detail;
1345
+ this.onChange.emit(detail);
1346
+ this.markAsTouched();
1347
+ this.fcChange?.(detail.value || "");
1348
+ }
1349
+ markAsTouched() {
1350
+ if (!this.touched) {
1351
+ this.fcTouched?.();
1352
+ this.touched = true;
1353
+ }
1354
+ }
1355
+ writeValue(value) {
1356
+ this.value = value;
1357
+ }
1358
+ registerOnChange(fn) {
1359
+ this.fcChange = fn;
1360
+ }
1361
+ registerOnTouched(fn) {
1362
+ this.fcTouched = fn;
1363
+ }
1364
+ setDisabledState(isDisabled) {
1365
+ this.disabled = isDisabled;
1366
+ }
1367
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDropdown, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1368
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabDropdown, isStandalone: true, selector: "goab-dropdown", inputs: { name: "name", value: "value", ariaLabel: "ariaLabel", ariaLabelledBy: "ariaLabelledBy", id: "id", disabled: "disabled", error: "error", filterable: "filterable", leadingIcon: "leadingIcon", maxHeight: "maxHeight", multiselect: "multiselect", native: "native", placeholder: "placeholder", testId: "testId", width: "width", relative: "relative", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onChange: "onChange" }, providers: [
1369
+ {
1370
+ provide: NG_VALUE_ACCESSOR,
1371
+ multi: true,
1372
+ useExisting: forwardRef(() => GoabDropdown),
1373
+ }
1374
+ ], ngImport: i0, template: `
1375
+ <goa-dropdown
1376
+ [attr.name]="name"
1377
+ [value]="value"
1378
+ [attr.arialabel]="ariaLabel"
1379
+ [attr.arialabelledby]="ariaLabelledBy"
1380
+ [disabled]="disabled"
1381
+ [attr.error]="error"
1382
+ [attr.filterable]="filterable"
1383
+ [attr.leadingicon]="leadingIcon"
1384
+ [attr.maxheight]="maxHeight"
1385
+ [attr.mb]="mb"
1386
+ [attr.ml]="ml"
1387
+ [attr.mr]="mr"
1388
+ [attr.mt]="mt"
1389
+ [attr.multiselect]="multiselect"
1390
+ [attr.native]="native"
1391
+ [attr.placeholder]="placeholder"
1392
+ [attr.testid]="testId"
1393
+ [attr.width]="width"
1394
+ [attr.relative]="relative"
1395
+ [id]="id"
1396
+ (_change)="_onChange($event)"
1397
+ >
1398
+ <ng-content />
1399
+ </goa-dropdown>
1400
+ `, isInline: true }); }
1401
+ }
1402
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDropdown, decorators: [{
1403
+ type: Component,
1404
+ args: [{
1405
+ standalone: true,
1406
+ selector: "goab-dropdown",
1407
+ template: `
1408
+ <goa-dropdown
1409
+ [attr.name]="name"
1410
+ [value]="value"
1411
+ [attr.arialabel]="ariaLabel"
1412
+ [attr.arialabelledby]="ariaLabelledBy"
1413
+ [disabled]="disabled"
1414
+ [attr.error]="error"
1415
+ [attr.filterable]="filterable"
1416
+ [attr.leadingicon]="leadingIcon"
1417
+ [attr.maxheight]="maxHeight"
1418
+ [attr.mb]="mb"
1419
+ [attr.ml]="ml"
1420
+ [attr.mr]="mr"
1421
+ [attr.mt]="mt"
1422
+ [attr.multiselect]="multiselect"
1423
+ [attr.native]="native"
1424
+ [attr.placeholder]="placeholder"
1425
+ [attr.testid]="testId"
1426
+ [attr.width]="width"
1427
+ [attr.relative]="relative"
1428
+ [id]="id"
1429
+ (_change)="_onChange($event)"
1430
+ >
1431
+ <ng-content />
1432
+ </goa-dropdown>
1433
+ `,
1434
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1435
+ providers: [
1436
+ {
1437
+ provide: NG_VALUE_ACCESSOR,
1438
+ multi: true,
1439
+ useExisting: forwardRef(() => GoabDropdown),
1440
+ }
1441
+ ],
1442
+ }]
1443
+ }], propDecorators: { name: [{
1444
+ type: Input
1445
+ }], value: [{
1446
+ type: Input
1447
+ }], ariaLabel: [{
1448
+ type: Input
1449
+ }], ariaLabelledBy: [{
1450
+ type: Input
1451
+ }], id: [{
1452
+ type: Input
1453
+ }], disabled: [{
1454
+ type: Input
1455
+ }], error: [{
1456
+ type: Input
1457
+ }], filterable: [{
1458
+ type: Input
1459
+ }], leadingIcon: [{
1460
+ type: Input
1461
+ }], maxHeight: [{
1462
+ type: Input
1463
+ }], multiselect: [{
1464
+ type: Input
1465
+ }], native: [{
1466
+ type: Input
1467
+ }], placeholder: [{
1468
+ type: Input
1469
+ }], testId: [{
1470
+ type: Input
1471
+ }], width: [{
1472
+ type: Input
1473
+ }], relative: [{
1474
+ type: Input
1475
+ }], mt: [{
1476
+ type: Input
1477
+ }], mb: [{
1478
+ type: Input
1479
+ }], ml: [{
1480
+ type: Input
1481
+ }], mr: [{
1482
+ type: Input
1483
+ }], onChange: [{
1484
+ type: Output
1485
+ }] } });
1486
+
1487
+ class GoabDropdownItem {
1488
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDropdownItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1489
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabDropdownItem, isStandalone: true, selector: "goab-dropdown-item", inputs: { value: "value", filter: "filter", label: "label", name: "name", mountType: "mountType" }, ngImport: i0, template: `
1490
+ <goa-dropdown-item
1491
+ [value]="value"
1492
+ [label]="label"
1493
+ [attr.filter]="filter"
1494
+ [attr.name]="name"
1495
+ [attr.mount]="mountType"
1496
+ >
1497
+ </goa-dropdown-item>
1498
+ `, isInline: true }); }
1499
+ }
1500
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDropdownItem, decorators: [{
1501
+ type: Component,
1502
+ args: [{
1503
+ standalone: true,
1504
+ selector: "goab-dropdown-item",
1505
+ template: `
1506
+ <goa-dropdown-item
1507
+ [value]="value"
1508
+ [label]="label"
1509
+ [attr.filter]="filter"
1510
+ [attr.name]="name"
1511
+ [attr.mount]="mountType"
1512
+ >
1513
+ </goa-dropdown-item>
1514
+ `,
1515
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
1516
+ }]
1517
+ }], propDecorators: { value: [{
1518
+ type: Input
1519
+ }], filter: [{
1520
+ type: Input
1521
+ }], label: [{
1522
+ type: Input
1523
+ }], name: [{
1524
+ type: Input
1525
+ }], mountType: [{
1526
+ type: Input
1527
+ }] } });
1528
+
1529
+ class GoabFileUploadCard {
1530
+ constructor() {
1531
+ this.onCancel = new EventEmitter();
1532
+ this.onDelete = new EventEmitter();
1533
+ }
1534
+ _onCancel() {
1535
+ this.onCancel.emit({ filename: this.filename });
1536
+ }
1537
+ _onDelete() {
1538
+ this.onDelete.emit({ filename: this.filename });
1539
+ }
1540
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFileUploadCard, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1541
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabFileUploadCard, isStandalone: true, selector: "goab-file-upload-card", inputs: { filename: "filename", size: "size", type: "type", progress: "progress", error: "error", testId: "testId" }, outputs: { onCancel: "onCancel", onDelete: "onDelete" }, ngImport: i0, template: `<goa-file-upload-card
1542
+ [attr.filename]="filename"
1543
+ [attr.size]="size"
1544
+ [attr.type]="type"
1545
+ [attr.progress]="progress"
1546
+ [attr.error]="error"
1547
+ [attr.testid]="testId"
1548
+ (_cancel)="_onCancel()"
1549
+ (_delete)="_onDelete()"
1550
+ >
1551
+ </goa-file-upload-card>`, isInline: true }); }
1552
+ }
1553
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFileUploadCard, decorators: [{
1554
+ type: Component,
1555
+ args: [{
1556
+ standalone: true,
1557
+ selector: "goab-file-upload-card",
1558
+ template: `<goa-file-upload-card
1559
+ [attr.filename]="filename"
1560
+ [attr.size]="size"
1561
+ [attr.type]="type"
1562
+ [attr.progress]="progress"
1563
+ [attr.error]="error"
1564
+ [attr.testid]="testId"
1565
+ (_cancel)="_onCancel()"
1566
+ (_delete)="_onDelete()"
1567
+ >
1568
+ </goa-file-upload-card>`,
1569
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
1570
+ }]
1571
+ }], propDecorators: { filename: [{
1572
+ type: Input,
1573
+ args: [{ required: true }]
1574
+ }], size: [{
1575
+ type: Input
1576
+ }], type: [{
1577
+ type: Input
1578
+ }], progress: [{
1579
+ type: Input
1580
+ }], error: [{
1581
+ type: Input
1582
+ }], testId: [{
1583
+ type: Input
1584
+ }], onCancel: [{
1585
+ type: Output
1586
+ }], onDelete: [{
1587
+ type: Output
1588
+ }] } });
1589
+
1590
+ class GoabFileUploadInput {
1591
+ constructor() {
1592
+ this.id = "";
1593
+ this.maxFileSize = "5MB";
1594
+ this.onSelectFile = new EventEmitter();
1595
+ }
1596
+ _onSelectFile(e) {
1597
+ const detail = e.detail;
1598
+ this.onSelectFile.emit(detail);
1599
+ }
1600
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFileUploadInput, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1601
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabFileUploadInput, isStandalone: true, selector: "goab-file-upload-input", inputs: { id: "id", variant: "variant", maxFileSize: "maxFileSize", accept: "accept", testId: "testId", mt: "mt", mb: "mb", mr: "mr", ml: "ml" }, outputs: { onSelectFile: "onSelectFile" }, ngImport: i0, template: `<goa-file-upload-input
1602
+ [attr.variant]="variant"
1603
+ [attr.accept]="accept"
1604
+ [attr.maxfilesize]="maxFileSize"
1605
+ [attr.testid]="testId"
1606
+ [id]="id"
1607
+ [attr.mt]="mt"
1608
+ [attr.mb]="mb"
1609
+ [attr.mr]="mr"
1610
+ [attr.ml]="ml"
1611
+ (_selectFile)="_onSelectFile($event)"
1612
+ >
1613
+ </goa-file-upload-input>`, isInline: true }); }
1614
+ }
1615
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFileUploadInput, decorators: [{
1616
+ type: Component,
1617
+ args: [{
1618
+ standalone: true,
1619
+ selector: "goab-file-upload-input",
1620
+ template: `<goa-file-upload-input
1621
+ [attr.variant]="variant"
1622
+ [attr.accept]="accept"
1623
+ [attr.maxfilesize]="maxFileSize"
1624
+ [attr.testid]="testId"
1625
+ [id]="id"
1626
+ [attr.mt]="mt"
1627
+ [attr.mb]="mb"
1628
+ [attr.mr]="mr"
1629
+ [attr.ml]="ml"
1630
+ (_selectFile)="_onSelectFile($event)"
1631
+ >
1632
+ </goa-file-upload-input>`,
1633
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1634
+ }]
1635
+ }], propDecorators: { id: [{
1636
+ type: Input
1637
+ }], variant: [{
1638
+ type: Input,
1639
+ args: [{ required: true }]
1640
+ }], maxFileSize: [{
1641
+ type: Input
1642
+ }], accept: [{
1643
+ type: Input
1644
+ }], testId: [{
1645
+ type: Input
1646
+ }], mt: [{
1647
+ type: Input
1648
+ }], mb: [{
1649
+ type: Input
1650
+ }], mr: [{
1651
+ type: Input
1652
+ }], ml: [{
1653
+ type: Input
1654
+ }], onSelectFile: [{
1655
+ type: Output
1656
+ }] } });
1657
+
1658
+ class GoabAppFooter {
1659
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAppFooter, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1660
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabAppFooter, isStandalone: true, selector: "goab-app-footer", inputs: { maxContentWidth: "maxContentWidth", testId: "testId" }, ngImport: i0, template: `
1661
+ <goa-app-footer
1662
+ [attr.maxcontentwidth]="maxContentWidth"
1663
+ [attr.testid]="testId"
1664
+ >
1665
+ <ng-content select="[slot=nav]" />
1666
+ <ng-content select="goab-app-footer-meta-section"></ng-content>
1667
+ <ng-content></ng-content>
1668
+ </goa-app-footer>
1669
+ `, isInline: true }); }
1670
+ }
1671
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAppFooter, decorators: [{
1672
+ type: Component,
1673
+ args: [{
1674
+ standalone: true,
1675
+ selector: "goab-app-footer",
1676
+ template: `
1677
+ <goa-app-footer
1678
+ [attr.maxcontentwidth]="maxContentWidth"
1679
+ [attr.testid]="testId"
1680
+ >
1681
+ <ng-content select="[slot=nav]" />
1682
+ <ng-content select="goab-app-footer-meta-section"></ng-content>
1683
+ <ng-content></ng-content>
1684
+ </goa-app-footer>
1685
+ `,
1686
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
1687
+ }]
1688
+ }], propDecorators: { maxContentWidth: [{
1689
+ type: Input
1690
+ }], testId: [{
1691
+ type: Input
1692
+ }] } });
1693
+
1694
+ class GoabAppFooterMetaSection {
1695
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAppFooterMetaSection, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1696
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabAppFooterMetaSection, isStandalone: true, selector: "goab-app-footer-meta-section", inputs: { testId: "testId", slot: "slot" }, ngImport: i0, template: `
1697
+ <goa-app-footer-meta-section [attr.testid]="testId">
1698
+ <ng-content />
1699
+ </goa-app-footer-meta-section>
1700
+ `, isInline: true, styles: [":host{width:100%}\n"] }); }
1701
+ }
1702
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAppFooterMetaSection, decorators: [{
1703
+ type: Component,
1704
+ args: [{ standalone: true, selector: "goab-app-footer-meta-section", template: `
1705
+ <goa-app-footer-meta-section [attr.testid]="testId">
1706
+ <ng-content />
1707
+ </goa-app-footer-meta-section>
1708
+ `, schemas: [CUSTOM_ELEMENTS_SCHEMA], styles: [":host{width:100%}\n"] }]
1709
+ }], propDecorators: { testId: [{
1710
+ type: Input
1711
+ }], slot: [{
1712
+ type: Input,
1713
+ args: [{ required: true }]
1714
+ }] } });
1715
+
1716
+ class GoabAppFooterNavSection {
1717
+ constructor() {
1718
+ this.maxColumnCount = 1;
1719
+ }
1720
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAppFooterNavSection, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1721
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabAppFooterNavSection, isStandalone: true, selector: "goab-app-footer-nav-section", inputs: { heading: "heading", maxColumnCount: "maxColumnCount", testId: "testId", slot: "slot" }, ngImport: i0, template: `
1722
+ <goa-app-footer-nav-section
1723
+ [attr.maxcolumncount]="maxColumnCount"
1724
+ [attr.heading]="heading"
1725
+ [attr.testid]="testId"
1726
+ >
1727
+ <ng-content />
1728
+ </goa-app-footer-nav-section>
1729
+ `, isInline: true, styles: [":host{width:100%}\n"] }); }
1730
+ }
1731
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAppFooterNavSection, decorators: [{
1732
+ type: Component,
1733
+ args: [{ standalone: true, selector: "goab-app-footer-nav-section", template: `
1734
+ <goa-app-footer-nav-section
1735
+ [attr.maxcolumncount]="maxColumnCount"
1736
+ [attr.heading]="heading"
1737
+ [attr.testid]="testId"
1738
+ >
1739
+ <ng-content />
1740
+ </goa-app-footer-nav-section>
1741
+ `, schemas: [CUSTOM_ELEMENTS_SCHEMA], styles: [":host{width:100%}\n"] }]
1742
+ }], propDecorators: { heading: [{
1743
+ type: Input
1744
+ }], maxColumnCount: [{
1745
+ type: Input
1746
+ }], testId: [{
1747
+ type: Input
1748
+ }], slot: [{
1749
+ type: Input,
1750
+ args: [{ required: true }]
1751
+ }] } });
1752
+
1753
+ class GoabFormItem {
1754
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFormItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1755
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabFormItem, isStandalone: true, selector: "goab-form-item", inputs: { label: "label", labelSize: "labelSize", helpText: "helpText", error: "error", requirement: "requirement", maxWidth: "maxWidth", testId: "testId", id: "id", mt: "mt", mb: "mb", mr: "mr", ml: "ml" }, ngImport: i0, template: `
1756
+ <goa-form-item
1757
+ [attr.label]="label"
1758
+ [attr.labelsize]="labelSize"
1759
+ [attr.helptext]="helpText"
1760
+ [attr.error]="error"
1761
+ [attr.testid]="testId"
1762
+ [id]="id"
1763
+ [attr.requirement]="requirement"
1764
+ [attr.maxwidth]="maxWidth"
1765
+ [attr.mt]="mt"
1766
+ [attr.mb]="mb"
1767
+ [attr.mr]="mr"
1768
+ [attr.ml]="ml"
1769
+ >
1770
+ <ng-content />
1771
+ <ng-content select="goab-form-item-slot"></ng-content>
1772
+ </goa-form-item>
1773
+ `, isInline: true }); }
1774
+ }
1775
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFormItem, decorators: [{
1776
+ type: Component,
1777
+ args: [{
1778
+ standalone: true,
1779
+ selector: "goab-form-item",
1780
+ template: `
1781
+ <goa-form-item
1782
+ [attr.label]="label"
1783
+ [attr.labelsize]="labelSize"
1784
+ [attr.helptext]="helpText"
1785
+ [attr.error]="error"
1786
+ [attr.testid]="testId"
1787
+ [id]="id"
1788
+ [attr.requirement]="requirement"
1789
+ [attr.maxwidth]="maxWidth"
1790
+ [attr.mt]="mt"
1791
+ [attr.mb]="mb"
1792
+ [attr.mr]="mr"
1793
+ [attr.ml]="ml"
1794
+ >
1795
+ <ng-content />
1796
+ <ng-content select="goab-form-item-slot"></ng-content>
1797
+ </goa-form-item>
1798
+ `,
1799
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1800
+ }]
1801
+ }], propDecorators: { label: [{
1802
+ type: Input
1803
+ }], labelSize: [{
1804
+ type: Input
1805
+ }], helpText: [{
1806
+ type: Input
1807
+ }], error: [{
1808
+ type: Input
1809
+ }], requirement: [{
1810
+ type: Input
1811
+ }], maxWidth: [{
1812
+ type: Input
1813
+ }], testId: [{
1814
+ type: Input
1815
+ }], id: [{
1816
+ type: Input
1817
+ }], mt: [{
1818
+ type: Input
1819
+ }], mb: [{
1820
+ type: Input
1821
+ }], mr: [{
1822
+ type: Input
1823
+ }], ml: [{
1824
+ type: Input
1825
+ }] } });
1826
+
1827
+ /**
1828
+ * This component is used to define the slot for the form item component.
1829
+ * We need to use a separate component with a required attribute `slot` because
1830
+ * svelte component renders based on the `slot` of the wrapper component (which is `div` before)
1831
+ * // similar to app-footer-meta-section & app-footer-nav-section
1832
+ */
1833
+ class GoabFormItemSlot {
1834
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFormItemSlot, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1835
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabFormItemSlot, isStandalone: true, selector: "goab-form-item-slot", inputs: { slot: "slot" }, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true }); }
1836
+ }
1837
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFormItemSlot, decorators: [{
1838
+ type: Component,
1839
+ args: [{
1840
+ standalone: true,
1841
+ selector: "goab-form-item-slot",
1842
+ template: `<ng-content></ng-content>`,
1843
+ }]
1844
+ }], propDecorators: { slot: [{
1845
+ type: Input,
1846
+ args: [{ required: true }]
1847
+ }] } });
1848
+
1849
+ class GoabFormStep {
1850
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFormStep, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1851
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabFormStep, isStandalone: true, selector: "goab-form-step", inputs: { text: "text", status: "status" }, ngImport: i0, template: `
1852
+ <goa-form-step
1853
+ [attr.text]="text"
1854
+ [attr.status]="status"
1855
+ ></goa-form-step> `, isInline: true }); }
1856
+ }
1857
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFormStep, decorators: [{
1858
+ type: Component,
1859
+ args: [{
1860
+ standalone: true,
1861
+ selector: "goab-form-step",
1862
+ template: `
1863
+ <goa-form-step
1864
+ [attr.text]="text"
1865
+ [attr.status]="status"
1866
+ ></goa-form-step> `,
1867
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1868
+ }]
1869
+ }], propDecorators: { text: [{
1870
+ type: Input
1871
+ }], status: [{
1872
+ type: Input
1873
+ }] } });
1874
+
1875
+ class GoabFormStepper {
1876
+ constructor() {
1877
+ this.step = -1;
1878
+ this.onChange = new EventEmitter();
1879
+ }
1880
+ _onChange(e) {
1881
+ const detail = e.detail;
1882
+ this.onChange.emit(detail);
1883
+ }
1884
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFormStepper, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1885
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabFormStepper, isStandalone: true, selector: "goab-form-stepper", inputs: { step: "step", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onChange: "onChange" }, ngImport: i0, template: `
1886
+ <goa-form-stepper
1887
+ [attr.step]="step"
1888
+ [attr.testid]="testId"
1889
+ [attr.mt]="mt"
1890
+ [attr.mb]="mb"
1891
+ [attr.ml]="ml"
1892
+ [attr.mr]="mr"
1893
+ (_change)="_onChange($event)"
1894
+ >
1895
+ <ng-content />
1896
+ </goa-form-stepper>
1897
+ `, isInline: true }); }
1898
+ }
1899
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFormStepper, decorators: [{
1900
+ type: Component,
1901
+ args: [{
1902
+ standalone: true,
1903
+ selector: "goab-form-stepper",
1904
+ template: `
1905
+ <goa-form-stepper
1906
+ [attr.step]="step"
1907
+ [attr.testid]="testId"
1908
+ [attr.mt]="mt"
1909
+ [attr.mb]="mb"
1910
+ [attr.ml]="ml"
1911
+ [attr.mr]="mr"
1912
+ (_change)="_onChange($event)"
1913
+ >
1914
+ <ng-content />
1915
+ </goa-form-stepper>
1916
+ `,
1917
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
1918
+ }]
1919
+ }], propDecorators: { step: [{
1920
+ type: Input
1921
+ }], testId: [{
1922
+ type: Input
1923
+ }], mt: [{
1924
+ type: Input
1925
+ }], mb: [{
1926
+ type: Input
1927
+ }], ml: [{
1928
+ type: Input
1929
+ }], mr: [{
1930
+ type: Input
1931
+ }], onChange: [{
1932
+ type: Output
1933
+ }] } });
1934
+
1935
+ class GoabGrid {
1936
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabGrid, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1937
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabGrid, isStandalone: true, selector: "goab-grid", inputs: { minChildWidth: "minChildWidth", gap: "gap", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
1938
+ <goa-grid
1939
+ [attr.gap]="gap"
1940
+ [attr.minchildwidth]="minChildWidth"
1941
+ [attr.testid]="testId"
1942
+ [attr.mt]="mt"
1943
+ [attr.mb]="mb"
1944
+ [attr.ml]="ml"
1945
+ [attr.mr]="mr"
1946
+ >
1947
+ <ng-content />
1948
+ </goa-grid>
1949
+ `, isInline: true }); }
1950
+ }
1951
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabGrid, decorators: [{
1952
+ type: Component,
1953
+ args: [{
1954
+ standalone: true,
1955
+ selector: "goab-grid",
1956
+ template: `
1957
+ <goa-grid
1958
+ [attr.gap]="gap"
1959
+ [attr.minchildwidth]="minChildWidth"
1960
+ [attr.testid]="testId"
1961
+ [attr.mt]="mt"
1962
+ [attr.mb]="mb"
1963
+ [attr.ml]="ml"
1964
+ [attr.mr]="mr"
1965
+ >
1966
+ <ng-content />
1967
+ </goa-grid>
1968
+ `,
1969
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1970
+ }]
1971
+ }], propDecorators: { minChildWidth: [{
1972
+ type: Input,
1973
+ args: [{ required: true }]
1974
+ }], gap: [{
1975
+ type: Input
1976
+ }], testId: [{
1977
+ type: Input
1978
+ }], mt: [{
1979
+ type: Input
1980
+ }], mb: [{
1981
+ type: Input
1982
+ }], ml: [{
1983
+ type: Input
1984
+ }], mr: [{
1985
+ type: Input
1986
+ }] } });
1987
+
1988
+ class GoabAppHeader {
1989
+ constructor() {
1990
+ this.onMenuClick = new EventEmitter();
1991
+ }
1992
+ _onMenuClick() {
1993
+ this.onMenuClick.emit();
1994
+ }
1995
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAppHeader, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1996
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabAppHeader, isStandalone: true, selector: "goab-app-header", inputs: { url: "url", heading: "heading", maxContentWidth: "maxContentWidth", testId: "testId", fullMenuBreakpoint: "fullMenuBreakpoint" }, outputs: { onMenuClick: "onMenuClick" }, ngImport: i0, template: `
1997
+ <goa-app-header
1998
+ [attr.url]="url"
1999
+ [attr.heading]="heading"
2000
+ [attr.maxcontentwidth]="maxContentWidth"
2001
+ [attr.fullmenubreakpoint]="fullMenuBreakpoint"
2002
+ [attr.testid]="testId"
2003
+ [attr.hasmenuclickhandler]="!!onMenuClick"
2004
+ (_menuClick)="_onMenuClick()"
2005
+ >
2006
+ <ng-content />
2007
+ </goa-app-header>
2008
+ `, isInline: true }); }
2009
+ }
2010
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAppHeader, decorators: [{
2011
+ type: Component,
2012
+ args: [{
2013
+ standalone: true,
2014
+ selector: "goab-app-header",
2015
+ template: `
2016
+ <goa-app-header
2017
+ [attr.url]="url"
2018
+ [attr.heading]="heading"
2019
+ [attr.maxcontentwidth]="maxContentWidth"
2020
+ [attr.fullmenubreakpoint]="fullMenuBreakpoint"
2021
+ [attr.testid]="testId"
2022
+ [attr.hasmenuclickhandler]="!!onMenuClick"
2023
+ (_menuClick)="_onMenuClick()"
2024
+ >
2025
+ <ng-content />
2026
+ </goa-app-header>
2027
+ `,
2028
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2029
+ }]
2030
+ }], propDecorators: { url: [{
2031
+ type: Input
2032
+ }], heading: [{
2033
+ type: Input
2034
+ }], maxContentWidth: [{
2035
+ type: Input
2036
+ }], testId: [{
2037
+ type: Input
2038
+ }], fullMenuBreakpoint: [{
2039
+ type: Input
2040
+ }], onMenuClick: [{
2041
+ type: Output
2042
+ }] } });
2043
+
2044
+ class GoabAppHeaderMenu {
2045
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAppHeaderMenu, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2046
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabAppHeaderMenu, isStandalone: true, selector: "goab-app-header-menu", inputs: { leadingIcon: "leadingIcon", heading: "heading", testId: "testId" }, ngImport: i0, template: `
2047
+ <goa-app-header-menu
2048
+ [attr.leadingicon]="leadingIcon"
2049
+ [attr.heading]="heading"
2050
+ [attr.testid]="testId"
2051
+ >
2052
+ <ng-content />
2053
+ </goa-app-header-menu>
2054
+ `, isInline: true }); }
2055
+ }
2056
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAppHeaderMenu, decorators: [{
2057
+ type: Component,
2058
+ args: [{
2059
+ standalone: true,
2060
+ selector: "goab-app-header-menu",
2061
+ template: `
2062
+ <goa-app-header-menu
2063
+ [attr.leadingicon]="leadingIcon"
2064
+ [attr.heading]="heading"
2065
+ [attr.testid]="testId"
2066
+ >
2067
+ <ng-content />
2068
+ </goa-app-header-menu>
2069
+ `,
2070
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
2071
+ }]
2072
+ }], propDecorators: { leadingIcon: [{
2073
+ type: Input
2074
+ }], heading: [{
2075
+ type: Input
2076
+ }], testId: [{
2077
+ type: Input
2078
+ }] } });
2079
+
2080
+ class GoabHeroBanner {
2081
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabHeroBanner, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2082
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", 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: `
2083
+ <goa-hero-banner
2084
+ [attr.heading]="heading"
2085
+ [attr.backgroundurl]="backgroundUrl"
2086
+ [attr.minheight]="minHeight"
2087
+ [attr.testid]="testId"
2088
+ [attr.maxcontentwidth]="maxContentWidth"
2089
+ [attr.backgroundColor]="backgroundColor"
2090
+ [attr.textcolor]="textColor"
2091
+ >
2092
+ <ng-content />
2093
+ <div slot="actions">
2094
+ <ng-container [ngTemplateOutlet]="actions"></ng-container>
2095
+ </div>
2096
+ </goa-hero-banner>
2097
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
2098
+ }
2099
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabHeroBanner, decorators: [{
2100
+ type: Component,
2101
+ args: [{
2102
+ standalone: true,
2103
+ selector: "goab-hero-banner",
2104
+ imports: [NgTemplateOutlet],
2105
+ template: `
2106
+ <goa-hero-banner
2107
+ [attr.heading]="heading"
2108
+ [attr.backgroundurl]="backgroundUrl"
2109
+ [attr.minheight]="minHeight"
2110
+ [attr.testid]="testId"
2111
+ [attr.maxcontentwidth]="maxContentWidth"
2112
+ [attr.backgroundColor]="backgroundColor"
2113
+ [attr.textcolor]="textColor"
2114
+ >
2115
+ <ng-content />
2116
+ <div slot="actions">
2117
+ <ng-container [ngTemplateOutlet]="actions"></ng-container>
2118
+ </div>
2119
+ </goa-hero-banner>
2120
+ `,
2121
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2122
+ }]
2123
+ }], propDecorators: { heading: [{
2124
+ type: Input
2125
+ }], backgroundUrl: [{
2126
+ type: Input
2127
+ }], minHeight: [{
2128
+ type: Input
2129
+ }], testId: [{
2130
+ type: Input
2131
+ }], maxContentWidth: [{
2132
+ type: Input
2133
+ }], backgroundColor: [{
2134
+ type: Input
2135
+ }], textColor: [{
2136
+ type: Input
2137
+ }], actions: [{
2138
+ type: Input
2139
+ }] } });
2140
+
2141
+ class GoabIcon {
2142
+ constructor() {
2143
+ this.size = "medium";
2144
+ this.theme = "outline";
2145
+ }
2146
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabIcon, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2147
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabIcon, isStandalone: true, selector: "goab-icon", inputs: { type: "type", size: "size", theme: "theme", inverted: "inverted", fillColor: "fillColor", opacity: "opacity", title: "title", ariaLabel: "ariaLabel", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
2148
+ <goa-icon
2149
+ [attr.type]="type"
2150
+ [attr.theme]="theme"
2151
+ [attr.size]="size"
2152
+ [attr.inverted]="inverted"
2153
+ [attr.fillcolor]="fillColor"
2154
+ [attr.opacity]="opacity"
2155
+ [attr.title]="title"
2156
+ [attr.arialabel]="ariaLabel"
2157
+ [attr.mt]="mt"
2158
+ [attr.mb]="mb"
2159
+ [attr.ml]="ml"
2160
+ [attr.mr]="mr"
2161
+ [attr.testid]="testId"
2162
+ >
2163
+ </goa-icon>
2164
+ `, isInline: true }); }
2165
+ }
2166
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabIcon, decorators: [{
2167
+ type: Component,
2168
+ args: [{
2169
+ standalone: true,
2170
+ selector: "goab-icon",
2171
+ template: `
2172
+ <goa-icon
2173
+ [attr.type]="type"
2174
+ [attr.theme]="theme"
2175
+ [attr.size]="size"
2176
+ [attr.inverted]="inverted"
2177
+ [attr.fillcolor]="fillColor"
2178
+ [attr.opacity]="opacity"
2179
+ [attr.title]="title"
2180
+ [attr.arialabel]="ariaLabel"
2181
+ [attr.mt]="mt"
2182
+ [attr.mb]="mb"
2183
+ [attr.ml]="ml"
2184
+ [attr.mr]="mr"
2185
+ [attr.testid]="testId"
2186
+ >
2187
+ </goa-icon>
2188
+ `,
2189
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
2190
+ }]
2191
+ }], propDecorators: { type: [{
2192
+ type: Input,
2193
+ args: [{ required: true }]
2194
+ }], size: [{
2195
+ type: Input
2196
+ }], theme: [{
2197
+ type: Input
2198
+ }], inverted: [{
2199
+ type: Input
2200
+ }], fillColor: [{
2201
+ type: Input
2202
+ }], opacity: [{
2203
+ type: Input
2204
+ }], title: [{
2205
+ type: Input
2206
+ }], ariaLabel: [{
2207
+ type: Input
2208
+ }], testId: [{
2209
+ type: Input
2210
+ }], mt: [{
2211
+ type: Input
2212
+ }], mb: [{
2213
+ type: Input
2214
+ }], ml: [{
2215
+ type: Input
2216
+ }], mr: [{
2217
+ type: Input
2218
+ }] } });
2219
+
2220
+ class GoabIconButton {
2221
+ constructor() {
2222
+ this.size = "medium";
2223
+ this.onClick = new EventEmitter();
2224
+ }
2225
+ _onClick() {
2226
+ this.onClick.emit();
2227
+ }
2228
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabIconButton, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2229
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabIconButton, isStandalone: true, selector: "goab-icon-button", inputs: { icon: "icon", size: "size", variant: "variant", title: "title", disabled: "disabled", ariaLabel: "ariaLabel", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onClick: "onClick" }, ngImport: i0, template: `
2230
+ <goa-icon-button
2231
+ [attr.icon]="icon"
2232
+ [disabled]="disabled"
2233
+ [attr.size]="size"
2234
+ [attr.variant]="variant"
2235
+ [title]="title"
2236
+ [attr.arialabel]="ariaLabel"
2237
+ [attr.testid]="testId"
2238
+ [attr.mt]="mt"
2239
+ [attr.mb]="mb"
2240
+ [attr.ml]="ml"
2241
+ [attr.mr]="mr"
2242
+ (_click)="_onClick()"
2243
+ >
2244
+ <ng-content></ng-content>
2245
+ </goa-icon-button>
2246
+ `, isInline: true }); }
2247
+ }
2248
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabIconButton, decorators: [{
2249
+ type: Component,
2250
+ args: [{
2251
+ standalone: true,
2252
+ selector: "goab-icon-button",
2253
+ template: `
2254
+ <goa-icon-button
2255
+ [attr.icon]="icon"
2256
+ [disabled]="disabled"
2257
+ [attr.size]="size"
2258
+ [attr.variant]="variant"
2259
+ [title]="title"
2260
+ [attr.arialabel]="ariaLabel"
2261
+ [attr.testid]="testId"
2262
+ [attr.mt]="mt"
2263
+ [attr.mb]="mb"
2264
+ [attr.ml]="ml"
2265
+ [attr.mr]="mr"
2266
+ (_click)="_onClick()"
2267
+ >
2268
+ <ng-content></ng-content>
2269
+ </goa-icon-button>
2270
+ `,
2271
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
2272
+ }]
2273
+ }], propDecorators: { icon: [{
2274
+ type: Input,
2275
+ args: [{ required: true }]
2276
+ }], size: [{
2277
+ type: Input
2278
+ }], variant: [{
2279
+ type: Input
2280
+ }], title: [{
2281
+ type: Input
2282
+ }], disabled: [{
2283
+ type: Input
2284
+ }], ariaLabel: [{
2285
+ type: Input
2286
+ }], testId: [{
2287
+ type: Input
2288
+ }], mt: [{
2289
+ type: Input
2290
+ }], mb: [{
2291
+ type: Input
2292
+ }], ml: [{
2293
+ type: Input
2294
+ }], mr: [{
2295
+ type: Input
2296
+ }], onClick: [{
2297
+ type: Output
2298
+ }] } });
2299
+
2300
+ class GoabInput {
2301
+ constructor() {
2302
+ this.type = "text";
2303
+ this.value = "";
2304
+ this.onTrailingIconClick = new EventEmitter();
2305
+ this.onFocus = new EventEmitter();
2306
+ this.onBlur = new EventEmitter();
2307
+ this.onKeyPress = new EventEmitter();
2308
+ this.onChange = new EventEmitter();
2309
+ this.handleTrailingIconClick = false;
2310
+ this.touched = false;
2311
+ }
2312
+ ngOnInit() {
2313
+ this.handleTrailingIconClick = this.onTrailingIconClick.observed;
2314
+ }
2315
+ _onTrailingIconClick(_) {
2316
+ if (this.handleTrailingIconClick) {
2317
+ this.onTrailingIconClick.emit();
2318
+ }
2319
+ }
2320
+ _onChange(e) {
2321
+ this.markAsTouched();
2322
+ const detail = e.detail;
2323
+ this.onChange.emit(detail);
2324
+ this.fcChange?.(detail.value);
2325
+ }
2326
+ _onKeyPress(e) {
2327
+ this.markAsTouched();
2328
+ const detail = e.detail;
2329
+ this.onKeyPress.emit(detail);
2330
+ this.fcTouched?.();
2331
+ }
2332
+ _onFocus(e) {
2333
+ this.markAsTouched();
2334
+ const detail = e.detail;
2335
+ this.onFocus.emit(detail);
2336
+ }
2337
+ _onBlur(e) {
2338
+ const detail = e.detail;
2339
+ this.onBlur.emit(detail);
2340
+ }
2341
+ markAsTouched() {
2342
+ if (!this.touched) {
2343
+ this.fcTouched?.();
2344
+ this.touched = true;
2345
+ }
2346
+ }
2347
+ writeValue(value) {
2348
+ this.value = value;
2349
+ }
2350
+ registerOnChange(fn) {
2351
+ this.fcChange = fn;
2352
+ }
2353
+ registerOnTouched(fn) {
2354
+ this.fcTouched = fn;
2355
+ }
2356
+ setDisabledState(isDisabled) {
2357
+ this.disabled = isDisabled;
2358
+ }
2359
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabInput, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2360
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabInput, isStandalone: true, selector: "goab-input", inputs: { type: "type", name: "name", id: "id", debounce: "debounce", disabled: "disabled", autoCapitalize: "autoCapitalize", placeholder: "placeholder", leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", variant: "variant", focused: "focused", readonly: "readonly", error: "error", width: "width", prefix: "prefix", suffix: "suffix", testId: "testId", ariaLabel: "ariaLabel", maxLength: "maxLength", value: "value", min: "min", max: "max", step: "step", ariaLabelledBy: "ariaLabelledBy", mt: "mt", mr: "mr", mb: "mb", ml: "ml" }, outputs: { onTrailingIconClick: "onTrailingIconClick", onFocus: "onFocus", onBlur: "onBlur", onKeyPress: "onKeyPress", onChange: "onChange" }, providers: [
2361
+ {
2362
+ provide: NG_VALUE_ACCESSOR,
2363
+ multi: true,
2364
+ useExisting: forwardRef(() => GoabInput),
2365
+ }
2366
+ ], ngImport: i0, template: `
2367
+ <goa-input
2368
+ [attr.type]="type"
2369
+ [attr.name]="name"
2370
+ [attr.focused]="focused"
2371
+ [attr.value]="value"
2372
+ [attr.autocapitalize]="autoCapitalize"
2373
+ [attr.placeholder]="placeholder"
2374
+ [attr.leadingicon]="leadingIcon"
2375
+ [attr.trailingicon]="trailingIcon"
2376
+ [attr.variant]="variant"
2377
+ [disabled]="disabled"
2378
+ [attr.readonly]="readonly"
2379
+ [attr.error]="error"
2380
+ [attr.data-testid]="testId"
2381
+ [attr.width]="width"
2382
+ [attr.arialabel]="ariaLabel"
2383
+ [attr.arialabelledby]="ariaLabelledBy"
2384
+ [attr.min]="min"
2385
+ [attr.max]="max"
2386
+ [attr.step]="step"
2387
+ [attr.prefix]="prefix"
2388
+ [attr.suffix]="suffix"
2389
+ [attr.debounce]="debounce"
2390
+ [attr.maxlength]="maxLength"
2391
+ [attr.id]="id"
2392
+ [attr.mt]="mt"
2393
+ [attr.mr]="mr"
2394
+ [attr.mb]="mb"
2395
+ [attr.ml]="ml"
2396
+ [attr.handletrailingiconclick]="!!_onTrailingIconClick"
2397
+ (_trailingIconClick)="_onTrailingIconClick($event)"
2398
+ (_change)="_onChange($event)"
2399
+ (_focus)="_onFocus($event)"
2400
+ (_blur)="_onBlur($event)"
2401
+ (_keypress)="_onKeyPress($event)"
2402
+ >
2403
+ <ng-content/>
2404
+ </goa-input>
2405
+ `, isInline: true }); }
2406
+ }
2407
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabInput, decorators: [{
2408
+ type: Component,
2409
+ args: [{
2410
+ standalone: true,
2411
+ selector: "goab-input",
2412
+ template: `
2413
+ <goa-input
2414
+ [attr.type]="type"
2415
+ [attr.name]="name"
2416
+ [attr.focused]="focused"
2417
+ [attr.value]="value"
2418
+ [attr.autocapitalize]="autoCapitalize"
2419
+ [attr.placeholder]="placeholder"
2420
+ [attr.leadingicon]="leadingIcon"
2421
+ [attr.trailingicon]="trailingIcon"
2422
+ [attr.variant]="variant"
2423
+ [disabled]="disabled"
2424
+ [attr.readonly]="readonly"
2425
+ [attr.error]="error"
2426
+ [attr.data-testid]="testId"
2427
+ [attr.width]="width"
2428
+ [attr.arialabel]="ariaLabel"
2429
+ [attr.arialabelledby]="ariaLabelledBy"
2430
+ [attr.min]="min"
2431
+ [attr.max]="max"
2432
+ [attr.step]="step"
2433
+ [attr.prefix]="prefix"
2434
+ [attr.suffix]="suffix"
2435
+ [attr.debounce]="debounce"
2436
+ [attr.maxlength]="maxLength"
2437
+ [attr.id]="id"
2438
+ [attr.mt]="mt"
2439
+ [attr.mr]="mr"
2440
+ [attr.mb]="mb"
2441
+ [attr.ml]="ml"
2442
+ [attr.handletrailingiconclick]="!!_onTrailingIconClick"
2443
+ (_trailingIconClick)="_onTrailingIconClick($event)"
2444
+ (_change)="_onChange($event)"
2445
+ (_focus)="_onFocus($event)"
2446
+ (_blur)="_onBlur($event)"
2447
+ (_keypress)="_onKeyPress($event)"
2448
+ >
2449
+ <ng-content/>
2450
+ </goa-input>
2451
+ `,
2452
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2453
+ providers: [
2454
+ {
2455
+ provide: NG_VALUE_ACCESSOR,
2456
+ multi: true,
2457
+ useExisting: forwardRef(() => GoabInput),
2458
+ }
2459
+ ]
2460
+ }]
2461
+ }], propDecorators: { type: [{
2462
+ type: Input
2463
+ }], name: [{
2464
+ type: Input
2465
+ }], id: [{
2466
+ type: Input
2467
+ }], debounce: [{
2468
+ type: Input
2469
+ }], disabled: [{
2470
+ type: Input
2471
+ }], autoCapitalize: [{
2472
+ type: Input
2473
+ }], placeholder: [{
2474
+ type: Input
2475
+ }], leadingIcon: [{
2476
+ type: Input
2477
+ }], trailingIcon: [{
2478
+ type: Input
2479
+ }], variant: [{
2480
+ type: Input
2481
+ }], focused: [{
2482
+ type: Input
2483
+ }], readonly: [{
2484
+ type: Input
2485
+ }], error: [{
2486
+ type: Input
2487
+ }], width: [{
2488
+ type: Input
2489
+ }], prefix: [{
2490
+ type: Input
2491
+ }], suffix: [{
2492
+ type: Input
2493
+ }], testId: [{
2494
+ type: Input
2495
+ }], ariaLabel: [{
2496
+ type: Input
2497
+ }], maxLength: [{
2498
+ type: Input
2499
+ }], value: [{
2500
+ type: Input
2501
+ }], min: [{
2502
+ type: Input
2503
+ }], max: [{
2504
+ type: Input
2505
+ }], step: [{
2506
+ type: Input
2507
+ }], ariaLabelledBy: [{
2508
+ type: Input
2509
+ }], mt: [{
2510
+ type: Input
2511
+ }], mr: [{
2512
+ type: Input
2513
+ }], mb: [{
2514
+ type: Input
2515
+ }], ml: [{
2516
+ type: Input
2517
+ }], onTrailingIconClick: [{
2518
+ type: Output
2519
+ }], onFocus: [{
2520
+ type: Output
2521
+ }], onBlur: [{
2522
+ type: Output
2523
+ }], onKeyPress: [{
2524
+ type: Output
2525
+ }], onChange: [{
2526
+ type: Output
2527
+ }] } });
2528
+
2529
+ class GoabMicrositeHeader {
2530
+ constructor() {
2531
+ this.onFeedbackClick = new EventEmitter();
2532
+ }
2533
+ getVersionAsString() {
2534
+ return typeof this.version === "string" ? this.version : "";
2535
+ }
2536
+ getVersionAsTemplate() {
2537
+ if (!this.version)
2538
+ return null;
2539
+ return this.version instanceof TemplateRef ? this.version : null;
2540
+ }
2541
+ _onFeedbackClick() {
2542
+ this.onFeedbackClick.emit();
2543
+ }
2544
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabMicrositeHeader, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2545
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", 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: `
2546
+ <goa-microsite-header
2547
+ [attr.type]="type"
2548
+ [attr.version]="getVersionAsString()"
2549
+ [attr.feedbackurl]="feedbackUrl"
2550
+ [attr.maxcontentwidth]="maxContentWidth"
2551
+ [attr.feedbackurltarget]="feedbackUrlTarget"
2552
+ [attr.headerurltarget]="headerUrlTarget"
2553
+ [attr.testid]="testId"
2554
+ [attr.hasfeedbackhandler]="!!onFeedbackClick"
2555
+ (_feedbackClick)="_onFeedbackClick()"
2556
+ >
2557
+ <div slot="version">
2558
+ <ng-container [ngTemplateOutlet]="getVersionAsTemplate()"></ng-container>
2559
+ </div>
2560
+ </goa-microsite-header>
2561
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
2562
+ }
2563
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabMicrositeHeader, decorators: [{
2564
+ type: Component,
2565
+ args: [{
2566
+ standalone: true,
2567
+ selector: "goab-microsite-header",
2568
+ template: `
2569
+ <goa-microsite-header
2570
+ [attr.type]="type"
2571
+ [attr.version]="getVersionAsString()"
2572
+ [attr.feedbackurl]="feedbackUrl"
2573
+ [attr.maxcontentwidth]="maxContentWidth"
2574
+ [attr.feedbackurltarget]="feedbackUrlTarget"
2575
+ [attr.headerurltarget]="headerUrlTarget"
2576
+ [attr.testid]="testId"
2577
+ [attr.hasfeedbackhandler]="!!onFeedbackClick"
2578
+ (_feedbackClick)="_onFeedbackClick()"
2579
+ >
2580
+ <div slot="version">
2581
+ <ng-container [ngTemplateOutlet]="getVersionAsTemplate()"></ng-container>
2582
+ </div>
2583
+ </goa-microsite-header>
2584
+ `,
2585
+ imports: [NgTemplateOutlet],
2586
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
2587
+ }]
2588
+ }], propDecorators: { type: [{
2589
+ type: Input,
2590
+ args: [{ required: true }]
2591
+ }], version: [{
2592
+ type: Input
2593
+ }], feedbackUrl: [{
2594
+ type: Input
2595
+ }], testId: [{
2596
+ type: Input
2597
+ }], maxContentWidth: [{
2598
+ type: Input
2599
+ }], feedbackUrlTarget: [{
2600
+ type: Input
2601
+ }], headerUrlTarget: [{
2602
+ type: Input
2603
+ }], onFeedbackClick: [{
2604
+ type: Output
2605
+ }] } });
2606
+
2607
+ class GoabModal {
2608
+ constructor() {
2609
+ this.closable = false;
2610
+ this.onClose = new EventEmitter();
2611
+ }
2612
+ getHeadingAsString() {
2613
+ return this.heading instanceof TemplateRef ? "" : this.heading;
2614
+ }
2615
+ getHeadingAsTemplate() {
2616
+ if (!this.heading)
2617
+ return null;
2618
+ return this.heading instanceof TemplateRef ? this.heading : null;
2619
+ }
2620
+ _onClose() {
2621
+ this.onClose.emit();
2622
+ }
2623
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabModal, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2624
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabModal, isStandalone: true, selector: "goab-modal", inputs: { calloutVariant: "calloutVariant", open: "open", maxWidth: "maxWidth", closable: "closable", transition: "transition", testId: "testId", role: "role", heading: "heading", actions: "actions" }, outputs: { onClose: "onClose" }, ngImport: i0, template: `
2625
+ <goa-modal
2626
+ [attr.calloutvariant]="calloutVariant"
2627
+ [attr.open]="open"
2628
+ [attr.maxwidth]="maxWidth"
2629
+ [attr.testid]="testId"
2630
+ [attr.role]="role"
2631
+ [attr.closable]="closable"
2632
+ [attr.transition]="transition"
2633
+ [attr.heading]="getHeadingAsString()"
2634
+ (_close)="_onClose()"
2635
+ >
2636
+ <ng-content></ng-content>
2637
+ <div slot="heading">
2638
+ <ng-container [ngTemplateOutlet]="getHeadingAsTemplate()"></ng-container>
2639
+ </div>
2640
+ <div slot="actions">
2641
+ <ng-container [ngTemplateOutlet]="actions"></ng-container>
2642
+ </div>
2643
+ </goa-modal>
2644
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
2645
+ }
2646
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabModal, decorators: [{
2647
+ type: Component,
2648
+ args: [{
2649
+ standalone: true,
2650
+ selector: "goab-modal",
2651
+ imports: [NgTemplateOutlet],
2652
+ template: `
2653
+ <goa-modal
2654
+ [attr.calloutvariant]="calloutVariant"
2655
+ [attr.open]="open"
2656
+ [attr.maxwidth]="maxWidth"
2657
+ [attr.testid]="testId"
2658
+ [attr.role]="role"
2659
+ [attr.closable]="closable"
2660
+ [attr.transition]="transition"
2661
+ [attr.heading]="getHeadingAsString()"
2662
+ (_close)="_onClose()"
2663
+ >
2664
+ <ng-content></ng-content>
2665
+ <div slot="heading">
2666
+ <ng-container [ngTemplateOutlet]="getHeadingAsTemplate()"></ng-container>
2667
+ </div>
2668
+ <div slot="actions">
2669
+ <ng-container [ngTemplateOutlet]="actions"></ng-container>
2670
+ </div>
2671
+ </goa-modal>
2672
+ `,
2673
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2674
+ }]
2675
+ }], propDecorators: { calloutVariant: [{
2676
+ type: Input
2677
+ }], open: [{
2678
+ type: Input
2679
+ }], maxWidth: [{
2680
+ type: Input
2681
+ }], closable: [{
2682
+ type: Input
2683
+ }], transition: [{
2684
+ type: Input
2685
+ }], testId: [{
2686
+ type: Input
2687
+ }], role: [{
2688
+ type: Input
2689
+ }], heading: [{
2690
+ type: Input
2691
+ }], actions: [{
2692
+ type: Input
2693
+ }], onClose: [{
2694
+ type: Output
2695
+ }] } });
2696
+
2697
+ class GoabNotificationBanner {
2698
+ constructor() {
2699
+ this.type = "information";
2700
+ this.onDismiss = new EventEmitter();
2701
+ }
2702
+ _onDismiss() {
2703
+ this.onDismiss.emit();
2704
+ }
2705
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabNotificationBanner, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2706
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabNotificationBanner, isStandalone: true, selector: "goab-notification", inputs: { type: "type", ariaLive: "ariaLive", maxContentWidth: "maxContentWidth", testId: "testId" }, outputs: { onDismiss: "onDismiss" }, ngImport: i0, template: `
2707
+ <goa-notification
2708
+ [attr.type]="type"
2709
+ [attr.arialive]="ariaLive"
2710
+ [attr.maxcontentwidth]="maxContentWidth"
2711
+ [attr.testid]="testId"
2712
+ (_dismiss)="_onDismiss()"
2713
+ >
2714
+ <ng-content />
2715
+ </goa-notification>
2716
+ `, isInline: true }); }
2717
+ }
2718
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabNotificationBanner, decorators: [{
2719
+ type: Component,
2720
+ args: [{
2721
+ standalone: true,
2722
+ selector: "goab-notification",
2723
+ template: `
2724
+ <goa-notification
2725
+ [attr.type]="type"
2726
+ [attr.arialive]="ariaLive"
2727
+ [attr.maxcontentwidth]="maxContentWidth"
2728
+ [attr.testid]="testId"
2729
+ (_dismiss)="_onDismiss()"
2730
+ >
2731
+ <ng-content />
2732
+ </goa-notification>
2733
+ `,
2734
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2735
+ }]
2736
+ }], propDecorators: { type: [{
2737
+ type: Input
2738
+ }], ariaLive: [{
2739
+ type: Input
2740
+ }], maxContentWidth: [{
2741
+ type: Input
2742
+ }], testId: [{
2743
+ type: Input
2744
+ }], onDismiss: [{
2745
+ type: Output
2746
+ }] } });
2747
+
2748
+ class GoabPages {
2749
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPages, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2750
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPages, isStandalone: true, selector: "goab-pages", inputs: { current: "current", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
2751
+ <goa-pages
2752
+ [attr.current]="current"
2753
+ [attr.mt]="mt"
2754
+ [attr.mb]="mb"
2755
+ [attr.ml]="ml"
2756
+ [attr.mr]="mr"
2757
+ >
2758
+ <ng-content />
2759
+ </goa-pages>
2760
+ `, isInline: true }); }
2761
+ }
2762
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPages, decorators: [{
2763
+ type: Component,
2764
+ args: [{
2765
+ standalone: true,
2766
+ selector: "goab-pages",
2767
+ template: `
2768
+ <goa-pages
2769
+ [attr.current]="current"
2770
+ [attr.mt]="mt"
2771
+ [attr.mb]="mb"
2772
+ [attr.ml]="ml"
2773
+ [attr.mr]="mr"
2774
+ >
2775
+ <ng-content />
2776
+ </goa-pages>
2777
+ `,
2778
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2779
+ }]
2780
+ }], propDecorators: { current: [{
2781
+ type: Input
2782
+ }], mt: [{
2783
+ type: Input
2784
+ }], mb: [{
2785
+ type: Input
2786
+ }], ml: [{
2787
+ type: Input
2788
+ }], mr: [{
2789
+ type: Input
2790
+ }] } });
2791
+
2792
+ class GoabPagination {
2793
+ constructor() {
2794
+ this.perPageCount = 10;
2795
+ this.variant = "all";
2796
+ this.onChange = new EventEmitter();
2797
+ }
2798
+ _onChange(e) {
2799
+ const detail = e.detail;
2800
+ this.onChange.emit(detail);
2801
+ }
2802
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPagination, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2803
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPagination, isStandalone: true, selector: "goab-pagination", inputs: { itemCount: "itemCount", pageNumber: "pageNumber", perPageCount: "perPageCount", variant: "variant", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onChange: "onChange" }, ngImport: i0, template: `
2804
+ <goa-pagination
2805
+ [attr.itemcount]="itemCount"
2806
+ [attr.perpagecount]="perPageCount"
2807
+ [attr.pagenumber]="pageNumber"w
2808
+ [attr.variant]="variant"
2809
+ [attr.testid]="testId"
2810
+ [attr.mt]="mt"
2811
+ [attr.mb]="mb"
2812
+ [attr.ml]="ml"
2813
+ [attr.mr]="mr"
2814
+ (_change)="_onChange($event)"
2815
+ >
2816
+ </goa-pagination>
2817
+ `, isInline: true }); }
2818
+ }
2819
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPagination, decorators: [{
2820
+ type: Component,
2821
+ args: [{
2822
+ standalone: true,
2823
+ selector: "goab-pagination",
2824
+ template: `
2825
+ <goa-pagination
2826
+ [attr.itemcount]="itemCount"
2827
+ [attr.perpagecount]="perPageCount"
2828
+ [attr.pagenumber]="pageNumber"w
2829
+ [attr.variant]="variant"
2830
+ [attr.testid]="testId"
2831
+ [attr.mt]="mt"
2832
+ [attr.mb]="mb"
2833
+ [attr.ml]="ml"
2834
+ [attr.mr]="mr"
2835
+ (_change)="_onChange($event)"
2836
+ >
2837
+ </goa-pagination>
2838
+ `,
2839
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2840
+ }]
2841
+ }], propDecorators: { itemCount: [{
2842
+ type: Input,
2843
+ args: [{ required: true }]
2844
+ }], pageNumber: [{
2845
+ type: Input,
2846
+ args: [{ required: true }]
2847
+ }], perPageCount: [{
2848
+ type: Input
2849
+ }], variant: [{
2850
+ type: Input
2851
+ }], testId: [{
2852
+ type: Input
2853
+ }], mt: [{
2854
+ type: Input
2855
+ }], mb: [{
2856
+ type: Input
2857
+ }], ml: [{
2858
+ type: Input
2859
+ }], mr: [{
2860
+ type: Input
2861
+ }], onChange: [{
2862
+ type: Output
2863
+ }] } });
2864
+
2865
+ class GoabPopover {
2866
+ constructor() {
2867
+ this.maxWidth = "320px";
2868
+ this.padded = true;
2869
+ }
2870
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPopover, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2871
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPopover, isStandalone: true, selector: "goab-popover", inputs: { maxWidth: "maxWidth", minWidth: "minWidth", padded: "padded", position: "position", relative: "relative", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr", target: "target" }, ngImport: i0, template: `
2872
+ <goa-popover
2873
+ [attr.maxwidth]="maxWidth"
2874
+ [attr.minwidth]="minWidth"
2875
+ [attr.padded]="padded"
2876
+ [attr.position]="position"
2877
+ [attr.relative]="relative"
2878
+ [attr.testid]="testId"
2879
+ [attr.mt]="mt"
2880
+ [attr.mb]="mb"
2881
+ [attr.ml]="ml"
2882
+ [attr.mr]="mr"
2883
+ >
2884
+ <ng-content></ng-content>
2885
+ <div slot="target">
2886
+ <ng-container [ngTemplateOutlet]="target"></ng-container>
2887
+ </div>
2888
+ </goa-popover>
2889
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
2890
+ }
2891
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPopover, decorators: [{
2892
+ type: Component,
2893
+ args: [{
2894
+ standalone: true,
2895
+ selector: "goab-popover",
2896
+ imports: [NgTemplateOutlet],
2897
+ template: `
2898
+ <goa-popover
2899
+ [attr.maxwidth]="maxWidth"
2900
+ [attr.minwidth]="minWidth"
2901
+ [attr.padded]="padded"
2902
+ [attr.position]="position"
2903
+ [attr.relative]="relative"
2904
+ [attr.testid]="testId"
2905
+ [attr.mt]="mt"
2906
+ [attr.mb]="mb"
2907
+ [attr.ml]="ml"
2908
+ [attr.mr]="mr"
2909
+ >
2910
+ <ng-content></ng-content>
2911
+ <div slot="target">
2912
+ <ng-container [ngTemplateOutlet]="target"></ng-container>
2913
+ </div>
2914
+ </goa-popover>
2915
+ `,
2916
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2917
+ }]
2918
+ }], propDecorators: { maxWidth: [{
2919
+ type: Input
2920
+ }], minWidth: [{
2921
+ type: Input
2922
+ }], padded: [{
2923
+ type: Input
2924
+ }], position: [{
2925
+ type: Input
2926
+ }], relative: [{
2927
+ type: Input
2928
+ }], testId: [{
2929
+ type: Input
2930
+ }], mt: [{
2931
+ type: Input
2932
+ }], mb: [{
2933
+ type: Input
2934
+ }], ml: [{
2935
+ type: Input
2936
+ }], mr: [{
2937
+ type: Input
2938
+ }], target: [{
2939
+ type: Input,
2940
+ args: [{ required: true }]
2941
+ }] } });
2942
+
2943
+ class GoabRadioGroup {
2944
+ constructor() {
2945
+ this.onChange = new EventEmitter();
2946
+ this.touched = false;
2947
+ }
2948
+ _onChange(e) {
2949
+ const detail = e.detail;
2950
+ this.markAsTouched();
2951
+ this.onChange.emit(detail);
2952
+ this.fcChange?.(detail.value);
2953
+ }
2954
+ markAsTouched() {
2955
+ if (!this.touched) {
2956
+ this.fcTouched?.();
2957
+ this.touched = true;
2958
+ }
2959
+ }
2960
+ writeValue(value) {
2961
+ this.value = value;
2962
+ }
2963
+ registerOnChange(fn) {
2964
+ this.fcChange = fn;
2965
+ }
2966
+ registerOnTouched(fn) {
2967
+ this.fcTouched = fn;
2968
+ }
2969
+ setDisabledState(isDisabled) {
2970
+ this.disabled = isDisabled;
2971
+ }
2972
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabRadioGroup, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2973
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabRadioGroup, isStandalone: true, selector: "goab-radio-group", inputs: { name: "name", value: "value", disabled: "disabled", orientation: "orientation", error: "error", ariaLabel: "ariaLabel", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onChange: "onChange" }, providers: [
2974
+ {
2975
+ provide: NG_VALUE_ACCESSOR,
2976
+ multi: true,
2977
+ useExisting: forwardRef(() => GoabRadioGroup),
2978
+ },
2979
+ ], ngImport: i0, template: `
2980
+ <goa-radio-group
2981
+ [attr.name]="name"
2982
+ [attr.value]="value"
2983
+ [disabled]="disabled"
2984
+ [attr.orientation]="orientation"
2985
+ [attr.error]="error"
2986
+ [attr.arialabel]="ariaLabel"
2987
+ [attr.testid]="testId"
2988
+ [attr.mt]="mt"
2989
+ [attr.mb]="mb"
2990
+ [attr.ml]="ml"
2991
+ [attr.mr]="mr"
2992
+ (_change)="_onChange($event)"
2993
+ >
2994
+ <ng-content />
2995
+ </goa-radio-group>
2996
+ `, isInline: true }); }
2997
+ }
2998
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabRadioGroup, decorators: [{
2999
+ type: Component,
3000
+ args: [{
3001
+ standalone: true,
3002
+ selector: "goab-radio-group",
3003
+ template: `
3004
+ <goa-radio-group
3005
+ [attr.name]="name"
3006
+ [attr.value]="value"
3007
+ [disabled]="disabled"
3008
+ [attr.orientation]="orientation"
3009
+ [attr.error]="error"
3010
+ [attr.arialabel]="ariaLabel"
3011
+ [attr.testid]="testId"
3012
+ [attr.mt]="mt"
3013
+ [attr.mb]="mb"
3014
+ [attr.ml]="ml"
3015
+ [attr.mr]="mr"
3016
+ (_change)="_onChange($event)"
3017
+ >
3018
+ <ng-content />
3019
+ </goa-radio-group>
3020
+ `,
3021
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
3022
+ providers: [
3023
+ {
3024
+ provide: NG_VALUE_ACCESSOR,
3025
+ multi: true,
3026
+ useExisting: forwardRef(() => GoabRadioGroup),
3027
+ },
3028
+ ],
3029
+ }]
3030
+ }], propDecorators: { name: [{
3031
+ type: Input
3032
+ }], value: [{
3033
+ type: Input
3034
+ }], disabled: [{
3035
+ type: Input
3036
+ }], orientation: [{
3037
+ type: Input
3038
+ }], error: [{
3039
+ type: Input
3040
+ }], ariaLabel: [{
3041
+ type: Input
3042
+ }], testId: [{
3043
+ type: Input
3044
+ }], mt: [{
3045
+ type: Input
3046
+ }], mb: [{
3047
+ type: Input
3048
+ }], ml: [{
3049
+ type: Input
3050
+ }], mr: [{
3051
+ type: Input
3052
+ }], onChange: [{
3053
+ type: Output
3054
+ }] } });
3055
+
3056
+ class GoabRadioItem {
3057
+ getDescriptionAsString() {
3058
+ return (!this.description || this.description instanceof TemplateRef) ? "" : this.description;
3059
+ }
3060
+ getDescriptionAsTemplate() {
3061
+ if (!this.description)
3062
+ return null;
3063
+ return this.description instanceof TemplateRef ? this.description : null;
3064
+ }
3065
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabRadioItem, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3066
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabRadioItem, isStandalone: true, selector: "goab-radio-item", inputs: { value: "value", label: "label", name: "name", description: "description", ariaLabel: "ariaLabel", disabled: "disabled", checked: "checked", error: "error", maxWidth: "maxWidth", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
3067
+ <goa-radio-item
3068
+ [attr.name]="name"
3069
+ [attr.value]="value"
3070
+ [attr.label]="label"
3071
+ [attr.description]="getDescriptionAsString()"
3072
+ [attr.arialabel]="ariaLabel"
3073
+ [disabled]="disabled"
3074
+ [attr.maxwidth]="maxWidth"
3075
+ [attr.checked]="checked"
3076
+ [attr.error]="error"
3077
+ [attr.mt]="mt"
3078
+ [attr.mb]="mb"
3079
+ [attr.ml]="ml"
3080
+ [attr.mr]="mr"
3081
+ >
3082
+ <ng-content />
3083
+ <div slot="description">
3084
+ <ng-container [ngTemplateOutlet]="getDescriptionAsTemplate()"></ng-container>
3085
+ </div>
3086
+ </goa-radio-item>
3087
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
3088
+ }
3089
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabRadioItem, decorators: [{
3090
+ type: Component,
3091
+ args: [{
3092
+ standalone: true,
3093
+ selector: "goab-radio-item",
3094
+ template: `
3095
+ <goa-radio-item
3096
+ [attr.name]="name"
3097
+ [attr.value]="value"
3098
+ [attr.label]="label"
3099
+ [attr.description]="getDescriptionAsString()"
3100
+ [attr.arialabel]="ariaLabel"
3101
+ [disabled]="disabled"
3102
+ [attr.maxwidth]="maxWidth"
3103
+ [attr.checked]="checked"
3104
+ [attr.error]="error"
3105
+ [attr.mt]="mt"
3106
+ [attr.mb]="mb"
3107
+ [attr.ml]="ml"
3108
+ [attr.mr]="mr"
3109
+ >
3110
+ <ng-content />
3111
+ <div slot="description">
3112
+ <ng-container [ngTemplateOutlet]="getDescriptionAsTemplate()"></ng-container>
3113
+ </div>
3114
+ </goa-radio-item>
3115
+ `,
3116
+ imports: [NgTemplateOutlet],
3117
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
3118
+ }]
3119
+ }], propDecorators: { value: [{
3120
+ type: Input
3121
+ }], label: [{
3122
+ type: Input
3123
+ }], name: [{
3124
+ type: Input
3125
+ }], description: [{
3126
+ type: Input
3127
+ }], ariaLabel: [{
3128
+ type: Input
3129
+ }], disabled: [{
3130
+ type: Input
3131
+ }], checked: [{
3132
+ type: Input
3133
+ }], error: [{
3134
+ type: Input
3135
+ }], maxWidth: [{
3136
+ type: Input
3137
+ }], mt: [{
3138
+ type: Input
3139
+ }], mb: [{
3140
+ type: Input
3141
+ }], ml: [{
3142
+ type: Input
3143
+ }], mr: [{
3144
+ type: Input
3145
+ }] } });
3146
+
3147
+ class GoabSideMenu {
3148
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabSideMenu, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3149
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabSideMenu, isStandalone: true, selector: "goab-side-menu", inputs: { testId: "testId" }, ngImport: i0, template: `
3150
+ <goa-side-menu [attr.testid]="testId">
3151
+ <ng-content />
3152
+ </goa-side-menu>
3153
+ `, isInline: true }); }
3154
+ }
3155
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabSideMenu, decorators: [{
3156
+ type: Component,
3157
+ args: [{
3158
+ standalone: true,
3159
+ selector: "goab-side-menu",
3160
+ template: `
3161
+ <goa-side-menu [attr.testid]="testId">
3162
+ <ng-content />
3163
+ </goa-side-menu>
3164
+ `,
3165
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
3166
+ }]
3167
+ }], propDecorators: { testId: [{
3168
+ type: Input
3169
+ }] } });
3170
+
3171
+ class GoabSideMenuGroup {
3172
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabSideMenuGroup, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3173
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabSideMenuGroup, isStandalone: true, selector: "goab-side-menu-group", inputs: { heading: "heading", testId: "testId", icon: "icon", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
3174
+ <goa-side-menu-group
3175
+ [attr.heading]="heading"
3176
+ [attr.testid]="testId"
3177
+ [attr.icon]="icon"
3178
+ [attr.mt]="mt"
3179
+ [attr.mb]="mb"
3180
+ [attr.ml]="ml"
3181
+ [attr.mr]="mr"
3182
+ >
3183
+ <ng-content />
3184
+ </goa-side-menu-group>
3185
+ `, isInline: true }); }
3186
+ }
3187
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabSideMenuGroup, decorators: [{
3188
+ type: Component,
3189
+ args: [{
3190
+ standalone: true,
3191
+ selector: "goab-side-menu-group",
3192
+ template: `
3193
+ <goa-side-menu-group
3194
+ [attr.heading]="heading"
3195
+ [attr.testid]="testId"
3196
+ [attr.icon]="icon"
3197
+ [attr.mt]="mt"
3198
+ [attr.mb]="mb"
3199
+ [attr.ml]="ml"
3200
+ [attr.mr]="mr"
3201
+ >
3202
+ <ng-content />
3203
+ </goa-side-menu-group>
3204
+ `,
3205
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
3206
+ }]
3207
+ }], propDecorators: { heading: [{
3208
+ type: Input,
3209
+ args: [{ required: true }]
3210
+ }], testId: [{
3211
+ type: Input
3212
+ }], icon: [{
3213
+ type: Input
3214
+ }], mt: [{
3215
+ type: Input
3216
+ }], mb: [{
3217
+ type: Input
3218
+ }], ml: [{
3219
+ type: Input
3220
+ }], mr: [{
3221
+ type: Input
3222
+ }] } });
3223
+
3224
+ class GoabSideMenuHeading {
3225
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabSideMenuHeading, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3226
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabSideMenuHeading, isStandalone: true, selector: "goab-side-menu-heading", inputs: { icon: "icon", testId: "testId", meta: "meta" }, ngImport: i0, template: `
3227
+ <goa-side-menu-heading [attr.testid]="testId" [attr.icon]="icon">
3228
+ <ng-content />
3229
+ <span slot="meta">
3230
+ <ng-container [ngTemplateOutlet]="meta"></ng-container>
3231
+ </span>
3232
+ </goa-side-menu-heading>
3233
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
3234
+ }
3235
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabSideMenuHeading, decorators: [{
3236
+ type: Component,
3237
+ args: [{
3238
+ standalone: true,
3239
+ selector: "goab-side-menu-heading",
3240
+ imports: [NgTemplateOutlet],
3241
+ template: `
3242
+ <goa-side-menu-heading [attr.testid]="testId" [attr.icon]="icon">
3243
+ <ng-content />
3244
+ <span slot="meta">
3245
+ <ng-container [ngTemplateOutlet]="meta"></ng-container>
3246
+ </span>
3247
+ </goa-side-menu-heading>
3248
+ `,
3249
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
3250
+ }]
3251
+ }], propDecorators: { icon: [{
3252
+ type: Input
3253
+ }], testId: [{
3254
+ type: Input
3255
+ }], meta: [{
3256
+ type: Input
3257
+ }] } });
3258
+
3259
+ class GoabSkeleton {
3260
+ constructor() {
3261
+ this.maxWidth = "300px";
3262
+ }
3263
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabSkeleton, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3264
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabSkeleton, isStandalone: true, selector: "goab-skeleton", inputs: { type: "type", maxWidth: "maxWidth", size: "size", lineCount: "lineCount", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
3265
+ <goa-skeleton
3266
+ [attr.maxwidth]="maxWidth"
3267
+ [attr.size]="size"
3268
+ [attr.linecount]="lineCount"
3269
+ [attr.type]="type"
3270
+ [attr.testid]="testId"
3271
+ [attr.mt]="mt"
3272
+ [attr.mb]="mb"
3273
+ [attr.ml]="ml"
3274
+ [attr.mr]="mr"
3275
+ >
3276
+ </goa-skeleton>
3277
+ `, isInline: true }); }
3278
+ }
3279
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabSkeleton, decorators: [{
3280
+ type: Component,
3281
+ args: [{
3282
+ standalone: true,
3283
+ selector: "goab-skeleton",
3284
+ template: `
3285
+ <goa-skeleton
3286
+ [attr.maxwidth]="maxWidth"
3287
+ [attr.size]="size"
3288
+ [attr.linecount]="lineCount"
3289
+ [attr.type]="type"
3290
+ [attr.testid]="testId"
3291
+ [attr.mt]="mt"
3292
+ [attr.mb]="mb"
3293
+ [attr.ml]="ml"
3294
+ [attr.mr]="mr"
3295
+ >
3296
+ </goa-skeleton>
3297
+ `,
3298
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
3299
+ }]
3300
+ }], propDecorators: { type: [{
3301
+ type: Input,
3302
+ args: [{ required: true }]
3303
+ }], maxWidth: [{
3304
+ type: Input
3305
+ }], size: [{
3306
+ type: Input
3307
+ }], lineCount: [{
3308
+ type: Input
3309
+ }], testId: [{
3310
+ type: Input
3311
+ }], mt: [{
3312
+ type: Input
3313
+ }], mb: [{
3314
+ type: Input
3315
+ }], ml: [{
3316
+ type: Input
3317
+ }], mr: [{
3318
+ type: Input
3319
+ }] } });
3320
+
3321
+ class GoabSpacer {
3322
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabSpacer, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3323
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabSpacer, isStandalone: true, selector: "goab-spacer", inputs: { hSpacing: "hSpacing", vSpacing: "vSpacing", testId: "testId" }, ngImport: i0, template: `
3324
+ <goa-spacer
3325
+ [attr.hspacing]="hSpacing"
3326
+ [attr.vspacing]="vSpacing"
3327
+ [attr.testid]="testId"
3328
+ >
3329
+ </goa-spacer>
3330
+ `, isInline: true }); }
3331
+ }
3332
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabSpacer, decorators: [{
3333
+ type: Component,
3334
+ args: [{
3335
+ standalone: true,
3336
+ selector: "goab-spacer",
3337
+ template: `
3338
+ <goa-spacer
3339
+ [attr.hspacing]="hSpacing"
3340
+ [attr.vspacing]="vSpacing"
3341
+ [attr.testid]="testId"
3342
+ >
3343
+ </goa-spacer>
3344
+ `,
3345
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
3346
+ }]
3347
+ }], propDecorators: { hSpacing: [{
3348
+ type: Input
3349
+ }], vSpacing: [{
3350
+ type: Input
3351
+ }], testId: [{
3352
+ type: Input
3353
+ }] } });
3354
+
3355
+ class GoabTab {
3356
+ getHeadingAsString() {
3357
+ return this.heading instanceof TemplateRef ? "" : this.heading;
3358
+ }
3359
+ getHeadingAsTemplate() {
3360
+ if (!this.heading)
3361
+ return null;
3362
+ return this.heading instanceof TemplateRef ? this.heading : null;
3363
+ }
3364
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTab, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3365
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabTab, isStandalone: true, selector: "goab-tab", inputs: { heading: "heading" }, ngImport: i0, template: `
3366
+ <goa-tab>
3367
+ <ng-content />
3368
+ <div slot="heading">
3369
+ <ng-container [ngTemplateOutlet]="getHeadingAsTemplate()"></ng-container>
3370
+ {{getHeadingAsString()}}
3371
+ </div>
3372
+ </goa-tab>
3373
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
3374
+ }
3375
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTab, decorators: [{
3376
+ type: Component,
3377
+ args: [{
3378
+ standalone: true,
3379
+ selector: "goab-tab",
3380
+ template: `
3381
+ <goa-tab>
3382
+ <ng-content />
3383
+ <div slot="heading">
3384
+ <ng-container [ngTemplateOutlet]="getHeadingAsTemplate()"></ng-container>
3385
+ {{getHeadingAsString()}}
3386
+ </div>
3387
+ </goa-tab>
3388
+ `,
3389
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
3390
+ imports: [NgTemplateOutlet]
3391
+ }]
3392
+ }], propDecorators: { heading: [{
3393
+ type: Input
3394
+ }] } });
3395
+
3396
+ class GoabTable {
3397
+ constructor() {
3398
+ this.onSort = new EventEmitter();
3399
+ }
3400
+ _onSort(e) {
3401
+ const detail = e.detail;
3402
+ this.onSort.emit(detail);
3403
+ }
3404
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTable, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3405
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabTable, isStandalone: true, selector: "goab-table", inputs: { width: "width", variant: "variant", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onSort: "onSort" }, ngImport: i0, template: `
3406
+ <goa-table
3407
+ [attr.width]="width"
3408
+ [attr.variant]="variant"
3409
+ [attr.testid]="testId"
3410
+ [attr.mt]="mt"
3411
+ [attr.mb]="mb"
3412
+ [attr.ml]="ml"
3413
+ [attr.mr]="mr"
3414
+ (_sort)="_onSort($event)"
3415
+ >
3416
+ <table style="width: 100%;">
3417
+ <ng-content />
3418
+ </table>
3419
+ </goa-table>
3420
+ `, isInline: true }); }
3421
+ }
3422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTable, decorators: [{
3423
+ type: Component,
3424
+ args: [{
3425
+ standalone: true,
3426
+ selector: "goab-table",
3427
+ template: `
3428
+ <goa-table
3429
+ [attr.width]="width"
3430
+ [attr.variant]="variant"
3431
+ [attr.testid]="testId"
3432
+ [attr.mt]="mt"
3433
+ [attr.mb]="mb"
3434
+ [attr.ml]="ml"
3435
+ [attr.mr]="mr"
3436
+ (_sort)="_onSort($event)"
3437
+ >
3438
+ <table style="width: 100%;">
3439
+ <ng-content />
3440
+ </table>
3441
+ </goa-table>
3442
+ `,
3443
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
3444
+ }]
3445
+ }], propDecorators: { width: [{
3446
+ type: Input
3447
+ }], variant: [{
3448
+ type: Input
3449
+ }], testId: [{
3450
+ type: Input
3451
+ }], mt: [{
3452
+ type: Input
3453
+ }], mb: [{
3454
+ type: Input
3455
+ }], ml: [{
3456
+ type: Input
3457
+ }], mr: [{
3458
+ type: Input
3459
+ }], onSort: [{
3460
+ type: Output
3461
+ }] } });
3462
+
3463
+ class GoabTableSortHeader {
3464
+ constructor() {
3465
+ this.direction = "none";
3466
+ }
3467
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTableSortHeader, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3468
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabTableSortHeader, isStandalone: true, selector: "goab-table-sort-header", inputs: { name: "name", direction: "direction" }, ngImport: i0, template: `
3469
+ <goa-table-sort-header
3470
+ [attr.name]="name"
3471
+ [attr.direction]="direction"
3472
+ >
3473
+ <ng-content />
3474
+ </goa-table-sort-header>
3475
+ `, isInline: true }); }
3476
+ }
3477
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTableSortHeader, decorators: [{
3478
+ type: Component,
3479
+ args: [{
3480
+ standalone: true,
3481
+ selector: "goab-table-sort-header",
3482
+ template: `
3483
+ <goa-table-sort-header
3484
+ [attr.name]="name"
3485
+ [attr.direction]="direction"
3486
+ >
3487
+ <ng-content />
3488
+ </goa-table-sort-header>
3489
+ `,
3490
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
3491
+ }]
3492
+ }], propDecorators: { name: [{
3493
+ type: Input
3494
+ }], direction: [{
3495
+ type: Input
3496
+ }] } });
3497
+
3498
+ class GoabTabs {
3499
+ constructor() {
3500
+ this.onChange = new EventEmitter();
3501
+ }
3502
+ _onChange(e) {
3503
+ const detail = e.detail;
3504
+ this.onChange.emit(detail);
3505
+ }
3506
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTabs, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3507
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabTabs, isStandalone: true, selector: "goab-tabs", inputs: { initialTab: "initialTab", testId: "testId" }, outputs: { onChange: "onChange" }, ngImport: i0, template: `
3508
+ <goa-tabs
3509
+ [attr.initialtab]="initialTab"
3510
+ [attr.testid]="testId"
3511
+ (_change)="_onChange($event)"
3512
+
3513
+ >
3514
+ <ng-content />
3515
+ </goa-tabs>
3516
+ `, isInline: true }); }
3517
+ }
3518
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTabs, decorators: [{
3519
+ type: Component,
3520
+ args: [{
3521
+ standalone: true,
3522
+ selector: "goab-tabs",
3523
+ template: `
3524
+ <goa-tabs
3525
+ [attr.initialtab]="initialTab"
3526
+ [attr.testid]="testId"
3527
+ (_change)="_onChange($event)"
3528
+
3529
+ >
3530
+ <ng-content />
3531
+ </goa-tabs>
3532
+ `,
3533
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
3534
+ }]
3535
+ }], propDecorators: { initialTab: [{
3536
+ type: Input
3537
+ }], testId: [{
3538
+ type: Input
3539
+ }], onChange: [{
3540
+ type: Output
3541
+ }] } });
3542
+
3543
+ class GoabTextArea {
3544
+ constructor() {
3545
+ this.value = "";
3546
+ this.countBy = "";
3547
+ this.maxCount = -1;
3548
+ this.onChange = new EventEmitter();
3549
+ this.onKeyPress = new EventEmitter();
3550
+ this.touched = false;
3551
+ }
3552
+ _onChange(e) {
3553
+ const detail = e.detail;
3554
+ this.onChange.emit(detail);
3555
+ this.markAsTouched();
3556
+ this.fcChange?.(detail.value);
3557
+ }
3558
+ _onKeyPress(e) {
3559
+ const detail = e.detail;
3560
+ this.markAsTouched();
3561
+ this.onKeyPress.emit(detail);
3562
+ }
3563
+ markAsTouched() {
3564
+ if (!this.touched) {
3565
+ this.fcTouched?.();
3566
+ this.touched = true;
3567
+ }
3568
+ }
3569
+ writeValue(value) {
3570
+ this.value = value;
3571
+ }
3572
+ registerOnChange(fn) {
3573
+ this.fcChange = fn;
3574
+ }
3575
+ registerOnTouched(fn) {
3576
+ this.fcTouched = fn;
3577
+ }
3578
+ setDisabledState(isDisabled) {
3579
+ this.disabled = isDisabled;
3580
+ }
3581
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTextArea, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3582
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabTextArea, isStandalone: true, selector: "goab-textarea", inputs: { name: "name", value: "value", id: "id", placeholder: "placeholder", rows: "rows", error: "error", disabled: "disabled", readOnly: "readOnly", width: "width", ariaLabel: "ariaLabel", countBy: "countBy", maxCount: "maxCount", maxWidth: "maxWidth", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, outputs: { onChange: "onChange", onKeyPress: "onKeyPress" }, providers: [
3583
+ {
3584
+ provide: NG_VALUE_ACCESSOR,
3585
+ multi: true,
3586
+ useExisting: forwardRef(() => GoabTextArea),
3587
+ }
3588
+ ], ngImport: i0, template: `
3589
+ <goa-textarea
3590
+ [attr.name]="name"
3591
+ [attr.value]="value"
3592
+ [attr.placeholder]="placeholder"
3593
+ [attr.rows]="rows"
3594
+ [attr.error]="error"
3595
+ [disabled]="disabled"
3596
+ [attr.readonly]="readOnly"
3597
+ [attr.width]="width"
3598
+ [attr.maxwidth]="maxWidth"
3599
+ [attr.arialabel]="ariaLabel"
3600
+ [attr.countby]="countBy"
3601
+ [attr.maxcount]="maxCount"
3602
+ [attr.testid]="testId"
3603
+ [attr.mt]="mt"
3604
+ [attr.mb]="mb"
3605
+ [attr.ml]="ml"
3606
+ [attr.mr]="mr"
3607
+ (_change)="_onChange($event)"
3608
+ (_keyPress)="_onKeyPress($event)"
3609
+ >
3610
+ </goa-textarea>
3611
+ `, isInline: true }); }
3612
+ }
3613
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTextArea, decorators: [{
3614
+ type: Component,
3615
+ args: [{
3616
+ standalone: true,
3617
+ selector: "goab-textarea",
3618
+ template: `
3619
+ <goa-textarea
3620
+ [attr.name]="name"
3621
+ [attr.value]="value"
3622
+ [attr.placeholder]="placeholder"
3623
+ [attr.rows]="rows"
3624
+ [attr.error]="error"
3625
+ [disabled]="disabled"
3626
+ [attr.readonly]="readOnly"
3627
+ [attr.width]="width"
3628
+ [attr.maxwidth]="maxWidth"
3629
+ [attr.arialabel]="ariaLabel"
3630
+ [attr.countby]="countBy"
3631
+ [attr.maxcount]="maxCount"
3632
+ [attr.testid]="testId"
3633
+ [attr.mt]="mt"
3634
+ [attr.mb]="mb"
3635
+ [attr.ml]="ml"
3636
+ [attr.mr]="mr"
3637
+ (_change)="_onChange($event)"
3638
+ (_keyPress)="_onKeyPress($event)"
3639
+ >
3640
+ </goa-textarea>
3641
+ `,
3642
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
3643
+ providers: [
3644
+ {
3645
+ provide: NG_VALUE_ACCESSOR,
3646
+ multi: true,
3647
+ useExisting: forwardRef(() => GoabTextArea),
3648
+ }
3649
+ ]
3650
+ }]
3651
+ }], propDecorators: { name: [{
3652
+ type: Input
3653
+ }], value: [{
3654
+ type: Input
3655
+ }], id: [{
3656
+ type: Input
3657
+ }], placeholder: [{
3658
+ type: Input
3659
+ }], rows: [{
3660
+ type: Input
3661
+ }], error: [{
3662
+ type: Input
3663
+ }], disabled: [{
3664
+ type: Input
3665
+ }], readOnly: [{
3666
+ type: Input
3667
+ }], width: [{
3668
+ type: Input
3669
+ }], ariaLabel: [{
3670
+ type: Input
3671
+ }], countBy: [{
3672
+ type: Input
3673
+ }], maxCount: [{
3674
+ type: Input
3675
+ }], maxWidth: [{
3676
+ type: Input
3677
+ }], testId: [{
3678
+ type: Input
3679
+ }], mt: [{
3680
+ type: Input
3681
+ }], mb: [{
3682
+ type: Input
3683
+ }], ml: [{
3684
+ type: Input
3685
+ }], mr: [{
3686
+ type: Input
3687
+ }], onChange: [{
3688
+ type: Output
3689
+ }], onKeyPress: [{
3690
+ type: Output
3691
+ }] } });
3692
+
3693
+ class GoabTooltip {
3694
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTooltip, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3695
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabTooltip, isStandalone: true, selector: "goab-tooltip", inputs: { position: "position", content: "content", hAlign: "hAlign", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
3696
+ <goa-tooltip
3697
+ [attr.position]="position"
3698
+ [attr.content]="content"
3699
+ [attr.halign]="hAlign"
3700
+ [attr.testid]="testId"
3701
+ [attr.mt]="mt"
3702
+ [attr.mb]="mb"
3703
+ [attr.ml]="ml"
3704
+ [attr.mr]="mr"
3705
+ >
3706
+ <ng-content />
3707
+ </goa-tooltip>
3708
+ `, isInline: true }); }
3709
+ }
3710
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTooltip, decorators: [{
3711
+ type: Component,
3712
+ args: [{
3713
+ standalone: true,
3714
+ selector: "goab-tooltip",
3715
+ template: `
3716
+ <goa-tooltip
3717
+ [attr.position]="position"
3718
+ [attr.content]="content"
3719
+ [attr.halign]="hAlign"
3720
+ [attr.testid]="testId"
3721
+ [attr.mt]="mt"
3722
+ [attr.mb]="mb"
3723
+ [attr.ml]="ml"
3724
+ [attr.mr]="mr"
3725
+ >
3726
+ <ng-content />
3727
+ </goa-tooltip>
3728
+ `,
3729
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
3730
+ }]
3731
+ }], propDecorators: { position: [{
3732
+ type: Input
3733
+ }], content: [{
3734
+ type: Input
3735
+ }], hAlign: [{
3736
+ type: Input
3737
+ }], testId: [{
3738
+ type: Input
3739
+ }], mt: [{
3740
+ type: Input
3741
+ }], mb: [{
3742
+ type: Input
3743
+ }], ml: [{
3744
+ type: Input
3745
+ }], mr: [{
3746
+ type: Input
3747
+ }] } });
3748
+
204
3749
  // TODO: move this into the form-utils file, since it is specific to the public form component
205
3750
  function validate(field, fieldsetEl, fieldsetState, validators) {
206
3751
  const value = fieldsetState?.[field]?.value;
@@ -444,5 +3989,5 @@ function continueTo(el, name) {
444
3989
  * Generated bundle index. Do not edit.
445
3990
  */
446
3991
 
447
- export { AngularComponentsModule, CheckedDirective, FormValidator, SINValidator, ValueDirective, ValueListDirective, birthDayValidator, birthMonthValidator, birthYearValidator, continueTo, dateValidator, dispatch, emailValidator, lengthValidator, numericValidator, phoneNumberValidator, postalCodeValidator, regexValidator, relay, requiredValidator, validate };
3992
+ export { AngularComponentsModule, CheckedDirective, FormValidator, GoabAccordion, GoabAppFooter, GoabAppFooterMetaSection, GoabAppFooterNavSection, GoabAppHeader, GoabAppHeaderMenu, GoabBadge, GoabBlock, GoabButton, GoabButtonGroup, GoabCallout, GoabCard, GoabCardActions, GoabCardContent, GoabCardImage, GoabCheckbox, GoabChip, GoabCircularProgress, GoabColumnLayout, GoabContainer, GoabDatePicker, GoabDetails, GoabDivider, GoabDropdown, GoabDropdownItem, GoabFileUploadCard, GoabFileUploadInput, GoabFormItem, GoabFormItemSlot, GoabFormStep, GoabFormStepper, GoabGrid, GoabHeroBanner, GoabIcon, GoabIconButton, GoabInput, GoabMicrositeHeader, GoabModal, GoabNotificationBanner, GoabPages, GoabPagination, GoabPopover, GoabRadioGroup, GoabRadioItem, GoabSideMenu, GoabSideMenuGroup, GoabSideMenuHeading, GoabSkeleton, GoabSpacer, GoabTab, GoabTable, GoabTableSortHeader, GoabTabs, GoabTextArea, GoabTooltip, SINValidator, ValueDirective, ValueListDirective, birthDayValidator, birthMonthValidator, birthYearValidator, continueTo, dateValidator, dispatch, emailValidator, lengthValidator, numericValidator, phoneNumberValidator, postalCodeValidator, regexValidator, relay, requiredValidator, validate };
448
3993
  //# sourceMappingURL=abgov-angular-components.mjs.map