@abgov/angular-components 4.3.1-alpha.1 → 4.4.0-alpha.2

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.
@@ -494,12 +494,13 @@ class GoabButton extends GoabBaseComponent {
494
494
  super(...arguments);
495
495
  this.type = "primary";
496
496
  this.onClick = new EventEmitter();
497
+ this.JSON = JSON;
497
498
  }
498
499
  _onClick() {
499
500
  this.onClick.emit();
500
501
  }
501
502
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabButton, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
502
- 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" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `
503
+ 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", action: "action", actionArg: "actionArg", actionArgs: "actionArgs" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `
503
504
  <goa-button
504
505
  [attr.type]="type"
505
506
  [attr.size]="size"
@@ -509,6 +510,9 @@ class GoabButton extends GoabBaseComponent {
509
510
  [attr.trailingicon]="trailingIcon"
510
511
  [attr.width]="width"
511
512
  [attr.testid]="testId"
513
+ [attr.action]="action"
514
+ [attr.action-arg]="actionArg"
515
+ [attr.action-args]="JSON.stringify(actionArgs)"
512
516
  [attr.mt]="mt"
513
517
  [attr.mb]="mb"
514
518
  [attr.ml]="ml"
@@ -534,6 +538,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
534
538
  [attr.trailingicon]="trailingIcon"
535
539
  [attr.width]="width"
536
540
  [attr.testid]="testId"
541
+ [attr.action]="action"
542
+ [attr.action-arg]="actionArg"
543
+ [attr.action-args]="JSON.stringify(actionArgs)"
537
544
  [attr.mt]="mt"
538
545
  [attr.mb]="mb"
539
546
  [attr.ml]="ml"
@@ -559,6 +566,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
559
566
  type: Input
560
567
  }], width: [{
561
568
  type: Input
569
+ }], action: [{
570
+ type: Input
571
+ }], actionArg: [{
572
+ type: Input
573
+ }], actionArgs: [{
574
+ type: Input
562
575
  }], onClick: [{
563
576
  type: Output
564
577
  }] } });
@@ -1805,9 +1818,291 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
1805
1818
  args: [{ required: true }]
1806
1819
  }] } });
1807
1820
 
1821
+ class GoabPublicForm {
1822
+ constructor() {
1823
+ this.status = "complete";
1824
+ this.onInit = new EventEmitter();
1825
+ this.onComplete = new EventEmitter();
1826
+ this.onStateChange = new EventEmitter();
1827
+ }
1828
+ _onInit(e) {
1829
+ const detail = e.detail;
1830
+ this.onInit.emit(detail);
1831
+ }
1832
+ _onComplete(e) {
1833
+ const detail = e.detail;
1834
+ this.onComplete.emit(detail);
1835
+ }
1836
+ _onStateChange(e) {
1837
+ const detail = e.detail;
1838
+ this.onStateChange.emit(detail.data);
1839
+ }
1840
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicForm, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1841
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPublicForm, isStandalone: true, selector: "goab-public-form", inputs: { status: "status", name: "name" }, outputs: { onInit: "onInit", onComplete: "onComplete", onStateChange: "onStateChange" }, ngImport: i0, template: `
1842
+ <goa-public-form
1843
+ [attr.status]="status"
1844
+ [attr.name]="name"
1845
+ (_init)="_onInit($event)"
1846
+ (_complete)="_onComplete($event)"
1847
+ (_stateChange)="_onStateChange($event)"
1848
+ >
1849
+ <ng-content />
1850
+ </goa-public-form>
1851
+ `, isInline: true }); }
1852
+ }
1853
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicForm, decorators: [{
1854
+ type: Component,
1855
+ args: [{
1856
+ selector: "goab-public-form",
1857
+ standalone: true,
1858
+ template: `
1859
+ <goa-public-form
1860
+ [attr.status]="status"
1861
+ [attr.name]="name"
1862
+ (_init)="_onInit($event)"
1863
+ (_complete)="_onComplete($event)"
1864
+ (_stateChange)="_onStateChange($event)"
1865
+ >
1866
+ <ng-content />
1867
+ </goa-public-form>
1868
+ `,
1869
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
1870
+ }]
1871
+ }], propDecorators: { status: [{
1872
+ type: Input
1873
+ }], name: [{
1874
+ type: Input
1875
+ }], onInit: [{
1876
+ type: Output
1877
+ }], onComplete: [{
1878
+ type: Output
1879
+ }], onStateChange: [{
1880
+ type: Output
1881
+ }] } });
1882
+
1883
+ class GoabPublicFormPage extends GoabBaseComponent {
1884
+ constructor() {
1885
+ super(...arguments);
1886
+ this.id = "";
1887
+ this.heading = "";
1888
+ this.subHeading = "";
1889
+ this.summaryHeading = "";
1890
+ this.sectionTitle = "";
1891
+ this.backUrl = "";
1892
+ this.type = "step";
1893
+ this.buttonText = "";
1894
+ this.buttonVisibility = "visible";
1895
+ this.first = false;
1896
+ this.last = false;
1897
+ /**
1898
+ * triggers when the form page continues to the next step
1899
+ */
1900
+ this.onContinue = new EventEmitter();
1901
+ /**
1902
+ * triggers when the user clicks the back link
1903
+ */
1904
+ this.onBack = new EventEmitter();
1905
+ /**
1906
+ * triggers when the form fieldset content changes
1907
+ */
1908
+ this.onFieldsetChange = new EventEmitter();
1909
+ /**
1910
+ * triggers when the form is completed
1911
+ */
1912
+ this.onComplete = new EventEmitter();
1913
+ }
1914
+ _onContinue(event) {
1915
+ const detail = event.detail;
1916
+ this.onContinue.emit(detail);
1917
+ }
1918
+ _onBack() {
1919
+ this.onBack.emit();
1920
+ }
1921
+ _onFieldsetChange(event) {
1922
+ const detail = event.detail;
1923
+ this.onFieldsetChange.emit(detail);
1924
+ }
1925
+ _onComplete(event) {
1926
+ const detail = event.detail;
1927
+ this.onComplete.emit(detail);
1928
+ }
1929
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicFormPage, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1930
+ 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", first: "first", last: "last" }, outputs: { onContinue: "onContinue", onBack: "onBack", onFieldsetChange: "onFieldsetChange", onComplete: "onComplete" }, usesInheritance: true, ngImport: i0, template: `
1931
+ <goa-public-form-page
1932
+ [id]="id"
1933
+ [attr.heading]="heading"
1934
+ [attr.sub-heading]="subHeading"
1935
+ [attr.section-title]="sectionTitle"
1936
+ [attr.back-url]="backUrl"
1937
+ [attr.type]="type"
1938
+ [attr.button-text]="buttonText"
1939
+ [attr.button-visibility]="buttonVisibility"
1940
+ [attr.first]="first"
1941
+ [attr.last]="last"
1942
+ [attr.summary-heading]="summaryHeading"
1943
+ [attr.mt]="mt"
1944
+ [attr.mr]="mr"
1945
+ [attr.mb]="mb"
1946
+ [attr.ml]="ml"
1947
+ (_continue)="_onContinue($event)"
1948
+ (_back)="_onBack()"
1949
+ (_fieldsetChange)="_onFieldsetChange($event)"
1950
+ (_complete)="_onComplete($event)"
1951
+ >
1952
+ <ng-content></ng-content>
1953
+ </goa-public-form-page>
1954
+ `, isInline: true }); }
1955
+ }
1956
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicFormPage, decorators: [{
1957
+ type: Component,
1958
+ args: [{
1959
+ selector: "goab-public-form-page",
1960
+ standalone: true,
1961
+ template: `
1962
+ <goa-public-form-page
1963
+ [id]="id"
1964
+ [attr.heading]="heading"
1965
+ [attr.sub-heading]="subHeading"
1966
+ [attr.section-title]="sectionTitle"
1967
+ [attr.back-url]="backUrl"
1968
+ [attr.type]="type"
1969
+ [attr.button-text]="buttonText"
1970
+ [attr.button-visibility]="buttonVisibility"
1971
+ [attr.first]="first"
1972
+ [attr.last]="last"
1973
+ [attr.summary-heading]="summaryHeading"
1974
+ [attr.mt]="mt"
1975
+ [attr.mr]="mr"
1976
+ [attr.mb]="mb"
1977
+ [attr.ml]="ml"
1978
+ (_continue)="_onContinue($event)"
1979
+ (_back)="_onBack()"
1980
+ (_fieldsetChange)="_onFieldsetChange($event)"
1981
+ (_complete)="_onComplete($event)"
1982
+ >
1983
+ <ng-content></ng-content>
1984
+ </goa-public-form-page>
1985
+ `,
1986
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
1987
+ }]
1988
+ }], propDecorators: { id: [{
1989
+ type: Input
1990
+ }], heading: [{
1991
+ type: Input
1992
+ }], subHeading: [{
1993
+ type: Input
1994
+ }], summaryHeading: [{
1995
+ type: Input
1996
+ }], sectionTitle: [{
1997
+ type: Input
1998
+ }], backUrl: [{
1999
+ type: Input
2000
+ }], type: [{
2001
+ type: Input
2002
+ }], buttonText: [{
2003
+ type: Input
2004
+ }], buttonVisibility: [{
2005
+ type: Input
2006
+ }], first: [{
2007
+ type: Input
2008
+ }], last: [{
2009
+ type: Input
2010
+ }], onContinue: [{
2011
+ type: Output
2012
+ }], onBack: [{
2013
+ type: Output
2014
+ }], onFieldsetChange: [{
2015
+ type: Output
2016
+ }], onComplete: [{
2017
+ type: Output
2018
+ }] } });
2019
+
2020
+ class GoabPublicFormSummary {
2021
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicFormSummary, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2022
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPublicFormSummary, isStandalone: true, selector: "goab-public-form-summary", inputs: { heading: "heading" }, ngImport: i0, template: `
2023
+ <goa-public-form-summary
2024
+ [attr.heading]="heading"
2025
+ >
2026
+ <ng-content />
2027
+ </goa-public-form-summary>
2028
+ `, isInline: true }); }
2029
+ }
2030
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicFormSummary, decorators: [{
2031
+ type: Component,
2032
+ args: [{
2033
+ selector: "goab-public-form-summary",
2034
+ standalone: true,
2035
+ template: `
2036
+ <goa-public-form-summary
2037
+ [attr.heading]="heading"
2038
+ >
2039
+ <ng-content />
2040
+ </goa-public-form-summary>
2041
+ `,
2042
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
2043
+ }]
2044
+ }], propDecorators: { heading: [{
2045
+ type: Input
2046
+ }] } });
2047
+
2048
+ class GoabFieldset {
2049
+ constructor() {
2050
+ this.dispatchOn = "continue";
2051
+ this.onChange = new EventEmitter();
2052
+ this.onContinue = new EventEmitter();
2053
+ }
2054
+ _onChange(event) {
2055
+ const detail = event.detail;
2056
+ this.onChange.emit(detail);
2057
+ }
2058
+ _onContinue(event) {
2059
+ const detail = event.detail;
2060
+ this.onContinue.emit(detail);
2061
+ }
2062
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFieldset, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2063
+ 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: { onChange: "onChange", onContinue: "onContinue" }, ngImport: i0, template: `
2064
+ <goa-fieldset
2065
+ [attr.section-title]="sectionTitle"
2066
+ [attr.dispatch-on]="dispatchOn"
2067
+ [attr.id]="id"
2068
+ (_change)="_onChange($event)"
2069
+ (_continue)="_onContinue($event)"
2070
+ >
2071
+ <ng-content></ng-content>
2072
+ </goa-fieldset>`, isInline: true }); }
2073
+ }
2074
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFieldset, decorators: [{
2075
+ type: Component,
2076
+ args: [{
2077
+ selector: 'goab-fieldset',
2078
+ template: `
2079
+ <goa-fieldset
2080
+ [attr.section-title]="sectionTitle"
2081
+ [attr.dispatch-on]="dispatchOn"
2082
+ [attr.id]="id"
2083
+ (_change)="_onChange($event)"
2084
+ (_continue)="_onContinue($event)"
2085
+ >
2086
+ <ng-content></ng-content>
2087
+ </goa-fieldset>`,
2088
+ standalone: true,
2089
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2090
+ }]
2091
+ }], propDecorators: { id: [{
2092
+ type: Input
2093
+ }], sectionTitle: [{
2094
+ type: Input
2095
+ }], dispatchOn: [{
2096
+ type: Input
2097
+ }], onChange: [{
2098
+ type: Output
2099
+ }], onContinue: [{
2100
+ type: Output
2101
+ }] } });
2102
+
1808
2103
  class GoabFormItem extends GoabBaseComponent {
1809
2104
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFormItem, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1810
- 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", id: "id" }, usesInheritance: true, ngImport: i0, template: `
2105
+ 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", id: "id", publicFormSummaryOrder: "publicFormSummaryOrder", name: "name" }, usesInheritance: true, ngImport: i0, template: `
1811
2106
  <goa-form-item
1812
2107
  [attr.label]="label"
1813
2108
  [attr.labelsize]="labelSize"
@@ -1815,8 +2110,10 @@ class GoabFormItem extends GoabBaseComponent {
1815
2110
  [attr.error]="error"
1816
2111
  [attr.testid]="testId"
1817
2112
  [id]="id"
2113
+ [attr.name]="name"
1818
2114
  [attr.requirement]="requirement"
1819
2115
  [attr.maxwidth]="maxWidth"
2116
+ [attr.public-form-summary-order]="publicFormSummaryOrder"
1820
2117
  [attr.mt]="mt"
1821
2118
  [attr.mb]="mb"
1822
2119
  [attr.mr]="mr"
@@ -1840,8 +2137,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
1840
2137
  [attr.error]="error"
1841
2138
  [attr.testid]="testId"
1842
2139
  [id]="id"
2140
+ [attr.name]="name"
1843
2141
  [attr.requirement]="requirement"
1844
2142
  [attr.maxwidth]="maxWidth"
2143
+ [attr.public-form-summary-order]="publicFormSummaryOrder"
1845
2144
  [attr.mt]="mt"
1846
2145
  [attr.mb]="mb"
1847
2146
  [attr.mr]="mr"
@@ -1867,6 +2166,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
1867
2166
  type: Input
1868
2167
  }], id: [{
1869
2168
  type: Input
2169
+ }], publicFormSummaryOrder: [{
2170
+ type: Input
2171
+ }], name: [{
2172
+ type: Input
1870
2173
  }] } });
1871
2174
 
1872
2175
  /**
@@ -2239,12 +2542,13 @@ class GoabIconButton extends GoabBaseComponent {
2239
2542
  super(...arguments);
2240
2543
  this.size = "medium";
2241
2544
  this.onClick = new EventEmitter();
2545
+ this.JSON = JSON;
2242
2546
  }
2243
2547
  _onClick() {
2244
2548
  this.onClick.emit();
2245
2549
  }
2246
2550
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabIconButton, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2247
- 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" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `
2551
+ 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", action: "action", actionArg: "actionArg", actionArgs: "actionArgs" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `
2248
2552
  <goa-icon-button
2249
2553
  [attr.icon]="icon"
2250
2554
  [disabled]="disabled"
@@ -2253,6 +2557,9 @@ class GoabIconButton extends GoabBaseComponent {
2253
2557
  [title]="title"
2254
2558
  [attr.arialabel]="ariaLabel"
2255
2559
  [attr.testid]="testId"
2560
+ [attr.action]="action"
2561
+ [attr.action-arg]="actionArg"
2562
+ [attr.action-args]="JSON.stringify(actionArgs)"
2256
2563
  [attr.mt]="mt"
2257
2564
  [attr.mb]="mb"
2258
2565
  [attr.ml]="ml"
@@ -2277,6 +2584,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
2277
2584
  [title]="title"
2278
2585
  [attr.arialabel]="ariaLabel"
2279
2586
  [attr.testid]="testId"
2587
+ [attr.action]="action"
2588
+ [attr.action-arg]="actionArg"
2589
+ [attr.action-args]="JSON.stringify(actionArgs)"
2280
2590
  [attr.mt]="mt"
2281
2591
  [attr.mb]="mb"
2282
2592
  [attr.ml]="ml"
@@ -2301,6 +2611,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
2301
2611
  type: Input
2302
2612
  }], ariaLabel: [{
2303
2613
  type: Input
2614
+ }], action: [{
2615
+ type: Input
2616
+ }], actionArg: [{
2617
+ type: Input
2618
+ }], actionArgs: [{
2619
+ type: Input
2304
2620
  }], onClick: [{
2305
2621
  type: Output
2306
2622
  }] } });
@@ -2749,12 +3065,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
2749
3065
  }] } });
2750
3066
 
2751
3067
  class GoabLink {
3068
+ constructor() {
3069
+ this.JSON = JSON;
3070
+ }
2752
3071
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabLink, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2753
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabLink, isStandalone: true, selector: "goab-link", inputs: { leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", testId: "testId", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
3072
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabLink, isStandalone: true, selector: "goab-link", inputs: { leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", testId: "testId", action: "action", actionArg: "actionArg", actionArgs: "actionArgs", mt: "mt", mb: "mb", ml: "ml", mr: "mr" }, ngImport: i0, template: `
2754
3073
  <goa-link
2755
3074
  [attr.leadingicon]="leadingIcon"
2756
3075
  [attr.trailingicon]="trailingIcon"
2757
3076
  [attr.testid]="testId"
3077
+ [attr.action]="action"
3078
+ [attr.action-arg]="actionArg"
3079
+ [attr.action-args]="JSON.stringify(actionArgs)"
2758
3080
  [attr.mt]="mt"
2759
3081
  [attr.mb]="mb"
2760
3082
  [attr.ml]="ml"
@@ -2774,6 +3096,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
2774
3096
  [attr.leadingicon]="leadingIcon"
2775
3097
  [attr.trailingicon]="trailingIcon"
2776
3098
  [attr.testid]="testId"
3099
+ [attr.action]="action"
3100
+ [attr.action-arg]="actionArg"
3101
+ [attr.action-args]="JSON.stringify(actionArgs)"
2777
3102
  [attr.mt]="mt"
2778
3103
  [attr.mb]="mb"
2779
3104
  [attr.ml]="ml"
@@ -2790,6 +3115,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
2790
3115
  type: Input
2791
3116
  }], testId: [{
2792
3117
  type: Input
3118
+ }], action: [{
3119
+ type: Input
3120
+ }], actionArg: [{
3121
+ type: Input
3122
+ }], actionArgs: [{
3123
+ type: Input
2793
3124
  }], mt: [{
2794
3125
  type: Input
2795
3126
  }], mb: [{
@@ -3218,6 +3549,7 @@ class GoabRadioGroup extends GoabControlValueAccessor {
3218
3549
  [attr.orientation]="orientation"
3219
3550
  [attr.error]="error"
3220
3551
  [attr.arialabel]="ariaLabel"
3552
+ [id]="id"
3221
3553
  [attr.testid]="testId"
3222
3554
  [attr.mt]="mt"
3223
3555
  [attr.mb]="mb"
@@ -3242,6 +3574,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
3242
3574
  [attr.orientation]="orientation"
3243
3575
  [attr.error]="error"
3244
3576
  [attr.arialabel]="ariaLabel"
3577
+ [id]="id"
3245
3578
  [attr.testid]="testId"
3246
3579
  [attr.mt]="mt"
3247
3580
  [attr.mb]="mb"
@@ -3941,5 +4274,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
3941
4274
  * Generated bundle index. Do not edit.
3942
4275
  */
3943
4276
 
3944
- 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, GoabFileUploadCard, GoabFileUploadInput, GoabFilterChip, GoabFormItem, GoabFormItemSlot, GoabFormStep, GoabFormStepper, GoabGrid, GoabHeroBanner, GoabIcon, GoabIconButton, GoabInput, GoabInputNumber, GoabLink, GoabMicrositeHeader, GoabModal, GoabNotification, GoabPages, GoabPagination, GoabPopover, GoabRadioGroup, GoabRadioItem, GoabSideMenu, GoabSideMenuGroup, GoabSideMenuHeading, GoabSkeleton, GoabSpacer, GoabTab, GoabTable, GoabTableSortHeader, GoabTabs, GoabText, GoabTextArea, GoabTooltip, ValueDirective, ValueListDirective };
4277
+ 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, GoabRadioGroup, GoabRadioItem, GoabSideMenu, GoabSideMenuGroup, GoabSideMenuHeading, GoabSkeleton, GoabSpacer, GoabTab, GoabTable, GoabTableSortHeader, GoabTabs, GoabText, GoabTextArea, GoabTooltip, ValueDirective, ValueListDirective };
3945
4278
  //# sourceMappingURL=abgov-angular-components.mjs.map