@eagami/ui 5.17.2 → 5.19.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 +1505 -210
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +703 -560
package/types/eagami-ui.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { EnvironmentProviders, InjectionToken, Signal, Type, OnDestroy, ElementRef, TemplateRef, AfterContentChecked, OnInit } from '@angular/core';
|
|
3
3
|
import * as _eagami_ui from '@eagami/ui';
|
|
4
4
|
import { ControlValueAccessor } from '@angular/forms';
|
|
5
5
|
|
|
@@ -350,8 +350,6 @@ interface EagamiUiConfig extends EagamiI18nConfig {
|
|
|
350
350
|
*/
|
|
351
351
|
palette?: EagamiPaletteConfig;
|
|
352
352
|
}
|
|
353
|
-
/** DI token carrying the consumer-supplied i18n configuration. */
|
|
354
|
-
declare const EAGAMI_I18N_CONFIG: InjectionToken<EagamiI18nConfig>;
|
|
355
353
|
/**
|
|
356
354
|
* Configures Eagami UI for the application.
|
|
357
355
|
*
|
|
@@ -381,9 +379,16 @@ declare const EAGAMI_I18N_CONFIG: InjectionToken<EagamiI18nConfig>;
|
|
|
381
379
|
* },
|
|
382
380
|
* });
|
|
383
381
|
* ```
|
|
382
|
+
*
|
|
383
|
+
* A `palette` installs a `<style>` tag at bootstrap, carrying Angular's
|
|
384
|
+
* `CSP_NONCE` when the app provides one, so a strict `style-src` policy admits
|
|
385
|
+
* it instead of dropping the theme.
|
|
384
386
|
*/
|
|
385
387
|
declare function provideEagamiUi(config?: EagamiUiConfig): EnvironmentProviders;
|
|
386
388
|
|
|
389
|
+
/** DI token carrying the consumer-supplied i18n configuration. */
|
|
390
|
+
declare const EAGAMI_I18N_CONFIG: InjectionToken<EagamiI18nConfig>;
|
|
391
|
+
|
|
387
392
|
/**
|
|
388
393
|
* Holds the active locale and resolves the matching message dictionary for
|
|
389
394
|
* every Eagami UI component. English is always available; other languages are
|
|
@@ -545,8 +550,12 @@ declare function formatViolations(violations: readonly ContrastViolation[]): str
|
|
|
545
550
|
* Idempotent: subsequent calls replace the previous stylesheet rather than
|
|
546
551
|
* append, so a theme switcher can re-apply without leaking style tags.
|
|
547
552
|
* No-ops outside a DOM context (SSR).
|
|
553
|
+
*
|
|
554
|
+
* Pass `nonce` under a `style-src` policy that requires one, or the browser
|
|
555
|
+
* drops the stylesheet and the app silently renders the library's own colours.
|
|
556
|
+
* `provideEagamiUi()` forwards Angular's `CSP_NONCE` automatically.
|
|
548
557
|
*/
|
|
549
|
-
declare function applyPalette(palette: ModePalette): void;
|
|
558
|
+
declare function applyPalette(palette: ModePalette, nonce?: string | null): void;
|
|
550
559
|
|
|
551
560
|
declare function relativeLuminance(hex: string): number;
|
|
552
561
|
declare function contrastRatio(hexA: string, hexB: string): number;
|
|
@@ -581,7 +590,7 @@ declare function oklchToHex(oklch: Oklch): string;
|
|
|
581
590
|
* Canonical t-shirt size scale shared by every sized component. A component's
|
|
582
591
|
* own size type (e.g. `ButtonSize`) aliases this so the scale is defined once.
|
|
583
592
|
*/
|
|
584
|
-
type EaSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
593
|
+
type EaSize = '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
585
594
|
/**
|
|
586
595
|
* Size scale for width-based components (panels such as drawer and dialog),
|
|
587
596
|
* adding a full-bleed option on top of the standard scale.
|
|
@@ -914,7 +923,11 @@ declare class AvatarComponent {
|
|
|
914
923
|
/** Semantic colour scheme of a badge. */
|
|
915
924
|
type BadgeVariant = 'default' | 'success' | 'warning' | 'error' | 'info';
|
|
916
925
|
/** Visual size of a badge. */
|
|
917
|
-
|
|
926
|
+
/**
|
|
927
|
+
* The badge ladder sits one step below the shared scale (its `xs` is already
|
|
928
|
+
* `--font-size-2xs`), so it bottoms out where the others gain a `2xs`.
|
|
929
|
+
*/
|
|
930
|
+
type BadgeSize = Exclude<EaSize, '2xs'>;
|
|
918
931
|
/**
|
|
919
932
|
* Outer shape of a badge.
|
|
920
933
|
* - `pill` (default): content-shaped pill, ideal for inline status labels
|
|
@@ -928,7 +941,7 @@ type BadgeShape = 'pill' | 'pin';
|
|
|
928
941
|
*/
|
|
929
942
|
declare class BadgeComponent {
|
|
930
943
|
readonly variant: _angular_core.InputSignal<BadgeVariant>;
|
|
931
|
-
readonly size: _angular_core.InputSignal<
|
|
944
|
+
readonly size: _angular_core.InputSignal<BadgeSize>;
|
|
932
945
|
readonly shape: _angular_core.InputSignal<BadgeShape>;
|
|
933
946
|
readonly hostClasses: _angular_core.Signal<{
|
|
934
947
|
[x: string]: boolean;
|
|
@@ -4217,8 +4230,9 @@ declare function iconDisplayName(iconOrSlug: IconComponentType | string): string
|
|
|
4217
4230
|
* sorted by `slug` so that consumers iterating it (the `/ui/icons` reference
|
|
4218
4231
|
* page, the sandbox gallery, downstream pickers) get a stable alphabetical
|
|
4219
4232
|
* order where a base icon always precedes its `-2` variant (e.g. `facebook`
|
|
4220
|
-
* before `facebook-2`). The literal
|
|
4221
|
-
*
|
|
4233
|
+
* before `facebook-2`). The literal below is kept in class-name order so a new
|
|
4234
|
+
* icon has one obvious insertion point; the `.sort()` at the bottom is the
|
|
4235
|
+
* source of truth for consumers.
|
|
4222
4236
|
*
|
|
4223
4237
|
* Bundle-size note: importing this constant brings every icon component into
|
|
4224
4238
|
* the consuming bundle, which is the right trade-off when you actually want
|
|
@@ -4308,6 +4322,36 @@ declare class AnchorIconComponent extends IconComponentBase {
|
|
|
4308
4322
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AnchorIconComponent, "ea-icon-anchor", never, {}, {}, never, never, true, never>;
|
|
4309
4323
|
}
|
|
4310
4324
|
|
|
4325
|
+
declare class AndroidIconComponent extends IconComponentBase {
|
|
4326
|
+
static readonly slug = "android";
|
|
4327
|
+
static readonly category: IconCategory;
|
|
4328
|
+
static readonly isBrand = true;
|
|
4329
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4330
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
4331
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AndroidIconComponent, never>;
|
|
4332
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AndroidIconComponent, "ea-icon-android", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4333
|
+
}
|
|
4334
|
+
|
|
4335
|
+
declare class AngularIconComponent extends IconComponentBase {
|
|
4336
|
+
static readonly slug = "angular";
|
|
4337
|
+
static readonly category: IconCategory;
|
|
4338
|
+
static readonly isBrand = true;
|
|
4339
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4340
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
4341
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AngularIconComponent, never>;
|
|
4342
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AngularIconComponent, "ea-icon-angular", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4343
|
+
}
|
|
4344
|
+
|
|
4345
|
+
declare class AnthropicIconComponent extends IconComponentBase {
|
|
4346
|
+
static readonly slug = "anthropic";
|
|
4347
|
+
static readonly category: IconCategory;
|
|
4348
|
+
static readonly isBrand = true;
|
|
4349
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4350
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
4351
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AnthropicIconComponent, never>;
|
|
4352
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AnthropicIconComponent, "ea-icon-anthropic", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4353
|
+
}
|
|
4354
|
+
|
|
4311
4355
|
declare class ApertureIconComponent extends IconComponentBase {
|
|
4312
4356
|
static readonly slug = "aperture";
|
|
4313
4357
|
static readonly category: IconCategory;
|
|
@@ -4420,6 +4464,14 @@ declare class ArrowUpRightIconComponent extends IconComponentBase {
|
|
|
4420
4464
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ArrowUpRightIconComponent, "ea-icon-arrow-up-right", never, {}, {}, never, never, true, never>;
|
|
4421
4465
|
}
|
|
4422
4466
|
|
|
4467
|
+
declare class AspectRatioIconComponent extends IconComponentBase {
|
|
4468
|
+
static readonly slug = "aspect-ratio";
|
|
4469
|
+
static readonly category: IconCategory;
|
|
4470
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4471
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AspectRatioIconComponent, never>;
|
|
4472
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AspectRatioIconComponent, "ea-icon-aspect-ratio", never, {}, {}, never, never, true, never>;
|
|
4473
|
+
}
|
|
4474
|
+
|
|
4423
4475
|
declare class AtSignIconComponent extends IconComponentBase {
|
|
4424
4476
|
static readonly slug = "at-sign";
|
|
4425
4477
|
static readonly category: IconCategory;
|
|
@@ -4436,6 +4488,14 @@ declare class AwardIconComponent extends IconComponentBase {
|
|
|
4436
4488
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AwardIconComponent, "ea-icon-award", never, {}, {}, never, never, true, never>;
|
|
4437
4489
|
}
|
|
4438
4490
|
|
|
4491
|
+
declare class BadgeCheckIconComponent extends IconComponentBase {
|
|
4492
|
+
static readonly slug = "badge-check";
|
|
4493
|
+
static readonly category: IconCategory;
|
|
4494
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4495
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BadgeCheckIconComponent, never>;
|
|
4496
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BadgeCheckIconComponent, "ea-icon-badge-check", never, {}, {}, never, never, true, never>;
|
|
4497
|
+
}
|
|
4498
|
+
|
|
4439
4499
|
declare class BarChartIconComponent extends IconComponentBase {
|
|
4440
4500
|
static readonly slug = "bar-chart";
|
|
4441
4501
|
static readonly category: IconCategory;
|
|
@@ -4484,6 +4544,32 @@ declare class BellOffIconComponent extends IconComponentBase {
|
|
|
4484
4544
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BellOffIconComponent, "ea-icon-bell-off", never, {}, {}, never, never, true, never>;
|
|
4485
4545
|
}
|
|
4486
4546
|
|
|
4547
|
+
declare class BellRingIconComponent extends IconComponentBase {
|
|
4548
|
+
static readonly slug = "bell-ring";
|
|
4549
|
+
static readonly category: IconCategory;
|
|
4550
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4551
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BellRingIconComponent, never>;
|
|
4552
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BellRingIconComponent, "ea-icon-bell-ring", never, {}, {}, never, never, true, never>;
|
|
4553
|
+
}
|
|
4554
|
+
|
|
4555
|
+
declare class BitcoinIconComponent extends IconComponentBase {
|
|
4556
|
+
static readonly slug = "bitcoin";
|
|
4557
|
+
static readonly category: IconCategory;
|
|
4558
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4559
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BitcoinIconComponent, never>;
|
|
4560
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BitcoinIconComponent, "ea-icon-bitcoin", never, {}, {}, never, never, true, never>;
|
|
4561
|
+
}
|
|
4562
|
+
|
|
4563
|
+
declare class BlueskyIconComponent extends IconComponentBase {
|
|
4564
|
+
static readonly slug = "bluesky";
|
|
4565
|
+
static readonly category: IconCategory;
|
|
4566
|
+
static readonly isBrand = true;
|
|
4567
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4568
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
4569
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BlueskyIconComponent, never>;
|
|
4570
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BlueskyIconComponent, "ea-icon-bluesky", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4571
|
+
}
|
|
4572
|
+
|
|
4487
4573
|
declare class BluetoothIconComponent extends IconComponentBase {
|
|
4488
4574
|
static readonly slug = "bluetooth";
|
|
4489
4575
|
static readonly category: IconCategory;
|
|
@@ -4524,6 +4610,30 @@ declare class BookmarkIconComponent extends IconComponentBase {
|
|
|
4524
4610
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BookmarkIconComponent, "ea-icon-bookmark", never, {}, {}, never, never, true, never>;
|
|
4525
4611
|
}
|
|
4526
4612
|
|
|
4613
|
+
declare class BookmarkCheckIconComponent extends IconComponentBase {
|
|
4614
|
+
static readonly slug = "bookmark-check";
|
|
4615
|
+
static readonly category: IconCategory;
|
|
4616
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4617
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BookmarkCheckIconComponent, never>;
|
|
4618
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BookmarkCheckIconComponent, "ea-icon-bookmark-check", never, {}, {}, never, never, true, never>;
|
|
4619
|
+
}
|
|
4620
|
+
|
|
4621
|
+
declare class BookmarkPlusIconComponent extends IconComponentBase {
|
|
4622
|
+
static readonly slug = "bookmark-plus";
|
|
4623
|
+
static readonly category: IconCategory;
|
|
4624
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4625
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BookmarkPlusIconComponent, never>;
|
|
4626
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BookmarkPlusIconComponent, "ea-icon-bookmark-plus", never, {}, {}, never, never, true, never>;
|
|
4627
|
+
}
|
|
4628
|
+
|
|
4629
|
+
declare class BotIconComponent extends IconComponentBase {
|
|
4630
|
+
static readonly slug = "bot";
|
|
4631
|
+
static readonly category: IconCategory;
|
|
4632
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4633
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BotIconComponent, never>;
|
|
4634
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BotIconComponent, "ea-icon-bot", never, {}, {}, never, never, true, never>;
|
|
4635
|
+
}
|
|
4636
|
+
|
|
4527
4637
|
declare class BottleIconComponent extends IconComponentBase {
|
|
4528
4638
|
static readonly slug = "bottle";
|
|
4529
4639
|
static readonly category: IconCategory;
|
|
@@ -4540,6 +4650,14 @@ declare class BoxIconComponent extends IconComponentBase {
|
|
|
4540
4650
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BoxIconComponent, "ea-icon-box", never, {}, {}, never, never, true, never>;
|
|
4541
4651
|
}
|
|
4542
4652
|
|
|
4653
|
+
declare class BrainIconComponent extends IconComponentBase {
|
|
4654
|
+
static readonly slug = "brain";
|
|
4655
|
+
static readonly category: IconCategory;
|
|
4656
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4657
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BrainIconComponent, never>;
|
|
4658
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BrainIconComponent, "ea-icon-brain", never, {}, {}, never, never, true, never>;
|
|
4659
|
+
}
|
|
4660
|
+
|
|
4543
4661
|
declare class BriefcaseIconComponent extends IconComponentBase {
|
|
4544
4662
|
static readonly slug = "briefcase";
|
|
4545
4663
|
static readonly category: IconCategory;
|
|
@@ -4548,6 +4666,30 @@ declare class BriefcaseIconComponent extends IconComponentBase {
|
|
|
4548
4666
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BriefcaseIconComponent, "ea-icon-briefcase", never, {}, {}, never, never, true, never>;
|
|
4549
4667
|
}
|
|
4550
4668
|
|
|
4669
|
+
declare class BugIconComponent extends IconComponentBase {
|
|
4670
|
+
static readonly slug = "bug";
|
|
4671
|
+
static readonly category: IconCategory;
|
|
4672
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4673
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BugIconComponent, never>;
|
|
4674
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BugIconComponent, "ea-icon-bug", never, {}, {}, never, never, true, never>;
|
|
4675
|
+
}
|
|
4676
|
+
|
|
4677
|
+
declare class BuildingIconComponent extends IconComponentBase {
|
|
4678
|
+
static readonly slug = "building";
|
|
4679
|
+
static readonly category: IconCategory;
|
|
4680
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4681
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BuildingIconComponent, never>;
|
|
4682
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BuildingIconComponent, "ea-icon-building", never, {}, {}, never, never, true, never>;
|
|
4683
|
+
}
|
|
4684
|
+
|
|
4685
|
+
declare class CalculatorIconComponent extends IconComponentBase {
|
|
4686
|
+
static readonly slug = "calculator";
|
|
4687
|
+
static readonly category: IconCategory;
|
|
4688
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4689
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CalculatorIconComponent, never>;
|
|
4690
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CalculatorIconComponent, "ea-icon-calculator", never, {}, {}, never, never, true, never>;
|
|
4691
|
+
}
|
|
4692
|
+
|
|
4551
4693
|
declare class CalendarIconComponent extends IconComponentBase {
|
|
4552
4694
|
static readonly slug = "calendar";
|
|
4553
4695
|
static readonly category: IconCategory;
|
|
@@ -4556,6 +4698,22 @@ declare class CalendarIconComponent extends IconComponentBase {
|
|
|
4556
4698
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CalendarIconComponent, "ea-icon-calendar", never, {}, {}, never, never, true, never>;
|
|
4557
4699
|
}
|
|
4558
4700
|
|
|
4701
|
+
declare class CalendarCheckIconComponent extends IconComponentBase {
|
|
4702
|
+
static readonly slug = "calendar-check";
|
|
4703
|
+
static readonly category: IconCategory;
|
|
4704
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4705
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CalendarCheckIconComponent, never>;
|
|
4706
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CalendarCheckIconComponent, "ea-icon-calendar-check", never, {}, {}, never, never, true, never>;
|
|
4707
|
+
}
|
|
4708
|
+
|
|
4709
|
+
declare class CalendarDaysIconComponent extends IconComponentBase {
|
|
4710
|
+
static readonly slug = "calendar-days";
|
|
4711
|
+
static readonly category: IconCategory;
|
|
4712
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4713
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CalendarDaysIconComponent, never>;
|
|
4714
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CalendarDaysIconComponent, "ea-icon-calendar-days", never, {}, {}, never, never, true, never>;
|
|
4715
|
+
}
|
|
4716
|
+
|
|
4559
4717
|
declare class CameraIconComponent extends IconComponentBase {
|
|
4560
4718
|
static readonly slug = "camera";
|
|
4561
4719
|
static readonly category: IconCategory;
|
|
@@ -4702,6 +4860,14 @@ declare class CircleIconComponent extends IconComponentBase {
|
|
|
4702
4860
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CircleIconComponent, "ea-icon-circle", never, {}, {}, never, never, true, never>;
|
|
4703
4861
|
}
|
|
4704
4862
|
|
|
4863
|
+
declare class ClapperboardIconComponent extends IconComponentBase {
|
|
4864
|
+
static readonly slug = "clapperboard";
|
|
4865
|
+
static readonly category: IconCategory;
|
|
4866
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4867
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClapperboardIconComponent, never>;
|
|
4868
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClapperboardIconComponent, "ea-icon-clapperboard", never, {}, {}, never, never, true, never>;
|
|
4869
|
+
}
|
|
4870
|
+
|
|
4705
4871
|
declare class ClipboardIconComponent extends IconComponentBase {
|
|
4706
4872
|
static readonly slug = "clipboard";
|
|
4707
4873
|
static readonly category: IconCategory;
|
|
@@ -4710,6 +4876,22 @@ declare class ClipboardIconComponent extends IconComponentBase {
|
|
|
4710
4876
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClipboardIconComponent, "ea-icon-clipboard", never, {}, {}, never, never, true, never>;
|
|
4711
4877
|
}
|
|
4712
4878
|
|
|
4879
|
+
declare class ClipboardCheckIconComponent extends IconComponentBase {
|
|
4880
|
+
static readonly slug = "clipboard-check";
|
|
4881
|
+
static readonly category: IconCategory;
|
|
4882
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4883
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClipboardCheckIconComponent, never>;
|
|
4884
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClipboardCheckIconComponent, "ea-icon-clipboard-check", never, {}, {}, never, never, true, never>;
|
|
4885
|
+
}
|
|
4886
|
+
|
|
4887
|
+
declare class ClipboardListIconComponent extends IconComponentBase {
|
|
4888
|
+
static readonly slug = "clipboard-list";
|
|
4889
|
+
static readonly category: IconCategory;
|
|
4890
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4891
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClipboardListIconComponent, never>;
|
|
4892
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClipboardListIconComponent, "ea-icon-clipboard-list", never, {}, {}, never, never, true, never>;
|
|
4893
|
+
}
|
|
4894
|
+
|
|
4713
4895
|
declare class ClockIconComponent extends IconComponentBase {
|
|
4714
4896
|
static readonly slug = "clock";
|
|
4715
4897
|
static readonly category: IconCategory;
|
|
@@ -4809,6 +4991,14 @@ declare class CoffeeIconComponent extends IconComponentBase {
|
|
|
4809
4991
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CoffeeIconComponent, "ea-icon-coffee", never, {}, {}, never, never, true, never>;
|
|
4810
4992
|
}
|
|
4811
4993
|
|
|
4994
|
+
declare class CoinsIconComponent extends IconComponentBase {
|
|
4995
|
+
static readonly slug = "coins";
|
|
4996
|
+
static readonly category: IconCategory;
|
|
4997
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4998
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoinsIconComponent, never>;
|
|
4999
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CoinsIconComponent, "ea-icon-coins", never, {}, {}, never, never, true, never>;
|
|
5000
|
+
}
|
|
5001
|
+
|
|
4812
5002
|
declare class ColumnsIconComponent extends IconComponentBase {
|
|
4813
5003
|
static readonly slug = "columns";
|
|
4814
5004
|
static readonly category: IconCategory;
|
|
@@ -5202,6 +5392,30 @@ declare class FileIconComponent extends IconComponentBase {
|
|
|
5202
5392
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileIconComponent, "ea-icon-file", never, {}, {}, never, never, true, never>;
|
|
5203
5393
|
}
|
|
5204
5394
|
|
|
5395
|
+
declare class FileAudioIconComponent extends IconComponentBase {
|
|
5396
|
+
static readonly slug = "file-audio";
|
|
5397
|
+
static readonly category: IconCategory;
|
|
5398
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5399
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FileAudioIconComponent, never>;
|
|
5400
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileAudioIconComponent, "ea-icon-file-audio", never, {}, {}, never, never, true, never>;
|
|
5401
|
+
}
|
|
5402
|
+
|
|
5403
|
+
declare class FileCheckIconComponent extends IconComponentBase {
|
|
5404
|
+
static readonly slug = "file-check";
|
|
5405
|
+
static readonly category: IconCategory;
|
|
5406
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5407
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FileCheckIconComponent, never>;
|
|
5408
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileCheckIconComponent, "ea-icon-file-check", never, {}, {}, never, never, true, never>;
|
|
5409
|
+
}
|
|
5410
|
+
|
|
5411
|
+
declare class FileImageIconComponent extends IconComponentBase {
|
|
5412
|
+
static readonly slug = "file-image";
|
|
5413
|
+
static readonly category: IconCategory;
|
|
5414
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5415
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FileImageIconComponent, never>;
|
|
5416
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileImageIconComponent, "ea-icon-file-image", never, {}, {}, never, never, true, never>;
|
|
5417
|
+
}
|
|
5418
|
+
|
|
5205
5419
|
declare class FileMinusIconComponent extends IconComponentBase {
|
|
5206
5420
|
static readonly slug = "file-minus";
|
|
5207
5421
|
static readonly category: IconCategory;
|
|
@@ -5210,6 +5424,15 @@ declare class FileMinusIconComponent extends IconComponentBase {
|
|
|
5210
5424
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileMinusIconComponent, "ea-icon-file-minus", never, {}, {}, never, never, true, never>;
|
|
5211
5425
|
}
|
|
5212
5426
|
|
|
5427
|
+
declare class FilePdfIconComponent extends IconComponentBase {
|
|
5428
|
+
static readonly slug = "file-pdf";
|
|
5429
|
+
static readonly category: IconCategory;
|
|
5430
|
+
static readonly defaultStrokeWidth = 1.5;
|
|
5431
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5432
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilePdfIconComponent, never>;
|
|
5433
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilePdfIconComponent, "ea-icon-file-pdf", never, {}, {}, never, never, true, never>;
|
|
5434
|
+
}
|
|
5435
|
+
|
|
5213
5436
|
declare class FilePlusIconComponent extends IconComponentBase {
|
|
5214
5437
|
static readonly slug = "file-plus";
|
|
5215
5438
|
static readonly category: IconCategory;
|
|
@@ -5226,6 +5449,14 @@ declare class FileTextIconComponent extends IconComponentBase {
|
|
|
5226
5449
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileTextIconComponent, "ea-icon-file-text", never, {}, {}, never, never, true, never>;
|
|
5227
5450
|
}
|
|
5228
5451
|
|
|
5452
|
+
declare class FileVideoIconComponent extends IconComponentBase {
|
|
5453
|
+
static readonly slug = "file-video";
|
|
5454
|
+
static readonly category: IconCategory;
|
|
5455
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5456
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FileVideoIconComponent, never>;
|
|
5457
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileVideoIconComponent, "ea-icon-file-video", never, {}, {}, never, never, true, never>;
|
|
5458
|
+
}
|
|
5459
|
+
|
|
5229
5460
|
declare class FilmIconComponent extends IconComponentBase {
|
|
5230
5461
|
static readonly slug = "film";
|
|
5231
5462
|
static readonly category: IconCategory;
|
|
@@ -5242,6 +5473,22 @@ declare class FilterIconComponent extends IconComponentBase {
|
|
|
5242
5473
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterIconComponent, "ea-icon-filter", never, {}, {}, never, never, true, never>;
|
|
5243
5474
|
}
|
|
5244
5475
|
|
|
5476
|
+
declare class FilterXIconComponent extends IconComponentBase {
|
|
5477
|
+
static readonly slug = "filter-x";
|
|
5478
|
+
static readonly category: IconCategory;
|
|
5479
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5480
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterXIconComponent, never>;
|
|
5481
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterXIconComponent, "ea-icon-filter-x", never, {}, {}, never, never, true, never>;
|
|
5482
|
+
}
|
|
5483
|
+
|
|
5484
|
+
declare class FingerprintIconComponent extends IconComponentBase {
|
|
5485
|
+
static readonly slug = "fingerprint";
|
|
5486
|
+
static readonly category: IconCategory;
|
|
5487
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5488
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FingerprintIconComponent, never>;
|
|
5489
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FingerprintIconComponent, "ea-icon-fingerprint", never, {}, {}, never, never, true, never>;
|
|
5490
|
+
}
|
|
5491
|
+
|
|
5245
5492
|
declare class FlagIconComponent extends IconComponentBase {
|
|
5246
5493
|
static readonly slug = "flag";
|
|
5247
5494
|
static readonly category: IconCategory;
|
|
@@ -5250,6 +5497,14 @@ declare class FlagIconComponent extends IconComponentBase {
|
|
|
5250
5497
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlagIconComponent, "ea-icon-flag", never, {}, {}, never, never, true, never>;
|
|
5251
5498
|
}
|
|
5252
5499
|
|
|
5500
|
+
declare class FlameIconComponent extends IconComponentBase {
|
|
5501
|
+
static readonly slug = "flame";
|
|
5502
|
+
static readonly category: IconCategory;
|
|
5503
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5504
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlameIconComponent, never>;
|
|
5505
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlameIconComponent, "ea-icon-flame", never, {}, {}, never, never, true, never>;
|
|
5506
|
+
}
|
|
5507
|
+
|
|
5253
5508
|
declare class FolderIconComponent extends IconComponentBase {
|
|
5254
5509
|
static readonly slug = "folder";
|
|
5255
5510
|
static readonly category: IconCategory;
|
|
@@ -5266,6 +5521,14 @@ declare class FolderMinusIconComponent extends IconComponentBase {
|
|
|
5266
5521
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FolderMinusIconComponent, "ea-icon-folder-minus", never, {}, {}, never, never, true, never>;
|
|
5267
5522
|
}
|
|
5268
5523
|
|
|
5524
|
+
declare class FolderOpenIconComponent extends IconComponentBase {
|
|
5525
|
+
static readonly slug = "folder-open";
|
|
5526
|
+
static readonly category: IconCategory;
|
|
5527
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5528
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FolderOpenIconComponent, never>;
|
|
5529
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FolderOpenIconComponent, "ea-icon-folder-open", never, {}, {}, never, never, true, never>;
|
|
5530
|
+
}
|
|
5531
|
+
|
|
5269
5532
|
declare class FolderPlusIconComponent extends IconComponentBase {
|
|
5270
5533
|
static readonly slug = "folder-plus";
|
|
5271
5534
|
static readonly category: IconCategory;
|
|
@@ -5291,6 +5554,24 @@ declare class FrownIconComponent extends IconComponentBase {
|
|
|
5291
5554
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FrownIconComponent, "ea-icon-frown", never, {}, {}, never, never, true, never>;
|
|
5292
5555
|
}
|
|
5293
5556
|
|
|
5557
|
+
declare class GaugeIconComponent extends IconComponentBase {
|
|
5558
|
+
static readonly slug = "gauge";
|
|
5559
|
+
static readonly category: IconCategory;
|
|
5560
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5561
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaugeIconComponent, never>;
|
|
5562
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaugeIconComponent, "ea-icon-gauge", never, {}, {}, never, never, true, never>;
|
|
5563
|
+
}
|
|
5564
|
+
|
|
5565
|
+
declare class GeminiIconComponent extends IconComponentBase {
|
|
5566
|
+
static readonly slug = "gemini";
|
|
5567
|
+
static readonly category: IconCategory;
|
|
5568
|
+
static readonly isBrand = true;
|
|
5569
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5570
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
5571
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GeminiIconComponent, never>;
|
|
5572
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GeminiIconComponent, "ea-icon-gemini", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5573
|
+
}
|
|
5574
|
+
|
|
5294
5575
|
declare class GiftIconComponent extends IconComponentBase {
|
|
5295
5576
|
static readonly slug = "gift";
|
|
5296
5577
|
static readonly category: IconCategory;
|
|
@@ -5315,9 +5596,17 @@ declare class GitCommitIconComponent extends IconComponentBase {
|
|
|
5315
5596
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GitCommitIconComponent, "ea-icon-git-commit", never, {}, {}, never, never, true, never>;
|
|
5316
5597
|
}
|
|
5317
5598
|
|
|
5318
|
-
declare class
|
|
5319
|
-
static readonly slug = "git-
|
|
5320
|
-
static readonly category: IconCategory;
|
|
5599
|
+
declare class GitCompareIconComponent extends IconComponentBase {
|
|
5600
|
+
static readonly slug = "git-compare";
|
|
5601
|
+
static readonly category: IconCategory;
|
|
5602
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5603
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GitCompareIconComponent, never>;
|
|
5604
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GitCompareIconComponent, "ea-icon-git-compare", never, {}, {}, never, never, true, never>;
|
|
5605
|
+
}
|
|
5606
|
+
|
|
5607
|
+
declare class GitMergeIconComponent extends IconComponentBase {
|
|
5608
|
+
static readonly slug = "git-merge";
|
|
5609
|
+
static readonly category: IconCategory;
|
|
5321
5610
|
static readonly tags: ReadonlyArray<string>;
|
|
5322
5611
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GitMergeIconComponent, never>;
|
|
5323
5612
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GitMergeIconComponent, "ea-icon-git-merge", never, {}, {}, never, never, true, never>;
|
|
@@ -5471,6 +5760,14 @@ declare class HexagonIconComponent extends IconComponentBase {
|
|
|
5471
5760
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HexagonIconComponent, "ea-icon-hexagon", never, {}, {}, never, never, true, never>;
|
|
5472
5761
|
}
|
|
5473
5762
|
|
|
5763
|
+
declare class HistoryIconComponent extends IconComponentBase {
|
|
5764
|
+
static readonly slug = "history";
|
|
5765
|
+
static readonly category: IconCategory;
|
|
5766
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5767
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HistoryIconComponent, never>;
|
|
5768
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HistoryIconComponent, "ea-icon-history", never, {}, {}, never, never, true, never>;
|
|
5769
|
+
}
|
|
5770
|
+
|
|
5474
5771
|
declare class HomeIconComponent extends IconComponentBase {
|
|
5475
5772
|
static readonly slug = "home";
|
|
5476
5773
|
static readonly category: IconCategory;
|
|
@@ -5487,6 +5784,14 @@ declare class ImageIconComponent extends IconComponentBase {
|
|
|
5487
5784
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ImageIconComponent, "ea-icon-image", never, {}, {}, never, never, true, never>;
|
|
5488
5785
|
}
|
|
5489
5786
|
|
|
5787
|
+
declare class ImagesIconComponent extends IconComponentBase {
|
|
5788
|
+
static readonly slug = "images";
|
|
5789
|
+
static readonly category: IconCategory;
|
|
5790
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5791
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ImagesIconComponent, never>;
|
|
5792
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ImagesIconComponent, "ea-icon-images", never, {}, {}, never, never, true, never>;
|
|
5793
|
+
}
|
|
5794
|
+
|
|
5490
5795
|
declare class InboxIconComponent extends IconComponentBase {
|
|
5491
5796
|
static readonly slug = "inbox";
|
|
5492
5797
|
static readonly category: IconCategory;
|
|
@@ -5528,6 +5833,22 @@ declare class KeyIconComponent extends IconComponentBase {
|
|
|
5528
5833
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KeyIconComponent, "ea-icon-key", never, {}, {}, never, never, true, never>;
|
|
5529
5834
|
}
|
|
5530
5835
|
|
|
5836
|
+
declare class KeyboardIconComponent extends IconComponentBase {
|
|
5837
|
+
static readonly slug = "keyboard";
|
|
5838
|
+
static readonly category: IconCategory;
|
|
5839
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5840
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KeyboardIconComponent, never>;
|
|
5841
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KeyboardIconComponent, "ea-icon-keyboard", never, {}, {}, never, never, true, never>;
|
|
5842
|
+
}
|
|
5843
|
+
|
|
5844
|
+
declare class KeyframeIconComponent extends IconComponentBase {
|
|
5845
|
+
static readonly slug = "keyframe";
|
|
5846
|
+
static readonly category: IconCategory;
|
|
5847
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5848
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KeyframeIconComponent, never>;
|
|
5849
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KeyframeIconComponent, "ea-icon-keyframe", never, {}, {}, never, never, true, never>;
|
|
5850
|
+
}
|
|
5851
|
+
|
|
5531
5852
|
declare class KubernetesIconComponent extends IconComponentBase {
|
|
5532
5853
|
static readonly slug = "kubernetes";
|
|
5533
5854
|
static readonly category: IconCategory;
|
|
@@ -5546,6 +5867,14 @@ declare class LampIconComponent extends IconComponentBase {
|
|
|
5546
5867
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LampIconComponent, "ea-icon-lamp", never, {}, {}, never, never, true, never>;
|
|
5547
5868
|
}
|
|
5548
5869
|
|
|
5870
|
+
declare class LanguagesIconComponent extends IconComponentBase {
|
|
5871
|
+
static readonly slug = "languages";
|
|
5872
|
+
static readonly category: IconCategory;
|
|
5873
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5874
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LanguagesIconComponent, never>;
|
|
5875
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LanguagesIconComponent, "ea-icon-languages", never, {}, {}, never, never, true, never>;
|
|
5876
|
+
}
|
|
5877
|
+
|
|
5549
5878
|
declare class LayersIconComponent extends IconComponentBase {
|
|
5550
5879
|
static readonly slug = "layers";
|
|
5551
5880
|
static readonly category: IconCategory;
|
|
@@ -5562,6 +5891,14 @@ declare class LayoutIconComponent extends IconComponentBase {
|
|
|
5562
5891
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LayoutIconComponent, "ea-icon-layout", never, {}, {}, never, never, true, never>;
|
|
5563
5892
|
}
|
|
5564
5893
|
|
|
5894
|
+
declare class LeafIconComponent extends IconComponentBase {
|
|
5895
|
+
static readonly slug = "leaf";
|
|
5896
|
+
static readonly category: IconCategory;
|
|
5897
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5898
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LeafIconComponent, never>;
|
|
5899
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LeafIconComponent, "ea-icon-leaf", never, {}, {}, never, never, true, never>;
|
|
5900
|
+
}
|
|
5901
|
+
|
|
5565
5902
|
declare class LeftHalfStarIconComponent extends IconComponentBase {
|
|
5566
5903
|
static readonly slug = "left-half-star";
|
|
5567
5904
|
static readonly category: IconCategory;
|
|
@@ -5578,6 +5915,14 @@ declare class LifeBuoyIconComponent extends IconComponentBase {
|
|
|
5578
5915
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LifeBuoyIconComponent, "ea-icon-life-buoy", never, {}, {}, never, never, true, never>;
|
|
5579
5916
|
}
|
|
5580
5917
|
|
|
5918
|
+
declare class LightbulbIconComponent extends IconComponentBase {
|
|
5919
|
+
static readonly slug = "lightbulb";
|
|
5920
|
+
static readonly category: IconCategory;
|
|
5921
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5922
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LightbulbIconComponent, never>;
|
|
5923
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LightbulbIconComponent, "ea-icon-lightbulb", never, {}, {}, never, never, true, never>;
|
|
5924
|
+
}
|
|
5925
|
+
|
|
5581
5926
|
declare class LinkIconComponent extends IconComponentBase {
|
|
5582
5927
|
static readonly slug = "link";
|
|
5583
5928
|
static readonly category: IconCategory;
|
|
@@ -5635,6 +5980,14 @@ declare class ListIconComponent extends IconComponentBase {
|
|
|
5635
5980
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListIconComponent, "ea-icon-list", never, {}, {}, never, never, true, never>;
|
|
5636
5981
|
}
|
|
5637
5982
|
|
|
5983
|
+
declare class ListChecksIconComponent extends IconComponentBase {
|
|
5984
|
+
static readonly slug = "list-checks";
|
|
5985
|
+
static readonly category: IconCategory;
|
|
5986
|
+
static readonly tags: ReadonlyArray<string>;
|
|
5987
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListChecksIconComponent, never>;
|
|
5988
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListChecksIconComponent, "ea-icon-list-checks", never, {}, {}, never, never, true, never>;
|
|
5989
|
+
}
|
|
5990
|
+
|
|
5638
5991
|
declare class LoaderIconComponent extends IconComponentBase {
|
|
5639
5992
|
static readonly slug = "loader";
|
|
5640
5993
|
static readonly category: IconCategory;
|
|
@@ -5675,6 +6028,14 @@ declare class MailIconComponent extends IconComponentBase {
|
|
|
5675
6028
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MailIconComponent, "ea-icon-mail", never, {}, {}, never, never, true, never>;
|
|
5676
6029
|
}
|
|
5677
6030
|
|
|
6031
|
+
declare class MailCheckIconComponent extends IconComponentBase {
|
|
6032
|
+
static readonly slug = "mail-check";
|
|
6033
|
+
static readonly category: IconCategory;
|
|
6034
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6035
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MailCheckIconComponent, never>;
|
|
6036
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MailCheckIconComponent, "ea-icon-mail-check", never, {}, {}, never, never, true, never>;
|
|
6037
|
+
}
|
|
6038
|
+
|
|
5678
6039
|
declare class MapIconComponent extends IconComponentBase {
|
|
5679
6040
|
static readonly slug = "map";
|
|
5680
6041
|
static readonly category: IconCategory;
|
|
@@ -5716,6 +6077,14 @@ declare class Maximize2IconComponent extends IconComponentBase {
|
|
|
5716
6077
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Maximize2IconComponent, "ea-icon-maximize-2", never, {}, {}, never, never, true, never>;
|
|
5717
6078
|
}
|
|
5718
6079
|
|
|
6080
|
+
declare class MegaphoneIconComponent extends IconComponentBase {
|
|
6081
|
+
static readonly slug = "megaphone";
|
|
6082
|
+
static readonly category: IconCategory;
|
|
6083
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6084
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MegaphoneIconComponent, never>;
|
|
6085
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MegaphoneIconComponent, "ea-icon-megaphone", never, {}, {}, never, never, true, never>;
|
|
6086
|
+
}
|
|
6087
|
+
|
|
5719
6088
|
declare class MehIconComponent extends IconComponentBase {
|
|
5720
6089
|
static readonly slug = "meh";
|
|
5721
6090
|
static readonly category: IconCategory;
|
|
@@ -5904,6 +6273,16 @@ declare class NetlifyIconComponent extends IconComponentBase {
|
|
|
5904
6273
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NetlifyIconComponent, "ea-icon-netlify", never, {}, {}, never, never, true, never>;
|
|
5905
6274
|
}
|
|
5906
6275
|
|
|
6276
|
+
declare class NodejsIconComponent extends IconComponentBase {
|
|
6277
|
+
static readonly slug = "nodejs";
|
|
6278
|
+
static readonly category: IconCategory;
|
|
6279
|
+
static readonly isBrand = true;
|
|
6280
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6281
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
6282
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NodejsIconComponent, never>;
|
|
6283
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodejsIconComponent, "ea-icon-nodejs", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6284
|
+
}
|
|
6285
|
+
|
|
5907
6286
|
declare class NotionIconComponent extends IconComponentBase {
|
|
5908
6287
|
static readonly slug = "notion";
|
|
5909
6288
|
static readonly category: IconCategory;
|
|
@@ -5940,6 +6319,14 @@ declare class PackageIconComponent extends IconComponentBase {
|
|
|
5940
6319
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PackageIconComponent, "ea-icon-package", never, {}, {}, never, never, true, never>;
|
|
5941
6320
|
}
|
|
5942
6321
|
|
|
6322
|
+
declare class PaletteIconComponent extends IconComponentBase {
|
|
6323
|
+
static readonly slug = "palette";
|
|
6324
|
+
static readonly category: IconCategory;
|
|
6325
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6326
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PaletteIconComponent, never>;
|
|
6327
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaletteIconComponent, "ea-icon-palette", never, {}, {}, never, never, true, never>;
|
|
6328
|
+
}
|
|
6329
|
+
|
|
5943
6330
|
declare class PaperclipIconComponent extends IconComponentBase {
|
|
5944
6331
|
static readonly slug = "paperclip";
|
|
5945
6332
|
static readonly category: IconCategory;
|
|
@@ -6053,6 +6440,14 @@ declare class PhoneOutgoingIconComponent extends IconComponentBase {
|
|
|
6053
6440
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PhoneOutgoingIconComponent, "ea-icon-phone-outgoing", never, {}, {}, never, never, true, never>;
|
|
6054
6441
|
}
|
|
6055
6442
|
|
|
6443
|
+
declare class PictureInPictureIconComponent extends IconComponentBase {
|
|
6444
|
+
static readonly slug = "picture-in-picture";
|
|
6445
|
+
static readonly category: IconCategory;
|
|
6446
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6447
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PictureInPictureIconComponent, never>;
|
|
6448
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PictureInPictureIconComponent, "ea-icon-picture-in-picture", never, {}, {}, never, never, true, never>;
|
|
6449
|
+
}
|
|
6450
|
+
|
|
6056
6451
|
declare class PieChartIconComponent extends IconComponentBase {
|
|
6057
6452
|
static readonly slug = "pie-chart";
|
|
6058
6453
|
static readonly category: IconCategory;
|
|
@@ -6061,6 +6456,24 @@ declare class PieChartIconComponent extends IconComponentBase {
|
|
|
6061
6456
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PieChartIconComponent, "ea-icon-pie-chart", never, {}, {}, never, never, true, never>;
|
|
6062
6457
|
}
|
|
6063
6458
|
|
|
6459
|
+
declare class PinIconComponent extends IconComponentBase {
|
|
6460
|
+
static readonly slug = "pin";
|
|
6461
|
+
static readonly category: IconCategory;
|
|
6462
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6463
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PinIconComponent, never>;
|
|
6464
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PinIconComponent, "ea-icon-pin", never, {}, {}, never, never, true, never>;
|
|
6465
|
+
}
|
|
6466
|
+
|
|
6467
|
+
declare class PinterestIconComponent extends IconComponentBase {
|
|
6468
|
+
static readonly slug = "pinterest";
|
|
6469
|
+
static readonly category: IconCategory;
|
|
6470
|
+
static readonly isBrand = true;
|
|
6471
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6472
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
6473
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PinterestIconComponent, never>;
|
|
6474
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PinterestIconComponent, "ea-icon-pinterest", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6475
|
+
}
|
|
6476
|
+
|
|
6064
6477
|
declare class PlayIconComponent extends IconComponentBase {
|
|
6065
6478
|
static readonly slug = "play";
|
|
6066
6479
|
static readonly category: IconCategory;
|
|
@@ -6077,6 +6490,22 @@ declare class PlayCircleIconComponent extends IconComponentBase {
|
|
|
6077
6490
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlayCircleIconComponent, "ea-icon-play-circle", never, {}, {}, never, never, true, never>;
|
|
6078
6491
|
}
|
|
6079
6492
|
|
|
6493
|
+
declare class PlaylistIconComponent extends IconComponentBase {
|
|
6494
|
+
static readonly slug = "playlist";
|
|
6495
|
+
static readonly category: IconCategory;
|
|
6496
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6497
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlaylistIconComponent, never>;
|
|
6498
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlaylistIconComponent, "ea-icon-playlist", never, {}, {}, never, never, true, never>;
|
|
6499
|
+
}
|
|
6500
|
+
|
|
6501
|
+
declare class PlugIconComponent extends IconComponentBase {
|
|
6502
|
+
static readonly slug = "plug";
|
|
6503
|
+
static readonly category: IconCategory;
|
|
6504
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6505
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlugIconComponent, never>;
|
|
6506
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlugIconComponent, "ea-icon-plug", never, {}, {}, never, never, true, never>;
|
|
6507
|
+
}
|
|
6508
|
+
|
|
6080
6509
|
declare class PlusIconComponent extends IconComponentBase {
|
|
6081
6510
|
static readonly slug = "plus";
|
|
6082
6511
|
static readonly category: IconCategory;
|
|
@@ -6125,6 +6554,24 @@ declare class PrinterIconComponent extends IconComponentBase {
|
|
|
6125
6554
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PrinterIconComponent, "ea-icon-printer", never, {}, {}, never, never, true, never>;
|
|
6126
6555
|
}
|
|
6127
6556
|
|
|
6557
|
+
declare class PythonIconComponent extends IconComponentBase {
|
|
6558
|
+
static readonly slug = "python";
|
|
6559
|
+
static readonly category: IconCategory;
|
|
6560
|
+
static readonly isBrand = true;
|
|
6561
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6562
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
6563
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PythonIconComponent, never>;
|
|
6564
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PythonIconComponent, "ea-icon-python", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6565
|
+
}
|
|
6566
|
+
|
|
6567
|
+
declare class QrCodeIconComponent extends IconComponentBase {
|
|
6568
|
+
static readonly slug = "qr-code";
|
|
6569
|
+
static readonly category: IconCategory;
|
|
6570
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6571
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<QrCodeIconComponent, never>;
|
|
6572
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<QrCodeIconComponent, "ea-icon-qr-code", never, {}, {}, never, never, true, never>;
|
|
6573
|
+
}
|
|
6574
|
+
|
|
6128
6575
|
declare class RadioIconComponent extends IconComponentBase {
|
|
6129
6576
|
static readonly slug = "radio";
|
|
6130
6577
|
static readonly category: IconCategory;
|
|
@@ -6133,6 +6580,32 @@ declare class RadioIconComponent extends IconComponentBase {
|
|
|
6133
6580
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RadioIconComponent, "ea-icon-radio", never, {}, {}, never, never, true, never>;
|
|
6134
6581
|
}
|
|
6135
6582
|
|
|
6583
|
+
declare class ReactIconComponent extends IconComponentBase {
|
|
6584
|
+
static readonly slug = "react";
|
|
6585
|
+
static readonly category: IconCategory;
|
|
6586
|
+
static readonly isBrand = true;
|
|
6587
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6588
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
6589
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ReactIconComponent, never>;
|
|
6590
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ReactIconComponent, "ea-icon-react", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6591
|
+
}
|
|
6592
|
+
|
|
6593
|
+
declare class ReceiptIconComponent extends IconComponentBase {
|
|
6594
|
+
static readonly slug = "receipt";
|
|
6595
|
+
static readonly category: IconCategory;
|
|
6596
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6597
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ReceiptIconComponent, never>;
|
|
6598
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ReceiptIconComponent, "ea-icon-receipt", never, {}, {}, never, never, true, never>;
|
|
6599
|
+
}
|
|
6600
|
+
|
|
6601
|
+
declare class RecordIconComponent extends IconComponentBase {
|
|
6602
|
+
static readonly slug = "record";
|
|
6603
|
+
static readonly category: IconCategory;
|
|
6604
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6605
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RecordIconComponent, never>;
|
|
6606
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RecordIconComponent, "ea-icon-record", never, {}, {}, never, never, true, never>;
|
|
6607
|
+
}
|
|
6608
|
+
|
|
6136
6609
|
declare class RectangleHorizontalIconComponent extends IconComponentBase {
|
|
6137
6610
|
static readonly slug = "rectangle-horizontal";
|
|
6138
6611
|
static readonly category: IconCategory;
|
|
@@ -6159,6 +6632,14 @@ declare class RedditIconComponent extends IconComponentBase {
|
|
|
6159
6632
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RedditIconComponent, "ea-icon-reddit", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6160
6633
|
}
|
|
6161
6634
|
|
|
6635
|
+
declare class RedoIconComponent extends IconComponentBase {
|
|
6636
|
+
static readonly slug = "redo";
|
|
6637
|
+
static readonly category: IconCategory;
|
|
6638
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6639
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RedoIconComponent, never>;
|
|
6640
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RedoIconComponent, "ea-icon-redo", never, {}, {}, never, never, true, never>;
|
|
6641
|
+
}
|
|
6642
|
+
|
|
6162
6643
|
declare class RefreshCcwIconComponent extends IconComponentBase {
|
|
6163
6644
|
static readonly slug = "refresh-ccw";
|
|
6164
6645
|
static readonly category: IconCategory;
|
|
@@ -6199,6 +6680,14 @@ declare class RightHalfStarIconComponent extends IconComponentBase {
|
|
|
6199
6680
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RightHalfStarIconComponent, "ea-icon-right-half-star", never, {}, {}, never, never, true, never>;
|
|
6200
6681
|
}
|
|
6201
6682
|
|
|
6683
|
+
declare class RocketIconComponent extends IconComponentBase {
|
|
6684
|
+
static readonly slug = "rocket";
|
|
6685
|
+
static readonly category: IconCategory;
|
|
6686
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6687
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RocketIconComponent, never>;
|
|
6688
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RocketIconComponent, "ea-icon-rocket", never, {}, {}, never, never, true, never>;
|
|
6689
|
+
}
|
|
6690
|
+
|
|
6202
6691
|
declare class RotateCcwIconComponent extends IconComponentBase {
|
|
6203
6692
|
static readonly slug = "rotate-ccw";
|
|
6204
6693
|
static readonly category: IconCategory;
|
|
@@ -6231,6 +6720,14 @@ declare class SaveIconComponent extends IconComponentBase {
|
|
|
6231
6720
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SaveIconComponent, "ea-icon-save", never, {}, {}, never, never, true, never>;
|
|
6232
6721
|
}
|
|
6233
6722
|
|
|
6723
|
+
declare class ScanIconComponent extends IconComponentBase {
|
|
6724
|
+
static readonly slug = "scan";
|
|
6725
|
+
static readonly category: IconCategory;
|
|
6726
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6727
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScanIconComponent, never>;
|
|
6728
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScanIconComponent, "ea-icon-scan", never, {}, {}, never, never, true, never>;
|
|
6729
|
+
}
|
|
6730
|
+
|
|
6234
6731
|
declare class ScissorsIconComponent extends IconComponentBase {
|
|
6235
6732
|
static readonly slug = "scissors";
|
|
6236
6733
|
static readonly category: IconCategory;
|
|
@@ -6287,6 +6784,14 @@ declare class ShieldIconComponent extends IconComponentBase {
|
|
|
6287
6784
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShieldIconComponent, "ea-icon-shield", never, {}, {}, never, never, true, never>;
|
|
6288
6785
|
}
|
|
6289
6786
|
|
|
6787
|
+
declare class ShieldCheckIconComponent extends IconComponentBase {
|
|
6788
|
+
static readonly slug = "shield-check";
|
|
6789
|
+
static readonly category: IconCategory;
|
|
6790
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6791
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShieldCheckIconComponent, never>;
|
|
6792
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShieldCheckIconComponent, "ea-icon-shield-check", never, {}, {}, never, never, true, never>;
|
|
6793
|
+
}
|
|
6794
|
+
|
|
6290
6795
|
declare class ShieldOffIconComponent extends IconComponentBase {
|
|
6291
6796
|
static readonly slug = "shield-off";
|
|
6292
6797
|
static readonly category: IconCategory;
|
|
@@ -6295,6 +6800,16 @@ declare class ShieldOffIconComponent extends IconComponentBase {
|
|
|
6295
6800
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShieldOffIconComponent, "ea-icon-shield-off", never, {}, {}, never, never, true, never>;
|
|
6296
6801
|
}
|
|
6297
6802
|
|
|
6803
|
+
declare class ShopifyIconComponent extends IconComponentBase {
|
|
6804
|
+
static readonly slug = "shopify";
|
|
6805
|
+
static readonly category: IconCategory;
|
|
6806
|
+
static readonly isBrand = true;
|
|
6807
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6808
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
6809
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShopifyIconComponent, never>;
|
|
6810
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopifyIconComponent, "ea-icon-shopify", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6811
|
+
}
|
|
6812
|
+
|
|
6298
6813
|
declare class ShoppingBagIconComponent extends IconComponentBase {
|
|
6299
6814
|
static readonly slug = "shopping-bag";
|
|
6300
6815
|
static readonly category: IconCategory;
|
|
@@ -6407,6 +6922,14 @@ declare class SmileIconComponent extends IconComponentBase {
|
|
|
6407
6922
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SmileIconComponent, "ea-icon-smile", never, {}, {}, never, never, true, never>;
|
|
6408
6923
|
}
|
|
6409
6924
|
|
|
6925
|
+
declare class SnowflakeIconComponent extends IconComponentBase {
|
|
6926
|
+
static readonly slug = "snowflake";
|
|
6927
|
+
static readonly category: IconCategory;
|
|
6928
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6929
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnowflakeIconComponent, never>;
|
|
6930
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SnowflakeIconComponent, "ea-icon-snowflake", never, {}, {}, never, never, true, never>;
|
|
6931
|
+
}
|
|
6932
|
+
|
|
6410
6933
|
declare class SoccerBallIconComponent extends IconComponentBase {
|
|
6411
6934
|
static readonly slug = "soccer-ball";
|
|
6412
6935
|
static readonly category: IconCategory;
|
|
@@ -6415,6 +6938,14 @@ declare class SoccerBallIconComponent extends IconComponentBase {
|
|
|
6415
6938
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SoccerBallIconComponent, "ea-icon-soccer-ball", never, {}, {}, never, never, true, never>;
|
|
6416
6939
|
}
|
|
6417
6940
|
|
|
6941
|
+
declare class SparklesIconComponent extends IconComponentBase {
|
|
6942
|
+
static readonly slug = "sparkles";
|
|
6943
|
+
static readonly category: IconCategory;
|
|
6944
|
+
static readonly tags: ReadonlyArray<string>;
|
|
6945
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SparklesIconComponent, never>;
|
|
6946
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SparklesIconComponent, "ea-icon-sparkles", never, {}, {}, never, never, true, never>;
|
|
6947
|
+
}
|
|
6948
|
+
|
|
6418
6949
|
declare class SpeakerIconComponent extends IconComponentBase {
|
|
6419
6950
|
static readonly slug = "speaker";
|
|
6420
6951
|
static readonly category: IconCategory;
|
|
@@ -6467,6 +6998,14 @@ declare class StripeIconComponent extends IconComponentBase {
|
|
|
6467
6998
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StripeIconComponent, "ea-icon-stripe", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6468
6999
|
}
|
|
6469
7000
|
|
|
7001
|
+
declare class SubtitlesIconComponent extends IconComponentBase {
|
|
7002
|
+
static readonly slug = "subtitles";
|
|
7003
|
+
static readonly category: IconCategory;
|
|
7004
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7005
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SubtitlesIconComponent, never>;
|
|
7006
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SubtitlesIconComponent, "ea-icon-subtitles", never, {}, {}, never, never, true, never>;
|
|
7007
|
+
}
|
|
7008
|
+
|
|
6470
7009
|
declare class SunIconComponent extends IconComponentBase {
|
|
6471
7010
|
static readonly slug = "sun";
|
|
6472
7011
|
static readonly category: IconCategory;
|
|
@@ -6491,6 +7030,16 @@ declare class SunsetIconComponent extends IconComponentBase {
|
|
|
6491
7030
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SunsetIconComponent, "ea-icon-sunset", never, {}, {}, never, never, true, never>;
|
|
6492
7031
|
}
|
|
6493
7032
|
|
|
7033
|
+
declare class SvelteIconComponent extends IconComponentBase {
|
|
7034
|
+
static readonly slug = "svelte";
|
|
7035
|
+
static readonly category: IconCategory;
|
|
7036
|
+
static readonly isBrand = true;
|
|
7037
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7038
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7039
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SvelteIconComponent, never>;
|
|
7040
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SvelteIconComponent, "ea-icon-svelte", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7041
|
+
}
|
|
7042
|
+
|
|
6494
7043
|
declare class TableIconComponent extends IconComponentBase {
|
|
6495
7044
|
static readonly slug = "table";
|
|
6496
7045
|
static readonly category: IconCategory;
|
|
@@ -6515,14 +7064,34 @@ declare class TagIconComponent extends IconComponentBase {
|
|
|
6515
7064
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TagIconComponent, "ea-icon-tag", never, {}, {}, never, never, true, never>;
|
|
6516
7065
|
}
|
|
6517
7066
|
|
|
6518
|
-
declare class
|
|
6519
|
-
static readonly slug = "
|
|
7067
|
+
declare class TailwindIconComponent extends IconComponentBase {
|
|
7068
|
+
static readonly slug = "tailwind";
|
|
6520
7069
|
static readonly category: IconCategory;
|
|
7070
|
+
static readonly isBrand = true;
|
|
6521
7071
|
static readonly tags: ReadonlyArray<string>;
|
|
6522
|
-
|
|
6523
|
-
static
|
|
6524
|
-
}
|
|
6525
|
-
|
|
7072
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7073
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TailwindIconComponent, never>;
|
|
7074
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TailwindIconComponent, "ea-icon-tailwind", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7075
|
+
}
|
|
7076
|
+
|
|
7077
|
+
declare class TargetIconComponent extends IconComponentBase {
|
|
7078
|
+
static readonly slug = "target";
|
|
7079
|
+
static readonly category: IconCategory;
|
|
7080
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7081
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TargetIconComponent, never>;
|
|
7082
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TargetIconComponent, "ea-icon-target", never, {}, {}, never, never, true, never>;
|
|
7083
|
+
}
|
|
7084
|
+
|
|
7085
|
+
declare class TelegramIconComponent extends IconComponentBase {
|
|
7086
|
+
static readonly slug = "telegram";
|
|
7087
|
+
static readonly category: IconCategory;
|
|
7088
|
+
static readonly isBrand = true;
|
|
7089
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7090
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7091
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TelegramIconComponent, never>;
|
|
7092
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TelegramIconComponent, "ea-icon-telegram", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7093
|
+
}
|
|
7094
|
+
|
|
6526
7095
|
declare class TerminalIconComponent extends IconComponentBase {
|
|
6527
7096
|
static readonly slug = "terminal";
|
|
6528
7097
|
static readonly category: IconCategory;
|
|
@@ -6539,6 +7108,16 @@ declare class ThermometerIconComponent extends IconComponentBase {
|
|
|
6539
7108
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ThermometerIconComponent, "ea-icon-thermometer", never, {}, {}, never, never, true, never>;
|
|
6540
7109
|
}
|
|
6541
7110
|
|
|
7111
|
+
declare class ThreadsIconComponent extends IconComponentBase {
|
|
7112
|
+
static readonly slug = "threads";
|
|
7113
|
+
static readonly category: IconCategory;
|
|
7114
|
+
static readonly isBrand = true;
|
|
7115
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7116
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7117
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ThreadsIconComponent, never>;
|
|
7118
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ThreadsIconComponent, "ea-icon-threads", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7119
|
+
}
|
|
7120
|
+
|
|
6542
7121
|
declare class ThumbsDownIconComponent extends IconComponentBase {
|
|
6543
7122
|
static readonly slug = "thumbs-down";
|
|
6544
7123
|
static readonly category: IconCategory;
|
|
@@ -6555,6 +7134,32 @@ declare class ThumbsUpIconComponent extends IconComponentBase {
|
|
|
6555
7134
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ThumbsUpIconComponent, "ea-icon-thumbs-up", never, {}, {}, never, never, true, never>;
|
|
6556
7135
|
}
|
|
6557
7136
|
|
|
7137
|
+
declare class TiktokIconComponent extends IconComponentBase {
|
|
7138
|
+
static readonly slug = "tiktok";
|
|
7139
|
+
static readonly category: IconCategory;
|
|
7140
|
+
static readonly isBrand = true;
|
|
7141
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7142
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7143
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TiktokIconComponent, never>;
|
|
7144
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TiktokIconComponent, "ea-icon-tiktok", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7145
|
+
}
|
|
7146
|
+
|
|
7147
|
+
declare class TimecodeIconComponent extends IconComponentBase {
|
|
7148
|
+
static readonly slug = "timecode";
|
|
7149
|
+
static readonly category: IconCategory;
|
|
7150
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7151
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimecodeIconComponent, never>;
|
|
7152
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimecodeIconComponent, "ea-icon-timecode", never, {}, {}, never, never, true, never>;
|
|
7153
|
+
}
|
|
7154
|
+
|
|
7155
|
+
declare class TimerIconComponent extends IconComponentBase {
|
|
7156
|
+
static readonly slug = "timer";
|
|
7157
|
+
static readonly category: IconCategory;
|
|
7158
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7159
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimerIconComponent, never>;
|
|
7160
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimerIconComponent, "ea-icon-timer", never, {}, {}, never, never, true, never>;
|
|
7161
|
+
}
|
|
7162
|
+
|
|
6558
7163
|
declare class ToggleLeftIconComponent extends IconComponentBase {
|
|
6559
7164
|
static readonly slug = "toggle-left";
|
|
6560
7165
|
static readonly category: IconCategory;
|
|
@@ -6579,6 +7184,14 @@ declare class ToolIconComponent extends IconComponentBase {
|
|
|
6579
7184
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToolIconComponent, "ea-icon-tool", never, {}, {}, never, never, true, never>;
|
|
6580
7185
|
}
|
|
6581
7186
|
|
|
7187
|
+
declare class TranscodeIconComponent extends IconComponentBase {
|
|
7188
|
+
static readonly slug = "transcode";
|
|
7189
|
+
static readonly category: IconCategory;
|
|
7190
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7191
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TranscodeIconComponent, never>;
|
|
7192
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TranscodeIconComponent, "ea-icon-transcode", never, {}, {}, never, never, true, never>;
|
|
7193
|
+
}
|
|
7194
|
+
|
|
6582
7195
|
declare class TrashIconComponent extends IconComponentBase {
|
|
6583
7196
|
static readonly slug = "trash";
|
|
6584
7197
|
static readonly category: IconCategory;
|
|
@@ -6628,6 +7241,14 @@ declare class TriangleIconComponent extends IconComponentBase {
|
|
|
6628
7241
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TriangleIconComponent, "ea-icon-triangle", never, {}, {}, never, never, true, never>;
|
|
6629
7242
|
}
|
|
6630
7243
|
|
|
7244
|
+
declare class TrimIconComponent extends IconComponentBase {
|
|
7245
|
+
static readonly slug = "trim";
|
|
7246
|
+
static readonly category: IconCategory;
|
|
7247
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7248
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TrimIconComponent, never>;
|
|
7249
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TrimIconComponent, "ea-icon-trim", never, {}, {}, never, never, true, never>;
|
|
7250
|
+
}
|
|
7251
|
+
|
|
6631
7252
|
declare class TrophyIconComponent extends IconComponentBase {
|
|
6632
7253
|
static readonly slug = "trophy";
|
|
6633
7254
|
static readonly category: IconCategory;
|
|
@@ -6718,6 +7339,14 @@ declare class UnderlineIconComponent extends IconComponentBase {
|
|
|
6718
7339
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UnderlineIconComponent, "ea-icon-underline", never, {}, {}, never, never, true, never>;
|
|
6719
7340
|
}
|
|
6720
7341
|
|
|
7342
|
+
declare class UndoIconComponent extends IconComponentBase {
|
|
7343
|
+
static readonly slug = "undo";
|
|
7344
|
+
static readonly category: IconCategory;
|
|
7345
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7346
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UndoIconComponent, never>;
|
|
7347
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UndoIconComponent, "ea-icon-undo", never, {}, {}, never, never, true, never>;
|
|
7348
|
+
}
|
|
7349
|
+
|
|
6721
7350
|
declare class UnlockIconComponent extends IconComponentBase {
|
|
6722
7351
|
static readonly slug = "unlock";
|
|
6723
7352
|
static readonly category: IconCategory;
|
|
@@ -6857,6 +7486,32 @@ declare class VolumeXIconComponent extends IconComponentBase {
|
|
|
6857
7486
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<VolumeXIconComponent, "ea-icon-volume-x", never, {}, {}, never, never, true, never>;
|
|
6858
7487
|
}
|
|
6859
7488
|
|
|
7489
|
+
declare class VueIconComponent extends IconComponentBase {
|
|
7490
|
+
static readonly slug = "vue";
|
|
7491
|
+
static readonly category: IconCategory;
|
|
7492
|
+
static readonly isBrand = true;
|
|
7493
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7494
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7495
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<VueIconComponent, never>;
|
|
7496
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<VueIconComponent, "ea-icon-vue", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7497
|
+
}
|
|
7498
|
+
|
|
7499
|
+
declare class WalletIconComponent extends IconComponentBase {
|
|
7500
|
+
static readonly slug = "wallet";
|
|
7501
|
+
static readonly category: IconCategory;
|
|
7502
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7503
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WalletIconComponent, never>;
|
|
7504
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WalletIconComponent, "ea-icon-wallet", never, {}, {}, never, never, true, never>;
|
|
7505
|
+
}
|
|
7506
|
+
|
|
7507
|
+
declare class WandIconComponent extends IconComponentBase {
|
|
7508
|
+
static readonly slug = "wand";
|
|
7509
|
+
static readonly category: IconCategory;
|
|
7510
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7511
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WandIconComponent, never>;
|
|
7512
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WandIconComponent, "ea-icon-wand", never, {}, {}, never, never, true, never>;
|
|
7513
|
+
}
|
|
7514
|
+
|
|
6860
7515
|
declare class WatchIconComponent extends IconComponentBase {
|
|
6861
7516
|
static readonly slug = "watch";
|
|
6862
7517
|
static readonly category: IconCategory;
|
|
@@ -6865,6 +7520,24 @@ declare class WatchIconComponent extends IconComponentBase {
|
|
|
6865
7520
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WatchIconComponent, "ea-icon-watch", never, {}, {}, never, never, true, never>;
|
|
6866
7521
|
}
|
|
6867
7522
|
|
|
7523
|
+
declare class WaveformIconComponent extends IconComponentBase {
|
|
7524
|
+
static readonly slug = "waveform";
|
|
7525
|
+
static readonly category: IconCategory;
|
|
7526
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7527
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WaveformIconComponent, never>;
|
|
7528
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WaveformIconComponent, "ea-icon-waveform", never, {}, {}, never, never, true, never>;
|
|
7529
|
+
}
|
|
7530
|
+
|
|
7531
|
+
declare class WhatsappIconComponent extends IconComponentBase {
|
|
7532
|
+
static readonly slug = "whatsapp";
|
|
7533
|
+
static readonly category: IconCategory;
|
|
7534
|
+
static readonly isBrand = true;
|
|
7535
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7536
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7537
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WhatsappIconComponent, never>;
|
|
7538
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WhatsappIconComponent, "ea-icon-whatsapp", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7539
|
+
}
|
|
7540
|
+
|
|
6868
7541
|
declare class WifiIconComponent extends IconComponentBase {
|
|
6869
7542
|
static readonly slug = "wifi";
|
|
6870
7543
|
static readonly category: IconCategory;
|
|
@@ -6889,6 +7562,16 @@ declare class WindIconComponent extends IconComponentBase {
|
|
|
6889
7562
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WindIconComponent, "ea-icon-wind", never, {}, {}, never, never, true, never>;
|
|
6890
7563
|
}
|
|
6891
7564
|
|
|
7565
|
+
declare class WordpressIconComponent extends IconComponentBase {
|
|
7566
|
+
static readonly slug = "wordpress";
|
|
7567
|
+
static readonly category: IconCategory;
|
|
7568
|
+
static readonly isBrand = true;
|
|
7569
|
+
static readonly tags: ReadonlyArray<string>;
|
|
7570
|
+
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7571
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WordpressIconComponent, never>;
|
|
7572
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WordpressIconComponent, "ea-icon-wordpress", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7573
|
+
}
|
|
7574
|
+
|
|
6892
7575
|
declare class XIconComponent extends IconComponentBase {
|
|
6893
7576
|
static readonly slug = "x";
|
|
6894
7577
|
static readonly category: IconCategory;
|
|
@@ -6996,545 +7679,5 @@ declare class ZoomOutIconComponent extends IconComponentBase {
|
|
|
6996
7679
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZoomOutIconComponent, "ea-icon-zoom-out", never, {}, {}, never, never, true, never>;
|
|
6997
7680
|
}
|
|
6998
7681
|
|
|
6999
|
-
declare class AnthropicIconComponent extends IconComponentBase {
|
|
7000
|
-
|
|
7001
|
-
static readonly category: IconCategory;
|
|
7002
|
-
static readonly isBrand = true;
|
|
7003
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7004
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7005
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AnthropicIconComponent, never>;
|
|
7006
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AnthropicIconComponent, "ea-icon-anthropic", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7007
|
-
}
|
|
7008
|
-
|
|
7009
|
-
declare class BadgeCheckIconComponent extends IconComponentBase {
|
|
7010
|
-
static readonly slug = "badge-check";
|
|
7011
|
-
static readonly category: IconCategory;
|
|
7012
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7013
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BadgeCheckIconComponent, never>;
|
|
7014
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BadgeCheckIconComponent, "ea-icon-badge-check", never, {}, {}, never, never, true, never>;
|
|
7015
|
-
}
|
|
7016
|
-
|
|
7017
|
-
declare class BitcoinIconComponent extends IconComponentBase {
|
|
7018
|
-
static readonly slug = "bitcoin";
|
|
7019
|
-
static readonly category: IconCategory;
|
|
7020
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7021
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BitcoinIconComponent, never>;
|
|
7022
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BitcoinIconComponent, "ea-icon-bitcoin", never, {}, {}, never, never, true, never>;
|
|
7023
|
-
}
|
|
7024
|
-
|
|
7025
|
-
declare class BookmarkCheckIconComponent extends IconComponentBase {
|
|
7026
|
-
static readonly slug = "bookmark-check";
|
|
7027
|
-
static readonly category: IconCategory;
|
|
7028
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7029
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BookmarkCheckIconComponent, never>;
|
|
7030
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BookmarkCheckIconComponent, "ea-icon-bookmark-check", never, {}, {}, never, never, true, never>;
|
|
7031
|
-
}
|
|
7032
|
-
|
|
7033
|
-
declare class BotIconComponent extends IconComponentBase {
|
|
7034
|
-
static readonly slug = "bot";
|
|
7035
|
-
static readonly category: IconCategory;
|
|
7036
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7037
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BotIconComponent, never>;
|
|
7038
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BotIconComponent, "ea-icon-bot", never, {}, {}, never, never, true, never>;
|
|
7039
|
-
}
|
|
7040
|
-
|
|
7041
|
-
declare class BrainIconComponent extends IconComponentBase {
|
|
7042
|
-
static readonly slug = "brain";
|
|
7043
|
-
static readonly category: IconCategory;
|
|
7044
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7045
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BrainIconComponent, never>;
|
|
7046
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BrainIconComponent, "ea-icon-brain", never, {}, {}, never, never, true, never>;
|
|
7047
|
-
}
|
|
7048
|
-
|
|
7049
|
-
declare class CalendarCheckIconComponent extends IconComponentBase {
|
|
7050
|
-
static readonly slug = "calendar-check";
|
|
7051
|
-
static readonly category: IconCategory;
|
|
7052
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7053
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CalendarCheckIconComponent, never>;
|
|
7054
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CalendarCheckIconComponent, "ea-icon-calendar-check", never, {}, {}, never, never, true, never>;
|
|
7055
|
-
}
|
|
7056
|
-
|
|
7057
|
-
declare class ClipboardCheckIconComponent extends IconComponentBase {
|
|
7058
|
-
static readonly slug = "clipboard-check";
|
|
7059
|
-
static readonly category: IconCategory;
|
|
7060
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7061
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClipboardCheckIconComponent, never>;
|
|
7062
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClipboardCheckIconComponent, "ea-icon-clipboard-check", never, {}, {}, never, never, true, never>;
|
|
7063
|
-
}
|
|
7064
|
-
|
|
7065
|
-
declare class CoinsIconComponent extends IconComponentBase {
|
|
7066
|
-
static readonly slug = "coins";
|
|
7067
|
-
static readonly category: IconCategory;
|
|
7068
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7069
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoinsIconComponent, never>;
|
|
7070
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CoinsIconComponent, "ea-icon-coins", never, {}, {}, never, never, true, never>;
|
|
7071
|
-
}
|
|
7072
|
-
|
|
7073
|
-
declare class FilterXIconComponent extends IconComponentBase {
|
|
7074
|
-
static readonly slug = "filter-x";
|
|
7075
|
-
static readonly category: IconCategory;
|
|
7076
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7077
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterXIconComponent, never>;
|
|
7078
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterXIconComponent, "ea-icon-filter-x", never, {}, {}, never, never, true, never>;
|
|
7079
|
-
}
|
|
7080
|
-
|
|
7081
|
-
declare class FingerprintIconComponent extends IconComponentBase {
|
|
7082
|
-
static readonly slug = "fingerprint";
|
|
7083
|
-
static readonly category: IconCategory;
|
|
7084
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7085
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FingerprintIconComponent, never>;
|
|
7086
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FingerprintIconComponent, "ea-icon-fingerprint", never, {}, {}, never, never, true, never>;
|
|
7087
|
-
}
|
|
7088
|
-
|
|
7089
|
-
declare class FlameIconComponent extends IconComponentBase {
|
|
7090
|
-
static readonly slug = "flame";
|
|
7091
|
-
static readonly category: IconCategory;
|
|
7092
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7093
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlameIconComponent, never>;
|
|
7094
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlameIconComponent, "ea-icon-flame", never, {}, {}, never, never, true, never>;
|
|
7095
|
-
}
|
|
7096
|
-
|
|
7097
|
-
declare class GaugeIconComponent extends IconComponentBase {
|
|
7098
|
-
static readonly slug = "gauge";
|
|
7099
|
-
static readonly category: IconCategory;
|
|
7100
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7101
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaugeIconComponent, never>;
|
|
7102
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaugeIconComponent, "ea-icon-gauge", never, {}, {}, never, never, true, never>;
|
|
7103
|
-
}
|
|
7104
|
-
|
|
7105
|
-
declare class GeminiIconComponent extends IconComponentBase {
|
|
7106
|
-
static readonly slug = "gemini";
|
|
7107
|
-
static readonly category: IconCategory;
|
|
7108
|
-
static readonly isBrand = true;
|
|
7109
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7110
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7111
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GeminiIconComponent, never>;
|
|
7112
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GeminiIconComponent, "ea-icon-gemini", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7113
|
-
}
|
|
7114
|
-
|
|
7115
|
-
declare class LeafIconComponent extends IconComponentBase {
|
|
7116
|
-
static readonly slug = "leaf";
|
|
7117
|
-
static readonly category: IconCategory;
|
|
7118
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7119
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LeafIconComponent, never>;
|
|
7120
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LeafIconComponent, "ea-icon-leaf", never, {}, {}, never, never, true, never>;
|
|
7121
|
-
}
|
|
7122
|
-
|
|
7123
|
-
declare class ListChecksIconComponent extends IconComponentBase {
|
|
7124
|
-
static readonly slug = "list-checks";
|
|
7125
|
-
static readonly category: IconCategory;
|
|
7126
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7127
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListChecksIconComponent, never>;
|
|
7128
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListChecksIconComponent, "ea-icon-list-checks", never, {}, {}, never, never, true, never>;
|
|
7129
|
-
}
|
|
7130
|
-
|
|
7131
|
-
declare class QrCodeIconComponent extends IconComponentBase {
|
|
7132
|
-
static readonly slug = "qr-code";
|
|
7133
|
-
static readonly category: IconCategory;
|
|
7134
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7135
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<QrCodeIconComponent, never>;
|
|
7136
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<QrCodeIconComponent, "ea-icon-qr-code", never, {}, {}, never, never, true, never>;
|
|
7137
|
-
}
|
|
7138
|
-
|
|
7139
|
-
declare class ReactIconComponent extends IconComponentBase {
|
|
7140
|
-
static readonly slug = "react";
|
|
7141
|
-
static readonly category: IconCategory;
|
|
7142
|
-
static readonly isBrand = true;
|
|
7143
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7144
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7145
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ReactIconComponent, never>;
|
|
7146
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ReactIconComponent, "ea-icon-react", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7147
|
-
}
|
|
7148
|
-
|
|
7149
|
-
declare class ReceiptIconComponent extends IconComponentBase {
|
|
7150
|
-
static readonly slug = "receipt";
|
|
7151
|
-
static readonly category: IconCategory;
|
|
7152
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7153
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ReceiptIconComponent, never>;
|
|
7154
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ReceiptIconComponent, "ea-icon-receipt", never, {}, {}, never, never, true, never>;
|
|
7155
|
-
}
|
|
7156
|
-
|
|
7157
|
-
declare class RedoIconComponent extends IconComponentBase {
|
|
7158
|
-
static readonly slug = "redo";
|
|
7159
|
-
static readonly category: IconCategory;
|
|
7160
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7161
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RedoIconComponent, never>;
|
|
7162
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RedoIconComponent, "ea-icon-redo", never, {}, {}, never, never, true, never>;
|
|
7163
|
-
}
|
|
7164
|
-
|
|
7165
|
-
declare class RocketIconComponent extends IconComponentBase {
|
|
7166
|
-
static readonly slug = "rocket";
|
|
7167
|
-
static readonly category: IconCategory;
|
|
7168
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7169
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RocketIconComponent, never>;
|
|
7170
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RocketIconComponent, "ea-icon-rocket", never, {}, {}, never, never, true, never>;
|
|
7171
|
-
}
|
|
7172
|
-
|
|
7173
|
-
declare class ScanIconComponent extends IconComponentBase {
|
|
7174
|
-
static readonly slug = "scan";
|
|
7175
|
-
static readonly category: IconCategory;
|
|
7176
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7177
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScanIconComponent, never>;
|
|
7178
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScanIconComponent, "ea-icon-scan", never, {}, {}, never, never, true, never>;
|
|
7179
|
-
}
|
|
7180
|
-
|
|
7181
|
-
declare class SnowflakeIconComponent extends IconComponentBase {
|
|
7182
|
-
static readonly slug = "snowflake";
|
|
7183
|
-
static readonly category: IconCategory;
|
|
7184
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7185
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnowflakeIconComponent, never>;
|
|
7186
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SnowflakeIconComponent, "ea-icon-snowflake", never, {}, {}, never, never, true, never>;
|
|
7187
|
-
}
|
|
7188
|
-
|
|
7189
|
-
declare class SparklesIconComponent extends IconComponentBase {
|
|
7190
|
-
static readonly slug = "sparkles";
|
|
7191
|
-
static readonly category: IconCategory;
|
|
7192
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7193
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SparklesIconComponent, never>;
|
|
7194
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SparklesIconComponent, "ea-icon-sparkles", never, {}, {}, never, never, true, never>;
|
|
7195
|
-
}
|
|
7196
|
-
|
|
7197
|
-
declare class TailwindIconComponent extends IconComponentBase {
|
|
7198
|
-
static readonly slug = "tailwind";
|
|
7199
|
-
static readonly category: IconCategory;
|
|
7200
|
-
static readonly isBrand = true;
|
|
7201
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7202
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7203
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TailwindIconComponent, never>;
|
|
7204
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TailwindIconComponent, "ea-icon-tailwind", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7205
|
-
}
|
|
7206
|
-
|
|
7207
|
-
declare class TelegramIconComponent extends IconComponentBase {
|
|
7208
|
-
static readonly slug = "telegram";
|
|
7209
|
-
static readonly category: IconCategory;
|
|
7210
|
-
static readonly isBrand = true;
|
|
7211
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7212
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7213
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TelegramIconComponent, never>;
|
|
7214
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TelegramIconComponent, "ea-icon-telegram", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7215
|
-
}
|
|
7216
|
-
|
|
7217
|
-
declare class ThreadsIconComponent extends IconComponentBase {
|
|
7218
|
-
static readonly slug = "threads";
|
|
7219
|
-
static readonly category: IconCategory;
|
|
7220
|
-
static readonly isBrand = true;
|
|
7221
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7222
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7223
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ThreadsIconComponent, never>;
|
|
7224
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ThreadsIconComponent, "ea-icon-threads", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7225
|
-
}
|
|
7226
|
-
|
|
7227
|
-
declare class TiktokIconComponent extends IconComponentBase {
|
|
7228
|
-
static readonly slug = "tiktok";
|
|
7229
|
-
static readonly category: IconCategory;
|
|
7230
|
-
static readonly isBrand = true;
|
|
7231
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7232
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7233
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TiktokIconComponent, never>;
|
|
7234
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TiktokIconComponent, "ea-icon-tiktok", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7235
|
-
}
|
|
7236
|
-
|
|
7237
|
-
declare class UndoIconComponent extends IconComponentBase {
|
|
7238
|
-
static readonly slug = "undo";
|
|
7239
|
-
static readonly category: IconCategory;
|
|
7240
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7241
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UndoIconComponent, never>;
|
|
7242
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UndoIconComponent, "ea-icon-undo", never, {}, {}, never, never, true, never>;
|
|
7243
|
-
}
|
|
7244
|
-
|
|
7245
|
-
declare class WalletIconComponent extends IconComponentBase {
|
|
7246
|
-
static readonly slug = "wallet";
|
|
7247
|
-
static readonly category: IconCategory;
|
|
7248
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7249
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WalletIconComponent, never>;
|
|
7250
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WalletIconComponent, "ea-icon-wallet", never, {}, {}, never, never, true, never>;
|
|
7251
|
-
}
|
|
7252
|
-
|
|
7253
|
-
declare class WandIconComponent extends IconComponentBase {
|
|
7254
|
-
static readonly slug = "wand";
|
|
7255
|
-
static readonly category: IconCategory;
|
|
7256
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7257
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WandIconComponent, never>;
|
|
7258
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WandIconComponent, "ea-icon-wand", never, {}, {}, never, never, true, never>;
|
|
7259
|
-
}
|
|
7260
|
-
|
|
7261
|
-
declare class WhatsappIconComponent extends IconComponentBase {
|
|
7262
|
-
static readonly slug = "whatsapp";
|
|
7263
|
-
static readonly category: IconCategory;
|
|
7264
|
-
static readonly isBrand = true;
|
|
7265
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7266
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7267
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WhatsappIconComponent, never>;
|
|
7268
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WhatsappIconComponent, "ea-icon-whatsapp", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7269
|
-
}
|
|
7270
|
-
|
|
7271
|
-
declare class AndroidIconComponent extends IconComponentBase {
|
|
7272
|
-
static readonly slug = "android";
|
|
7273
|
-
static readonly category: IconCategory;
|
|
7274
|
-
static readonly isBrand = true;
|
|
7275
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7276
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7277
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AndroidIconComponent, never>;
|
|
7278
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AndroidIconComponent, "ea-icon-android", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7279
|
-
}
|
|
7280
|
-
|
|
7281
|
-
declare class AngularIconComponent extends IconComponentBase {
|
|
7282
|
-
static readonly slug = "angular";
|
|
7283
|
-
static readonly category: IconCategory;
|
|
7284
|
-
static readonly isBrand = true;
|
|
7285
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7286
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7287
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AngularIconComponent, never>;
|
|
7288
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AngularIconComponent, "ea-icon-angular", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7289
|
-
}
|
|
7290
|
-
|
|
7291
|
-
declare class BellRingIconComponent extends IconComponentBase {
|
|
7292
|
-
static readonly slug = "bell-ring";
|
|
7293
|
-
static readonly category: IconCategory;
|
|
7294
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7295
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BellRingIconComponent, never>;
|
|
7296
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BellRingIconComponent, "ea-icon-bell-ring", never, {}, {}, never, never, true, never>;
|
|
7297
|
-
}
|
|
7298
|
-
|
|
7299
|
-
declare class BlueskyIconComponent extends IconComponentBase {
|
|
7300
|
-
static readonly slug = "bluesky";
|
|
7301
|
-
static readonly category: IconCategory;
|
|
7302
|
-
static readonly isBrand = true;
|
|
7303
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7304
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7305
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BlueskyIconComponent, never>;
|
|
7306
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BlueskyIconComponent, "ea-icon-bluesky", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7307
|
-
}
|
|
7308
|
-
|
|
7309
|
-
declare class BookmarkPlusIconComponent extends IconComponentBase {
|
|
7310
|
-
static readonly slug = "bookmark-plus";
|
|
7311
|
-
static readonly category: IconCategory;
|
|
7312
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7313
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BookmarkPlusIconComponent, never>;
|
|
7314
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BookmarkPlusIconComponent, "ea-icon-bookmark-plus", never, {}, {}, never, never, true, never>;
|
|
7315
|
-
}
|
|
7316
|
-
|
|
7317
|
-
declare class CalendarDaysIconComponent extends IconComponentBase {
|
|
7318
|
-
static readonly slug = "calendar-days";
|
|
7319
|
-
static readonly category: IconCategory;
|
|
7320
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7321
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CalendarDaysIconComponent, never>;
|
|
7322
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CalendarDaysIconComponent, "ea-icon-calendar-days", never, {}, {}, never, never, true, never>;
|
|
7323
|
-
}
|
|
7324
|
-
|
|
7325
|
-
declare class ClipboardListIconComponent extends IconComponentBase {
|
|
7326
|
-
static readonly slug = "clipboard-list";
|
|
7327
|
-
static readonly category: IconCategory;
|
|
7328
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7329
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClipboardListIconComponent, never>;
|
|
7330
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClipboardListIconComponent, "ea-icon-clipboard-list", never, {}, {}, never, never, true, never>;
|
|
7331
|
-
}
|
|
7332
|
-
|
|
7333
|
-
declare class FileCheckIconComponent extends IconComponentBase {
|
|
7334
|
-
static readonly slug = "file-check";
|
|
7335
|
-
static readonly category: IconCategory;
|
|
7336
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7337
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FileCheckIconComponent, never>;
|
|
7338
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileCheckIconComponent, "ea-icon-file-check", never, {}, {}, never, never, true, never>;
|
|
7339
|
-
}
|
|
7340
|
-
|
|
7341
|
-
declare class FolderOpenIconComponent extends IconComponentBase {
|
|
7342
|
-
static readonly slug = "folder-open";
|
|
7343
|
-
static readonly category: IconCategory;
|
|
7344
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7345
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FolderOpenIconComponent, never>;
|
|
7346
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FolderOpenIconComponent, "ea-icon-folder-open", never, {}, {}, never, never, true, never>;
|
|
7347
|
-
}
|
|
7348
|
-
|
|
7349
|
-
declare class GitCompareIconComponent extends IconComponentBase {
|
|
7350
|
-
static readonly slug = "git-compare";
|
|
7351
|
-
static readonly category: IconCategory;
|
|
7352
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7353
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GitCompareIconComponent, never>;
|
|
7354
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GitCompareIconComponent, "ea-icon-git-compare", never, {}, {}, never, never, true, never>;
|
|
7355
|
-
}
|
|
7356
|
-
|
|
7357
|
-
declare class KeyboardIconComponent extends IconComponentBase {
|
|
7358
|
-
static readonly slug = "keyboard";
|
|
7359
|
-
static readonly category: IconCategory;
|
|
7360
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7361
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KeyboardIconComponent, never>;
|
|
7362
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KeyboardIconComponent, "ea-icon-keyboard", never, {}, {}, never, never, true, never>;
|
|
7363
|
-
}
|
|
7364
|
-
|
|
7365
|
-
declare class LanguagesIconComponent extends IconComponentBase {
|
|
7366
|
-
static readonly slug = "languages";
|
|
7367
|
-
static readonly category: IconCategory;
|
|
7368
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7369
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LanguagesIconComponent, never>;
|
|
7370
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LanguagesIconComponent, "ea-icon-languages", never, {}, {}, never, never, true, never>;
|
|
7371
|
-
}
|
|
7372
|
-
|
|
7373
|
-
declare class MailCheckIconComponent extends IconComponentBase {
|
|
7374
|
-
static readonly slug = "mail-check";
|
|
7375
|
-
static readonly category: IconCategory;
|
|
7376
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7377
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MailCheckIconComponent, never>;
|
|
7378
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MailCheckIconComponent, "ea-icon-mail-check", never, {}, {}, never, never, true, never>;
|
|
7379
|
-
}
|
|
7380
|
-
|
|
7381
|
-
declare class NodejsIconComponent extends IconComponentBase {
|
|
7382
|
-
static readonly slug = "nodejs";
|
|
7383
|
-
static readonly category: IconCategory;
|
|
7384
|
-
static readonly isBrand = true;
|
|
7385
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7386
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7387
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NodejsIconComponent, never>;
|
|
7388
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NodejsIconComponent, "ea-icon-nodejs", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7389
|
-
}
|
|
7390
|
-
|
|
7391
|
-
declare class PinterestIconComponent extends IconComponentBase {
|
|
7392
|
-
static readonly slug = "pinterest";
|
|
7393
|
-
static readonly category: IconCategory;
|
|
7394
|
-
static readonly isBrand = true;
|
|
7395
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7396
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7397
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PinterestIconComponent, never>;
|
|
7398
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PinterestIconComponent, "ea-icon-pinterest", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7399
|
-
}
|
|
7400
|
-
|
|
7401
|
-
declare class PythonIconComponent extends IconComponentBase {
|
|
7402
|
-
static readonly slug = "python";
|
|
7403
|
-
static readonly category: IconCategory;
|
|
7404
|
-
static readonly isBrand = true;
|
|
7405
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7406
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7407
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PythonIconComponent, never>;
|
|
7408
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PythonIconComponent, "ea-icon-python", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7409
|
-
}
|
|
7410
|
-
|
|
7411
|
-
declare class ShieldCheckIconComponent extends IconComponentBase {
|
|
7412
|
-
static readonly slug = "shield-check";
|
|
7413
|
-
static readonly category: IconCategory;
|
|
7414
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7415
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShieldCheckIconComponent, never>;
|
|
7416
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShieldCheckIconComponent, "ea-icon-shield-check", never, {}, {}, never, never, true, never>;
|
|
7417
|
-
}
|
|
7418
|
-
|
|
7419
|
-
declare class ShopifyIconComponent extends IconComponentBase {
|
|
7420
|
-
static readonly slug = "shopify";
|
|
7421
|
-
static readonly category: IconCategory;
|
|
7422
|
-
static readonly isBrand = true;
|
|
7423
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7424
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7425
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShopifyIconComponent, never>;
|
|
7426
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopifyIconComponent, "ea-icon-shopify", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7427
|
-
}
|
|
7428
|
-
|
|
7429
|
-
declare class SvelteIconComponent extends IconComponentBase {
|
|
7430
|
-
static readonly slug = "svelte";
|
|
7431
|
-
static readonly category: IconCategory;
|
|
7432
|
-
static readonly isBrand = true;
|
|
7433
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7434
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7435
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SvelteIconComponent, never>;
|
|
7436
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SvelteIconComponent, "ea-icon-svelte", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7437
|
-
}
|
|
7438
|
-
|
|
7439
|
-
declare class VueIconComponent extends IconComponentBase {
|
|
7440
|
-
static readonly slug = "vue";
|
|
7441
|
-
static readonly category: IconCategory;
|
|
7442
|
-
static readonly isBrand = true;
|
|
7443
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7444
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7445
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<VueIconComponent, never>;
|
|
7446
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<VueIconComponent, "ea-icon-vue", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7447
|
-
}
|
|
7448
|
-
|
|
7449
|
-
declare class WordpressIconComponent extends IconComponentBase {
|
|
7450
|
-
static readonly slug = "wordpress";
|
|
7451
|
-
static readonly category: IconCategory;
|
|
7452
|
-
static readonly isBrand = true;
|
|
7453
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7454
|
-
readonly brand: _angular_core.InputSignal<boolean>;
|
|
7455
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WordpressIconComponent, never>;
|
|
7456
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WordpressIconComponent, "ea-icon-wordpress", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7457
|
-
}
|
|
7458
|
-
|
|
7459
|
-
declare class BugIconComponent extends IconComponentBase {
|
|
7460
|
-
static readonly slug = "bug";
|
|
7461
|
-
static readonly category: IconCategory;
|
|
7462
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7463
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BugIconComponent, never>;
|
|
7464
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BugIconComponent, "ea-icon-bug", never, {}, {}, never, never, true, never>;
|
|
7465
|
-
}
|
|
7466
|
-
|
|
7467
|
-
declare class BuildingIconComponent extends IconComponentBase {
|
|
7468
|
-
static readonly slug = "building";
|
|
7469
|
-
static readonly category: IconCategory;
|
|
7470
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7471
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BuildingIconComponent, never>;
|
|
7472
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BuildingIconComponent, "ea-icon-building", never, {}, {}, never, never, true, never>;
|
|
7473
|
-
}
|
|
7474
|
-
|
|
7475
|
-
declare class CalculatorIconComponent extends IconComponentBase {
|
|
7476
|
-
static readonly slug = "calculator";
|
|
7477
|
-
static readonly category: IconCategory;
|
|
7478
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7479
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CalculatorIconComponent, never>;
|
|
7480
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CalculatorIconComponent, "ea-icon-calculator", never, {}, {}, never, never, true, never>;
|
|
7481
|
-
}
|
|
7482
|
-
|
|
7483
|
-
declare class HistoryIconComponent extends IconComponentBase {
|
|
7484
|
-
static readonly slug = "history";
|
|
7485
|
-
static readonly category: IconCategory;
|
|
7486
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7487
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HistoryIconComponent, never>;
|
|
7488
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HistoryIconComponent, "ea-icon-history", never, {}, {}, never, never, true, never>;
|
|
7489
|
-
}
|
|
7490
|
-
|
|
7491
|
-
declare class LightbulbIconComponent extends IconComponentBase {
|
|
7492
|
-
static readonly slug = "lightbulb";
|
|
7493
|
-
static readonly category: IconCategory;
|
|
7494
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7495
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LightbulbIconComponent, never>;
|
|
7496
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LightbulbIconComponent, "ea-icon-lightbulb", never, {}, {}, never, never, true, never>;
|
|
7497
|
-
}
|
|
7498
|
-
|
|
7499
|
-
declare class MegaphoneIconComponent extends IconComponentBase {
|
|
7500
|
-
static readonly slug = "megaphone";
|
|
7501
|
-
static readonly category: IconCategory;
|
|
7502
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7503
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MegaphoneIconComponent, never>;
|
|
7504
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MegaphoneIconComponent, "ea-icon-megaphone", never, {}, {}, never, never, true, never>;
|
|
7505
|
-
}
|
|
7506
|
-
|
|
7507
|
-
declare class PaletteIconComponent extends IconComponentBase {
|
|
7508
|
-
static readonly slug = "palette";
|
|
7509
|
-
static readonly category: IconCategory;
|
|
7510
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7511
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PaletteIconComponent, never>;
|
|
7512
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaletteIconComponent, "ea-icon-palette", never, {}, {}, never, never, true, never>;
|
|
7513
|
-
}
|
|
7514
|
-
|
|
7515
|
-
declare class PinIconComponent extends IconComponentBase {
|
|
7516
|
-
static readonly slug = "pin";
|
|
7517
|
-
static readonly category: IconCategory;
|
|
7518
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7519
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PinIconComponent, never>;
|
|
7520
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PinIconComponent, "ea-icon-pin", never, {}, {}, never, never, true, never>;
|
|
7521
|
-
}
|
|
7522
|
-
|
|
7523
|
-
declare class PlugIconComponent extends IconComponentBase {
|
|
7524
|
-
static readonly slug = "plug";
|
|
7525
|
-
static readonly category: IconCategory;
|
|
7526
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7527
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlugIconComponent, never>;
|
|
7528
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlugIconComponent, "ea-icon-plug", never, {}, {}, never, never, true, never>;
|
|
7529
|
-
}
|
|
7530
|
-
|
|
7531
|
-
declare class TimerIconComponent extends IconComponentBase {
|
|
7532
|
-
static readonly slug = "timer";
|
|
7533
|
-
static readonly category: IconCategory;
|
|
7534
|
-
static readonly tags: ReadonlyArray<string>;
|
|
7535
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimerIconComponent, never>;
|
|
7536
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimerIconComponent, "ea-icon-timer", never, {}, {}, never, never, true, never>;
|
|
7537
|
-
}
|
|
7538
|
-
|
|
7539
|
-
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, BugIconComponent, BuildingIconComponent, ButtonComponent, CalculatorIconComponent, CalendarCheckIconComponent, CalendarDaysIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, 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, HistoryIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KeyboardIconComponent, KubernetesIconComponent, LampIconComponent, LanguagesIconComponent, LayersIconComponent, LayoutIconComponent, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, LightbulbIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailCheckIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MegaphoneIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MultiSelectComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NodejsIconComponent, NotionIconComponent, NpmIconComponent, NumberInputComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaletteIconComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PinIconComponent, PinterestIconComponent, PlayCircleIconComponent, PlayIconComponent, PlugIconComponent, 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, 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, TimerIconComponent, 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, ar, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, he, hexToOklch, hi, iconDisplayName, is, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, ru, uk, validatePalette, visibleNodeIds, walkTree, zhCN };
|
|
7540
|
-
export type { AccordionHeadingLevel, AccordionSize, AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, BreadcrumbsSize, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSize, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, DrawerAnimation, DrawerMode, DrawerPosition, DrawerSize, DropdownSize, EaErrorMessages, EaSize, EaValidationErrorKey, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiLocaleBundle, EagamiLocaleLoader, EagamiLocaleMeta, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, FormFieldSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, MenuSize, ModePalette, ModeSurfaces, MultiSelectSize, NumberInputSize, PaginatorAlign, PaginatorSize, PaginatorState, PaletteConfig, PaletteRoles, PaletteShade, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, RatingSize, RatingStarState, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, StepperOrientation, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, TimelineAlign, TimelineItem, TimelineItemColor, TimelineOrientation, TimelineSize, Toast, ToastOptions, ToastPosition, ToastSize, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
|
|
7682
|
+
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, AndroidIconComponent, AngularIconComponent, AnthropicIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AspectRatioIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeCheckIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BellRingIconComponent, BitcoinIconComponent, BlueskyIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkCheckIconComponent, BookmarkIconComponent, BookmarkPlusIconComponent, BotIconComponent, BottleIconComponent, BoxIconComponent, BrainIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, BugIconComponent, BuildingIconComponent, ButtonComponent, CalculatorIconComponent, CalendarCheckIconComponent, CalendarDaysIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClapperboardIconComponent, ClipboardCheckIconComponent, ClipboardIconComponent, ClipboardListIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, CoinsIconComponent, ColorPickerComponent, ColumnsIconComponent, CommandIconComponent, CommandPaletteComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DEFAULT_PALETTE_ROLES, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideCircleIconComponent, DivideIconComponent, DivideSquareIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DribbbleIconComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_ALL_LOCALES, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_LOCALE_META, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FieldLabelComponent, FieldMessagesComponent, Figma2IconComponent, FigmaIconComponent, FileAudioIconComponent, FileCheckIconComponent, FileIconComponent, FileImageIconComponent, FileMinusIconComponent, FilePdfIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FileVideoIconComponent, FilmIconComponent, FilterIconComponent, FilterXIconComponent, FingerprintIconComponent, FlagIconComponent, FlameIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderOpenIconComponent, FolderPlusIconComponent, FormFieldComponent, FramerIconComponent, FrownIconComponent, GaugeIconComponent, GeminiIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitCompareIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HalfCircleIconComponent, HalfHeartIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HistoryIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, ImagesIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KeyboardIconComponent, KeyframeIconComponent, KubernetesIconComponent, LampIconComponent, LanguagesIconComponent, LayersIconComponent, LayoutIconComponent, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, LightbulbIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailCheckIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MegaphoneIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MultiSelectComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NodejsIconComponent, NotionIconComponent, NpmIconComponent, NumberInputComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaletteIconComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PictureInPictureIconComponent, PieChartIconComponent, PinIconComponent, PinterestIconComponent, PlayCircleIconComponent, PlayIconComponent, PlaylistIconComponent, PlugIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, PythonIconComponent, QrCodeIconComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, ReactIconComponent, ReceiptIconComponent, RecordIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RedoIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RocketIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScanIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, ShareIconComponent, ShieldCheckIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShopifyIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SnowflakeIconComponent, SoccerBallIconComponent, SparklesIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SubtitlesIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SvelteIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, TimecodeIconComponent, TimelineComponent, TimerIconComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TranscodeIconComponent, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrimIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UndoIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, VueIconComponent, WCAG_AA, WalletIconComponent, WandIconComponent, WatchIconComponent, WaveformIconComponent, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, WordpressIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, ar, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, he, hexToOklch, hi, iconDisplayName, is, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, ru, uk, validatePalette, visibleNodeIds, walkTree, zhCN };
|
|
7683
|
+
export type { AccordionHeadingLevel, AccordionSize, AlertSize, AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeShape, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, BreadcrumbsSize, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, CommandPaletteItem, ContrastSurfaces, ContrastViolation, DataTableColumn, DataTableDensity, DataTableSize, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DerivedPalette, DialogWidth, DividerOrientation, DrawerAnimation, DrawerMode, DrawerPosition, DrawerSize, DropdownSize, EaErrorMessages, EaSize, EaValidationErrorKey, EaWidth, EagamiI18nConfig, EagamiLocale, EagamiLocaleBundle, EagamiLocaleLoader, EagamiLocaleMeta, EagamiMessages, EagamiMessagesOverride, EagamiPaletteConfig, EagamiUiConfig, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, FileUploaderRejection, FileUploaderRejectionReason, FileUploaderSize, FormFieldSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, MenuSize, ModePalette, ModeSurfaces, MultiSelectSize, NumberInputSize, PaginatorAlign, PaginatorSize, PaginatorState, PaletteConfig, PaletteRoles, PaletteShade, PopoverPlacement, PopoverPositionOptions, PopoverPositionResult, PopoverRole, PopoverScrollBehavior, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, RangeSliderSize, RangeSliderValue, RatingSize, RatingStarState, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, StepperOrientation, StepperSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TimePickerFormat, TimePickerSize, TimelineAlign, TimelineItem, TimelineItemColor, TimelineOrientation, TimelineSize, Toast, ToastOptions, ToastPosition, ToastSize, ToastVariant, TooltipPosition, TransferListItem, TransferListSize, TreeNode, TreeSize, VirtualListItemContext };
|