@eagami/ui 5.6.2 → 5.8.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/README.md +1 -1
- package/fesm2022/eagami-ui.mjs +133 -36
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +89 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.8.0",
|
|
4
4
|
"description": "Lightweight, accessible, themeable Angular UI component library and icon set built on CSS custom properties",
|
|
5
5
|
"author": "Michal Wiraszka <michal@eagami.com>",
|
|
6
6
|
"license": "MIT",
|
package/types/eagami-ui.d.ts
CHANGED
|
@@ -253,6 +253,8 @@ interface EagamiLocaleBundle {
|
|
|
253
253
|
locale: EagamiLocale;
|
|
254
254
|
messages: EagamiMessages;
|
|
255
255
|
}
|
|
256
|
+
/** Lazily resolves a locale's dictionary, typically via a dynamic `import()`. */
|
|
257
|
+
type EagamiLocaleLoader = () => Promise<EagamiLocaleBundle>;
|
|
256
258
|
/** Configuration accepted by `provideEagamiUi()`. */
|
|
257
259
|
interface EagamiI18nConfig {
|
|
258
260
|
/** Initial locale. Defaults to `'en'`. Falls back to English if not registered. */
|
|
@@ -263,6 +265,14 @@ interface EagamiI18nConfig {
|
|
|
263
265
|
* to keep your bundle lean.
|
|
264
266
|
*/
|
|
265
267
|
locales?: readonly EagamiLocaleBundle[];
|
|
268
|
+
/**
|
|
269
|
+
* Lazy loaders for locale dictionaries, keyed by locale. A locale with a
|
|
270
|
+
* loader stays out of the initial bundle and is fetched the first time it
|
|
271
|
+
* is activated via `setLocale()` (or preloaded via `loadLocale()`). Point
|
|
272
|
+
* each loader at a module that re-exports a single locale bundle so the
|
|
273
|
+
* bundler emits one chunk per locale.
|
|
274
|
+
*/
|
|
275
|
+
localeLoaders?: Partial<Record<EagamiLocale, EagamiLocaleLoader>>;
|
|
266
276
|
/** Optional per-string overrides merged over the active locale's messages. */
|
|
267
277
|
messages?: EagamiMessagesOverride;
|
|
268
278
|
}
|
|
@@ -361,33 +371,62 @@ declare const EAGAMI_I18N_CONFIG: InjectionToken<EagamiI18nConfig>;
|
|
|
361
371
|
*
|
|
362
372
|
* Optional. Without it, the library defaults to English and ships its
|
|
363
373
|
* built-in brand colours. Only English is bundled until you register more
|
|
364
|
-
* languages via `locales` (pass `EAGAMI_ALL_LOCALES` for all of them)
|
|
374
|
+
* languages via `locales` (pass `EAGAMI_ALL_LOCALES` for all of them), or
|
|
375
|
+
* keep them out of the initial bundle entirely with `localeLoaders`:
|
|
376
|
+
*
|
|
377
|
+
* ```ts
|
|
378
|
+
* provideEagamiUi({
|
|
379
|
+
* localeLoaders: {
|
|
380
|
+
* 'fr-FR': () => import('./i18n/fr-FR').then(m => m.frFR),
|
|
381
|
+
* },
|
|
382
|
+
* });
|
|
383
|
+
* ```
|
|
365
384
|
*/
|
|
366
385
|
declare function provideEagamiUi(config?: EagamiUiConfig): EnvironmentProviders;
|
|
367
386
|
|
|
368
387
|
/**
|
|
369
388
|
* Holds the active locale and resolves the matching message dictionary for
|
|
370
389
|
* every Eagami UI component. English is always available; other languages are
|
|
371
|
-
*
|
|
372
|
-
*
|
|
390
|
+
* either registered eagerly via `provideEagamiUi({ locales })` or fetched on
|
|
391
|
+
* demand via `provideEagamiUi({ localeLoaders })`. The `locale` signal is
|
|
392
|
+
* reactive, so changing it at runtime re-renders all components. Unknown or
|
|
373
393
|
* unregistered locales fall back to English.
|
|
374
394
|
*/
|
|
375
395
|
declare class EagamiI18nService {
|
|
376
396
|
private readonly config;
|
|
377
397
|
private readonly registered;
|
|
398
|
+
private readonly loading;
|
|
399
|
+
private pendingSwitch;
|
|
378
400
|
private readonly _locale;
|
|
379
401
|
/** The currently active locale. Read it reactively or call `setLocale()`. */
|
|
380
402
|
readonly locale: Signal<EagamiLocale>;
|
|
381
403
|
constructor();
|
|
382
404
|
/** The resolved message dictionary for the active locale. */
|
|
383
405
|
readonly messages: Signal<EagamiMessages>;
|
|
384
|
-
/**
|
|
385
|
-
|
|
406
|
+
/**
|
|
407
|
+
* Switches the active locale. A registered locale applies synchronously; a
|
|
408
|
+
* locale with a lazy loader is fetched first, then applied, with the newest
|
|
409
|
+
* request superseding any in-flight one. Falls back to English when the
|
|
410
|
+
* locale is neither registered nor loadable, or when its loader fails.
|
|
411
|
+
* Resolves once the switch has been applied (or superseded).
|
|
412
|
+
*/
|
|
413
|
+
setLocale(locale: EagamiLocale): Promise<void>;
|
|
414
|
+
/**
|
|
415
|
+
* Fetches and registers a locale's dictionary through its configured loader
|
|
416
|
+
* without switching to it, so a later `setLocale()` applies instantly.
|
|
417
|
+
* Resolves immediately when the locale is already registered or has no
|
|
418
|
+
* loader. Rejects when the loader fails; the failure is not cached, so a
|
|
419
|
+
* retry fetches again.
|
|
420
|
+
*/
|
|
421
|
+
loadLocale(locale: EagamiLocale): Promise<void>;
|
|
422
|
+
private hasLoader;
|
|
386
423
|
private resolveInitialLocale;
|
|
387
424
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EagamiI18nService, never>;
|
|
388
425
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<EagamiI18nService>;
|
|
389
426
|
}
|
|
390
427
|
|
|
428
|
+
declare const ar: EagamiLocaleBundle;
|
|
429
|
+
|
|
391
430
|
declare const de: EagamiLocaleBundle;
|
|
392
431
|
|
|
393
432
|
declare const el: EagamiLocaleBundle;
|
|
@@ -398,6 +437,10 @@ declare const esES: EagamiLocaleBundle;
|
|
|
398
437
|
|
|
399
438
|
declare const frFR: EagamiLocaleBundle;
|
|
400
439
|
|
|
440
|
+
declare const he: EagamiLocaleBundle;
|
|
441
|
+
|
|
442
|
+
declare const hi: EagamiLocaleBundle;
|
|
443
|
+
|
|
401
444
|
declare const is: EagamiLocaleBundle;
|
|
402
445
|
|
|
403
446
|
declare const nl: EagamiLocaleBundle;
|
|
@@ -406,6 +449,10 @@ declare const pl: EagamiLocaleBundle;
|
|
|
406
449
|
|
|
407
450
|
declare const ptBR: EagamiLocaleBundle;
|
|
408
451
|
|
|
452
|
+
declare const ru: EagamiLocaleBundle;
|
|
453
|
+
|
|
454
|
+
declare const uk: EagamiLocaleBundle;
|
|
455
|
+
|
|
409
456
|
declare const zhCN: EagamiLocaleBundle;
|
|
410
457
|
|
|
411
458
|
/**
|
|
@@ -543,6 +590,8 @@ type EaWidth = EaSize | 'full';
|
|
|
543
590
|
|
|
544
591
|
/** Heading level exposed by each item's header for assistive technology. */
|
|
545
592
|
type AccordionHeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
593
|
+
/** Visual size of the accordion, shared by all of its items. */
|
|
594
|
+
type AccordionSize = EaSize;
|
|
546
595
|
/**
|
|
547
596
|
* Container for expandable content sections. By default only one item can be
|
|
548
597
|
* open at a time; set `multi` to allow several to stay expanded together.
|
|
@@ -550,19 +599,22 @@ type AccordionHeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
|
550
599
|
*/
|
|
551
600
|
declare class AccordionComponent {
|
|
552
601
|
readonly multi: _angular_core.InputSignal<boolean>;
|
|
602
|
+
/** Visual size of the accordion; every item inherits it. */
|
|
603
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
553
604
|
/** Heading level (1-6) applied to every item's header wrapper. */
|
|
554
605
|
readonly headingLevel: _angular_core.InputSignal<AccordionHeadingLevel>;
|
|
555
606
|
readonly expandedItems: _angular_core.WritableSignal<Set<string>>;
|
|
556
607
|
toggle(value: string): void;
|
|
557
608
|
isExpanded(value: string): boolean;
|
|
558
609
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
559
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionComponent, "ea-accordion", never, { "multi": { "alias": "multi"; "required": false; "isSignal": true; }; "headingLevel": { "alias": "headingLevel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
610
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionComponent, "ea-accordion", never, { "multi": { "alias": "multi"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "headingLevel": { "alias": "headingLevel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
560
611
|
}
|
|
561
612
|
|
|
562
613
|
/**
|
|
563
614
|
* Single expandable section within an `ea-accordion`. Each item exposes a
|
|
564
615
|
* header button with the supplied `label` and reveals its projected content
|
|
565
|
-
* when expanded.
|
|
616
|
+
* when expanded. Inherits its size from the parent accordion. Must be
|
|
617
|
+
* rendered inside an `ea-accordion`.
|
|
566
618
|
*/
|
|
567
619
|
declare class AccordionItemComponent {
|
|
568
620
|
private readonly accordion;
|
|
@@ -572,6 +624,7 @@ declare class AccordionItemComponent {
|
|
|
572
624
|
readonly id: _angular_core.InputSignal<string>;
|
|
573
625
|
readonly isExpanded: _angular_core.Signal<boolean>;
|
|
574
626
|
readonly headingLevel: _angular_core.Signal<_eagami_ui.AccordionHeadingLevel>;
|
|
627
|
+
readonly size: _angular_core.Signal<_eagami_ui.EaSize>;
|
|
575
628
|
toggle(): void;
|
|
576
629
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
|
|
577
630
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionItemComponent, "ea-accordion-item", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -886,6 +939,8 @@ declare class BadgeComponent {
|
|
|
886
939
|
|
|
887
940
|
/** Visual style of the separator rendered between breadcrumb items. */
|
|
888
941
|
type BreadcrumbsSeparator = 'chevron' | 'slash';
|
|
942
|
+
/** Visual size of the breadcrumb trail. */
|
|
943
|
+
type BreadcrumbsSize = EaSize;
|
|
889
944
|
/** Single entry in a breadcrumb trail. */
|
|
890
945
|
interface BreadcrumbItem {
|
|
891
946
|
label: string;
|
|
@@ -907,6 +962,8 @@ declare class BreadcrumbsComponent {
|
|
|
907
962
|
private readonly i18n;
|
|
908
963
|
readonly items: _angular_core.InputSignal<BreadcrumbItem[]>;
|
|
909
964
|
readonly separator: _angular_core.InputSignal<BreadcrumbsSeparator>;
|
|
965
|
+
/** Visual size of the breadcrumb trail. */
|
|
966
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
910
967
|
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
911
968
|
/** Fires when a non-disabled, non-final breadcrumb is activated. */
|
|
912
969
|
readonly clicked: _angular_core.OutputEmitterRef<BreadcrumbClickEvent>;
|
|
@@ -915,7 +972,7 @@ declare class BreadcrumbsComponent {
|
|
|
915
972
|
isLast(index: number): boolean;
|
|
916
973
|
handleClick(item: BreadcrumbItem, index: number, event: MouseEvent): void;
|
|
917
974
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbsComponent, never>;
|
|
918
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbsComponent, "ea-breadcrumbs", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, never, true, never>;
|
|
975
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbsComponent, "ea-breadcrumbs", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, never, true, never>;
|
|
919
976
|
}
|
|
920
977
|
|
|
921
978
|
/** Visual style of a button; drives colour and emphasis. */
|
|
@@ -1330,6 +1387,8 @@ declare class ColorPickerComponent implements ControlValueAccessor {
|
|
|
1330
1387
|
|
|
1331
1388
|
/** Vertical density preset for table rows and header cells. */
|
|
1332
1389
|
type DataTableDensity = 'compact' | 'comfortable' | 'spacious';
|
|
1390
|
+
/** Visual size of the table's text, paddings, and icons. */
|
|
1391
|
+
type DataTableSize = EaSize;
|
|
1333
1392
|
/** Sort direction; `null` means no sort is applied. */
|
|
1334
1393
|
type DataTableSortDirection = 'asc' | 'desc' | null;
|
|
1335
1394
|
/** Column definition for the data table, including optional cell/header templates. */
|
|
@@ -1368,6 +1427,8 @@ declare class DataTableComponent<T = Record<string, unknown>> {
|
|
|
1368
1427
|
readonly data: _angular_core.InputSignal<T[]>;
|
|
1369
1428
|
readonly trackBy: _angular_core.InputSignal<keyof T | undefined>;
|
|
1370
1429
|
readonly density: _angular_core.InputSignal<DataTableDensity>;
|
|
1430
|
+
/** Visual size of the table; density paddings and icons scale with it. */
|
|
1431
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
1371
1432
|
readonly stickyHeader: _angular_core.InputSignal<boolean>;
|
|
1372
1433
|
readonly striped: _angular_core.InputSignal<boolean>;
|
|
1373
1434
|
readonly hoverable: _angular_core.InputSignal<boolean>;
|
|
@@ -1408,7 +1469,7 @@ declare class DataTableComponent<T = Record<string, unknown>> {
|
|
|
1408
1469
|
onGridKeydown(event: KeyboardEvent): void;
|
|
1409
1470
|
private focusCell;
|
|
1410
1471
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataTableComponent<any>, never>;
|
|
1411
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataTableComponent<any>, "ea-data-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "trackBy": { "alias": "trackBy"; "required": false; "isSignal": true; }; "density": { "alias": "density"; "required": false; "isSignal": true; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "hoverable": { "alias": "hoverable"; "required": false; "isSignal": true; }; "bordered": { "alias": "bordered"; "required": false; "isSignal": true; }; "noDataText": { "alias": "noDataText"; "required": false; "isSignal": true; }; "navigable": { "alias": "navigable"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "sort": { "alias": "sort"; "required": false; "isSignal": true; }; }, { "sort": "sortChange"; "sorted": "sorted"; "rowActivate": "rowActivate"; }, ["noDataTemplate"], ["ea-paginator"], true, never>;
|
|
1472
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataTableComponent<any>, "ea-data-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "trackBy": { "alias": "trackBy"; "required": false; "isSignal": true; }; "density": { "alias": "density"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "hoverable": { "alias": "hoverable"; "required": false; "isSignal": true; }; "bordered": { "alias": "bordered"; "required": false; "isSignal": true; }; "noDataText": { "alias": "noDataText"; "required": false; "isSignal": true; }; "navigable": { "alias": "navigable"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "sort": { "alias": "sort"; "required": false; "isSignal": true; }; }, { "sort": "sortChange"; "sorted": "sorted"; "rowActivate": "rowActivate"; }, ["noDataTemplate"], ["ea-paginator"], true, never>;
|
|
1412
1473
|
}
|
|
1413
1474
|
|
|
1414
1475
|
/** Visual size of each digit cell. */
|
|
@@ -1893,6 +1954,8 @@ declare class FieldMessagesComponent {
|
|
|
1893
1954
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FieldMessagesComponent, "ea-field-messages", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1894
1955
|
}
|
|
1895
1956
|
|
|
1957
|
+
/** Visual size of the field (label, control text, spacing, and messages). */
|
|
1958
|
+
type FormFieldSize = EaSize;
|
|
1896
1959
|
/**
|
|
1897
1960
|
* Wraps a projected native control (`input`, `select`, or `textarea`) in the
|
|
1898
1961
|
* library's standard field chrome: a label with required marker, a hint, and
|
|
@@ -1918,6 +1981,8 @@ declare class FormFieldComponent {
|
|
|
1918
1981
|
readonly errorMessages: _angular_core.InputSignal<Partial<Record<string, string>> | undefined>;
|
|
1919
1982
|
/** Marks the field as required. */
|
|
1920
1983
|
readonly required: _angular_core.InputSignal<boolean>;
|
|
1984
|
+
/** Visual size of the field; the label, control text, spacing, and messages scale with it. */
|
|
1985
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
1921
1986
|
/** id seed for the label and message wiring; auto-generated when omitted. */
|
|
1922
1987
|
readonly id: _angular_core.InputSignal<string>;
|
|
1923
1988
|
private readonly ngControl;
|
|
@@ -1932,7 +1997,7 @@ declare class FormFieldComponent {
|
|
|
1932
1997
|
protected readonly showHint: _angular_core.Signal<boolean>;
|
|
1933
1998
|
constructor();
|
|
1934
1999
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
1935
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormFieldComponent, "ea-form-field", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, ["ngControl"], ["*"], true, never>;
|
|
2000
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormFieldComponent, "ea-form-field", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, ["ngControl"], ["*"], true, never>;
|
|
1936
2001
|
}
|
|
1937
2002
|
|
|
1938
2003
|
/** Validator error keys the library ships built-in localized messages for. */
|
|
@@ -2166,6 +2231,8 @@ declare class InputComponent implements ControlValueAccessor {
|
|
|
2166
2231
|
|
|
2167
2232
|
/** Placement of the menu list relative to its trigger. */
|
|
2168
2233
|
type MenuPlacement = 'bottom-start' | 'bottom-end' | 'top-start' | 'top-end';
|
|
2234
|
+
/** Visual size of the menu, shared by all of its items. */
|
|
2235
|
+
type MenuSize = EaSize;
|
|
2169
2236
|
/**
|
|
2170
2237
|
* Popup action menu attached to any focusable element via the
|
|
2171
2238
|
* `[eaMenuTrigger]` directive. Supports keyboard navigation
|
|
@@ -2178,6 +2245,8 @@ declare class MenuComponent {
|
|
|
2178
2245
|
private readonly i18n;
|
|
2179
2246
|
private readonly listEl;
|
|
2180
2247
|
readonly placement: _angular_core.InputSignal<MenuPlacement>;
|
|
2248
|
+
/** Visual size of the menu; every item inherits it. */
|
|
2249
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
2181
2250
|
/** Max height of the scrollable list as a CSS length; tall menus scroll past it. */
|
|
2182
2251
|
readonly maxHeight: _angular_core.InputSignal<string>;
|
|
2183
2252
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -2222,7 +2291,7 @@ declare class MenuComponent {
|
|
|
2222
2291
|
onKeydown(event: KeyboardEvent): void;
|
|
2223
2292
|
onEscape(): void;
|
|
2224
2293
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
2225
|
-
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>;
|
|
2294
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuComponent, "ea-menu", never, { "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "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>;
|
|
2226
2295
|
}
|
|
2227
2296
|
|
|
2228
2297
|
/** Visual style of a menu item; `danger` for destructive actions. */
|
|
@@ -2230,7 +2299,8 @@ type MenuItemVariant = 'default' | 'danger';
|
|
|
2230
2299
|
/**
|
|
2231
2300
|
* Selectable row inside an `ea-menu`. Supports leading icons via the `icon`
|
|
2232
2301
|
* content slot, a disabled state, and a `danger` variant for destructive
|
|
2233
|
-
* actions.
|
|
2302
|
+
* actions. Inherits its size from the parent menu, and activating an item
|
|
2303
|
+
* closes that menu.
|
|
2234
2304
|
*/
|
|
2235
2305
|
declare class MenuItemComponent {
|
|
2236
2306
|
private readonly menu;
|
|
@@ -3653,6 +3723,8 @@ declare class ToastService {
|
|
|
3653
3723
|
|
|
3654
3724
|
/** Corner or edge of the viewport the toast stack is pinned to. */
|
|
3655
3725
|
type ToastPosition = 'top-left' | 'top' | 'top-right' | 'bottom-left' | 'bottom' | 'bottom-right';
|
|
3726
|
+
/** Visual size of every toast rendered by the outlet. */
|
|
3727
|
+
type ToastSize = EaSize;
|
|
3656
3728
|
/**
|
|
3657
3729
|
* Outlet that renders the stack of active toasts produced by
|
|
3658
3730
|
* {@link ToastService}. Place a single `<ea-toast />` once in the root
|
|
@@ -3663,11 +3735,13 @@ declare class ToastComponent {
|
|
|
3663
3735
|
protected readonly i18n: EagamiI18nService;
|
|
3664
3736
|
/** Viewport corner or edge the toast stack is pinned to. */
|
|
3665
3737
|
readonly position: _angular_core.InputSignal<ToastPosition>;
|
|
3738
|
+
/** Visual size applied to every toast in the stack. */
|
|
3739
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
3666
3740
|
/** Show a dismiss button on each toast. */
|
|
3667
3741
|
readonly clearable: _angular_core.InputSignal<boolean>;
|
|
3668
3742
|
protected readonly containerClass: _angular_core.Signal<string>;
|
|
3669
3743
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
3670
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToastComponent, "ea-toast", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3744
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToastComponent, "ea-toast", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3671
3745
|
}
|
|
3672
3746
|
|
|
3673
3747
|
/** Placement of the tooltip relative to its host element. */
|
|
@@ -7274,5 +7348,5 @@ declare class WordpressIconComponent extends IconComponentBase {
|
|
|
7274
7348
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WordpressIconComponent, "ea-icon-wordpress", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7275
7349
|
}
|
|
7276
7350
|
|
|
7277
|
-
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, AndroidIconComponent, AngularIconComponent, AnthropicIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeCheckIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BellRingIconComponent, BitcoinIconComponent, BlueskyIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkCheckIconComponent, BookmarkIconComponent, BookmarkPlusIconComponent, BotIconComponent, BottleIconComponent, BoxIconComponent, BrainIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarCheckIconComponent, CalendarDaysIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardCheckIconComponent, ClipboardIconComponent, ClipboardListIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, CoinsIconComponent, 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_ALL_LOCALES, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_LOCALE_META, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FieldLabelComponent, FieldMessagesComponent, Figma2IconComponent, FigmaIconComponent, FileCheckIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FilterXIconComponent, FingerprintIconComponent, FlagIconComponent, FlameIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderOpenIconComponent, FolderPlusIconComponent, FormFieldComponent, FramerIconComponent, FrownIconComponent, GaugeIconComponent, GeminiIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitCompareIconComponent, 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, KeyboardIconComponent, KubernetesIconComponent, LampIconComponent, LanguagesIconComponent, LayersIconComponent, LayoutIconComponent, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailCheckIconComponent, 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, NodejsIconComponent, NotionIconComponent, NpmIconComponent, NumberInputComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PinterestIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, PythonIconComponent, QrCodeIconComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, ReactIconComponent, ReceiptIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RedoIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RocketIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScanIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldCheckIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShopifyIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SnowflakeIconComponent, SoccerBallIconComponent, SparklesIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SvelteIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, TimelineComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UndoIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, VueIconComponent, WCAG_AA, WalletIconComponent, WandIconComponent, WatchIconComponent, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, WordpressIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, hexToOklch, iconDisplayName, is, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, validatePalette, visibleNodeIds, walkTree, zhCN };
|
|
7278
|
-
export type { AccordionHeadingLevel, 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, DrawerAnimation, DrawerMode, DrawerPosition, DrawerSize, DropdownSize, EaErrorMessages, EaSize, EaValidationErrorKey, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiLocaleBundle, EagamiLocaleMeta, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, ModePalette, ModeSurfaces, MultiSelectSize, NumberInputSize, 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, TimelineAlign, TimelineItem, TimelineItemColor, TimelineOrientation, TimelineSize, Toast, ToastOptions, ToastPosition, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
|
|
7351
|
+
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, AndroidIconComponent, AngularIconComponent, AnthropicIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeCheckIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BellRingIconComponent, BitcoinIconComponent, BlueskyIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkCheckIconComponent, BookmarkIconComponent, BookmarkPlusIconComponent, BotIconComponent, BottleIconComponent, BoxIconComponent, BrainIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarCheckIconComponent, CalendarDaysIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardCheckIconComponent, ClipboardIconComponent, ClipboardListIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, CoinsIconComponent, 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_ALL_LOCALES, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_LOCALE_META, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FieldLabelComponent, FieldMessagesComponent, Figma2IconComponent, FigmaIconComponent, FileCheckIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FilterXIconComponent, FingerprintIconComponent, FlagIconComponent, FlameIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderOpenIconComponent, FolderPlusIconComponent, FormFieldComponent, FramerIconComponent, FrownIconComponent, GaugeIconComponent, GeminiIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitCompareIconComponent, 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, KeyboardIconComponent, KubernetesIconComponent, LampIconComponent, LanguagesIconComponent, LayersIconComponent, LayoutIconComponent, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailCheckIconComponent, 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, NodejsIconComponent, NotionIconComponent, NpmIconComponent, NumberInputComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PinterestIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, PythonIconComponent, QrCodeIconComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, ReactIconComponent, ReceiptIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RedoIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RocketIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScanIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldCheckIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShopifyIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SnowflakeIconComponent, SoccerBallIconComponent, SparklesIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SvelteIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, TimelineComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UndoIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, VueIconComponent, WCAG_AA, WalletIconComponent, WandIconComponent, WatchIconComponent, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, WordpressIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, ar, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, he, hexToOklch, hi, iconDisplayName, is, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, ru, uk, validatePalette, visibleNodeIds, walkTree, zhCN };
|
|
7352
|
+
export type { AccordionHeadingLevel, AccordionSize, AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, BreadcrumbsSize, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSize, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, DrawerAnimation, DrawerMode, DrawerPosition, DrawerSize, DropdownSize, EaErrorMessages, EaSize, EaValidationErrorKey, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiLocaleBundle, EagamiLocaleLoader, EagamiLocaleMeta, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, FormFieldSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, MenuSize, ModePalette, ModeSurfaces, MultiSelectSize, NumberInputSize, 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, TimelineAlign, TimelineItem, TimelineItemColor, TimelineOrientation, TimelineSize, Toast, ToastOptions, ToastPosition, ToastSize, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
|