@eagami/ui 2.12.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/eagami-ui.mjs +843 -74
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +4 -4
- package/src/styles/_tooltip.scss +2 -1
- package/src/styles/tokens/_colors.scss +6 -0
- package/types/eagami-ui.d.ts +21 -47
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Lightweight, accessible Angular UI component library built on CSS custom properties",
|
|
5
5
|
"author": "Michal Wiraszka <michal@eagami.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@angular/common": "^21.0.0",
|
|
26
|
-
"@angular/core": "^21.0.0",
|
|
27
|
-
"@angular/forms": "^21.0.0"
|
|
25
|
+
"@angular/common": "^21.0.0 || ^22.0.0",
|
|
26
|
+
"@angular/core": "^21.0.0 || ^22.0.0",
|
|
27
|
+
"@angular/forms": "^21.0.0 || ^22.0.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {},
|
|
30
30
|
"engines": {
|
package/src/styles/_tooltip.scss
CHANGED
|
@@ -13,8 +13,9 @@
|
|
|
13
13
|
// When a max-width switches the bubble to multi-line, break long unbreakable
|
|
14
14
|
// strings (URLs, tokens) instead of letting them overflow the bubble.
|
|
15
15
|
overflow-wrap: anywhere;
|
|
16
|
+
border: var(--border-width-thin) solid var(--color-tooltip-border);
|
|
16
17
|
border-radius: var(--radius-md);
|
|
17
|
-
background-color: var(--color-
|
|
18
|
+
background-color: var(--color-tooltip-surface);
|
|
18
19
|
color: var(--color-neutral-0);
|
|
19
20
|
pointer-events: none;
|
|
20
21
|
animation: ea-tooltip-fade-in var(--duration-fast) var(--ease-out);
|
|
@@ -92,6 +92,12 @@
|
|
|
92
92
|
--color-bg-elevated: var(--color-neutral-0);
|
|
93
93
|
--color-bg-overlay: rgba(0, 0, 0, 0.5);
|
|
94
94
|
|
|
95
|
+
// Tooltips float over arbitrary content, so their surface is a unique tone that
|
|
96
|
+
// never matches a page or palette colour in either theme; the translucent
|
|
97
|
+
// hairline border separates it from same-tone backgrounds.
|
|
98
|
+
--color-tooltip-surface: #1a1b21;
|
|
99
|
+
--color-tooltip-border: rgba(255, 255, 255, 0.15);
|
|
100
|
+
|
|
95
101
|
// Interactive lift layers for hover and active/selected fills. Light surfaces
|
|
96
102
|
// are all near-white and never collapse onto these shades, so solid muted
|
|
97
103
|
// tones read cleanly. Dark mode swaps them for translucent washes (see the
|
package/types/eagami-ui.d.ts
CHANGED
|
@@ -7,8 +7,12 @@ import * as _eagami_ui from '@eagami/ui';
|
|
|
7
7
|
* BCP 47 locale tags supported out of the box. Consumers select one of these
|
|
8
8
|
* via `provideEagamiUi({ locale })` or `EagamiI18nService.setLocale()`.
|
|
9
9
|
*/
|
|
10
|
-
type EagamiLocale = 'en' | 'fr-FR' | 'el' | 'pl' | 'es-ES';
|
|
11
|
-
/**
|
|
10
|
+
type EagamiLocale = 'en' | 'fr-FR' | 'el' | 'pl' | 'es-ES' | 'de' | 'pt-BR' | 'zh-CN' | 'is' | 'nl';
|
|
11
|
+
/**
|
|
12
|
+
* Supported locales for language switchers: English pinned first (default
|
|
13
|
+
* fallback), then alphabetical by each language's own name (Latin scripts
|
|
14
|
+
* first, then Greek and Chinese).
|
|
15
|
+
*/
|
|
12
16
|
declare const EAGAMI_LOCALES: readonly EagamiLocale[];
|
|
13
17
|
/**
|
|
14
18
|
* Every user-facing string baked into the component library, grouped by
|
|
@@ -1425,8 +1429,6 @@ declare class DatePickerComponent implements ControlValueAccessor {
|
|
|
1425
1429
|
|
|
1426
1430
|
/** Width preset of the dialog panel. */
|
|
1427
1431
|
type DialogWidth = EaWidth;
|
|
1428
|
-
/** @deprecated Use `DialogWidth` instead. Will be removed in v3.0.0. */
|
|
1429
|
-
type DialogSize = DialogWidth;
|
|
1430
1432
|
/**
|
|
1431
1433
|
* Modal dialog backed by the native `<dialog>` element. Uses `showModal()`
|
|
1432
1434
|
* for browser-managed focus trapping, supports backdrop and Escape dismissal,
|
|
@@ -1437,11 +1439,7 @@ declare class DialogComponent {
|
|
|
1437
1439
|
private readonly dialogEl;
|
|
1438
1440
|
private previouslyFocused;
|
|
1439
1441
|
protected readonly i18n: EagamiI18nService;
|
|
1440
|
-
readonly width: _angular_core.InputSignal<EaWidth
|
|
1441
|
-
/**
|
|
1442
|
-
* @deprecated Use `width` instead. Will be removed in v3.0.0.
|
|
1443
|
-
*/
|
|
1444
|
-
readonly size: _angular_core.InputSignal<EaWidth>;
|
|
1442
|
+
readonly width: _angular_core.InputSignal<EaWidth>;
|
|
1445
1443
|
readonly closeOnBackdrop: _angular_core.InputSignal<boolean>;
|
|
1446
1444
|
readonly closeOnEscape: _angular_core.InputSignal<boolean>;
|
|
1447
1445
|
readonly showClose: _angular_core.InputSignal<boolean>;
|
|
@@ -1452,8 +1450,6 @@ declare class DialogComponent {
|
|
|
1452
1450
|
readonly opened: _angular_core.OutputEmitterRef<void>;
|
|
1453
1451
|
/** Fires when the dialog closes (via close button, backdrop, or Escape). */
|
|
1454
1452
|
readonly closed: _angular_core.OutputEmitterRef<void>;
|
|
1455
|
-
/** Effective panel width, preferring `width` over the deprecated `size`. */
|
|
1456
|
-
readonly resolvedWidth: _angular_core.Signal<EaWidth>;
|
|
1457
1453
|
readonly panelClasses: _angular_core.Signal<{
|
|
1458
1454
|
[x: string]: boolean;
|
|
1459
1455
|
}>;
|
|
@@ -1462,7 +1458,7 @@ declare class DialogComponent {
|
|
|
1462
1458
|
handleBackdropClick(event: MouseEvent): void;
|
|
1463
1459
|
handleCancel(event: Event): void;
|
|
1464
1460
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DialogComponent, never>;
|
|
1465
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DialogComponent, "ea-dialog", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; "
|
|
1461
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DialogComponent, "ea-dialog", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; "closeOnBackdrop": { "alias": "closeOnBackdrop"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["[slot=header]", "*", "[slot=footer]"], true, never>;
|
|
1466
1462
|
}
|
|
1467
1463
|
|
|
1468
1464
|
/** Orientation of the divider rule. */
|
|
@@ -1489,8 +1485,6 @@ declare class DividerComponent {
|
|
|
1489
1485
|
type DrawerPosition = 'left' | 'right' | 'top' | 'bottom';
|
|
1490
1486
|
/** Width of the drawer panel along its primary axis. */
|
|
1491
1487
|
type DrawerWidth = EaWidth;
|
|
1492
|
-
/** @deprecated Use `DrawerWidth` instead. Will be removed in v3.0.0. */
|
|
1493
|
-
type DrawerSize = DrawerWidth;
|
|
1494
1488
|
/**
|
|
1495
1489
|
* Side panel backed by the native `<dialog>` element for browser-managed
|
|
1496
1490
|
* focus trapping. Slides in from a configurable edge, supports backdrop and
|
|
@@ -1502,11 +1496,7 @@ declare class DrawerComponent {
|
|
|
1502
1496
|
private previouslyFocused;
|
|
1503
1497
|
protected readonly i18n: EagamiI18nService;
|
|
1504
1498
|
readonly position: _angular_core.InputSignal<DrawerPosition>;
|
|
1505
|
-
readonly width: _angular_core.InputSignal<EaWidth
|
|
1506
|
-
/**
|
|
1507
|
-
* @deprecated Use `width` instead. Will be removed in v3.0.0.
|
|
1508
|
-
*/
|
|
1509
|
-
readonly size: _angular_core.InputSignal<EaWidth>;
|
|
1499
|
+
readonly width: _angular_core.InputSignal<EaWidth>;
|
|
1510
1500
|
readonly closeOnBackdrop: _angular_core.InputSignal<boolean>;
|
|
1511
1501
|
readonly closeOnEscape: _angular_core.InputSignal<boolean>;
|
|
1512
1502
|
/** Slide the panel in from its edge when the drawer opens. */
|
|
@@ -1519,8 +1509,6 @@ declare class DrawerComponent {
|
|
|
1519
1509
|
readonly opened: _angular_core.OutputEmitterRef<void>;
|
|
1520
1510
|
/** Fires when the drawer closes (via close button, backdrop, or Escape). */
|
|
1521
1511
|
readonly closed: _angular_core.OutputEmitterRef<void>;
|
|
1522
|
-
/** Effective panel width, preferring `width` over the deprecated `size`. */
|
|
1523
|
-
readonly resolvedWidth: _angular_core.Signal<EaWidth>;
|
|
1524
1512
|
readonly panelClasses: _angular_core.Signal<{
|
|
1525
1513
|
[x: string]: boolean;
|
|
1526
1514
|
}>;
|
|
@@ -1530,7 +1518,7 @@ declare class DrawerComponent {
|
|
|
1530
1518
|
handleCancel(event: Event): void;
|
|
1531
1519
|
onDialogClose(): void;
|
|
1532
1520
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DrawerComponent, never>;
|
|
1533
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawerComponent, "ea-drawer", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "
|
|
1521
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawerComponent, "ea-drawer", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "closeOnBackdrop": { "alias": "closeOnBackdrop"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "animated": { "alias": "animated"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["[slot=header]", "*", "[slot=footer]"], true, never>;
|
|
1534
1522
|
}
|
|
1535
1523
|
|
|
1536
1524
|
/** Visual size of the dropdown trigger. */
|
|
@@ -1601,8 +1589,6 @@ declare class DropdownComponent implements ControlValueAccessor {
|
|
|
1601
1589
|
|
|
1602
1590
|
/** Content variant: `default` is the bare wordmark, `byline` adds the handcrafted-by line, `tagline` adds the tagline. */
|
|
1603
1591
|
type EagamiWordmarkVariant = 'default' | 'byline' | 'tagline';
|
|
1604
|
-
/** @deprecated Numeric variants (1, 2, 3) alias `default`/`byline`/`tagline`. Removed in v3.0.0. */
|
|
1605
|
-
type EagamiWordmarkVariantLegacy = 1 | 2 | 3;
|
|
1606
1592
|
/** Layout of the wordmark: `stacked` for multi-line, `inline` for a single line with em-dash separators. */
|
|
1607
1593
|
type EagamiWordmarkLayout = 'stacked' | 'inline';
|
|
1608
1594
|
/**
|
|
@@ -1612,15 +1598,10 @@ type EagamiWordmarkLayout = 'stacked' | 'inline';
|
|
|
1612
1598
|
*/
|
|
1613
1599
|
declare class EagamiWordmarkComponent {
|
|
1614
1600
|
protected readonly i18n: EagamiI18nService;
|
|
1615
|
-
/**
|
|
1616
|
-
|
|
1617
|
-
* aliases for `default`/`byline`/`tagline` and are removed in v3.0.0.
|
|
1618
|
-
*/
|
|
1619
|
-
readonly variant: _angular_core.InputSignal<EagamiWordmarkVariant | EagamiWordmarkVariantLegacy>;
|
|
1601
|
+
/** Content variant. */
|
|
1602
|
+
readonly variant: _angular_core.InputSignal<EagamiWordmarkVariant>;
|
|
1620
1603
|
readonly layout: _angular_core.InputSignal<EagamiWordmarkLayout>;
|
|
1621
1604
|
readonly size: _angular_core.InputSignal<number>;
|
|
1622
|
-
/** Collapses the deprecated numeric variants to the string form. */
|
|
1623
|
-
private readonly resolvedVariant;
|
|
1624
1605
|
/** Clamps size to a 10px floor and falls back to the default when cleared. */
|
|
1625
1606
|
protected readonly resolvedSize: _angular_core.Signal<number>;
|
|
1626
1607
|
protected readonly showOverline: _angular_core.Signal<boolean>;
|
|
@@ -1898,6 +1879,8 @@ declare class MenuComponent {
|
|
|
1898
1879
|
private readonly i18n;
|
|
1899
1880
|
private readonly listEl;
|
|
1900
1881
|
readonly placement: _angular_core.InputSignal<MenuPlacement>;
|
|
1882
|
+
/** Max height of the scrollable list as a CSS length; tall menus scroll past it. */
|
|
1883
|
+
readonly maxHeight: _angular_core.InputSignal<string>;
|
|
1901
1884
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
1902
1885
|
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
1903
1886
|
readonly id: _angular_core.InputSignal<string>;
|
|
@@ -1937,7 +1920,7 @@ declare class MenuComponent {
|
|
|
1937
1920
|
onKeydown(event: KeyboardEvent): void;
|
|
1938
1921
|
onEscape(): void;
|
|
1939
1922
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
1940
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuComponent, "ea-menu", never, { "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["*"], true, never>;
|
|
1923
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuComponent, "ea-menu", never, { "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["*"], true, never>;
|
|
1941
1924
|
}
|
|
1942
1925
|
|
|
1943
1926
|
/** Visual style of a menu item; `danger` for destructive actions. */
|
|
@@ -2302,12 +2285,8 @@ declare class ProgressBarComponent {
|
|
|
2302
2285
|
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
2303
2286
|
/** Shows the rounded percentage alongside the label. */
|
|
2304
2287
|
readonly showPercentage: _angular_core.InputSignal<boolean>;
|
|
2305
|
-
/**
|
|
2306
|
-
* @deprecated Use `showPercentage` instead. Will be removed in v3.0.0.
|
|
2307
|
-
*/
|
|
2308
|
-
readonly showValue: _angular_core.InputSignal<boolean>;
|
|
2309
2288
|
readonly indeterminate: _angular_core.InputSignal<boolean>;
|
|
2310
|
-
/** Whether to render the percentage
|
|
2289
|
+
/** Whether to render the percentage. */
|
|
2311
2290
|
readonly showsPercentage: _angular_core.Signal<boolean>;
|
|
2312
2291
|
readonly percentage: _angular_core.Signal<number>;
|
|
2313
2292
|
readonly percentageRounded: _angular_core.Signal<number>;
|
|
@@ -2316,7 +2295,7 @@ declare class ProgressBarComponent {
|
|
|
2316
2295
|
'ea-progress-bar--indeterminate': boolean;
|
|
2317
2296
|
}>;
|
|
2318
2297
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
2319
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProgressBarComponent, "ea-progress-bar", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "showPercentage": { "alias": "showPercentage"; "required": false; "isSignal": true; }; "
|
|
2298
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProgressBarComponent, "ea-progress-bar", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "showPercentage": { "alias": "showPercentage"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2320
2299
|
}
|
|
2321
2300
|
|
|
2322
2301
|
/** Visual size shared by all radios in the group. */
|
|
@@ -2900,7 +2879,7 @@ type TextareaSize = EaSize;
|
|
|
2900
2879
|
type TextareaResize = 'none' | 'vertical' | 'horizontal' | 'both';
|
|
2901
2880
|
/**
|
|
2902
2881
|
* Multiline text field that mirrors the `ea-input` API. Supports configurable
|
|
2903
|
-
* `
|
|
2882
|
+
* `resize` direction and `maxlength`, and integrates with Angular
|
|
2904
2883
|
* forms via `ControlValueAccessor`.
|
|
2905
2884
|
*/
|
|
2906
2885
|
declare class TextareaComponent implements ControlValueAccessor {
|
|
@@ -2913,18 +2892,13 @@ declare class TextareaComponent implements ControlValueAccessor {
|
|
|
2913
2892
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2914
2893
|
readonly readonly: _angular_core.InputSignal<boolean>;
|
|
2915
2894
|
readonly required: _angular_core.InputSignal<boolean>;
|
|
2916
|
-
/**
|
|
2917
|
-
* @deprecated Use `maxHeight` and the `resize` handle to control height; this
|
|
2918
|
-
* sets the initial height only. Will be removed in v3.0.0.
|
|
2919
|
-
*/
|
|
2920
|
-
readonly rows: _angular_core.InputSignal<number>;
|
|
2921
2895
|
readonly resize: _angular_core.InputSignal<TextareaResize>;
|
|
2922
2896
|
readonly maxlength: _angular_core.InputSignal<number | undefined>;
|
|
2923
2897
|
/** Optional pixel ceiling for the textarea's height. Beyond it, the inner
|
|
2924
2898
|
* field scrolls vertically instead of growing. */
|
|
2925
2899
|
readonly maxHeight: _angular_core.InputSignal<number | undefined>;
|
|
2926
2900
|
/** Optional pixel floor for the textarea's height. Clamped so it never drops
|
|
2927
|
-
* below the height
|
|
2901
|
+
* below the default height. */
|
|
2928
2902
|
readonly minHeight: _angular_core.InputSignal<number | undefined>;
|
|
2929
2903
|
readonly id: _angular_core.InputSignal<string>;
|
|
2930
2904
|
readonly value: _angular_core.ModelSignal<string>;
|
|
@@ -2958,7 +2932,7 @@ declare class TextareaComponent implements ControlValueAccessor {
|
|
|
2958
2932
|
/** Moves keyboard focus to the underlying native textarea element. */
|
|
2959
2933
|
focus(): void;
|
|
2960
2934
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TextareaComponent, never>;
|
|
2961
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextareaComponent, "ea-textarea", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "
|
|
2935
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextareaComponent, "ea-textarea", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "resize": { "alias": "resize"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "minHeight": { "alias": "minHeight"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "focused": "focused"; "blurred": "blurred"; }, never, never, true, never>;
|
|
2962
2936
|
}
|
|
2963
2937
|
|
|
2964
2938
|
/** Visual size of the time picker trigger. */
|
|
@@ -6311,4 +6285,4 @@ declare class ZoomOutIconComponent extends IconComponentBase {
|
|
|
6311
6285
|
}
|
|
6312
6286
|
|
|
6313
6287
|
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkIconComponent, BottleIconComponent, BoxIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, ColorPickerComponent, ColumnsIconComponent, CommandIconComponent, CommandPaletteComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DEFAULT_PALETTE_ROLES, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideCircleIconComponent, DivideIconComponent, DivideSquareIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DribbbleIconComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_MESSAGES, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FieldLabelComponent, FieldMessagesComponent, Figma2IconComponent, FigmaIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FlagIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HalfCircleIconComponent, HalfHeartIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KubernetesIconComponent, LampIconComponent, LayersIconComponent, LayoutIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MultiSelectComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SoccerBallIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TimePickerComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WCAG_AA, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, computePopoverPosition, contrastRatio, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, hexToOklch, iconDisplayName, oklchToHex, pl, provideEagamiUi, relativeLuminance, validatePalette, visibleNodeIds, walkTree };
|
|
6314
|
-
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,
|
|
6288
|
+
export type { AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, DrawerPosition, DrawerWidth, DropdownSize, EaSize, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, ModePalette, ModeSurfaces, MultiSelectSize, PaginatorAlign, PaginatorSize, PaginatorState, PaletteConfig, PaletteRoles, PaletteShade, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, RatingSize, RatingStarState, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, Toast, ToastOptions, ToastPosition, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
|