@abgov/angular-components 4.10.0-dev.6 → 4.10.0-dev.8

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.
@@ -1612,6 +1612,60 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
1612
1612
  type: Input
1613
1613
  }] } });
1614
1614
 
1615
+ class GoabDataGrid {
1616
+ constructor(cdr) {
1617
+ this.cdr = cdr;
1618
+ this.keyboardIconVisibility = "visible";
1619
+ this.keyboardIconPosition = "left";
1620
+ this.isReady = false;
1621
+ }
1622
+ ngOnInit() {
1623
+ // For Angular, we need to delay rendering the web component
1624
+ // to ensure all attributes are properly bound before the component initializes
1625
+ setTimeout(() => {
1626
+ this.isReady = true;
1627
+ this.cdr.detectChanges();
1628
+ }, 0);
1629
+ }
1630
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: GoabDataGrid, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
1631
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: GoabDataGrid, isStandalone: true, selector: "goab-data-grid", inputs: { keyboardIconVisibility: "keyboardIconVisibility", keyboardIconPosition: "keyboardIconPosition", keyboardNav: "keyboardNav" }, ngImport: i0, template: `
1632
+ <goa-data-grid
1633
+ *ngIf="isReady"
1634
+ [attr.keyboard-icon-visibility]="keyboardIconVisibility"
1635
+ [attr.keyboard-icon-position]="keyboardIconPosition"
1636
+ [attr.keyboard-nav]="keyboardNav"
1637
+ >
1638
+ <ng-content></ng-content>
1639
+ </goa-data-grid>
1640
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
1641
+ }
1642
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: GoabDataGrid, decorators: [{
1643
+ type: Component,
1644
+ args: [{
1645
+ standalone: true,
1646
+ selector: "goab-data-grid",
1647
+ imports: [CommonModule],
1648
+ template: `
1649
+ <goa-data-grid
1650
+ *ngIf="isReady"
1651
+ [attr.keyboard-icon-visibility]="keyboardIconVisibility"
1652
+ [attr.keyboard-icon-position]="keyboardIconPosition"
1653
+ [attr.keyboard-nav]="keyboardNav"
1654
+ >
1655
+ <ng-content></ng-content>
1656
+ </goa-data-grid>
1657
+ `,
1658
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
1659
+ }]
1660
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { keyboardIconVisibility: [{
1661
+ type: Input
1662
+ }], keyboardIconPosition: [{
1663
+ type: Input
1664
+ }], keyboardNav: [{
1665
+ type: Input,
1666
+ args: [{ required: true }]
1667
+ }] } });
1668
+
1615
1669
  class GoabDatePicker extends GoabControlValueAccessor {
1616
1670
  formatValue(val) {
1617
1671
  if (!val)
@@ -6132,5 +6186,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
6132
6186
  * Generated bundle index. Do not edit.
6133
6187
  */
6134
6188
 
6135
- 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, 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 };
6189
+ 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 };
6136
6190
  //# sourceMappingURL=abgov-angular-components.mjs.map