@eagami/ui 0.11.1 → 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.1",
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>;
@@ -605,6 +608,18 @@ declare class EagamiWordmarkComponent {
605
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>;
606
609
  }
607
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
+
608
623
  declare class AlertCircleIconComponent {
609
624
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AlertCircleIconComponent, never>;
610
625
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertCircleIconComponent, "ea-icon-alert-circle", never, {}, {}, never, never, true, never>;
@@ -920,6 +935,7 @@ declare class InputComponent implements ControlValueAccessor, AfterViewInit {
920
935
  type MenuPlacement = 'bottom-start' | 'bottom-end' | 'top-start' | 'top-end';
921
936
  declare class MenuComponent {
922
937
  private readonly elRef;
938
+ private readonly listEl;
923
939
  readonly placement: _angular_core.InputSignal<MenuPlacement>;
924
940
  readonly disabled: _angular_core.InputSignal<boolean>;
925
941
  readonly ariaLabel: _angular_core.InputSignal<string>;
@@ -927,16 +943,20 @@ declare class MenuComponent {
927
943
  readonly opened: _angular_core.OutputEmitterRef<void>;
928
944
  readonly closed: _angular_core.OutputEmitterRef<void>;
929
945
  readonly menuId: _angular_core.WritableSignal<string>;
930
- readonly menuClasses: _angular_core.Signal<{
946
+ private triggerEl;
947
+ private readonly triggerRect;
948
+ readonly listClasses: _angular_core.Signal<{
931
949
  [x: string]: boolean;
932
950
  }>;
933
- toggle(): void;
951
+ readonly listStyle: _angular_core.Signal<Record<string, string>>;
952
+ toggleAt(triggerEl: HTMLElement): void;
953
+ openAt(triggerEl: HTMLElement): void;
934
954
  close(): void;
935
- handleTriggerKeydown(event: KeyboardEvent): void;
936
955
  onDocumentClick(event: Event): void;
937
956
  onEscape(): void;
957
+ onViewportChange(): void;
938
958
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
939
- 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>;
940
960
  }
941
961
 
942
962
  type MenuItemVariant = 'default' | 'danger';
@@ -950,6 +970,15 @@ declare class MenuItemComponent {
950
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>;
951
971
  }
952
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
+
953
982
  type PaginatorPlacement = 'left' | 'center' | 'right';
954
983
  interface PaginatorState {
955
984
  page: number;
@@ -1042,6 +1071,44 @@ declare class RadioComponent {
1042
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>;
1043
1072
  }
1044
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
+
1045
1112
  type SkeletonVariant = 'text' | 'circle' | 'rect';
1046
1113
  declare class SkeletonComponent {
1047
1114
  readonly variant: _angular_core.InputSignal<SkeletonVariant>;
@@ -1057,6 +1124,55 @@ declare class SkeletonComponent {
1057
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>;
1058
1125
  }
1059
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
+
1060
1176
  type SpinnerSize = 'sm' | 'md' | 'lg';
1061
1177
  declare class SpinnerComponent {
1062
1178
  readonly size: _angular_core.InputSignal<SpinnerSize>;
@@ -1073,6 +1189,7 @@ declare class SwitchComponent implements ControlValueAccessor {
1073
1189
  readonly label: _angular_core.InputSignal<string | undefined>;
1074
1190
  readonly size: _angular_core.InputSignal<SwitchSize>;
1075
1191
  readonly disabled: _angular_core.InputSignal<boolean>;
1192
+ readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
1076
1193
  readonly id: _angular_core.InputSignal<string>;
1077
1194
  readonly checked: _angular_core.ModelSignal<boolean>;
1078
1195
  readonly changed: _angular_core.OutputEmitterRef<boolean>;
@@ -1091,7 +1208,7 @@ declare class SwitchComponent implements ControlValueAccessor {
1091
1208
  setDisabledState(isDisabled: boolean): void;
1092
1209
  handleChange(): void;
1093
1210
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SwitchComponent, never>;
1094
- 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>;
1095
1212
  }
1096
1213
 
1097
1214
  declare class TabComponent implements OnInit, OnDestroy {
@@ -1099,11 +1216,12 @@ declare class TabComponent implements OnInit, OnDestroy {
1099
1216
  readonly value: _angular_core.InputSignal<string>;
1100
1217
  readonly label: _angular_core.InputSignal<string>;
1101
1218
  readonly disabled: _angular_core.InputSignal<boolean>;
1219
+ readonly id: _angular_core.InputSignal<string>;
1102
1220
  readonly isActive: _angular_core.Signal<boolean>;
1103
1221
  ngOnInit(): void;
1104
1222
  ngOnDestroy(): void;
1105
1223
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabComponent, never>;
1106
- 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>;
1107
1225
  }
1108
1226
 
1109
1227
  type TabsVariant = 'underline' | 'filled';
@@ -1224,8 +1342,10 @@ declare class TooltipDirective implements OnDestroy {
1224
1342
  readonly eaTooltip: _angular_core.InputSignal<string>;
1225
1343
  readonly tooltipPosition: _angular_core.InputSignal<TooltipPosition>;
1226
1344
  private tooltipEl;
1345
+ private readonly tooltipId;
1227
1346
  private readonly showHandler;
1228
1347
  private readonly hideHandler;
1348
+ private readonly keydownHandler;
1229
1349
  constructor();
1230
1350
  ngOnDestroy(): void;
1231
1351
  private show;
@@ -1235,5 +1355,5 @@ declare class TooltipDirective implements OnDestroy {
1235
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>;
1236
1356
  }
1237
1357
 
1238
- 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 };
1239
- 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 };