@eagami/ui 5.4.0 → 5.6.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 +1248 -34
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/types/eagami-ui.d.ts +240 -5
- package/LICENSE +0 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.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",
|
|
@@ -60,4 +60,4 @@
|
|
|
60
60
|
"README.md"
|
|
61
61
|
],
|
|
62
62
|
"schematics": "./schematics/collection.json"
|
|
63
|
-
}
|
|
63
|
+
}
|
package/types/eagami-ui.d.ts
CHANGED
|
@@ -253,7 +253,7 @@ interface EagamiLocaleBundle {
|
|
|
253
253
|
locale: EagamiLocale;
|
|
254
254
|
messages: EagamiMessages;
|
|
255
255
|
}
|
|
256
|
-
/** Configuration accepted by `provideEagamiUi`. */
|
|
256
|
+
/** Configuration accepted by `provideEagamiUi()`. */
|
|
257
257
|
interface EagamiI18nConfig {
|
|
258
258
|
/** Initial locale. Defaults to `'en'`. Falls back to English if not registered. */
|
|
259
259
|
locale?: EagamiLocale;
|
|
@@ -310,7 +310,7 @@ interface PaletteConfig {
|
|
|
310
310
|
* unset and accept the defaults. */
|
|
311
311
|
roles?: Partial<PaletteRoles>;
|
|
312
312
|
}
|
|
313
|
-
/** Top-level palette config accepted by `provideEagamiUi`. */
|
|
313
|
+
/** Top-level palette config accepted by `provideEagamiUi()`. */
|
|
314
314
|
interface EagamiPaletteConfig {
|
|
315
315
|
primary?: PaletteConfig;
|
|
316
316
|
secondary?: PaletteConfig;
|
|
@@ -328,7 +328,7 @@ interface ModePalette {
|
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
/**
|
|
331
|
-
* Full provider configuration for `provideEagamiUi`. Extends the i18n config
|
|
331
|
+
* Full provider configuration for `provideEagamiUi()`. Extends the i18n config
|
|
332
332
|
* with an optional brand palette; omit `palette` to keep the un-themed SCSS
|
|
333
333
|
* defaults.
|
|
334
334
|
*/
|
|
@@ -3563,6 +3563,53 @@ declare class TimePickerComponent implements ControlValueAccessor {
|
|
|
3563
3563
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimePickerComponent, "ea-time-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; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "includeSeconds": { "alias": "includeSeconds"; "required": false; "isSignal": true; }; "minuteStep": { "alias": "minuteStep"; "required": false; "isSignal": true; }; "secondStep": { "alias": "secondStep"; "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>;
|
|
3564
3564
|
}
|
|
3565
3565
|
|
|
3566
|
+
/** Direction the timeline flows. */
|
|
3567
|
+
type TimelineOrientation = 'vertical' | 'horizontal';
|
|
3568
|
+
/**
|
|
3569
|
+
* Placement of each item's content relative to the line. `alternate` zig-zags
|
|
3570
|
+
* items to either side of a centered line and applies to vertical timelines only.
|
|
3571
|
+
*/
|
|
3572
|
+
type TimelineAlign = 'start' | 'alternate';
|
|
3573
|
+
/** Semantic color of a timeline item's node. */
|
|
3574
|
+
type TimelineItemColor = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'error';
|
|
3575
|
+
/** Visual size of the timeline. */
|
|
3576
|
+
type TimelineSize = EaSize;
|
|
3577
|
+
/** Single event rendered in an `<ea-timeline>`. */
|
|
3578
|
+
interface TimelineItem {
|
|
3579
|
+
/** Title line for the event. */
|
|
3580
|
+
heading?: string;
|
|
3581
|
+
/** Muted meta line, typically a timestamp. */
|
|
3582
|
+
time?: string;
|
|
3583
|
+
/** Body text describing the event. */
|
|
3584
|
+
description?: string;
|
|
3585
|
+
/** Node color; ignored when `current` is set. */
|
|
3586
|
+
color?: TimelineItemColor;
|
|
3587
|
+
/** Marks the current point in time; the node wears the secondary brand and a halo. */
|
|
3588
|
+
current?: boolean;
|
|
3589
|
+
}
|
|
3590
|
+
/**
|
|
3591
|
+
* Vertical or horizontal sequence of events, each a colored node on a connecting
|
|
3592
|
+
* line with an optional heading, timestamp, and description. A single item flagged
|
|
3593
|
+
* `current` is highlighted with the secondary brand color to mark "you are here".
|
|
3594
|
+
*/
|
|
3595
|
+
declare class TimelineComponent {
|
|
3596
|
+
/** The events to render, in order. */
|
|
3597
|
+
readonly items: _angular_core.InputSignal<TimelineItem[]>;
|
|
3598
|
+
/** Direction the timeline flows. */
|
|
3599
|
+
readonly orientation: _angular_core.InputSignal<TimelineOrientation>;
|
|
3600
|
+
/** Content placement relative to the line; `alternate` applies to vertical timelines only. */
|
|
3601
|
+
readonly align: _angular_core.InputSignal<TimelineAlign>;
|
|
3602
|
+
/** Visual size; scales nodes, gaps, and text from a single knob. */
|
|
3603
|
+
readonly size: _angular_core.InputSignal<EaSize>;
|
|
3604
|
+
protected readonly hostClasses: _angular_core.Signal<{
|
|
3605
|
+
[x: string]: boolean;
|
|
3606
|
+
'ea-timeline--alternate': boolean;
|
|
3607
|
+
}>;
|
|
3608
|
+
protected itemModifier(item: TimelineItem): string;
|
|
3609
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimelineComponent, never>;
|
|
3610
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimelineComponent, "ea-timeline", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3611
|
+
}
|
|
3612
|
+
|
|
3566
3613
|
/** Semantic colour scheme of a toast. */
|
|
3567
3614
|
type ToastVariant = 'default' | 'success' | 'warning' | 'error' | 'info';
|
|
3568
3615
|
/** A single live toast notification rendered by `ea-toast`. */
|
|
@@ -7039,5 +7086,193 @@ declare class WhatsappIconComponent extends IconComponentBase {
|
|
|
7039
7086
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WhatsappIconComponent, "ea-icon-whatsapp", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7040
7087
|
}
|
|
7041
7088
|
|
|
7042
|
-
|
|
7043
|
-
|
|
7089
|
+
declare class AndroidIconComponent extends IconComponentBase {
|
|
7090
|
+
static readonly slug = "android";
|
|
7091
|
+
static readonly category: IconCategory;
|
|
7092
|
+
static readonly isBrand = true;
|
|
7093
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7094
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7095
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AndroidIconComponent, never>;
|
|
7096
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AndroidIconComponent, "ea-icon-android", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7097
|
+
}
|
|
7098
|
+
|
|
7099
|
+
declare class AngularIconComponent extends IconComponentBase {
|
|
7100
|
+
static readonly slug = "angular";
|
|
7101
|
+
static readonly category: IconCategory;
|
|
7102
|
+
static readonly isBrand = true;
|
|
7103
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7104
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7105
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AngularIconComponent, never>;
|
|
7106
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AngularIconComponent, "ea-icon-angular", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7107
|
+
}
|
|
7108
|
+
|
|
7109
|
+
declare class BellRingIconComponent extends IconComponentBase {
|
|
7110
|
+
static readonly slug = "bell-ring";
|
|
7111
|
+
static readonly category: IconCategory;
|
|
7112
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7113
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BellRingIconComponent, never>;
|
|
7114
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BellRingIconComponent, "ea-icon-bell-ring", never, {}, {}, never, never, true, never>;
|
|
7115
|
+
}
|
|
7116
|
+
|
|
7117
|
+
declare class BlueskyIconComponent extends IconComponentBase {
|
|
7118
|
+
static readonly slug = "bluesky";
|
|
7119
|
+
static readonly category: IconCategory;
|
|
7120
|
+
static readonly isBrand = true;
|
|
7121
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7122
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7123
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BlueskyIconComponent, never>;
|
|
7124
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BlueskyIconComponent, "ea-icon-bluesky", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7125
|
+
}
|
|
7126
|
+
|
|
7127
|
+
declare class BookmarkPlusIconComponent extends IconComponentBase {
|
|
7128
|
+
static readonly slug = "bookmark-plus";
|
|
7129
|
+
static readonly category: IconCategory;
|
|
7130
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7131
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BookmarkPlusIconComponent, never>;
|
|
7132
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BookmarkPlusIconComponent, "ea-icon-bookmark-plus", never, {}, {}, never, never, true, never>;
|
|
7133
|
+
}
|
|
7134
|
+
|
|
7135
|
+
declare class CalendarDaysIconComponent extends IconComponentBase {
|
|
7136
|
+
static readonly slug = "calendar-days";
|
|
7137
|
+
static readonly category: IconCategory;
|
|
7138
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7139
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CalendarDaysIconComponent, never>;
|
|
7140
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CalendarDaysIconComponent, "ea-icon-calendar-days", never, {}, {}, never, never, true, never>;
|
|
7141
|
+
}
|
|
7142
|
+
|
|
7143
|
+
declare class ClipboardListIconComponent extends IconComponentBase {
|
|
7144
|
+
static readonly slug = "clipboard-list";
|
|
7145
|
+
static readonly category: IconCategory;
|
|
7146
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7147
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClipboardListIconComponent, never>;
|
|
7148
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClipboardListIconComponent, "ea-icon-clipboard-list", never, {}, {}, never, never, true, never>;
|
|
7149
|
+
}
|
|
7150
|
+
|
|
7151
|
+
declare class FileCheckIconComponent extends IconComponentBase {
|
|
7152
|
+
static readonly slug = "file-check";
|
|
7153
|
+
static readonly category: IconCategory;
|
|
7154
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7155
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FileCheckIconComponent, never>;
|
|
7156
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileCheckIconComponent, "ea-icon-file-check", never, {}, {}, never, never, true, never>;
|
|
7157
|
+
}
|
|
7158
|
+
|
|
7159
|
+
declare class FolderOpenIconComponent extends IconComponentBase {
|
|
7160
|
+
static readonly slug = "folder-open";
|
|
7161
|
+
static readonly category: IconCategory;
|
|
7162
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7163
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FolderOpenIconComponent, never>;
|
|
7164
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FolderOpenIconComponent, "ea-icon-folder-open", never, {}, {}, never, never, true, never>;
|
|
7165
|
+
}
|
|
7166
|
+
|
|
7167
|
+
declare class GitCompareIconComponent extends IconComponentBase {
|
|
7168
|
+
static readonly slug = "git-compare";
|
|
7169
|
+
static readonly category: IconCategory;
|
|
7170
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7171
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GitCompareIconComponent, never>;
|
|
7172
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GitCompareIconComponent, "ea-icon-git-compare", never, {}, {}, never, never, true, never>;
|
|
7173
|
+
}
|
|
7174
|
+
|
|
7175
|
+
declare class KeyboardIconComponent extends IconComponentBase {
|
|
7176
|
+
static readonly slug = "keyboard";
|
|
7177
|
+
static readonly category: IconCategory;
|
|
7178
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7179
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KeyboardIconComponent, never>;
|
|
7180
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KeyboardIconComponent, "ea-icon-keyboard", never, {}, {}, never, never, true, never>;
|
|
7181
|
+
}
|
|
7182
|
+
|
|
7183
|
+
declare class LanguagesIconComponent extends IconComponentBase {
|
|
7184
|
+
static readonly slug = "languages";
|
|
7185
|
+
static readonly category: IconCategory;
|
|
7186
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7187
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LanguagesIconComponent, never>;
|
|
7188
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LanguagesIconComponent, "ea-icon-languages", never, {}, {}, never, never, true, never>;
|
|
7189
|
+
}
|
|
7190
|
+
|
|
7191
|
+
declare class MailCheckIconComponent extends IconComponentBase {
|
|
7192
|
+
static readonly slug = "mail-check";
|
|
7193
|
+
static readonly category: IconCategory;
|
|
7194
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7195
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MailCheckIconComponent, never>;
|
|
7196
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MailCheckIconComponent, "ea-icon-mail-check", never, {}, {}, never, never, true, never>;
|
|
7197
|
+
}
|
|
7198
|
+
|
|
7199
|
+
declare class NodejsIconComponent extends IconComponentBase {
|
|
7200
|
+
static readonly slug = "nodejs";
|
|
7201
|
+
static readonly category: IconCategory;
|
|
7202
|
+
static readonly isBrand = true;
|
|
7203
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7204
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7205
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NodejsIconComponent, never>;
|
|
7206
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodejsIconComponent, "ea-icon-nodejs", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7207
|
+
}
|
|
7208
|
+
|
|
7209
|
+
declare class PinterestIconComponent extends IconComponentBase {
|
|
7210
|
+
static readonly slug = "pinterest";
|
|
7211
|
+
static readonly category: IconCategory;
|
|
7212
|
+
static readonly isBrand = true;
|
|
7213
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7214
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7215
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PinterestIconComponent, never>;
|
|
7216
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PinterestIconComponent, "ea-icon-pinterest", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7217
|
+
}
|
|
7218
|
+
|
|
7219
|
+
declare class PythonIconComponent extends IconComponentBase {
|
|
7220
|
+
static readonly slug = "python";
|
|
7221
|
+
static readonly category: IconCategory;
|
|
7222
|
+
static readonly isBrand = true;
|
|
7223
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7224
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7225
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PythonIconComponent, never>;
|
|
7226
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PythonIconComponent, "ea-icon-python", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7227
|
+
}
|
|
7228
|
+
|
|
7229
|
+
declare class ShieldCheckIconComponent extends IconComponentBase {
|
|
7230
|
+
static readonly slug = "shield-check";
|
|
7231
|
+
static readonly category: IconCategory;
|
|
7232
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7233
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShieldCheckIconComponent, never>;
|
|
7234
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShieldCheckIconComponent, "ea-icon-shield-check", never, {}, {}, never, never, true, never>;
|
|
7235
|
+
}
|
|
7236
|
+
|
|
7237
|
+
declare class ShopifyIconComponent extends IconComponentBase {
|
|
7238
|
+
static readonly slug = "shopify";
|
|
7239
|
+
static readonly category: IconCategory;
|
|
7240
|
+
static readonly isBrand = true;
|
|
7241
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7242
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7243
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShopifyIconComponent, never>;
|
|
7244
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopifyIconComponent, "ea-icon-shopify", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7245
|
+
}
|
|
7246
|
+
|
|
7247
|
+
declare class SvelteIconComponent extends IconComponentBase {
|
|
7248
|
+
static readonly slug = "svelte";
|
|
7249
|
+
static readonly category: IconCategory;
|
|
7250
|
+
static readonly isBrand = true;
|
|
7251
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7252
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7253
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SvelteIconComponent, never>;
|
|
7254
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SvelteIconComponent, "ea-icon-svelte", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7255
|
+
}
|
|
7256
|
+
|
|
7257
|
+
declare class VueIconComponent extends IconComponentBase {
|
|
7258
|
+
static readonly slug = "vue";
|
|
7259
|
+
static readonly category: IconCategory;
|
|
7260
|
+
static readonly isBrand = true;
|
|
7261
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7262
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7263
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<VueIconComponent, never>;
|
|
7264
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<VueIconComponent, "ea-icon-vue", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7265
|
+
}
|
|
7266
|
+
|
|
7267
|
+
declare class WordpressIconComponent extends IconComponentBase {
|
|
7268
|
+
static readonly slug = "wordpress";
|
|
7269
|
+
static readonly category: IconCategory;
|
|
7270
|
+
static readonly isBrand = true;
|
|
7271
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7272
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7273
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WordpressIconComponent, never>;
|
|
7274
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WordpressIconComponent, "ea-icon-wordpress", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7275
|
+
}
|
|
7276
|
+
|
|
7277
|
+
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, 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, ButtonComponent, CalendarCheckIconComponent, CalendarDaysIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, 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, FileCheckIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, 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, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KeyboardIconComponent, KubernetesIconComponent, LampIconComponent, LanguagesIconComponent, LayersIconComponent, LayoutIconComponent, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailCheckIconComponent, 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, NodejsIconComponent, NotionIconComponent, NpmIconComponent, NumberInputComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PinterestIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, PythonIconComponent, QrCodeIconComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, ReactIconComponent, ReceiptIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RedoIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RocketIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScanIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, 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, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SvelteIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, TimelineComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, 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, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, WordpressIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, hexToOklch, iconDisplayName, is, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, validatePalette, visibleNodeIds, walkTree, zhCN };
|
|
7278
|
+
export type { AccordionHeadingLevel, AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, DrawerAnimation, DrawerMode, DrawerPosition, DrawerSize, DropdownSize, EaErrorMessages, EaSize, EaValidationErrorKey, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiLocaleBundle, EagamiLocaleMeta, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, ModePalette, ModeSurfaces, MultiSelectSize, NumberInputSize, PaginatorAlign, PaginatorSize, PaginatorState, PaletteConfig, PaletteRoles, PaletteShade, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, RatingSize, RatingStarState, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, TimelineAlign, TimelineItem, TimelineItemColor, TimelineOrientation, TimelineSize, Toast, ToastOptions, ToastPosition, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Michal Wiraszka
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|