@eagami/ui 2.3.0 → 2.5.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.
@@ -8,7 +8,7 @@ import * as _eagami_ui from '@eagami/ui';
8
8
  * via `provideEagamiUi({ locale })` or `EagamiI18nService.setLocale()`.
9
9
  */
10
10
  type EagamiLocale = 'en' | 'fr-FR' | 'el' | 'pl' | 'es-ES';
11
- /** Ordered list of every supported locale handy for language switchers. */
11
+ /** Ordered list of every supported locale, handy for language switchers. */
12
12
  declare const EAGAMI_LOCALES: readonly EagamiLocale[];
13
13
  /**
14
14
  * Every user-facing string baked into the component library, grouped by
@@ -329,7 +329,7 @@ declare const EAGAMI_MESSAGES: Record<EagamiLocale, EagamiMessages>;
329
329
  * Opt-in: the library does not auto-apply this to anything. Components render
330
330
  * whatever string they receive. Apply this to consumer-supplied content (user
331
331
  * input, content from your CMS, etc.) that you want to format correctly for a
332
- * French audience. The function is idempotent already-converted text passes
332
+ * French audience. The function is idempotent: already-converted text passes
333
333
  * through unchanged.
334
334
  *
335
335
  * Do not apply it to URLs, CSS, JSON, code snippets, or other technical
@@ -337,13 +337,13 @@ declare const EAGAMI_MESSAGES: Record<EagamiLocale, EagamiMessages>;
337
337
  *
338
338
  * @example
339
339
  * frenchSpacing('Lignes par page :');
340
- * // 'Lignes par page\u202F:'
340
+ * // returns 'Lignes par page\u202F:'
341
341
  *
342
342
  * frenchSpacing("Qu'est-ce que c'est ?");
343
- * // "Qu'est-ce que c'est\u202F?"
343
+ * // returns "Qu'est-ce que c'est\u202F?"
344
344
  *
345
345
  * frenchSpacing('Il a dit « bonjour ».');
346
- * // 'Il a dit «\u202Fbonjour\u202F».'
346
+ * // returns 'Il a dit «\u202Fbonjour\u202F».'
347
347
  */
348
348
  declare function frenchSpacing(text: string): string;
349
349
 
@@ -711,7 +711,7 @@ declare class AvatarEditorComponent implements OnDestroy {
711
711
 
712
712
  /** Diameter (or side length) preset for an avatar. */
713
713
  type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
714
- /** Outline of the avatar round or rounded-square. */
714
+ /** Outline of the avatar: round or rounded-square. */
715
715
  type AvatarShape = 'circle' | 'square';
716
716
  /**
717
717
  * Compact image used to represent a user or entity. Falls back to initials
@@ -795,7 +795,7 @@ declare class BreadcrumbsComponent {
795
795
  static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbsComponent, "ea-breadcrumbs", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, never, true, never>;
796
796
  }
797
797
 
798
- /** Visual style of a button drives colour and emphasis. */
798
+ /** Visual style of a button; drives colour and emphasis. */
799
799
  type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'danger';
800
800
  /** Visual size of a button. */
801
801
  type ButtonSize = 'sm' | 'md' | 'lg';
@@ -867,7 +867,7 @@ declare class CheckboxComponent implements ControlValueAccessor {
867
867
  /**
868
868
  * Optional supplementary value shown immediately after the label, dimmed
869
869
  * to the tertiary text token. Renders inside the same `<span>` as the
870
- * label so it shares the label's exact baseline and font metrics — keeps
870
+ * label so it shares the label's exact baseline and font metrics, keeping
871
871
  * "Inbox 42" / "Brand (30)" patterns aligned without a sibling element
872
872
  * fighting flex / inline-flow centring at the consumer's call site.
873
873
  */
@@ -910,7 +910,7 @@ declare class CheckboxComponent implements ControlValueAccessor {
910
910
  * A single executable command in an `<ea-command-palette>`.
911
911
  *
912
912
  * The filter matches on `label`, `description`, and `keywords` (all
913
- * case-insensitive). Keywords are invisible synonyms e.g. label "Sign out"
913
+ * case-insensitive). Keywords are invisible synonyms, e.g. label "Sign out"
914
914
  * with keywords `['logout', 'log out']` so the command surfaces under any
915
915
  * spelling the user knows.
916
916
  */
@@ -925,7 +925,7 @@ interface CommandPaletteItem<T = unknown> {
925
925
  icon?: Type<unknown>;
926
926
  /**
927
927
  * Optional keyboard-shortcut hint rendered on the right edge of the row.
928
- * Decorative the palette does not bind global shortcuts, the consumer
928
+ * Decorative: the palette does not bind global shortcuts, the consumer
929
929
  * does that.
930
930
  */
931
931
  shortcut?: string;
@@ -951,7 +951,7 @@ interface GroupedItems {
951
951
  * containing a search input and a filtered list of commands. Designed for
952
952
  * `Cmd/Ctrl + K`-style global menus.
953
953
  *
954
- * The component does NOT bind global shortcuts the consumer wires up
954
+ * The component does NOT bind global shortcuts; the consumer wires up
955
955
  * whatever trigger they want and toggles `[(open)]`. Each selected command
956
956
  * is emitted via `(execute)`; the palette closes automatically afterwards.
957
957
  *
@@ -988,11 +988,11 @@ declare class CommandPaletteComponent {
988
988
  /**
989
989
  * Tracks what the user last did so the visual highlight only renders when
990
990
  * it actually reflects what a click/Enter would select right now:
991
- * - `keyboard` keyboard nav (or just-opened / just-typed): show the
991
+ * - `keyboard`: keyboard nav (or just-opened / just-typed): show the
992
992
  * active item's background so keyboard users see what Enter will pick.
993
- * - `mouse` pointer is moving inside the list: rely on `:hover` for the
993
+ * - `mouse`: pointer is moving inside the list: rely on `:hover` for the
994
994
  * visual; skip the active-row background to avoid two highlights.
995
- * - `none` pointer is outside the list and no keyboard nav has happened
995
+ * - `none`: pointer is outside the list and no keyboard nav has happened
996
996
  * since: nothing is highlighted, because nothing on screen is a
997
997
  * next-click target.
998
998
  */
@@ -1029,7 +1029,7 @@ type ColorPickerSize = 'sm' | 'md' | 'lg';
1029
1029
  type ColorPickerFormat = 'hex' | 'rgb' | 'hsl';
1030
1030
  /** Which group of inputs the popover currently shows (hex string or RGB channels). */
1031
1031
  type ColorPickerInputMode = 'hex' | 'rgb';
1032
- /** Value accepted via `writeValue` any CSS color string or `null`. */
1032
+ /** Value accepted via `writeValue`: any CSS color string or `null`. */
1033
1033
  type ColorPickerValue = string | null;
1034
1034
  interface Rgb {
1035
1035
  r: number;
@@ -1079,7 +1079,7 @@ declare class ColorPickerComponent implements ControlValueAccessor {
1079
1079
  * emitted value. */
1080
1080
  readonly inputMode: i0.WritableSignal<ColorPickerInputMode>;
1081
1081
  /** What the hex input shows. Kept separate from the canonical hex so the user
1082
- * can type a partial value (`#1`, `#12`, `#123…`) without each keystroke being
1082
+ * can type a partial value (`#1`, `#12`, `#123`...) without each keystroke being
1083
1083
  * expanded back into a 6-digit canonical form. */
1084
1084
  readonly hexInputValue: i0.WritableSignal<string>;
1085
1085
  private readonly _formDisabled;
@@ -1091,7 +1091,7 @@ declare class ColorPickerComponent implements ControlValueAccessor {
1091
1091
  readonly showHint: i0.Signal<boolean>;
1092
1092
  readonly rgb: i0.Signal<Rgb>;
1093
1093
  readonly displayColor: i0.Signal<string>;
1094
- /** Opaque version of the current color used as the hue/SV reference. */
1094
+ /** Opaque version of the current color, used as the hue/SV reference. */
1095
1095
  readonly opaqueColor: i0.Signal<string>;
1096
1096
  readonly hueColor: i0.Signal<string>;
1097
1097
  readonly hexDisplay: i0.Signal<string>;
@@ -1107,9 +1107,9 @@ declare class ColorPickerComponent implements ControlValueAccessor {
1107
1107
  [x: string]: boolean;
1108
1108
  }>;
1109
1109
  /**
1110
- * True when the browser supports the EyeDropper API. Not a `computed` —
1110
+ * True when the browser supports the EyeDropper API. Not a `computed`:
1111
1111
  * `window.EyeDropper` isn't a signal, so a memoized computed would cache the
1112
- * first read (typically `false`, since the popover content's bindings now
1112
+ * first read (typically `false`, since the popover content's bindings
1113
1113
  * evaluate at parent-view creation time via content projection, before any
1114
1114
  * polyfill / test setup runs). A plain method re-checks on every call.
1115
1115
  */
@@ -1146,7 +1146,7 @@ declare class ColorPickerComponent implements ControlValueAccessor {
1146
1146
  private updateAlphaFromPointer;
1147
1147
  /**
1148
1148
  * Mirrors the user's literal text into `hexInputValue` and (if the text
1149
- * parses) applies the new color silently without rewriting the input.
1149
+ * parses) applies the new color silently, without rewriting the input.
1150
1150
  * Without `refreshHex: false`, typing `#123` would parse, commit, and then
1151
1151
  * snap the input back to `#112233` mid-keystroke, fighting the user's caret.
1152
1152
  * Canonicalization happens only on blur via {@link onHexBlur}.
@@ -1191,7 +1191,7 @@ interface DataTableColumn<T = Record<string, unknown>> {
1191
1191
  $implicit: DataTableColumn<T>;
1192
1192
  }>;
1193
1193
  }
1194
- /** Current sort state which column is sorted and in which direction. */
1194
+ /** Current sort state: which column is sorted and in which direction. */
1195
1195
  interface DataTableSortState {
1196
1196
  column: string;
1197
1197
  direction: DataTableSortDirection;
@@ -1289,7 +1289,7 @@ type DatePickerSize = 'sm' | 'md' | 'lg';
1289
1289
  type DatePickerFormat = 'short' | 'medium' | 'long';
1290
1290
  /** First day of the week in the calendar grid (0 = Sunday, 1 = Monday). */
1291
1291
  type DatePickerWeekStart = 0 | 1;
1292
- /** Value accepted via `writeValue` a `Date`, ISO/parseable string, or `null`. */
1292
+ /** Value accepted via `writeValue`: a `Date`, ISO/parseable string, or `null`. */
1293
1293
  type DatePickerValue = Date | string | null;
1294
1294
  interface CalendarDay {
1295
1295
  date: Date;
@@ -1339,9 +1339,9 @@ declare class DatePickerComponent implements ControlValueAccessor {
1339
1339
  readonly hasError: i0.Signal<boolean>;
1340
1340
  readonly showError: i0.Signal<boolean>;
1341
1341
  readonly showHint: i0.Signal<boolean>;
1342
- /** Locale used for date formatting explicit `locale` input, else the global locale. */
1342
+ /** Locale used for date formatting: explicit `locale` input, else the global locale. */
1343
1343
  readonly effectiveLocale: i0.Signal<string>;
1344
- /** Placeholder text explicit `placeholder` input, else the active locale's default. */
1344
+ /** Placeholder text: explicit `placeholder` input, else the active locale's default. */
1345
1345
  readonly resolvedPlaceholder: i0.Signal<string>;
1346
1346
  readonly triggerClasses: i0.Signal<{
1347
1347
  [x: string]: boolean;
@@ -1557,10 +1557,8 @@ type EagamiWordmarkLayout = 'stacked' | 'inline';
1557
1557
  declare class EagamiWordmarkComponent {
1558
1558
  protected readonly i18n: EagamiI18nService;
1559
1559
  /**
1560
- * The wordmark variant to render. `4` is accepted as a backwards-compatible
1561
- * alias for `3` after the original "eagami design system" variant (the old
1562
- * `3`) was retired in v1.3.0; it renders identically to `3` and will be
1563
- * removed in v2.0.0.
1560
+ * The wordmark variant to render. `4` is accepted as a deprecated,
1561
+ * backwards-compatible alias for `3` and renders identically.
1564
1562
  */
1565
1563
  readonly variant: i0.InputSignal<4 | EagamiWordmarkVariant>;
1566
1564
  readonly layout: i0.InputSignal<EagamiWordmarkLayout>;
@@ -1595,6 +1593,23 @@ declare class EmptyStateComponent {
1595
1593
  static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateComponent, "ea-empty-state", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "headingLevel": { "alias": "headingLevel"; "required": false; "isSignal": true; }; }, {}, never, ["[slot=media]", "[slot=actions]"], true, never>;
1596
1594
  }
1597
1595
 
1596
+ declare class FieldLabelComponent {
1597
+ readonly text: i0.InputSignal<string>;
1598
+ readonly forId: i0.InputSignal<string | undefined>;
1599
+ readonly required: i0.InputSignal<boolean>;
1600
+ readonly labelId: i0.InputSignal<string | undefined>;
1601
+ static ɵfac: i0.ɵɵFactoryDeclaration<FieldLabelComponent, never>;
1602
+ static ɵcmp: i0.ɵɵComponentDeclaration<FieldLabelComponent, "ea-field-label", never, { "text": { "alias": "text"; "required": true; "isSignal": true; }; "forId": { "alias": "forId"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "labelId": { "alias": "labelId"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1603
+ }
1604
+
1605
+ declare class FieldMessagesComponent {
1606
+ readonly id: i0.InputSignal<string>;
1607
+ readonly error: i0.InputSignal<string | null | undefined>;
1608
+ readonly hint: i0.InputSignal<string | null | undefined>;
1609
+ static ɵfac: i0.ɵɵFactoryDeclaration<FieldMessagesComponent, never>;
1610
+ static ɵcmp: i0.ɵɵComponentDeclaration<FieldMessagesComponent, "ea-field-messages", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1611
+ }
1612
+
1598
1613
  /** Visual size of the file uploader. */
1599
1614
  type FileUploaderSize = 'sm' | 'md' | 'lg';
1600
1615
  /** Reason a file was rejected during selection. */
@@ -1607,7 +1622,7 @@ interface FileUploaderRejection {
1607
1622
  /**
1608
1623
  * Multi-file uploader with a drag-and-drop zone and a per-file list. Pure UI:
1609
1624
  * the component manages selection, validation, and removal but does not perform
1610
- * any network I/O consumers are responsible for uploading the resulting
1625
+ * any network I/O; consumers are responsible for uploading the resulting
1611
1626
  * `File[]` and (optionally) feeding progress back via the `progress` map.
1612
1627
  *
1613
1628
  * The dropzone icon (default `<ea-icon-upload-cloud>`) is exposed as a content
@@ -1813,7 +1828,7 @@ declare class MenuComponent {
1813
1828
  * but its DOM ancestor is whatever element hosts the menu (often a sticky
1814
1829
  * header). When `.focus()` is called without `preventScroll`, Chromium uses
1815
1830
  * the focused element's DOM-tree position (inside the sticky ancestor) rather
1816
- * than its rendered fixed position to decide whether to scroll which on a
1831
+ * than its rendered fixed position to decide whether to scroll, which on a
1817
1832
  * scrolled page nudges the document up by a few pixels per open, until the
1818
1833
  * trigger reaches the top edge. The same guard applies to keyboard navigation
1819
1834
  * and restoring focus on close.
@@ -1825,7 +1840,7 @@ declare class MenuComponent {
1825
1840
  static ɵcmp: i0.ɵɵ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>;
1826
1841
  }
1827
1842
 
1828
- /** Visual style of a menu item `danger` for destructive actions. */
1843
+ /** Visual style of a menu item; `danger` for destructive actions. */
1829
1844
  type MenuItemVariant = 'default' | 'danger';
1830
1845
  /**
1831
1846
  * Selectable row inside an `ea-menu`. Supports leading icons via the `icon`
@@ -2062,7 +2077,7 @@ interface Viewport {
2062
2077
  }
2063
2078
  /**
2064
2079
  * Computes the viewport-space top/left for a popover anchored to `anchorRect`,
2065
- * applying optional flip-on-overflow and edge-clamp logic. Pure function no
2080
+ * applying optional flip-on-overflow and edge-clamp logic. Pure function, no
2066
2081
  * DOM access. Both `<ea-popover>` and `[eaTooltip]` consume this.
2067
2082
  *
2068
2083
  * @param anchorRect The anchor element's `getBoundingClientRect()`.
@@ -2082,7 +2097,7 @@ type PopoverRole = 'menu' | 'listbox' | 'dialog' | 'tooltip' | 'grid';
2082
2097
  * - `close`: request close. Suitable for dropdown lists and the colour-picker
2083
2098
  * popover, where re-tracking a tall popover during a scroll feels intrusive.
2084
2099
  * - `ignore`: do nothing. The popover stays at its initial coordinates and
2085
- * may visually detach from a scrolling anchor useful when the anchor is
2100
+ * may visually detach from a scrolling anchor; useful when the anchor is
2086
2101
  * guaranteed not to move (e.g. inside a non-scrolling region).
2087
2102
  */
2088
2103
  type PopoverScrollBehavior = 'reposition' | 'close' | 'ignore';
@@ -2254,7 +2269,7 @@ declare class RadioComponent {
2254
2269
 
2255
2270
  /** Visual size of the range slider track and thumbs. */
2256
2271
  type RangeSliderSize = 'sm' | 'md' | 'lg';
2257
- /** Tuple model emitted by the range slider `[low, high]`, with `low <= high`. */
2272
+ /** Tuple model emitted by the range slider: `[low, high]`, with `low <= high`. */
2258
2273
  type RangeSliderValue = readonly [number, number];
2259
2274
  /** Identifies which of the two thumbs an event affects. */
2260
2275
  type Thumb = 'low' | 'high';
@@ -2297,7 +2312,7 @@ declare class RangeSliderComponent implements ControlValueAccessor {
2297
2312
  private onChange;
2298
2313
  private onTouched;
2299
2314
  readonly isDisabled: i0.Signal<boolean>;
2300
- /** Clamped, ordered `[low, high]` tuple `low <= high`, both within `[min, max]`. */
2315
+ /** Clamped, ordered `[low, high]` tuple: `low <= high`, both within `[min, max]`. */
2301
2316
  readonly clampedValue: i0.Signal<RangeSliderValue>;
2302
2317
  readonly lowPercent: i0.Signal<number>;
2303
2318
  readonly highPercent: i0.Signal<number>;
@@ -2962,7 +2977,7 @@ declare class TimePickerComponent implements ControlValueAccessor {
2962
2977
  /**
2963
2978
  * Map a typed hours value back to 24h. In 24h mode the typed value is the
2964
2979
  * hour. In 12h mode the typed value is interpreted in the current period
2965
- * (AM 12 maps to 0, others stay; PM 12 stays, others add 12).
2980
+ * (AM: 12 maps to 0, others stay; PM: 12 stays, others add 12).
2966
2981
  */
2967
2982
  private hoursFromTyped;
2968
2983
  private minFor;
@@ -2984,7 +2999,7 @@ interface Toast {
2984
2999
  variant: ToastVariant;
2985
3000
  duration: number;
2986
3001
  }
2987
- /** Optional configuration for a toast defaults to `default` variant and 4s duration. */
3002
+ /** Optional configuration for a toast; defaults to `default` variant and 4s duration. */
2988
3003
  interface ToastOptions {
2989
3004
  variant?: ToastVariant;
2990
3005
  duration?: number;
@@ -3086,7 +3101,7 @@ type TransferListSize = 'sm' | 'md' | 'lg';
3086
3101
  * `<ea-transfer-list>` is a two-pane shuttle control for moving items between
3087
3102
  * a "source" set and a "target" set. The full pool of items lives in
3088
3103
  * `[items]`; the `selectedIds` model tracks which subset is currently on the
3089
- * target side. Highlighted-for-transfer state is internal to the component
3104
+ * target side. Highlighted-for-transfer state is internal to the component:
3090
3105
  * a user clicks one or more rows to highlight them, then clicks one of the
3091
3106
  * four direction buttons to move them.
3092
3107
  *
@@ -3142,7 +3157,7 @@ declare class TransferListComponent {
3142
3157
  /**
3143
3158
  * A single node in an `<ea-tree>` hierarchy.
3144
3159
  *
3145
- * `id` must be unique across the entire tree (not just within siblings) it
3160
+ * `id` must be unique across the entire tree (not just within siblings); it
3146
3161
  * drives selection state, expansion state, and keyboard focus.
3147
3162
  */
3148
3163
  interface TreeNode<T = unknown> {
@@ -3177,7 +3192,7 @@ type TreeSize = 'sm' | 'md' | 'lg';
3177
3192
  /**
3178
3193
  * `<ea-tree>` renders a hierarchical, single-selection treeview with full
3179
3194
  * keyboard navigation (Arrow keys, Home, End, Enter / Space). Selection and
3180
- * expansion state are model signals pass `[selectedId]` / `[expandedIds]`
3195
+ * expansion state are model signals: pass `[selectedId]` / `[expandedIds]`
3181
3196
  * to control them, or bind `[(selectedId)]` / `[(expandedIds)]` for two-way
3182
3197
  * sync.
3183
3198
  *
@@ -3240,8 +3255,8 @@ interface VirtualListItemContext<T = unknown> {
3240
3255
  * so that lists of tens of thousands of rows scroll smoothly.
3241
3256
  *
3242
3257
  * Fixed-height items only. Variable-height virtualization would need either
3243
- * a measurement pass per row or a height estimator; both add complexity that
3244
- * we don't ship in v1.
3258
+ * a measurement pass per row or a height estimator, neither of which the
3259
+ * component implements.
3245
3260
  *
3246
3261
  * Usage:
3247
3262
  * ```html
@@ -3255,7 +3270,7 @@ interface VirtualListItemContext<T = unknown> {
3255
3270
  * </ea-virtual-list>
3256
3271
  * ```
3257
3272
  *
3258
- * The component intentionally stays role-agnostic the consumer wraps the
3273
+ * The component intentionally stays role-agnostic: the consumer wraps the
3259
3274
  * projected item with whatever ARIA the use case calls for (`role="listitem"`,
3260
3275
  * `role="option"`, `role="row"`, etc.) and applies `aria-setsize` /
3261
3276
  * `aria-posinset` using the projected `index` if needed.
@@ -3274,7 +3289,7 @@ declare class VirtualListComponent {
3274
3289
  readonly overscan: i0.InputSignal<number>;
3275
3290
  /** Index of the first row currently visible at the top of the viewport. */
3276
3291
  readonly scrollIndexChange: i0.OutputEmitterRef<number>;
3277
- /** Template applied to each rendered item projected via `<ng-template #item>`. */
3292
+ /** Template applied to each rendered item, projected via `<ng-template #item>`. */
3278
3293
  protected readonly itemTemplate: i0.Signal<TemplateRef<VirtualListItemContext<unknown>>>;
3279
3294
  protected readonly viewportEl: i0.Signal<ElementRef<HTMLElement> | undefined>;
3280
3295
  private readonly scrollTop;
@@ -3344,8 +3359,8 @@ type IconComponentType = Type<unknown> & IconMeta;
3344
3359
  * Feather-derived icons read the `strokeWidth` input via `[attr.stroke-width]`
3345
3360
  * in their SVG template, so consumers can thin or thicken any icon at the
3346
3361
  * call site (e.g. `<ea-icon-star [strokeWidth]="1.5" />`). Subclasses can
3347
- * change the default by setting `static override readonly defaultStrokeWidth`
3348
- * used by icons whose dense paths read better at a different default
3362
+ * change the default by setting `static override readonly defaultStrokeWidth`,
3363
+ * used by icons whose dense paths read better at a different default
3349
3364
  * (e.g. camera, upload at 1.5).
3350
3365
  */
3351
3366
  declare abstract class IconComponentBase {
@@ -3360,9 +3375,9 @@ declare abstract class IconComponentBase {
3360
3375
 
3361
3376
  /**
3362
3377
  * Resolves an icon's human-readable display name. Pass the component class
3363
- * (`iconDisplayName(GithubIconComponent)` -> `'GitHub'`) or its slug
3364
- * (`iconDisplayName('github')` -> `'GitHub'`). Falls back to a generic
3365
- * `slug -> Title Case` derivation when no override is defined.
3378
+ * (`iconDisplayName(GithubIconComponent)` returns `'GitHub'`) or its slug
3379
+ * (`iconDisplayName('github')` returns `'GitHub'`). Falls back to a generic
3380
+ * slug-to-Title-Case derivation when no override is defined.
3366
3381
  */
3367
3382
  declare function iconDisplayName(iconOrSlug: IconComponentType | string): string;
3368
3383
 
@@ -4270,10 +4285,8 @@ declare class EyeOffIconComponent extends IconComponentBase {
4270
4285
  * Facebook icon (Feather outline).
4271
4286
  *
4272
4287
  * @remarks
4273
- * Prior to v1.4 this slug rendered Eagami's brand-filled Facebook mark. v1.4
4274
- * aligns the canonical slug with Feather Icons, so `FacebookIconComponent` now
4275
- * renders Feather's outline. The brand-filled mark that previously shipped
4276
- * here has moved to `<ea-icon-facebook-2>` / `Facebook2IconComponent`.
4288
+ * The brand-filled Facebook mark lives at `<ea-icon-facebook-2>` /
4289
+ * `Facebook2IconComponent`.
4277
4290
  */
4278
4291
  declare class FacebookIconComponent extends IconComponentBase {
4279
4292
  static readonly slug = "facebook";
@@ -4288,10 +4301,8 @@ declare class FacebookIconComponent extends IconComponentBase {
4288
4301
  * Facebook brand mark (Eagami brand-filled).
4289
4302
  *
4290
4303
  * @remarks
4291
- * Up to v1.3 this design shipped as `FacebookIconComponent` at slug
4292
- * `ea-icon-facebook`. v1.4 reassigns the canonical slug to Feather's outline
4293
- * and moves the brand-filled mark here. Set the `brand` input to render in
4294
- * the official brand colour.
4304
+ * The Feather outline lives at `<ea-icon-facebook>` / `FacebookIconComponent`.
4305
+ * Set the `brand` input to render in the official brand colour.
4295
4306
  */
4296
4307
  declare class Facebook2IconComponent extends IconComponentBase {
4297
4308
  static readonly slug = "facebook-2";
@@ -4323,10 +4334,8 @@ declare class FeatherIconComponent extends IconComponentBase {
4323
4334
  * Figma icon (Feather outline).
4324
4335
  *
4325
4336
  * @remarks
4326
- * Prior to v1.4 this slug rendered Eagami's brand-filled Figma mark. v1.4
4327
- * aligns the canonical slug with Feather Icons, so `FigmaIconComponent` now
4328
- * renders Feather's outline. The brand-filled mark that previously shipped
4329
- * here has moved to `<ea-icon-figma-2>` / `Figma2IconComponent`.
4337
+ * The brand-filled Figma mark lives at `<ea-icon-figma-2>` /
4338
+ * `Figma2IconComponent`.
4330
4339
  */
4331
4340
  declare class FigmaIconComponent extends IconComponentBase {
4332
4341
  static readonly slug = "figma";
@@ -4341,10 +4350,8 @@ declare class FigmaIconComponent extends IconComponentBase {
4341
4350
  * Figma brand mark (Eagami brand-filled).
4342
4351
  *
4343
4352
  * @remarks
4344
- * Up to v1.3 this design shipped as `FigmaIconComponent` at slug
4345
- * `ea-icon-figma`. v1.4 reassigns the canonical slug to Feather's outline
4346
- * and moves the brand-filled mark here. Set the `brand` input to render in
4347
- * the official brand colour.
4353
+ * The Feather outline lives at `<ea-icon-figma>` / `FigmaIconComponent`.
4354
+ * Set the `brand` input to render in the official brand colour.
4348
4355
  */
4349
4356
  declare class Figma2IconComponent extends IconComponentBase {
4350
4357
  static readonly slug = "figma-2";
@@ -4495,10 +4502,8 @@ declare class GitPullRequestIconComponent extends IconComponentBase {
4495
4502
  * GitHub icon (Feather outline).
4496
4503
  *
4497
4504
  * @remarks
4498
- * Prior to v1.4 this slug rendered Eagami's brand-filled GitHub mark. v1.4
4499
- * aligns the canonical slug with Feather Icons, so `GithubIconComponent` now
4500
- * renders Feather's outline. The brand-filled mark that previously shipped
4501
- * here has moved to `<ea-icon-github-2>` / `Github2IconComponent`.
4505
+ * The brand-filled GitHub mark lives at `<ea-icon-github-2>` /
4506
+ * `Github2IconComponent`.
4502
4507
  */
4503
4508
  declare class GithubIconComponent extends IconComponentBase {
4504
4509
  static readonly slug = "github";
@@ -4513,10 +4518,8 @@ declare class GithubIconComponent extends IconComponentBase {
4513
4518
  * GitHub brand mark (Eagami brand-filled).
4514
4519
  *
4515
4520
  * @remarks
4516
- * Up to v1.3 this design shipped as `GithubIconComponent` at slug
4517
- * `ea-icon-github`. v1.4 reassigns the canonical slug to Feather's outline
4518
- * and moves the brand-filled mark here. Set the `brand` input to render in
4519
- * the official brand colour.
4521
+ * The Feather outline lives at `<ea-icon-github>` / `GithubIconComponent`.
4522
+ * Set the `brand` input to render in the official brand colour.
4520
4523
  */
4521
4524
  declare class Github2IconComponent extends IconComponentBase {
4522
4525
  static readonly slug = "github-2";
@@ -4745,10 +4748,8 @@ declare class Link2IconComponent extends IconComponentBase {
4745
4748
  * LinkedIn icon (Feather outline).
4746
4749
  *
4747
4750
  * @remarks
4748
- * Prior to v1.4 this slug rendered Eagami's brand-filled LinkedIn mark. v1.4
4749
- * aligns the canonical slug with Feather Icons, so `LinkedinIconComponent` now
4750
- * renders Feather's outline. The brand-filled mark that previously shipped
4751
- * here has moved to `<ea-icon-linkedin-2>` / `Linkedin2IconComponent`.
4751
+ * The brand-filled LinkedIn mark lives at `<ea-icon-linkedin-2>` /
4752
+ * `Linkedin2IconComponent`.
4752
4753
  */
4753
4754
  declare class LinkedinIconComponent extends IconComponentBase {
4754
4755
  static readonly slug = "linkedin";
@@ -4763,10 +4764,8 @@ declare class LinkedinIconComponent extends IconComponentBase {
4763
4764
  * LinkedIn brand mark (Eagami brand-filled).
4764
4765
  *
4765
4766
  * @remarks
4766
- * Up to v1.3 this design shipped as `LinkedinIconComponent` at slug
4767
- * `ea-icon-linkedin`. v1.4 reassigns the canonical slug to Feather's outline
4768
- * and moves the brand-filled mark here. Set the `brand` input to render in
4769
- * the official brand colour.
4767
+ * The Feather outline lives at `<ea-icon-linkedin>` / `LinkedinIconComponent`.
4768
+ * Set the `brand` input to render in the official brand colour.
4770
4769
  */
4771
4770
  declare class Linkedin2IconComponent extends IconComponentBase {
4772
4771
  static readonly slug = "linkedin-2";
@@ -5506,10 +5505,8 @@ declare class SkipForwardIconComponent extends IconComponentBase {
5506
5505
  * Slack icon (Feather outline).
5507
5506
  *
5508
5507
  * @remarks
5509
- * Prior to v1.4 this slug rendered Eagami's brand-filled Slack mark. v1.4
5510
- * aligns the canonical slug with Feather Icons, so `SlackIconComponent` now
5511
- * renders Feather's outline. The brand-filled mark that previously shipped
5512
- * here has moved to `<ea-icon-slack-2>` / `Slack2IconComponent`.
5508
+ * The brand-filled Slack mark lives at `<ea-icon-slack-2>` /
5509
+ * `Slack2IconComponent`.
5513
5510
  */
5514
5511
  declare class SlackIconComponent extends IconComponentBase {
5515
5512
  static readonly slug = "slack";
@@ -5524,10 +5521,8 @@ declare class SlackIconComponent extends IconComponentBase {
5524
5521
  * Slack brand mark (Eagami brand-filled).
5525
5522
  *
5526
5523
  * @remarks
5527
- * Up to v1.3 this design shipped as `SlackIconComponent` at slug
5528
- * `ea-icon-slack`. v1.4 reassigns the canonical slug to Feather's outline
5529
- * and moves the brand-filled mark here. Set the `brand` input to render in
5530
- * the official brand colour.
5524
+ * The Feather outline lives at `<ea-icon-slack>` / `SlackIconComponent`.
5525
+ * Set the `brand` input to render in the official brand colour.
5531
5526
  */
5532
5527
  declare class Slack2IconComponent extends IconComponentBase {
5533
5528
  static readonly slug = "slack-2";
@@ -5818,10 +5813,8 @@ declare class TvIconComponent extends IconComponentBase {
5818
5813
  * Twitch icon (Feather outline).
5819
5814
  *
5820
5815
  * @remarks
5821
- * Prior to v1.4 this slug rendered Eagami's brand-filled Twitch mark. v1.4
5822
- * aligns the canonical slug with Feather Icons, so `TwitchIconComponent` now
5823
- * renders Feather's outline. The brand-filled mark that previously shipped
5824
- * here has moved to `<ea-icon-twitch-2>` / `Twitch2IconComponent`.
5816
+ * The brand-filled Twitch mark lives at `<ea-icon-twitch-2>` /
5817
+ * `Twitch2IconComponent`.
5825
5818
  */
5826
5819
  declare class TwitchIconComponent extends IconComponentBase {
5827
5820
  static readonly slug = "twitch";
@@ -5836,10 +5829,8 @@ declare class TwitchIconComponent extends IconComponentBase {
5836
5829
  * Twitch brand mark (Eagami brand-filled).
5837
5830
  *
5838
5831
  * @remarks
5839
- * Up to v1.3 this design shipped as `TwitchIconComponent` at slug
5840
- * `ea-icon-twitch`. v1.4 reassigns the canonical slug to Feather's outline
5841
- * and moves the brand-filled mark here. Set the `brand` input to render in
5842
- * the official brand colour.
5832
+ * The Feather outline lives at `<ea-icon-twitch>` / `TwitchIconComponent`.
5833
+ * Set the `brand` input to render in the official brand colour.
5843
5834
  */
5844
5835
  declare class Twitch2IconComponent extends IconComponentBase {
5845
5836
  static readonly slug = "twitch-2";
@@ -6100,10 +6091,8 @@ declare class XTwitterIconComponent extends IconComponentBase {
6100
6091
  * YouTube icon (Feather outline).
6101
6092
  *
6102
6093
  * @remarks
6103
- * Prior to v1.4 this slug rendered Eagami's brand-filled YouTube mark. v1.4
6104
- * aligns the canonical slug with Feather Icons, so `YoutubeIconComponent` now
6105
- * renders Feather's outline. The brand-filled mark that previously shipped
6106
- * here has moved to `<ea-icon-youtube-2>` / `Youtube2IconComponent`.
6094
+ * The brand-filled YouTube mark lives at `<ea-icon-youtube-2>` /
6095
+ * `Youtube2IconComponent`.
6107
6096
  */
6108
6097
  declare class YoutubeIconComponent extends IconComponentBase {
6109
6098
  static readonly slug = "youtube";
@@ -6118,10 +6107,8 @@ declare class YoutubeIconComponent extends IconComponentBase {
6118
6107
  * YouTube brand mark (Eagami brand-filled).
6119
6108
  *
6120
6109
  * @remarks
6121
- * Up to v1.3 this design shipped as `YoutubeIconComponent` at slug
6122
- * `ea-icon-youtube`. v1.4 reassigns the canonical slug to Feather's outline
6123
- * and moves the brand-filled mark here. Set the `brand` input to render in
6124
- * the official brand colour.
6110
+ * The Feather outline lives at `<ea-icon-youtube>` / `YoutubeIconComponent`.
6111
+ * Set the `brand` input to render in the official brand colour.
6125
6112
  */
6126
6113
  declare class Youtube2IconComponent extends IconComponentBase {
6127
6114
  static readonly slug = "youtube-2";
@@ -6165,5 +6152,5 @@ declare class ZoomOutIconComponent extends IconComponentBase {
6165
6152
  static ɵcmp: i0.ɵɵComponentDeclaration<ZoomOutIconComponent, "ea-icon-zoom-out", never, {}, {}, never, never, true, never>;
6166
6153
  }
6167
6154
 
6168
- 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, 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 };
6155
+ 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 };
6169
6156
  export type { 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, DividerOrientation, DrawerPosition, DrawerSize, DropdownSize, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, 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 };