@ndwnu/design-system 3.0.1 → 5.0.0

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 (157) hide show
  1. package/assets/images/dashboard-card-icons/contact.png +0 -0
  2. package/assets/images/dashboard-card-icons/faq.png +0 -0
  3. package/assets/images/dashboard-card-icons/manual.png +0 -0
  4. package/components/alert/alert.component.d.ts +2 -5
  5. package/components/alert/alert.model.d.ts +0 -1
  6. package/components/banner/banner.component.d.ts +38 -0
  7. package/components/banner/banner.model.d.ts +4 -0
  8. package/components/banner/index.d.ts +2 -0
  9. package/components/breadcrumb-group/breadcrumb-group.component.d.ts +1 -1
  10. package/components/card/index.d.ts +2 -2
  11. package/components/collapsible/collapsible.component.d.ts +0 -1
  12. package/components/dashboard-card/dashboard-card.component.d.ts +22 -0
  13. package/components/dashboard-card/index.d.ts +1 -0
  14. package/components/dropdown/dropdown.component.d.ts +4 -4
  15. package/components/form-field/autosuggest/autosuggest-add-option/autosuggest-add-option.component.d.ts +8 -0
  16. package/components/form-field/autosuggest/autosuggest-add-option/index.d.ts +1 -0
  17. package/components/form-field/autosuggest/autosuggest-option/autosuggest-option.component.d.ts +19 -0
  18. package/components/form-field/autosuggest/autosuggest-option/autosuggest-option.model.d.ts +2 -0
  19. package/components/form-field/autosuggest/autosuggest-option/base-autosuggest-option.component.d.ts +27 -0
  20. package/components/form-field/autosuggest/autosuggest-option/index.d.ts +2 -0
  21. package/components/form-field/autosuggest/autosuggest-panel/autosuggest-panel.component.d.ts +39 -0
  22. package/components/form-field/autosuggest/autosuggest.directive.d.ts +72 -0
  23. package/components/form-field/autosuggest/index.d.ts +5 -0
  24. package/components/form-field/autosuggest/match-bold.pipe.d.ts +7 -0
  25. package/components/form-field/checkbox/checkbox.component.d.ts +0 -3
  26. package/components/form-field/clear-search-button/clear-search-button.component.d.ts +15 -0
  27. package/components/form-field/file-upload/file-upload.component.d.ts +4 -11
  28. package/components/form-field/form-field.component.d.ts +19 -23
  29. package/components/form-field/form-field.constant.d.ts +1 -0
  30. package/components/form-field/index.d.ts +3 -0
  31. package/components/form-field/input/input.directive.d.ts +0 -1
  32. package/components/form-field/input-button/index.d.ts +1 -0
  33. package/components/form-field/input-button/input-button.component.d.ts +12 -0
  34. package/components/form-field/input-icon/index.d.ts +1 -0
  35. package/components/form-field/input-icon/input-icon.component.d.ts +5 -0
  36. package/components/form-field/picker-button/picker-button.component.d.ts +14 -0
  37. package/components/form-field/radio-button/radio-button.component.d.ts +0 -2
  38. package/components/form-field/radio-group/radio-group.component.d.ts +0 -1
  39. package/components/icon/icon.component.d.ts +1 -0
  40. package/components/index.d.ts +7 -2
  41. package/components/layout/index.d.ts +1 -0
  42. package/components/layout/layout.component.d.ts +11 -0
  43. package/components/layout-banners/index.d.ts +1 -0
  44. package/components/layout-banners/layout-banners.component.d.ts +5 -0
  45. package/components/loader/index.d.ts +1 -0
  46. package/components/loader/loader.component.d.ts +5 -0
  47. package/components/main-navigation/main-navigation.component.d.ts +8 -6
  48. package/components/main-navigation/main-navigation.imports.d.ts +1 -1
  49. package/components/main-navigation/main-navigation.model.d.ts +1 -0
  50. package/components/main-navigation-menu/main-navigation-menu.component.d.ts +2 -2
  51. package/components/modal/index.d.ts +0 -1
  52. package/components/modal/modal-header/modal-header.component.d.ts +1 -1
  53. package/components/modal/modal-ref.d.ts +3 -0
  54. package/components/modal/modal.component.d.ts +0 -3
  55. package/components/modal/modal.service.d.ts +13 -11
  56. package/components/pill/pill.component.d.ts +1 -3
  57. package/components/tab/tab.component.d.ts +0 -3
  58. package/components/tab-group/tab-group.component.d.ts +1 -2
  59. package/components/tag/index.d.ts +1 -0
  60. package/components/tag/tag.component.d.ts +18 -0
  61. package/core/{styles/ndw-styles.scss → style/styles.css} +495 -219
  62. package/core/{styles/nwb-styles.scss → style/styles.scss} +526 -218
  63. package/esm2022/components/accordion/accordion.component.mjs +8 -8
  64. package/esm2022/components/accordion/accordion.service.mjs +3 -3
  65. package/esm2022/components/alert/alert.component.mjs +12 -29
  66. package/esm2022/components/alert/alert.model.mjs +1 -1
  67. package/esm2022/components/badge/badge.component.mjs +6 -6
  68. package/esm2022/components/banner/banner.component.mjs +61 -0
  69. package/esm2022/components/banner/banner.model.mjs +6 -0
  70. package/esm2022/components/banner/index.mjs +3 -0
  71. package/esm2022/components/breadcrumb/breadcrumb.component.mjs +6 -6
  72. package/esm2022/components/breadcrumb-group/breadcrumb-group.component.mjs +10 -10
  73. package/esm2022/components/button/button.directive.mjs +3 -3
  74. package/esm2022/components/card/card-content/card-content.component.mjs +6 -6
  75. package/esm2022/components/card/card-footer/card-footer.component.mjs +6 -6
  76. package/esm2022/components/card/card-header/card-header.component.mjs +6 -7
  77. package/esm2022/components/card/card.component.mjs +6 -6
  78. package/esm2022/components/collapsible/collapsible.component.mjs +9 -14
  79. package/esm2022/components/dashboard-card/dashboard-card.component.mjs +32 -0
  80. package/esm2022/components/dashboard-card/index.mjs +2 -0
  81. package/esm2022/components/dropdown/dropdown.component.mjs +11 -18
  82. package/esm2022/components/form-field/autosuggest/autosuggest-add-option/autosuggest-add-option.component.mjs +29 -0
  83. package/esm2022/components/form-field/autosuggest/autosuggest-add-option/index.mjs +2 -0
  84. package/esm2022/components/form-field/autosuggest/autosuggest-option/autosuggest-option.component.mjs +45 -0
  85. package/esm2022/components/form-field/autosuggest/autosuggest-option/autosuggest-option.model.mjs +2 -0
  86. package/esm2022/components/form-field/autosuggest/autosuggest-option/base-autosuggest-option.component.mjs +85 -0
  87. package/esm2022/components/form-field/autosuggest/autosuggest-option/index.mjs +3 -0
  88. package/esm2022/components/form-field/autosuggest/autosuggest-panel/autosuggest-panel.component.mjs +82 -0
  89. package/esm2022/components/form-field/autosuggest/autosuggest.directive.mjs +411 -0
  90. package/esm2022/components/form-field/autosuggest/index.mjs +6 -0
  91. package/esm2022/components/form-field/autosuggest/match-bold.pipe.mjs +21 -0
  92. package/esm2022/components/form-field/checkbox/checkbox.component.mjs +13 -27
  93. package/esm2022/components/form-field/checkbox-group/checkbox-group.component.mjs +6 -6
  94. package/esm2022/components/form-field/clear-search-button/clear-search-button.component.mjs +37 -0
  95. package/esm2022/components/form-field/error/error.component.mjs +6 -6
  96. package/esm2022/components/form-field/file-upload/file-upload.component.mjs +48 -93
  97. package/esm2022/components/form-field/form-field.component.mjs +25 -76
  98. package/esm2022/components/form-field/form-field.constant.mjs +2 -0
  99. package/esm2022/components/form-field/index.mjs +4 -1
  100. package/esm2022/components/form-field/info/info.component.mjs +6 -6
  101. package/esm2022/components/form-field/input/input.directive.mjs +5 -11
  102. package/esm2022/components/form-field/input-button/index.mjs +2 -0
  103. package/esm2022/components/form-field/input-button/input-button.component.mjs +23 -0
  104. package/esm2022/components/form-field/input-icon/index.mjs +2 -0
  105. package/esm2022/components/form-field/input-icon/input-icon.component.mjs +12 -0
  106. package/esm2022/components/form-field/month-input/month-input.component.mjs +8 -9
  107. package/esm2022/components/form-field/option-group/option-group.component.mjs +6 -6
  108. package/esm2022/components/form-field/option-group/option.component.mjs +5 -6
  109. package/esm2022/components/form-field/picker-button/picker-button.component.mjs +45 -0
  110. package/esm2022/components/form-field/radio-button/radio-button.component.mjs +12 -22
  111. package/esm2022/components/form-field/radio-group/radio-group.component.mjs +11 -13
  112. package/esm2022/components/form-field/success/success.component.mjs +6 -6
  113. package/esm2022/components/form-field/textarea/auto-grow.directive.mjs +3 -3
  114. package/esm2022/components/icon/action-icon/action-icon.component.mjs +5 -5
  115. package/esm2022/components/icon/icon.component.mjs +15 -10
  116. package/esm2022/components/index.mjs +8 -3
  117. package/esm2022/components/layout/index.mjs +2 -0
  118. package/esm2022/components/layout/layout.component.mjs +20 -0
  119. package/esm2022/components/layout-banners/index.mjs +2 -0
  120. package/esm2022/components/layout-banners/layout-banners.component.mjs +11 -0
  121. package/esm2022/components/loader/index.mjs +2 -0
  122. package/esm2022/components/loader/loader.component.mjs +11 -0
  123. package/esm2022/components/main-navigation/main-navigation.component.mjs +52 -48
  124. package/esm2022/components/main-navigation/main-navigation.model.mjs +1 -1
  125. package/esm2022/components/main-navigation-menu/main-navigation-menu.component.mjs +9 -9
  126. package/esm2022/components/modal/index.mjs +1 -4
  127. package/esm2022/components/modal/modal-content/modal-content.component.mjs +6 -6
  128. package/esm2022/components/modal/modal-footer/modal-footer.component.mjs +6 -6
  129. package/esm2022/components/modal/modal-header/modal-header.component.mjs +9 -11
  130. package/esm2022/components/modal/modal-ref.mjs +4 -0
  131. package/esm2022/components/modal/modal.component.mjs +10 -23
  132. package/esm2022/components/modal/modal.service.mjs +20 -41
  133. package/esm2022/components/multi-select/multi-select.component.mjs +10 -12
  134. package/esm2022/components/pill/pill.component.mjs +12 -20
  135. package/esm2022/components/popover/popover-trigger.directive.mjs +9 -9
  136. package/esm2022/components/router-breadcrumbs/router-breadcrumbs.component.mjs +6 -6
  137. package/esm2022/components/tab/tab.component.mjs +13 -29
  138. package/esm2022/components/tab-group/tab-group.component.mjs +10 -12
  139. package/esm2022/components/tag/index.mjs +2 -0
  140. package/esm2022/components/tag/tag.component.mjs +29 -0
  141. package/esm2022/components/toast/toast.component.mjs +6 -6
  142. package/esm2022/components/toast/toast.service.mjs +4 -4
  143. package/esm2022/components/tooltip/tooltip.component.mjs +7 -7
  144. package/esm2022/components/tooltip/tooltip.directive.mjs +10 -16
  145. package/esm2022/models/aria.model.mjs +2 -0
  146. package/esm2022/models/index.mjs +2 -0
  147. package/fesm2022/ndwnu-design-system.mjs +1279 -660
  148. package/fesm2022/ndwnu-design-system.mjs.map +1 -1
  149. package/models/aria.model.d.ts +1 -0
  150. package/models/index.d.ts +1 -0
  151. package/package.json +1 -1
  152. package/components/modal/modal-trigger.directive.d.ts +0 -16
  153. package/components/removable-pill/index.d.ts +0 -1
  154. package/components/removable-pill/removable-pill.component.d.ts +0 -14
  155. package/esm2022/components/modal/modal-trigger.directive.mjs +0 -46
  156. package/esm2022/components/removable-pill/index.mjs +0 -2
  157. package/esm2022/components/removable-pill/removable-pill.component.mjs +0 -23
@@ -1,4 +1,5 @@
1
- import { AlertType, AriaLive } from './alert.model';
1
+ import { AriaLive } from '../../models';
2
+ import { AlertType } from './alert.model';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class AlertComponent {
4
5
  /**
@@ -19,10 +20,6 @@ export declare class AlertComponent {
19
20
  */
20
21
  ariaLive: import("@angular/core").InputSignal<AriaLive>;
21
22
  close: import("@angular/core").OutputEmitterRef<void>;
22
- get alertTypeClass(): string;
23
- get actionableClass(): boolean;
24
- readonly role = "alert";
25
- get ariaLiveAttribute(): AriaLive;
26
23
  onClose(): void;
27
24
  static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
28
25
  static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "ndw-alert", never, { "actionable": { "alias": "actionable"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "ariaLive": { "alias": "ariaLive"; "required": false; "isSignal": true; }; }, { "close": "close"; }, never, ["*"], true, never>;
@@ -4,4 +4,3 @@ export declare enum AlertType {
4
4
  InfoGrey = "info-grey",
5
5
  Warning = "warning"
6
6
  }
7
- export type AriaLive = 'polite' | 'assertive' | 'off';
@@ -0,0 +1,38 @@
1
+ import { AfterViewInit, ElementRef } from '@angular/core';
2
+ import { AriaLive } from '../../models';
3
+ import { BannerType } from './banner.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class BannerComponent implements AfterViewInit {
6
+ /**
7
+ * The title of the banner.
8
+ */
9
+ title: import("@angular/core").InputSignal<string>;
10
+ /**
11
+ * The message of the banner.
12
+ */
13
+ message: import("@angular/core").InputSignal<string>;
14
+ /**
15
+ * The read more label if the message is truncated.
16
+ */
17
+ readMoreLabel: import("@angular/core").InputSignal<string>;
18
+ /**
19
+ * Use info, info-grey, warning or critical to indicate the type of banner.
20
+ */
21
+ type: import("@angular/core").InputSignal<BannerType>;
22
+ /**
23
+ * Use polite, assertive or off to indicate whether the alert is
24
+ * announced automatically by the screen reader.
25
+ */
26
+ ariaLive: import("@angular/core").InputSignal<AriaLive>;
27
+ /**
28
+ * Emits when the banner close button is clicked.
29
+ */
30
+ close: import("@angular/core").OutputEmitterRef<void>;
31
+ textContent: import("@angular/core").Signal<ElementRef<any> | undefined>;
32
+ showReadMore: boolean;
33
+ ngAfterViewInit(): void;
34
+ onClose(event: MouseEvent): void;
35
+ private setReadMore;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<BannerComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<BannerComponent, "ndw-banner", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "message": { "alias": "message"; "required": true; "isSignal": true; }; "readMoreLabel": { "alias": "readMoreLabel"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "ariaLive": { "alias": "ariaLive"; "required": false; "isSignal": true; }; }, { "close": "close"; }, never, never, true, never>;
38
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum BannerType {
2
+ Negative = "critical",
3
+ Info = "info"
4
+ }
@@ -0,0 +1,2 @@
1
+ export * from './banner.component';
2
+ export * from './banner.model';
@@ -1,4 +1,4 @@
1
- import { BreadcrumbComponent } from '../breadcrumb/breadcrumb.component';
1
+ import { BreadcrumbComponent } from '../breadcrumb';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class BreadcrumbGroupComponent {
4
4
  protected breadcrumbs: import("@angular/core").Signal<readonly BreadcrumbComponent[]>;
@@ -1,6 +1,6 @@
1
- import { CardContentComponent } from './card-content';
1
+ import { CardComponent } from './card.component';
2
2
  export * from './card-content';
3
3
  export * from './card-footer';
4
4
  export * from './card-header';
5
5
  export * from './card.component';
6
- export declare const CARD_COMPONENTS: (typeof CardContentComponent)[];
6
+ export declare const CARD_COMPONENTS: (typeof CardComponent)[];
@@ -8,7 +8,6 @@ export declare class CollapsibleComponent {
8
8
  private readonly uuid;
9
9
  readonly toggleUuid: string;
10
10
  readonly sectionUuid: string;
11
- get expandedClass(): boolean;
12
11
  animationState: import("@angular/core").Signal<"open" | "closed">;
13
12
  toggle(): void;
14
13
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapsibleComponent, never>;
@@ -0,0 +1,22 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DashboardCardComponent {
3
+ /**
4
+ * The title of the card.
5
+ */
6
+ readonly title: import("@angular/core").InputSignal<string>;
7
+ /**
8
+ * The URL to the icon to display on the card. The icon is assumed to be rectangular.
9
+ */
10
+ readonly imgSource: import("@angular/core").InputSignal<string>;
11
+ /**
12
+ * The url to open in a new window when the card is clicked.
13
+ */
14
+ readonly link: import("@angular/core").InputSignal<string>;
15
+ /**
16
+ * Specifies where to open the linked document.
17
+ * Valid values are `_blank`, `_parent`, `_self`, or `_top`.
18
+ */
19
+ readonly linkTarget: import("@angular/core").InputSignal<string>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<DashboardCardComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<DashboardCardComponent, "ndw-dashboard-card", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "imgSource": { "alias": "imgSource"; "required": true; "isSignal": true; }; "link": { "alias": "link"; "required": true; "isSignal": true; }; "linkTarget": { "alias": "linkTarget"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
22
+ }
@@ -0,0 +1 @@
1
+ export * from './dashboard-card.component';
@@ -7,16 +7,16 @@ export declare class DropdownComponent {
7
7
  readonly buttonText: import("@angular/core").InputSignal<string>;
8
8
  readonly prefixIcon: import("@angular/core").InputSignal<string>;
9
9
  readonly selectAmount: import("@angular/core").InputSignal<number>;
10
- readonly removablePillClicked: import("@angular/core").OutputEmitterRef<void>;
10
+ readonly tagClicked: import("@angular/core").OutputEmitterRef<void>;
11
11
  readonly isOpenChange: import("@angular/core").OutputEmitterRef<boolean>;
12
12
  readonly popoverTrigger: import("@angular/core").Signal<PopoverTriggerDirective>;
13
13
  readonly dropdownButton: import("@angular/core").Signal<ElementRef<any>>;
14
14
  readonly buttonIcon: import("@angular/core").Signal<"keyboard_arrow_up" | "keyboard_arrow_down">;
15
- onRemovablePillClicked($event: Event): void;
15
+ onTagClicked($event: Event): void;
16
16
  onKeyDown(event: KeyboardEvent): void;
17
17
  closeDropdown(): void;
18
- onKeyDownRemovablePill(event: KeyboardEvent): void;
18
+ onTagKeyDown(event: KeyboardEvent): void;
19
19
  isOpenChanged(isOpen: boolean): void;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "ndw-dropdown", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "chevron": { "alias": "chevron"; "required": false; "isSignal": true; }; "buttonText": { "alias": "buttonText"; "required": true; "isSignal": true; }; "prefixIcon": { "alias": "prefixIcon"; "required": false; "isSignal": true; }; "selectAmount": { "alias": "selectAmount"; "required": false; "isSignal": true; }; }, { "removablePillClicked": "removablePillClicked"; "isOpenChange": "isOpenChange"; }, never, ["*"], true, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "ndw-dropdown", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "chevron": { "alias": "chevron"; "required": false; "isSignal": true; }; "buttonText": { "alias": "buttonText"; "required": true; "isSignal": true; }; "prefixIcon": { "alias": "prefixIcon"; "required": false; "isSignal": true; }; "selectAmount": { "alias": "selectAmount"; "required": false; "isSignal": true; }; }, { "tagClicked": "tagClicked"; "isOpenChange": "isOpenChange"; }, never, ["*"], true, never>;
22
22
  }
@@ -0,0 +1,8 @@
1
+ import { BaseAutosuggestOptionComponent } from '../autosuggest-option';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AutosuggestAddOptionComponent extends BaseAutosuggestOptionComponent {
4
+ readonly addOption: import("@angular/core").OutputEmitterRef<string>;
5
+ protected emitSelectionChangeEvent(isUserInput?: boolean): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutosuggestAddOptionComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutosuggestAddOptionComponent, "ndw-autosuggest-add-option", never, {}, { "addOption": "addOption"; }, never, never, true, never>;
8
+ }
@@ -0,0 +1 @@
1
+ export * from './autosuggest-add-option.component';
@@ -0,0 +1,19 @@
1
+ import { AutosuggestAddOptionComponent } from '../autosuggest-add-option';
2
+ import { BaseAutosuggestOptionComponent } from './base-autosuggest-option.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AutocompleteOptionSelectionChange {
5
+ source: AutosuggestOptionComponent | AutosuggestAddOptionComponent;
6
+ isUserInput: boolean;
7
+ constructor(source: AutosuggestOptionComponent | AutosuggestAddOptionComponent, isUserInput?: boolean);
8
+ }
9
+ export declare class AutosuggestOptionComponent extends BaseAutosuggestOptionComponent {
10
+ readonly searchTerm: import("@angular/core").InputSignal<string>;
11
+ readonly label: import("@angular/core").InputSignal<string>;
12
+ id: string;
13
+ get viewValue(): string;
14
+ constructor();
15
+ getLabel(): string;
16
+ protected emitSelectionChangeEvent(isUserInput?: boolean): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutosuggestOptionComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutosuggestOptionComponent, "ndw-autosuggest-option", never, { "searchTerm": { "alias": "searchTerm"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
19
+ }
@@ -0,0 +1,2 @@
1
+ export type AutosuggestOption = string | Record<string, unknown>;
2
+ export type AutosuggestOptions = Array<AutosuggestOption>;
@@ -0,0 +1,27 @@
1
+ import { FocusableOption, FocusOrigin } from '@angular/cdk/a11y';
2
+ import { EventEmitter, OnDestroy } from '@angular/core';
3
+ import { AutocompleteOptionSelectionChange } from './autosuggest-option.component';
4
+ import { AutosuggestOption } from './autosuggest-option.model';
5
+ import * as i0 from "@angular/core";
6
+ export declare abstract class BaseAutosuggestOptionComponent implements FocusableOption, OnDestroy {
7
+ readonly value: import("@angular/core").InputSignal<AutosuggestOption | undefined>;
8
+ readonly selectionChange: EventEmitter<AutocompleteOptionSelectionChange>;
9
+ protected _active: boolean;
10
+ protected _selected: boolean;
11
+ get active(): boolean;
12
+ get selected(): boolean;
13
+ private readonly element;
14
+ private readonly changeDetectorRef;
15
+ focus(_origin?: FocusOrigin, options?: FocusOptions): void;
16
+ setActiveStyles(): void;
17
+ setInactiveStyles(): void;
18
+ select(emitEvent?: boolean): void;
19
+ deselect(emitEvent?: boolean): void;
20
+ handleKeydown(event: KeyboardEvent): void;
21
+ selectViaInteraction(): void;
22
+ protected abstract emitSelectionChangeEvent(isUserInput?: boolean): void;
23
+ ngOnDestroy(): void;
24
+ protected getHostElement(): HTMLElement;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseAutosuggestOptionComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseAutosuggestOptionComponent, "ng-component", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
27
+ }
@@ -0,0 +1,2 @@
1
+ export * from './autosuggest-option.component';
2
+ export * from './base-autosuggest-option.component';
@@ -0,0 +1,39 @@
1
+ import { AfterViewInit, ElementRef, OnDestroy, QueryList, TemplateRef } from '@angular/core';
2
+ import { ActiveDescendantKeyManager } from '@angular/cdk/a11y';
3
+ import { AutosuggestAddOptionComponent } from '../autosuggest-add-option';
4
+ import { AutosuggestOptionComponent } from '../autosuggest-option';
5
+ import { AutosuggestOption, AutosuggestOptions } from '../autosuggest-option/autosuggest-option.model';
6
+ import * as i0 from "@angular/core";
7
+ export declare class AutosuggestPanelComponent implements AfterViewInit, OnDestroy {
8
+ readonly suggestions: import("@angular/core").InputSignal<AutosuggestOptions>;
9
+ readonly enableAddOption: import("@angular/core").InputSignal<boolean>;
10
+ readonly maxResults: import("@angular/core").InputSignal<number>;
11
+ readonly noResultText: import("@angular/core").InputSignal<string>;
12
+ readonly displayWith: import("@angular/core").InputSignal<((value: AutosuggestOption) => string) | undefined>;
13
+ readonly opened: import("@angular/core").OutputEmitterRef<void>;
14
+ readonly closed: import("@angular/core").OutputEmitterRef<void>;
15
+ readonly optionSelected: import("@angular/core").OutputEmitterRef<AutosuggestOption | null>;
16
+ readonly addOption: import("@angular/core").OutputEmitterRef<string>;
17
+ items: QueryList<AutosuggestOptionComponent | AutosuggestAddOptionComponent>;
18
+ readonly template: import("@angular/core").Signal<TemplateRef<any>>;
19
+ readonly panel: import("@angular/core").Signal<ElementRef<HTMLDivElement>>;
20
+ readonly searchTerm: import("@angular/core").WritableSignal<string>;
21
+ readonly slicedOptions: import("@angular/core").Signal<AutosuggestOption[]>;
22
+ readonly hasMoreResults: import("@angular/core").Signal<boolean>;
23
+ readonly numberOfLeftOverResults: import("@angular/core").Signal<number>;
24
+ keyManager: ActiveDescendantKeyManager<AutosuggestOptionComponent | AutosuggestAddOptionComponent> | undefined;
25
+ showPanel: boolean;
26
+ id: string;
27
+ isOpen: boolean;
28
+ private readonly changeDetectorRef;
29
+ constructor();
30
+ ngAfterViewInit(): void;
31
+ ngOnDestroy(): void;
32
+ getLabelOption(option: AutosuggestOption): string;
33
+ setScrollTop(scrollTop: number): void;
34
+ setVisibility(): void;
35
+ emitSelectEvent(option: AutosuggestOptionComponent | AutosuggestAddOptionComponent): void;
36
+ addNewOption(value: string): void;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutosuggestPanelComponent, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutosuggestPanelComponent, "ndw-autosuggest", ["apAutocomplete"], { "suggestions": { "alias": "suggestions"; "required": false; "isSignal": true; }; "enableAddOption": { "alias": "enableAddOption"; "required": false; "isSignal": true; }; "maxResults": { "alias": "maxResults"; "required": false; "isSignal": true; }; "noResultText": { "alias": "noResultText"; "required": false; "isSignal": true; }; "displayWith": { "alias": "displayWith"; "required": false; "isSignal": true; }; }, { "opened": "opened"; "closed": "closed"; "optionSelected": "optionSelected"; "addOption": "addOption"; }, never, never, true, never>;
39
+ }
@@ -0,0 +1,72 @@
1
+ import { AfterViewInit, OnDestroy } from '@angular/core';
2
+ import { ControlValueAccessor } from '@angular/forms';
3
+ import { AutosuggestAddOptionComponent } from './autosuggest-add-option';
4
+ import { AutosuggestOptionComponent } from './autosuggest-option/autosuggest-option.component';
5
+ import { AutosuggestPanelComponent } from './autosuggest-panel/autosuggest-panel.component';
6
+ import * as i0 from "@angular/core";
7
+ export declare class AutosuggestDirective implements ControlValueAccessor, AfterViewInit, OnDestroy {
8
+ readonly ndwAutosuggest: import("@angular/core").InputSignal<AutosuggestPanelComponent>;
9
+ readonly filter: import("@angular/core").OutputEmitterRef<string>;
10
+ private overlayAttached;
11
+ private overlayRef;
12
+ private portal;
13
+ private previousValue;
14
+ private closingActionsSubscription;
15
+ private keydownSubscription;
16
+ private canOpenOnNextFocus;
17
+ private valueOnAttach;
18
+ private valueOnLastKeydown;
19
+ private readonly closeKeyEventStream;
20
+ private readonly zone;
21
+ private readonly element;
22
+ private readonly viewContainerRef;
23
+ private readonly overlay;
24
+ private readonly changeDetectorRef;
25
+ private readonly document;
26
+ private readonly viewportRuler;
27
+ private readonly destroyRef;
28
+ get panelOpen(): boolean;
29
+ get activeOption(): AutosuggestOptionComponent | AutosuggestAddOptionComponent | null;
30
+ get autosuggest(): AutosuggestPanelComponent;
31
+ private get panelClosingActions();
32
+ private readonly optionSelections;
33
+ ngAfterViewInit(): void;
34
+ ngOnDestroy(): void;
35
+ openPanel(valueOnAttach?: string): void;
36
+ closePanel(): void;
37
+ handleFocus(): void;
38
+ writeValue(value: unknown): void;
39
+ registerOnChange(fn: (value: unknown) => unknown): void;
40
+ registerOnTouched(fn: () => unknown): void;
41
+ clearValue(): void;
42
+ handleClick(): void;
43
+ handleKeydown(event: KeyboardEvent): void;
44
+ handleInput(event: KeyboardEvent): void;
45
+ setDisabledState(isDisabled: boolean): void;
46
+ private readonly handlePanelKeydown;
47
+ private readonly windowBlurHandler;
48
+ onChange: (value: unknown) => void;
49
+ onTouched: () => void;
50
+ private destroyPanel;
51
+ private attachOverlay;
52
+ private initKeydownEvents;
53
+ private getOverlayConfig;
54
+ private getHostWidth;
55
+ private bindingElement;
56
+ private getOverlayPosition;
57
+ private resetActiveItem;
58
+ private blur;
59
+ private getOutsideClickStream;
60
+ private subscribeToClosingActions;
61
+ private setValueAndClose;
62
+ private assignOptionValue;
63
+ private getDisplayValue;
64
+ private updateNativeInputValue;
65
+ private scrollToOption;
66
+ private setTriggerValue;
67
+ private clearPreviousSelectedOption;
68
+ private canOpen;
69
+ private getWindow;
70
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutosuggestDirective, never>;
71
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AutosuggestDirective, "input[ndwAutosuggest], textarea[ndwAutosuggest]", ["ndwAutosuggestTrigger"], { "ndwAutosuggest": { "alias": "ndwAutosuggest"; "required": true; "isSignal": true; }; }, { "filter": "filter"; }, never, never, true, never>;
72
+ }
@@ -0,0 +1,5 @@
1
+ export * from './autosuggest.directive';
2
+ export * from './autosuggest-option/autosuggest-option.model';
3
+ export * from './autosuggest-option/autosuggest-option.component';
4
+ export * from './autosuggest-panel/autosuggest-panel.component';
5
+ export * from './autosuggest-add-option/autosuggest-add-option.component';
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class MatchBoldPipe implements PipeTransform {
4
+ transform(value: unknown, searchTerm: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchBoldPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<MatchBoldPipe, "matchBold", true>;
7
+ }
@@ -9,9 +9,6 @@ export declare class CheckboxComponent implements ControlValueAccessor {
9
9
  indeterminate: import("@angular/core").InputSignal<boolean>;
10
10
  required: import("@angular/core").InputSignal<boolean>;
11
11
  uuid: `${string}-${string}-${string}-${string}-${string}`;
12
- get checkedClass(): boolean;
13
- get disabledClass(): boolean;
14
- get indeterminateClass(): boolean;
15
12
  onClick(): void;
16
13
  onKeyDown(event: KeyboardEvent): void;
17
14
  writeValue(value: boolean): void;
@@ -0,0 +1,15 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { InputDirective } from '../input/input.directive';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ClearSearchButtonComponent implements OnInit, OnDestroy {
5
+ readonly disabled: import("@angular/core").InputSignal<boolean>;
6
+ readonly input: import("@angular/core").InputSignal<InputDirective | undefined>;
7
+ readonly ariaLabel: import("@angular/core").InputSignal<string>;
8
+ protected readonly inputValue: import("@angular/core").WritableSignal<string>;
9
+ private readonly onInput;
10
+ ngOnInit(): void;
11
+ ngOnDestroy(): void;
12
+ protected clear(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClearSearchButtonComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<ClearSearchButtonComponent, "ndw-clear-search-button", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "input": { "alias": "input"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
15
+ }
@@ -1,6 +1,6 @@
1
1
  import { ElementRef } from '@angular/core';
2
- import { FileUploadText } from './file-upload-text.interface';
3
2
  import { ControlValueAccessor } from '@angular/forms';
3
+ import { FileUploadText } from './file-upload-text.interface';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class FileUploadComponent implements ControlValueAccessor {
6
6
  readonly fileInputElement: import("@angular/core").Signal<ElementRef<HTMLInputElement>>;
@@ -17,13 +17,6 @@ export declare class FileUploadComponent implements ControlValueAccessor {
17
17
  readonly incorrectFileType: import("@angular/core").ModelSignal<boolean>;
18
18
  readonly incorrectFileSize: import("@angular/core").ModelSignal<boolean>;
19
19
  private readonly canEdit;
20
- get tabindexAttr(): number;
21
- get hasError(): boolean;
22
- get hasSuccess(): boolean;
23
- get isDisabled(): boolean;
24
- get isReadonly(): boolean;
25
- get isDragging(): boolean;
26
- get hasSelectedFile(): boolean;
27
20
  onKeyDown(event: KeyboardEvent): void;
28
21
  onClick(): void;
29
22
  onDragLeave(event: DragEvent): void;
@@ -34,13 +27,13 @@ export declare class FileUploadComponent implements ControlValueAccessor {
34
27
  onDeleteClick(event: Event): void;
35
28
  displayText(): string;
36
29
  onFileSelected(event: Event): void;
30
+ writeValue(value: File): void;
31
+ registerOnChange(fn: (value: File | null | undefined) => void): void;
32
+ registerOnTouched(): void;
37
33
  private selectFile;
38
34
  private resetFile;
39
35
  private correctFileSize;
40
36
  private correctFileType;
41
- writeValue(value: File): void;
42
- registerOnChange(fn: (value: File | null | undefined) => void): void;
43
- registerOnTouched(): void;
44
37
  static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
45
38
  static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ndw-file-upload", never, { "allowedFileTypeRegex": { "alias": "allowedFileTypeRegex"; "required": false; "isSignal": true; }; "fileUploadText": { "alias": "fileUploadText"; "required": false; "isSignal": true; }; "uploadDate": { "alias": "uploadDate"; "required": false; "isSignal": true; }; "maxFileSizeInBytes": { "alias": "maxFileSizeInBytes"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggingOver": { "alias": "draggingOver"; "required": false; "isSignal": true; }; "selectedFile": { "alias": "selectedFile"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "success": { "alias": "success"; "required": false; "isSignal": true; }; "incorrectFileType": { "alias": "incorrectFileType"; "required": false; "isSignal": true; }; "incorrectFileSize": { "alias": "incorrectFileSize"; "required": false; "isSignal": true; }; }, { "draggingOver": "draggingOverChange"; "selectedFile": "selectedFileChange"; "error": "errorChange"; "success": "successChange"; "incorrectFileType": "incorrectFileTypeChange"; "incorrectFileSize": "incorrectFileSizeChange"; }, never, never, true, never>;
46
39
  }
@@ -1,34 +1,30 @@
1
- import { InputDirective } from './input';
1
+ import { InputDirective, InputType } from './input';
2
2
  import { MonthInputComponent } from './month-input';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FormFieldComponent {
5
- readonly monthInput: import("@angular/core").Signal<MonthInputComponent | undefined>;
6
- readonly regularInput: import("@angular/core").Signal<InputDirective | undefined>;
7
- input: import("@angular/core").Signal<InputDirective | undefined>;
8
- label: import("@angular/core").InputSignal<string>;
9
- clearSearchAriaLabel: import("@angular/core").InputSignal<string | undefined>;
10
- suffixButtonAriaLabel: import("@angular/core").InputSignal<string | undefined>;
11
- hideLabel: import("@angular/core").InputSignal<boolean>;
12
- disabled: import("@angular/core").InputSignal<boolean>;
13
- error: import("@angular/core").InputSignal<string | undefined>;
14
- success: import("@angular/core").InputSignal<string | undefined>;
15
- info: import("@angular/core").InputSignal<string | undefined>;
16
- tooltip: import("@angular/core").InputSignal<string>;
17
- inputPrefix: import("@angular/core").Signal<string | undefined>;
18
- inputSuffix: import("@angular/core").Signal<string | undefined>;
19
- uuid: `${string}-${string}-${string}-${string}-${string}`;
20
- descriptionUuid: `${string}-${string}-${string}-${string}-${string}`;
5
+ readonly label: import("@angular/core").InputSignal<string>;
6
+ readonly suffixAriaLabel: import("@angular/core").InputSignal<string>;
7
+ readonly hideLabel: import("@angular/core").InputSignal<boolean>;
8
+ readonly disabled: import("@angular/core").InputSignal<boolean>;
9
+ readonly error: import("@angular/core").InputSignal<string | undefined>;
10
+ readonly success: import("@angular/core").InputSignal<string | undefined>;
11
+ readonly info: import("@angular/core").InputSignal<string | undefined>;
12
+ readonly tooltip: import("@angular/core").InputSignal<string>;
13
+ protected readonly monthInput: import("@angular/core").Signal<MonthInputComponent | undefined>;
14
+ protected readonly regularInput: import("@angular/core").Signal<InputDirective | undefined>;
15
+ protected readonly input: import("@angular/core").Signal<InputDirective | undefined>;
16
+ protected readonly inputType: import("@angular/core").Signal<InputType | undefined>;
17
+ protected readonly isSearchInput: import("@angular/core").Signal<boolean>;
18
+ protected readonly hasPickerButton: import("@angular/core").Signal<boolean>;
19
+ protected readonly uuid: `${string}-${string}-${string}-${string}-${string}`;
20
+ protected readonly descriptionUuid: `${string}-${string}-${string}-${string}-${string}`;
21
+ protected readonly inputContainerClass = "input-container";
21
22
  constructor();
22
- clearInput(): void;
23
- protected onSuffixButtonClick(): void;
24
- private addInputTypeBasedClass;
25
23
  private setInputDisabledState;
26
24
  private setInputErrorState;
27
25
  private setInputSuccessState;
28
26
  private setInputId;
29
27
  private setAriaDescribedBy;
30
- private setInputPrefix;
31
- private setInputSuffix;
32
28
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "ndw-form-field", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "clearSearchAriaLabel": { "alias": "clearSearchAriaLabel"; "required": false; "isSignal": true; }; "suffixButtonAriaLabel": { "alias": "suffixButtonAriaLabel"; "required": false; "isSignal": true; }; "hideLabel": { "alias": "hideLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "success": { "alias": "success"; "required": false; "isSignal": true; }; "info": { "alias": "info"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, {}, ["monthInput", "regularInput"], ["*"], true, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "ndw-form-field", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "suffixAriaLabel": { "alias": "suffixAriaLabel"; "required": false; "isSignal": true; }; "hideLabel": { "alias": "hideLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "success": { "alias": "success"; "required": false; "isSignal": true; }; "info": { "alias": "info"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, {}, ["monthInput", "regularInput"], ["*"], true, never>;
34
30
  }
@@ -0,0 +1 @@
1
+ export declare const INPUT_CONTAINER_CLASS = "input-container";
@@ -1,3 +1,4 @@
1
+ export * from './autosuggest';
1
2
  export * from './checkbox';
2
3
  export * from './checkbox-group';
3
4
  export * from './error';
@@ -6,6 +7,8 @@ export * from './form-field.component';
6
7
  export * from './form-field.model';
7
8
  export * from './info';
8
9
  export * from './input';
10
+ export * from './input-button';
11
+ export * from './input-icon';
9
12
  export * from './month-input';
10
13
  export * from './option-group';
11
14
  export * from './radio-button';
@@ -13,7 +13,6 @@ export declare class InputDirective implements OnInit {
13
13
  get element(): HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
14
14
  get control(): AbstractControl | null;
15
15
  ngOnInit(): void;
16
- private setChangedAttribute;
17
16
  private setSelectPlaceholderAttribute;
18
17
  private updateRequiredAttribute;
19
18
  static ɵfac: i0.ɵɵFactoryDeclaration<InputDirective, never>;
@@ -0,0 +1 @@
1
+ export * from './input-button.component';
@@ -0,0 +1,12 @@
1
+ import { InputDirective } from '../input/input.directive';
2
+ import * as i0 from "@angular/core";
3
+ export declare class InputButtonComponent {
4
+ readonly disabled: import("@angular/core").InputSignal<boolean>;
5
+ readonly input: import("@angular/core").InputSignal<InputDirective | undefined>;
6
+ readonly ariaLabel: import("@angular/core").InputSignal<string>;
7
+ readonly alternative: import("@angular/core").InputSignal<boolean>;
8
+ readonly buttonClicked: import("@angular/core").OutputEmitterRef<void>;
9
+ protected onClick(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputButtonComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputButtonComponent, "ndw-input-button", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "input": { "alias": "input"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "alternative": { "alias": "alternative"; "required": false; "isSignal": true; }; }, { "buttonClicked": "buttonClicked"; }, never, ["*"], true, never>;
12
+ }
@@ -0,0 +1 @@
1
+ export * from './input-icon.component';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class InputIconComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputIconComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputIconComponent, "ndw-input-icon", never, {}, {}, never, ["*"], true, never>;
5
+ }
@@ -0,0 +1,14 @@
1
+ import { InputType } from '../input';
2
+ import { InputDirective } from '../input/input.directive';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PickerButtonComponent {
5
+ readonly disabled: import("@angular/core").InputSignal<boolean>;
6
+ readonly input: import("@angular/core").InputSignal<InputDirective | undefined>;
7
+ readonly ariaLabel: import("@angular/core").InputSignal<string>;
8
+ readonly required: import("@angular/core").InputSignal<InputType | undefined>;
9
+ protected readonly icon: import("@angular/core").Signal<string | undefined>;
10
+ protected onClick(): void;
11
+ private getIcon;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<PickerButtonComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<PickerButtonComponent, "ndw-picker-button", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "input": { "alias": "input"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
14
+ }
@@ -9,8 +9,6 @@ export declare class RadioButtonComponent implements ControlValueAccessor {
9
9
  required: import("@angular/core").InputSignal<boolean>;
10
10
  value: import("@angular/core").ModelSignal<unknown>;
11
11
  uuid: `${string}-${string}-${string}-${string}-${string}`;
12
- get checkedClass(): boolean;
13
- get disabledClass(): boolean;
14
12
  onClick(): void;
15
13
  onKeyDown(event: KeyboardEvent): void;
16
14
  writeValue(value: boolean): void;
@@ -6,7 +6,6 @@ export declare class RadioGroupComponent implements AfterContentInit, ControlVal
6
6
  radioButtons: import("@angular/core").Signal<readonly RadioButtonComponent[]>;
7
7
  private uuid;
8
8
  private onChange;
9
- readonly roleAttr = "radiogroup";
10
9
  ngAfterContentInit(): void;
11
10
  writeValue(value: unknown): void;
12
11
  registerOnChange(fn: (value: unknown) => void): void;
@@ -5,6 +5,7 @@ export declare class IconComponent implements OnInit {
5
5
  size: import("@angular/core").InputSignal<IconSize>;
6
6
  private readonly elementRef;
7
7
  private readonly renderer;
8
+ private readonly document;
8
9
  get hostClass(): string;
9
10
  ngOnInit(): void;
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;