@eagami/ui 5.23.0 → 5.25.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": "5.23.0",
3
+ "version": "5.25.0",
4
4
  "description": "Lightweight, accessible, themeable Angular UI component library and icon set built on CSS custom properties",
5
5
  "author": "Michal Wiraszka <michal@eagami.com>",
6
6
  "license": "MIT",
@@ -9,9 +9,20 @@
9
9
  // returns. Also keeps the box unambiguous once the bubble is promoted into
10
10
  // the top layer, where the containing block is the viewport either way.
11
11
  position: fixed;
12
- // Template content can contain unbreakable element rows (avatars, icon rows)
13
- // that a max-width cannot wrap; let the bubble grow instead of clipping them
14
- min-width: min-content;
12
+ // A bubble clamped to the viewport has nowhere left to overflow to, so what
13
+ // the cap cuts off scrolls inside it. Both axes: template content can hold
14
+ // rows (avatars, icon rows) too unbreakable to wrap
15
+ overflow: auto;
16
+ // The consumer's `maxWidth` arrives as `--ea-tooltip-max-width` so the viewport
17
+ // cap can win here instead of losing a specificity fight with an inline style.
18
+ // The directive reads the margin token too, so keep it a px length
19
+ max-width: min(
20
+ var(--ea-tooltip-max-width, 100vw),
21
+ calc(100vw - 2 * var(--ea-tooltip-viewport-margin, 8px))
22
+ );
23
+ // dvh, so retracting mobile browser chrome cannot leave the bubble taller than
24
+ // what the user can actually see
25
+ max-height: calc(100dvh - 2 * var(--ea-tooltip-viewport-margin, 8px));
15
26
  padding: var(--space-1-5) var(--space-2-5);
16
27
  font-family: var(--font-family-sans);
17
28
  font-size: var(--font-size-xs);
@@ -29,6 +40,17 @@
29
40
  animation: ea-tooltip-fade-in var(--duration-fast) var(--ease-out);
30
41
  @include ea.elevated-surface-border;
31
42
 
43
+ // An explicit `maxWidth` is a width to wrap at, not only a width to stop at
44
+ &--wrapping {
45
+ white-space: normal;
46
+ }
47
+
48
+ // A bubble the cap cut content off from is the one kind worth reaching with a
49
+ // pointer, since it has a scrollbar; the rest stay click-through
50
+ &--scrollable {
51
+ pointer-events: auto;
52
+ }
53
+
32
54
  @media (hover: none) {
33
55
  display: none;
34
56
  }
@@ -37,6 +59,8 @@
37
59
  // so only the UA's popover geometry needs undoing once it is promoted.
38
60
  &[popover] {
39
61
  @include ea.top-layer-reset;
62
+ // the reset clears the UA popover's overflow, which the clamp still needs
63
+ overflow: auto;
40
64
  }
41
65
  }
42
66
 
@@ -3571,6 +3571,13 @@ type TooltipPosition = 'top' | 'bottom' | 'left' | 'right';
3571
3571
  * descendant of the host as well as the host itself. A host listener paired
3572
3572
  * with `eaTooltip` has to use `focusin` for the same reason: `focus` does not
3573
3573
  * bubble, so it never fires when the focus lands on a child.
3574
+ *
3575
+ * Bubbles never grow past the viewport: they clamp to it, minus
3576
+ * `--ea-tooltip-viewport-margin` on each side, and scroll whatever the clamp
3577
+ * cuts off. A clamped bubble takes pointer events so that scrollbar is
3578
+ * reachable, which also means it waits `dismissDelay` before hiding rather than
3579
+ * going the moment the pointer leaves the trigger. Bubbles that fit stay
3580
+ * display-only.
3574
3581
  */
3575
3582
  declare class TooltipDirective implements OnDestroy {
3576
3583
  private readonly el;
@@ -3578,14 +3585,26 @@ declare class TooltipDirective implements OnDestroy {
3578
3585
  private readonly viewContainer;
3579
3586
  readonly eaTooltip: _angular_core.InputSignal<string | TemplateRef<unknown>>;
3580
3587
  readonly tooltipPosition: _angular_core.InputSignal<TooltipPosition>;
3581
- /** Max width in px; the text wraps at this width. Clamped to a 50px floor. */
3588
+ /**
3589
+ * Max width in px; the text wraps at this width. Clamped to a 50px floor, and
3590
+ * to the viewport, which no value can push the bubble past.
3591
+ */
3582
3592
  readonly maxWidth: _angular_core.InputSignal<number | undefined>;
3593
+ /**
3594
+ * Grace period in ms before a bubble the viewport clamp made scrollable hides
3595
+ * after the pointer leaves, long enough to cross the gap onto the bubble and
3596
+ * reach its scrollbar. Bubbles that fit hide immediately.
3597
+ */
3598
+ readonly dismissDelay: _angular_core.InputSignal<number>;
3583
3599
  private tooltipEl;
3584
3600
  private templateView;
3601
+ private scrollable;
3602
+ private hideTimer;
3585
3603
  private readonly tooltipId;
3586
3604
  private readonly hoverMql;
3587
3605
  private readonly showHandler;
3588
3606
  private readonly hideHandler;
3607
+ private readonly bubbleEnterHandler;
3589
3608
  private readonly supportsFocusVisible;
3590
3609
  private readonly focusHandler;
3591
3610
  private readonly keydownHandler;
@@ -3599,14 +3618,18 @@ declare class TooltipDirective implements OnDestroy {
3599
3618
  private syncPointerListeners;
3600
3619
  private show;
3601
3620
  private shrinkToContent;
3621
+ private requestHide;
3622
+ private cancelPendingHide;
3602
3623
  private hide;
3603
3624
  private attachRepositionListeners;
3604
3625
  private detachRepositionListeners;
3605
3626
  private appendDescribedBy;
3606
3627
  private removeDescribedBy;
3607
3628
  private positionTooltip;
3629
+ private viewportMargin;
3630
+ private syncScrollable;
3608
3631
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipDirective, never>;
3609
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TooltipDirective, "[eaTooltip]", never, { "eaTooltip": { "alias": "eaTooltip"; "required": true; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3632
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TooltipDirective, "[eaTooltip]", never, { "eaTooltip": { "alias": "eaTooltip"; "required": true; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "dismissDelay": { "alias": "dismissDelay"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3610
3633
  }
3611
3634
 
3612
3635
  /** Semantic colour scheme of a tag. */
@@ -3973,12 +3996,24 @@ declare class TimelineComponent {
3973
3996
 
3974
3997
  /** Semantic colour scheme of a toast. */
3975
3998
  type ToastVariant = 'default' | 'success' | 'warning' | 'error' | 'info';
3999
+ /** One run of a toast's title or message. */
4000
+ interface ToastSegment {
4001
+ text: string;
4002
+ /** Drawn at full strength, for the part the reader is meant to catch. */
4003
+ strong?: boolean;
4004
+ }
4005
+ /**
4006
+ * A toast's title or message: a plain string, or segments so the parts worth
4007
+ * catching (a name, a count) can be emphasized. Segments are bound as text and
4008
+ * rendered in order with nothing between them, so they read as one sentence.
4009
+ */
4010
+ type ToastText = string | readonly ToastSegment[];
3976
4011
  /** A single live toast notification rendered by `ea-toast`. */
3977
4012
  interface Toast {
3978
4013
  id: number;
3979
- message: string;
4014
+ message: ToastText;
3980
4015
  /** Heading shown above the message; the message steps back when set. */
3981
- title?: string;
4016
+ title?: ToastText;
3982
4017
  variant: ToastVariant;
3983
4018
  duration: number;
3984
4019
  /** Icon component rendered in place of the variant's own; `null` renders none. */
@@ -3987,7 +4022,7 @@ interface Toast {
3987
4022
  /** Optional configuration for a toast; defaults to `default` variant and 4s duration. */
3988
4023
  interface ToastOptions {
3989
4024
  /** Heading shown above the message; the message steps back when set. */
3990
- title?: string;
4025
+ title?: ToastText;
3991
4026
  variant?: ToastVariant;
3992
4027
  duration?: number;
3993
4028
  /** Any icon component to render in place of the variant's own; `null` for no icon. */
@@ -4005,7 +4040,7 @@ declare class ToastService {
4005
4040
  private paused;
4006
4041
  readonly toasts: _angular_core.WritableSignal<Toast[]>;
4007
4042
  /** Shows a toast and returns its id; pass `duration: 0` to disable auto-dismiss. */
4008
- show(message: string, options?: ToastOptions): number;
4043
+ show(message: ToastText, options?: ToastOptions): number;
4009
4044
  /**
4010
4045
  * Suspends every auto-dismiss countdown, keeping the time each toast has
4011
4046
  * left. The `<ea-toast />` outlet calls this while the pointer or keyboard
@@ -4016,13 +4051,13 @@ declare class ToastService {
4016
4051
  /** Resumes auto-dismiss countdowns suspended by {@link pause}. */
4017
4052
  resume(): void;
4018
4053
  /** Shows a `success` toast and returns its id. */
4019
- success(message: string, duration?: number): number;
4054
+ success(message: ToastText, duration?: number): number;
4020
4055
  /** Shows an `error` toast and returns its id. */
4021
- error(message: string, duration?: number): number;
4056
+ error(message: ToastText, duration?: number): number;
4022
4057
  /** Shows a `warning` toast and returns its id. */
4023
- warning(message: string, duration?: number): number;
4058
+ warning(message: ToastText, duration?: number): number;
4024
4059
  /** Shows an `info` toast and returns its id. */
4025
- info(message: string, duration?: number): number;
4060
+ info(message: ToastText, duration?: number): number;
4026
4061
  /** Removes the toast with the given id, if it is still active. */
4027
4062
  dismiss(id: number): void;
4028
4063
  /** Removes all currently visible toasts. */
@@ -4053,8 +4088,9 @@ declare class ToastComponent {
4053
4088
  /** Show a dismiss button on each toast. */
4054
4089
  readonly clearable: _angular_core.InputSignal<boolean>;
4055
4090
  protected readonly containerClass: _angular_core.Signal<string>;
4056
- /** Errors and warnings interrupt like `ea-alert`; the rest wait politely. */
4057
4091
  protected toastRole(variant: string): 'alert' | 'status';
4092
+ protected segmentsOf(text: ToastText): readonly ToastSegment[] | null;
4093
+ protected segmentClass(segment: ToastSegment): string;
4058
4094
  protected onMouseEnter(): void;
4059
4095
  protected onMouseLeave(): void;
4060
4096
  protected onFocusIn(): void;
@@ -7836,4 +7872,4 @@ declare class ZoomOutIconComponent extends IconComponentBase {
7836
7872
  }
7837
7873
 
7838
7874
  export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, AndroidIconComponent, AngularIconComponent, AnthropicIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AspectRatioIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeCheckIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BellRingIconComponent, BitcoinIconComponent, BlueskyIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkCheckIconComponent, BookmarkIconComponent, BookmarkPlusIconComponent, BotIconComponent, BottleIconComponent, BoxIconComponent, BrainIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, BugIconComponent, BuildingIconComponent, ButtonComponent, CalculatorIconComponent, CalendarCheckIconComponent, CalendarDaysIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClapperboardIconComponent, ClipboardCheckIconComponent, ClipboardIconComponent, ClipboardListIconComponent, 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, FileAudioIconComponent, FileCheckIconComponent, FileIconComponent, FileImageIconComponent, FileMinusIconComponent, FilePdfIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FileVideoIconComponent, FilmIconComponent, FilterIconComponent, FilterXIconComponent, FingerprintIconComponent, FlagIconComponent, FlameIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderOpenIconComponent, FolderPlusIconComponent, FormFieldComponent, FramerIconComponent, FrownIconComponent, GaugeIconComponent, GeminiIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitCompareIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HalfCircleIconComponent, HalfHeartIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HistoryIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, ImagesIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KeyboardIconComponent, KeyframeIconComponent, KubernetesIconComponent, LampIconComponent, LanguagesIconComponent, LayersIconComponent, LayoutIconComponent, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, LightbulbIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailCheckIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MegaphoneIconComponent, 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, NodejsIconComponent, NotionIconComponent, NpmIconComponent, NumberInputComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaletteIconComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PictureInPictureIconComponent, PieChartIconComponent, PinIconComponent, PinterestIconComponent, PlayCircleIconComponent, PlayIconComponent, PlaylistIconComponent, PlugIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, PythonIconComponent, QrCodeIconComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, ReactIconComponent, ReceiptIconComponent, RecordIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RedoIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RocketIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScanIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, ShareIconComponent, ShieldCheckIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShopifyIconComponent, 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, SubtitlesIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SvelteIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, TimecodeIconComponent, TimelineComponent, TimerIconComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TranscodeIconComponent, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrimIconComponent, 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, VueIconComponent, WCAG_AA, WalletIconComponent, WandIconComponent, WatchIconComponent, WaveformIconComponent, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, WordpressIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, ar, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, he, hexToOklch, hi, iconDisplayName, is, isGrouped, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, ru, uk, validatePalette, visibleNodeIds, walkTree, zhCN };
7839
- export type { AccordionHeadingLevel, AccordionSize, AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, BreadcrumbsSize, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSize, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, DrawerAnimation, DrawerMode, DrawerPosition, DrawerSize, DropdownSize, EaErrorMessages, EaSize, EaValidationErrorKey, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiLocaleBundle, EagamiLocaleLoader, EagamiLocaleMeta, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiUiConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, FormFieldSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, MenuSize, ModePalette, ModeSurfaces, MultiSelectSize, NumberInputSize, PaginatorAlign, PaginatorSize, PaginatorState, PaletteConfig, PaletteRoles, PaletteShade, PopoverMaxWidth, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, RatingSize, RatingStarState, SegmentedSize, SelectOption, SelectOptionGroup, SelectOptions, SkeletonVariant, SliderSize, SpinnerSize, StepperOrientation, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagTooltip, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, TimelineAlign, TimelineItem, TimelineItemColor, TimelineOrientation, TimelineSize, Toast, ToastOptions, ToastPosition, ToastSize, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
7875
+ export type { AccordionHeadingLevel, AccordionSize, AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, BreadcrumbsSize, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSize, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, DrawerAnimation, DrawerMode, DrawerPosition, DrawerSize, DropdownSize, EaErrorMessages, EaSize, EaValidationErrorKey, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiLocaleBundle, EagamiLocaleLoader, EagamiLocaleMeta, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiUiConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, FormFieldSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, MenuSize, ModePalette, ModeSurfaces, MultiSelectSize, NumberInputSize, PaginatorAlign, PaginatorSize, PaginatorState, PaletteConfig, PaletteRoles, PaletteShade, PopoverMaxWidth, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, RatingSize, RatingStarState, SegmentedSize, SelectOption, SelectOptionGroup, SelectOptions, SkeletonVariant, SliderSize, SpinnerSize, StepperOrientation, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagTooltip, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, TimelineAlign, TimelineItem, TimelineItemColor, TimelineOrientation, TimelineSize, Toast, ToastOptions, ToastPosition, ToastSegment, ToastSize, ToastText, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };