@abgov/angular-components 4.10.0-dev.5 → 4.10.0-dev.7

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.
@@ -1537,13 +1537,15 @@ class GoabContainer extends GoabBaseComponent {
1537
1537
  }, 0);
1538
1538
  }
1539
1539
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: GoabContainer, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
1540
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: GoabContainer, isStandalone: true, selector: "goab-container", inputs: { type: "type", accent: "accent", padding: "padding", width: "width", maxWidth: "maxWidth", title: "title", actions: "actions" }, usesInheritance: true, ngImport: i0, template: `<goa-container
1540
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: GoabContainer, isStandalone: true, selector: "goab-container", inputs: { type: "type", accent: "accent", padding: "padding", width: "width", maxWidth: "maxWidth", minHeight: "minHeight", maxHeight: "maxHeight", title: "title", actions: "actions" }, usesInheritance: true, ngImport: i0, template: `<goa-container
1541
1541
  *ngIf="isReady"
1542
1542
  [attr.type]="type"
1543
1543
  [attr.accent]="accent"
1544
1544
  [attr.padding]="padding"
1545
1545
  [attr.width]="width"
1546
1546
  [attr.maxwidth]="maxWidth"
1547
+ [attr.minheight]="minHeight"
1548
+ [attr.maxheight]="maxHeight"
1547
1549
  [attr.testid]="testId"
1548
1550
  [attr.mt]="mt"
1549
1551
  [attr.mb]="mb"
@@ -1572,6 +1574,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
1572
1574
  [attr.padding]="padding"
1573
1575
  [attr.width]="width"
1574
1576
  [attr.maxwidth]="maxWidth"
1577
+ [attr.minheight]="minHeight"
1578
+ [attr.maxheight]="maxHeight"
1575
1579
  [attr.testid]="testId"
1576
1580
  [attr.mt]="mt"
1577
1581
  [attr.mb]="mb"
@@ -1598,12 +1602,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
1598
1602
  type: Input
1599
1603
  }], maxWidth: [{
1600
1604
  type: Input
1605
+ }], minHeight: [{
1606
+ type: Input
1607
+ }], maxHeight: [{
1608
+ type: Input
1601
1609
  }], title: [{
1602
1610
  type: Input
1603
1611
  }], actions: [{
1604
1612
  type: Input
1605
1613
  }] } });
1606
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
+
1607
1669
  class GoabDatePicker extends GoabControlValueAccessor {
1608
1670
  formatValue(val) {
1609
1671
  if (!val)
@@ -6124,5 +6186,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
6124
6186
  * Generated bundle index. Do not edit.
6125
6187
  */
6126
6188
 
6127
- 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 };
6128
6190
  //# sourceMappingURL=abgov-angular-components.mjs.map