@eagami/ui 2.8.0 → 2.9.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.8.0",
3
+ "version": "2.9.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",
@@ -1043,10 +1043,10 @@ declare class CommandPaletteComponent {
1043
1043
 
1044
1044
  /** Visual size of the color picker trigger. */
1045
1045
  type ColorPickerSize = EaSize;
1046
- /** Format used to emit the selected value via `value` / `changed`. */
1047
- type ColorPickerFormat = 'hex' | 'rgb' | 'hsl';
1048
- /** Which group of inputs the popover currently shows (hex string or RGB channels). */
1049
- type ColorPickerInputMode = 'hex' | 'rgb';
1046
+ /** Output format. `all` (default) lets the user cycle hex/rgb/hsl from the popover; a specific value locks the picker to it. */
1047
+ type ColorPickerFormat = 'hex' | 'rgb' | 'hsl' | 'all';
1048
+ /** A concrete format the popover can show inputs for and emit. */
1049
+ type ColorPickerInputMode = 'hex' | 'rgb' | 'hsl';
1050
1050
  /** Value accepted via `writeValue`: any CSS color string or `null`. */
1051
1051
  type ColorPickerValue = string | null;
1052
1052
  interface Rgb {
@@ -1077,7 +1077,7 @@ declare class ColorPickerComponent implements ControlValueAccessor {
1077
1077
  readonly errorMsg: _angular_core.InputSignal<string | undefined>;
1078
1078
  /** Whether to show the alpha slider. When `false` the emitted value always has alpha = 1. */
1079
1079
  readonly showAlpha: _angular_core.InputSignal<boolean>;
1080
- /** Output format for emitted values. */
1080
+ /** Output format. `all` lets the user cycle hex/rgb/hsl in the popover; a specific value locks it. */
1081
1081
  readonly format: _angular_core.InputSignal<ColorPickerFormat>;
1082
1082
  /** Preset swatches shown at the bottom of the popover. Pass an empty array to hide. */
1083
1083
  readonly presets: _angular_core.InputSignal<readonly string[]>;
@@ -1092,10 +1092,12 @@ declare class ColorPickerComponent implements ControlValueAccessor {
1092
1092
  private readonly alpha;
1093
1093
  /** Tracks the active drag target so pointermove can route correctly. */
1094
1094
  private readonly dragging;
1095
- /** Which input row is visible (hex string or RGB channels). Toggles via the
1096
- * format button. Independent of the `format` input, which only controls the
1097
- * emitted value. */
1095
+ /** The user's chosen format when `format` is `all`; the popover toggle cycles it. */
1098
1096
  readonly inputMode: _angular_core.WritableSignal<ColorPickerInputMode>;
1097
+ /** Resolved format driving both the visible inputs and the emitted value. */
1098
+ readonly activeFormat: _angular_core.Signal<ColorPickerInputMode>;
1099
+ /** Whether the in-popover format toggle is shown (only when `format` is `all`). */
1100
+ readonly canToggleFormat: _angular_core.Signal<boolean>;
1099
1101
  /** What the hex input shows. Kept separate from the canonical hex so the user
1100
1102
  * can type a partial value (`#1`, `#12`, `#123`...) without each keystroke being
1101
1103
  * expanded back into a 6-digit canonical form. */
@@ -1113,6 +1115,14 @@ declare class ColorPickerComponent implements ControlValueAccessor {
1113
1115
  readonly opaqueColor: _angular_core.Signal<string>;
1114
1116
  readonly hueColor: _angular_core.Signal<string>;
1115
1117
  readonly hexDisplay: _angular_core.Signal<string>;
1118
+ /** Rounded HSL channels (h in degrees, s/l as percentages) for the HSL inputs. */
1119
+ readonly hslDisplay: _angular_core.Signal<{
1120
+ h: number;
1121
+ s: number;
1122
+ l: number;
1123
+ }>;
1124
+ /** Uppercase label for the format toggle, e.g. `HEX`. */
1125
+ readonly formatLabel: _angular_core.Signal<string>;
1116
1126
  readonly displayValue: _angular_core.Signal<string>;
1117
1127
  readonly resolvedPlaceholder: _angular_core.Signal<string>;
1118
1128
  readonly triggerClasses: _angular_core.Signal<{
@@ -1172,7 +1182,8 @@ declare class ColorPickerComponent implements ControlValueAccessor {
1172
1182
  onHexInput(event: Event): void;
1173
1183
  onHexBlur(): void;
1174
1184
  onRgbInput(channel: 'r' | 'g' | 'b', event: Event): void;
1175
- /** Cycles the input row between hex string and RGB channels. */
1185
+ onHslInput(channel: 'h' | 's' | 'l', event: Event): void;
1186
+ /** Cycles the format through hex, rgb, and hsl (only used when `format` is `all`). */
1176
1187
  cycleInputMode(): void;
1177
1188
  onAlphaInput(event: Event): void;
1178
1189
  pickFromScreen(): Promise<void>;
@@ -1582,8 +1593,10 @@ declare class DropdownComponent implements ControlValueAccessor {
1582
1593
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropdownComponent, "ea-dropdown", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
1583
1594
  }
1584
1595
 
1585
- /** Variant of the wordmark: 1 is "eagami", 2 is "handcrafted by eagami", 3 is "eagami" with tagline. */
1586
- type EagamiWordmarkVariant = 1 | 2 | 3;
1596
+ /** Content variant: `default` is the bare wordmark, `byline` adds the handcrafted-by line, `tagline` adds the tagline. */
1597
+ type EagamiWordmarkVariant = 'default' | 'byline' | 'tagline';
1598
+ /** @deprecated Numeric variants (1, 2, 3) alias `default`/`byline`/`tagline`. Removed in v3.0.0. */
1599
+ type EagamiWordmarkVariantLegacy = 1 | 2 | 3;
1587
1600
  /** Layout of the wordmark: `stacked` for multi-line, `inline` for a single line with em-dash separators. */
1588
1601
  type EagamiWordmarkLayout = 'stacked' | 'inline';
1589
1602
  /**
@@ -1593,10 +1606,17 @@ type EagamiWordmarkLayout = 'stacked' | 'inline';
1593
1606
  */
1594
1607
  declare class EagamiWordmarkComponent {
1595
1608
  protected readonly i18n: EagamiI18nService;
1596
- /** The wordmark variant to render. */
1597
- readonly variant: _angular_core.InputSignal<EagamiWordmarkVariant>;
1609
+ /**
1610
+ * Content variant. The numeric values `1`/`2`/`3` are accepted as deprecated
1611
+ * aliases for `default`/`byline`/`tagline` and are removed in v3.0.0.
1612
+ */
1613
+ readonly variant: _angular_core.InputSignal<EagamiWordmarkVariant | EagamiWordmarkVariantLegacy>;
1598
1614
  readonly layout: _angular_core.InputSignal<EagamiWordmarkLayout>;
1599
1615
  readonly size: _angular_core.InputSignal<number>;
1616
+ /** Collapses the deprecated numeric variants to the string form. */
1617
+ private readonly resolvedVariant;
1618
+ /** Clamps size to a 10px floor and falls back to the default when cleared. */
1619
+ protected readonly resolvedSize: _angular_core.Signal<number>;
1600
1620
  protected readonly showOverline: _angular_core.Signal<boolean>;
1601
1621
  protected readonly showTagline: _angular_core.Signal<boolean>;
1602
1622
  protected readonly brandText: _angular_core.Signal<string>;
@@ -1790,6 +1810,16 @@ declare class InputComponent implements ControlValueAccessor {
1790
1810
  readonly autocomplete: _angular_core.InputSignal<string | undefined>;
1791
1811
  /** `id` of a `<datalist>` to associate for native suggestions. */
1792
1812
  readonly list: _angular_core.InputSignal<string | undefined>;
1813
+ /** Minimum value for `type="number"`; the value is clamped to it on blur. */
1814
+ readonly min: _angular_core.InputSignal<number | undefined>;
1815
+ /** Maximum value for `type="number"`; the value is clamped to it on blur. */
1816
+ readonly max: _angular_core.InputSignal<number | undefined>;
1817
+ /** Step increment for `type="number"`. */
1818
+ readonly step: _angular_core.InputSignal<number | undefined>;
1819
+ /** Maximum number of characters; enforced for `type="number"`, where native `maxlength` is ignored. */
1820
+ readonly maxLength: _angular_core.InputSignal<number | undefined>;
1821
+ /** Minimum number of characters (native `minlength`). */
1822
+ readonly minLength: _angular_core.InputSignal<number | undefined>;
1793
1823
  /** Focuses the field once, after it first renders. */
1794
1824
  readonly autofocus: _angular_core.InputSignal<boolean>;
1795
1825
  /** Shows the reveal toggle for `password` inputs. */
@@ -1822,14 +1852,22 @@ declare class InputComponent implements ControlValueAccessor {
1822
1852
  'ea-input-wrapper--disabled': boolean;
1823
1853
  'ea-input-wrapper--readonly': boolean;
1824
1854
  }>;
1855
+ /** Characters a bounded number field can hold, from `maxLength` or its bounds' digits. */
1856
+ private readonly numberCharCapacity;
1857
+ /** Caps a bounded number field to the widest value it can hold. */
1858
+ readonly numberWidth: _angular_core.Signal<string | null>;
1825
1859
  constructor();
1826
1860
  writeValue(val: string): void;
1827
1861
  registerOnChange(fn: (value: string) => void): void;
1828
1862
  registerOnTouched(fn: () => void): void;
1829
1863
  setDisabledState(isDisabled: boolean): void;
1830
1864
  handleInput(event: Event): void;
1865
+ handleKeydown(event: KeyboardEvent): void;
1866
+ handleWheel(event: WheelEvent): void;
1831
1867
  handleFocus(event: FocusEvent): void;
1832
1868
  handleBlur(event: FocusEvent): void;
1869
+ /** Clamps a number value into `[min, max]` once editing finishes. */
1870
+ private clampToBounds;
1833
1871
  /** Toggles the password reveal state for `type="password"` inputs. */
1834
1872
  togglePasswordVisibility(): void;
1835
1873
  /** Clear the current value and restore focus to the input. */
@@ -1837,7 +1875,7 @@ declare class InputComponent implements ControlValueAccessor {
1837
1875
  /** Moves keyboard focus to the underlying native input element. */
1838
1876
  focus(): void;
1839
1877
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputComponent, never>;
1840
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputComponent, "ea-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "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; }; "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; "list": { "alias": "list"; "required": false; "isSignal": true; }; "autofocus": { "alias": "autofocus"; "required": false; "isSignal": true; }; "showPasswordToggle": { "alias": "showPasswordToggle"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "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, ["[slot=prefix]", "[slot=suffix]"], true, never>;
1878
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputComponent, "ea-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "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; }; "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; "list": { "alias": "list"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "autofocus": { "alias": "autofocus"; "required": false; "isSignal": true; }; "showPasswordToggle": { "alias": "showPasswordToggle"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "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, ["[slot=prefix]", "[slot=suffix]"], true, never>;
1841
1879
  }
1842
1880
 
1843
1881
  /** Placement of the menu list relative to its trigger. */
@@ -2365,6 +2403,8 @@ declare class RangeSliderComponent implements ControlValueAccessor {
2365
2403
  readonly showValue: _angular_core.InputSignal<boolean>;
2366
2404
  readonly showMinMaxLabels: _angular_core.InputSignal<boolean>;
2367
2405
  readonly formatValue: _angular_core.InputSignal<(value: number) => string>;
2406
+ /** Group thousands with commas in displayed values (ignored when a custom `formatValue` is set). */
2407
+ readonly groupThousands: _angular_core.InputSignal<boolean>;
2368
2408
  /** Accessible label for the low (start) thumb. Falls back to the field label when omitted. */
2369
2409
  readonly ariaLabelLow: _angular_core.InputSignal<string | undefined>;
2370
2410
  /** Accessible label for the high (end) thumb. Falls back to the field label when omitted. */
@@ -2382,6 +2422,8 @@ declare class RangeSliderComponent implements ControlValueAccessor {
2382
2422
  readonly clampedValue: _angular_core.Signal<RangeSliderValue>;
2383
2423
  readonly lowPercent: _angular_core.Signal<number>;
2384
2424
  readonly highPercent: _angular_core.Signal<number>;
2425
+ /** Formats a value for display, grouping thousands with commas unless a custom `formatValue` is set. */
2426
+ protected formatDisplay(value: number): string;
2385
2427
  readonly hasError: _angular_core.Signal<boolean>;
2386
2428
  readonly showError: _angular_core.Signal<boolean>;
2387
2429
  readonly showHint: _angular_core.Signal<boolean>;
@@ -2405,7 +2447,7 @@ declare class RangeSliderComponent implements ControlValueAccessor {
2405
2447
  /** Snap to step, clamp to `[min, max]`, then constrain by the opposite thumb. */
2406
2448
  private commitThumb;
2407
2449
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RangeSliderComponent, never>;
2408
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<RangeSliderComponent, "ea-range-slider", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "showMinMaxLabels": { "alias": "showMinMaxLabels"; "required": false; "isSignal": true; }; "formatValue": { "alias": "formatValue"; "required": false; "isSignal": true; }; "ariaLabelLow": { "alias": "aria-label-low"; "required": false; "isSignal": true; }; "ariaLabelHigh": { "alias": "aria-label-high"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
2450
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<RangeSliderComponent, "ea-range-slider", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "showMinMaxLabels": { "alias": "showMinMaxLabels"; "required": false; "isSignal": true; }; "formatValue": { "alias": "formatValue"; "required": false; "isSignal": true; }; "groupThousands": { "alias": "groupThousands"; "required": false; "isSignal": true; }; "ariaLabelLow": { "alias": "aria-label-low"; "required": false; "isSignal": true; }; "ariaLabelHigh": { "alias": "aria-label-high"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
2409
2451
  }
2410
2452
 
2411
2453
  /** Per-position render state, computed from the current display value. */
@@ -2597,6 +2639,8 @@ declare class SliderComponent implements ControlValueAccessor {
2597
2639
  readonly showValue: _angular_core.InputSignal<boolean>;
2598
2640
  readonly showMinMaxLabels: _angular_core.InputSignal<boolean>;
2599
2641
  readonly formatValue: _angular_core.InputSignal<(value: number) => string>;
2642
+ /** Group thousands with commas in displayed values (ignored when a custom `formatValue` is set). */
2643
+ readonly groupThousands: _angular_core.InputSignal<boolean>;
2600
2644
  readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
2601
2645
  readonly id: _angular_core.InputSignal<string>;
2602
2646
  readonly value: _angular_core.ModelSignal<number>;
@@ -2609,6 +2653,8 @@ declare class SliderComponent implements ControlValueAccessor {
2609
2653
  readonly isDisabled: _angular_core.Signal<boolean>;
2610
2654
  readonly clampedValue: _angular_core.Signal<number>;
2611
2655
  readonly percent: _angular_core.Signal<number>;
2656
+ /** Formats a value for display, grouping thousands with commas unless a custom `formatValue` is set. */
2657
+ protected formatDisplay(value: number): string;
2612
2658
  readonly errored: _angular_core.Signal<boolean>;
2613
2659
  readonly showError: _angular_core.Signal<boolean>;
2614
2660
  readonly showHint: _angular_core.Signal<boolean>;
@@ -2630,7 +2676,7 @@ declare class SliderComponent implements ControlValueAccessor {
2630
2676
  private updateFromPointer;
2631
2677
  private commitValue;
2632
2678
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SliderComponent, never>;
2633
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SliderComponent, "ea-slider", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "hasError": { "alias": "hasError"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "showMinMaxLabels": { "alias": "showMinMaxLabels"; "required": false; "isSignal": true; }; "formatValue": { "alias": "formatValue"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
2679
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SliderComponent, "ea-slider", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "hasError": { "alias": "hasError"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "showMinMaxLabels": { "alias": "showMinMaxLabels"; "required": false; "isSignal": true; }; "formatValue": { "alias": "formatValue"; "required": false; "isSignal": true; }; "groupThousands": { "alias": "groupThousands"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
2634
2680
  }
2635
2681
 
2636
2682
  /** Visual size of the spinner. */
@@ -6227,4 +6273,4 @@ declare class ZoomOutIconComponent extends IconComponentBase {
6227
6273
  }
6228
6274
 
6229
6275
  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 };
6230
- 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, 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 };
6276
+ 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 };