@abgov/angular-components 4.3.0-alpha.2 → 4.3.0-alpha.4

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.
Files changed (70) hide show
  1. package/esm2022/lib/components/accordion/accordion.mjs +8 -16
  2. package/esm2022/lib/components/badge/badge.mjs +6 -15
  3. package/esm2022/lib/components/base.component.mjs +118 -0
  4. package/esm2022/lib/components/block/block.mjs +6 -15
  5. package/esm2022/lib/components/button/button.mjs +8 -16
  6. package/esm2022/lib/components/button-group/button-group.mjs +6 -15
  7. package/esm2022/lib/components/callout/callout.mjs +7 -15
  8. package/esm2022/lib/components/card/card.mjs +6 -15
  9. package/esm2022/lib/components/checkbox/checkbox.mjs +52 -87
  10. package/esm2022/lib/components/chip/chip.mjs +7 -15
  11. package/esm2022/lib/components/container/container.mjs +6 -14
  12. package/esm2022/lib/components/date-picker/date-picker.mjs +6 -32
  13. package/esm2022/lib/components/details/details.mjs +6 -15
  14. package/esm2022/lib/components/divider/divider.mjs +8 -17
  15. package/esm2022/lib/components/dropdown/dropdown.mjs +10 -45
  16. package/esm2022/lib/components/file-upload-input/file-upload-input.mjs +7 -15
  17. package/esm2022/lib/components/filter-chip/filter-chip.mjs +7 -15
  18. package/esm2022/lib/components/form-item/form-item.mjs +6 -15
  19. package/esm2022/lib/components/form-stepper/form-stepper.mjs +8 -16
  20. package/esm2022/lib/components/grid/grid.mjs +5 -14
  21. package/esm2022/lib/components/icon/icon.mjs +7 -15
  22. package/esm2022/lib/components/icon-button/icon-button.mjs +8 -16
  23. package/esm2022/lib/components/input/input.mjs +7 -43
  24. package/esm2022/lib/components/modal/modal.mjs +14 -10
  25. package/esm2022/lib/components/pages/pages.mjs +5 -12
  26. package/esm2022/lib/components/pagination/pagination.mjs +9 -17
  27. package/esm2022/lib/components/popover/popover.mjs +6 -14
  28. package/esm2022/lib/components/radio-group/radio-group.mjs +8 -41
  29. package/esm2022/lib/components/radio-item/radio-item.mjs +8 -13
  30. package/esm2022/lib/components/side-menu-group/side-menu-group.mjs +5 -14
  31. package/esm2022/lib/components/skeleton/skeleton.mjs +7 -15
  32. package/esm2022/lib/components/table/table.mjs +8 -16
  33. package/esm2022/lib/components/textarea/textarea.mjs +11 -47
  34. package/esm2022/lib/components/tooltip/tooltip.mjs +6 -15
  35. package/fesm2022/abgov-angular-components.mjs +321 -648
  36. package/fesm2022/abgov-angular-components.mjs.map +1 -1
  37. package/lib/components/accordion/accordion.d.ts +4 -8
  38. package/lib/components/badge/badge.d.ts +4 -8
  39. package/lib/components/base.component.d.ts +58 -0
  40. package/lib/components/block/block.d.ts +3 -7
  41. package/lib/components/button/button.d.ts +4 -8
  42. package/lib/components/button-group/button-group.d.ts +4 -8
  43. package/lib/components/callout/callout.d.ts +4 -8
  44. package/lib/components/card/card.d.ts +3 -8
  45. package/lib/components/checkbox/checkbox.d.ts +4 -20
  46. package/lib/components/chip/chip.d.ts +4 -8
  47. package/lib/components/container/container.d.ts +4 -8
  48. package/lib/components/date-picker/date-picker.d.ts +4 -17
  49. package/lib/components/details/details.d.ts +3 -8
  50. package/lib/components/divider/divider.d.ts +3 -8
  51. package/lib/components/dropdown/dropdown.d.ts +4 -21
  52. package/lib/components/file-upload-input/file-upload-input.d.ts +4 -8
  53. package/lib/components/filter-chip/filter-chip.d.ts +4 -8
  54. package/lib/components/form-item/form-item.d.ts +4 -8
  55. package/lib/components/form-stepper/form-stepper.d.ts +4 -8
  56. package/lib/components/grid/grid.d.ts +3 -7
  57. package/lib/components/icon/icon.d.ts +4 -8
  58. package/lib/components/icon-button/icon-button.d.ts +4 -8
  59. package/lib/components/input/input.d.ts +4 -21
  60. package/lib/components/pages/pages.d.ts +3 -7
  61. package/lib/components/pagination/pagination.d.ts +4 -8
  62. package/lib/components/popover/popover.d.ts +4 -8
  63. package/lib/components/radio-group/radio-group.d.ts +4 -20
  64. package/lib/components/radio-item/radio-item.d.ts +3 -7
  65. package/lib/components/side-menu-group/side-menu-group.d.ts +4 -8
  66. package/lib/components/skeleton/skeleton.d.ts +4 -8
  67. package/lib/components/table/table.d.ts +4 -8
  68. package/lib/components/textarea/textarea.d.ts +4 -21
  69. package/lib/components/tooltip/tooltip.d.ts +4 -8
  70. package/package.json +1 -1
@@ -1,21 +1,17 @@
1
- import { GoabAccordionHeadingSize, GoabAccordionIconPosition, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabAccordionHeadingSize, GoabAccordionIconPosition } from "@abgov/ui-components-common";
2
2
  import { TemplateRef, EventEmitter } from "@angular/core";
3
+ import { GoabBaseComponent } from "../base.component";
3
4
  import * as i0 from "@angular/core";
4
- export declare class GoabAccordion {
5
+ export declare class GoabAccordion extends GoabBaseComponent {
5
6
  heading?: string;
6
7
  secondaryText?: string;
7
- testId?: string;
8
8
  open?: boolean;
9
9
  headingSize?: GoabAccordionHeadingSize;
10
10
  headingContent: TemplateRef<any>;
11
11
  maxWidth?: string;
12
12
  iconPosition?: GoabAccordionIconPosition;
13
- mt?: Spacing;
14
- mb?: Spacing;
15
- ml?: Spacing;
16
- mr?: Spacing;
17
13
  onChange: EventEmitter<boolean>;
18
14
  _onChange(e: Event): void;
19
15
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabAccordion, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabAccordion, "goab-accordion", never, { "heading": { "alias": "heading"; "required": false; }; "secondaryText": { "alias": "secondaryText"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "open": { "alias": "open"; "required": false; }; "headingSize": { "alias": "headingSize"; "required": false; }; "headingContent": { "alias": "headingContent"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabAccordion, "goab-accordion", never, { "heading": { "alias": "heading"; "required": false; }; "secondaryText": { "alias": "secondaryText"; "required": false; }; "open": { "alias": "open"; "required": false; }; "headingSize": { "alias": "headingSize"; "required": false; }; "headingContent": { "alias": "headingContent"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
21
17
  }
@@ -1,15 +1,11 @@
1
- import { GoabBadgeType, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabBadgeType } from "@abgov/ui-components-common";
2
+ import { GoabBaseComponent } from "../base.component";
2
3
  import * as i0 from "@angular/core";
3
- export declare class GoabBadge {
4
+ export declare class GoabBadge extends GoabBaseComponent {
4
5
  type?: GoabBadgeType;
5
6
  content?: string;
6
- testId?: string;
7
7
  icon?: boolean;
8
8
  ariaLabel?: string;
9
- mt?: Spacing;
10
- mb?: Spacing;
11
- ml?: Spacing;
12
- mr?: Spacing;
13
9
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabBadge, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabBadge, "goab-badge", never, { "type": { "alias": "type"; "required": false; }; "content": { "alias": "content"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, never, true, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabBadge, "goab-badge", never, { "type": { "alias": "type"; "required": false; }; "content": { "alias": "content"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
15
11
  }
@@ -0,0 +1,58 @@
1
+ import { Spacing } from "@abgov/ui-components-common";
2
+ import { ControlValueAccessor } from "@angular/forms";
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class GoabBaseComponent {
5
+ mt?: Spacing;
6
+ mb?: Spacing;
7
+ ml?: Spacing;
8
+ mr?: Spacing;
9
+ testId?: string;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<GoabBaseComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabBaseComponent, "ng-component", never, { "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, never, true, never>;
12
+ }
13
+ export declare abstract class GoabControlValueAccessor extends GoabBaseComponent implements ControlValueAccessor {
14
+ id?: string;
15
+ disabled?: boolean;
16
+ error?: boolean;
17
+ value?: unknown | null | undefined;
18
+ /**
19
+ * Function to handle changes in the form control value.
20
+ * @param {unknown} value - The new value.
21
+ */
22
+ fcChange?: (value: unknown) => void;
23
+ /**
24
+ * Function to handle touch events on the form control.
25
+ */
26
+ fcTouched?: () => unknown;
27
+ private touched;
28
+ /**
29
+ * Marks the component as touched. If the component is not already marked as touched,
30
+ * it triggers the `fcTouched` callback (if defined) and sets the `touched` property to `true`.
31
+ */
32
+ markAsTouched(): void;
33
+ /**
34
+ * Writes a new value to the form control.
35
+ * @param {unknown} value - The value to write.
36
+ */
37
+ writeValue(value: unknown): void;
38
+ /**
39
+ * Registers a function to call when the form control value changes.
40
+ * @param {function} fn - The function to call.
41
+ */
42
+ registerOnChange(fn: any): void;
43
+ /**
44
+ * Registers a function to call when the form control is touched.
45
+ * @param {function} fn - The function to call.
46
+ */
47
+ registerOnTouched(fn: any): void;
48
+ /**
49
+ * Sets the disabled state of the component.
50
+ *
51
+ * @param isDisabled - A boolean indicating whether the component should be disabled.
52
+ */
53
+ setDisabledState?(isDisabled: boolean): void;
54
+ static ɵfac: i0.ɵɵFactoryDeclaration<GoabControlValueAccessor, never>;
55
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabControlValueAccessor, "ng-component", never, { "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
56
+ static ngAcceptInputType_disabled: unknown;
57
+ static ngAcceptInputType_error: unknown;
58
+ }
@@ -1,14 +1,10 @@
1
1
  import { GoabBlockAlignment, GoabBlockDirection, Spacing } from "@abgov/ui-components-common";
2
+ import { GoabBaseComponent } from "../base.component";
2
3
  import * as i0 from "@angular/core";
3
- export declare class GoabBlock {
4
+ export declare class GoabBlock extends GoabBaseComponent {
4
5
  gap?: Spacing;
5
6
  direction?: GoabBlockDirection;
6
7
  alignment?: GoabBlockAlignment;
7
- testId?: string;
8
- mt?: Spacing;
9
- mb?: Spacing;
10
- ml?: Spacing;
11
- mr?: Spacing;
12
8
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabBlock, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabBlock, "goab-block", never, { "gap": { "alias": "gap"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, ["*"], true, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabBlock, "goab-block", never, { "gap": { "alias": "gap"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; }, {}, never, ["*"], true, never>;
14
10
  }
@@ -1,7 +1,8 @@
1
- import { GoabButtonSize, GoabButtonType, GoabButtonVariant, GoabIconType, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabButtonSize, GoabButtonType, GoabButtonVariant, GoabIconType } from "@abgov/ui-components-common";
2
2
  import { EventEmitter } from "@angular/core";
3
+ import { GoabBaseComponent } from "../base.component";
3
4
  import * as i0 from "@angular/core";
4
- export declare class GoabButton {
5
+ export declare class GoabButton extends GoabBaseComponent {
5
6
  type?: GoabButtonType;
6
7
  size?: GoabButtonSize;
7
8
  variant?: GoabButtonVariant;
@@ -9,13 +10,8 @@ export declare class GoabButton {
9
10
  leadingIcon?: GoabIconType;
10
11
  trailingIcon?: GoabIconType;
11
12
  width?: string;
12
- testId?: string;
13
- mt?: Spacing;
14
- mb?: Spacing;
15
- ml?: Spacing;
16
- mr?: Spacing;
17
13
  onClick: EventEmitter<any>;
18
14
  _onClick(): void;
19
15
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabButton, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabButton, "goab-button", never, { "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "trailingIcon": { "alias": "trailingIcon"; "required": false; }; "width": { "alias": "width"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, { "onClick": "onClick"; }, never, ["*"], true, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabButton, "goab-button", never, { "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "trailingIcon": { "alias": "trailingIcon"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "onClick": "onClick"; }, never, ["*"], true, never>;
21
17
  }
@@ -1,13 +1,9 @@
1
- import { GoabButtonGroupAlignment, GoabButtonGroupGap, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabButtonGroupAlignment, GoabButtonGroupGap } from "@abgov/ui-components-common";
2
+ import { GoabBaseComponent } from "../base.component";
2
3
  import * as i0 from "@angular/core";
3
- export declare class GoabButtonGroup {
4
+ export declare class GoabButtonGroup extends GoabBaseComponent {
4
5
  alignment?: GoabButtonGroupAlignment;
5
6
  gap?: GoabButtonGroupGap;
6
- testId?: string;
7
- mt?: Spacing;
8
- mb?: Spacing;
9
- ml?: Spacing;
10
- mr?: Spacing;
11
7
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabButtonGroup, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabButtonGroup, "goab-button-group", never, { "alignment": { "alias": "alignment"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, ["*"], true, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabButtonGroup, "goab-button-group", never, { "alignment": { "alias": "alignment"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; }, {}, never, ["*"], true, never>;
13
9
  }
@@ -1,17 +1,13 @@
1
- import { GoabCalloutAriaLive, GoabCalloutSize, GoabCalloutType, Spacing, GoabCalloutIconTheme } from "@abgov/ui-components-common";
1
+ import { GoabCalloutAriaLive, GoabCalloutSize, GoabCalloutType, GoabCalloutIconTheme } from "@abgov/ui-components-common";
2
+ import { GoabBaseComponent } from "../base.component";
2
3
  import * as i0 from "@angular/core";
3
- export declare class GoabCallout {
4
+ export declare class GoabCallout extends GoabBaseComponent {
4
5
  type?: GoabCalloutType;
5
6
  heading?: string;
6
7
  size?: GoabCalloutSize;
7
8
  maxWidth?: string;
8
9
  ariaLive?: GoabCalloutAriaLive;
9
10
  iconTheme?: GoabCalloutIconTheme;
10
- testId?: string;
11
- mt?: Spacing;
12
- mb?: Spacing;
13
- ml?: Spacing;
14
- mr?: Spacing;
15
11
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabCallout, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabCallout, "goab-callout", never, { "type": { "alias": "type"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "ariaLive": { "alias": "ariaLive"; "required": false; }; "iconTheme": { "alias": "iconTheme"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, ["*"], true, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabCallout, "goab-callout", never, { "type": { "alias": "type"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "ariaLive": { "alias": "ariaLive"; "required": false; }; "iconTheme": { "alias": "iconTheme"; "required": false; }; }, {}, never, ["*"], true, never>;
17
13
  }
@@ -1,13 +1,8 @@
1
- import { Spacing } from "@abgov/ui-components-common";
1
+ import { GoabBaseComponent } from "../base.component";
2
2
  import * as i0 from "@angular/core";
3
- export declare class GoabCard {
3
+ export declare class GoabCard extends GoabBaseComponent {
4
4
  elevation?: number;
5
5
  width?: string;
6
- testId?: string;
7
- mt?: Spacing;
8
- mb?: Spacing;
9
- ml?: Spacing;
10
- mr?: Spacing;
11
6
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabCard, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabCard, "goab-card", never, { "elevation": { "alias": "elevation"; "required": false; }; "width": { "alias": "width"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, ["*"], true, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabCard, "goab-card", never, { "elevation": { "alias": "elevation"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, ["*"], true, never>;
13
8
  }
@@ -1,35 +1,19 @@
1
- import { GoabCheckboxOnChangeDetail, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabCheckboxOnChangeDetail } from "@abgov/ui-components-common";
2
2
  import { EventEmitter, TemplateRef } from "@angular/core";
3
- import { ControlValueAccessor } from "@angular/forms";
3
+ import { GoabControlValueAccessor } from "../base.component";
4
4
  import * as i0 from "@angular/core";
5
- export declare class GoabCheckbox implements ControlValueAccessor {
5
+ export declare class GoabCheckbox extends GoabControlValueAccessor {
6
6
  name?: string;
7
7
  checked?: boolean;
8
- disabled?: boolean;
9
- error?: boolean;
10
8
  text?: string;
11
9
  value?: string | number | boolean;
12
- testId?: string;
13
10
  ariaLabel?: string;
14
11
  description: string | TemplateRef<any>;
15
- id?: string;
16
12
  maxWidth?: string;
17
- mt?: Spacing;
18
- mb?: Spacing;
19
- ml?: Spacing;
20
- mr?: Spacing;
21
13
  onChange: EventEmitter<GoabCheckboxOnChangeDetail>;
22
14
  getDescriptionAsString(): string;
23
15
  getDescriptionAsTemplate(): TemplateRef<any> | null;
24
16
  _onChange(e: Event): void;
25
- private fcChange?;
26
- private fcTouched?;
27
- touched: boolean;
28
- markAsTouched(): void;
29
- writeValue(value: string | boolean): void;
30
- registerOnChange(fn: any): void;
31
- registerOnTouched(fn: any): void;
32
- setDisabledState?(isDisabled: boolean): void;
33
17
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabCheckbox, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabCheckbox, "goab-checkbox", never, { "name": { "alias": "name"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "text": { "alias": "text"; "required": false; }; "value": { "alias": "value"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "description": { "alias": "description"; "required": false; }; "id": { "alias": "id"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabCheckbox, "goab-checkbox", never, { "name": { "alias": "name"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "text": { "alias": "text"; "required": false; }; "value": { "alias": "value"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "description": { "alias": "description"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
35
19
  }
@@ -1,20 +1,16 @@
1
- import { GoabChipTheme, GoabChipVariant, GoabIconType, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabChipTheme, GoabChipVariant, GoabIconType } from "@abgov/ui-components-common";
2
2
  import { EventEmitter } from "@angular/core";
3
+ import { GoabBaseComponent } from "../base.component";
3
4
  import * as i0 from "@angular/core";
4
- export declare class GoabChip {
5
+ export declare class GoabChip extends GoabBaseComponent {
5
6
  leadingIcon?: GoabIconType | null;
6
7
  error?: boolean;
7
8
  deletable?: boolean;
8
9
  content?: string;
9
- testId?: string;
10
10
  variant?: GoabChipVariant;
11
11
  iconTheme?: GoabChipTheme;
12
- mt?: Spacing;
13
- mb?: Spacing;
14
- ml?: Spacing;
15
- mr?: Spacing;
16
12
  onClick: EventEmitter<any>;
17
13
  _onClick(): void;
18
14
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabChip, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabChip, "goab-chip", never, { "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "error": { "alias": "error"; "required": false; }; "deletable": { "alias": "deletable"; "required": false; }; "content": { "alias": "content"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "iconTheme": { "alias": "iconTheme"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, { "onClick": "onClick"; }, never, ["*"], true, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabChip, "goab-chip", never, { "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "error": { "alias": "error"; "required": false; }; "deletable": { "alias": "deletable"; "required": false; }; "content": { "alias": "content"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "iconTheme": { "alias": "iconTheme"; "required": false; }; }, { "onClick": "onClick"; }, never, ["*"], true, never>;
20
16
  }
@@ -1,19 +1,15 @@
1
- import { GoabContainerAccent, GoabContainerPadding, GoabContainerType, GoabContainerWidth, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabContainerAccent, GoabContainerPadding, GoabContainerType, GoabContainerWidth } from "@abgov/ui-components-common";
2
2
  import { TemplateRef } from "@angular/core";
3
+ import { GoabBaseComponent } from "../base.component";
3
4
  import * as i0 from "@angular/core";
4
- export declare class GoabContainer {
5
+ export declare class GoabContainer extends GoabBaseComponent {
5
6
  type?: GoabContainerType;
6
7
  accent?: GoabContainerAccent;
7
8
  padding?: GoabContainerPadding;
8
9
  width?: GoabContainerWidth;
9
10
  maxWidth?: string;
10
- testId?: string;
11
11
  title: TemplateRef<any>;
12
12
  actions: TemplateRef<any>;
13
- mt?: Spacing;
14
- mb?: Spacing;
15
- ml?: Spacing;
16
- mr?: Spacing;
17
13
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabContainer, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabContainer, "goab-container", never, { "type": { "alias": "type"; "required": false; }; "accent": { "alias": "accent"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "title": { "alias": "title"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, ["*"], true, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabContainer, "goab-container", never, { "type": { "alias": "type"; "required": false; }; "accent": { "alias": "accent"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "title": { "alias": "title"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, {}, never, ["*"], true, never>;
19
15
  }
@@ -1,37 +1,24 @@
1
- import { GoabDatePickerOnChangeDetail, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabDatePickerOnChangeDetail } from "@abgov/ui-components-common";
2
2
  import { EventEmitter, ElementRef } from "@angular/core";
3
- import { ControlValueAccessor } from "@angular/forms";
3
+ import { GoabControlValueAccessor } from "../base.component";
4
4
  import * as i0 from "@angular/core";
5
- export declare class GoabDatePicker implements ControlValueAccessor {
5
+ export declare class GoabDatePicker extends GoabControlValueAccessor {
6
6
  protected elementRef: ElementRef;
7
7
  name?: string;
8
8
  value?: Date | string | null | undefined;
9
9
  min?: Date | string;
10
10
  max?: Date | string;
11
- error?: boolean;
12
- disabled?: boolean;
13
11
  /***
14
12
  * @deprecated This property has no effect and will be removed in a future version
15
13
  */
16
14
  relative?: boolean;
17
- testId?: string;
18
- mt?: Spacing;
19
- mb?: Spacing;
20
- ml?: Spacing;
21
- mr?: Spacing;
22
15
  onChange: EventEmitter<GoabDatePickerOnChangeDetail>;
23
16
  formatValue(val: Date | string | null | undefined): string;
24
17
  _onChange(e: Event): void;
25
18
  constructor(elementRef: ElementRef);
26
19
  setDisabledState(isDisabled: boolean): void;
27
20
  listenDisabledChange(isDisabled: boolean): void;
28
- private fcChange?;
29
- private fcTouched?;
30
- touched: boolean;
31
- markAsTouched(): void;
32
21
  writeValue(value: Date | null): void;
33
- registerOnChange(fn: any): void;
34
- registerOnTouched(fn: any): void;
35
22
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabDatePicker, never>;
36
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabDatePicker, "goab-date-picker", never, { "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "error": { "alias": "error"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "relative": { "alias": "relative"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabDatePicker, "goab-date-picker", never, { "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "relative": { "alias": "relative"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
37
24
  }
@@ -1,14 +1,9 @@
1
- import { Spacing } from "@abgov/ui-components-common";
1
+ import { GoabBaseComponent } from "../base.component";
2
2
  import * as i0 from "@angular/core";
3
- export declare class GoabDetails {
3
+ export declare class GoabDetails extends GoabBaseComponent {
4
4
  heading: string;
5
- testId?: string;
6
5
  open?: boolean;
7
6
  maxWidth?: string;
8
- mt?: Spacing;
9
- mb?: Spacing;
10
- ml?: Spacing;
11
- mr?: Spacing;
12
7
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabDetails, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabDetails, "goab-details", never, { "heading": { "alias": "heading"; "required": true; }; "testId": { "alias": "testId"; "required": false; }; "open": { "alias": "open"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, ["*"], true, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabDetails, "goab-details", never, { "heading": { "alias": "heading"; "required": true; }; "open": { "alias": "open"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; }, {}, never, ["*"], true, never>;
14
9
  }
@@ -1,11 +1,6 @@
1
- import { Spacing } from "@abgov/ui-components-common";
1
+ import { GoabBaseComponent } from "../base.component";
2
2
  import * as i0 from "@angular/core";
3
- export declare class GoabDivider {
4
- testId?: string;
5
- mt?: Spacing;
6
- mb?: Spacing;
7
- ml?: Spacing;
8
- mr?: Spacing;
3
+ export declare class GoabDivider extends GoabBaseComponent {
9
4
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabDivider, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabDivider, "goab-divider", never, { "testId": { "alias": "testId"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, never, true, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabDivider, "goab-divider", never, {}, {}, never, never, true, never>;
11
6
  }
@@ -1,41 +1,24 @@
1
- import { GoabDropdownOnChangeDetail, GoabIconType, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabDropdownOnChangeDetail, GoabIconType } from "@abgov/ui-components-common";
2
2
  import { EventEmitter } from "@angular/core";
3
- import { ControlValueAccessor } from "@angular/forms";
3
+ import { GoabControlValueAccessor } from "../base.component";
4
4
  import * as i0 from "@angular/core";
5
- export declare class GoabDropdown implements ControlValueAccessor {
5
+ export declare class GoabDropdown extends GoabControlValueAccessor {
6
6
  name?: string;
7
- value?: string;
8
7
  ariaLabel?: string;
9
8
  ariaLabelledBy?: string;
10
- id?: string;
11
- disabled?: boolean;
12
- error?: boolean;
13
9
  filterable?: boolean;
14
10
  leadingIcon?: GoabIconType;
15
11
  maxHeight?: string;
16
12
  multiselect?: boolean;
17
13
  native?: boolean;
18
14
  placeholder?: string;
19
- testId?: string;
20
15
  width?: string;
21
16
  /***
22
17
  * @deprecated This property has no effect and will be removed in a future version
23
18
  */
24
19
  relative?: boolean;
25
- mt?: Spacing;
26
- mb?: Spacing;
27
- ml?: Spacing;
28
- mr?: Spacing;
29
20
  onChange: EventEmitter<GoabDropdownOnChangeDetail>;
30
21
  _onChange(e: Event): void;
31
- private fcChange?;
32
- private fcTouched?;
33
- touched: boolean;
34
- markAsTouched(): void;
35
- writeValue(value: string): void;
36
- registerOnChange(fn: any): void;
37
- registerOnTouched(fn: any): void;
38
- setDisabledState?(isDisabled: boolean): void;
39
22
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabDropdown, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabDropdown, "goab-dropdown", never, { "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "multiselect": { "alias": "multiselect"; "required": false; }; "native": { "alias": "native"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "width": { "alias": "width"; "required": false; }; "relative": { "alias": "relative"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabDropdown, "goab-dropdown", never, { "name": { "alias": "name"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "multiselect": { "alias": "multiselect"; "required": false; }; "native": { "alias": "native"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "width": { "alias": "width"; "required": false; }; "relative": { "alias": "relative"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
41
24
  }
@@ -1,18 +1,14 @@
1
- import { GoabFileUploadInputOnSelectFileDetail, GoabFileUploadInputVariant, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabFileUploadInputOnSelectFileDetail, GoabFileUploadInputVariant } from "@abgov/ui-components-common";
2
2
  import { EventEmitter } from "@angular/core";
3
+ import { GoabBaseComponent } from "../base.component";
3
4
  import * as i0 from "@angular/core";
4
- export declare class GoabFileUploadInput {
5
+ export declare class GoabFileUploadInput extends GoabBaseComponent {
5
6
  id?: string;
6
7
  variant: GoabFileUploadInputVariant;
7
8
  maxFileSize?: string;
8
9
  accept?: string;
9
- testId?: string;
10
- mt?: Spacing;
11
- mb?: Spacing;
12
- mr?: Spacing;
13
- ml?: Spacing;
14
10
  onSelectFile: EventEmitter<GoabFileUploadInputOnSelectFileDetail>;
15
11
  _onSelectFile(e: Event): void;
16
12
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabFileUploadInput, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabFileUploadInput, "goab-file-upload-input", never, { "id": { "alias": "id"; "required": false; }; "variant": { "alias": "variant"; "required": true; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; }, { "onSelectFile": "onSelectFile"; }, never, never, true, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabFileUploadInput, "goab-file-upload-input", never, { "id": { "alias": "id"; "required": false; }; "variant": { "alias": "variant"; "required": true; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; }, { "onSelectFile": "onSelectFile"; }, never, never, true, never>;
18
14
  }
@@ -1,18 +1,14 @@
1
- import { GoabChipTheme, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabChipTheme } from "@abgov/ui-components-common";
2
2
  import { EventEmitter } from "@angular/core";
3
+ import { GoabBaseComponent } from "../base.component";
3
4
  import * as i0 from "@angular/core";
4
- export declare class GoabFilterChip {
5
+ export declare class GoabFilterChip extends GoabBaseComponent {
5
6
  error?: boolean;
6
7
  deletable?: boolean;
7
8
  content?: string;
8
- testId?: string;
9
9
  iconTheme?: GoabChipTheme;
10
- mt?: Spacing;
11
- mb?: Spacing;
12
- ml?: Spacing;
13
- mr?: Spacing;
14
10
  onClick: EventEmitter<any>;
15
11
  _onClick(): void;
16
12
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabFilterChip, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabFilterChip, "goab-filter-chip", never, { "error": { "alias": "error"; "required": false; }; "deletable": { "alias": "deletable"; "required": false; }; "content": { "alias": "content"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "iconTheme": { "alias": "iconTheme"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, { "onClick": "onClick"; }, never, ["*"], true, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabFilterChip, "goab-filter-chip", never, { "error": { "alias": "error"; "required": false; }; "deletable": { "alias": "deletable"; "required": false; }; "content": { "alias": "content"; "required": false; }; "iconTheme": { "alias": "iconTheme"; "required": false; }; }, { "onClick": "onClick"; }, never, ["*"], true, never>;
18
14
  }
@@ -1,18 +1,14 @@
1
- import { GoabFormItemLabelSize, GoabFormItemRequirement, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabFormItemLabelSize, GoabFormItemRequirement } from "@abgov/ui-components-common";
2
+ import { GoabBaseComponent } from "../base.component";
2
3
  import * as i0 from "@angular/core";
3
- export declare class GoabFormItem {
4
+ export declare class GoabFormItem extends GoabBaseComponent {
4
5
  label?: string;
5
6
  labelSize?: GoabFormItemLabelSize;
6
7
  helpText?: string;
7
8
  error?: string;
8
9
  requirement?: GoabFormItemRequirement;
9
10
  maxWidth?: string;
10
- testId?: string;
11
11
  id?: string;
12
- mt?: Spacing;
13
- mb?: Spacing;
14
- mr?: Spacing;
15
- ml?: Spacing;
16
12
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabFormItem, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabFormItem, "goab-form-item", never, { "label": { "alias": "label"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "error": { "alias": "error"; "required": false; }; "requirement": { "alias": "requirement"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "id": { "alias": "id"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; }, {}, never, ["*", "goab-form-item-slot"], true, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabFormItem, "goab-form-item", never, { "label": { "alias": "label"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "error": { "alias": "error"; "required": false; }; "requirement": { "alias": "requirement"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, ["*", "goab-form-item-slot"], true, never>;
18
14
  }
@@ -1,15 +1,11 @@
1
- import { GoabFormStepperOnChangeDetail, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabFormStepperOnChangeDetail } from "@abgov/ui-components-common";
2
2
  import { EventEmitter } from "@angular/core";
3
+ import { GoabBaseComponent } from "../base.component";
3
4
  import * as i0 from "@angular/core";
4
- export declare class GoabFormStepper {
5
+ export declare class GoabFormStepper extends GoabBaseComponent {
5
6
  step?: number;
6
- testId?: string;
7
- mt?: Spacing;
8
- mb?: Spacing;
9
- ml?: Spacing;
10
- mr?: Spacing;
11
7
  onChange: EventEmitter<GoabFormStepperOnChangeDetail>;
12
8
  _onChange(e: Event): void;
13
9
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabFormStepper, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabFormStepper, "goab-form-stepper", never, { "step": { "alias": "step"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabFormStepper, "goab-form-stepper", never, { "step": { "alias": "step"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
15
11
  }
@@ -1,13 +1,9 @@
1
1
  import { Spacing } from "@abgov/ui-components-common";
2
+ import { GoabBaseComponent } from "../base.component";
2
3
  import * as i0 from "@angular/core";
3
- export declare class GoabGrid {
4
+ export declare class GoabGrid extends GoabBaseComponent {
4
5
  minChildWidth: string;
5
6
  gap?: Spacing;
6
- testId?: string;
7
- mt?: Spacing;
8
- mb?: Spacing;
9
- ml?: Spacing;
10
- mr?: Spacing;
11
7
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabGrid, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabGrid, "goab-grid", never, { "minChildWidth": { "alias": "minChildWidth"; "required": true; }; "gap": { "alias": "gap"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, ["*"], true, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabGrid, "goab-grid", never, { "minChildWidth": { "alias": "minChildWidth"; "required": true; }; "gap": { "alias": "gap"; "required": false; }; }, {}, never, ["*"], true, never>;
13
9
  }
@@ -1,6 +1,7 @@
1
- import { GoabIconSize, GoabIconTheme, GoabIconType, Spacing } from "@abgov/ui-components-common";
1
+ import { GoabIconSize, GoabIconTheme, GoabIconType } from "@abgov/ui-components-common";
2
+ import { GoabBaseComponent } from "../base.component";
2
3
  import * as i0 from "@angular/core";
3
- export declare class GoabIcon {
4
+ export declare class GoabIcon extends GoabBaseComponent {
4
5
  type: GoabIconType;
5
6
  size?: GoabIconSize;
6
7
  theme?: GoabIconTheme;
@@ -9,11 +10,6 @@ export declare class GoabIcon {
9
10
  opacity?: number;
10
11
  title?: string;
11
12
  ariaLabel?: string;
12
- testId?: string;
13
- mt?: Spacing;
14
- mb?: Spacing;
15
- ml?: Spacing;
16
- mr?: Spacing;
17
13
  static ɵfac: i0.ɵɵFactoryDeclaration<GoabIcon, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<GoabIcon, "goab-icon", never, { "type": { "alias": "type"; "required": true; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "fillColor": { "alias": "fillColor"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "title": { "alias": "title"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, never, true, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<GoabIcon, "goab-icon", never, { "type": { "alias": "type"; "required": true; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "fillColor": { "alias": "fillColor"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "title": { "alias": "title"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
19
15
  }