@eagami/ui 0.11.0 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagami/ui",
3
- "version": "0.11.0",
3
+ "version": "0.12.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",
@@ -17,10 +17,11 @@ declare class AccordionItemComponent {
17
17
  readonly value: _angular_core.InputSignal<string>;
18
18
  readonly label: _angular_core.InputSignal<string>;
19
19
  readonly disabled: _angular_core.InputSignal<boolean>;
20
+ readonly id: _angular_core.InputSignal<string>;
20
21
  readonly isExpanded: _angular_core.Signal<boolean>;
21
22
  toggle(): void;
22
23
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
23
- 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; }; }, {}, never, ["*"], true, never>;
24
+ 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>;
24
25
  }
25
26
 
26
27
  type AlertVariant = 'default' | 'success' | 'warning' | 'error' | 'info';
@@ -485,6 +486,7 @@ declare class DatePickerComponent implements ControlValueAccessor {
485
486
  type DialogSize = 'sm' | 'md' | 'lg' | 'full';
486
487
  declare class DialogComponent {
487
488
  private readonly dialogEl;
489
+ private previouslyFocused;
488
490
  readonly size: _angular_core.InputSignal<DialogSize>;
489
491
  readonly closeOnBackdrop: _angular_core.InputSignal<boolean>;
490
492
  readonly closeOnEscape: _angular_core.InputSignal<boolean>;
@@ -520,6 +522,7 @@ type DrawerPosition = 'left' | 'right' | 'top' | 'bottom';
520
522
  type DrawerSize = 'sm' | 'md' | 'lg' | 'full';
521
523
  declare class DrawerComponent {
522
524
  private readonly drawerEl;
525
+ private previouslyFocused;
523
526
  readonly position: _angular_core.InputSignal<DrawerPosition>;
524
527
  readonly size: _angular_core.InputSignal<DrawerSize>;
525
528
  readonly closeOnBackdrop: _angular_core.InputSignal<boolean>;
@@ -548,6 +551,8 @@ interface DropdownOption {
548
551
  }
549
552
  declare class DropdownComponent implements ControlValueAccessor {
550
553
  private readonly elRef;
554
+ private readonly menuEl;
555
+ private readonly destroyRef;
551
556
  readonly label: _angular_core.InputSignal<string | undefined>;
552
557
  readonly placeholder: _angular_core.InputSignal<string>;
553
558
  readonly options: _angular_core.InputSignal<DropdownOption[]>;
@@ -574,6 +579,7 @@ declare class DropdownComponent implements ControlValueAccessor {
574
579
  'ea-dropdown__trigger--open': boolean;
575
580
  'ea-dropdown__trigger--disabled': boolean;
576
581
  }>;
582
+ constructor();
577
583
  writeValue(val: string): void;
578
584
  registerOnChange(fn: (value: string) => void): void;
579
585
  registerOnTouched(fn: () => void): void;
@@ -602,6 +608,18 @@ declare class EagamiWordmarkComponent {
602
608
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<EagamiWordmarkComponent, "ea-eagami-wordmark", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
603
609
  }
604
610
 
611
+ type EmptyStateSize = 'sm' | 'md' | 'lg';
612
+ declare class EmptyStateComponent {
613
+ readonly title: _angular_core.InputSignal<string | undefined>;
614
+ readonly description: _angular_core.InputSignal<string | undefined>;
615
+ readonly size: _angular_core.InputSignal<EmptyStateSize>;
616
+ readonly hostClasses: _angular_core.Signal<{
617
+ [x: string]: boolean;
618
+ }>;
619
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<EmptyStateComponent, never>;
620
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<EmptyStateComponent, "ea-empty-state", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["[slot=media]", "[slot=actions]"], true, never>;
621
+ }
622
+
605
623
  declare class AlertCircleIconComponent {
606
624
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AlertCircleIconComponent, never>;
607
625
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertCircleIconComponent, "ea-icon-alert-circle", never, {}, {}, never, never, true, never>;
@@ -917,6 +935,7 @@ declare class InputComponent implements ControlValueAccessor, AfterViewInit {
917
935
  type MenuPlacement = 'bottom-start' | 'bottom-end' | 'top-start' | 'top-end';
918
936
  declare class MenuComponent {
919
937
  private readonly elRef;
938
+ private readonly listEl;
920
939
  readonly placement: _angular_core.InputSignal<MenuPlacement>;
921
940
  readonly disabled: _angular_core.InputSignal<boolean>;
922
941
  readonly ariaLabel: _angular_core.InputSignal<string>;
@@ -924,16 +943,20 @@ declare class MenuComponent {
924
943
  readonly opened: _angular_core.OutputEmitterRef<void>;
925
944
  readonly closed: _angular_core.OutputEmitterRef<void>;
926
945
  readonly menuId: _angular_core.WritableSignal<string>;
927
- readonly menuClasses: _angular_core.Signal<{
946
+ private triggerEl;
947
+ private readonly triggerRect;
948
+ readonly listClasses: _angular_core.Signal<{
928
949
  [x: string]: boolean;
929
950
  }>;
930
- toggle(): void;
951
+ readonly listStyle: _angular_core.Signal<Record<string, string>>;
952
+ toggleAt(triggerEl: HTMLElement): void;
953
+ openAt(triggerEl: HTMLElement): void;
931
954
  close(): void;
932
- handleTriggerKeydown(event: KeyboardEvent): void;
933
955
  onDocumentClick(event: Event): void;
934
956
  onEscape(): void;
957
+ onViewportChange(): void;
935
958
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
936
- 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>;
959
+ 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, ["*"], true, never>;
937
960
  }
938
961
 
939
962
  type MenuItemVariant = 'default' | 'danger';
@@ -947,6 +970,15 @@ declare class MenuItemComponent {
947
970
  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>;
948
971
  }
949
972
 
973
+ declare class MenuTriggerDirective {
974
+ private readonly el;
975
+ readonly menu: _angular_core.InputSignal<MenuComponent>;
976
+ handleClick(): void;
977
+ handleKeydown(event: KeyboardEvent): void;
978
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuTriggerDirective, never>;
979
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MenuTriggerDirective, "[eaMenuTrigger]", never, { "menu": { "alias": "eaMenuTrigger"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
980
+ }
981
+
950
982
  type PaginatorPlacement = 'left' | 'center' | 'right';
951
983
  interface PaginatorState {
952
984
  page: number;
@@ -1039,6 +1071,44 @@ declare class RadioComponent {
1039
1071
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<RadioComponent, "ea-radio", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1040
1072
  }
1041
1073
 
1074
+ type SegmentedSize = 'sm' | 'md' | 'lg';
1075
+ interface SegmentedOption {
1076
+ value: string;
1077
+ label: string;
1078
+ disabled?: boolean;
1079
+ }
1080
+ declare class SegmentedComponent implements ControlValueAccessor {
1081
+ readonly buttonEls: _angular_core.Signal<readonly ElementRef<HTMLButtonElement>[]>;
1082
+ readonly options: _angular_core.InputSignal<SegmentedOption[]>;
1083
+ readonly size: _angular_core.InputSignal<SegmentedSize>;
1084
+ readonly disabled: _angular_core.InputSignal<boolean>;
1085
+ readonly fullWidth: _angular_core.InputSignal<boolean>;
1086
+ readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
1087
+ readonly id: _angular_core.InputSignal<string>;
1088
+ readonly value: _angular_core.ModelSignal<string>;
1089
+ readonly changed: _angular_core.OutputEmitterRef<string>;
1090
+ private readonly _formDisabled;
1091
+ private onChange;
1092
+ private onTouched;
1093
+ readonly isDisabled: _angular_core.Signal<boolean>;
1094
+ readonly enabledOptions: _angular_core.Signal<SegmentedOption[]>;
1095
+ readonly hostClasses: _angular_core.Signal<{
1096
+ [x: string]: boolean;
1097
+ 'ea-segmented--full-width': boolean;
1098
+ 'ea-segmented--disabled': boolean;
1099
+ }>;
1100
+ writeValue(val: string): void;
1101
+ registerOnChange(fn: (value: string) => void): void;
1102
+ registerOnTouched(fn: () => void): void;
1103
+ setDisabledState(isDisabled: boolean): void;
1104
+ isSelected(option: SegmentedOption): boolean;
1105
+ isOptionDisabled(option: SegmentedOption): boolean;
1106
+ select(option: SegmentedOption): void;
1107
+ handleKeydown(event: KeyboardEvent, index: number): void;
1108
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SegmentedComponent, never>;
1109
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SegmentedComponent, "ea-segmented", never, { "options": { "alias": "options"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "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>;
1110
+ }
1111
+
1042
1112
  type SkeletonVariant = 'text' | 'circle' | 'rect';
1043
1113
  declare class SkeletonComponent {
1044
1114
  readonly variant: _angular_core.InputSignal<SkeletonVariant>;
@@ -1054,6 +1124,55 @@ declare class SkeletonComponent {
1054
1124
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonComponent, "ea-skeleton", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "animated": { "alias": "animated"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1055
1125
  }
1056
1126
 
1127
+ type SliderSize = 'sm' | 'md' | 'lg';
1128
+ declare class SliderComponent implements ControlValueAccessor {
1129
+ readonly trackEl: _angular_core.Signal<ElementRef<HTMLDivElement> | undefined>;
1130
+ readonly label: _angular_core.InputSignal<string | undefined>;
1131
+ readonly hint: _angular_core.InputSignal<string | undefined>;
1132
+ readonly errorMsg: _angular_core.InputSignal<string | undefined>;
1133
+ readonly min: _angular_core.InputSignal<number>;
1134
+ readonly max: _angular_core.InputSignal<number>;
1135
+ readonly step: _angular_core.InputSignal<number>;
1136
+ readonly size: _angular_core.InputSignal<SliderSize>;
1137
+ readonly disabled: _angular_core.InputSignal<boolean>;
1138
+ readonly required: _angular_core.InputSignal<boolean>;
1139
+ readonly showValue: _angular_core.InputSignal<boolean>;
1140
+ readonly showMinMaxLabels: _angular_core.InputSignal<boolean>;
1141
+ readonly formatValue: _angular_core.InputSignal<(value: number) => string>;
1142
+ readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
1143
+ readonly id: _angular_core.InputSignal<string>;
1144
+ readonly value: _angular_core.ModelSignal<number>;
1145
+ readonly changed: _angular_core.OutputEmitterRef<number>;
1146
+ private readonly _formDisabled;
1147
+ readonly dragging: _angular_core.WritableSignal<boolean>;
1148
+ private onChange;
1149
+ private onTouched;
1150
+ readonly isDisabled: _angular_core.Signal<boolean>;
1151
+ readonly clampedValue: _angular_core.Signal<number>;
1152
+ readonly percent: _angular_core.Signal<number>;
1153
+ readonly resolvedStatus: _angular_core.Signal<"default" | "error">;
1154
+ readonly showError: _angular_core.Signal<boolean>;
1155
+ readonly showHint: _angular_core.Signal<boolean>;
1156
+ readonly hostClasses: _angular_core.Signal<{
1157
+ [x: string]: boolean;
1158
+ 'ea-slider--disabled': boolean;
1159
+ 'ea-slider--dragging': boolean;
1160
+ }>;
1161
+ writeValue(val: number): void;
1162
+ registerOnChange(fn: (value: number) => void): void;
1163
+ registerOnTouched(fn: () => void): void;
1164
+ setDisabledState(isDisabled: boolean): void;
1165
+ handleKeydown(event: KeyboardEvent): void;
1166
+ handlePointerDown(event: PointerEvent): void;
1167
+ handlePointerMove(event: PointerEvent): void;
1168
+ handlePointerUp(event: PointerEvent): void;
1169
+ handleBlur(): void;
1170
+ private updateFromPointer;
1171
+ private commitValue;
1172
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SliderComponent, never>;
1173
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SliderComponent, "ea-slider", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "error"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "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; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "showMinMaxLabels": { "alias": "showMinMaxLabels"; "required": false; "isSignal": true; }; "formatValue": { "alias": "formatValue"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "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>;
1174
+ }
1175
+
1057
1176
  type SpinnerSize = 'sm' | 'md' | 'lg';
1058
1177
  declare class SpinnerComponent {
1059
1178
  readonly size: _angular_core.InputSignal<SpinnerSize>;
@@ -1070,6 +1189,7 @@ declare class SwitchComponent implements ControlValueAccessor {
1070
1189
  readonly label: _angular_core.InputSignal<string | undefined>;
1071
1190
  readonly size: _angular_core.InputSignal<SwitchSize>;
1072
1191
  readonly disabled: _angular_core.InputSignal<boolean>;
1192
+ readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
1073
1193
  readonly id: _angular_core.InputSignal<string>;
1074
1194
  readonly checked: _angular_core.ModelSignal<boolean>;
1075
1195
  readonly changed: _angular_core.OutputEmitterRef<boolean>;
@@ -1088,7 +1208,7 @@ declare class SwitchComponent implements ControlValueAccessor {
1088
1208
  setDisabledState(isDisabled: boolean): void;
1089
1209
  handleChange(): void;
1090
1210
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SwitchComponent, never>;
1091
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SwitchComponent, "ea-switch", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "changed": "changed"; }, never, never, true, never>;
1211
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SwitchComponent, "ea-switch", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "changed": "changed"; }, never, never, true, never>;
1092
1212
  }
1093
1213
 
1094
1214
  declare class TabComponent implements OnInit, OnDestroy {
@@ -1096,11 +1216,12 @@ declare class TabComponent implements OnInit, OnDestroy {
1096
1216
  readonly value: _angular_core.InputSignal<string>;
1097
1217
  readonly label: _angular_core.InputSignal<string>;
1098
1218
  readonly disabled: _angular_core.InputSignal<boolean>;
1219
+ readonly id: _angular_core.InputSignal<string>;
1099
1220
  readonly isActive: _angular_core.Signal<boolean>;
1100
1221
  ngOnInit(): void;
1101
1222
  ngOnDestroy(): void;
1102
1223
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabComponent, never>;
1103
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabComponent, "ea-tab", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
1224
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabComponent, "ea-tab", 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>;
1104
1225
  }
1105
1226
 
1106
1227
  type TabsVariant = 'underline' | 'filled';
@@ -1221,8 +1342,10 @@ declare class TooltipDirective implements OnDestroy {
1221
1342
  readonly eaTooltip: _angular_core.InputSignal<string>;
1222
1343
  readonly tooltipPosition: _angular_core.InputSignal<TooltipPosition>;
1223
1344
  private tooltipEl;
1345
+ private readonly tooltipId;
1224
1346
  private readonly showHandler;
1225
1347
  private readonly hideHandler;
1348
+ private readonly keydownHandler;
1226
1349
  constructor();
1227
1350
  ngOnDestroy(): void;
1228
1351
  private show;
@@ -1232,5 +1355,5 @@ declare class TooltipDirective implements OnDestroy {
1232
1355
  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>;
1233
1356
  }
1234
1357
 
1235
- 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 };
1236
- 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, EagamiWordmarkLayout, 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 };
1358
+ 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, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, FacebookIconComponent, FileIconComponent, FilterIconComponent, GithubIconComponent, GoogleIconComponent, HeartIconComponent, ImageIconComponent, InfoIconComponent, InputComponent, LinkIconComponent, LoaderIconComponent, LogOutIconComponent, MailIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MicrosoftIconComponent, MinusIconComponent, MoreHorizontalIconComponent, PaginatorComponent, PencilIconComponent, PlusIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RotateCcwIconComponent, SearchIconComponent, SegmentedComponent, SettingsIconComponent, SkeletonComponent, SliderComponent, SpinnerComponent, StarIconComponent, SwitchComponent, TabComponent, TabsComponent, TagComponent, TextareaComponent, ToastComponent, ToastService, TooltipDirective, TrashIconComponent, UploadIconComponent, UserIconComponent, XCircleIconComponent, XIconComponent, XTwitterIconComponent };
1359
+ 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, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateSize, InputSize, InputStatus, InputType, MenuItemVariant, MenuPlacement, PaginatorPlacement, PaginatorState, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, SegmentedOption, SegmentedSize, SkeletonVariant, SliderSize, SortDirection, SpinnerSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TextareaStatus, Toast, ToastOptions, ToastVariant, TooltipPosition };