@eagami/ui 5.22.1 → 5.24.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/fesm2022/eagami-ui.mjs +156 -36
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/_mixins.scss +36 -0
- package/types/eagami-ui.d.ts +80 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.24.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",
|
package/src/styles/_mixins.scss
CHANGED
|
@@ -149,6 +149,42 @@ $target-size-min: 24px;
|
|
|
149
149
|
}
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
+
// Section wrapper in a grouped select-like option list, and the rule an
|
|
153
|
+
// unlabelled section carries in place of a heading. The rule is a
|
|
154
|
+
// pseudo-element so it spans the list's inner edges instead of being inset by
|
|
155
|
+
// the option padding, and stays out of the option list entirely.
|
|
156
|
+
@mixin option-group {
|
|
157
|
+
position: relative;
|
|
158
|
+
|
|
159
|
+
&--ruled {
|
|
160
|
+
padding-top: 0.25em;
|
|
161
|
+
margin-top: 0.25em;
|
|
162
|
+
|
|
163
|
+
&::before {
|
|
164
|
+
position: absolute;
|
|
165
|
+
top: 0;
|
|
166
|
+
inset-inline-end: 0;
|
|
167
|
+
inset-inline-start: 0;
|
|
168
|
+
height: var(--border-width-thin);
|
|
169
|
+
background-color: var(--color-border-default);
|
|
170
|
+
content: '';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
// Heading above a labelled section, sized in em so it scales with the host
|
|
176
|
+
// component's `size`.
|
|
177
|
+
@mixin option-group-label {
|
|
178
|
+
display: block;
|
|
179
|
+
padding: 0.5em 0.75em 0.125em;
|
|
180
|
+
font-size: 0.8125em;
|
|
181
|
+
font-weight: var(--font-weight-semibold);
|
|
182
|
+
text-transform: uppercase;
|
|
183
|
+
letter-spacing: 0.08em;
|
|
184
|
+
color: var(--color-text-tertiary);
|
|
185
|
+
user-select: none;
|
|
186
|
+
}
|
|
187
|
+
|
|
152
188
|
// Strips the geometry the UA stylesheet forces on a `[popover]` element (a
|
|
153
189
|
// centred, viewport-filling, scrollable box) so a surface promoted into the top
|
|
154
190
|
// layer keeps the box it has in the normal layer. Colour and spacing chrome
|
package/types/eagami-ui.d.ts
CHANGED
|
@@ -673,6 +673,32 @@ interface SelectOption {
|
|
|
673
673
|
label: string;
|
|
674
674
|
disabled?: boolean;
|
|
675
675
|
}
|
|
676
|
+
/**
|
|
677
|
+
* A section of a select-like option list. A group carrying a `label` renders a
|
|
678
|
+
* non-interactive heading above its options; one without renders as a rule
|
|
679
|
+
* separating it from the section before it.
|
|
680
|
+
*/
|
|
681
|
+
interface SelectOptionGroup {
|
|
682
|
+
label?: string;
|
|
683
|
+
options: SelectOption[];
|
|
684
|
+
}
|
|
685
|
+
/** Option list accepted by select-like controls: flat, or split into groups. */
|
|
686
|
+
type SelectOptions = readonly SelectOption[] | readonly SelectOptionGroup[];
|
|
687
|
+
|
|
688
|
+
/** An option paired with its position in the flattened option list. */
|
|
689
|
+
interface IndexedOption {
|
|
690
|
+
option: SelectOption;
|
|
691
|
+
index: number;
|
|
692
|
+
}
|
|
693
|
+
/** A group ready to render, with headings and rules kept out of the index maths. */
|
|
694
|
+
interface RenderedGroup {
|
|
695
|
+
label: string | undefined;
|
|
696
|
+
/** Whether a rule renders above this group, in place of a heading. */
|
|
697
|
+
rule: boolean;
|
|
698
|
+
options: IndexedOption[];
|
|
699
|
+
}
|
|
700
|
+
/** Whether the consumer supplied groups rather than a flat option list. */
|
|
701
|
+
declare function isGrouped(options: SelectOptions): options is readonly SelectOptionGroup[];
|
|
676
702
|
|
|
677
703
|
/** Visual size of the autocomplete input. */
|
|
678
704
|
type AutocompleteSize = EaSize;
|
|
@@ -689,7 +715,8 @@ declare class AutocompleteComponent implements ControlValueAccessor {
|
|
|
689
715
|
/** Accessible name for the input and suggestion list when no visible label is provided. */
|
|
690
716
|
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
691
717
|
readonly placeholder: _angular_core.InputSignal<string>;
|
|
692
|
-
|
|
718
|
+
/** Selectable options, either flat or split into groups. */
|
|
719
|
+
readonly options: _angular_core.InputSignal<SelectOptions>;
|
|
693
720
|
readonly size: _angular_core.InputSignal<EaSize>;
|
|
694
721
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
695
722
|
readonly readonly: _angular_core.InputSignal<boolean>;
|
|
@@ -724,7 +751,14 @@ declare class AutocompleteComponent implements ControlValueAccessor {
|
|
|
724
751
|
readonly hasError: _angular_core.Signal<boolean>;
|
|
725
752
|
readonly showError: _angular_core.Signal<boolean>;
|
|
726
753
|
readonly showHint: _angular_core.Signal<boolean>;
|
|
754
|
+
private readonly optionGroups;
|
|
755
|
+
/** Whether the consumer supplied groups, which the list exposes as ARIA groups. */
|
|
756
|
+
protected readonly grouped: _angular_core.Signal<boolean>;
|
|
757
|
+
private readonly filteredGroups;
|
|
727
758
|
readonly filteredOptions: _angular_core.Signal<SelectOption[]>;
|
|
759
|
+
/** Groups to render, each option carrying its index into `filteredOptions`. */
|
|
760
|
+
protected readonly renderedGroups: _angular_core.Signal<RenderedGroup[]>;
|
|
761
|
+
protected readonly selectedIndex: _angular_core.Signal<number>;
|
|
728
762
|
readonly showList: _angular_core.Signal<boolean>;
|
|
729
763
|
readonly showEmpty: _angular_core.Signal<boolean>;
|
|
730
764
|
/** Empty-list message, falling back to the active locale's translation. */
|
|
@@ -1880,7 +1914,8 @@ declare class DropdownComponent implements ControlValueAccessor {
|
|
|
1880
1914
|
private readonly i18n;
|
|
1881
1915
|
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
1882
1916
|
readonly placeholder: _angular_core.InputSignal<string | undefined>;
|
|
1883
|
-
|
|
1917
|
+
/** Selectable options, either flat or split into groups. */
|
|
1918
|
+
readonly options: _angular_core.InputSignal<SelectOptions>;
|
|
1884
1919
|
readonly size: _angular_core.InputSignal<EaSize>;
|
|
1885
1920
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
1886
1921
|
readonly readonly: _angular_core.InputSignal<boolean>;
|
|
@@ -1907,6 +1942,14 @@ declare class DropdownComponent implements ControlValueAccessor {
|
|
|
1907
1942
|
readonly hasError: _angular_core.Signal<boolean>;
|
|
1908
1943
|
readonly showError: _angular_core.Signal<boolean>;
|
|
1909
1944
|
readonly showHint: _angular_core.Signal<boolean>;
|
|
1945
|
+
private readonly optionGroups;
|
|
1946
|
+
/** Whether the consumer supplied groups, which the list exposes as ARIA groups. */
|
|
1947
|
+
protected readonly grouped: _angular_core.Signal<boolean>;
|
|
1948
|
+
/** Every option in the order given, flattened across groups; drives all index maths. */
|
|
1949
|
+
private readonly flatOptions;
|
|
1950
|
+
/** Groups to render, each option carrying its index into the flattened list. */
|
|
1951
|
+
protected readonly renderedGroups: _angular_core.Signal<RenderedGroup[]>;
|
|
1952
|
+
protected readonly selectedIndex: _angular_core.Signal<number>;
|
|
1910
1953
|
readonly selectedLabel: _angular_core.Signal<string>;
|
|
1911
1954
|
/** Placeholder text, falling back to the active locale's translation. */
|
|
1912
1955
|
readonly resolvedPlaceholder: _angular_core.Signal<string>;
|
|
@@ -2595,7 +2638,8 @@ declare class MultiSelectComponent implements ControlValueAccessor {
|
|
|
2595
2638
|
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
2596
2639
|
readonly placeholder: _angular_core.InputSignal<string | undefined>;
|
|
2597
2640
|
readonly searchPlaceholder: _angular_core.InputSignal<string | undefined>;
|
|
2598
|
-
|
|
2641
|
+
/** Selectable options, either flat or split into groups. */
|
|
2642
|
+
readonly options: _angular_core.InputSignal<SelectOptions>;
|
|
2599
2643
|
readonly size: _angular_core.InputSignal<EaSize>;
|
|
2600
2644
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2601
2645
|
readonly readonly: _angular_core.InputSignal<boolean>;
|
|
@@ -2640,8 +2684,16 @@ declare class MultiSelectComponent implements ControlValueAccessor {
|
|
|
2640
2684
|
readonly showHint: _angular_core.Signal<boolean>;
|
|
2641
2685
|
/** Set-backed lookup for `selectedSet().has(value)`. */
|
|
2642
2686
|
readonly selectedSet: _angular_core.Signal<Set<string>>;
|
|
2687
|
+
private readonly optionGroups;
|
|
2688
|
+
/** Whether the consumer supplied groups, which the list exposes as ARIA groups. */
|
|
2689
|
+
protected readonly grouped: _angular_core.Signal<boolean>;
|
|
2690
|
+
/** Every option in the order given, flattened across groups. */
|
|
2691
|
+
private readonly flatOptions;
|
|
2692
|
+
private readonly filteredGroups;
|
|
2643
2693
|
/** Options matching the current search term (case-insensitive substring on label). */
|
|
2644
2694
|
readonly filteredOptions: _angular_core.Signal<readonly SelectOption[]>;
|
|
2695
|
+
/** Groups to render, each option carrying its index into `filteredOptions`. */
|
|
2696
|
+
protected readonly renderedGroups: _angular_core.Signal<RenderedGroup[]>;
|
|
2645
2697
|
/** Currently selected options, ordered to match the input `options`. */
|
|
2646
2698
|
readonly selectedOptions: _angular_core.Signal<readonly SelectOption[]>;
|
|
2647
2699
|
readonly hasValue: _angular_core.Signal<boolean>;
|
|
@@ -2727,6 +2779,7 @@ declare class MultiSelectComponent implements ControlValueAccessor {
|
|
|
2727
2779
|
private activateRow;
|
|
2728
2780
|
/** Reorder a value-set against the input `options` array. */
|
|
2729
2781
|
private orderedValues;
|
|
2782
|
+
private optionsFor;
|
|
2730
2783
|
private resetEditState;
|
|
2731
2784
|
private commit;
|
|
2732
2785
|
/**
|
|
@@ -3920,12 +3973,24 @@ declare class TimelineComponent {
|
|
|
3920
3973
|
|
|
3921
3974
|
/** Semantic colour scheme of a toast. */
|
|
3922
3975
|
type ToastVariant = 'default' | 'success' | 'warning' | 'error' | 'info';
|
|
3976
|
+
/** One run of a toast's title or message. */
|
|
3977
|
+
interface ToastSegment {
|
|
3978
|
+
text: string;
|
|
3979
|
+
/** Drawn at full strength, for the part the reader is meant to catch. */
|
|
3980
|
+
strong?: boolean;
|
|
3981
|
+
}
|
|
3982
|
+
/**
|
|
3983
|
+
* A toast's title or message: a plain string, or segments so the parts worth
|
|
3984
|
+
* catching (a name, a count) can be emphasized. Segments are bound as text and
|
|
3985
|
+
* rendered in order with nothing between them, so they read as one sentence.
|
|
3986
|
+
*/
|
|
3987
|
+
type ToastText = string | readonly ToastSegment[];
|
|
3923
3988
|
/** A single live toast notification rendered by `ea-toast`. */
|
|
3924
3989
|
interface Toast {
|
|
3925
3990
|
id: number;
|
|
3926
|
-
message:
|
|
3991
|
+
message: ToastText;
|
|
3927
3992
|
/** Heading shown above the message; the message steps back when set. */
|
|
3928
|
-
title?:
|
|
3993
|
+
title?: ToastText;
|
|
3929
3994
|
variant: ToastVariant;
|
|
3930
3995
|
duration: number;
|
|
3931
3996
|
/** Icon component rendered in place of the variant's own; `null` renders none. */
|
|
@@ -3934,7 +3999,7 @@ interface Toast {
|
|
|
3934
3999
|
/** Optional configuration for a toast; defaults to `default` variant and 4s duration. */
|
|
3935
4000
|
interface ToastOptions {
|
|
3936
4001
|
/** Heading shown above the message; the message steps back when set. */
|
|
3937
|
-
title?:
|
|
4002
|
+
title?: ToastText;
|
|
3938
4003
|
variant?: ToastVariant;
|
|
3939
4004
|
duration?: number;
|
|
3940
4005
|
/** Any icon component to render in place of the variant's own; `null` for no icon. */
|
|
@@ -3952,7 +4017,7 @@ declare class ToastService {
|
|
|
3952
4017
|
private paused;
|
|
3953
4018
|
readonly toasts: _angular_core.WritableSignal<Toast[]>;
|
|
3954
4019
|
/** Shows a toast and returns its id; pass `duration: 0` to disable auto-dismiss. */
|
|
3955
|
-
show(message:
|
|
4020
|
+
show(message: ToastText, options?: ToastOptions): number;
|
|
3956
4021
|
/**
|
|
3957
4022
|
* Suspends every auto-dismiss countdown, keeping the time each toast has
|
|
3958
4023
|
* left. The `<ea-toast />` outlet calls this while the pointer or keyboard
|
|
@@ -3963,13 +4028,13 @@ declare class ToastService {
|
|
|
3963
4028
|
/** Resumes auto-dismiss countdowns suspended by {@link pause}. */
|
|
3964
4029
|
resume(): void;
|
|
3965
4030
|
/** Shows a `success` toast and returns its id. */
|
|
3966
|
-
success(message:
|
|
4031
|
+
success(message: ToastText, duration?: number): number;
|
|
3967
4032
|
/** Shows an `error` toast and returns its id. */
|
|
3968
|
-
error(message:
|
|
4033
|
+
error(message: ToastText, duration?: number): number;
|
|
3969
4034
|
/** Shows a `warning` toast and returns its id. */
|
|
3970
|
-
warning(message:
|
|
4035
|
+
warning(message: ToastText, duration?: number): number;
|
|
3971
4036
|
/** Shows an `info` toast and returns its id. */
|
|
3972
|
-
info(message:
|
|
4037
|
+
info(message: ToastText, duration?: number): number;
|
|
3973
4038
|
/** Removes the toast with the given id, if it is still active. */
|
|
3974
4039
|
dismiss(id: number): void;
|
|
3975
4040
|
/** Removes all currently visible toasts. */
|
|
@@ -4000,8 +4065,9 @@ declare class ToastComponent {
|
|
|
4000
4065
|
/** Show a dismiss button on each toast. */
|
|
4001
4066
|
readonly clearable: _angular_core.InputSignal<boolean>;
|
|
4002
4067
|
protected readonly containerClass: _angular_core.Signal<string>;
|
|
4003
|
-
/** Errors and warnings interrupt like `ea-alert`; the rest wait politely. */
|
|
4004
4068
|
protected toastRole(variant: string): 'alert' | 'status';
|
|
4069
|
+
protected segmentsOf(text: ToastText): readonly ToastSegment[] | null;
|
|
4070
|
+
protected segmentClass(segment: ToastSegment): string;
|
|
4005
4071
|
protected onMouseEnter(): void;
|
|
4006
4072
|
protected onMouseLeave(): void;
|
|
4007
4073
|
protected onFocusIn(): void;
|
|
@@ -7782,5 +7848,5 @@ declare class ZoomOutIconComponent extends IconComponentBase {
|
|
|
7782
7848
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZoomOutIconComponent, "ea-icon-zoom-out", never, {}, {}, never, never, true, never>;
|
|
7783
7849
|
}
|
|
7784
7850
|
|
|
7785
|
-
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, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, ru, uk, validatePalette, visibleNodeIds, walkTree, zhCN };
|
|
7786
|
-
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, 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 };
|
|
7851
|
+
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 };
|
|
7852
|
+
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 };
|