@abgov/angular-components 4.10.0-dev.11 → 4.10.0-dev.12

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.
@@ -6189,9 +6189,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
6189
6189
  type: Input
6190
6190
  }] } });
6191
6191
 
6192
+ class GoabxWorkSideMenuGroup {
6193
+ constructor(cdr) {
6194
+ this.cdr = cdr;
6195
+ this.isReady = false;
6196
+ }
6197
+ ngOnInit() {
6198
+ // For Angular 20, we need to delay rendering the web component
6199
+ // to ensure all attributes are properly bound before the component initializes
6200
+ setTimeout(() => {
6201
+ this.isReady = true;
6202
+ this.cdr.detectChanges();
6203
+ }, 0);
6204
+ }
6205
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GoabxWorkSideMenuGroup, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
6206
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: GoabxWorkSideMenuGroup, isStandalone: true, selector: "goabx-work-side-menu-group", inputs: { heading: "heading", icon: "icon", testId: "testId" }, ngImport: i0, template: `
6207
+ <goa-work-side-menu-group
6208
+ *ngIf="isReady"
6209
+ [attr.heading]="heading"
6210
+ [attr.icon]="icon"
6211
+ [attr.testid]="testId"
6212
+ >
6213
+ <ng-content />
6214
+ </goa-work-side-menu-group>
6215
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
6216
+ }
6217
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GoabxWorkSideMenuGroup, decorators: [{
6218
+ type: Component,
6219
+ args: [{
6220
+ standalone: true,
6221
+ selector: "goabx-work-side-menu-group", // eslint-disable-line
6222
+ imports: [CommonModule],
6223
+ template: `
6224
+ <goa-work-side-menu-group
6225
+ *ngIf="isReady"
6226
+ [attr.heading]="heading"
6227
+ [attr.icon]="icon"
6228
+ [attr.testid]="testId"
6229
+ >
6230
+ <ng-content />
6231
+ </goa-work-side-menu-group>
6232
+ `,
6233
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
6234
+ }]
6235
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { heading: [{
6236
+ type: Input,
6237
+ args: [{ required: true }]
6238
+ }], icon: [{
6239
+ type: Input,
6240
+ args: [{ required: true }]
6241
+ }], testId: [{
6242
+ type: Input
6243
+ }] } });
6244
+
6192
6245
  /**
6193
6246
  * Generated bundle index. Do not edit.
6194
6247
  */
6195
6248
 
6196
- export { AngularComponentsModule, CheckedDirective, GoabAccordion, GoabAppFooter, GoabAppFooterMetaSection, GoabAppFooterNavSection, GoabAppHeader, GoabAppHeaderMenu, GoabBadge, GoabBlock, GoabButton, GoabButtonGroup, GoabCalendar, GoabCallout, GoabCard, GoabCardActions, GoabCardContent, GoabCardImage, GoabCheckbox, GoabCheckboxList, GoabChip, GoabCircularProgress, GoabColumnLayout, GoabContainer, GoabDataGrid, GoabDatePicker, GoabDetails, GoabDivider, GoabDrawer, GoabDropdown, GoabDropdownItem, GoabFieldset, GoabFileUploadCard, GoabFileUploadInput, GoabFilterChip, GoabFormItem, GoabFormItemSlot, GoabFormStep, GoabFormStepper, GoabGrid, GoabHeroBanner, GoabIcon, GoabIconButton, GoabInput, GoabInputNumber, GoabLinearProgress, GoabLink, GoabMenuAction, GoabMenuButton, 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, GoabTemporaryNotificationCtrl, GoabText, GoabTextArea, GoabTooltip, GoabxWorkSideMenu, GoabxWorkSideMenuItem, ValueDirective, ValueListDirective };
6249
+ export { AngularComponentsModule, CheckedDirective, GoabAccordion, GoabAppFooter, GoabAppFooterMetaSection, GoabAppFooterNavSection, GoabAppHeader, GoabAppHeaderMenu, GoabBadge, GoabBlock, GoabButton, GoabButtonGroup, GoabCalendar, GoabCallout, GoabCard, GoabCardActions, GoabCardContent, GoabCardImage, GoabCheckbox, GoabCheckboxList, GoabChip, GoabCircularProgress, GoabColumnLayout, GoabContainer, GoabDataGrid, GoabDatePicker, GoabDetails, GoabDivider, GoabDrawer, GoabDropdown, GoabDropdownItem, GoabFieldset, GoabFileUploadCard, GoabFileUploadInput, GoabFilterChip, GoabFormItem, GoabFormItemSlot, GoabFormStep, GoabFormStepper, GoabGrid, GoabHeroBanner, GoabIcon, GoabIconButton, GoabInput, GoabInputNumber, GoabLinearProgress, GoabLink, GoabMenuAction, GoabMenuButton, 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, GoabTemporaryNotificationCtrl, GoabText, GoabTextArea, GoabTooltip, GoabxWorkSideMenu, GoabxWorkSideMenuGroup, GoabxWorkSideMenuItem, ValueDirective, ValueListDirective };
6197
6250
  //# sourceMappingURL=abgov-angular-components.mjs.map