@eagami/ui 2.11.0 → 3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagami/ui",
3
- "version": "2.11.0",
3
+ "version": "3.0.0",
4
4
  "description": "Lightweight, accessible Angular UI component library built on CSS custom properties",
5
5
  "author": "Michal Wiraszka <michal@eagami.com>",
6
6
  "license": "MIT",
@@ -22,9 +22,9 @@
22
22
  },
23
23
  "sideEffects": false,
24
24
  "peerDependencies": {
25
- "@angular/common": "^21.0.0",
26
- "@angular/core": "^21.0.0",
27
- "@angular/forms": "^21.0.0"
25
+ "@angular/common": "^21.0.0 || ^22.0.0",
26
+ "@angular/core": "^21.0.0 || ^22.0.0",
27
+ "@angular/forms": "^21.0.0 || ^22.0.0"
28
28
  },
29
29
  "dependencies": {},
30
30
  "engines": {
@@ -10,8 +10,12 @@
10
10
  font-weight: var(--font-weight-medium);
11
11
  line-height: var(--line-height-normal);
12
12
  white-space: nowrap;
13
+ // When a max-width switches the bubble to multi-line, break long unbreakable
14
+ // strings (URLs, tokens) instead of letting them overflow the bubble.
15
+ overflow-wrap: anywhere;
16
+ border: var(--border-width-thin) solid var(--color-tooltip-border);
13
17
  border-radius: var(--radius-md);
14
- background-color: var(--color-neutral-800);
18
+ background-color: var(--color-tooltip-surface);
15
19
  color: var(--color-neutral-0);
16
20
  pointer-events: none;
17
21
  animation: ea-tooltip-fade-in var(--duration-fast) var(--ease-out);
@@ -92,6 +92,12 @@
92
92
  --color-bg-elevated: var(--color-neutral-0);
93
93
  --color-bg-overlay: rgba(0, 0, 0, 0.5);
94
94
 
95
+ // Tooltips float over arbitrary content, so their surface is a unique tone that
96
+ // never matches a page or palette colour in either theme; the translucent
97
+ // hairline border separates it from same-tone backgrounds.
98
+ --color-tooltip-surface: #1a1b21;
99
+ --color-tooltip-border: rgba(255, 255, 255, 0.15);
100
+
95
101
  // Interactive lift layers for hover and active/selected fills. Light surfaces
96
102
  // are all near-white and never collapse onto these shades, so solid muted
97
103
  // tones read cleanly. Dark mode swaps them for translucent washes (see the
@@ -7,8 +7,12 @@ import * as _eagami_ui from '@eagami/ui';
7
7
  * BCP 47 locale tags supported out of the box. Consumers select one of these
8
8
  * via `provideEagamiUi({ locale })` or `EagamiI18nService.setLocale()`.
9
9
  */
10
- type EagamiLocale = 'en' | 'fr-FR' | 'el' | 'pl' | 'es-ES';
11
- /** Ordered list of every supported locale, handy for language switchers. */
10
+ type EagamiLocale = 'en' | 'fr-FR' | 'el' | 'pl' | 'es-ES' | 'de' | 'pt-BR' | 'zh-CN' | 'is' | 'nl';
11
+ /**
12
+ * Supported locales for language switchers: English pinned first (default
13
+ * fallback), then alphabetical by each language's own name (Latin scripts
14
+ * first, then Greek and Chinese).
15
+ */
12
16
  declare const EAGAMI_LOCALES: readonly EagamiLocale[];
13
17
  /**
14
18
  * Every user-facing string baked into the component library, grouped by
@@ -117,7 +121,7 @@ interface EagamiMessages {
117
121
  paginator: {
118
122
  label: string;
119
123
  rowsPerPage: string;
120
- range: (start: number, end: number, total: number) => string;
124
+ range: (start: string, end: string, total: string) => string;
121
125
  previousPage: string;
122
126
  nextPage: string;
123
127
  };
@@ -1425,8 +1429,6 @@ declare class DatePickerComponent implements ControlValueAccessor {
1425
1429
 
1426
1430
  /** Width preset of the dialog panel. */
1427
1431
  type DialogWidth = EaWidth;
1428
- /** @deprecated Use `DialogWidth` instead. Will be removed in v3.0.0. */
1429
- type DialogSize = DialogWidth;
1430
1432
  /**
1431
1433
  * Modal dialog backed by the native `<dialog>` element. Uses `showModal()`
1432
1434
  * for browser-managed focus trapping, supports backdrop and Escape dismissal,
@@ -1437,11 +1439,7 @@ declare class DialogComponent {
1437
1439
  private readonly dialogEl;
1438
1440
  private previouslyFocused;
1439
1441
  protected readonly i18n: EagamiI18nService;
1440
- readonly width: _angular_core.InputSignal<EaWidth | undefined>;
1441
- /**
1442
- * @deprecated Use `width` instead. Will be removed in v3.0.0.
1443
- */
1444
- readonly size: _angular_core.InputSignal<EaWidth>;
1442
+ readonly width: _angular_core.InputSignal<EaWidth>;
1445
1443
  readonly closeOnBackdrop: _angular_core.InputSignal<boolean>;
1446
1444
  readonly closeOnEscape: _angular_core.InputSignal<boolean>;
1447
1445
  readonly showClose: _angular_core.InputSignal<boolean>;
@@ -1452,8 +1450,6 @@ declare class DialogComponent {
1452
1450
  readonly opened: _angular_core.OutputEmitterRef<void>;
1453
1451
  /** Fires when the dialog closes (via close button, backdrop, or Escape). */
1454
1452
  readonly closed: _angular_core.OutputEmitterRef<void>;
1455
- /** Effective panel width, preferring `width` over the deprecated `size`. */
1456
- readonly resolvedWidth: _angular_core.Signal<EaWidth>;
1457
1453
  readonly panelClasses: _angular_core.Signal<{
1458
1454
  [x: string]: boolean;
1459
1455
  }>;
@@ -1462,7 +1458,7 @@ declare class DialogComponent {
1462
1458
  handleBackdropClick(event: MouseEvent): void;
1463
1459
  handleCancel(event: Event): void;
1464
1460
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DialogComponent, never>;
1465
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DialogComponent, "ea-dialog", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "closeOnBackdrop": { "alias": "closeOnBackdrop"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["[slot=header]", "*", "[slot=footer]"], true, never>;
1461
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DialogComponent, "ea-dialog", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; "closeOnBackdrop": { "alias": "closeOnBackdrop"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["[slot=header]", "*", "[slot=footer]"], true, never>;
1466
1462
  }
1467
1463
 
1468
1464
  /** Orientation of the divider rule. */
@@ -1489,8 +1485,6 @@ declare class DividerComponent {
1489
1485
  type DrawerPosition = 'left' | 'right' | 'top' | 'bottom';
1490
1486
  /** Width of the drawer panel along its primary axis. */
1491
1487
  type DrawerWidth = EaWidth;
1492
- /** @deprecated Use `DrawerWidth` instead. Will be removed in v3.0.0. */
1493
- type DrawerSize = DrawerWidth;
1494
1488
  /**
1495
1489
  * Side panel backed by the native `<dialog>` element for browser-managed
1496
1490
  * focus trapping. Slides in from a configurable edge, supports backdrop and
@@ -1502,13 +1496,11 @@ declare class DrawerComponent {
1502
1496
  private previouslyFocused;
1503
1497
  protected readonly i18n: EagamiI18nService;
1504
1498
  readonly position: _angular_core.InputSignal<DrawerPosition>;
1505
- readonly width: _angular_core.InputSignal<EaWidth | undefined>;
1506
- /**
1507
- * @deprecated Use `width` instead. Will be removed in v3.0.0.
1508
- */
1509
- readonly size: _angular_core.InputSignal<EaWidth>;
1499
+ readonly width: _angular_core.InputSignal<EaWidth>;
1510
1500
  readonly closeOnBackdrop: _angular_core.InputSignal<boolean>;
1511
1501
  readonly closeOnEscape: _angular_core.InputSignal<boolean>;
1502
+ /** Slide the panel in from its edge when the drawer opens. */
1503
+ readonly animated: _angular_core.InputSignal<boolean>;
1512
1504
  readonly showClose: _angular_core.InputSignal<boolean>;
1513
1505
  readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
1514
1506
  readonly id: _angular_core.InputSignal<string>;
@@ -1517,8 +1509,6 @@ declare class DrawerComponent {
1517
1509
  readonly opened: _angular_core.OutputEmitterRef<void>;
1518
1510
  /** Fires when the drawer closes (via close button, backdrop, or Escape). */
1519
1511
  readonly closed: _angular_core.OutputEmitterRef<void>;
1520
- /** Effective panel width, preferring `width` over the deprecated `size`. */
1521
- readonly resolvedWidth: _angular_core.Signal<EaWidth>;
1522
1512
  readonly panelClasses: _angular_core.Signal<{
1523
1513
  [x: string]: boolean;
1524
1514
  }>;
@@ -1526,8 +1516,9 @@ declare class DrawerComponent {
1526
1516
  handleClose(): void;
1527
1517
  handleBackdropClick(event: MouseEvent): void;
1528
1518
  handleCancel(event: Event): void;
1519
+ onDialogClose(): void;
1529
1520
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DrawerComponent, never>;
1530
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawerComponent, "ea-drawer", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "closeOnBackdrop": { "alias": "closeOnBackdrop"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["[slot=header]", "*", "[slot=footer]"], true, never>;
1521
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawerComponent, "ea-drawer", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "closeOnBackdrop": { "alias": "closeOnBackdrop"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "animated": { "alias": "animated"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["[slot=header]", "*", "[slot=footer]"], true, never>;
1531
1522
  }
1532
1523
 
1533
1524
  /** Visual size of the dropdown trigger. */
@@ -1598,8 +1589,6 @@ declare class DropdownComponent implements ControlValueAccessor {
1598
1589
 
1599
1590
  /** Content variant: `default` is the bare wordmark, `byline` adds the handcrafted-by line, `tagline` adds the tagline. */
1600
1591
  type EagamiWordmarkVariant = 'default' | 'byline' | 'tagline';
1601
- /** @deprecated Numeric variants (1, 2, 3) alias `default`/`byline`/`tagline`. Removed in v3.0.0. */
1602
- type EagamiWordmarkVariantLegacy = 1 | 2 | 3;
1603
1592
  /** Layout of the wordmark: `stacked` for multi-line, `inline` for a single line with em-dash separators. */
1604
1593
  type EagamiWordmarkLayout = 'stacked' | 'inline';
1605
1594
  /**
@@ -1609,15 +1598,10 @@ type EagamiWordmarkLayout = 'stacked' | 'inline';
1609
1598
  */
1610
1599
  declare class EagamiWordmarkComponent {
1611
1600
  protected readonly i18n: EagamiI18nService;
1612
- /**
1613
- * Content variant. The numeric values `1`/`2`/`3` are accepted as deprecated
1614
- * aliases for `default`/`byline`/`tagline` and are removed in v3.0.0.
1615
- */
1616
- readonly variant: _angular_core.InputSignal<EagamiWordmarkVariant | EagamiWordmarkVariantLegacy>;
1601
+ /** Content variant. */
1602
+ readonly variant: _angular_core.InputSignal<EagamiWordmarkVariant>;
1617
1603
  readonly layout: _angular_core.InputSignal<EagamiWordmarkLayout>;
1618
1604
  readonly size: _angular_core.InputSignal<number>;
1619
- /** Collapses the deprecated numeric variants to the string form. */
1620
- private readonly resolvedVariant;
1621
1605
  /** Clamps size to a 10px floor and falls back to the default when cleared. */
1622
1606
  protected readonly resolvedSize: _angular_core.Signal<number>;
1623
1607
  protected readonly showOverline: _angular_core.Signal<boolean>;
@@ -1895,6 +1879,8 @@ declare class MenuComponent {
1895
1879
  private readonly i18n;
1896
1880
  private readonly listEl;
1897
1881
  readonly placement: _angular_core.InputSignal<MenuPlacement>;
1882
+ /** Max height of the scrollable list as a CSS length; tall menus scroll past it. */
1883
+ readonly maxHeight: _angular_core.InputSignal<string>;
1898
1884
  readonly disabled: _angular_core.InputSignal<boolean>;
1899
1885
  readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
1900
1886
  readonly id: _angular_core.InputSignal<string>;
@@ -1934,7 +1920,7 @@ declare class MenuComponent {
1934
1920
  onKeydown(event: KeyboardEvent): void;
1935
1921
  onEscape(): void;
1936
1922
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
1937
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuComponent, "ea-menu", never, { "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["*"], true, never>;
1923
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuComponent, "ea-menu", never, { "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["*"], true, never>;
1938
1924
  }
1939
1925
 
1940
1926
  /** Visual style of a menu item; `danger` for destructive actions. */
@@ -1998,7 +1984,7 @@ declare class MultiSelectComponent implements ControlValueAccessor {
1998
1984
  readonly searchable: _angular_core.InputSignal<boolean>;
1999
1985
  /** Toggle the "Select all" row at the top of the option list. */
2000
1986
  readonly selectAll: _angular_core.InputSignal<boolean>;
2001
- /** Max number of chips shown inside the trigger; the rest collapse into a "+N more" pill. `0` removes the cap. */
1987
+ /** Max number of chips shown inside the trigger; the rest collapse into a "+N more" pill. `0` removes the cap so every chip shows and the row scrolls horizontally. */
2002
1988
  readonly maxVisibleChips: _angular_core.InputSignal<number>;
2003
1989
  readonly id: _angular_core.InputSignal<string>;
2004
1990
  /** Selected option values, in the original options order. */
@@ -2087,6 +2073,8 @@ declare class MultiSelectComponent implements ControlValueAccessor {
2087
2073
 
2088
2074
  /** Horizontal alignment of paginator controls within their container. */
2089
2075
  type PaginatorAlign = 'left' | 'center' | 'right';
2076
+ /** Visual size of the paginator. */
2077
+ type PaginatorSize = EaSize;
2090
2078
  /** Snapshot of the paginator's page and page size. */
2091
2079
  interface PaginatorState {
2092
2080
  page: number;
@@ -2105,6 +2093,9 @@ declare class PaginatorComponent {
2105
2093
  readonly showPageSizeSelector: _angular_core.InputSignal<boolean>;
2106
2094
  readonly showRangeLabel: _angular_core.InputSignal<boolean>;
2107
2095
  readonly align: _angular_core.InputSignal<PaginatorAlign>;
2096
+ readonly size: _angular_core.InputSignal<EaSize>;
2097
+ /** Group thousands with commas in the range and page numbers. */
2098
+ readonly groupThousands: _angular_core.InputSignal<boolean>;
2108
2099
  readonly disabled: _angular_core.InputSignal<boolean>;
2109
2100
  readonly page: _angular_core.ModelSignal<number>;
2110
2101
  readonly pageSize: _angular_core.ModelSignal<number>;
@@ -2115,6 +2106,8 @@ declare class PaginatorComponent {
2115
2106
  readonly rangeEnd: _angular_core.Signal<number>;
2116
2107
  readonly canGoPrev: _angular_core.Signal<boolean>;
2117
2108
  readonly canGoNext: _angular_core.Signal<boolean>;
2109
+ /** Formats a number for display, grouping thousands with commas when enabled. */
2110
+ protected formatNumber(value: number): string;
2118
2111
  readonly visiblePages: _angular_core.Signal<(number | "ellipsis")[]>;
2119
2112
  /** Navigates to the given page, clamped into the valid range. */
2120
2113
  goToPage(page: number): void;
@@ -2124,7 +2117,7 @@ declare class PaginatorComponent {
2124
2117
  nextPage(): void;
2125
2118
  onPageSizeChange(event: Event): void;
2126
2119
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PaginatorComponent, never>;
2127
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaginatorComponent, "ea-paginator", never, { "totalItems": { "alias": "totalItems"; "required": true; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "showPageSizeSelector": { "alias": "showPageSizeSelector"; "required": false; "isSignal": true; }; "showRangeLabel": { "alias": "showRangeLabel"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; }, { "page": "pageChange"; "pageSize": "pageSizeChange"; "changed": "changed"; }, never, never, true, never>;
2120
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaginatorComponent, "ea-paginator", never, { "totalItems": { "alias": "totalItems"; "required": true; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "showPageSizeSelector": { "alias": "showPageSizeSelector"; "required": false; "isSignal": true; }; "showRangeLabel": { "alias": "showRangeLabel"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "groupThousands": { "alias": "groupThousands"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; }, { "page": "pageChange"; "pageSize": "pageSizeChange"; "changed": "changed"; }, never, never, true, never>;
2128
2121
  }
2129
2122
 
2130
2123
  /**
@@ -2292,12 +2285,8 @@ declare class ProgressBarComponent {
2292
2285
  readonly label: _angular_core.InputSignal<string | undefined>;
2293
2286
  /** Shows the rounded percentage alongside the label. */
2294
2287
  readonly showPercentage: _angular_core.InputSignal<boolean>;
2295
- /**
2296
- * @deprecated Use `showPercentage` instead. Will be removed in v3.0.0.
2297
- */
2298
- readonly showValue: _angular_core.InputSignal<boolean>;
2299
2288
  readonly indeterminate: _angular_core.InputSignal<boolean>;
2300
- /** Whether to render the percentage (honours the deprecated `showValue` alias). */
2289
+ /** Whether to render the percentage. */
2301
2290
  readonly showsPercentage: _angular_core.Signal<boolean>;
2302
2291
  readonly percentage: _angular_core.Signal<number>;
2303
2292
  readonly percentageRounded: _angular_core.Signal<number>;
@@ -2306,7 +2295,7 @@ declare class ProgressBarComponent {
2306
2295
  'ea-progress-bar--indeterminate': boolean;
2307
2296
  }>;
2308
2297
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
2309
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProgressBarComponent, "ea-progress-bar", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "showPercentage": { "alias": "showPercentage"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2298
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProgressBarComponent, "ea-progress-bar", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "showPercentage": { "alias": "showPercentage"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2310
2299
  }
2311
2300
 
2312
2301
  /** Visual size shared by all radios in the group. */
@@ -2890,7 +2879,7 @@ type TextareaSize = EaSize;
2890
2879
  type TextareaResize = 'none' | 'vertical' | 'horizontal' | 'both';
2891
2880
  /**
2892
2881
  * Multiline text field that mirrors the `ea-input` API. Supports configurable
2893
- * `rows`, `resize` direction, and `maxlength`, and integrates with Angular
2882
+ * `resize` direction and `maxlength`, and integrates with Angular
2894
2883
  * forms via `ControlValueAccessor`.
2895
2884
  */
2896
2885
  declare class TextareaComponent implements ControlValueAccessor {
@@ -2903,18 +2892,13 @@ declare class TextareaComponent implements ControlValueAccessor {
2903
2892
  readonly disabled: _angular_core.InputSignal<boolean>;
2904
2893
  readonly readonly: _angular_core.InputSignal<boolean>;
2905
2894
  readonly required: _angular_core.InputSignal<boolean>;
2906
- /**
2907
- * @deprecated Use `maxHeight` and the `resize` handle to control height; this
2908
- * sets the initial height only. Will be removed in v3.0.0.
2909
- */
2910
- readonly rows: _angular_core.InputSignal<number>;
2911
2895
  readonly resize: _angular_core.InputSignal<TextareaResize>;
2912
2896
  readonly maxlength: _angular_core.InputSignal<number | undefined>;
2913
2897
  /** Optional pixel ceiling for the textarea's height. Beyond it, the inner
2914
2898
  * field scrolls vertically instead of growing. */
2915
2899
  readonly maxHeight: _angular_core.InputSignal<number | undefined>;
2916
2900
  /** Optional pixel floor for the textarea's height. Clamped so it never drops
2917
- * below the height implied by `rows`. */
2901
+ * below the default height. */
2918
2902
  readonly minHeight: _angular_core.InputSignal<number | undefined>;
2919
2903
  readonly id: _angular_core.InputSignal<string>;
2920
2904
  readonly value: _angular_core.ModelSignal<string>;
@@ -2948,7 +2932,7 @@ declare class TextareaComponent implements ControlValueAccessor {
2948
2932
  /** Moves keyboard focus to the underlying native textarea element. */
2949
2933
  focus(): void;
2950
2934
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TextareaComponent, never>;
2951
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextareaComponent, "ea-textarea", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "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; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "resize": { "alias": "resize"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "minHeight": { "alias": "minHeight"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "focused": "focused"; "blurred": "blurred"; }, never, never, true, never>;
2935
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextareaComponent, "ea-textarea", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "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; }; "resize": { "alias": "resize"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "minHeight": { "alias": "minHeight"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "focused": "focused"; "blurred": "blurred"; }, never, never, true, never>;
2952
2936
  }
2953
2937
 
2954
2938
  /** Visual size of the time picker trigger. */
@@ -3154,6 +3138,8 @@ declare class ToastService {
3154
3138
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<ToastService>;
3155
3139
  }
3156
3140
 
3141
+ /** Corner or edge of the viewport the toast stack is pinned to. */
3142
+ type ToastPosition = 'top-left' | 'top' | 'top-right' | 'bottom-left' | 'bottom' | 'bottom-right';
3157
3143
  /**
3158
3144
  * Outlet that renders the stack of active toasts produced by
3159
3145
  * {@link ToastService}. Place a single `<ea-toast />` once in the root
@@ -3162,9 +3148,14 @@ declare class ToastService {
3162
3148
  declare class ToastComponent {
3163
3149
  protected readonly toastService: ToastService;
3164
3150
  protected readonly i18n: EagamiI18nService;
3151
+ /** Viewport corner or edge the toast stack is pinned to. */
3152
+ readonly position: _angular_core.InputSignal<ToastPosition>;
3153
+ /** Show a dismiss button on each toast. */
3154
+ readonly clearable: _angular_core.InputSignal<boolean>;
3155
+ protected readonly containerClass: _angular_core.Signal<string>;
3165
3156
  protected getRole(toast: Toast): 'alert' | 'status';
3166
3157
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastComponent, never>;
3167
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToastComponent, "ea-toast", never, {}, {}, never, never, true, never>;
3158
+ 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>;
3168
3159
  }
3169
3160
 
3170
3161
  /** Placement of the tooltip relative to its host element. */
@@ -3179,6 +3170,8 @@ declare class TooltipDirective implements OnDestroy {
3179
3170
  private readonly renderer;
3180
3171
  readonly eaTooltip: _angular_core.InputSignal<string>;
3181
3172
  readonly tooltipPosition: _angular_core.InputSignal<TooltipPosition>;
3173
+ /** Max width in px; the text wraps at this width. Clamped to a 50px floor. */
3174
+ readonly maxWidth: _angular_core.InputSignal<number | undefined>;
3182
3175
  private tooltipEl;
3183
3176
  private readonly tooltipId;
3184
3177
  private readonly hoverMql;
@@ -3203,7 +3196,7 @@ declare class TooltipDirective implements OnDestroy {
3203
3196
  private removeDescribedBy;
3204
3197
  private positionTooltip;
3205
3198
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipDirective, never>;
3206
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TooltipDirective, "[eaTooltip]", never, { "eaTooltip": { "alias": "eaTooltip"; "required": true; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3199
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TooltipDirective, "[eaTooltip]", never, { "eaTooltip": { "alias": "eaTooltip"; "required": true; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3207
3200
  }
3208
3201
 
3209
3202
  /**
@@ -4689,6 +4682,22 @@ declare class GridIconComponent extends IconComponentBase {
4689
4682
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridIconComponent, "ea-icon-grid", never, {}, {}, never, never, true, never>;
4690
4683
  }
4691
4684
 
4685
+ declare class HalfCircleIconComponent extends IconComponentBase {
4686
+ static readonly slug = "half-circle";
4687
+ static readonly category: IconCategory;
4688
+ static readonly tags: ReadonlyArray<string>;
4689
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<HalfCircleIconComponent, never>;
4690
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<HalfCircleIconComponent, "ea-icon-half-circle", never, {}, {}, never, never, true, never>;
4691
+ }
4692
+
4693
+ declare class HalfHeartIconComponent extends IconComponentBase {
4694
+ static readonly slug = "half-heart";
4695
+ static readonly category: IconCategory;
4696
+ static readonly tags: ReadonlyArray<string>;
4697
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<HalfHeartIconComponent, never>;
4698
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<HalfHeartIconComponent, "ea-icon-half-heart", never, {}, {}, never, never, true, never>;
4699
+ }
4700
+
4692
4701
  declare class HardDriveIconComponent extends IconComponentBase {
4693
4702
  static readonly slug = "hard-drive";
4694
4703
  static readonly category: IconCategory;
@@ -6275,5 +6284,5 @@ declare class ZoomOutIconComponent extends IconComponentBase {
6275
6284
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZoomOutIconComponent, "ea-icon-zoom-out", never, {}, {}, never, never, true, never>;
6276
6285
  }
6277
6286
 
6278
- export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkIconComponent, BottleIconComponent, BoxIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, 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_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_MESSAGES, 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, FlagIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KubernetesIconComponent, LampIconComponent, LayersIconComponent, LayoutIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, 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, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SoccerBallIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TimePickerComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WCAG_AA, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, computePopoverPosition, contrastRatio, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, hexToOklch, iconDisplayName, oklchToHex, pl, provideEagamiUi, relativeLuminance, validatePalette, visibleNodeIds, walkTree };
6279
- 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, DialogSize, DialogWidth, DividerOrientation, DrawerPosition, DrawerSize, DrawerWidth, DropdownSize, EaSize, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EagamiWordmarkVariantLegacy, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, ModePalette, ModeSurfaces, MultiSelectSize, PaginatorAlign, 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, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
6287
+ export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkIconComponent, BottleIconComponent, BoxIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, 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_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_MESSAGES, 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, FlagIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, 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, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, 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, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SoccerBallIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TimePickerComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WCAG_AA, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, computePopoverPosition, contrastRatio, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, hexToOklch, iconDisplayName, oklchToHex, pl, provideEagamiUi, relativeLuminance, validatePalette, visibleNodeIds, walkTree };
6288
+ 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, DrawerPosition, DrawerWidth, DropdownSize, EaSize, EaWidth, EagamiI18nConfig, EagamiLocale, 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 };