@eagami/ui 2.10.0 → 2.12.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 +235 -48
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/_tooltip.scss +3 -0
- package/src/styles/tokens/_colors.scss +18 -3
- package/types/eagami-ui.d.ts +49 -9
package/package.json
CHANGED
package/src/styles/_tooltip.scss
CHANGED
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
font-weight: var(--font-weight-medium);
|
|
11
11
|
line-height: var(--line-height-normal);
|
|
12
12
|
white-space: nowrap;
|
|
13
|
+
// When a max-width switches the bubble to multi-line, break long unbreakable
|
|
14
|
+
// strings (URLs, tokens) instead of letting them overflow the bubble.
|
|
15
|
+
overflow-wrap: anywhere;
|
|
13
16
|
border-radius: var(--radius-md);
|
|
14
17
|
background-color: var(--color-neutral-800);
|
|
15
18
|
color: var(--color-neutral-0);
|
|
@@ -77,10 +77,18 @@
|
|
|
77
77
|
--color-bg-base: var(--color-neutral-0);
|
|
78
78
|
--color-bg-subtle: var(--color-neutral-50);
|
|
79
79
|
--color-bg-stripe: var(--color-neutral-50);
|
|
80
|
+
// Zebra-stripe fill for table rows: a mid-tone between the base row and the
|
|
81
|
+
// header tint so striped rows read as lighter than the header, not identical to
|
|
82
|
+
// it. Dark mode overrides the ratio to stay equally subtle.
|
|
83
|
+
--color-bg-stripe-subtle: color-mix(
|
|
84
|
+
in srgb,
|
|
85
|
+
var(--color-bg-base) 30%,
|
|
86
|
+
var(--color-bg-stripe)
|
|
87
|
+
);
|
|
80
88
|
--color-bg-muted: var(--color-neutral-100);
|
|
81
|
-
//
|
|
82
|
-
//
|
|
83
|
-
--color-bg-emphasis: var(--color-neutral-
|
|
89
|
+
// Soft neutral fill for placeholder surfaces (e.g. avatar initials) when no
|
|
90
|
+
// image is set; light enough to sit gently on a white page
|
|
91
|
+
--color-bg-emphasis: var(--color-neutral-100);
|
|
84
92
|
--color-bg-elevated: var(--color-neutral-0);
|
|
85
93
|
--color-bg-overlay: rgba(0, 0, 0, 0.5);
|
|
86
94
|
|
|
@@ -169,6 +177,13 @@
|
|
|
169
177
|
--color-bg-base: var(--color-neutral-800);
|
|
170
178
|
--color-bg-subtle: var(--color-neutral-700);
|
|
171
179
|
--color-bg-stripe: var(--color-neutral-900);
|
|
180
|
+
// The dark base-to-stripe gap reads stronger than the light one, so weight the
|
|
181
|
+
// stripe mix toward the base row to keep zebra striping subtle.
|
|
182
|
+
--color-bg-stripe-subtle: color-mix(
|
|
183
|
+
in srgb,
|
|
184
|
+
var(--color-bg-base) 62.5%,
|
|
185
|
+
var(--color-bg-stripe)
|
|
186
|
+
);
|
|
172
187
|
--color-bg-elevated: var(--color-neutral-700);
|
|
173
188
|
// Opaque muted surface for static fills (disabled fields, slider/progress
|
|
174
189
|
// tracks, skeletons). Hover/active fills route through the translucent
|
package/types/eagami-ui.d.ts
CHANGED
|
@@ -117,7 +117,7 @@ interface EagamiMessages {
|
|
|
117
117
|
paginator: {
|
|
118
118
|
label: string;
|
|
119
119
|
rowsPerPage: string;
|
|
120
|
-
range: (start:
|
|
120
|
+
range: (start: string, end: string, total: string) => string;
|
|
121
121
|
previousPage: string;
|
|
122
122
|
nextPage: string;
|
|
123
123
|
};
|
|
@@ -1272,6 +1272,7 @@ declare class CodeInputComponent implements ControlValueAccessor {
|
|
|
1272
1272
|
readonly digitEls: _angular_core.Signal<readonly ElementRef<HTMLInputElement>[]>;
|
|
1273
1273
|
protected readonly i18n: EagamiI18nService;
|
|
1274
1274
|
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
1275
|
+
/** Placeholder text spread one character per cell (cell i shows character i). */
|
|
1275
1276
|
readonly placeholder: _angular_core.InputSignal<string>;
|
|
1276
1277
|
readonly length: _angular_core.InputSignal<number>;
|
|
1277
1278
|
readonly size: _angular_core.InputSignal<EaSize>;
|
|
@@ -1280,6 +1281,8 @@ declare class CodeInputComponent implements ControlValueAccessor {
|
|
|
1280
1281
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
1281
1282
|
readonly readonly: _angular_core.InputSignal<boolean>;
|
|
1282
1283
|
readonly required: _angular_core.InputSignal<boolean>;
|
|
1284
|
+
/** Allow any non-whitespace character; when false (default) only digits are accepted. */
|
|
1285
|
+
readonly allowAllChars: _angular_core.InputSignal<boolean>;
|
|
1283
1286
|
readonly id: _angular_core.InputSignal<string>;
|
|
1284
1287
|
readonly value: _angular_core.ModelSignal<string>;
|
|
1285
1288
|
readonly focusedIndex: _angular_core.WritableSignal<number>;
|
|
@@ -1293,6 +1296,7 @@ declare class CodeInputComponent implements ControlValueAccessor {
|
|
|
1293
1296
|
readonly showError: _angular_core.Signal<boolean>;
|
|
1294
1297
|
readonly showHint: _angular_core.Signal<boolean>;
|
|
1295
1298
|
readonly digits: _angular_core.Signal<string[]>;
|
|
1299
|
+
readonly placeholders: _angular_core.Signal<string[]>;
|
|
1296
1300
|
readonly indices: _angular_core.Signal<number[]>;
|
|
1297
1301
|
writeValue(val: string): void;
|
|
1298
1302
|
registerOnChange(fn: (value: string) => void): void;
|
|
@@ -1305,9 +1309,10 @@ declare class CodeInputComponent implements ControlValueAccessor {
|
|
|
1305
1309
|
handleBlur(): void;
|
|
1306
1310
|
/** Moves keyboard focus to the next empty digit (or the last one when full). */
|
|
1307
1311
|
focus(): void;
|
|
1312
|
+
private sanitize;
|
|
1308
1313
|
private focusDigit;
|
|
1309
1314
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CodeInputComponent, never>;
|
|
1310
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CodeInputComponent, "ea-code-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "length": { "alias": "length"; "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; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "completed": "completed"; }, never, never, true, never>;
|
|
1315
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CodeInputComponent, "ea-code-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "length": { "alias": "length"; "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; }; "allowAllChars": { "alias": "allowAllChars"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "completed": "completed"; }, never, never, true, never>;
|
|
1311
1316
|
}
|
|
1312
1317
|
|
|
1313
1318
|
/** Visual size of the date picker trigger. */
|
|
@@ -1504,6 +1509,8 @@ declare class DrawerComponent {
|
|
|
1504
1509
|
readonly size: _angular_core.InputSignal<EaWidth>;
|
|
1505
1510
|
readonly closeOnBackdrop: _angular_core.InputSignal<boolean>;
|
|
1506
1511
|
readonly closeOnEscape: _angular_core.InputSignal<boolean>;
|
|
1512
|
+
/** Slide the panel in from its edge when the drawer opens. */
|
|
1513
|
+
readonly animated: _angular_core.InputSignal<boolean>;
|
|
1507
1514
|
readonly showClose: _angular_core.InputSignal<boolean>;
|
|
1508
1515
|
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
1509
1516
|
readonly id: _angular_core.InputSignal<string>;
|
|
@@ -1521,8 +1528,9 @@ declare class DrawerComponent {
|
|
|
1521
1528
|
handleClose(): void;
|
|
1522
1529
|
handleBackdropClick(event: MouseEvent): void;
|
|
1523
1530
|
handleCancel(event: Event): void;
|
|
1531
|
+
onDialogClose(): void;
|
|
1524
1532
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DrawerComponent, never>;
|
|
1525
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawerComponent, "ea-drawer", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "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>;
|
|
1533
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawerComponent, "ea-drawer", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "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>;
|
|
1526
1534
|
}
|
|
1527
1535
|
|
|
1528
1536
|
/** Visual size of the dropdown trigger. */
|
|
@@ -1993,7 +2001,7 @@ declare class MultiSelectComponent implements ControlValueAccessor {
|
|
|
1993
2001
|
readonly searchable: _angular_core.InputSignal<boolean>;
|
|
1994
2002
|
/** Toggle the "Select all" row at the top of the option list. */
|
|
1995
2003
|
readonly selectAll: _angular_core.InputSignal<boolean>;
|
|
1996
|
-
/** Max number of chips shown inside the trigger; the rest collapse into a "+N more" pill. `0` removes the cap. */
|
|
2004
|
+
/** Max number of chips shown inside the trigger; the rest collapse into a "+N more" pill. `0` removes the cap so every chip shows and the row scrolls horizontally. */
|
|
1997
2005
|
readonly maxVisibleChips: _angular_core.InputSignal<number>;
|
|
1998
2006
|
readonly id: _angular_core.InputSignal<string>;
|
|
1999
2007
|
/** Selected option values, in the original options order. */
|
|
@@ -2082,6 +2090,8 @@ declare class MultiSelectComponent implements ControlValueAccessor {
|
|
|
2082
2090
|
|
|
2083
2091
|
/** Horizontal alignment of paginator controls within their container. */
|
|
2084
2092
|
type PaginatorAlign = 'left' | 'center' | 'right';
|
|
2093
|
+
/** Visual size of the paginator. */
|
|
2094
|
+
type PaginatorSize = EaSize;
|
|
2085
2095
|
/** Snapshot of the paginator's page and page size. */
|
|
2086
2096
|
interface PaginatorState {
|
|
2087
2097
|
page: number;
|
|
@@ -2100,6 +2110,9 @@ declare class PaginatorComponent {
|
|
|
2100
2110
|
readonly showPageSizeSelector: _angular_core.InputSignal<boolean>;
|
|
2101
2111
|
readonly showRangeLabel: _angular_core.InputSignal<boolean>;
|
|
2102
2112
|
readonly align: _angular_core.InputSignal<PaginatorAlign>;
|
|
2113
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
2114
|
+
/** Group thousands with commas in the range and page numbers. */
|
|
2115
|
+
readonly groupThousands: _angular_core.InputSignal<boolean>;
|
|
2103
2116
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2104
2117
|
readonly page: _angular_core.ModelSignal<number>;
|
|
2105
2118
|
readonly pageSize: _angular_core.ModelSignal<number>;
|
|
@@ -2110,6 +2123,8 @@ declare class PaginatorComponent {
|
|
|
2110
2123
|
readonly rangeEnd: _angular_core.Signal<number>;
|
|
2111
2124
|
readonly canGoPrev: _angular_core.Signal<boolean>;
|
|
2112
2125
|
readonly canGoNext: _angular_core.Signal<boolean>;
|
|
2126
|
+
/** Formats a number for display, grouping thousands with commas when enabled. */
|
|
2127
|
+
protected formatNumber(value: number): string;
|
|
2113
2128
|
readonly visiblePages: _angular_core.Signal<(number | "ellipsis")[]>;
|
|
2114
2129
|
/** Navigates to the given page, clamped into the valid range. */
|
|
2115
2130
|
goToPage(page: number): void;
|
|
@@ -2119,7 +2134,7 @@ declare class PaginatorComponent {
|
|
|
2119
2134
|
nextPage(): void;
|
|
2120
2135
|
onPageSizeChange(event: Event): void;
|
|
2121
2136
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PaginatorComponent, never>;
|
|
2122
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaginatorComponent, "ea-paginator", never, { "totalItems": { "alias": "totalItems"; "required": true; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "showPageSizeSelector": { "alias": "showPageSizeSelector"; "required": false; "isSignal": true; }; "showRangeLabel": { "alias": "showRangeLabel"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; }, { "page": "pageChange"; "pageSize": "pageSizeChange"; "changed": "changed"; }, never, never, true, never>;
|
|
2137
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaginatorComponent, "ea-paginator", never, { "totalItems": { "alias": "totalItems"; "required": true; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "showPageSizeSelector": { "alias": "showPageSizeSelector"; "required": false; "isSignal": true; }; "showRangeLabel": { "alias": "showRangeLabel"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "groupThousands": { "alias": "groupThousands"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; }, { "page": "pageChange"; "pageSize": "pageSizeChange"; "changed": "changed"; }, never, never, true, never>;
|
|
2123
2138
|
}
|
|
2124
2139
|
|
|
2125
2140
|
/**
|
|
@@ -3149,6 +3164,8 @@ declare class ToastService {
|
|
|
3149
3164
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ToastService>;
|
|
3150
3165
|
}
|
|
3151
3166
|
|
|
3167
|
+
/** Corner or edge of the viewport the toast stack is pinned to. */
|
|
3168
|
+
type ToastPosition = 'top-left' | 'top' | 'top-right' | 'bottom-left' | 'bottom' | 'bottom-right';
|
|
3152
3169
|
/**
|
|
3153
3170
|
* Outlet that renders the stack of active toasts produced by
|
|
3154
3171
|
* {@link ToastService}. Place a single `<ea-toast />` once in the root
|
|
@@ -3157,9 +3174,14 @@ declare class ToastService {
|
|
|
3157
3174
|
declare class ToastComponent {
|
|
3158
3175
|
protected readonly toastService: ToastService;
|
|
3159
3176
|
protected readonly i18n: EagamiI18nService;
|
|
3177
|
+
/** Viewport corner or edge the toast stack is pinned to. */
|
|
3178
|
+
readonly position: _angular_core.InputSignal<ToastPosition>;
|
|
3179
|
+
/** Show a dismiss button on each toast. */
|
|
3180
|
+
readonly clearable: _angular_core.InputSignal<boolean>;
|
|
3181
|
+
protected readonly containerClass: _angular_core.Signal<string>;
|
|
3160
3182
|
protected getRole(toast: Toast): 'alert' | 'status';
|
|
3161
3183
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
3162
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToastComponent, "ea-toast", never, {}, {}, never, never, true, never>;
|
|
3184
|
+
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>;
|
|
3163
3185
|
}
|
|
3164
3186
|
|
|
3165
3187
|
/** Placement of the tooltip relative to its host element. */
|
|
@@ -3174,6 +3196,8 @@ declare class TooltipDirective implements OnDestroy {
|
|
|
3174
3196
|
private readonly renderer;
|
|
3175
3197
|
readonly eaTooltip: _angular_core.InputSignal<string>;
|
|
3176
3198
|
readonly tooltipPosition: _angular_core.InputSignal<TooltipPosition>;
|
|
3199
|
+
/** Max width in px; the text wraps at this width. Clamped to a 50px floor. */
|
|
3200
|
+
readonly maxWidth: _angular_core.InputSignal<number | undefined>;
|
|
3177
3201
|
private tooltipEl;
|
|
3178
3202
|
private readonly tooltipId;
|
|
3179
3203
|
private readonly hoverMql;
|
|
@@ -3198,7 +3222,7 @@ declare class TooltipDirective implements OnDestroy {
|
|
|
3198
3222
|
private removeDescribedBy;
|
|
3199
3223
|
private positionTooltip;
|
|
3200
3224
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipDirective, never>;
|
|
3201
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TooltipDirective, "[eaTooltip]", never, { "eaTooltip": { "alias": "eaTooltip"; "required": true; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3225
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TooltipDirective, "[eaTooltip]", never, { "eaTooltip": { "alias": "eaTooltip"; "required": true; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3202
3226
|
}
|
|
3203
3227
|
|
|
3204
3228
|
/**
|
|
@@ -4684,6 +4708,22 @@ declare class GridIconComponent extends IconComponentBase {
|
|
|
4684
4708
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridIconComponent, "ea-icon-grid", never, {}, {}, never, never, true, never>;
|
|
4685
4709
|
}
|
|
4686
4710
|
|
|
4711
|
+
declare class HalfCircleIconComponent extends IconComponentBase {
|
|
4712
|
+
static readonly slug = "half-circle";
|
|
4713
|
+
static readonly category: IconCategory;
|
|
4714
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4715
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HalfCircleIconComponent, never>;
|
|
4716
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HalfCircleIconComponent, "ea-icon-half-circle", never, {}, {}, never, never, true, never>;
|
|
4717
|
+
}
|
|
4718
|
+
|
|
4719
|
+
declare class HalfHeartIconComponent extends IconComponentBase {
|
|
4720
|
+
static readonly slug = "half-heart";
|
|
4721
|
+
static readonly category: IconCategory;
|
|
4722
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4723
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HalfHeartIconComponent, never>;
|
|
4724
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HalfHeartIconComponent, "ea-icon-half-heart", never, {}, {}, never, never, true, never>;
|
|
4725
|
+
}
|
|
4726
|
+
|
|
4687
4727
|
declare class HardDriveIconComponent extends IconComponentBase {
|
|
4688
4728
|
static readonly slug = "hard-drive";
|
|
4689
4729
|
static readonly category: IconCategory;
|
|
@@ -6270,5 +6310,5 @@ declare class ZoomOutIconComponent extends IconComponentBase {
|
|
|
6270
6310
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZoomOutIconComponent, "ea-icon-zoom-out", never, {}, {}, never, never, true, never>;
|
|
6271
6311
|
}
|
|
6272
6312
|
|
|
6273
|
-
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkIconComponent, BottleIconComponent, BoxIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, ColorPickerComponent, ColumnsIconComponent, CommandIconComponent, CommandPaletteComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DEFAULT_PALETTE_ROLES, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideCircleIconComponent, DivideIconComponent, DivideSquareIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DribbbleIconComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_MESSAGES, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FieldLabelComponent, FieldMessagesComponent, Figma2IconComponent, FigmaIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FlagIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KubernetesIconComponent, LampIconComponent, LayersIconComponent, LayoutIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MultiSelectComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SoccerBallIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TimePickerComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WCAG_AA, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, computePopoverPosition, contrastRatio, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, hexToOklch, iconDisplayName, oklchToHex, pl, provideEagamiUi, relativeLuminance, validatePalette, visibleNodeIds, walkTree };
|
|
6274
|
-
export type { AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogSize, DialogWidth, DividerOrientation, DrawerPosition, DrawerSize, DrawerWidth, DropdownSize, EaSize, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EagamiWordmarkVariantLegacy, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, ModePalette, ModeSurfaces, MultiSelectSize, PaginatorAlign, PaginatorState, PaletteConfig, PaletteRoles, PaletteShade, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, RatingSize, RatingStarState, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, Toast, ToastOptions, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
|
|
6313
|
+
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, DialogSize, DialogWidth, DividerOrientation, DrawerPosition, DrawerSize, DrawerWidth, DropdownSize, EaSize, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EagamiWordmarkVariantLegacy, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, ModePalette, ModeSurfaces, MultiSelectSize, PaginatorAlign, 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 };
|