@eagami/ui 5.0.0 → 5.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagami/ui",
3
- "version": "5.0.0",
3
+ "version": "5.1.0",
4
4
  "description": "Lightweight, accessible, themeable Angular UI component library and icon set built on CSS custom properties",
5
5
  "author": "Michal Wiraszka <michal@eagami.com>",
6
6
  "license": "MIT",
@@ -25,6 +25,22 @@
25
25
  }
26
26
  }
27
27
 
28
+ // Hides an element visually while keeping it in the accessibility tree, so
29
+ // screen readers still announce it. The clip pattern is used instead of
30
+ // `display: none` or `visibility: hidden`, which would remove it entirely.
31
+ @mixin visually-hidden {
32
+ position: absolute;
33
+ overflow: hidden;
34
+ clip: rect(0, 0, 0, 0);
35
+ clip-path: inset(50%);
36
+ width: 1px;
37
+ height: 1px;
38
+ padding: 0;
39
+ margin: -1px;
40
+ white-space: nowrap;
41
+ border: 0;
42
+ }
43
+
28
44
  // Standard icon button: clear, close/dismiss, password-toggle, nav, etc. The box
29
45
  // is `--ea-icon-button-size` (em) so it scales with the host component's size and
30
46
  // is consistent across components at a given size tier. The glyph is enlarged so
@@ -1,7 +1,7 @@
1
1
  import * as _angular_core from '@angular/core';
2
2
  import { InjectionToken, EnvironmentProviders, Signal, Type, OnDestroy, ElementRef, TemplateRef, OnInit } from '@angular/core';
3
- import { ControlValueAccessor } from '@angular/forms';
4
3
  import * as _eagami_ui from '@eagami/ui';
4
+ import { ControlValueAccessor } from '@angular/forms';
5
5
 
6
6
  /**
7
7
  * BCP 47 locale tags supported out of the box. Consumers select one of these
@@ -46,6 +46,7 @@ interface EagamiMessages {
46
46
  upload: string;
47
47
  dropzone: string;
48
48
  canvas: string;
49
+ canvasInstructions: string;
49
50
  change: string;
50
51
  revert: string;
51
52
  zoomOut: string;
@@ -73,6 +74,7 @@ interface EagamiMessages {
73
74
  clear: string;
74
75
  hue: string;
75
76
  saturationAndValue: string;
77
+ saturationAndValueStatus: (saturation: number, value: number) => string;
76
78
  alpha: string;
77
79
  eyedropper: string;
78
80
  presets: string;
@@ -95,6 +97,7 @@ interface EagamiMessages {
95
97
  };
96
98
  datePicker: {
97
99
  placeholder: string;
100
+ dialogLabel: string;
98
101
  clear: string;
99
102
  previousYear: string;
100
103
  previousMonth: string;
@@ -165,6 +168,10 @@ interface EagamiMessages {
165
168
  progressBar: {
166
169
  label: string;
167
170
  };
171
+ rangeSlider: {
172
+ lowThumbLabel: string;
173
+ highThumbLabel: string;
174
+ };
168
175
  rating: {
169
176
  label: string;
170
177
  valueLabel: (value: number, max: number) => string;
@@ -174,13 +181,16 @@ interface EagamiMessages {
174
181
  label: string;
175
182
  };
176
183
  stepper: {
184
+ stepsLabel: string;
177
185
  optional: string;
186
+ stepCompleted: string;
178
187
  };
179
188
  tag: {
180
189
  remove: string;
181
190
  };
182
191
  timePicker: {
183
192
  placeholder: string;
193
+ dialogLabel: string;
184
194
  clear: string;
185
195
  hoursLabel: string;
186
196
  minutesLabel: string;
@@ -527,6 +537,8 @@ type EaSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
527
537
  */
528
538
  type EaWidth = EaSize | 'full';
529
539
 
540
+ /** Heading level exposed by each item's header for assistive technology. */
541
+ type AccordionHeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
530
542
  /**
531
543
  * Container for expandable content sections. By default only one item can be
532
544
  * open at a time; set `multi` to allow several to stay expanded together.
@@ -534,11 +546,13 @@ type EaWidth = EaSize | 'full';
534
546
  */
535
547
  declare class AccordionComponent {
536
548
  readonly multi: _angular_core.InputSignal<boolean>;
549
+ /** Heading level (1-6) applied to every item's header wrapper. */
550
+ readonly headingLevel: _angular_core.InputSignal<AccordionHeadingLevel>;
537
551
  readonly expandedItems: _angular_core.WritableSignal<Set<string>>;
538
552
  toggle(value: string): void;
539
553
  isExpanded(value: string): boolean;
540
554
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionComponent, never>;
541
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionComponent, "ea-accordion", never, { "multi": { "alias": "multi"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
555
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionComponent, "ea-accordion", never, { "multi": { "alias": "multi"; "required": false; "isSignal": true; }; "headingLevel": { "alias": "headingLevel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
542
556
  }
543
557
 
544
558
  /**
@@ -553,6 +567,7 @@ declare class AccordionItemComponent {
553
567
  readonly disabled: _angular_core.InputSignal<boolean>;
554
568
  readonly id: _angular_core.InputSignal<string>;
555
569
  readonly isExpanded: _angular_core.Signal<boolean>;
570
+ readonly headingLevel: _angular_core.Signal<_eagami_ui.AccordionHeadingLevel>;
556
571
  toggle(): void;
557
572
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
558
573
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionItemComponent, "ea-accordion-item", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
@@ -609,6 +624,8 @@ declare class AutocompleteComponent implements ControlValueAccessor {
609
624
  private readonly inputEl;
610
625
  private readonly i18n;
611
626
  readonly label: _angular_core.InputSignal<string | undefined>;
627
+ /** Accessible name for the input and suggestion list when no visible label is provided. */
628
+ readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
612
629
  readonly placeholder: _angular_core.InputSignal<string>;
613
630
  readonly options: _angular_core.InputSignal<SelectOption[]>;
614
631
  readonly size: _angular_core.InputSignal<EaSize>;
@@ -675,7 +692,7 @@ declare class AutocompleteComponent implements ControlValueAccessor {
675
692
  focus(): void;
676
693
  private moveFocus;
677
694
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
678
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AutocompleteComponent, "ea-autocomplete", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "maxResults": { "alias": "maxResults"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "selected": "selected"; "changed": "changed"; "focused": "focused"; "blurred": "blurred"; }, never, ["[slot=prefix]", "[slot=suffix]"], true, never>;
695
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AutocompleteComponent, "ea-autocomplete", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "maxResults": { "alias": "maxResults"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "selected": "selected"; "changed": "changed"; "focused": "focused"; "blurred": "blurred"; }, never, ["[slot=prefix]", "[slot=suffix]"], true, never>;
679
696
  }
680
697
 
681
698
  /** Crop mask shape applied to the exported image. */
@@ -721,7 +738,9 @@ declare class AvatarEditorComponent implements OnDestroy {
721
738
  readonly errored: _angular_core.OutputEmitterRef<string>;
722
739
  /** Fires whenever the user pans or zooms the image; useful for persisting in-progress crops. */
723
740
  readonly cropStateChanged: _angular_core.OutputEmitterRef<AvatarEditorCropState>;
741
+ readonly instructionsId: string;
724
742
  readonly hasImage: _angular_core.WritableSignal<boolean>;
743
+ readonly lastError: _angular_core.WritableSignal<string | null>;
725
744
  readonly isDragOver: _angular_core.WritableSignal<boolean>;
726
745
  readonly isAtOriginal: _angular_core.WritableSignal<boolean>;
727
746
  readonly isLoading: _angular_core.Signal<boolean>;
@@ -826,6 +845,7 @@ declare class AvatarComponent {
826
845
  readonly hostClasses: _angular_core.Signal<{
827
846
  [x: string]: boolean;
828
847
  }>;
848
+ readonly accessibleName: _angular_core.Signal<string | null>;
829
849
  readonly showImage: _angular_core.Signal<boolean>;
830
850
  readonly showInitials: _angular_core.Signal<boolean>;
831
851
  readonly showFallback: _angular_core.Signal<boolean>;
@@ -1073,6 +1093,7 @@ declare class CommandPaletteComponent {
1073
1093
  readonly emptyMessage: _angular_core.InputSignal<string>;
1074
1094
  readonly execute: _angular_core.OutputEmitterRef<CommandPaletteItem<unknown>>;
1075
1095
  protected readonly messages: _angular_core.Signal<_eagami_ui.EagamiMessages>;
1096
+ protected readonly resolvedPlaceholder: _angular_core.Signal<string>;
1076
1097
  private readonly dialogEl;
1077
1098
  private readonly searchEl;
1078
1099
  protected readonly query: _angular_core.WritableSignal<string>;
@@ -1218,8 +1239,12 @@ declare class ColorPickerComponent implements ControlValueAccessor {
1218
1239
  }>;
1219
1240
  /** Uppercase label for the format toggle, e.g. `HEX`. */
1220
1241
  readonly formatLabel: _angular_core.Signal<string>;
1242
+ /** Accessible name for the format toggle; includes the visible format text. */
1243
+ readonly formatToggleLabel: _angular_core.Signal<string>;
1221
1244
  readonly displayValue: _angular_core.Signal<string>;
1222
1245
  readonly resolvedPlaceholder: _angular_core.Signal<string>;
1246
+ readonly popoverId: _angular_core.Signal<string>;
1247
+ readonly triggerLabelledBy: _angular_core.Signal<string | null>;
1223
1248
  readonly triggerClasses: _angular_core.Signal<{
1224
1249
  [x: string]: boolean;
1225
1250
  'ea-color-picker__trigger--error': boolean;
@@ -1252,6 +1277,8 @@ declare class ColorPickerComponent implements ControlValueAccessor {
1252
1277
  readonly alphaPointerLeft: _angular_core.Signal<string>;
1253
1278
  readonly hueRounded: _angular_core.Signal<number>;
1254
1279
  readonly alphaPercentRounded: _angular_core.Signal<number>;
1280
+ readonly satPercent: _angular_core.Signal<number>;
1281
+ readonly valPercent: _angular_core.Signal<number>;
1255
1282
  onSvPointerDown(event: PointerEvent): void;
1256
1283
  onSvPointerMove(event: PointerEvent): void;
1257
1284
  onSvPointerUp(event: PointerEvent): void;
@@ -1366,7 +1393,8 @@ declare class DataTableComponent<T = Record<string, unknown>> {
1366
1393
  getCellValue(row: T, key: string): unknown;
1367
1394
  onHeaderClick(col: DataTableColumn<T>): void;
1368
1395
  trackByFn(_index: number, item: T): unknown;
1369
- headerTabindex(col: DataTableColumn<T>, colIndex: number): number | null;
1396
+ headerTabindex(colIndex: number): number | null;
1397
+ onHeaderKeydown(event: Event, col: DataTableColumn<T>): void;
1370
1398
  bodyCellTabindex(row: number, colIndex: number): number | null;
1371
1399
  rowTabindex(): number | null;
1372
1400
  onRowActivate(row: T, event?: Event): void;
@@ -1508,6 +1536,8 @@ declare class DatePickerComponent implements ControlValueAccessor {
1508
1536
  private readonly intlLocalizesEffectiveLocale;
1509
1537
  /** Placeholder text: explicit `placeholder` input, else the active locale's default. */
1510
1538
  readonly resolvedPlaceholder: _angular_core.Signal<string>;
1539
+ readonly dialogId: _angular_core.Signal<string>;
1540
+ readonly triggerLabelledBy: _angular_core.Signal<string | null>;
1511
1541
  readonly triggerClasses: _angular_core.Signal<{
1512
1542
  [x: string]: boolean;
1513
1543
  'ea-date-picker__trigger--error': boolean;
@@ -1648,7 +1678,6 @@ declare class DrawerComponent {
1648
1678
  private readonly panelEl;
1649
1679
  private previouslyFocused;
1650
1680
  private pushedTarget;
1651
- private pushedProperty;
1652
1681
  private pushCleanupTimer;
1653
1682
  private shownAsModal;
1654
1683
  private reopening;
@@ -1743,8 +1772,11 @@ declare class DropdownComponent implements ControlValueAccessor {
1743
1772
  readonly isOpen: _angular_core.WritableSignal<boolean>;
1744
1773
  readonly focusedIndex: _angular_core.WritableSignal<number>;
1745
1774
  private readonly _formDisabled;
1775
+ private typeaheadQuery;
1776
+ private typeaheadTimer;
1746
1777
  private onChange;
1747
1778
  private onTouched;
1779
+ constructor();
1748
1780
  readonly isDisabled: _angular_core.Signal<boolean>;
1749
1781
  private readonly errorState;
1750
1782
  readonly errorText: _angular_core.Signal<string | null>;
@@ -1754,6 +1786,7 @@ declare class DropdownComponent implements ControlValueAccessor {
1754
1786
  readonly selectedLabel: _angular_core.Signal<string>;
1755
1787
  /** Placeholder text, falling back to the active locale's translation. */
1756
1788
  readonly resolvedPlaceholder: _angular_core.Signal<string>;
1789
+ readonly triggerLabelledBy: _angular_core.Signal<string | null>;
1757
1790
  readonly triggerClasses: _angular_core.Signal<{
1758
1791
  [x: string]: boolean;
1759
1792
  'ea-dropdown__trigger--error': boolean;
@@ -1778,6 +1811,9 @@ declare class DropdownComponent implements ControlValueAccessor {
1778
1811
  /** Called by `<ea-popover>` when the user clicks outside the dropdown. */
1779
1812
  onPopoverCloseRequested(): void;
1780
1813
  handleKeydown(event: KeyboardEvent): void;
1814
+ private selectFocusedOrOpen;
1815
+ private focusEdge;
1816
+ private handleTypeahead;
1781
1817
  private moveFocus;
1782
1818
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DropdownComponent, never>;
1783
1819
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropdownComponent, "ea-dropdown", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
@@ -2071,8 +2107,9 @@ declare class InputComponent implements ControlValueAccessor {
2071
2107
  private clampToBounds;
2072
2108
  /** Toggles the password reveal state for `type="password"` inputs. */
2073
2109
  togglePasswordVisibility(): void;
2110
+ protected onClearMousedown(event: MouseEvent): void;
2074
2111
  /** Clear the current value and restore focus to the input. */
2075
- clear(event: MouseEvent): void;
2112
+ clear(): void;
2076
2113
  /** Moves keyboard focus to the underlying native input element. */
2077
2114
  focus(): void;
2078
2115
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputComponent, never>;
@@ -2107,6 +2144,8 @@ declare class MenuComponent {
2107
2144
  readonly closed: _angular_core.OutputEmitterRef<void>;
2108
2145
  /** Trigger element currently anchoring the menu. Signal-typed so `<ea-popover>` reacts when it changes. */
2109
2146
  protected readonly triggerEl: _angular_core.WritableSignal<HTMLElement | undefined>;
2147
+ readonly activeItemId: _angular_core.WritableSignal<string | null>;
2148
+ constructor();
2110
2149
  /** Toggles the menu open state, anchoring it to the given trigger element. */
2111
2150
  toggleAt(triggerEl: HTMLElement): void;
2112
2151
  /** Opens the menu anchored to the given trigger element and focuses the first item. */
@@ -2131,6 +2170,7 @@ declare class MenuComponent {
2131
2170
  * and restoring focus on close.
2132
2171
  */
2133
2172
  private focusFirstItem;
2173
+ private focusItem;
2134
2174
  onKeydown(event: KeyboardEvent): void;
2135
2175
  onEscape(): void;
2136
2176
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
@@ -2146,6 +2186,8 @@ type MenuItemVariant = 'default' | 'danger';
2146
2186
  */
2147
2187
  declare class MenuItemComponent {
2148
2188
  private readonly menu;
2189
+ protected readonly itemId: string;
2190
+ protected readonly tabIndex: _angular_core.Signal<0 | -1>;
2149
2191
  readonly disabled: _angular_core.InputSignal<boolean>;
2150
2192
  readonly variant: _angular_core.InputSignal<MenuItemVariant>;
2151
2193
  /** Fires when the item is activated; the parent menu closes immediately afterwards. */
@@ -2185,6 +2227,8 @@ declare class MultiSelectComponent implements ControlValueAccessor {
2185
2227
  protected readonly i18n: EagamiI18nService;
2186
2228
  private readonly injector;
2187
2229
  readonly label: _angular_core.InputSignal<string | undefined>;
2230
+ /** Accessible name for the combobox when no visible `label` is set. */
2231
+ readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
2188
2232
  readonly placeholder: _angular_core.InputSignal<string | undefined>;
2189
2233
  readonly searchPlaceholder: _angular_core.InputSignal<string | undefined>;
2190
2234
  readonly options: _angular_core.InputSignal<readonly SelectOption[]>;
@@ -2227,6 +2271,9 @@ declare class MultiSelectComponent implements ControlValueAccessor {
2227
2271
  /** Currently selected options, ordered to match the input `options`. */
2228
2272
  readonly selectedOptions: _angular_core.Signal<readonly SelectOption[]>;
2229
2273
  readonly hasValue: _angular_core.Signal<boolean>;
2274
+ readonly listboxId: _angular_core.Signal<string>;
2275
+ /** Id of the keyboard-focused option, for `aria-activedescendant`. */
2276
+ readonly activeOptionId: _angular_core.Signal<string | null>;
2230
2277
  /** Chips visible inside the trigger, capped by `maxVisibleChips`. */
2231
2278
  readonly visibleChips: _angular_core.Signal<readonly SelectOption[]>;
2232
2279
  /** Count behind the "+N more" pill, or `0` when all chips fit. */
@@ -2258,6 +2305,7 @@ declare class MultiSelectComponent implements ControlValueAccessor {
2258
2305
  onPopoverCloseRequested(): void;
2259
2306
  /** Toggle one option's membership in the selection. */
2260
2307
  toggleOption(opt: SelectOption): void;
2308
+ protected onOptionClick(opt: SelectOption, index: number): void;
2261
2309
  /**
2262
2310
  * Remove a single chip from the trigger. `<ea-tag>` already stops the
2263
2311
  * click from bubbling to the trigger's `(click)`, so no event handling
@@ -2286,7 +2334,7 @@ declare class MultiSelectComponent implements ControlValueAccessor {
2286
2334
  private resetEditState;
2287
2335
  private commit;
2288
2336
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
2289
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectComponent, "ea-multi-select", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "selectAll": { "alias": "selectAll"; "required": false; "isSignal": true; }; "maxVisibleChips": { "alias": "maxVisibleChips"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
2337
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectComponent, "ea-multi-select", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "selectAll": { "alias": "selectAll"; "required": false; "isSignal": true; }; "maxVisibleChips": { "alias": "maxVisibleChips"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
2290
2338
  }
2291
2339
 
2292
2340
  /** Horizontal alignment of paginator controls within their container. */
@@ -2306,6 +2354,7 @@ interface PaginatorState {
2306
2354
  */
2307
2355
  declare class PaginatorComponent {
2308
2356
  protected readonly i18n: EagamiI18nService;
2357
+ protected readonly sizeSelectId: string;
2309
2358
  readonly totalItems: _angular_core.InputSignal<number>;
2310
2359
  readonly pageSizeOptions: _angular_core.InputSignal<number[]>;
2311
2360
  readonly showPageSizeSelector: _angular_core.InputSignal<boolean>;
@@ -2443,6 +2492,10 @@ declare class PopoverComponent {
2443
2492
  readonly role: _angular_core.InputSignal<PopoverRole>;
2444
2493
  /** Accessible label. Falls back to nothing; consumers should provide one when no visible heading is in the popover. */
2445
2494
  readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
2495
+ /** Id of the element that labels the popover surface, forwarded as `aria-labelledby`. */
2496
+ readonly ariaLabelledby: _angular_core.InputSignal<string | undefined>;
2497
+ /** Keep Tab and Shift+Tab cycling within the surface while open (dialog pattern). */
2498
+ readonly trapFocus: _angular_core.InputSignal<boolean>;
2446
2499
  /** DOM id for the surface so trigger elements can reference it via aria-controls. */
2447
2500
  readonly surfaceId: _angular_core.InputSignal<string>;
2448
2501
  /**
@@ -2482,9 +2535,10 @@ declare class PopoverComponent {
2482
2535
  private resolveAnchor;
2483
2536
  private reposition;
2484
2537
  onDocumentClick(event: MouseEvent): void;
2538
+ onSurfaceKeydown(event: KeyboardEvent): void;
2485
2539
  onEscape(): void;
2486
2540
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PopoverComponent, never>;
2487
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<PopoverComponent, "ea-popover", never, { "anchor": { "alias": "anchor"; "required": true; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "surfaceId": { "alias": "surfaceId"; "required": false; "isSignal": true; }; "offset": { "alias": "offset"; "required": false; "isSignal": true; }; "flip": { "alias": "flip"; "required": false; "isSignal": true; }; "clamp": { "alias": "clamp"; "required": false; "isSignal": true; }; "matchAnchorWidth": { "alias": "matchAnchorWidth"; "required": false; "isSignal": true; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "scrollBehavior": { "alias": "scrollBehavior"; "required": false; "isSignal": true; }; }, { "closeRequested": "closeRequested"; }, never, ["*"], true, never>;
2541
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<PopoverComponent, "ea-popover", never, { "anchor": { "alias": "anchor"; "required": true; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "trapFocus": { "alias": "trapFocus"; "required": false; "isSignal": true; }; "surfaceId": { "alias": "surfaceId"; "required": false; "isSignal": true; }; "offset": { "alias": "offset"; "required": false; "isSignal": true; }; "flip": { "alias": "flip"; "required": false; "isSignal": true; }; "clamp": { "alias": "clamp"; "required": false; "isSignal": true; }; "matchAnchorWidth": { "alias": "matchAnchorWidth"; "required": false; "isSignal": true; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "scrollBehavior": { "alias": "scrollBehavior"; "required": false; "isSignal": true; }; }, { "closeRequested": "closeRequested"; }, never, ["*"], true, never>;
2488
2542
  }
2489
2543
 
2490
2544
  /** Semantic colour scheme of the progress bar. */
@@ -2624,9 +2678,9 @@ declare class RangeSliderComponent implements ControlValueAccessor {
2624
2678
  readonly formatValue: _angular_core.InputSignal<(value: number) => string>;
2625
2679
  /** Group thousands with commas in displayed values (ignored when a custom `formatValue` is set). */
2626
2680
  readonly groupThousands: _angular_core.InputSignal<boolean>;
2627
- /** Accessible label for the low (start) thumb. Falls back to the field label when omitted. */
2681
+ /** Accessible label for the low (start) thumb. Falls back to a localized default when omitted. */
2628
2682
  readonly ariaLabelLow: _angular_core.InputSignal<string | undefined>;
2629
- /** Accessible label for the high (end) thumb. Falls back to the field label when omitted. */
2683
+ /** Accessible label for the high (end) thumb. Falls back to a localized default when omitted. */
2630
2684
  readonly ariaLabelHigh: _angular_core.InputSignal<string | undefined>;
2631
2685
  readonly id: _angular_core.InputSignal<string>;
2632
2686
  readonly value: _angular_core.ModelSignal<RangeSliderValue>;
@@ -2641,6 +2695,11 @@ declare class RangeSliderComponent implements ControlValueAccessor {
2641
2695
  readonly clampedValue: _angular_core.Signal<RangeSliderValue>;
2642
2696
  readonly lowPercent: _angular_core.Signal<number>;
2643
2697
  readonly highPercent: _angular_core.Signal<number>;
2698
+ readonly lowThumbLabel: _angular_core.Signal<string>;
2699
+ readonly highThumbLabel: _angular_core.Signal<string>;
2700
+ readonly lowThumbLabelledBy: _angular_core.Signal<string>;
2701
+ readonly highThumbLabelledBy: _angular_core.Signal<string>;
2702
+ private thumbLabelledBy;
2644
2703
  /** Formats a value for display, grouping thousands with commas unless a custom `formatValue` is set. */
2645
2704
  protected formatDisplay(value: number): string;
2646
2705
  private readonly errorState;
@@ -2802,6 +2861,8 @@ declare class SegmentedComponent implements ControlValueAccessor {
2802
2861
  readonly showError: _angular_core.Signal<boolean>;
2803
2862
  readonly showHint: _angular_core.Signal<boolean>;
2804
2863
  readonly enabledOptions: _angular_core.Signal<SelectOption[]>;
2864
+ readonly firstEnabledIndex: _angular_core.Signal<number>;
2865
+ readonly tabStopIndex: _angular_core.Signal<number>;
2805
2866
  readonly hostClasses: _angular_core.Signal<{
2806
2867
  [x: string]: boolean;
2807
2868
  'ea-segmented--full-width': boolean;
@@ -3075,6 +3136,8 @@ declare class TabsComponent {
3075
3136
  readonly registeredTabs: _angular_core.WritableSignal<TabComponent[]>;
3076
3137
  readonly variant: _angular_core.InputSignal<TabsVariant>;
3077
3138
  readonly size: _angular_core.InputSignal<EaSize>;
3139
+ /** Accessible name for the tablist, announced by screen readers. */
3140
+ readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
3078
3141
  readonly activeTab: _angular_core.ModelSignal<string>;
3079
3142
  /** Fires with the value of the newly active tab. */
3080
3143
  readonly changed: _angular_core.OutputEmitterRef<string>;
@@ -3086,7 +3149,7 @@ declare class TabsComponent {
3086
3149
  selectTab(value: string): void;
3087
3150
  handleKeydown(event: KeyboardEvent): void;
3088
3151
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabsComponent, never>;
3089
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabsComponent, "ea-tabs", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; }, { "activeTab": "activeTabChange"; "changed": "changed"; }, never, ["*"], true, never>;
3152
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabsComponent, "ea-tabs", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; }, { "activeTab": "activeTabChange"; "changed": "changed"; }, never, ["*"], true, never>;
3090
3153
  }
3091
3154
 
3092
3155
  /** Semantic colour scheme of a tag. */
@@ -3234,6 +3297,7 @@ declare class TimePickerComponent implements ControlValueAccessor {
3234
3297
  readonly minuteStep: _angular_core.InputSignal<number>;
3235
3298
  readonly secondStep: _angular_core.InputSignal<number>;
3236
3299
  readonly id: _angular_core.InputSignal<string>;
3300
+ readonly popoverId: _angular_core.Signal<string>;
3237
3301
  /** `"HH:MM"` or `"HH:MM:SS"` in 24-hour notation, or `null` when unset. */
3238
3302
  readonly value: _angular_core.ModelSignal<string | null>;
3239
3303
  /** Fires with the new value whenever the user changes the time. */
@@ -3318,6 +3382,8 @@ declare class TimePickerComponent implements ControlValueAccessor {
3318
3382
  /** Switches the AM/PM period in 12h mode by toggling the 12-hour offset. */
3319
3383
  togglePeriod(): void;
3320
3384
  handlePopoverKeydown(event: KeyboardEvent, unit: Unit): void;
3385
+ /** Escape from anywhere inside the popover closes it and refocuses the trigger. */
3386
+ onPopoverEscape(event: Event): void;
3321
3387
  /** Select-all on focus so the first keystroke replaces the current value. */
3322
3388
  onSpinnerFocus(event: FocusEvent): void;
3323
3389
  /**
@@ -3407,7 +3473,6 @@ declare class ToastComponent {
3407
3473
  /** Show a dismiss button on each toast. */
3408
3474
  readonly clearable: _angular_core.InputSignal<boolean>;
3409
3475
  protected readonly containerClass: _angular_core.Signal<string>;
3410
- protected getRole(toast: Toast): 'alert' | 'status';
3411
3476
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastComponent, never>;
3412
3477
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToastComponent, "ea-toast", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3413
3478
  }
@@ -3503,6 +3568,10 @@ declare class TransferListComponent {
3503
3568
  private readonly rightHighlighted;
3504
3569
  private readonly leftAnchor;
3505
3570
  private readonly rightAnchor;
3571
+ private readonly leftActiveId;
3572
+ private readonly rightActiveId;
3573
+ private readonly leftActiveIndex;
3574
+ private readonly rightActiveIndex;
3506
3575
  protected readonly sourceItems: _angular_core.Signal<TransferListItem[]>;
3507
3576
  protected readonly targetItems: _angular_core.Signal<TransferListItem[]>;
3508
3577
  protected readonly canMoveRight: _angular_core.Signal<boolean>;
@@ -3513,8 +3582,13 @@ declare class TransferListComponent {
3513
3582
  protected readonly resolvedTargetLabel: _angular_core.Signal<string>;
3514
3583
  protected readonly hostClasses: _angular_core.Signal<string[]>;
3515
3584
  protected isHighlighted(pane: 'source' | 'target', id: string): boolean;
3585
+ protected itemTabindex(pane: 'source' | 'target', index: number, item: TransferListItem): number;
3516
3586
  protected onItemClick(pane: 'source' | 'target', item: TransferListItem, event: MouseEvent): void;
3517
3587
  protected onItemKeydown(event: KeyboardEvent, pane: 'source' | 'target', item: TransferListItem): void;
3588
+ private resolveActiveIndex;
3589
+ private nextEnabledIndex;
3590
+ private setActive;
3591
+ private focusOption;
3518
3592
  private toggleHighlight;
3519
3593
  private selectRangeTo;
3520
3594
  protected moveSelectedRight(): void;
@@ -3658,6 +3732,13 @@ declare class VirtualListComponent {
3658
3732
  * trade memory for smoothness.
3659
3733
  */
3660
3734
  readonly overscan: _angular_core.InputSignal<number>;
3735
+ /**
3736
+ * Accessible name for the scrollable viewport. When set, the viewport gets
3737
+ * `role="region"` with this label so keyboard and screen-reader users can
3738
+ * identify it. Leave unset when the consumer supplies its own ARIA
3739
+ * semantics around the list (e.g. an outer `role="listbox"`).
3740
+ */
3741
+ readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
3661
3742
  /** Index of the first row currently visible at the top of the viewport. */
3662
3743
  readonly scrollIndexChange: _angular_core.OutputEmitterRef<number>;
3663
3744
  /** Template applied to each rendered item, projected via `<ng-template #item>`. */
@@ -3687,7 +3768,7 @@ declare class VirtualListComponent {
3687
3768
  */
3688
3769
  scrollToIndex(index: number): void;
3689
3770
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<VirtualListComponent, never>;
3690
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<VirtualListComponent, "ea-virtual-list", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": true; "isSignal": true; }; "viewportHeight": { "alias": "viewportHeight"; "required": true; "isSignal": true; }; "overscan": { "alias": "overscan"; "required": false; "isSignal": true; }; }, { "scrollIndexChange": "scrollIndexChange"; }, ["itemTemplate"], never, true, never>;
3771
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<VirtualListComponent, "ea-virtual-list", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": true; "isSignal": true; }; "viewportHeight": { "alias": "viewportHeight"; "required": true; "isSignal": true; }; "overscan": { "alias": "overscan"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "scrollIndexChange": "scrollIndexChange"; }, ["itemTemplate"], never, true, never>;
3691
3772
  }
3692
3773
 
3693
3774
  /**
@@ -6813,4 +6894,4 @@ declare class WhatsappIconComponent extends IconComponentBase {
6813
6894
  }
6814
6895
 
6815
6896
  export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, AnthropicIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeCheckIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BitcoinIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkCheckIconComponent, BookmarkIconComponent, BotIconComponent, BottleIconComponent, BoxIconComponent, BrainIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarCheckIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardCheckIconComponent, ClipboardIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, CoinsIconComponent, ColorPickerComponent, ColumnsIconComponent, CommandIconComponent, CommandPaletteComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DEFAULT_PALETTE_ROLES, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideCircleIconComponent, DivideIconComponent, DivideSquareIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DribbbleIconComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_ALL_LOCALES, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_LOCALE_META, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FieldLabelComponent, FieldMessagesComponent, Figma2IconComponent, FigmaIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FilterXIconComponent, FingerprintIconComponent, FlagIconComponent, FlameIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, GaugeIconComponent, GeminiIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HalfCircleIconComponent, HalfHeartIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KubernetesIconComponent, LampIconComponent, LayersIconComponent, LayoutIconComponent, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MultiSelectComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, QrCodeIconComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, ReactIconComponent, ReceiptIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RedoIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RocketIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScanIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SnowflakeIconComponent, SoccerBallIconComponent, SparklesIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UndoIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WCAG_AA, WalletIconComponent, WandIconComponent, WatchIconComponent, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, hexToOklch, iconDisplayName, is, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, validatePalette, visibleNodeIds, walkTree, zhCN };
6816
- export type { AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, DrawerAnimation, DrawerMode, DrawerPosition, DrawerSize, DropdownSize, EaErrorMessages, EaSize, EaValidationErrorKey, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiLocaleBundle, EagamiLocaleMeta, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, ModePalette, ModeSurfaces, MultiSelectSize, PaginatorAlign, PaginatorSize, PaginatorState, PaletteConfig, PaletteRoles, PaletteShade, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, RatingSize, RatingStarState, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, Toast, ToastOptions, ToastPosition, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
6897
+ export type { AccordionHeadingLevel, AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, DrawerAnimation, DrawerMode, DrawerPosition, DrawerSize, DropdownSize, EaErrorMessages, EaSize, EaValidationErrorKey, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiLocaleBundle, EagamiLocaleMeta, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, ModePalette, ModeSurfaces, MultiSelectSize, PaginatorAlign, PaginatorSize, PaginatorState, PaletteConfig, PaletteRoles, PaletteShade, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, RatingSize, RatingStarState, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, Toast, ToastOptions, ToastPosition, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };