@eagami/ui 0.8.1 → 0.10.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagami/ui",
3
- "version": "0.8.1",
3
+ "version": "0.10.0",
4
4
  "description": "Lightweight, accessible Angular UI component library built on CSS custom properties",
5
5
  "author": "Michal Wiraszka <michal@eagami.com>",
6
6
  "license": "MIT",
@@ -37,6 +37,66 @@ declare class AlertComponent {
37
37
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertComponent, "ea-alert", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "dismissible": { "alias": "dismissible"; "required": false; "isSignal": true; }; "visible": { "alias": "visible"; "required": false; "isSignal": true; }; }, { "visible": "visibleChange"; "dismissed": "dismissed"; }, never, ["*"], true, never>;
38
38
  }
39
39
 
40
+ type AutocompleteSize = 'sm' | 'md' | 'lg';
41
+ interface AutocompleteOption {
42
+ value: string;
43
+ label: string;
44
+ disabled?: boolean;
45
+ }
46
+ declare class AutocompleteComponent implements ControlValueAccessor {
47
+ private readonly inputEl;
48
+ private readonly hostEl;
49
+ readonly label: _angular_core.InputSignal<string | undefined>;
50
+ readonly placeholder: _angular_core.InputSignal<string>;
51
+ readonly options: _angular_core.InputSignal<AutocompleteOption[]>;
52
+ readonly size: _angular_core.InputSignal<AutocompleteSize>;
53
+ readonly disabled: _angular_core.InputSignal<boolean>;
54
+ readonly readonly: _angular_core.InputSignal<boolean>;
55
+ readonly required: _angular_core.InputSignal<boolean>;
56
+ readonly hint: _angular_core.InputSignal<string | undefined>;
57
+ readonly errorMsg: _angular_core.InputSignal<string | undefined>;
58
+ readonly minLength: _angular_core.InputSignal<number>;
59
+ readonly maxResults: _angular_core.InputSignal<number>;
60
+ readonly emptyMessage: _angular_core.InputSignal<string>;
61
+ readonly id: _angular_core.InputSignal<string>;
62
+ readonly value: _angular_core.ModelSignal<string>;
63
+ readonly optionSelected: _angular_core.OutputEmitterRef<AutocompleteOption>;
64
+ readonly valueChanged: _angular_core.OutputEmitterRef<string>;
65
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
66
+ readonly focused: _angular_core.WritableSignal<boolean>;
67
+ readonly focusedIndex: _angular_core.WritableSignal<number>;
68
+ private readonly _formDisabled;
69
+ private justSelected;
70
+ private onChange;
71
+ private onTouched;
72
+ readonly isDisabled: _angular_core.Signal<boolean>;
73
+ readonly resolvedStatus: _angular_core.Signal<"default" | "error">;
74
+ readonly showError: _angular_core.Signal<boolean>;
75
+ readonly showHint: _angular_core.Signal<boolean>;
76
+ readonly filteredOptions: _angular_core.Signal<AutocompleteOption[]>;
77
+ readonly showList: _angular_core.Signal<boolean>;
78
+ readonly showEmpty: _angular_core.Signal<boolean>;
79
+ readonly wrapperClasses: _angular_core.Signal<{
80
+ [x: string]: boolean;
81
+ 'ea-autocomplete__wrapper--focused': boolean;
82
+ 'ea-autocomplete__wrapper--disabled': boolean;
83
+ }>;
84
+ writeValue(val: string): void;
85
+ registerOnChange(fn: (value: string) => void): void;
86
+ registerOnTouched(fn: () => void): void;
87
+ setDisabledState(isDisabled: boolean): void;
88
+ handleInput(event: Event): void;
89
+ handleFocus(): void;
90
+ handleBlur(): void;
91
+ handleKeydown(event: KeyboardEvent): void;
92
+ selectOption(option: AutocompleteOption): void;
93
+ close(): void;
94
+ private moveFocus;
95
+ onDocumentClick(event: Event): void;
96
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
97
+ 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": "error"; "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"; "optionSelected": "optionSelected"; "valueChanged": "valueChanged"; }, never, ["[slot=prefix]", "[slot=suffix]"], true, never>;
98
+ }
99
+
40
100
  type AvatarEditorShape = 'circle' | 'square';
41
101
  interface AvatarEditorCropEvent {
42
102
  blob: Blob;
@@ -162,6 +222,28 @@ declare class BadgeComponent {
162
222
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<BadgeComponent, "ea-badge", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
163
223
  }
164
224
 
225
+ type BreadcrumbsSeparator = 'chevron' | 'slash';
226
+ interface BreadcrumbItem {
227
+ label: string;
228
+ href?: string;
229
+ disabled?: boolean;
230
+ }
231
+ interface BreadcrumbClickEvent {
232
+ item: BreadcrumbItem;
233
+ index: number;
234
+ event: MouseEvent;
235
+ }
236
+ declare class BreadcrumbsComponent {
237
+ readonly items: _angular_core.InputSignal<BreadcrumbItem[]>;
238
+ readonly separator: _angular_core.InputSignal<BreadcrumbsSeparator>;
239
+ readonly ariaLabel: _angular_core.InputSignal<string>;
240
+ readonly itemClicked: _angular_core.OutputEmitterRef<BreadcrumbClickEvent>;
241
+ isLast(index: number): boolean;
242
+ handleClick(item: BreadcrumbItem, index: number, event: MouseEvent): void;
243
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbsComponent, never>;
244
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbsComponent, "ea-breadcrumbs", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, { "itemClicked": "itemClicked"; }, never, never, true, never>;
245
+ }
246
+
165
247
  type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'danger';
166
248
  type ButtonSize = 'sm' | 'md' | 'lg';
167
249
  type ButtonType = 'button' | 'submit' | 'reset';
@@ -195,12 +277,13 @@ declare class CardComponent {
195
277
  readonly padding: _angular_core.InputSignal<CardPadding>;
196
278
  readonly fullWidth: _angular_core.InputSignal<boolean>;
197
279
  readonly headerAlign: _angular_core.InputSignal<CardHeaderAlign>;
280
+ readonly headerDivider: _angular_core.InputSignal<boolean>;
198
281
  readonly hostClasses: _angular_core.Signal<{
199
282
  [x: string]: boolean;
200
283
  'ea-card--full-width': boolean;
201
284
  }>;
202
285
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardComponent, never>;
203
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardComponent, "ea-card", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "headerAlign": { "alias": "headerAlign"; "required": false; "isSignal": true; }; }, {}, never, ["[eaCardHeader]", "*", "[eaCardFooter]"], true, never>;
286
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardComponent, "ea-card", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "headerAlign": { "alias": "headerAlign"; "required": false; "isSignal": true; }; "headerDivider": { "alias": "headerDivider"; "required": false; "isSignal": true; }; }, {}, never, ["[eaCardHeader]", "*", "[eaCardFooter]"], true, never>;
204
287
  }
205
288
 
206
289
  type CheckboxSize = 'sm' | 'md' | 'lg';
@@ -321,6 +404,84 @@ declare class CodeInputComponent implements ControlValueAccessor {
321
404
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<CodeInputComponent, "ea-code-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "length": { "alias": "length"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "error"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "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>;
322
405
  }
323
406
 
407
+ type DatePickerSize = 'sm' | 'md' | 'lg';
408
+ type DatePickerFormat = 'short' | 'medium' | 'long';
409
+ type DatePickerWeekStart = 0 | 1;
410
+ type DatePickerValue = Date | string | null;
411
+ interface CalendarDay {
412
+ date: Date;
413
+ day: number;
414
+ isCurrentMonth: boolean;
415
+ isToday: boolean;
416
+ isSelected: boolean;
417
+ isDisabled: boolean;
418
+ isFocused: boolean;
419
+ }
420
+ declare class DatePickerComponent implements ControlValueAccessor {
421
+ private readonly hostEl;
422
+ private readonly triggerEl;
423
+ readonly label: _angular_core.InputSignal<string | undefined>;
424
+ readonly placeholder: _angular_core.InputSignal<string>;
425
+ readonly size: _angular_core.InputSignal<DatePickerSize>;
426
+ readonly disabled: _angular_core.InputSignal<boolean>;
427
+ readonly required: _angular_core.InputSignal<boolean>;
428
+ readonly hint: _angular_core.InputSignal<string | undefined>;
429
+ readonly errorMsg: _angular_core.InputSignal<string | undefined>;
430
+ readonly minDate: _angular_core.InputSignal<Date | null>;
431
+ readonly maxDate: _angular_core.InputSignal<Date | null>;
432
+ readonly format: _angular_core.InputSignal<DatePickerFormat>;
433
+ readonly weekStartsOn: _angular_core.InputSignal<DatePickerWeekStart>;
434
+ readonly locale: _angular_core.InputSignal<string | undefined>;
435
+ readonly id: _angular_core.InputSignal<string>;
436
+ readonly value: _angular_core.ModelSignal<Date | null>;
437
+ readonly changed: _angular_core.OutputEmitterRef<Date | null>;
438
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
439
+ readonly viewYear: _angular_core.WritableSignal<number>;
440
+ readonly viewMonth: _angular_core.WritableSignal<number>;
441
+ readonly focusedDate: _angular_core.WritableSignal<Date | null>;
442
+ private readonly _formDisabled;
443
+ private onChange;
444
+ private onTouched;
445
+ readonly isDisabled: _angular_core.Signal<boolean>;
446
+ readonly resolvedStatus: _angular_core.Signal<"default" | "error">;
447
+ readonly showError: _angular_core.Signal<boolean>;
448
+ readonly showHint: _angular_core.Signal<boolean>;
449
+ readonly triggerClasses: _angular_core.Signal<{
450
+ [x: string]: boolean;
451
+ 'ea-date-picker__trigger--open': boolean;
452
+ 'ea-date-picker__trigger--disabled': boolean;
453
+ }>;
454
+ readonly displayValue: _angular_core.Signal<string>;
455
+ readonly monthYearLabel: _angular_core.Signal<string>;
456
+ readonly weekdayLabels: _angular_core.Signal<string[]>;
457
+ readonly weeks: _angular_core.Signal<CalendarDay[][]>;
458
+ writeValue(val: DatePickerValue): void;
459
+ registerOnChange(fn: (value: Date | null) => void): void;
460
+ registerOnTouched(fn: () => void): void;
461
+ setDisabledState(isDisabled: boolean): void;
462
+ toggle(): void;
463
+ open(): void;
464
+ close(): void;
465
+ selectDay(day: CalendarDay): void;
466
+ clear(event: Event): void;
467
+ goToPrevMonth(): void;
468
+ goToNextMonth(): void;
469
+ goToPrevYear(): void;
470
+ goToNextYear(): void;
471
+ goToToday(): void;
472
+ handleTriggerKeydown(event: KeyboardEvent): void;
473
+ handleGridKeydown(event: KeyboardEvent): void;
474
+ onDocumentClick(event: Event): void;
475
+ private formatOptions;
476
+ private toDate;
477
+ private startOfDay;
478
+ private isSameDay;
479
+ private addDays;
480
+ private addMonths;
481
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DatePickerComponent, never>;
482
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DatePickerComponent, "ea-date-picker", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "error"; "required": false; "isSignal": true; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "weekStartsOn": { "alias": "weekStartsOn"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "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>;
483
+ }
484
+
324
485
  type DialogSize = 'sm' | 'md' | 'lg' | 'full';
325
486
  declare class DialogComponent {
326
487
  private readonly dialogEl;
@@ -355,6 +516,30 @@ declare class DividerComponent {
355
516
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DividerComponent, "ea-divider", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
356
517
  }
357
518
 
519
+ type DrawerPosition = 'left' | 'right' | 'top' | 'bottom';
520
+ type DrawerSize = 'sm' | 'md' | 'lg' | 'full';
521
+ declare class DrawerComponent {
522
+ private readonly drawerEl;
523
+ readonly position: _angular_core.InputSignal<DrawerPosition>;
524
+ readonly size: _angular_core.InputSignal<DrawerSize>;
525
+ readonly closeOnBackdrop: _angular_core.InputSignal<boolean>;
526
+ readonly closeOnEscape: _angular_core.InputSignal<boolean>;
527
+ readonly showClose: _angular_core.InputSignal<boolean>;
528
+ readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
529
+ readonly open: _angular_core.ModelSignal<boolean>;
530
+ readonly opened: _angular_core.OutputEmitterRef<void>;
531
+ readonly closed: _angular_core.OutputEmitterRef<void>;
532
+ readonly panelClasses: _angular_core.Signal<{
533
+ [x: string]: boolean;
534
+ }>;
535
+ constructor();
536
+ handleClose(): void;
537
+ handleBackdropClick(event: MouseEvent): void;
538
+ handleCancel(event: Event): void;
539
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DrawerComponent, never>;
540
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawerComponent, "ea-drawer", never, { "position": { "alias": "position"; "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; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["[slot=header]", "*", "[slot=footer]"], true, never>;
541
+ }
542
+
358
543
  type DropdownSize = 'sm' | 'md' | 'lg';
359
544
  interface DropdownOption {
360
545
  value: string;
@@ -403,6 +588,18 @@ declare class DropdownComponent implements ControlValueAccessor {
403
588
  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; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "error"; "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>;
404
589
  }
405
590
 
591
+ type EagamiWordmarkVariant = 'logo' | 'signature' | 'brand';
592
+ type EagamiWordmarkSize = 'sm' | 'md' | 'lg';
593
+ type EagamiWordmarkText = 'eagami' | 'eagami design system';
594
+ declare class EagamiWordmarkComponent {
595
+ readonly variant: _angular_core.InputSignal<EagamiWordmarkVariant>;
596
+ readonly size: _angular_core.InputSignal<EagamiWordmarkSize>;
597
+ readonly text: _angular_core.InputSignal<EagamiWordmarkText>;
598
+ protected readonly ariaLabel: _angular_core.Signal<string>;
599
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<EagamiWordmarkComponent, never>;
600
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<EagamiWordmarkComponent, "ea-eagami-wordmark", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
601
+ }
602
+
406
603
  declare class AlertCircleIconComponent {
407
604
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AlertCircleIconComponent, never>;
408
605
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertCircleIconComponent, "ea-icon-alert-circle", never, {}, {}, never, never, true, never>;
@@ -503,6 +700,11 @@ declare class DownloadIconComponent {
503
700
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DownloadIconComponent, "ea-icon-download", never, {}, {}, never, never, true, never>;
504
701
  }
505
702
 
703
+ declare class EagamiIconComponent {
704
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<EagamiIconComponent, never>;
705
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<EagamiIconComponent, "ea-icon-eagami", never, {}, {}, never, never, true, never>;
706
+ }
707
+
506
708
  declare class ExternalLinkIconComponent {
507
709
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExternalLinkIconComponent, never>;
508
710
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExternalLinkIconComponent, "ea-icon-external-link", never, {}, {}, never, never, true, never>;
@@ -710,6 +912,39 @@ declare class InputComponent implements ControlValueAccessor, AfterViewInit {
710
912
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputComponent, "ea-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "error"; "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; }; "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; "autofocus": { "alias": "autofocus"; "required": false; "isSignal": true; }; "showPasswordToggle": { "alias": "showPasswordToggle"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "inputFocused": "inputFocused"; "inputBlurred": "inputBlurred"; }, never, ["[slot=prefix]", "[slot=suffix]"], true, never>;
711
913
  }
712
914
 
915
+ type MenuPlacement = 'bottom-start' | 'bottom-end' | 'top-start' | 'top-end';
916
+ declare class MenuComponent {
917
+ private readonly elRef;
918
+ readonly placement: _angular_core.InputSignal<MenuPlacement>;
919
+ readonly disabled: _angular_core.InputSignal<boolean>;
920
+ readonly ariaLabel: _angular_core.InputSignal<string>;
921
+ readonly open: _angular_core.ModelSignal<boolean>;
922
+ readonly opened: _angular_core.OutputEmitterRef<void>;
923
+ readonly closed: _angular_core.OutputEmitterRef<void>;
924
+ readonly menuId: _angular_core.WritableSignal<string>;
925
+ readonly menuClasses: _angular_core.Signal<{
926
+ [x: string]: boolean;
927
+ }>;
928
+ toggle(): void;
929
+ close(): void;
930
+ handleTriggerKeydown(event: KeyboardEvent): void;
931
+ onDocumentClick(event: Event): void;
932
+ onEscape(): void;
933
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
934
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuComponent, "ea-menu", never, { "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, never, ["[slot=trigger]", "*"], true, never>;
935
+ }
936
+
937
+ type MenuItemVariant = 'default' | 'danger';
938
+ declare class MenuItemComponent {
939
+ private readonly menu;
940
+ readonly disabled: _angular_core.InputSignal<boolean>;
941
+ readonly variant: _angular_core.InputSignal<MenuItemVariant>;
942
+ readonly itemClicked: _angular_core.OutputEmitterRef<MouseEvent>;
943
+ handleClick(event: MouseEvent): void;
944
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuItemComponent, never>;
945
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuItemComponent, "ea-menu-item", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, { "itemClicked": "itemClicked"; }, never, ["[slot=icon]", "*"], true, never>;
946
+ }
947
+
713
948
  type PaginatorPlacement = 'left' | 'center' | 'right';
714
949
  interface PaginatorState {
715
950
  page: number;
@@ -995,5 +1230,5 @@ declare class TooltipDirective implements OnDestroy {
995
1230
  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>;
996
1231
  }
997
1232
 
998
- export { AccordionComponent, AccordionItemComponent, AlertCircleIconComponent, AlertComponent, AlertTriangleIconComponent, AppleIconComponent, ArrowDownIconComponent, ArrowLeftIconComponent, ArrowRightIconComponent, ArrowUpIconComponent, AvatarComponent, AvatarEditorComponent, BadgeComponent, BellIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CardComponent, CheckCircleIconComponent, CheckIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsUpDownIconComponent, ClockIconComponent, CodeInputComponent, CopyIconComponent, DataTableComponent, DialogComponent, DividerComponent, DownloadIconComponent, DropdownComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, FacebookIconComponent, FileIconComponent, FilterIconComponent, GithubIconComponent, GoogleIconComponent, HeartIconComponent, ImageIconComponent, InfoIconComponent, InputComponent, LinkIconComponent, LoaderIconComponent, LogOutIconComponent, MailIconComponent, MenuIconComponent, MicrosoftIconComponent, MinusIconComponent, MoreHorizontalIconComponent, PaginatorComponent, PencilIconComponent, PlusIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RotateCcwIconComponent, SearchIconComponent, SettingsIconComponent, SkeletonComponent, SpinnerComponent, StarIconComponent, SwitchComponent, TabComponent, TabsComponent, TagComponent, TextareaComponent, ToastComponent, ToastService, TooltipDirective, TrashIconComponent, UploadIconComponent, UserIconComponent, XCircleIconComponent, XIconComponent, XTwitterIconComponent };
999
- export type { AlertVariant, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeSize, BadgeVariant, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, CodeInputStatus, DataTableColumn, DataTableDensity, DataTableSortState, DialogSize, DividerOrientation, DropdownOption, DropdownSize, InputSize, InputStatus, InputType, PaginatorPlacement, PaginatorState, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, SkeletonVariant, SortDirection, SpinnerSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TextareaStatus, Toast, ToastOptions, ToastVariant, TooltipPosition };
1233
+ export { AccordionComponent, AccordionItemComponent, AlertCircleIconComponent, AlertComponent, AlertTriangleIconComponent, AppleIconComponent, ArrowDownIconComponent, ArrowLeftIconComponent, ArrowRightIconComponent, ArrowUpIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, BadgeComponent, BellIconComponent, BreadcrumbsComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CardComponent, CheckCircleIconComponent, CheckIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsUpDownIconComponent, ClockIconComponent, CodeInputComponent, CopyIconComponent, DataTableComponent, DatePickerComponent, DialogComponent, DividerComponent, DownloadIconComponent, DrawerComponent, DropdownComponent, EagamiIconComponent, EagamiWordmarkComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, FacebookIconComponent, FileIconComponent, FilterIconComponent, GithubIconComponent, GoogleIconComponent, HeartIconComponent, ImageIconComponent, InfoIconComponent, InputComponent, LinkIconComponent, LoaderIconComponent, LogOutIconComponent, MailIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MicrosoftIconComponent, MinusIconComponent, MoreHorizontalIconComponent, PaginatorComponent, PencilIconComponent, PlusIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RotateCcwIconComponent, SearchIconComponent, SettingsIconComponent, SkeletonComponent, SpinnerComponent, StarIconComponent, SwitchComponent, TabComponent, TabsComponent, TagComponent, TextareaComponent, ToastComponent, ToastService, TooltipDirective, TrashIconComponent, UploadIconComponent, UserIconComponent, XCircleIconComponent, XIconComponent, XTwitterIconComponent };
1234
+ export type { AlertVariant, AutocompleteOption, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, CodeInputStatus, DataTableColumn, DataTableDensity, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DialogSize, DividerOrientation, DrawerPosition, DrawerSize, DropdownOption, DropdownSize, EagamiWordmarkSize, EagamiWordmarkText, EagamiWordmarkVariant, InputSize, InputStatus, InputType, MenuItemVariant, MenuPlacement, PaginatorPlacement, PaginatorState, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, SkeletonVariant, SortDirection, SpinnerSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TextareaStatus, Toast, ToastOptions, ToastVariant, TooltipPosition };