@eagami/ui 5.0.1 → 5.2.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 +5 -0
- package/fesm2022/eagami-ui.mjs +689 -122
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/_form-field.scss +55 -0
- package/src/styles/_mixins.scss +16 -0
- package/src/styles/eagami-ui.scss +1 -0
- package/types/eagami-ui.d.ts +138 -14
package/types/eagami-ui.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
2
|
import { InjectionToken, EnvironmentProviders, Signal, Type, OnDestroy, ElementRef, TemplateRef, OnInit } from '@angular/core';
|
|
3
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
4
3
|
import * as _eagami_ui from '@eagami/ui';
|
|
4
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* BCP 47 locale tags supported out of the box. Consumers select one of these
|
|
@@ -46,6 +46,7 @@ interface EagamiMessages {
|
|
|
46
46
|
upload: string;
|
|
47
47
|
dropzone: string;
|
|
48
48
|
canvas: string;
|
|
49
|
+
canvasInstructions: string;
|
|
49
50
|
change: string;
|
|
50
51
|
revert: string;
|
|
51
52
|
zoomOut: string;
|
|
@@ -73,6 +74,7 @@ interface EagamiMessages {
|
|
|
73
74
|
clear: string;
|
|
74
75
|
hue: string;
|
|
75
76
|
saturationAndValue: string;
|
|
77
|
+
saturationAndValueStatus: (saturation: number, value: number) => string;
|
|
76
78
|
alpha: string;
|
|
77
79
|
eyedropper: string;
|
|
78
80
|
presets: string;
|
|
@@ -95,6 +97,7 @@ interface EagamiMessages {
|
|
|
95
97
|
};
|
|
96
98
|
datePicker: {
|
|
97
99
|
placeholder: string;
|
|
100
|
+
dialogLabel: string;
|
|
98
101
|
clear: string;
|
|
99
102
|
previousYear: string;
|
|
100
103
|
previousMonth: string;
|
|
@@ -165,6 +168,10 @@ interface EagamiMessages {
|
|
|
165
168
|
progressBar: {
|
|
166
169
|
label: string;
|
|
167
170
|
};
|
|
171
|
+
rangeSlider: {
|
|
172
|
+
lowThumbLabel: string;
|
|
173
|
+
highThumbLabel: string;
|
|
174
|
+
};
|
|
168
175
|
rating: {
|
|
169
176
|
label: string;
|
|
170
177
|
valueLabel: (value: number, max: number) => string;
|
|
@@ -174,13 +181,16 @@ interface EagamiMessages {
|
|
|
174
181
|
label: string;
|
|
175
182
|
};
|
|
176
183
|
stepper: {
|
|
184
|
+
stepsLabel: string;
|
|
177
185
|
optional: string;
|
|
186
|
+
stepCompleted: string;
|
|
178
187
|
};
|
|
179
188
|
tag: {
|
|
180
189
|
remove: string;
|
|
181
190
|
};
|
|
182
191
|
timePicker: {
|
|
183
192
|
placeholder: string;
|
|
193
|
+
dialogLabel: string;
|
|
184
194
|
clear: string;
|
|
185
195
|
hoursLabel: string;
|
|
186
196
|
minutesLabel: string;
|
|
@@ -527,6 +537,8 @@ type EaSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
|
527
537
|
*/
|
|
528
538
|
type EaWidth = EaSize | 'full';
|
|
529
539
|
|
|
540
|
+
/** Heading level exposed by each item's header for assistive technology. */
|
|
541
|
+
type AccordionHeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
530
542
|
/**
|
|
531
543
|
* Container for expandable content sections. By default only one item can be
|
|
532
544
|
* open at a time; set `multi` to allow several to stay expanded together.
|
|
@@ -534,11 +546,13 @@ type EaWidth = EaSize | 'full';
|
|
|
534
546
|
*/
|
|
535
547
|
declare class AccordionComponent {
|
|
536
548
|
readonly multi: _angular_core.InputSignal<boolean>;
|
|
549
|
+
/** Heading level (1-6) applied to every item's header wrapper. */
|
|
550
|
+
readonly headingLevel: _angular_core.InputSignal<AccordionHeadingLevel>;
|
|
537
551
|
readonly expandedItems: _angular_core.WritableSignal<Set<string>>;
|
|
538
552
|
toggle(value: string): void;
|
|
539
553
|
isExpanded(value: string): boolean;
|
|
540
554
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
541
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionComponent, "ea-accordion", never, { "multi": { "alias": "multi"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
555
|
+
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>;
|
|
542
556
|
}
|
|
543
557
|
|
|
544
558
|
/**
|
|
@@ -553,6 +567,7 @@ declare class AccordionItemComponent {
|
|
|
553
567
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
554
568
|
readonly id: _angular_core.InputSignal<string>;
|
|
555
569
|
readonly isExpanded: _angular_core.Signal<boolean>;
|
|
570
|
+
readonly headingLevel: _angular_core.Signal<_eagami_ui.AccordionHeadingLevel>;
|
|
556
571
|
toggle(): void;
|
|
557
572
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
|
|
558
573
|
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>;
|
|
@@ -609,6 +624,8 @@ declare class AutocompleteComponent implements ControlValueAccessor {
|
|
|
609
624
|
private readonly inputEl;
|
|
610
625
|
private readonly i18n;
|
|
611
626
|
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
627
|
+
/** Accessible name for the input and suggestion list when no visible label is provided. */
|
|
628
|
+
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
612
629
|
readonly placeholder: _angular_core.InputSignal<string>;
|
|
613
630
|
readonly options: _angular_core.InputSignal<SelectOption[]>;
|
|
614
631
|
readonly size: _angular_core.InputSignal<EaSize>;
|
|
@@ -675,7 +692,7 @@ declare class AutocompleteComponent implements ControlValueAccessor {
|
|
|
675
692
|
focus(): void;
|
|
676
693
|
private moveFocus;
|
|
677
694
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
|
|
678
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AutocompleteComponent, "ea-autocomplete", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "maxResults": { "alias": "maxResults"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "selected": "selected"; "changed": "changed"; "focused": "focused"; "blurred": "blurred"; }, never, ["[slot=prefix]", "[slot=suffix]"], true, never>;
|
|
695
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AutocompleteComponent, "ea-autocomplete", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "maxResults": { "alias": "maxResults"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "selected": "selected"; "changed": "changed"; "focused": "focused"; "blurred": "blurred"; }, never, ["[slot=prefix]", "[slot=suffix]"], true, never>;
|
|
679
696
|
}
|
|
680
697
|
|
|
681
698
|
/** Crop mask shape applied to the exported image. */
|
|
@@ -721,7 +738,9 @@ declare class AvatarEditorComponent implements OnDestroy {
|
|
|
721
738
|
readonly errored: _angular_core.OutputEmitterRef<string>;
|
|
722
739
|
/** Fires whenever the user pans or zooms the image; useful for persisting in-progress crops. */
|
|
723
740
|
readonly cropStateChanged: _angular_core.OutputEmitterRef<AvatarEditorCropState>;
|
|
741
|
+
readonly instructionsId: string;
|
|
724
742
|
readonly hasImage: _angular_core.WritableSignal<boolean>;
|
|
743
|
+
readonly lastError: _angular_core.WritableSignal<string | null>;
|
|
725
744
|
readonly isDragOver: _angular_core.WritableSignal<boolean>;
|
|
726
745
|
readonly isAtOriginal: _angular_core.WritableSignal<boolean>;
|
|
727
746
|
readonly isLoading: _angular_core.Signal<boolean>;
|
|
@@ -826,6 +845,7 @@ declare class AvatarComponent {
|
|
|
826
845
|
readonly hostClasses: _angular_core.Signal<{
|
|
827
846
|
[x: string]: boolean;
|
|
828
847
|
}>;
|
|
848
|
+
readonly accessibleName: _angular_core.Signal<string | null>;
|
|
829
849
|
readonly showImage: _angular_core.Signal<boolean>;
|
|
830
850
|
readonly showInitials: _angular_core.Signal<boolean>;
|
|
831
851
|
readonly showFallback: _angular_core.Signal<boolean>;
|
|
@@ -1073,6 +1093,7 @@ declare class CommandPaletteComponent {
|
|
|
1073
1093
|
readonly emptyMessage: _angular_core.InputSignal<string>;
|
|
1074
1094
|
readonly execute: _angular_core.OutputEmitterRef<CommandPaletteItem<unknown>>;
|
|
1075
1095
|
protected readonly messages: _angular_core.Signal<_eagami_ui.EagamiMessages>;
|
|
1096
|
+
protected readonly resolvedPlaceholder: _angular_core.Signal<string>;
|
|
1076
1097
|
private readonly dialogEl;
|
|
1077
1098
|
private readonly searchEl;
|
|
1078
1099
|
protected readonly query: _angular_core.WritableSignal<string>;
|
|
@@ -1218,8 +1239,12 @@ declare class ColorPickerComponent implements ControlValueAccessor {
|
|
|
1218
1239
|
}>;
|
|
1219
1240
|
/** Uppercase label for the format toggle, e.g. `HEX`. */
|
|
1220
1241
|
readonly formatLabel: _angular_core.Signal<string>;
|
|
1242
|
+
/** Accessible name for the format toggle; includes the visible format text. */
|
|
1243
|
+
readonly formatToggleLabel: _angular_core.Signal<string>;
|
|
1221
1244
|
readonly displayValue: _angular_core.Signal<string>;
|
|
1222
1245
|
readonly resolvedPlaceholder: _angular_core.Signal<string>;
|
|
1246
|
+
readonly popoverId: _angular_core.Signal<string>;
|
|
1247
|
+
readonly triggerLabelledBy: _angular_core.Signal<string | null>;
|
|
1223
1248
|
readonly triggerClasses: _angular_core.Signal<{
|
|
1224
1249
|
[x: string]: boolean;
|
|
1225
1250
|
'ea-color-picker__trigger--error': boolean;
|
|
@@ -1252,6 +1277,8 @@ declare class ColorPickerComponent implements ControlValueAccessor {
|
|
|
1252
1277
|
readonly alphaPointerLeft: _angular_core.Signal<string>;
|
|
1253
1278
|
readonly hueRounded: _angular_core.Signal<number>;
|
|
1254
1279
|
readonly alphaPercentRounded: _angular_core.Signal<number>;
|
|
1280
|
+
readonly satPercent: _angular_core.Signal<number>;
|
|
1281
|
+
readonly valPercent: _angular_core.Signal<number>;
|
|
1255
1282
|
onSvPointerDown(event: PointerEvent): void;
|
|
1256
1283
|
onSvPointerMove(event: PointerEvent): void;
|
|
1257
1284
|
onSvPointerUp(event: PointerEvent): void;
|
|
@@ -1366,7 +1393,8 @@ declare class DataTableComponent<T = Record<string, unknown>> {
|
|
|
1366
1393
|
getCellValue(row: T, key: string): unknown;
|
|
1367
1394
|
onHeaderClick(col: DataTableColumn<T>): void;
|
|
1368
1395
|
trackByFn(_index: number, item: T): unknown;
|
|
1369
|
-
headerTabindex(
|
|
1396
|
+
headerTabindex(colIndex: number): number | null;
|
|
1397
|
+
onHeaderKeydown(event: Event, col: DataTableColumn<T>): void;
|
|
1370
1398
|
bodyCellTabindex(row: number, colIndex: number): number | null;
|
|
1371
1399
|
rowTabindex(): number | null;
|
|
1372
1400
|
onRowActivate(row: T, event?: Event): void;
|
|
@@ -1508,6 +1536,8 @@ declare class DatePickerComponent implements ControlValueAccessor {
|
|
|
1508
1536
|
private readonly intlLocalizesEffectiveLocale;
|
|
1509
1537
|
/** Placeholder text: explicit `placeholder` input, else the active locale's default. */
|
|
1510
1538
|
readonly resolvedPlaceholder: _angular_core.Signal<string>;
|
|
1539
|
+
readonly dialogId: _angular_core.Signal<string>;
|
|
1540
|
+
readonly triggerLabelledBy: _angular_core.Signal<string | null>;
|
|
1511
1541
|
readonly triggerClasses: _angular_core.Signal<{
|
|
1512
1542
|
[x: string]: boolean;
|
|
1513
1543
|
'ea-date-picker__trigger--error': boolean;
|
|
@@ -1742,8 +1772,11 @@ declare class DropdownComponent implements ControlValueAccessor {
|
|
|
1742
1772
|
readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
1743
1773
|
readonly focusedIndex: _angular_core.WritableSignal<number>;
|
|
1744
1774
|
private readonly _formDisabled;
|
|
1775
|
+
private typeaheadQuery;
|
|
1776
|
+
private typeaheadTimer;
|
|
1745
1777
|
private onChange;
|
|
1746
1778
|
private onTouched;
|
|
1779
|
+
constructor();
|
|
1747
1780
|
readonly isDisabled: _angular_core.Signal<boolean>;
|
|
1748
1781
|
private readonly errorState;
|
|
1749
1782
|
readonly errorText: _angular_core.Signal<string | null>;
|
|
@@ -1753,6 +1786,7 @@ declare class DropdownComponent implements ControlValueAccessor {
|
|
|
1753
1786
|
readonly selectedLabel: _angular_core.Signal<string>;
|
|
1754
1787
|
/** Placeholder text, falling back to the active locale's translation. */
|
|
1755
1788
|
readonly resolvedPlaceholder: _angular_core.Signal<string>;
|
|
1789
|
+
readonly triggerLabelledBy: _angular_core.Signal<string | null>;
|
|
1756
1790
|
readonly triggerClasses: _angular_core.Signal<{
|
|
1757
1791
|
[x: string]: boolean;
|
|
1758
1792
|
'ea-dropdown__trigger--error': boolean;
|
|
@@ -1777,6 +1811,9 @@ declare class DropdownComponent implements ControlValueAccessor {
|
|
|
1777
1811
|
/** Called by `<ea-popover>` when the user clicks outside the dropdown. */
|
|
1778
1812
|
onPopoverCloseRequested(): void;
|
|
1779
1813
|
handleKeydown(event: KeyboardEvent): void;
|
|
1814
|
+
private selectFocusedOrOpen;
|
|
1815
|
+
private focusEdge;
|
|
1816
|
+
private handleTypeahead;
|
|
1780
1817
|
private moveFocus;
|
|
1781
1818
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
1782
1819
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropdownComponent, "ea-dropdown", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
|
|
@@ -1850,6 +1887,48 @@ declare class FieldMessagesComponent {
|
|
|
1850
1887
|
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>;
|
|
1851
1888
|
}
|
|
1852
1889
|
|
|
1890
|
+
/**
|
|
1891
|
+
* Wraps a projected native control (`input`, `select`, or `textarea`) in the
|
|
1892
|
+
* library's standard field chrome: a label with required marker, a hint, and
|
|
1893
|
+
* error messages, including localized validation errors auto-derived from a
|
|
1894
|
+
* bound reactive or template-driven control. The label's `for` and the
|
|
1895
|
+
* control's `aria-describedby`, `aria-invalid`, and `aria-required` are wired
|
|
1896
|
+
* automatically. The eagami form components render this chrome themselves; use
|
|
1897
|
+
* this wrapper so native or custom controls read as part of the same form.
|
|
1898
|
+
*
|
|
1899
|
+
* The label and aria wiring attach in the browser after render, since the
|
|
1900
|
+
* projected control can't be reached before it exists; the server ships the
|
|
1901
|
+
* plain markup and the associations complete on hydration.
|
|
1902
|
+
*/
|
|
1903
|
+
declare class FormFieldComponent {
|
|
1904
|
+
private readonly host;
|
|
1905
|
+
/** Text label rendered above the control. */
|
|
1906
|
+
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
1907
|
+
/** Helper text shown below the control; hidden while an error is showing. */
|
|
1908
|
+
readonly hint: _angular_core.InputSignal<string | undefined>;
|
|
1909
|
+
/** Error message shown below the control; replaces the hint and flags the field invalid. */
|
|
1910
|
+
readonly errorMsg: _angular_core.InputSignal<string | undefined>;
|
|
1911
|
+
/** Per-validator-key message overrides for the projected form control (e.g. `{ required: '...' }`). */
|
|
1912
|
+
readonly errorMessages: _angular_core.InputSignal<Partial<Record<string, string>> | undefined>;
|
|
1913
|
+
/** Marks the field as required. */
|
|
1914
|
+
readonly required: _angular_core.InputSignal<boolean>;
|
|
1915
|
+
/** id seed for the label and message wiring; auto-generated when omitted. */
|
|
1916
|
+
readonly id: _angular_core.InputSignal<string>;
|
|
1917
|
+
private readonly ngControl;
|
|
1918
|
+
private readonly rendered;
|
|
1919
|
+
private readonly controlEl;
|
|
1920
|
+
private baseDescribedBy;
|
|
1921
|
+
protected readonly controlId: _angular_core.Signal<string | undefined>;
|
|
1922
|
+
private readonly boundControl;
|
|
1923
|
+
private readonly errorState;
|
|
1924
|
+
protected readonly errorText: _angular_core.Signal<string | null>;
|
|
1925
|
+
protected readonly hasError: _angular_core.Signal<boolean>;
|
|
1926
|
+
protected readonly showHint: _angular_core.Signal<boolean>;
|
|
1927
|
+
constructor();
|
|
1928
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
1929
|
+
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>;
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1853
1932
|
/** Validator error keys the library ships built-in localized messages for. */
|
|
1854
1933
|
type EaValidationErrorKey = 'required' | 'email' | 'min' | 'max' | 'minlength' | 'maxlength' | 'pattern';
|
|
1855
1934
|
/**
|
|
@@ -2070,8 +2149,9 @@ declare class InputComponent implements ControlValueAccessor {
|
|
|
2070
2149
|
private clampToBounds;
|
|
2071
2150
|
/** Toggles the password reveal state for `type="password"` inputs. */
|
|
2072
2151
|
togglePasswordVisibility(): void;
|
|
2152
|
+
protected onClearMousedown(event: MouseEvent): void;
|
|
2073
2153
|
/** Clear the current value and restore focus to the input. */
|
|
2074
|
-
clear(
|
|
2154
|
+
clear(): void;
|
|
2075
2155
|
/** Moves keyboard focus to the underlying native input element. */
|
|
2076
2156
|
focus(): void;
|
|
2077
2157
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputComponent, never>;
|
|
@@ -2106,6 +2186,8 @@ declare class MenuComponent {
|
|
|
2106
2186
|
readonly closed: _angular_core.OutputEmitterRef<void>;
|
|
2107
2187
|
/** Trigger element currently anchoring the menu. Signal-typed so `<ea-popover>` reacts when it changes. */
|
|
2108
2188
|
protected readonly triggerEl: _angular_core.WritableSignal<HTMLElement | undefined>;
|
|
2189
|
+
readonly activeItemId: _angular_core.WritableSignal<string | null>;
|
|
2190
|
+
constructor();
|
|
2109
2191
|
/** Toggles the menu open state, anchoring it to the given trigger element. */
|
|
2110
2192
|
toggleAt(triggerEl: HTMLElement): void;
|
|
2111
2193
|
/** Opens the menu anchored to the given trigger element and focuses the first item. */
|
|
@@ -2130,6 +2212,7 @@ declare class MenuComponent {
|
|
|
2130
2212
|
* and restoring focus on close.
|
|
2131
2213
|
*/
|
|
2132
2214
|
private focusFirstItem;
|
|
2215
|
+
private focusItem;
|
|
2133
2216
|
onKeydown(event: KeyboardEvent): void;
|
|
2134
2217
|
onEscape(): void;
|
|
2135
2218
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
@@ -2145,6 +2228,8 @@ type MenuItemVariant = 'default' | 'danger';
|
|
|
2145
2228
|
*/
|
|
2146
2229
|
declare class MenuItemComponent {
|
|
2147
2230
|
private readonly menu;
|
|
2231
|
+
protected readonly itemId: string;
|
|
2232
|
+
protected readonly tabIndex: _angular_core.Signal<0 | -1>;
|
|
2148
2233
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2149
2234
|
readonly variant: _angular_core.InputSignal<MenuItemVariant>;
|
|
2150
2235
|
/** Fires when the item is activated; the parent menu closes immediately afterwards. */
|
|
@@ -2184,6 +2269,8 @@ declare class MultiSelectComponent implements ControlValueAccessor {
|
|
|
2184
2269
|
protected readonly i18n: EagamiI18nService;
|
|
2185
2270
|
private readonly injector;
|
|
2186
2271
|
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
2272
|
+
/** Accessible name for the combobox when no visible `label` is set. */
|
|
2273
|
+
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
2187
2274
|
readonly placeholder: _angular_core.InputSignal<string | undefined>;
|
|
2188
2275
|
readonly searchPlaceholder: _angular_core.InputSignal<string | undefined>;
|
|
2189
2276
|
readonly options: _angular_core.InputSignal<readonly SelectOption[]>;
|
|
@@ -2226,6 +2313,9 @@ declare class MultiSelectComponent implements ControlValueAccessor {
|
|
|
2226
2313
|
/** Currently selected options, ordered to match the input `options`. */
|
|
2227
2314
|
readonly selectedOptions: _angular_core.Signal<readonly SelectOption[]>;
|
|
2228
2315
|
readonly hasValue: _angular_core.Signal<boolean>;
|
|
2316
|
+
readonly listboxId: _angular_core.Signal<string>;
|
|
2317
|
+
/** Id of the keyboard-focused option, for `aria-activedescendant`. */
|
|
2318
|
+
readonly activeOptionId: _angular_core.Signal<string | null>;
|
|
2229
2319
|
/** Chips visible inside the trigger, capped by `maxVisibleChips`. */
|
|
2230
2320
|
readonly visibleChips: _angular_core.Signal<readonly SelectOption[]>;
|
|
2231
2321
|
/** Count behind the "+N more" pill, or `0` when all chips fit. */
|
|
@@ -2257,6 +2347,7 @@ declare class MultiSelectComponent implements ControlValueAccessor {
|
|
|
2257
2347
|
onPopoverCloseRequested(): void;
|
|
2258
2348
|
/** Toggle one option's membership in the selection. */
|
|
2259
2349
|
toggleOption(opt: SelectOption): void;
|
|
2350
|
+
protected onOptionClick(opt: SelectOption, index: number): void;
|
|
2260
2351
|
/**
|
|
2261
2352
|
* Remove a single chip from the trigger. `<ea-tag>` already stops the
|
|
2262
2353
|
* click from bubbling to the trigger's `(click)`, so no event handling
|
|
@@ -2285,7 +2376,7 @@ declare class MultiSelectComponent implements ControlValueAccessor {
|
|
|
2285
2376
|
private resetEditState;
|
|
2286
2377
|
private commit;
|
|
2287
2378
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
2288
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectComponent, "ea-multi-select", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "selectAll": { "alias": "selectAll"; "required": false; "isSignal": true; }; "maxVisibleChips": { "alias": "maxVisibleChips"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
|
|
2379
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectComponent, "ea-multi-select", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "selectAll": { "alias": "selectAll"; "required": false; "isSignal": true; }; "maxVisibleChips": { "alias": "maxVisibleChips"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
|
|
2289
2380
|
}
|
|
2290
2381
|
|
|
2291
2382
|
/** Horizontal alignment of paginator controls within their container. */
|
|
@@ -2305,6 +2396,7 @@ interface PaginatorState {
|
|
|
2305
2396
|
*/
|
|
2306
2397
|
declare class PaginatorComponent {
|
|
2307
2398
|
protected readonly i18n: EagamiI18nService;
|
|
2399
|
+
protected readonly sizeSelectId: string;
|
|
2308
2400
|
readonly totalItems: _angular_core.InputSignal<number>;
|
|
2309
2401
|
readonly pageSizeOptions: _angular_core.InputSignal<number[]>;
|
|
2310
2402
|
readonly showPageSizeSelector: _angular_core.InputSignal<boolean>;
|
|
@@ -2442,6 +2534,10 @@ declare class PopoverComponent {
|
|
|
2442
2534
|
readonly role: _angular_core.InputSignal<PopoverRole>;
|
|
2443
2535
|
/** Accessible label. Falls back to nothing; consumers should provide one when no visible heading is in the popover. */
|
|
2444
2536
|
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
2537
|
+
/** Id of the element that labels the popover surface, forwarded as `aria-labelledby`. */
|
|
2538
|
+
readonly ariaLabelledby: _angular_core.InputSignal<string | undefined>;
|
|
2539
|
+
/** Keep Tab and Shift+Tab cycling within the surface while open (dialog pattern). */
|
|
2540
|
+
readonly trapFocus: _angular_core.InputSignal<boolean>;
|
|
2445
2541
|
/** DOM id for the surface so trigger elements can reference it via aria-controls. */
|
|
2446
2542
|
readonly surfaceId: _angular_core.InputSignal<string>;
|
|
2447
2543
|
/**
|
|
@@ -2481,9 +2577,10 @@ declare class PopoverComponent {
|
|
|
2481
2577
|
private resolveAnchor;
|
|
2482
2578
|
private reposition;
|
|
2483
2579
|
onDocumentClick(event: MouseEvent): void;
|
|
2580
|
+
onSurfaceKeydown(event: KeyboardEvent): void;
|
|
2484
2581
|
onEscape(): void;
|
|
2485
2582
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PopoverComponent, never>;
|
|
2486
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PopoverComponent, "ea-popover", never, { "anchor": { "alias": "anchor"; "required": true; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "surfaceId": { "alias": "surfaceId"; "required": false; "isSignal": true; }; "offset": { "alias": "offset"; "required": false; "isSignal": true; }; "flip": { "alias": "flip"; "required": false; "isSignal": true; }; "clamp": { "alias": "clamp"; "required": false; "isSignal": true; }; "matchAnchorWidth": { "alias": "matchAnchorWidth"; "required": false; "isSignal": true; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "scrollBehavior": { "alias": "scrollBehavior"; "required": false; "isSignal": true; }; }, { "closeRequested": "closeRequested"; }, never, ["*"], true, never>;
|
|
2583
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PopoverComponent, "ea-popover", never, { "anchor": { "alias": "anchor"; "required": true; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "trapFocus": { "alias": "trapFocus"; "required": false; "isSignal": true; }; "surfaceId": { "alias": "surfaceId"; "required": false; "isSignal": true; }; "offset": { "alias": "offset"; "required": false; "isSignal": true; }; "flip": { "alias": "flip"; "required": false; "isSignal": true; }; "clamp": { "alias": "clamp"; "required": false; "isSignal": true; }; "matchAnchorWidth": { "alias": "matchAnchorWidth"; "required": false; "isSignal": true; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "scrollBehavior": { "alias": "scrollBehavior"; "required": false; "isSignal": true; }; }, { "closeRequested": "closeRequested"; }, never, ["*"], true, never>;
|
|
2487
2584
|
}
|
|
2488
2585
|
|
|
2489
2586
|
/** Semantic colour scheme of the progress bar. */
|
|
@@ -2623,9 +2720,9 @@ declare class RangeSliderComponent implements ControlValueAccessor {
|
|
|
2623
2720
|
readonly formatValue: _angular_core.InputSignal<(value: number) => string>;
|
|
2624
2721
|
/** Group thousands with commas in displayed values (ignored when a custom `formatValue` is set). */
|
|
2625
2722
|
readonly groupThousands: _angular_core.InputSignal<boolean>;
|
|
2626
|
-
/** Accessible label for the low (start) thumb. Falls back to
|
|
2723
|
+
/** Accessible label for the low (start) thumb. Falls back to a localized default when omitted. */
|
|
2627
2724
|
readonly ariaLabelLow: _angular_core.InputSignal<string | undefined>;
|
|
2628
|
-
/** Accessible label for the high (end) thumb. Falls back to
|
|
2725
|
+
/** Accessible label for the high (end) thumb. Falls back to a localized default when omitted. */
|
|
2629
2726
|
readonly ariaLabelHigh: _angular_core.InputSignal<string | undefined>;
|
|
2630
2727
|
readonly id: _angular_core.InputSignal<string>;
|
|
2631
2728
|
readonly value: _angular_core.ModelSignal<RangeSliderValue>;
|
|
@@ -2640,6 +2737,11 @@ declare class RangeSliderComponent implements ControlValueAccessor {
|
|
|
2640
2737
|
readonly clampedValue: _angular_core.Signal<RangeSliderValue>;
|
|
2641
2738
|
readonly lowPercent: _angular_core.Signal<number>;
|
|
2642
2739
|
readonly highPercent: _angular_core.Signal<number>;
|
|
2740
|
+
readonly lowThumbLabel: _angular_core.Signal<string>;
|
|
2741
|
+
readonly highThumbLabel: _angular_core.Signal<string>;
|
|
2742
|
+
readonly lowThumbLabelledBy: _angular_core.Signal<string>;
|
|
2743
|
+
readonly highThumbLabelledBy: _angular_core.Signal<string>;
|
|
2744
|
+
private thumbLabelledBy;
|
|
2643
2745
|
/** Formats a value for display, grouping thousands with commas unless a custom `formatValue` is set. */
|
|
2644
2746
|
protected formatDisplay(value: number): string;
|
|
2645
2747
|
private readonly errorState;
|
|
@@ -2801,6 +2903,8 @@ declare class SegmentedComponent implements ControlValueAccessor {
|
|
|
2801
2903
|
readonly showError: _angular_core.Signal<boolean>;
|
|
2802
2904
|
readonly showHint: _angular_core.Signal<boolean>;
|
|
2803
2905
|
readonly enabledOptions: _angular_core.Signal<SelectOption[]>;
|
|
2906
|
+
readonly firstEnabledIndex: _angular_core.Signal<number>;
|
|
2907
|
+
readonly tabStopIndex: _angular_core.Signal<number>;
|
|
2804
2908
|
readonly hostClasses: _angular_core.Signal<{
|
|
2805
2909
|
[x: string]: boolean;
|
|
2806
2910
|
'ea-segmented--full-width': boolean;
|
|
@@ -3074,6 +3178,8 @@ declare class TabsComponent {
|
|
|
3074
3178
|
readonly registeredTabs: _angular_core.WritableSignal<TabComponent[]>;
|
|
3075
3179
|
readonly variant: _angular_core.InputSignal<TabsVariant>;
|
|
3076
3180
|
readonly size: _angular_core.InputSignal<EaSize>;
|
|
3181
|
+
/** Accessible name for the tablist, announced by screen readers. */
|
|
3182
|
+
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
3077
3183
|
readonly activeTab: _angular_core.ModelSignal<string>;
|
|
3078
3184
|
/** Fires with the value of the newly active tab. */
|
|
3079
3185
|
readonly changed: _angular_core.OutputEmitterRef<string>;
|
|
@@ -3085,7 +3191,7 @@ declare class TabsComponent {
|
|
|
3085
3191
|
selectTab(value: string): void;
|
|
3086
3192
|
handleKeydown(event: KeyboardEvent): void;
|
|
3087
3193
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
3088
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabsComponent, "ea-tabs", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; }, { "activeTab": "activeTabChange"; "changed": "changed"; }, never, ["*"], true, never>;
|
|
3194
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabsComponent, "ea-tabs", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; }, { "activeTab": "activeTabChange"; "changed": "changed"; }, never, ["*"], true, never>;
|
|
3089
3195
|
}
|
|
3090
3196
|
|
|
3091
3197
|
/** Semantic colour scheme of a tag. */
|
|
@@ -3233,6 +3339,7 @@ declare class TimePickerComponent implements ControlValueAccessor {
|
|
|
3233
3339
|
readonly minuteStep: _angular_core.InputSignal<number>;
|
|
3234
3340
|
readonly secondStep: _angular_core.InputSignal<number>;
|
|
3235
3341
|
readonly id: _angular_core.InputSignal<string>;
|
|
3342
|
+
readonly popoverId: _angular_core.Signal<string>;
|
|
3236
3343
|
/** `"HH:MM"` or `"HH:MM:SS"` in 24-hour notation, or `null` when unset. */
|
|
3237
3344
|
readonly value: _angular_core.ModelSignal<string | null>;
|
|
3238
3345
|
/** Fires with the new value whenever the user changes the time. */
|
|
@@ -3317,6 +3424,8 @@ declare class TimePickerComponent implements ControlValueAccessor {
|
|
|
3317
3424
|
/** Switches the AM/PM period in 12h mode by toggling the 12-hour offset. */
|
|
3318
3425
|
togglePeriod(): void;
|
|
3319
3426
|
handlePopoverKeydown(event: KeyboardEvent, unit: Unit): void;
|
|
3427
|
+
/** Escape from anywhere inside the popover closes it and refocuses the trigger. */
|
|
3428
|
+
onPopoverEscape(event: Event): void;
|
|
3320
3429
|
/** Select-all on focus so the first keystroke replaces the current value. */
|
|
3321
3430
|
onSpinnerFocus(event: FocusEvent): void;
|
|
3322
3431
|
/**
|
|
@@ -3406,7 +3515,6 @@ declare class ToastComponent {
|
|
|
3406
3515
|
/** Show a dismiss button on each toast. */
|
|
3407
3516
|
readonly clearable: _angular_core.InputSignal<boolean>;
|
|
3408
3517
|
protected readonly containerClass: _angular_core.Signal<string>;
|
|
3409
|
-
protected getRole(toast: Toast): 'alert' | 'status';
|
|
3410
3518
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
3411
3519
|
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>;
|
|
3412
3520
|
}
|
|
@@ -3502,6 +3610,10 @@ declare class TransferListComponent {
|
|
|
3502
3610
|
private readonly rightHighlighted;
|
|
3503
3611
|
private readonly leftAnchor;
|
|
3504
3612
|
private readonly rightAnchor;
|
|
3613
|
+
private readonly leftActiveId;
|
|
3614
|
+
private readonly rightActiveId;
|
|
3615
|
+
private readonly leftActiveIndex;
|
|
3616
|
+
private readonly rightActiveIndex;
|
|
3505
3617
|
protected readonly sourceItems: _angular_core.Signal<TransferListItem[]>;
|
|
3506
3618
|
protected readonly targetItems: _angular_core.Signal<TransferListItem[]>;
|
|
3507
3619
|
protected readonly canMoveRight: _angular_core.Signal<boolean>;
|
|
@@ -3512,8 +3624,13 @@ declare class TransferListComponent {
|
|
|
3512
3624
|
protected readonly resolvedTargetLabel: _angular_core.Signal<string>;
|
|
3513
3625
|
protected readonly hostClasses: _angular_core.Signal<string[]>;
|
|
3514
3626
|
protected isHighlighted(pane: 'source' | 'target', id: string): boolean;
|
|
3627
|
+
protected itemTabindex(pane: 'source' | 'target', index: number, item: TransferListItem): number;
|
|
3515
3628
|
protected onItemClick(pane: 'source' | 'target', item: TransferListItem, event: MouseEvent): void;
|
|
3516
3629
|
protected onItemKeydown(event: KeyboardEvent, pane: 'source' | 'target', item: TransferListItem): void;
|
|
3630
|
+
private resolveActiveIndex;
|
|
3631
|
+
private nextEnabledIndex;
|
|
3632
|
+
private setActive;
|
|
3633
|
+
private focusOption;
|
|
3517
3634
|
private toggleHighlight;
|
|
3518
3635
|
private selectRangeTo;
|
|
3519
3636
|
protected moveSelectedRight(): void;
|
|
@@ -3657,6 +3774,13 @@ declare class VirtualListComponent {
|
|
|
3657
3774
|
* trade memory for smoothness.
|
|
3658
3775
|
*/
|
|
3659
3776
|
readonly overscan: _angular_core.InputSignal<number>;
|
|
3777
|
+
/**
|
|
3778
|
+
* Accessible name for the scrollable viewport. When set, the viewport gets
|
|
3779
|
+
* `role="region"` with this label so keyboard and screen-reader users can
|
|
3780
|
+
* identify it. Leave unset when the consumer supplies its own ARIA
|
|
3781
|
+
* semantics around the list (e.g. an outer `role="listbox"`).
|
|
3782
|
+
*/
|
|
3783
|
+
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
3660
3784
|
/** Index of the first row currently visible at the top of the viewport. */
|
|
3661
3785
|
readonly scrollIndexChange: _angular_core.OutputEmitterRef<number>;
|
|
3662
3786
|
/** Template applied to each rendered item, projected via `<ng-template #item>`. */
|
|
@@ -3686,7 +3810,7 @@ declare class VirtualListComponent {
|
|
|
3686
3810
|
*/
|
|
3687
3811
|
scrollToIndex(index: number): void;
|
|
3688
3812
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<VirtualListComponent, never>;
|
|
3689
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<VirtualListComponent, "ea-virtual-list", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": true; "isSignal": true; }; "viewportHeight": { "alias": "viewportHeight"; "required": true; "isSignal": true; }; "overscan": { "alias": "overscan"; "required": false; "isSignal": true; }; }, { "scrollIndexChange": "scrollIndexChange"; }, ["itemTemplate"], never, true, never>;
|
|
3813
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<VirtualListComponent, "ea-virtual-list", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": true; "isSignal": true; }; "viewportHeight": { "alias": "viewportHeight"; "required": true; "isSignal": true; }; "overscan": { "alias": "overscan"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "scrollIndexChange": "scrollIndexChange"; }, ["itemTemplate"], never, true, never>;
|
|
3690
3814
|
}
|
|
3691
3815
|
|
|
3692
3816
|
/**
|
|
@@ -6811,5 +6935,5 @@ declare class WhatsappIconComponent extends IconComponentBase {
|
|
|
6811
6935
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WhatsappIconComponent, "ea-icon-whatsapp", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6812
6936
|
}
|
|
6813
6937
|
|
|
6814
|
-
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, 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, BitcoinIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkCheckIconComponent, BookmarkIconComponent, BotIconComponent, BottleIconComponent, BoxIconComponent, BrainIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarCheckIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardCheckIconComponent, ClipboardIconComponent, 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, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FilterXIconComponent, FingerprintIconComponent, FlagIconComponent, FlameIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, GaugeIconComponent, GeminiIconComponent, 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, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, 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, 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, ShieldIconComponent, ShieldOffIconComponent, 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, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, 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, WCAG_AA, WalletIconComponent, WandIconComponent, WatchIconComponent, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, 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 };
|
|
6815
|
-
export type { AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, 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, 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 };
|
|
6938
|
+
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, 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, BitcoinIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkCheckIconComponent, BookmarkIconComponent, BotIconComponent, BottleIconComponent, BoxIconComponent, BrainIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarCheckIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardCheckIconComponent, ClipboardIconComponent, 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, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FilterXIconComponent, FingerprintIconComponent, FlagIconComponent, FlameIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FormFieldComponent, FramerIconComponent, FrownIconComponent, GaugeIconComponent, GeminiIconComponent, 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, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, 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, 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, ShieldIconComponent, ShieldOffIconComponent, 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, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, 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, WCAG_AA, WalletIconComponent, WandIconComponent, WatchIconComponent, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, 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 };
|
|
6939
|
+
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, 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 };
|