@eagami/ui 2.0.0 → 2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagami/ui",
3
- "version": "2.0.0",
3
+ "version": "2.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",
@@ -71,6 +71,26 @@ interface EagamiMessages {
71
71
  dropdown: {
72
72
  placeholder: string;
73
73
  };
74
+ fileUploader: {
75
+ prompt: string;
76
+ promptSingle: string;
77
+ browse: string;
78
+ removeFile: (name: string) => string;
79
+ fileListLabel: string;
80
+ constraintsAccept: (accept: string) => string;
81
+ constraintsMaxSize: (size: string) => string;
82
+ constraintsMaxFiles: (count: number) => string;
83
+ rejectionType: (name: string) => string;
84
+ rejectionSize: (name: string, max: string) => string;
85
+ rejectionCount: (max: number) => string;
86
+ bytesUnit: {
87
+ b: string;
88
+ kb: string;
89
+ mb: string;
90
+ gb: string;
91
+ tb: string;
92
+ };
93
+ };
74
94
  input: {
75
95
  showPassword: string;
76
96
  hidePassword: string;
@@ -97,6 +117,11 @@ interface EagamiMessages {
97
117
  progressBar: {
98
118
  label: string;
99
119
  };
120
+ rating: {
121
+ label: string;
122
+ valueLabel: (value: number, max: number) => string;
123
+ clear: string;
124
+ };
100
125
  spinner: {
101
126
  label: string;
102
127
  };
@@ -1255,6 +1280,110 @@ declare class EmptyStateComponent {
1255
1280
  static ɵcmp: i0.ɵɵ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; }; "headingLevel": { "alias": "headingLevel"; "required": false; "isSignal": true; }; }, {}, never, ["[slot=media]", "[slot=actions]"], true, never>;
1256
1281
  }
1257
1282
 
1283
+ /** Visual size of the file uploader. */
1284
+ type FileUploaderSize = 'sm' | 'md' | 'lg';
1285
+ /** Reason a file was rejected during selection. */
1286
+ type FileUploaderRejectionReason = 'type' | 'size' | 'count';
1287
+ /** Detail object emitted on the `rejected` output when one or more files fail validation. */
1288
+ interface FileUploaderRejection {
1289
+ readonly file: File;
1290
+ readonly reason: FileUploaderRejectionReason;
1291
+ }
1292
+ /**
1293
+ * Multi-file uploader with a drag-and-drop zone and a per-file list. Pure UI:
1294
+ * the component manages selection, validation, and removal but does not perform
1295
+ * any network I/O — consumers are responsible for uploading the resulting
1296
+ * `File[]` and (optionally) feeding progress back via the `progress` map.
1297
+ *
1298
+ * The dropzone icon (default `<ea-icon-upload-cloud>`) is exposed as a content
1299
+ * slot via the `icon` attribute: project any element to override it, and the
1300
+ * dropzone's size-aware wrapper handles sizing automatically.
1301
+ *
1302
+ * @example
1303
+ * ```html
1304
+ * <ea-file-uploader label="Attach files">
1305
+ * <ea-icon-paperclip icon />
1306
+ * </ea-file-uploader>
1307
+ * ```
1308
+ */
1309
+ declare class FileUploaderComponent implements ControlValueAccessor {
1310
+ private readonly fileInputEl;
1311
+ private readonly dropzoneEl;
1312
+ protected readonly i18n: EagamiI18nService;
1313
+ readonly label: i0.InputSignal<string | undefined>;
1314
+ readonly hint: i0.InputSignal<string | undefined>;
1315
+ readonly errorMsg: i0.InputSignal<string | undefined>;
1316
+ readonly size: i0.InputSignal<FileUploaderSize>;
1317
+ readonly disabled: i0.InputSignal<boolean>;
1318
+ readonly required: i0.InputSignal<boolean>;
1319
+ readonly multiple: i0.InputSignal<boolean>;
1320
+ /** Comma-separated MIME types and / or file extensions, e.g. `'image/*,.pdf'`. */
1321
+ readonly accept: i0.InputSignal<string | undefined>;
1322
+ /** Max size per file in bytes. Files larger than this are rejected. */
1323
+ readonly maxSize: i0.InputSignal<number | undefined>;
1324
+ /** Max total number of files. Extra files are rejected. */
1325
+ readonly maxFiles: i0.InputSignal<number | undefined>;
1326
+ /** Toggle the file list under the dropzone. */
1327
+ readonly showFileList: i0.InputSignal<boolean>;
1328
+ /**
1329
+ * Optional per-file progress (0-100). Keyed by `File` object identity, so
1330
+ * consumers must keep the same `File` references between change-detection
1331
+ * runs. When unset, no progress bar is rendered.
1332
+ */
1333
+ readonly progress: i0.InputSignal<ReadonlyMap<File, number> | undefined>;
1334
+ readonly id: i0.InputSignal<string>;
1335
+ /** Two-way binding to the current `File[]`. Also written by Angular forms. */
1336
+ readonly value: i0.ModelSignal<readonly File[]>;
1337
+ /** Fires when one or more selected files fail validation. */
1338
+ readonly rejected: i0.OutputEmitterRef<readonly FileUploaderRejection[]>;
1339
+ /** Fires whenever a file is removed via its row's X button. */
1340
+ readonly fileRemoved: i0.OutputEmitterRef<File>;
1341
+ protected readonly isDragOver: i0.WritableSignal<boolean>;
1342
+ protected readonly isFocused: i0.WritableSignal<boolean>;
1343
+ private readonly _formDisabled;
1344
+ private onChange;
1345
+ private onTouched;
1346
+ protected readonly isDisabled: i0.Signal<boolean>;
1347
+ protected readonly hasError: i0.Signal<boolean>;
1348
+ protected readonly showError: i0.Signal<boolean>;
1349
+ protected readonly showHint: i0.Signal<boolean>;
1350
+ protected readonly hostClasses: i0.Signal<{
1351
+ [x: string]: boolean;
1352
+ 'ea-file-uploader-field--error': boolean;
1353
+ 'ea-file-uploader-field--disabled': boolean;
1354
+ 'ea-file-uploader-field--drag-over': boolean;
1355
+ 'ea-file-uploader-field--focused': boolean;
1356
+ }>;
1357
+ protected readonly errorId: i0.Signal<string>;
1358
+ protected readonly hintId: i0.Signal<string>;
1359
+ protected readonly constraintsId: i0.Signal<string>;
1360
+ protected readonly describedBy: i0.Signal<string | null>;
1361
+ /** Joined human-readable description of accept / maxSize / maxFiles limits. */
1362
+ protected readonly constraintsText: i0.Signal<string>;
1363
+ protected readonly promptText: i0.Signal<string>;
1364
+ writeValue(value: readonly File[] | null | undefined): void;
1365
+ registerOnChange(fn: (value: readonly File[]) => void): void;
1366
+ registerOnTouched(fn: () => void): void;
1367
+ setDisabledState(isDisabled: boolean): void;
1368
+ protected openFilePicker(): void;
1369
+ protected onDropzoneKeydown(event: KeyboardEvent): void;
1370
+ protected onDropzoneFocus(): void;
1371
+ protected onDropzoneBlur(): void;
1372
+ protected onFileSelected(event: Event): void;
1373
+ protected onDragOver(event: DragEvent): void;
1374
+ protected onDragLeave(event: DragEvent): void;
1375
+ protected onDrop(event: DragEvent): void;
1376
+ protected removeFile(file: File): void;
1377
+ private acceptFiles;
1378
+ protected formatBytes(bytes: number): string;
1379
+ protected iconKey(file: File): 'image' | 'film' | 'music' | 'archive' | 'text' | 'file';
1380
+ protected progressFor(file: File): number | undefined;
1381
+ /** Stable track key for the `@for` over `value()`. */
1382
+ protected trackFile(_index: number, file: File): string;
1383
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploaderComponent, never>;
1384
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploaderComponent, "ea-file-uploader", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "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; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "maxSize": { "alias": "maxSize"; "required": false; "isSignal": true; }; "maxFiles": { "alias": "maxFiles"; "required": false; "isSignal": true; }; "showFileList": { "alias": "showFileList"; "required": false; "isSignal": true; }; "progress": { "alias": "progress"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "rejected": "rejected"; "fileRemoved": "fileRemoved"; }, never, ["[icon]"], true, never>;
1385
+ }
1386
+
1258
1387
  /**
1259
1388
  * Primary classification for an icon component. Every icon ships with a single
1260
1389
  * `category` (read off the component's `static readonly category` field) plus
@@ -1291,13 +1420,22 @@ type IconComponentType = Type<unknown> & IconMeta;
1291
1420
  * config in their `@Component` decorator. Brand icons with their own host
1292
1421
  * bindings (e.g. a colour binding tied to a `brand` input) layer those onto
1293
1422
  * this base via additional `@HostBinding` getters.
1423
+ *
1424
+ * Feather-derived icons read the `strokeWidth` input via `[attr.stroke-width]`
1425
+ * in their SVG template, so consumers can thin or thicken any icon at the
1426
+ * call site (e.g. `<ea-icon-star [strokeWidth]="1.5" />`). Subclasses can
1427
+ * change the default by setting `static override readonly defaultStrokeWidth`
1428
+ * — used by icons whose dense paths read better at a different default
1429
+ * (e.g. camera, upload at 1.5).
1294
1430
  */
1295
1431
  declare abstract class IconComponentBase {
1296
1432
  readonly display = "inline-flex";
1297
1433
  readonly width = "1em";
1298
1434
  readonly height = "1em";
1435
+ static readonly defaultStrokeWidth: number;
1436
+ readonly strokeWidth: i0.InputSignal<number>;
1299
1437
  static ɵfac: i0.ɵɵFactoryDeclaration<IconComponentBase, never>;
1300
- static ɵdir: i0.ɵɵDirectiveDeclaration<IconComponentBase, never, never, {}, {}, never, never, true, never>;
1438
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IconComponentBase, never, never, { "strokeWidth": { "alias": "strokeWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1301
1439
  }
1302
1440
 
1303
1441
  /**
@@ -1655,6 +1793,7 @@ declare class CalendarIconComponent extends IconComponentBase {
1655
1793
  declare class CameraIconComponent extends IconComponentBase {
1656
1794
  static readonly slug = "camera";
1657
1795
  static readonly category: IconCategory;
1796
+ static readonly defaultStrokeWidth = 1.5;
1658
1797
  static readonly tags: ReadonlyArray<string>;
1659
1798
  static ɵfac: i0.ɵɵFactoryDeclaration<CameraIconComponent, never>;
1660
1799
  static ɵcmp: i0.ɵɵComponentDeclaration<CameraIconComponent, "ea-icon-camera", never, {}, {}, never, never, true, never>;
@@ -3835,6 +3974,7 @@ declare class UnlockIconComponent extends IconComponentBase {
3835
3974
  declare class UploadIconComponent extends IconComponentBase {
3836
3975
  static readonly slug = "upload";
3837
3976
  static readonly category: IconCategory;
3977
+ static readonly defaultStrokeWidth = 1.5;
3838
3978
  static readonly tags: ReadonlyArray<string>;
3839
3979
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadIconComponent, never>;
3840
3980
  static ɵcmp: i0.ɵɵComponentDeclaration<UploadIconComponent, "ea-icon-upload", never, {}, {}, never, never, true, never>;
@@ -4713,6 +4853,96 @@ declare class RangeSliderComponent implements ControlValueAccessor {
4713
4853
  static ɵcmp: i0.ɵɵComponentDeclaration<RangeSliderComponent, "ea-range-slider", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "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; }; "ariaLabelLow": { "alias": "aria-label-low"; "required": false; "isSignal": true; }; "ariaLabelHigh": { "alias": "aria-label-high"; "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>;
4714
4854
  }
4715
4855
 
4856
+ /** Per-position render state, computed from the current display value. */
4857
+ type RatingStarState = 'empty' | 'half' | 'full';
4858
+ /** Visual size of the rating. */
4859
+ type RatingSize = 'sm' | 'md' | 'lg';
4860
+ /**
4861
+ * Star-based rating input. Supports whole-star or half-star granularity (via
4862
+ * `allowHalf`), hover preview, keyboard navigation (Left/Right/Up/Down,
4863
+ * Home/End, 0-9 to jump), and a read-only display mode.
4864
+ *
4865
+ * The default `<ea-icon-star>` can be swapped via the `iconClass` input
4866
+ * (any standalone Angular component reference, e.g. `[iconClass]="HeartIconComponent"`).
4867
+ * When `allowHalf` is true, the half-position render uses `halfIconClass`
4868
+ * (default `<ea-icon-left-half-star>`); if a consumer supplies their own
4869
+ * `iconClass` without a matching `halfIconClass`, the half is rendered with the
4870
+ * default left-half-star.
4871
+ *
4872
+ * Integrates with Angular forms via `ControlValueAccessor`. Emits the new
4873
+ * value through the `value` model (numeric 0..max in 1 or 0.5 increments).
4874
+ */
4875
+ declare class RatingComponent implements ControlValueAccessor {
4876
+ private readonly starsEl;
4877
+ protected readonly i18n: EagamiI18nService;
4878
+ readonly label: i0.InputSignal<string | undefined>;
4879
+ readonly hint: i0.InputSignal<string | undefined>;
4880
+ readonly errorMsg: i0.InputSignal<string | undefined>;
4881
+ readonly size: i0.InputSignal<RatingSize>;
4882
+ readonly max: i0.InputSignal<number>;
4883
+ readonly allowHalf: i0.InputSignal<boolean>;
4884
+ readonly readonly: i0.InputSignal<boolean>;
4885
+ readonly disabled: i0.InputSignal<boolean>;
4886
+ readonly required: i0.InputSignal<boolean>;
4887
+ /** Clicking the current value clears the rating back to 0. */
4888
+ readonly clearable: i0.InputSignal<boolean>;
4889
+ /** Standalone component class rendered for empty / full positions. */
4890
+ readonly iconClass: i0.InputSignal<Type<unknown>>;
4891
+ /** Standalone component class rendered for half positions (when `allowHalf` is true). */
4892
+ readonly halfIconClass: i0.InputSignal<Type<unknown>>;
4893
+ readonly id: i0.InputSignal<string>;
4894
+ /** Current rating value, 0..max in 1 (or 0.5 when `allowHalf`) increments. */
4895
+ readonly value: i0.ModelSignal<number>;
4896
+ /** Fires when the user pre-selects a value via hover; `null` when the cursor leaves. */
4897
+ readonly hoverChanged: i0.OutputEmitterRef<number | null>;
4898
+ protected readonly hoverValue: i0.WritableSignal<number | null>;
4899
+ protected readonly isFocused: i0.WritableSignal<boolean>;
4900
+ private readonly _formDisabled;
4901
+ private onChange;
4902
+ private onTouched;
4903
+ protected readonly isDisabled: i0.Signal<boolean>;
4904
+ protected readonly isInteractive: i0.Signal<boolean>;
4905
+ protected readonly hasError: i0.Signal<boolean>;
4906
+ protected readonly showError: i0.Signal<boolean>;
4907
+ protected readonly showHint: i0.Signal<boolean>;
4908
+ protected readonly step: i0.Signal<1 | 0.5>;
4909
+ /** Value used to render the stars (hover preview wins over committed value). */
4910
+ protected readonly displayValue: i0.Signal<number>;
4911
+ /** 1..max positions for the @for loop. */
4912
+ protected readonly positions: i0.Signal<number[]>;
4913
+ protected readonly hostClasses: i0.Signal<{
4914
+ [x: string]: boolean;
4915
+ 'ea-rating-field--error': boolean;
4916
+ 'ea-rating-field--disabled': boolean;
4917
+ 'ea-rating-field--readonly': boolean;
4918
+ 'ea-rating-field--focused': boolean;
4919
+ }>;
4920
+ protected readonly errorId: i0.Signal<string>;
4921
+ protected readonly hintId: i0.Signal<string>;
4922
+ protected readonly describedBy: i0.Signal<string | null>;
4923
+ protected readonly resolvedAriaLabel: i0.Signal<string>;
4924
+ /** Resolves the render state for star `pos` against the current display value. */
4925
+ protected stateFor(pos: number): RatingStarState;
4926
+ /** Component class to instantiate for star `pos`. */
4927
+ protected iconForState(state: RatingStarState): Type<unknown>;
4928
+ protected starAriaLabel(pos: number): string;
4929
+ writeValue(value: number | null | undefined): void;
4930
+ registerOnChange(fn: (value: number) => void): void;
4931
+ registerOnTouched(fn: () => void): void;
4932
+ setDisabledState(isDisabled: boolean): void;
4933
+ protected onPointerMove(event: PointerEvent, pos: number): void;
4934
+ protected onPointerLeave(): void;
4935
+ protected onClick(event: MouseEvent, pos: number): void;
4936
+ protected onFocus(): void;
4937
+ protected onBlur(): void;
4938
+ protected onKeydown(event: KeyboardEvent): void;
4939
+ private commit;
4940
+ private clamp;
4941
+ private computePointerValue;
4942
+ static ɵfac: i0.ɵɵFactoryDeclaration<RatingComponent, never>;
4943
+ static ɵcmp: i0.ɵɵComponentDeclaration<RatingComponent, "ea-rating", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "allowHalf": { "alias": "allowHalf"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "iconClass": { "alias": "iconClass"; "required": false; "isSignal": true; }; "halfIconClass": { "alias": "halfIconClass"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "hoverChanged": "hoverChanged"; }, never, never, true, never>;
4944
+ }
4945
+
4716
4946
  /** Visual size of the segmented control. */
4717
4947
  type SegmentedSize = 'sm' | 'md' | 'lg';
4718
4948
  /**
@@ -5352,5 +5582,5 @@ declare class TooltipDirective implements OnDestroy {
5352
5582
  static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[eaTooltip]", never, { "eaTooltip": { "alias": "eaTooltip"; "required": true; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5353
5583
  }
5354
5584
 
5355
- 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, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, 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, EAGAMI_MESSAGES, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, Figma2IconComponent, FigmaIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FilmIconComponent, FilterIconComponent, FlagIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, 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, 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, Trash2IconComponent, TrashIconComponent, 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, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, computePopoverPosition, el, en, esES, frFR, frenchSpacing, iconDisplayName, pl, provideEagamiUi };
5356
- export type { 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, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DialogSize, DividerOrientation, DrawerPosition, DrawerSize, DropdownSize, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, MultiSelectSize, PaginatorAlign, PaginatorState, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, Toast, ToastOptions, ToastVariant, TooltipPosition };
5585
+ 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, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, 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, EAGAMI_MESSAGES, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, 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, 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, Trash2IconComponent, TrashIconComponent, 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, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, computePopoverPosition, el, en, esES, frFR, frenchSpacing, iconDisplayName, pl, provideEagamiUi };
5586
+ export type { 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, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DialogSize, DividerOrientation, DrawerPosition, DrawerSize, DropdownSize, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, MultiSelectSize, PaginatorAlign, PaginatorState, 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, ToastVariant, TooltipPosition };