@eagami/ui 1.4.0 → 1.5.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 +968 -103
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/tokens/_colors.scss +13 -0
- package/src/styles/tokens/_typography.scss +23 -2
- package/types/eagami-ui.d.ts +181 -5
package/package.json
CHANGED
|
@@ -132,6 +132,19 @@
|
|
|
132
132
|
--color-info-default: var(--color-info-600);
|
|
133
133
|
--color-info-subtle: var(--color-info-50);
|
|
134
134
|
--color-info-muted: var(--color-info-100);
|
|
135
|
+
|
|
136
|
+
// Color-picker mechanics — pure RGB primaries that build the hue wheel and
|
|
137
|
+
// the saturation/value gradient. These are intrinsic to the picker UI, not
|
|
138
|
+
// themeable, but live here so component SCSS stays literal-free.
|
|
139
|
+
--color-picker-hue-red: #ff0000;
|
|
140
|
+
--color-picker-hue-yellow: #ffff00;
|
|
141
|
+
--color-picker-hue-green: #00ff00;
|
|
142
|
+
--color-picker-hue-cyan: #00ffff;
|
|
143
|
+
--color-picker-hue-blue: #0000ff;
|
|
144
|
+
--color-picker-hue-magenta: #ff00ff;
|
|
145
|
+
--color-picker-sv-white: #ffffff;
|
|
146
|
+
--color-picker-sv-black: #000000;
|
|
147
|
+
--color-picker-thumb-halo: rgba(0, 0, 0, 0.25);
|
|
135
148
|
}
|
|
136
149
|
|
|
137
150
|
// ---------------------------------------------------------------------------
|
|
@@ -107,8 +107,29 @@
|
|
|
107
107
|
--text-label-sm-weight: var(--font-weight-medium);
|
|
108
108
|
--text-label-sm-lh: var(--line-height-tight);
|
|
109
109
|
|
|
110
|
-
// Helper / caption
|
|
111
|
-
|
|
110
|
+
// Helper / caption — used for field-level hint and error messages. Sits
|
|
111
|
+
// between `--font-size-xs` (12px) and `--font-size-sm` (14px) at 13px so
|
|
112
|
+
// it stays visually subordinate to the field's label without dropping into
|
|
113
|
+
// the "barely readable" zone that 12px hits on dense forms.
|
|
114
|
+
//
|
|
115
|
+
// STANDARD — every form-like component (anything exposing `errorMsg` and/or
|
|
116
|
+
// `hint`) must render its messages identically. Mirror `<ea-input>` exactly:
|
|
117
|
+
// 1. `<p class="ea-{name}-field__message ea-{name}-field__message--error">`
|
|
118
|
+
// (or `--hint`) with `role="alert"` on the error variant and an `id`
|
|
119
|
+
// matching the field's `aria-describedby`.
|
|
120
|
+
// 2. The first child of the error `<p>` is always
|
|
121
|
+
// `<ea-icon-alert-circle class="ea-{name}-field__message-icon" />`.
|
|
122
|
+
// Hints render text-only (no icon).
|
|
123
|
+
// 3. `__message` uses `display: flex; align-items: center; gap: var(--space-1)`
|
|
124
|
+
// plus the three `--text-helper-*` tokens above. Never hard-code a
|
|
125
|
+
// font-size on `__message`.
|
|
126
|
+
// 4. `__message-icon` uses `flex-shrink: 0; width: 0.875em; height: 0.875em`
|
|
127
|
+
// so the icon scales with the text.
|
|
128
|
+
// 5. Error color is `var(--color-error-default)`. Hint color is component-
|
|
129
|
+
// specific (`--color-text-secondary` or `inherit`) but stays consistent
|
|
130
|
+
// within a component.
|
|
131
|
+
// 6. `AlertCircleIconComponent` must be in the component's `imports: [...]`.
|
|
132
|
+
--text-helper-size: 0.8125rem; // 13px
|
|
112
133
|
--text-helper-weight: var(--font-weight-regular);
|
|
113
134
|
--text-helper-lh: var(--line-height-normal);
|
|
114
135
|
|
package/types/eagami-ui.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, EnvironmentProviders, Signal, OnDestroy, ElementRef, TemplateRef, Type,
|
|
2
|
+
import { InjectionToken, EnvironmentProviders, Signal, OnDestroy, ElementRef, TemplateRef, Type, OnInit } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import * as _eagami_ui from '@eagami/ui';
|
|
5
5
|
|
|
@@ -40,6 +40,16 @@ interface EagamiMessages {
|
|
|
40
40
|
groupLabel: (length: number) => string;
|
|
41
41
|
digitLabel: (index: number, length: number) => string;
|
|
42
42
|
};
|
|
43
|
+
colorPicker: {
|
|
44
|
+
placeholder: string;
|
|
45
|
+
clear: string;
|
|
46
|
+
hue: string;
|
|
47
|
+
saturationAndValue: string;
|
|
48
|
+
alpha: string;
|
|
49
|
+
eyedropper: string;
|
|
50
|
+
presets: string;
|
|
51
|
+
toggleFormat: string;
|
|
52
|
+
};
|
|
43
53
|
dataTable: {
|
|
44
54
|
noData: string;
|
|
45
55
|
};
|
|
@@ -644,6 +654,161 @@ declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
644
654
|
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ea-checkbox", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "count": { "alias": "count"; "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; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "changed": "changed"; }, never, never, true, never>;
|
|
645
655
|
}
|
|
646
656
|
|
|
657
|
+
/** Visual size of the color picker trigger. */
|
|
658
|
+
type ColorPickerSize = 'sm' | 'md' | 'lg';
|
|
659
|
+
/** Format used to emit the selected value via `value` / `changed`. */
|
|
660
|
+
type ColorPickerFormat = 'hex' | 'rgb' | 'hsl';
|
|
661
|
+
/** Which group of inputs the popover currently shows (hex string or RGB channels). */
|
|
662
|
+
type ColorPickerInputMode = 'hex' | 'rgb';
|
|
663
|
+
/** Value accepted via `writeValue` — any CSS color string or `null`. */
|
|
664
|
+
type ColorPickerValue = string | null;
|
|
665
|
+
interface Rgb {
|
|
666
|
+
r: number;
|
|
667
|
+
g: number;
|
|
668
|
+
b: number;
|
|
669
|
+
}
|
|
670
|
+
/**
|
|
671
|
+
* Popover color picker with a saturation/value gradient area, hue slider,
|
|
672
|
+
* optional alpha slider, hex + RGB inputs, a configurable preset palette,
|
|
673
|
+
* and an eyedropper (Chromium browsers). Integrates with Angular forms via
|
|
674
|
+
* `ControlValueAccessor`. Accepts any CSS color string in `writeValue`.
|
|
675
|
+
*/
|
|
676
|
+
declare class ColorPickerComponent implements ControlValueAccessor {
|
|
677
|
+
private readonly hostEl;
|
|
678
|
+
private readonly triggerEl;
|
|
679
|
+
private readonly popoverEl;
|
|
680
|
+
private readonly svAreaEl;
|
|
681
|
+
private readonly hueTrackEl;
|
|
682
|
+
private readonly alphaTrackEl;
|
|
683
|
+
private readonly injector;
|
|
684
|
+
private readonly destroyRef;
|
|
685
|
+
protected readonly i18n: EagamiI18nService;
|
|
686
|
+
readonly label: i0.InputSignal<string | undefined>;
|
|
687
|
+
readonly placeholder: i0.InputSignal<string | undefined>;
|
|
688
|
+
readonly size: i0.InputSignal<ColorPickerSize>;
|
|
689
|
+
readonly disabled: i0.InputSignal<boolean>;
|
|
690
|
+
readonly readonly: i0.InputSignal<boolean>;
|
|
691
|
+
readonly required: i0.InputSignal<boolean>;
|
|
692
|
+
readonly hint: i0.InputSignal<string | undefined>;
|
|
693
|
+
readonly errorMsg: i0.InputSignal<string | undefined>;
|
|
694
|
+
/** Whether to show the alpha slider. When `false` the emitted value always has alpha = 1. */
|
|
695
|
+
readonly showAlpha: i0.InputSignal<boolean>;
|
|
696
|
+
/** Output format for emitted values. */
|
|
697
|
+
readonly format: i0.InputSignal<ColorPickerFormat>;
|
|
698
|
+
/** Preset swatches shown at the bottom of the popover. Pass an empty array to hide. */
|
|
699
|
+
readonly presets: i0.InputSignal<readonly string[]>;
|
|
700
|
+
readonly id: i0.InputSignal<string>;
|
|
701
|
+
readonly value: i0.ModelSignal<string | null>;
|
|
702
|
+
/** Fires with the new color string whenever the selection changes. */
|
|
703
|
+
readonly changed: i0.OutputEmitterRef<string | null>;
|
|
704
|
+
readonly isOpen: i0.WritableSignal<boolean>;
|
|
705
|
+
private readonly hue;
|
|
706
|
+
private readonly sat;
|
|
707
|
+
private readonly val;
|
|
708
|
+
private readonly alpha;
|
|
709
|
+
/** Tracks the active drag target so pointermove can route correctly. */
|
|
710
|
+
private readonly dragging;
|
|
711
|
+
/** Which input row is visible (hex string or RGB channels). Toggles via the
|
|
712
|
+
* format button. Independent of the `format` input, which only controls the
|
|
713
|
+
* emitted value. */
|
|
714
|
+
readonly inputMode: i0.WritableSignal<ColorPickerInputMode>;
|
|
715
|
+
/** What the hex input shows. Kept separate from the canonical hex so the user
|
|
716
|
+
* can type a partial value (`#1`, `#12`, `#123…`) without each keystroke being
|
|
717
|
+
* expanded back into a 6-digit canonical form. */
|
|
718
|
+
readonly hexInputValue: i0.WritableSignal<string>;
|
|
719
|
+
/** Pixel position of the popover when open. Calculated from the trigger's
|
|
720
|
+
* bounding rect so the popover can use `position: fixed` and escape any
|
|
721
|
+
* ancestor with `overflow: hidden`. */
|
|
722
|
+
readonly popoverPosition: i0.WritableSignal<{
|
|
723
|
+
top: number;
|
|
724
|
+
left: number;
|
|
725
|
+
} | null>;
|
|
726
|
+
private readonly _formDisabled;
|
|
727
|
+
private onChange;
|
|
728
|
+
private onTouched;
|
|
729
|
+
readonly isDisabled: i0.Signal<boolean>;
|
|
730
|
+
readonly hasError: i0.Signal<boolean>;
|
|
731
|
+
readonly showError: i0.Signal<boolean>;
|
|
732
|
+
readonly showHint: i0.Signal<boolean>;
|
|
733
|
+
readonly rgb: i0.Signal<Rgb>;
|
|
734
|
+
readonly displayColor: i0.Signal<string>;
|
|
735
|
+
/** Opaque version of the current color — used as the hue/SV reference. */
|
|
736
|
+
readonly opaqueColor: i0.Signal<string>;
|
|
737
|
+
readonly hueColor: i0.Signal<string>;
|
|
738
|
+
readonly hexDisplay: i0.Signal<string>;
|
|
739
|
+
readonly displayValue: i0.Signal<string>;
|
|
740
|
+
readonly resolvedPlaceholder: i0.Signal<string>;
|
|
741
|
+
readonly triggerClasses: i0.Signal<{
|
|
742
|
+
[x: string]: boolean;
|
|
743
|
+
'ea-color-picker__trigger--error': boolean;
|
|
744
|
+
'ea-color-picker__trigger--open': boolean;
|
|
745
|
+
'ea-color-picker__trigger--disabled': boolean;
|
|
746
|
+
}>;
|
|
747
|
+
/** True when the browser supports the EyeDropper API. */
|
|
748
|
+
readonly hasEyeDropper: i0.Signal<boolean>;
|
|
749
|
+
constructor();
|
|
750
|
+
writeValue(val: ColorPickerValue): void;
|
|
751
|
+
registerOnChange(fn: (value: string | null) => void): void;
|
|
752
|
+
registerOnTouched(fn: () => void): void;
|
|
753
|
+
setDisabledState(isDisabled: boolean): void;
|
|
754
|
+
toggle(): void;
|
|
755
|
+
open(): void;
|
|
756
|
+
close(): void;
|
|
757
|
+
focus(): void;
|
|
758
|
+
clear(event: Event): void;
|
|
759
|
+
readonly svPointerLeft: i0.Signal<string>;
|
|
760
|
+
readonly svPointerTop: i0.Signal<string>;
|
|
761
|
+
readonly huePointerLeft: i0.Signal<string>;
|
|
762
|
+
readonly alphaPointerLeft: i0.Signal<string>;
|
|
763
|
+
readonly hueRounded: i0.Signal<number>;
|
|
764
|
+
readonly alphaPercentRounded: i0.Signal<number>;
|
|
765
|
+
onSvPointerDown(event: PointerEvent): void;
|
|
766
|
+
onSvPointerMove(event: PointerEvent): void;
|
|
767
|
+
onSvPointerUp(event: PointerEvent): void;
|
|
768
|
+
onSvKeydown(event: KeyboardEvent): void;
|
|
769
|
+
private updateSvFromPointer;
|
|
770
|
+
onHuePointerDown(event: PointerEvent): void;
|
|
771
|
+
onHuePointerMove(event: PointerEvent): void;
|
|
772
|
+
onHuePointerUp(event: PointerEvent): void;
|
|
773
|
+
onHueKeydown(event: KeyboardEvent): void;
|
|
774
|
+
private updateHueFromPointer;
|
|
775
|
+
onAlphaPointerDown(event: PointerEvent): void;
|
|
776
|
+
onAlphaPointerMove(event: PointerEvent): void;
|
|
777
|
+
onAlphaPointerUp(event: PointerEvent): void;
|
|
778
|
+
onAlphaKeydown(event: KeyboardEvent): void;
|
|
779
|
+
private updateAlphaFromPointer;
|
|
780
|
+
/**
|
|
781
|
+
* Mirrors the user's literal text into `hexInputValue` and (if the text
|
|
782
|
+
* parses) applies the new color silently — without rewriting the input.
|
|
783
|
+
* Without `refreshHex: false`, typing `#123` would parse, commit, and then
|
|
784
|
+
* snap the input back to `#112233` mid-keystroke, fighting the user's caret.
|
|
785
|
+
* Canonicalization happens only on blur via {@link onHexBlur}.
|
|
786
|
+
*/
|
|
787
|
+
onHexInput(event: Event): void;
|
|
788
|
+
onHexBlur(): void;
|
|
789
|
+
onRgbInput(channel: 'r' | 'g' | 'b', event: Event): void;
|
|
790
|
+
/** Cycles the input row between hex string and RGB channels. */
|
|
791
|
+
cycleInputMode(): void;
|
|
792
|
+
onAlphaInput(event: Event): void;
|
|
793
|
+
pickFromScreen(): Promise<void>;
|
|
794
|
+
selectPreset(hex: string): void;
|
|
795
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
796
|
+
onPopoverKeydown(event: KeyboardEvent): void;
|
|
797
|
+
onDocumentClick(event: Event): void;
|
|
798
|
+
/**
|
|
799
|
+
* Repositions the popover when it would extend past the viewport edges.
|
|
800
|
+
* Prefers flipping above the trigger when there's more room there, then
|
|
801
|
+
* clamps so the popover always has a small margin from the viewport edges.
|
|
802
|
+
*/
|
|
803
|
+
private clampPopoverToViewport;
|
|
804
|
+
private applyHsv;
|
|
805
|
+
private applyRgba;
|
|
806
|
+
private commit;
|
|
807
|
+
private refreshHexInput;
|
|
808
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerComponent, never>;
|
|
809
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerComponent, "ea-color-picker", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "showAlpha": { "alias": "showAlpha"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "presets": { "alias": "presets"; "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>;
|
|
810
|
+
}
|
|
811
|
+
|
|
647
812
|
/** Vertical density preset for table rows and header cells. */
|
|
648
813
|
type DataTableDensity = 'compact' | 'comfortable' | 'spacious';
|
|
649
814
|
/** Sort direction; `null` means no sort is applied. */
|
|
@@ -3936,8 +4101,9 @@ type InputType = 'text' | 'email' | 'password' | 'number' | 'search' | 'tel' | '
|
|
|
3936
4101
|
* with Angular forms via `ControlValueAccessor`. Prefix and suffix content
|
|
3937
4102
|
* can be projected via the `prefix` and `suffix` slots.
|
|
3938
4103
|
*/
|
|
3939
|
-
declare class InputComponent implements ControlValueAccessor
|
|
4104
|
+
declare class InputComponent implements ControlValueAccessor {
|
|
3940
4105
|
readonly inputEl: i0.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
4106
|
+
private readonly injector;
|
|
3941
4107
|
protected readonly i18n: EagamiI18nService;
|
|
3942
4108
|
readonly label: i0.InputSignal<string | undefined>;
|
|
3943
4109
|
readonly type: i0.InputSignal<InputType>;
|
|
@@ -3974,7 +4140,7 @@ declare class InputComponent implements ControlValueAccessor, AfterViewInit {
|
|
|
3974
4140
|
'ea-input-wrapper--disabled': boolean;
|
|
3975
4141
|
'ea-input-wrapper--readonly': boolean;
|
|
3976
4142
|
}>;
|
|
3977
|
-
|
|
4143
|
+
constructor();
|
|
3978
4144
|
writeValue(val: string): void;
|
|
3979
4145
|
registerOnChange(fn: (value: string) => void): void;
|
|
3980
4146
|
registerOnTouched(fn: () => void): void;
|
|
@@ -4030,6 +4196,16 @@ declare class MenuComponent {
|
|
|
4030
4196
|
*/
|
|
4031
4197
|
close(restoreFocus?: boolean): void;
|
|
4032
4198
|
private getEnabledItems;
|
|
4199
|
+
/**
|
|
4200
|
+
* `preventScroll: true` is critical here. The menu list is `position: fixed`
|
|
4201
|
+
* but its DOM ancestor is whatever element hosts the menu (often a sticky
|
|
4202
|
+
* header). When `.focus()` is called without `preventScroll`, Chromium uses
|
|
4203
|
+
* the focused element's DOM-tree position (inside the sticky ancestor) rather
|
|
4204
|
+
* than its rendered fixed position to decide whether to scroll — which on a
|
|
4205
|
+
* scrolled page nudges the document up by a few pixels per open, until the
|
|
4206
|
+
* trigger reaches the top edge. The same guard applies to keyboard navigation
|
|
4207
|
+
* and restoring focus on close.
|
|
4208
|
+
*/
|
|
4033
4209
|
private focusFirstItem;
|
|
4034
4210
|
onKeydown(event: KeyboardEvent): void;
|
|
4035
4211
|
onDocumentClick(event: Event): void;
|
|
@@ -4621,5 +4797,5 @@ declare class TooltipDirective implements OnDestroy {
|
|
|
4621
4797
|
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>;
|
|
4622
4798
|
}
|
|
4623
4799
|
|
|
4624
|
-
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, AppleIconComponent, 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, 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, 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, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PencilIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, 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, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, 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, el, en, esES, frFR, frenchSpacing, iconDisplayName, pl, provideEagamiUi };
|
|
4625
|
-
export type { AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, 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, PaginatorAlign, PaginatorState, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, Toast, ToastOptions, ToastVariant, TooltipPosition };
|
|
4800
|
+
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, AppleIconComponent, 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, 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, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PencilIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, 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, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, 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, el, en, esES, frFR, frenchSpacing, iconDisplayName, pl, provideEagamiUi };
|
|
4801
|
+
export type { AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, 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, PaginatorAlign, PaginatorState, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, Toast, ToastOptions, ToastVariant, TooltipPosition };
|