@abgov/angular-components 4.5.1-alpha.1 → 4.6.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.
@@ -1426,7 +1426,7 @@ class GoabDropdown extends GoabControlValueAccessor {
1426
1426
  this.fcChange?.(detail.value || "");
1427
1427
  }
1428
1428
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDropdown, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1429
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabDropdown, isStandalone: true, selector: "goab-dropdown", inputs: { name: "name", ariaLabel: "ariaLabel", ariaLabelledBy: "ariaLabelledBy", filterable: ["filterable", "filterable", booleanAttribute], leadingIcon: "leadingIcon", maxHeight: "maxHeight", multiselect: ["multiselect", "multiselect", booleanAttribute], native: ["native", "native", booleanAttribute], placeholder: "placeholder", width: "width", relative: "relative" }, outputs: { onChange: "onChange" }, providers: [
1429
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabDropdown, isStandalone: true, selector: "goab-dropdown", inputs: { name: "name", ariaLabel: "ariaLabel", ariaLabelledBy: "ariaLabelledBy", filterable: ["filterable", "filterable", booleanAttribute], leadingIcon: "leadingIcon", maxHeight: "maxHeight", multiselect: ["multiselect", "multiselect", booleanAttribute], native: ["native", "native", booleanAttribute], placeholder: "placeholder", width: "width", autoComplete: "autoComplete", relative: "relative" }, outputs: { onChange: "onChange" }, providers: [
1430
1430
  {
1431
1431
  provide: NG_VALUE_ACCESSOR,
1432
1432
  multi: true,
@@ -1453,6 +1453,7 @@ class GoabDropdown extends GoabControlValueAccessor {
1453
1453
  [attr.testid]="testId"
1454
1454
  [attr.width]="width"
1455
1455
  [attr.relative]="relative"
1456
+ [attr.autocomplete]="autoComplete"
1456
1457
  [id]="id"
1457
1458
  (_change)="_onChange($event)"
1458
1459
  >
@@ -1486,6 +1487,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
1486
1487
  [attr.testid]="testId"
1487
1488
  [attr.width]="width"
1488
1489
  [attr.relative]="relative"
1490
+ [attr.autocomplete]="autoComplete"
1489
1491
  [id]="id"
1490
1492
  (_change)="_onChange($event)"
1491
1493
  >
@@ -1524,6 +1526,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
1524
1526
  type: Input
1525
1527
  }], width: [{
1526
1528
  type: Input
1529
+ }], autoComplete: [{
1530
+ type: Input
1527
1531
  }], relative: [{
1528
1532
  type: Input
1529
1533
  }], onChange: [{
@@ -2076,6 +2080,186 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
2076
2080
  type: Input
2077
2081
  }] } });
2078
2082
 
2083
+ class GoabPublicSubform extends GoabBaseComponent {
2084
+ constructor() {
2085
+ super(...arguments);
2086
+ this.id = "";
2087
+ this.name = "";
2088
+ this.continueMsg = "";
2089
+ this.onInit = new EventEmitter();
2090
+ this.onStateChange = new EventEmitter();
2091
+ }
2092
+ _onInit(e) {
2093
+ this.onInit.emit(e);
2094
+ }
2095
+ _onStateChange(e) {
2096
+ this.onStateChange.emit(e);
2097
+ }
2098
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicSubform, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2099
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPublicSubform, isStandalone: true, selector: "goab-public-subform", inputs: { id: "id", name: "name", continueMsg: "continueMsg" }, outputs: { onInit: "onInit", onStateChange: "onStateChange" }, usesInheritance: true, ngImport: i0, template: `
2100
+ <goa-public-subform
2101
+ [attr.id]="id"
2102
+ [attr.name]="name"
2103
+ [attr.continue-msg]="continueMsg"
2104
+ [attr.mt]="mt"
2105
+ [attr.mr]="mr"
2106
+ [attr.mb]="mb"
2107
+ [attr.ml]="ml"
2108
+ (_init)="_onInit($event)"
2109
+ (_stateChange)="_onStateChange($event)"
2110
+ >
2111
+ <ng-content />
2112
+ </goa-public-subform>
2113
+ `, isInline: true }); }
2114
+ }
2115
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicSubform, decorators: [{
2116
+ type: Component,
2117
+ args: [{
2118
+ selector: "goab-public-subform",
2119
+ standalone: true,
2120
+ template: `
2121
+ <goa-public-subform
2122
+ [attr.id]="id"
2123
+ [attr.name]="name"
2124
+ [attr.continue-msg]="continueMsg"
2125
+ [attr.mt]="mt"
2126
+ [attr.mr]="mr"
2127
+ [attr.mb]="mb"
2128
+ [attr.ml]="ml"
2129
+ (_init)="_onInit($event)"
2130
+ (_stateChange)="_onStateChange($event)"
2131
+ >
2132
+ <ng-content />
2133
+ </goa-public-subform>
2134
+ `,
2135
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
2136
+ }]
2137
+ }], propDecorators: { id: [{
2138
+ type: Input
2139
+ }], name: [{
2140
+ type: Input
2141
+ }], continueMsg: [{
2142
+ type: Input
2143
+ }], onInit: [{
2144
+ type: Output
2145
+ }], onStateChange: [{
2146
+ type: Output
2147
+ }] } });
2148
+
2149
+ class GoabPublicSubformIndex extends GoabBaseComponent {
2150
+ constructor() {
2151
+ super(...arguments);
2152
+ this.heading = "";
2153
+ this.sectionTitle = "";
2154
+ this.actionButtonText = "";
2155
+ this.buttonVisibility = "hidden";
2156
+ }
2157
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicSubformIndex, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2158
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPublicSubformIndex, isStandalone: true, selector: "goab-public-subform-index", inputs: { heading: "heading", sectionTitle: "sectionTitle", actionButtonText: "actionButtonText", buttonVisibility: "buttonVisibility" }, host: { attributes: { "slot": "subform-index" } }, usesInheritance: true, ngImport: i0, template: `
2159
+ <goa-public-subform-index
2160
+ [attr.heading]="heading"
2161
+ [attr.section-title]="sectionTitle"
2162
+ [attr.action-button-text]="actionButtonText"
2163
+ [attr.button-visibility]="buttonVisibility"
2164
+ [attr.mt]="mt"
2165
+ [attr.mr]="mr"
2166
+ [attr.mb]="mb"
2167
+ [attr.ml]="ml"
2168
+ >
2169
+ <ng-content />
2170
+ </goa-public-subform-index>
2171
+ `, isInline: true }); }
2172
+ }
2173
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicSubformIndex, decorators: [{
2174
+ type: Component,
2175
+ args: [{
2176
+ selector: "goab-public-subform-index",
2177
+ standalone: true,
2178
+ host: {
2179
+ 'slot': 'subform-index'
2180
+ },
2181
+ template: `
2182
+ <goa-public-subform-index
2183
+ [attr.heading]="heading"
2184
+ [attr.section-title]="sectionTitle"
2185
+ [attr.action-button-text]="actionButtonText"
2186
+ [attr.button-visibility]="buttonVisibility"
2187
+ [attr.mt]="mt"
2188
+ [attr.mr]="mr"
2189
+ [attr.mb]="mb"
2190
+ [attr.ml]="ml"
2191
+ >
2192
+ <ng-content />
2193
+ </goa-public-subform-index>
2194
+ `,
2195
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
2196
+ }]
2197
+ }], propDecorators: { heading: [{
2198
+ type: Input
2199
+ }], sectionTitle: [{
2200
+ type: Input
2201
+ }], actionButtonText: [{
2202
+ type: Input
2203
+ }], buttonVisibility: [{
2204
+ type: Input
2205
+ }] } });
2206
+
2207
+ class GoabPublicFormTask {
2208
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicFormTask, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2209
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabPublicFormTask, isStandalone: true, selector: "goab-public-form-task", inputs: { status: "status" }, ngImport: i0, template: `
2210
+ <goa-public-form-task
2211
+ [attr.status]="status"
2212
+ >
2213
+ <ng-content />
2214
+ </goa-public-form-task>
2215
+ `, isInline: true }); }
2216
+ }
2217
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicFormTask, decorators: [{
2218
+ type: Component,
2219
+ args: [{
2220
+ selector: "goab-public-form-task",
2221
+ standalone: true,
2222
+ template: `
2223
+ <goa-public-form-task
2224
+ [attr.status]="status"
2225
+ >
2226
+ <ng-content />
2227
+ </goa-public-form-task>
2228
+ `,
2229
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
2230
+ }]
2231
+ }], propDecorators: { status: [{
2232
+ type: Input
2233
+ }] } });
2234
+
2235
+ class GoabPublicFormTaskList {
2236
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicFormTaskList, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
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: `
2238
+ <goa-public-form-task-list
2239
+ [attr.heading]="heading"
2240
+ >
2241
+ <ng-content />
2242
+ </goa-public-form-task-list>
2243
+ `, isInline: true }); }
2244
+ }
2245
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPublicFormTaskList, decorators: [{
2246
+ type: Component,
2247
+ args: [{
2248
+ selector: "goab-public-form-task-list",
2249
+ standalone: true,
2250
+ template: `
2251
+ <goa-public-form-task-list
2252
+ [attr.heading]="heading"
2253
+ >
2254
+ <ng-content />
2255
+ </goa-public-form-task-list>
2256
+ `,
2257
+ schemas: [CUSTOM_ELEMENTS_SCHEMA]
2258
+ }]
2259
+ }], propDecorators: { heading: [{
2260
+ type: Input
2261
+ }] } });
2262
+
2079
2263
  class GoabFieldset {
2080
2264
  constructor() {
2081
2265
  this.dispatchOn = "continue";
@@ -2701,7 +2885,7 @@ class GoabInput extends GoabControlValueAccessor {
2701
2885
  this.onBlur.emit(detail);
2702
2886
  }
2703
2887
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabInput, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
2704
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabInput, isStandalone: true, selector: "goab-input", inputs: { type: "type", name: "name", debounce: ["debounce", "debounce", numberAttribute], autoCapitalize: "autoCapitalize", placeholder: "placeholder", leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", variant: "variant", focused: ["focused", "focused", booleanAttribute], readonly: ["readonly", "readonly", booleanAttribute], width: "width", prefix: "prefix", suffix: "suffix", ariaLabel: "ariaLabel", maxLength: ["maxLength", "maxLength", numberAttribute], min: "min", max: "max", step: ["step", "step", numberAttribute], ariaLabelledBy: "ariaLabelledBy", trailingIconAriaLabel: "trailingIconAriaLabel", textAlign: "textAlign" }, outputs: { onTrailingIconClick: "onTrailingIconClick", onFocus: "onFocus", onBlur: "onBlur", onKeyPress: "onKeyPress", onChange: "onChange" }, providers: [
2888
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabInput, isStandalone: true, selector: "goab-input", inputs: { type: "type", name: "name", debounce: ["debounce", "debounce", numberAttribute], autoCapitalize: "autoCapitalize", autoComplete: "autoComplete", placeholder: "placeholder", leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", variant: "variant", focused: ["focused", "focused", booleanAttribute], readonly: ["readonly", "readonly", booleanAttribute], width: "width", prefix: "prefix", suffix: "suffix", ariaLabel: "ariaLabel", maxLength: ["maxLength", "maxLength", numberAttribute], min: "min", max: "max", step: ["step", "step", numberAttribute], ariaLabelledBy: "ariaLabelledBy", trailingIconAriaLabel: "trailingIconAriaLabel", textAlign: "textAlign" }, outputs: { onTrailingIconClick: "onTrailingIconClick", onFocus: "onFocus", onBlur: "onBlur", onKeyPress: "onKeyPress", onChange: "onChange" }, providers: [
2705
2889
  {
2706
2890
  provide: NG_VALUE_ACCESSOR,
2707
2891
  multi: true,
@@ -2714,6 +2898,7 @@ class GoabInput extends GoabControlValueAccessor {
2714
2898
  [attr.focused]="focused"
2715
2899
  [attr.value]="value"
2716
2900
  [attr.autocapitalize]="autoCapitalize"
2901
+ [attr.autocomplete]="autoComplete"
2717
2902
  [attr.placeholder]="placeholder"
2718
2903
  [attr.leadingicon]="leadingIcon"
2719
2904
  [attr.trailingicon]="trailingIcon"
@@ -2762,6 +2947,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
2762
2947
  [attr.focused]="focused"
2763
2948
  [attr.value]="value"
2764
2949
  [attr.autocapitalize]="autoCapitalize"
2950
+ [attr.autocomplete]="autoComplete"
2765
2951
  [attr.placeholder]="placeholder"
2766
2952
  [attr.leadingicon]="leadingIcon"
2767
2953
  [attr.trailingicon]="trailingIcon"
@@ -2815,6 +3001,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
2815
3001
  args: [{ transform: numberAttribute }]
2816
3002
  }], autoCapitalize: [{
2817
3003
  type: Input
3004
+ }], autoComplete: [{
3005
+ type: Input
2818
3006
  }], placeholder: [{
2819
3007
  type: Input
2820
3008
  }], leadingIcon: [{
@@ -4196,6 +4384,7 @@ class GoabTextArea extends GoabControlValueAccessor {
4196
4384
  super(...arguments);
4197
4385
  this.countBy = "";
4198
4386
  this.maxCount = -1;
4387
+ this.autoComplete = "on";
4199
4388
  this.onChange = new EventEmitter();
4200
4389
  this.onKeyPress = new EventEmitter();
4201
4390
  }
@@ -4211,7 +4400,7 @@ class GoabTextArea extends GoabControlValueAccessor {
4211
4400
  this.onKeyPress.emit(detail);
4212
4401
  }
4213
4402
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTextArea, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
4214
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabTextArea, isStandalone: true, selector: "goab-textarea", inputs: { name: "name", placeholder: "placeholder", rows: ["rows", "rows", numberAttribute], readOnly: ["readOnly", "readOnly", booleanAttribute], width: "width", ariaLabel: "ariaLabel", countBy: "countBy", maxCount: "maxCount", maxWidth: "maxWidth" }, outputs: { onChange: "onChange", onKeyPress: "onKeyPress" }, providers: [
4403
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabTextArea, isStandalone: true, selector: "goab-textarea", inputs: { name: "name", placeholder: "placeholder", rows: ["rows", "rows", numberAttribute], readOnly: ["readOnly", "readOnly", booleanAttribute], width: "width", ariaLabel: "ariaLabel", countBy: "countBy", maxCount: "maxCount", maxWidth: "maxWidth", autoComplete: "autoComplete" }, outputs: { onChange: "onChange", onKeyPress: "onKeyPress" }, providers: [
4215
4404
  {
4216
4405
  provide: NG_VALUE_ACCESSOR,
4217
4406
  multi: true,
@@ -4231,6 +4420,7 @@ class GoabTextArea extends GoabControlValueAccessor {
4231
4420
  [attr.arialabel]="ariaLabel"
4232
4421
  [attr.countby]="countBy"
4233
4422
  [attr.maxcount]="maxCount"
4423
+ [attr.autocomplete]="autoComplete"
4234
4424
  [attr.testid]="testId"
4235
4425
  [attr.mt]="mt"
4236
4426
  [attr.mb]="mb"
@@ -4261,6 +4451,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
4261
4451
  [attr.arialabel]="ariaLabel"
4262
4452
  [attr.countby]="countBy"
4263
4453
  [attr.maxcount]="maxCount"
4454
+ [attr.autocomplete]="autoComplete"
4264
4455
  [attr.testid]="testId"
4265
4456
  [attr.mt]="mt"
4266
4457
  [attr.mb]="mb"
@@ -4300,6 +4491,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
4300
4491
  type: Input
4301
4492
  }], maxWidth: [{
4302
4493
  type: Input
4494
+ }], autoComplete: [{
4495
+ type: Input
4303
4496
  }], onChange: [{
4304
4497
  type: Output
4305
4498
  }], onKeyPress: [{
@@ -4356,5 +4549,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
4356
4549
  * Generated bundle index. Do not edit.
4357
4550
  */
4358
4551
 
4359
- 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 };
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 };
4360
4553
  //# sourceMappingURL=abgov-angular-components.mjs.map