@eagami/ui 5.7.0 → 5.8.1
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 +49 -33
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +36 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.8.1",
|
|
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
|
@@ -590,6 +590,8 @@ type EaWidth = EaSize | 'full';
|
|
|
590
590
|
|
|
591
591
|
/** Heading level exposed by each item's header for assistive technology. */
|
|
592
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;
|
|
593
595
|
/**
|
|
594
596
|
* Container for expandable content sections. By default only one item can be
|
|
595
597
|
* open at a time; set `multi` to allow several to stay expanded together.
|
|
@@ -597,19 +599,22 @@ type AccordionHeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
|
597
599
|
*/
|
|
598
600
|
declare class AccordionComponent {
|
|
599
601
|
readonly multi: _angular_core.InputSignal<boolean>;
|
|
602
|
+
/** Visual size of the accordion; every item inherits it. */
|
|
603
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
600
604
|
/** Heading level (1-6) applied to every item's header wrapper. */
|
|
601
605
|
readonly headingLevel: _angular_core.InputSignal<AccordionHeadingLevel>;
|
|
602
606
|
readonly expandedItems: _angular_core.WritableSignal<Set<string>>;
|
|
603
607
|
toggle(value: string): void;
|
|
604
608
|
isExpanded(value: string): boolean;
|
|
605
609
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
606
|
-
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>;
|
|
607
611
|
}
|
|
608
612
|
|
|
609
613
|
/**
|
|
610
614
|
* Single expandable section within an `ea-accordion`. Each item exposes a
|
|
611
615
|
* header button with the supplied `label` and reveals its projected content
|
|
612
|
-
* when expanded.
|
|
616
|
+
* when expanded. Inherits its size from the parent accordion. Must be
|
|
617
|
+
* rendered inside an `ea-accordion`.
|
|
613
618
|
*/
|
|
614
619
|
declare class AccordionItemComponent {
|
|
615
620
|
private readonly accordion;
|
|
@@ -619,6 +624,7 @@ declare class AccordionItemComponent {
|
|
|
619
624
|
readonly id: _angular_core.InputSignal<string>;
|
|
620
625
|
readonly isExpanded: _angular_core.Signal<boolean>;
|
|
621
626
|
readonly headingLevel: _angular_core.Signal<_eagami_ui.AccordionHeadingLevel>;
|
|
627
|
+
readonly size: _angular_core.Signal<_eagami_ui.EaSize>;
|
|
622
628
|
toggle(): void;
|
|
623
629
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
|
|
624
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>;
|
|
@@ -933,6 +939,8 @@ declare class BadgeComponent {
|
|
|
933
939
|
|
|
934
940
|
/** Visual style of the separator rendered between breadcrumb items. */
|
|
935
941
|
type BreadcrumbsSeparator = 'chevron' | 'slash';
|
|
942
|
+
/** Visual size of the breadcrumb trail. */
|
|
943
|
+
type BreadcrumbsSize = EaSize;
|
|
936
944
|
/** Single entry in a breadcrumb trail. */
|
|
937
945
|
interface BreadcrumbItem {
|
|
938
946
|
label: string;
|
|
@@ -954,6 +962,8 @@ declare class BreadcrumbsComponent {
|
|
|
954
962
|
private readonly i18n;
|
|
955
963
|
readonly items: _angular_core.InputSignal<BreadcrumbItem[]>;
|
|
956
964
|
readonly separator: _angular_core.InputSignal<BreadcrumbsSeparator>;
|
|
965
|
+
/** Visual size of the breadcrumb trail. */
|
|
966
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
957
967
|
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
958
968
|
/** Fires when a non-disabled, non-final breadcrumb is activated. */
|
|
959
969
|
readonly clicked: _angular_core.OutputEmitterRef<BreadcrumbClickEvent>;
|
|
@@ -962,7 +972,7 @@ declare class BreadcrumbsComponent {
|
|
|
962
972
|
isLast(index: number): boolean;
|
|
963
973
|
handleClick(item: BreadcrumbItem, index: number, event: MouseEvent): void;
|
|
964
974
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbsComponent, never>;
|
|
965
|
-
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>;
|
|
966
976
|
}
|
|
967
977
|
|
|
968
978
|
/** Visual style of a button; drives colour and emphasis. */
|
|
@@ -1377,6 +1387,8 @@ declare class ColorPickerComponent implements ControlValueAccessor {
|
|
|
1377
1387
|
|
|
1378
1388
|
/** Vertical density preset for table rows and header cells. */
|
|
1379
1389
|
type DataTableDensity = 'compact' | 'comfortable' | 'spacious';
|
|
1390
|
+
/** Visual size of the table's text, paddings, and icons. */
|
|
1391
|
+
type DataTableSize = EaSize;
|
|
1380
1392
|
/** Sort direction; `null` means no sort is applied. */
|
|
1381
1393
|
type DataTableSortDirection = 'asc' | 'desc' | null;
|
|
1382
1394
|
/** Column definition for the data table, including optional cell/header templates. */
|
|
@@ -1415,6 +1427,8 @@ declare class DataTableComponent<T = Record<string, unknown>> {
|
|
|
1415
1427
|
readonly data: _angular_core.InputSignal<T[]>;
|
|
1416
1428
|
readonly trackBy: _angular_core.InputSignal<keyof T | undefined>;
|
|
1417
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>;
|
|
1418
1432
|
readonly stickyHeader: _angular_core.InputSignal<boolean>;
|
|
1419
1433
|
readonly striped: _angular_core.InputSignal<boolean>;
|
|
1420
1434
|
readonly hoverable: _angular_core.InputSignal<boolean>;
|
|
@@ -1455,7 +1469,7 @@ declare class DataTableComponent<T = Record<string, unknown>> {
|
|
|
1455
1469
|
onGridKeydown(event: KeyboardEvent): void;
|
|
1456
1470
|
private focusCell;
|
|
1457
1471
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataTableComponent<any>, never>;
|
|
1458
|
-
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>;
|
|
1459
1473
|
}
|
|
1460
1474
|
|
|
1461
1475
|
/** Visual size of each digit cell. */
|
|
@@ -1940,6 +1954,8 @@ declare class FieldMessagesComponent {
|
|
|
1940
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>;
|
|
1941
1955
|
}
|
|
1942
1956
|
|
|
1957
|
+
/** Visual size of the field (label, control text, spacing, and messages). */
|
|
1958
|
+
type FormFieldSize = EaSize;
|
|
1943
1959
|
/**
|
|
1944
1960
|
* Wraps a projected native control (`input`, `select`, or `textarea`) in the
|
|
1945
1961
|
* library's standard field chrome: a label with required marker, a hint, and
|
|
@@ -1965,6 +1981,8 @@ declare class FormFieldComponent {
|
|
|
1965
1981
|
readonly errorMessages: _angular_core.InputSignal<Partial<Record<string, string>> | undefined>;
|
|
1966
1982
|
/** Marks the field as required. */
|
|
1967
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>;
|
|
1968
1986
|
/** id seed for the label and message wiring; auto-generated when omitted. */
|
|
1969
1987
|
readonly id: _angular_core.InputSignal<string>;
|
|
1970
1988
|
private readonly ngControl;
|
|
@@ -1979,7 +1997,7 @@ declare class FormFieldComponent {
|
|
|
1979
1997
|
protected readonly showHint: _angular_core.Signal<boolean>;
|
|
1980
1998
|
constructor();
|
|
1981
1999
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
1982
|
-
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>;
|
|
1983
2001
|
}
|
|
1984
2002
|
|
|
1985
2003
|
/** Validator error keys the library ships built-in localized messages for. */
|
|
@@ -2213,6 +2231,8 @@ declare class InputComponent implements ControlValueAccessor {
|
|
|
2213
2231
|
|
|
2214
2232
|
/** Placement of the menu list relative to its trigger. */
|
|
2215
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;
|
|
2216
2236
|
/**
|
|
2217
2237
|
* Popup action menu attached to any focusable element via the
|
|
2218
2238
|
* `[eaMenuTrigger]` directive. Supports keyboard navigation
|
|
@@ -2225,6 +2245,8 @@ declare class MenuComponent {
|
|
|
2225
2245
|
private readonly i18n;
|
|
2226
2246
|
private readonly listEl;
|
|
2227
2247
|
readonly placement: _angular_core.InputSignal<MenuPlacement>;
|
|
2248
|
+
/** Visual size of the menu; every item inherits it. */
|
|
2249
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
2228
2250
|
/** Max height of the scrollable list as a CSS length; tall menus scroll past it. */
|
|
2229
2251
|
readonly maxHeight: _angular_core.InputSignal<string>;
|
|
2230
2252
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -2269,7 +2291,7 @@ declare class MenuComponent {
|
|
|
2269
2291
|
onKeydown(event: KeyboardEvent): void;
|
|
2270
2292
|
onEscape(): void;
|
|
2271
2293
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
2272
|
-
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>;
|
|
2273
2295
|
}
|
|
2274
2296
|
|
|
2275
2297
|
/** Visual style of a menu item; `danger` for destructive actions. */
|
|
@@ -2277,7 +2299,8 @@ type MenuItemVariant = 'default' | 'danger';
|
|
|
2277
2299
|
/**
|
|
2278
2300
|
* Selectable row inside an `ea-menu`. Supports leading icons via the `icon`
|
|
2279
2301
|
* content slot, a disabled state, and a `danger` variant for destructive
|
|
2280
|
-
* actions.
|
|
2302
|
+
* actions. Inherits its size from the parent menu, and activating an item
|
|
2303
|
+
* closes that menu.
|
|
2281
2304
|
*/
|
|
2282
2305
|
declare class MenuItemComponent {
|
|
2283
2306
|
private readonly menu;
|
|
@@ -3700,6 +3723,8 @@ declare class ToastService {
|
|
|
3700
3723
|
|
|
3701
3724
|
/** Corner or edge of the viewport the toast stack is pinned to. */
|
|
3702
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;
|
|
3703
3728
|
/**
|
|
3704
3729
|
* Outlet that renders the stack of active toasts produced by
|
|
3705
3730
|
* {@link ToastService}. Place a single `<ea-toast />` once in the root
|
|
@@ -3710,11 +3735,13 @@ declare class ToastComponent {
|
|
|
3710
3735
|
protected readonly i18n: EagamiI18nService;
|
|
3711
3736
|
/** Viewport corner or edge the toast stack is pinned to. */
|
|
3712
3737
|
readonly position: _angular_core.InputSignal<ToastPosition>;
|
|
3738
|
+
/** Visual size applied to every toast in the stack. */
|
|
3739
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
3713
3740
|
/** Show a dismiss button on each toast. */
|
|
3714
3741
|
readonly clearable: _angular_core.InputSignal<boolean>;
|
|
3715
3742
|
protected readonly containerClass: _angular_core.Signal<string>;
|
|
3716
3743
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
3717
|
-
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>;
|
|
3718
3745
|
}
|
|
3719
3746
|
|
|
3720
3747
|
/** Placement of the tooltip relative to its host element. */
|
|
@@ -7322,4 +7349,4 @@ declare class WordpressIconComponent extends IconComponentBase {
|
|
|
7322
7349
|
}
|
|
7323
7350
|
|
|
7324
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 };
|
|
7325
|
-
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, EagamiLocaleLoader, 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 };
|
|
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 };
|