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