@abgov/angular-components 4.6.0-alpha.3 → 4.6.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/form/fieldset.mjs +2 -11
- package/esm2022/lib/components/form/public-form-page.mjs +2 -47
- package/esm2022/lib/components/form/task-list.mjs +13 -4
- package/esm2022/lib/components/index.mjs +4 -1
- package/esm2022/lib/components/page-block/page-block.mjs +34 -0
- package/esm2022/lib/components/temporary-notification/temporary-notification.mjs +62 -0
- package/esm2022/lib/components/temporary-notification-ctrl/temporary-notification-ctrl.mjs +40 -0
- package/fesm2022/abgov-angular-components.mjs +144 -60
- package/fesm2022/abgov-angular-components.mjs.map +1 -1
- package/lib/components/form/fieldset.d.ts +2 -4
- package/lib/components/form/public-form-page.d.ts +2 -19
- package/lib/components/form/task-list.d.ts +2 -1
- package/lib/components/index.d.ts +3 -0
- package/lib/components/page-block/page-block.d.ts +8 -0
- package/lib/components/temporary-notification/temporary-notification.d.ts +16 -0
- package/lib/components/temporary-notification-ctrl/temporary-notification-ctrl.d.ts +11 -0
- package/package.json +1 -1
|
@@ -1928,41 +1928,16 @@ class GoabPublicFormPage extends GoabBaseComponent {
|
|
|
1928
1928
|
this.type = "step";
|
|
1929
1929
|
this.buttonText = "";
|
|
1930
1930
|
this.buttonVisibility = "visible";
|
|
1931
|
-
this.first = false;
|
|
1932
|
-
this.last = false;
|
|
1933
1931
|
/**
|
|
1934
1932
|
* triggers when the form page continues to the next step
|
|
1935
1933
|
*/
|
|
1936
1934
|
this.onContinue = new EventEmitter();
|
|
1937
|
-
/**
|
|
1938
|
-
* triggers when the user clicks the back link
|
|
1939
|
-
*/
|
|
1940
|
-
this.onBack = new EventEmitter();
|
|
1941
|
-
/**
|
|
1942
|
-
* triggers when the form fieldset content changes
|
|
1943
|
-
*/
|
|
1944
|
-
this.onFieldsetChange = new EventEmitter();
|
|
1945
|
-
/**
|
|
1946
|
-
* triggers when the form is completed
|
|
1947
|
-
*/
|
|
1948
|
-
this.onComplete = new EventEmitter();
|
|
1949
1935
|
}
|
|
1950
1936
|
_onContinue(event) {
|
|
1951
1937
|
this.onContinue.emit(event);
|
|
1952
1938
|
}
|
|
1953
|
-
_onBack(event) {
|
|
1954
|
-
this.onBack.emit(event);
|
|
1955
|
-
}
|
|
1956
|
-
_onFieldsetChange(event) {
|
|
1957
|
-
const detail = event.detail;
|
|
1958
|
-
this.onFieldsetChange.emit(detail);
|
|
1959
|
-
}
|
|
1960
|
-
_onComplete(event) {
|
|
1961
|
-
const detail = event.detail;
|
|
1962
|
-
this.onComplete.emit(detail);
|
|
1963
|
-
}
|
|
1964
1939
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicFormPage, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1965
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPublicFormPage, isStandalone: true, selector: "goab-public-form-page", inputs: { id: "id", heading: "heading", subHeading: "subHeading", summaryHeading: "summaryHeading", sectionTitle: "sectionTitle", backUrl: "backUrl", type: "type", buttonText: "buttonText", buttonVisibility: "buttonVisibility"
|
|
1940
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPublicFormPage, isStandalone: true, selector: "goab-public-form-page", inputs: { id: "id", heading: "heading", subHeading: "subHeading", summaryHeading: "summaryHeading", sectionTitle: "sectionTitle", backUrl: "backUrl", type: "type", buttonText: "buttonText", buttonVisibility: "buttonVisibility" }, outputs: { onContinue: "onContinue" }, usesInheritance: true, ngImport: i0, template: `
|
|
1966
1941
|
<goa-public-form-page
|
|
1967
1942
|
[id]="id"
|
|
1968
1943
|
[attr.heading]="heading"
|
|
@@ -1972,17 +1947,12 @@ class GoabPublicFormPage extends GoabBaseComponent {
|
|
|
1972
1947
|
[attr.type]="type"
|
|
1973
1948
|
[attr.button-text]="buttonText"
|
|
1974
1949
|
[attr.button-visibility]="buttonVisibility"
|
|
1975
|
-
[attr.first]="first"
|
|
1976
|
-
[attr.last]="last"
|
|
1977
1950
|
[attr.summary-heading]="summaryHeading"
|
|
1978
1951
|
[attr.mt]="mt"
|
|
1979
1952
|
[attr.mr]="mr"
|
|
1980
1953
|
[attr.mb]="mb"
|
|
1981
1954
|
[attr.ml]="ml"
|
|
1982
1955
|
(_continue)="_onContinue($event)"
|
|
1983
|
-
(_back)="_onBack($event)"
|
|
1984
|
-
(_fieldsetChange)="_onFieldsetChange($event)"
|
|
1985
|
-
(_complete)="_onComplete($event)"
|
|
1986
1956
|
>
|
|
1987
1957
|
<ng-content></ng-content>
|
|
1988
1958
|
</goa-public-form-page>
|
|
@@ -2003,17 +1973,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2003
1973
|
[attr.type]="type"
|
|
2004
1974
|
[attr.button-text]="buttonText"
|
|
2005
1975
|
[attr.button-visibility]="buttonVisibility"
|
|
2006
|
-
[attr.first]="first"
|
|
2007
|
-
[attr.last]="last"
|
|
2008
1976
|
[attr.summary-heading]="summaryHeading"
|
|
2009
1977
|
[attr.mt]="mt"
|
|
2010
1978
|
[attr.mr]="mr"
|
|
2011
1979
|
[attr.mb]="mb"
|
|
2012
1980
|
[attr.ml]="ml"
|
|
2013
1981
|
(_continue)="_onContinue($event)"
|
|
2014
|
-
(_back)="_onBack($event)"
|
|
2015
|
-
(_fieldsetChange)="_onFieldsetChange($event)"
|
|
2016
|
-
(_complete)="_onComplete($event)"
|
|
2017
1982
|
>
|
|
2018
1983
|
<ng-content></ng-content>
|
|
2019
1984
|
</goa-public-form-page>
|
|
@@ -2038,18 +2003,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2038
2003
|
type: Input
|
|
2039
2004
|
}], buttonVisibility: [{
|
|
2040
2005
|
type: Input
|
|
2041
|
-
}], first: [{
|
|
2042
|
-
type: Input
|
|
2043
|
-
}], last: [{
|
|
2044
|
-
type: Input
|
|
2045
2006
|
}], onContinue: [{
|
|
2046
2007
|
type: Output
|
|
2047
|
-
}], onBack: [{
|
|
2048
|
-
type: Output
|
|
2049
|
-
}], onFieldsetChange: [{
|
|
2050
|
-
type: Output
|
|
2051
|
-
}], onComplete: [{
|
|
2052
|
-
type: Output
|
|
2053
2008
|
}] } });
|
|
2054
2009
|
|
|
2055
2010
|
class GoabPublicFormSummary {
|
|
@@ -2232,11 +2187,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2232
2187
|
type: Input
|
|
2233
2188
|
}] } });
|
|
2234
2189
|
|
|
2235
|
-
class GoabPublicFormTaskList {
|
|
2236
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicFormTaskList, deps:
|
|
2237
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPublicFormTaskList, isStandalone: true, selector: "goab-public-form-task-list", inputs: { heading: "heading" }, ngImport: i0, template: `
|
|
2190
|
+
class GoabPublicFormTaskList extends GoabBaseComponent {
|
|
2191
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicFormTaskList, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2192
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPublicFormTaskList, isStandalone: true, selector: "goab-public-form-task-list", inputs: { heading: "heading" }, usesInheritance: true, ngImport: i0, template: `
|
|
2238
2193
|
<goa-public-form-task-list
|
|
2239
2194
|
[attr.heading]="heading"
|
|
2195
|
+
[attr.mt]="mt"
|
|
2196
|
+
[attr.mr]="mr"
|
|
2197
|
+
[attr.mb]="mb"
|
|
2198
|
+
[attr.ml]="ml"
|
|
2240
2199
|
>
|
|
2241
2200
|
<ng-content />
|
|
2242
2201
|
</goa-public-form-task-list>
|
|
@@ -2250,6 +2209,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2250
2209
|
template: `
|
|
2251
2210
|
<goa-public-form-task-list
|
|
2252
2211
|
[attr.heading]="heading"
|
|
2212
|
+
[attr.mt]="mt"
|
|
2213
|
+
[attr.mr]="mr"
|
|
2214
|
+
[attr.mb]="mb"
|
|
2215
|
+
[attr.ml]="ml"
|
|
2253
2216
|
>
|
|
2254
2217
|
<ng-content />
|
|
2255
2218
|
</goa-public-form-task-list>
|
|
@@ -2263,24 +2226,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2263
2226
|
class GoabFieldset {
|
|
2264
2227
|
constructor() {
|
|
2265
2228
|
this.dispatchOn = "continue";
|
|
2266
|
-
this.onChange = new EventEmitter();
|
|
2267
2229
|
this.onContinue = new EventEmitter();
|
|
2268
2230
|
}
|
|
2269
|
-
_onChange(event) {
|
|
2270
|
-
const detail = event.detail;
|
|
2271
|
-
this.onChange.emit(detail);
|
|
2272
|
-
}
|
|
2273
2231
|
_onContinue(event) {
|
|
2274
2232
|
const detail = event.detail;
|
|
2275
2233
|
this.onContinue.emit(detail);
|
|
2276
2234
|
}
|
|
2277
2235
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFieldset, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2278
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabFieldset, isStandalone: true, selector: "goab-fieldset", inputs: { id: "id", sectionTitle: "sectionTitle", dispatchOn: "dispatchOn" }, outputs: {
|
|
2236
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabFieldset, isStandalone: true, selector: "goab-fieldset", inputs: { id: "id", sectionTitle: "sectionTitle", dispatchOn: "dispatchOn" }, outputs: { onContinue: "onContinue" }, ngImport: i0, template: `
|
|
2279
2237
|
<goa-fieldset
|
|
2280
2238
|
[attr.section-title]="sectionTitle"
|
|
2281
2239
|
[attr.dispatch-on]="dispatchOn"
|
|
2282
2240
|
[attr.id]="id"
|
|
2283
|
-
(_change)="_onChange($event)"
|
|
2284
2241
|
(_continue)="_onContinue($event)"
|
|
2285
2242
|
>
|
|
2286
2243
|
<ng-content></ng-content>
|
|
@@ -2295,7 +2252,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2295
2252
|
[attr.section-title]="sectionTitle"
|
|
2296
2253
|
[attr.dispatch-on]="dispatchOn"
|
|
2297
2254
|
[attr.id]="id"
|
|
2298
|
-
(_change)="_onChange($event)"
|
|
2299
2255
|
(_continue)="_onContinue($event)"
|
|
2300
2256
|
>
|
|
2301
2257
|
<ng-content></ng-content>
|
|
@@ -2309,8 +2265,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2309
2265
|
type: Input
|
|
2310
2266
|
}], dispatchOn: [{
|
|
2311
2267
|
type: Input
|
|
2312
|
-
}], onChange: [{
|
|
2313
|
-
type: Output
|
|
2314
2268
|
}], onContinue: [{
|
|
2315
2269
|
type: Output
|
|
2316
2270
|
}] } });
|
|
@@ -3600,6 +3554,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3600
3554
|
type: Output
|
|
3601
3555
|
}] } });
|
|
3602
3556
|
|
|
3557
|
+
class GoabPageBlock {
|
|
3558
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPageBlock, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3559
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPageBlock, isStandalone: true, selector: "goab-page-block", inputs: { width: "width", testId: "testId" }, ngImport: i0, template: `
|
|
3560
|
+
<goa-page-block
|
|
3561
|
+
[attr.width]="width"
|
|
3562
|
+
[attr.testid]="testId"
|
|
3563
|
+
>
|
|
3564
|
+
<ng-content></ng-content>
|
|
3565
|
+
</goa-page-block>
|
|
3566
|
+
`, isInline: true }); }
|
|
3567
|
+
}
|
|
3568
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPageBlock, decorators: [{
|
|
3569
|
+
type: Component,
|
|
3570
|
+
args: [{
|
|
3571
|
+
standalone: true,
|
|
3572
|
+
selector: "goab-page-block",
|
|
3573
|
+
template: `
|
|
3574
|
+
<goa-page-block
|
|
3575
|
+
[attr.width]="width"
|
|
3576
|
+
[attr.testid]="testId"
|
|
3577
|
+
>
|
|
3578
|
+
<ng-content></ng-content>
|
|
3579
|
+
</goa-page-block>
|
|
3580
|
+
`,
|
|
3581
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3582
|
+
}]
|
|
3583
|
+
}], propDecorators: { width: [{
|
|
3584
|
+
type: Input
|
|
3585
|
+
}], testId: [{
|
|
3586
|
+
type: Input
|
|
3587
|
+
}] } });
|
|
3588
|
+
|
|
3603
3589
|
class GoabPages extends GoabBaseComponent {
|
|
3604
3590
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPages, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3605
3591
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabPages, isStandalone: true, selector: "goab-pages", inputs: { current: ["current", "current", numberAttribute] }, usesInheritance: true, ngImport: i0, template: `
|
|
@@ -4325,6 +4311,104 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
4325
4311
|
type: Output
|
|
4326
4312
|
}] } });
|
|
4327
4313
|
|
|
4314
|
+
class GoabTemporaryNotification {
|
|
4315
|
+
constructor() {
|
|
4316
|
+
this.message = "";
|
|
4317
|
+
this.type = "basic";
|
|
4318
|
+
this.visible = true;
|
|
4319
|
+
this.animationDirection = "down";
|
|
4320
|
+
}
|
|
4321
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTemporaryNotification, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4322
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabTemporaryNotification, isStandalone: true, selector: "goab-temporary-notification", inputs: { message: "message", type: "type", duration: "duration", progress: "progress", testId: "testId", actionText: "actionText", visible: "visible", animationDirection: "animationDirection" }, ngImport: i0, template: `
|
|
4323
|
+
<goa-temp-notification
|
|
4324
|
+
[attr.message]="message"
|
|
4325
|
+
[attr.type]="type"
|
|
4326
|
+
[attr.duration]="duration"
|
|
4327
|
+
[attr.progress]="progress"
|
|
4328
|
+
[attr.testid]="testId"
|
|
4329
|
+
[attr.action-text]="actionText"
|
|
4330
|
+
[attr.visible]="visible"
|
|
4331
|
+
[attr.animation-direction]="animationDirection"
|
|
4332
|
+
>
|
|
4333
|
+
</goa-temp-notification>
|
|
4334
|
+
`, isInline: true }); }
|
|
4335
|
+
}
|
|
4336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTemporaryNotification, decorators: [{
|
|
4337
|
+
type: Component,
|
|
4338
|
+
args: [{
|
|
4339
|
+
standalone: true,
|
|
4340
|
+
selector: "goab-temporary-notification",
|
|
4341
|
+
template: `
|
|
4342
|
+
<goa-temp-notification
|
|
4343
|
+
[attr.message]="message"
|
|
4344
|
+
[attr.type]="type"
|
|
4345
|
+
[attr.duration]="duration"
|
|
4346
|
+
[attr.progress]="progress"
|
|
4347
|
+
[attr.testid]="testId"
|
|
4348
|
+
[attr.action-text]="actionText"
|
|
4349
|
+
[attr.visible]="visible"
|
|
4350
|
+
[attr.animation-direction]="animationDirection"
|
|
4351
|
+
>
|
|
4352
|
+
</goa-temp-notification>
|
|
4353
|
+
`,
|
|
4354
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4355
|
+
}]
|
|
4356
|
+
}], propDecorators: { message: [{
|
|
4357
|
+
type: Input
|
|
4358
|
+
}], type: [{
|
|
4359
|
+
type: Input
|
|
4360
|
+
}], duration: [{
|
|
4361
|
+
type: Input
|
|
4362
|
+
}], progress: [{
|
|
4363
|
+
type: Input
|
|
4364
|
+
}], testId: [{
|
|
4365
|
+
type: Input
|
|
4366
|
+
}], actionText: [{
|
|
4367
|
+
type: Input
|
|
4368
|
+
}], visible: [{
|
|
4369
|
+
type: Input
|
|
4370
|
+
}], animationDirection: [{
|
|
4371
|
+
type: Input
|
|
4372
|
+
}] } });
|
|
4373
|
+
|
|
4374
|
+
class GoabTemporaryNotificationCtrl {
|
|
4375
|
+
constructor() {
|
|
4376
|
+
this.verticalPosition = "bottom";
|
|
4377
|
+
this.horizontalPosition = "center";
|
|
4378
|
+
}
|
|
4379
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTemporaryNotificationCtrl, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4380
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabTemporaryNotificationCtrl, isStandalone: true, selector: "goab-temporary-notification-ctrl", inputs: { verticalPosition: "verticalPosition", horizontalPosition: "horizontalPosition", testId: "testId" }, ngImport: i0, template: `
|
|
4381
|
+
<goa-temp-notification-ctrl
|
|
4382
|
+
[attr.vertical-position]="verticalPosition"
|
|
4383
|
+
[attr.horizontal-position]="horizontalPosition"
|
|
4384
|
+
[attr.testid]="testId"
|
|
4385
|
+
>
|
|
4386
|
+
</goa-temp-notification-ctrl>
|
|
4387
|
+
`, isInline: true }); }
|
|
4388
|
+
}
|
|
4389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTemporaryNotificationCtrl, decorators: [{
|
|
4390
|
+
type: Component,
|
|
4391
|
+
args: [{
|
|
4392
|
+
standalone: true,
|
|
4393
|
+
selector: "goab-temporary-notification-ctrl",
|
|
4394
|
+
template: `
|
|
4395
|
+
<goa-temp-notification-ctrl
|
|
4396
|
+
[attr.vertical-position]="verticalPosition"
|
|
4397
|
+
[attr.horizontal-position]="horizontalPosition"
|
|
4398
|
+
[attr.testid]="testId"
|
|
4399
|
+
>
|
|
4400
|
+
</goa-temp-notification-ctrl>
|
|
4401
|
+
`,
|
|
4402
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4403
|
+
}]
|
|
4404
|
+
}], propDecorators: { verticalPosition: [{
|
|
4405
|
+
type: Input
|
|
4406
|
+
}], horizontalPosition: [{
|
|
4407
|
+
type: Input
|
|
4408
|
+
}], testId: [{
|
|
4409
|
+
type: Input
|
|
4410
|
+
}] } });
|
|
4411
|
+
|
|
4328
4412
|
class GoabText {
|
|
4329
4413
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabText, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4330
4414
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabText, isStandalone: true, selector: "goab-text", inputs: { tag: "tag", size: "size", maxWidth: "maxWidth", color: "color", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
|
|
@@ -4549,5 +4633,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
4549
4633
|
* Generated bundle index. Do not edit.
|
|
4550
4634
|
*/
|
|
4551
4635
|
|
|
4552
|
-
export { AngularComponentsModule, CheckedDirective, GoabAccordion, GoabAppFooter, GoabAppFooterMetaSection, GoabAppFooterNavSection, GoabAppHeader, GoabAppHeaderMenu, GoabBadge, GoabBlock, GoabButton, GoabButtonGroup, GoabCallout, GoabCard, GoabCardActions, GoabCardContent, GoabCardImage, GoabCheckbox, GoabChip, GoabCircularProgress, GoabColumnLayout, GoabContainer, GoabDatePicker, GoabDetails, GoabDivider, GoabDrawer, GoabDropdown, GoabDropdownItem, GoabFieldset, GoabFileUploadCard, GoabFileUploadInput, GoabFilterChip, GoabFormItem, GoabFormItemSlot, GoabFormStep, GoabFormStepper, GoabGrid, GoabHeroBanner, GoabIcon, GoabIconButton, GoabInput, GoabInputNumber, GoabLink, GoabMicrositeHeader, GoabModal, GoabNotification, GoabPages, GoabPagination, GoabPopover, GoabPublicForm, GoabPublicFormPage, GoabPublicFormSummary, GoabPublicFormTask, GoabPublicFormTaskList, GoabPublicSubform, GoabPublicSubformIndex, GoabRadioGroup, GoabRadioItem, GoabSideMenu, GoabSideMenuGroup, GoabSideMenuHeading, GoabSkeleton, GoabSpacer, GoabTab, GoabTable, GoabTableSortHeader, GoabTabs, GoabText, GoabTextArea, GoabTooltip, ValueDirective, ValueListDirective };
|
|
4636
|
+
export { AngularComponentsModule, CheckedDirective, GoabAccordion, GoabAppFooter, GoabAppFooterMetaSection, GoabAppFooterNavSection, GoabAppHeader, GoabAppHeaderMenu, GoabBadge, GoabBlock, GoabButton, GoabButtonGroup, GoabCallout, GoabCard, GoabCardActions, GoabCardContent, GoabCardImage, GoabCheckbox, GoabChip, GoabCircularProgress, GoabColumnLayout, GoabContainer, GoabDatePicker, GoabDetails, GoabDivider, GoabDrawer, GoabDropdown, GoabDropdownItem, GoabFieldset, GoabFileUploadCard, GoabFileUploadInput, GoabFilterChip, GoabFormItem, GoabFormItemSlot, GoabFormStep, GoabFormStepper, GoabGrid, GoabHeroBanner, GoabIcon, GoabIconButton, GoabInput, GoabInputNumber, GoabLink, GoabMicrositeHeader, GoabModal, GoabNotification, GoabPageBlock, GoabPages, GoabPagination, GoabPopover, GoabPublicForm, GoabPublicFormPage, GoabPublicFormSummary, GoabPublicFormTask, GoabPublicFormTaskList, GoabPublicSubform, GoabPublicSubformIndex, GoabRadioGroup, GoabRadioItem, GoabSideMenu, GoabSideMenuGroup, GoabSideMenuHeading, GoabSkeleton, GoabSpacer, GoabTab, GoabTable, GoabTableSortHeader, GoabTabs, GoabTemporaryNotification, GoabTemporaryNotificationCtrl, GoabText, GoabTextArea, GoabTooltip, ValueDirective, ValueListDirective };
|
|
4553
4637
|
//# sourceMappingURL=abgov-angular-components.mjs.map
|