@eagami/ui 3.2.1 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/fesm2022/eagami-ui.mjs +113 -44
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/types/eagami-ui.d.ts +67 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.1.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",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"design-system",
|
|
12
12
|
"accessible"
|
|
13
13
|
],
|
|
14
|
-
"homepage": "https://
|
|
14
|
+
"homepage": "https://eagami.com/ui",
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
17
|
"url": "https://github.com/mwiraszka/eagami.git",
|
package/types/eagami-ui.d.ts
CHANGED
|
@@ -9,9 +9,23 @@ import * as _eagami_ui from '@eagami/ui';
|
|
|
9
9
|
*/
|
|
10
10
|
type EagamiLocale = 'en' | 'fr-FR' | 'el' | 'pl' | 'es-ES' | 'de' | 'pt-BR' | 'zh-CN' | 'is' | 'nl';
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
12
|
+
* Display metadata for a built-in locale: the language's name in its own
|
|
13
|
+
* language and a representative flag emoji.
|
|
14
|
+
*/
|
|
15
|
+
interface EagamiLocaleMeta {
|
|
16
|
+
locale: EagamiLocale;
|
|
17
|
+
label: string;
|
|
18
|
+
flag: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Display metadata for every built-in locale. The single source the Storybook
|
|
22
|
+
* locale toolbar and any consumer-built language switcher derive from, so the
|
|
23
|
+
* displayed list never drifts from the locales the library ships.
|
|
24
|
+
*/
|
|
25
|
+
declare const EAGAMI_LOCALE_META: readonly EagamiLocaleMeta[];
|
|
26
|
+
/**
|
|
27
|
+
* Supported locales for language switchers, in display order. Derived from
|
|
28
|
+
* `EAGAMI_LOCALE_META` so the two never drift.
|
|
15
29
|
*/
|
|
16
30
|
declare const EAGAMI_LOCALES: readonly EagamiLocale[];
|
|
17
31
|
/**
|
|
@@ -193,10 +207,25 @@ interface EagamiMessages {
|
|
|
193
207
|
type EagamiMessagesOverride = {
|
|
194
208
|
[G in keyof EagamiMessages]?: Partial<EagamiMessages[G]>;
|
|
195
209
|
};
|
|
210
|
+
/**
|
|
211
|
+
* A self-identifying locale dictionary. Import the ones you need and register
|
|
212
|
+
* them via `provideEagamiUi({ locales: [...] })` so only those ship in your
|
|
213
|
+
* bundle; English is always available without registration.
|
|
214
|
+
*/
|
|
215
|
+
interface EagamiLocaleBundle {
|
|
216
|
+
locale: EagamiLocale;
|
|
217
|
+
messages: EagamiMessages;
|
|
218
|
+
}
|
|
196
219
|
/** Configuration accepted by `provideEagamiUi`. */
|
|
197
220
|
interface EagamiI18nConfig {
|
|
198
|
-
/** Initial locale. Defaults to `'en'`. */
|
|
221
|
+
/** Initial locale. Defaults to `'en'`. Falls back to English if not registered. */
|
|
199
222
|
locale?: EagamiLocale;
|
|
223
|
+
/**
|
|
224
|
+
* Locale dictionaries to make available at runtime, beyond the built-in
|
|
225
|
+
* English. Pass `EAGAMI_ALL_LOCALES` for every shipped language, or a subset
|
|
226
|
+
* to keep your bundle lean.
|
|
227
|
+
*/
|
|
228
|
+
locales?: readonly EagamiLocaleBundle[];
|
|
200
229
|
/** Optional per-string overrides merged over the active locale's messages. */
|
|
201
230
|
messages?: EagamiMessagesOverride;
|
|
202
231
|
}
|
|
@@ -280,10 +309,13 @@ declare const EAGAMI_I18N_CONFIG: InjectionToken<EagamiI18nConfig>;
|
|
|
280
309
|
* Configures Eagami UI for the application.
|
|
281
310
|
*
|
|
282
311
|
* ```ts
|
|
312
|
+
* import { frFR, provideEagamiUi } from '@eagami/ui';
|
|
313
|
+
*
|
|
283
314
|
* bootstrapApplication(AppComponent, {
|
|
284
315
|
* providers: [
|
|
285
316
|
* provideEagamiUi({
|
|
286
317
|
* locale: 'fr-FR',
|
|
318
|
+
* locales: [frFR],
|
|
287
319
|
* palette: { primary: { base: '#3674a1' } },
|
|
288
320
|
* }),
|
|
289
321
|
* ],
|
|
@@ -291,47 +323,59 @@ declare const EAGAMI_I18N_CONFIG: InjectionToken<EagamiI18nConfig>;
|
|
|
291
323
|
* ```
|
|
292
324
|
*
|
|
293
325
|
* Optional. Without it, the library defaults to English and ships its
|
|
294
|
-
* built-in brand colours.
|
|
326
|
+
* built-in brand colours. Only English is bundled until you register more
|
|
327
|
+
* languages via `locales` (pass `EAGAMI_ALL_LOCALES` for all of them).
|
|
295
328
|
*/
|
|
296
329
|
declare function provideEagamiUi(config?: EagamiUiConfig): EnvironmentProviders;
|
|
297
330
|
|
|
298
331
|
/**
|
|
299
332
|
* Holds the active locale and resolves the matching message dictionary for
|
|
300
|
-
* every Eagami UI component.
|
|
301
|
-
*
|
|
302
|
-
*
|
|
333
|
+
* every Eagami UI component. English is always available; other languages are
|
|
334
|
+
* the ones registered via `provideEagamiUi({ locales })`. The `locale` signal
|
|
335
|
+
* is reactive, so changing it at runtime re-renders all components. Unknown or
|
|
336
|
+
* unregistered locales fall back to English.
|
|
303
337
|
*/
|
|
304
338
|
declare class EagamiI18nService {
|
|
305
339
|
private readonly config;
|
|
340
|
+
private readonly registered;
|
|
306
341
|
private readonly _locale;
|
|
307
342
|
/** The currently active locale. Read it reactively or call `setLocale()`. */
|
|
308
343
|
readonly locale: Signal<EagamiLocale>;
|
|
309
344
|
constructor();
|
|
310
345
|
/** The resolved message dictionary for the active locale. */
|
|
311
346
|
readonly messages: Signal<EagamiMessages>;
|
|
312
|
-
/** Switches the active locale; falls back to English if
|
|
347
|
+
/** Switches the active locale; falls back to English if it is not registered. */
|
|
313
348
|
setLocale(locale: EagamiLocale): void;
|
|
349
|
+
private resolveInitialLocale;
|
|
314
350
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EagamiI18nService, never>;
|
|
315
351
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<EagamiI18nService>;
|
|
316
352
|
}
|
|
317
353
|
|
|
318
|
-
|
|
319
|
-
|
|
354
|
+
declare const de: EagamiLocaleBundle;
|
|
355
|
+
|
|
356
|
+
declare const el: EagamiLocaleBundle;
|
|
357
|
+
|
|
358
|
+
declare const en: EagamiLocaleBundle;
|
|
359
|
+
|
|
360
|
+
declare const esES: EagamiLocaleBundle;
|
|
320
361
|
|
|
321
|
-
|
|
322
|
-
declare const en: EagamiMessages;
|
|
362
|
+
declare const frFR: EagamiLocaleBundle;
|
|
323
363
|
|
|
324
|
-
|
|
325
|
-
declare const esES: EagamiMessages;
|
|
364
|
+
declare const is: EagamiLocaleBundle;
|
|
326
365
|
|
|
327
|
-
|
|
328
|
-
declare const frFR: EagamiMessages;
|
|
366
|
+
declare const nl: EagamiLocaleBundle;
|
|
329
367
|
|
|
330
|
-
|
|
331
|
-
declare const pl: EagamiMessages;
|
|
368
|
+
declare const pl: EagamiLocaleBundle;
|
|
332
369
|
|
|
333
|
-
|
|
334
|
-
|
|
370
|
+
declare const ptBR: EagamiLocaleBundle;
|
|
371
|
+
|
|
372
|
+
declare const zhCN: EagamiLocaleBundle;
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* Every built-in locale bundle. Registering this pulls all shipped languages
|
|
376
|
+
* into the bundle; import individual locales instead to keep it lean.
|
|
377
|
+
*/
|
|
378
|
+
declare const EAGAMI_ALL_LOCALES: readonly EagamiLocaleBundle[];
|
|
335
379
|
|
|
336
380
|
/**
|
|
337
381
|
* Replaces regular spaces with U+202F (narrow non-breaking space) in the
|
|
@@ -6386,5 +6430,5 @@ declare class ZoomOutIconComponent extends IconComponentBase {
|
|
|
6386
6430
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZoomOutIconComponent, "ea-icon-zoom-out", never, {}, {}, never, never, true, never>;
|
|
6387
6431
|
}
|
|
6388
6432
|
|
|
6389
|
-
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkIconComponent, BottleIconComponent, BoxIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, 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_I18N_CONFIG, EAGAMI_LOCALES,
|
|
6390
|
-
export type { AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, DrawerPosition, DrawerWidth, DropdownSize, EaErrorMessages, EaSize, EaValidationErrorKey, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, ModePalette, ModeSurfaces, MultiSelectSize, PaginatorAlign, PaginatorSize, PaginatorState, PaletteConfig, PaletteRoles, PaletteShade, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, RatingSize, RatingStarState, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, Toast, ToastOptions, ToastPosition, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
|
|
6433
|
+
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkIconComponent, BottleIconComponent, BoxIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, ColorPickerComponent, ColumnsIconComponent, CommandIconComponent, CommandPaletteComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DEFAULT_PALETTE_ROLES, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideCircleIconComponent, DivideIconComponent, DivideSquareIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DribbbleIconComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_ALL_LOCALES, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_LOCALE_META, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FieldLabelComponent, FieldMessagesComponent, Figma2IconComponent, FigmaIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FlagIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HalfCircleIconComponent, HalfHeartIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KubernetesIconComponent, LampIconComponent, LayersIconComponent, LayoutIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MultiSelectComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SoccerBallIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TimePickerComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WCAG_AA, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, hexToOklch, iconDisplayName, is, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, validatePalette, visibleNodeIds, walkTree, zhCN };
|
|
6434
|
+
export type { AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, DrawerPosition, DrawerWidth, DropdownSize, EaErrorMessages, EaSize, EaValidationErrorKey, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiLocaleBundle, EagamiLocaleMeta, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, ModePalette, ModeSurfaces, MultiSelectSize, PaginatorAlign, PaginatorSize, PaginatorState, PaletteConfig, PaletteRoles, PaletteShade, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, RatingSize, RatingStarState, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, Toast, ToastOptions, ToastPosition, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
|