@eagami/ui 1.3.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -1
- package/fesm2022/eagami-ui.mjs +13557 -4322
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/tokens/_colors.scss +13 -0
- package/src/styles/tokens/_typography.scss +23 -2
- package/types/eagami-ui.d.ts +1966 -284
package/types/eagami-ui.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, EnvironmentProviders, Signal, OnDestroy, ElementRef, TemplateRef,
|
|
2
|
+
import { InjectionToken, EnvironmentProviders, Signal, OnDestroy, ElementRef, TemplateRef, Type, OnInit } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import * as _eagami_ui from '@eagami/ui';
|
|
5
5
|
|
|
@@ -40,6 +40,16 @@ interface EagamiMessages {
|
|
|
40
40
|
groupLabel: (length: number) => string;
|
|
41
41
|
digitLabel: (index: number, length: number) => string;
|
|
42
42
|
};
|
|
43
|
+
colorPicker: {
|
|
44
|
+
placeholder: string;
|
|
45
|
+
clear: string;
|
|
46
|
+
hue: string;
|
|
47
|
+
saturationAndValue: string;
|
|
48
|
+
alpha: string;
|
|
49
|
+
eyedropper: string;
|
|
50
|
+
presets: string;
|
|
51
|
+
toggleFormat: string;
|
|
52
|
+
};
|
|
43
53
|
dataTable: {
|
|
44
54
|
noData: string;
|
|
45
55
|
};
|
|
@@ -602,6 +612,14 @@ type CheckboxSize = 'sm' | 'md' | 'lg';
|
|
|
602
612
|
*/
|
|
603
613
|
declare class CheckboxComponent implements ControlValueAccessor {
|
|
604
614
|
readonly label: i0.InputSignal<string | undefined>;
|
|
615
|
+
/**
|
|
616
|
+
* Optional supplementary value shown immediately after the label, dimmed
|
|
617
|
+
* to the tertiary text token. Renders inside the same `<span>` as the
|
|
618
|
+
* label so it shares the label's exact baseline and font metrics — keeps
|
|
619
|
+
* "Inbox 42" / "Brand (30)" patterns aligned without a sibling element
|
|
620
|
+
* fighting flex / inline-flow centring at the consumer's call site.
|
|
621
|
+
*/
|
|
622
|
+
readonly count: i0.InputSignal<string | number | undefined>;
|
|
605
623
|
readonly hint: i0.InputSignal<string | undefined>;
|
|
606
624
|
readonly errorMsg: i0.InputSignal<string | undefined>;
|
|
607
625
|
readonly size: i0.InputSignal<CheckboxSize>;
|
|
@@ -633,7 +651,162 @@ declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
633
651
|
setDisabledState(isDisabled: boolean): void;
|
|
634
652
|
handleChange(): void;
|
|
635
653
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
636
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ea-checkbox", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "changed": "changed"; }, never, never, true, never>;
|
|
654
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ea-checkbox", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "count": { "alias": "count"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "changed": "changed"; }, never, never, true, never>;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
/** Visual size of the color picker trigger. */
|
|
658
|
+
type ColorPickerSize = 'sm' | 'md' | 'lg';
|
|
659
|
+
/** Format used to emit the selected value via `value` / `changed`. */
|
|
660
|
+
type ColorPickerFormat = 'hex' | 'rgb' | 'hsl';
|
|
661
|
+
/** Which group of inputs the popover currently shows (hex string or RGB channels). */
|
|
662
|
+
type ColorPickerInputMode = 'hex' | 'rgb';
|
|
663
|
+
/** Value accepted via `writeValue` — any CSS color string or `null`. */
|
|
664
|
+
type ColorPickerValue = string | null;
|
|
665
|
+
interface Rgb {
|
|
666
|
+
r: number;
|
|
667
|
+
g: number;
|
|
668
|
+
b: number;
|
|
669
|
+
}
|
|
670
|
+
/**
|
|
671
|
+
* Popover color picker with a saturation/value gradient area, hue slider,
|
|
672
|
+
* optional alpha slider, hex + RGB inputs, a configurable preset palette,
|
|
673
|
+
* and an eyedropper (Chromium browsers). Integrates with Angular forms via
|
|
674
|
+
* `ControlValueAccessor`. Accepts any CSS color string in `writeValue`.
|
|
675
|
+
*/
|
|
676
|
+
declare class ColorPickerComponent implements ControlValueAccessor {
|
|
677
|
+
private readonly hostEl;
|
|
678
|
+
private readonly triggerEl;
|
|
679
|
+
private readonly popoverEl;
|
|
680
|
+
private readonly svAreaEl;
|
|
681
|
+
private readonly hueTrackEl;
|
|
682
|
+
private readonly alphaTrackEl;
|
|
683
|
+
private readonly injector;
|
|
684
|
+
private readonly destroyRef;
|
|
685
|
+
protected readonly i18n: EagamiI18nService;
|
|
686
|
+
readonly label: i0.InputSignal<string | undefined>;
|
|
687
|
+
readonly placeholder: i0.InputSignal<string | undefined>;
|
|
688
|
+
readonly size: i0.InputSignal<ColorPickerSize>;
|
|
689
|
+
readonly disabled: i0.InputSignal<boolean>;
|
|
690
|
+
readonly readonly: i0.InputSignal<boolean>;
|
|
691
|
+
readonly required: i0.InputSignal<boolean>;
|
|
692
|
+
readonly hint: i0.InputSignal<string | undefined>;
|
|
693
|
+
readonly errorMsg: i0.InputSignal<string | undefined>;
|
|
694
|
+
/** Whether to show the alpha slider. When `false` the emitted value always has alpha = 1. */
|
|
695
|
+
readonly showAlpha: i0.InputSignal<boolean>;
|
|
696
|
+
/** Output format for emitted values. */
|
|
697
|
+
readonly format: i0.InputSignal<ColorPickerFormat>;
|
|
698
|
+
/** Preset swatches shown at the bottom of the popover. Pass an empty array to hide. */
|
|
699
|
+
readonly presets: i0.InputSignal<readonly string[]>;
|
|
700
|
+
readonly id: i0.InputSignal<string>;
|
|
701
|
+
readonly value: i0.ModelSignal<string | null>;
|
|
702
|
+
/** Fires with the new color string whenever the selection changes. */
|
|
703
|
+
readonly changed: i0.OutputEmitterRef<string | null>;
|
|
704
|
+
readonly isOpen: i0.WritableSignal<boolean>;
|
|
705
|
+
private readonly hue;
|
|
706
|
+
private readonly sat;
|
|
707
|
+
private readonly val;
|
|
708
|
+
private readonly alpha;
|
|
709
|
+
/** Tracks the active drag target so pointermove can route correctly. */
|
|
710
|
+
private readonly dragging;
|
|
711
|
+
/** Which input row is visible (hex string or RGB channels). Toggles via the
|
|
712
|
+
* format button. Independent of the `format` input, which only controls the
|
|
713
|
+
* emitted value. */
|
|
714
|
+
readonly inputMode: i0.WritableSignal<ColorPickerInputMode>;
|
|
715
|
+
/** What the hex input shows. Kept separate from the canonical hex so the user
|
|
716
|
+
* can type a partial value (`#1`, `#12`, `#123…`) without each keystroke being
|
|
717
|
+
* expanded back into a 6-digit canonical form. */
|
|
718
|
+
readonly hexInputValue: i0.WritableSignal<string>;
|
|
719
|
+
/** Pixel position of the popover when open. Calculated from the trigger's
|
|
720
|
+
* bounding rect so the popover can use `position: fixed` and escape any
|
|
721
|
+
* ancestor with `overflow: hidden`. */
|
|
722
|
+
readonly popoverPosition: i0.WritableSignal<{
|
|
723
|
+
top: number;
|
|
724
|
+
left: number;
|
|
725
|
+
} | null>;
|
|
726
|
+
private readonly _formDisabled;
|
|
727
|
+
private onChange;
|
|
728
|
+
private onTouched;
|
|
729
|
+
readonly isDisabled: i0.Signal<boolean>;
|
|
730
|
+
readonly hasError: i0.Signal<boolean>;
|
|
731
|
+
readonly showError: i0.Signal<boolean>;
|
|
732
|
+
readonly showHint: i0.Signal<boolean>;
|
|
733
|
+
readonly rgb: i0.Signal<Rgb>;
|
|
734
|
+
readonly displayColor: i0.Signal<string>;
|
|
735
|
+
/** Opaque version of the current color — used as the hue/SV reference. */
|
|
736
|
+
readonly opaqueColor: i0.Signal<string>;
|
|
737
|
+
readonly hueColor: i0.Signal<string>;
|
|
738
|
+
readonly hexDisplay: i0.Signal<string>;
|
|
739
|
+
readonly displayValue: i0.Signal<string>;
|
|
740
|
+
readonly resolvedPlaceholder: i0.Signal<string>;
|
|
741
|
+
readonly triggerClasses: i0.Signal<{
|
|
742
|
+
[x: string]: boolean;
|
|
743
|
+
'ea-color-picker__trigger--error': boolean;
|
|
744
|
+
'ea-color-picker__trigger--open': boolean;
|
|
745
|
+
'ea-color-picker__trigger--disabled': boolean;
|
|
746
|
+
}>;
|
|
747
|
+
/** True when the browser supports the EyeDropper API. */
|
|
748
|
+
readonly hasEyeDropper: i0.Signal<boolean>;
|
|
749
|
+
constructor();
|
|
750
|
+
writeValue(val: ColorPickerValue): void;
|
|
751
|
+
registerOnChange(fn: (value: string | null) => void): void;
|
|
752
|
+
registerOnTouched(fn: () => void): void;
|
|
753
|
+
setDisabledState(isDisabled: boolean): void;
|
|
754
|
+
toggle(): void;
|
|
755
|
+
open(): void;
|
|
756
|
+
close(): void;
|
|
757
|
+
focus(): void;
|
|
758
|
+
clear(event: Event): void;
|
|
759
|
+
readonly svPointerLeft: i0.Signal<string>;
|
|
760
|
+
readonly svPointerTop: i0.Signal<string>;
|
|
761
|
+
readonly huePointerLeft: i0.Signal<string>;
|
|
762
|
+
readonly alphaPointerLeft: i0.Signal<string>;
|
|
763
|
+
readonly hueRounded: i0.Signal<number>;
|
|
764
|
+
readonly alphaPercentRounded: i0.Signal<number>;
|
|
765
|
+
onSvPointerDown(event: PointerEvent): void;
|
|
766
|
+
onSvPointerMove(event: PointerEvent): void;
|
|
767
|
+
onSvPointerUp(event: PointerEvent): void;
|
|
768
|
+
onSvKeydown(event: KeyboardEvent): void;
|
|
769
|
+
private updateSvFromPointer;
|
|
770
|
+
onHuePointerDown(event: PointerEvent): void;
|
|
771
|
+
onHuePointerMove(event: PointerEvent): void;
|
|
772
|
+
onHuePointerUp(event: PointerEvent): void;
|
|
773
|
+
onHueKeydown(event: KeyboardEvent): void;
|
|
774
|
+
private updateHueFromPointer;
|
|
775
|
+
onAlphaPointerDown(event: PointerEvent): void;
|
|
776
|
+
onAlphaPointerMove(event: PointerEvent): void;
|
|
777
|
+
onAlphaPointerUp(event: PointerEvent): void;
|
|
778
|
+
onAlphaKeydown(event: KeyboardEvent): void;
|
|
779
|
+
private updateAlphaFromPointer;
|
|
780
|
+
/**
|
|
781
|
+
* Mirrors the user's literal text into `hexInputValue` and (if the text
|
|
782
|
+
* parses) applies the new color silently — without rewriting the input.
|
|
783
|
+
* Without `refreshHex: false`, typing `#123` would parse, commit, and then
|
|
784
|
+
* snap the input back to `#112233` mid-keystroke, fighting the user's caret.
|
|
785
|
+
* Canonicalization happens only on blur via {@link onHexBlur}.
|
|
786
|
+
*/
|
|
787
|
+
onHexInput(event: Event): void;
|
|
788
|
+
onHexBlur(): void;
|
|
789
|
+
onRgbInput(channel: 'r' | 'g' | 'b', event: Event): void;
|
|
790
|
+
/** Cycles the input row between hex string and RGB channels. */
|
|
791
|
+
cycleInputMode(): void;
|
|
792
|
+
onAlphaInput(event: Event): void;
|
|
793
|
+
pickFromScreen(): Promise<void>;
|
|
794
|
+
selectPreset(hex: string): void;
|
|
795
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
796
|
+
onPopoverKeydown(event: KeyboardEvent): void;
|
|
797
|
+
onDocumentClick(event: Event): void;
|
|
798
|
+
/**
|
|
799
|
+
* Repositions the popover when it would extend past the viewport edges.
|
|
800
|
+
* Prefers flipping above the trigger when there's more room there, then
|
|
801
|
+
* clamps so the popover always has a small margin from the viewport edges.
|
|
802
|
+
*/
|
|
803
|
+
private clampPopoverToViewport;
|
|
804
|
+
private applyHsv;
|
|
805
|
+
private applyRgba;
|
|
806
|
+
private commit;
|
|
807
|
+
private refreshHexInput;
|
|
808
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerComponent, never>;
|
|
809
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerComponent, "ea-color-picker", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "showAlpha": { "alias": "showAlpha"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "presets": { "alias": "presets"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, never, true, never>;
|
|
637
810
|
}
|
|
638
811
|
|
|
639
812
|
/** Vertical density preset for table rows and header cells. */
|
|
@@ -1055,57 +1228,162 @@ declare class EmptyStateComponent {
|
|
|
1055
1228
|
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateComponent, "ea-empty-state", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "headingLevel": { "alias": "headingLevel"; "required": false; "isSignal": true; }; }, {}, never, ["[slot=media]", "[slot=actions]"], true, never>;
|
|
1056
1229
|
}
|
|
1057
1230
|
|
|
1058
|
-
|
|
1231
|
+
/**
|
|
1232
|
+
* Primary classification for an icon component. Every icon ships with a single
|
|
1233
|
+
* `category` (read off the component's `static readonly category` field) plus
|
|
1234
|
+
* a separate `static readonly isBrand` flag for whether it also depicts a
|
|
1235
|
+
* recognisable brand mark.
|
|
1236
|
+
*
|
|
1237
|
+
* `feather`: derived from the upstream Feather Icons set (MIT). Uses Feather's
|
|
1238
|
+
* canonical slug and design.
|
|
1239
|
+
* `eagami`: original Eagami UI design (the brand mark, the basic shape set,
|
|
1240
|
+
* household icons, and the brand-filled variants of icons that
|
|
1241
|
+
* also exist as Feather outlines).
|
|
1242
|
+
*/
|
|
1243
|
+
type IconCategory = 'feather' | 'eagami';
|
|
1244
|
+
/**
|
|
1245
|
+
* Shape of the static metadata that every `ea-icon-*` component carries
|
|
1246
|
+
* alongside its template. Read these fields directly off the component class
|
|
1247
|
+
* (e.g. `GithubIconComponent.tags`) to build catalogues, search indices, or
|
|
1248
|
+
* documentation tables without pulling in any other icon as a transitive
|
|
1249
|
+
* dependency.
|
|
1250
|
+
*/
|
|
1251
|
+
interface IconMeta {
|
|
1252
|
+
readonly slug: string;
|
|
1253
|
+
readonly category: IconCategory;
|
|
1254
|
+
/** True when the icon depicts a recognisable third-party or Eagami brand mark. */
|
|
1255
|
+
readonly isBrand?: boolean;
|
|
1256
|
+
readonly tags: ReadonlyArray<string>;
|
|
1257
|
+
}
|
|
1258
|
+
/** An icon component class augmented with its static metadata. */
|
|
1259
|
+
type IconComponentType = Type<unknown> & IconMeta;
|
|
1260
|
+
/**
|
|
1261
|
+
* Abstract base class for every `ea-icon-*` component. Provides the shared
|
|
1262
|
+
* host bindings that make icons render as inline-flex 1em squares, so
|
|
1263
|
+
* individual icon components don't need to repeat the `host: { style: '...' }`
|
|
1264
|
+
* config in their `@Component` decorator. Brand icons with their own host
|
|
1265
|
+
* bindings (e.g. a colour binding tied to a `brand` input) layer those onto
|
|
1266
|
+
* this base via additional `@HostBinding` getters.
|
|
1267
|
+
*/
|
|
1268
|
+
declare abstract class IconComponentBase {
|
|
1269
|
+
readonly display = "inline-flex";
|
|
1270
|
+
readonly width = "1em";
|
|
1271
|
+
readonly height = "1em";
|
|
1272
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponentBase, never>;
|
|
1273
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IconComponentBase, never, never, {}, {}, never, never, true, never>;
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
/**
|
|
1277
|
+
* Resolves an icon's human-readable display name. Pass the component class
|
|
1278
|
+
* (`iconDisplayName(GithubIconComponent)` -> `'GitHub'`) or its slug
|
|
1279
|
+
* (`iconDisplayName('github')` -> `'GitHub'`). Falls back to a generic
|
|
1280
|
+
* `slug -> Title Case` derivation when no override is defined.
|
|
1281
|
+
*/
|
|
1282
|
+
declare function iconDisplayName(iconOrSlug: IconComponentType | string): string;
|
|
1283
|
+
|
|
1284
|
+
/**
|
|
1285
|
+
* Flat list of every non-deprecated icon component shipped by Eagami UI,
|
|
1286
|
+
* sorted by `slug` so that consumers iterating it (the `/ui/icons` reference
|
|
1287
|
+
* page, the sandbox gallery, downstream pickers) get a stable alphabetical
|
|
1288
|
+
* order where a base icon always precedes its `-2` variant (e.g. `facebook`
|
|
1289
|
+
* before `facebook-2`). The literal order below is left in class-name order
|
|
1290
|
+
* for diff-friendliness; the `.sort()` at the bottom is the source of truth.
|
|
1291
|
+
*
|
|
1292
|
+
* Bundle-size note: importing this constant brings every icon component into
|
|
1293
|
+
* the consuming bundle, which is the right trade-off when you actually want
|
|
1294
|
+
* the full set. For single-icon usage import the component directly (e.g.
|
|
1295
|
+
* `import { HomeIconComponent } from '@eagami/ui'`) and the bundler will
|
|
1296
|
+
* tree-shake `ICONS` away.
|
|
1297
|
+
*
|
|
1298
|
+
* Deprecated aliases (e.g. `PencilIconComponent`) are intentionally excluded
|
|
1299
|
+
* so they don't surface in generated catalogues.
|
|
1300
|
+
*/
|
|
1301
|
+
declare const ICONS: ReadonlyArray<IconComponentType>;
|
|
1302
|
+
|
|
1303
|
+
declare class ActivityIconComponent extends IconComponentBase {
|
|
1304
|
+
static readonly slug = "activity";
|
|
1305
|
+
static readonly category: IconCategory;
|
|
1306
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1059
1307
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityIconComponent, never>;
|
|
1060
1308
|
static ɵcmp: i0.ɵɵComponentDeclaration<ActivityIconComponent, "ea-icon-activity", never, {}, {}, never, never, true, never>;
|
|
1061
1309
|
}
|
|
1062
1310
|
|
|
1063
|
-
declare class AirplayIconComponent {
|
|
1311
|
+
declare class AirplayIconComponent extends IconComponentBase {
|
|
1312
|
+
static readonly slug = "airplay";
|
|
1313
|
+
static readonly category: IconCategory;
|
|
1314
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1064
1315
|
static ɵfac: i0.ɵɵFactoryDeclaration<AirplayIconComponent, never>;
|
|
1065
1316
|
static ɵcmp: i0.ɵɵComponentDeclaration<AirplayIconComponent, "ea-icon-airplay", never, {}, {}, never, never, true, never>;
|
|
1066
1317
|
}
|
|
1067
1318
|
|
|
1068
|
-
declare class AlertCircleIconComponent {
|
|
1319
|
+
declare class AlertCircleIconComponent extends IconComponentBase {
|
|
1320
|
+
static readonly slug = "alert-circle";
|
|
1321
|
+
static readonly category: IconCategory;
|
|
1322
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1069
1323
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertCircleIconComponent, never>;
|
|
1070
1324
|
static ɵcmp: i0.ɵɵComponentDeclaration<AlertCircleIconComponent, "ea-icon-alert-circle", never, {}, {}, never, never, true, never>;
|
|
1071
1325
|
}
|
|
1072
1326
|
|
|
1073
|
-
declare class AlertOctagonIconComponent {
|
|
1327
|
+
declare class AlertOctagonIconComponent extends IconComponentBase {
|
|
1328
|
+
static readonly slug = "alert-octagon";
|
|
1329
|
+
static readonly category: IconCategory;
|
|
1330
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1074
1331
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertOctagonIconComponent, never>;
|
|
1075
1332
|
static ɵcmp: i0.ɵɵComponentDeclaration<AlertOctagonIconComponent, "ea-icon-alert-octagon", never, {}, {}, never, never, true, never>;
|
|
1076
1333
|
}
|
|
1077
1334
|
|
|
1078
|
-
declare class AlertTriangleIconComponent {
|
|
1335
|
+
declare class AlertTriangleIconComponent extends IconComponentBase {
|
|
1336
|
+
static readonly slug = "alert-triangle";
|
|
1337
|
+
static readonly category: IconCategory;
|
|
1338
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1079
1339
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertTriangleIconComponent, never>;
|
|
1080
1340
|
static ɵcmp: i0.ɵɵComponentDeclaration<AlertTriangleIconComponent, "ea-icon-alert-triangle", never, {}, {}, never, never, true, never>;
|
|
1081
1341
|
}
|
|
1082
1342
|
|
|
1083
|
-
declare class AlignCenterIconComponent {
|
|
1343
|
+
declare class AlignCenterIconComponent extends IconComponentBase {
|
|
1344
|
+
static readonly slug = "align-center";
|
|
1345
|
+
static readonly category: IconCategory;
|
|
1346
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1084
1347
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlignCenterIconComponent, never>;
|
|
1085
1348
|
static ɵcmp: i0.ɵɵComponentDeclaration<AlignCenterIconComponent, "ea-icon-align-center", never, {}, {}, never, never, true, never>;
|
|
1086
1349
|
}
|
|
1087
1350
|
|
|
1088
|
-
declare class AlignJustifyIconComponent {
|
|
1351
|
+
declare class AlignJustifyIconComponent extends IconComponentBase {
|
|
1352
|
+
static readonly slug = "align-justify";
|
|
1353
|
+
static readonly category: IconCategory;
|
|
1354
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1089
1355
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlignJustifyIconComponent, never>;
|
|
1090
1356
|
static ɵcmp: i0.ɵɵComponentDeclaration<AlignJustifyIconComponent, "ea-icon-align-justify", never, {}, {}, never, never, true, never>;
|
|
1091
1357
|
}
|
|
1092
1358
|
|
|
1093
|
-
declare class AlignLeftIconComponent {
|
|
1359
|
+
declare class AlignLeftIconComponent extends IconComponentBase {
|
|
1360
|
+
static readonly slug = "align-left";
|
|
1361
|
+
static readonly category: IconCategory;
|
|
1362
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1094
1363
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlignLeftIconComponent, never>;
|
|
1095
1364
|
static ɵcmp: i0.ɵɵComponentDeclaration<AlignLeftIconComponent, "ea-icon-align-left", never, {}, {}, never, never, true, never>;
|
|
1096
1365
|
}
|
|
1097
1366
|
|
|
1098
|
-
declare class AlignRightIconComponent {
|
|
1367
|
+
declare class AlignRightIconComponent extends IconComponentBase {
|
|
1368
|
+
static readonly slug = "align-right";
|
|
1369
|
+
static readonly category: IconCategory;
|
|
1370
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1099
1371
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlignRightIconComponent, never>;
|
|
1100
1372
|
static ɵcmp: i0.ɵɵComponentDeclaration<AlignRightIconComponent, "ea-icon-align-right", never, {}, {}, never, never, true, never>;
|
|
1101
1373
|
}
|
|
1102
1374
|
|
|
1103
|
-
declare class AnchorIconComponent {
|
|
1375
|
+
declare class AnchorIconComponent extends IconComponentBase {
|
|
1376
|
+
static readonly slug = "anchor";
|
|
1377
|
+
static readonly category: IconCategory;
|
|
1378
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1104
1379
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnchorIconComponent, never>;
|
|
1105
1380
|
static ɵcmp: i0.ɵɵComponentDeclaration<AnchorIconComponent, "ea-icon-anchor", never, {}, {}, never, never, true, never>;
|
|
1106
1381
|
}
|
|
1107
1382
|
|
|
1108
|
-
declare class ApertureIconComponent {
|
|
1383
|
+
declare class ApertureIconComponent extends IconComponentBase {
|
|
1384
|
+
static readonly slug = "aperture";
|
|
1385
|
+
static readonly category: IconCategory;
|
|
1386
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1109
1387
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApertureIconComponent, never>;
|
|
1110
1388
|
static ɵcmp: i0.ɵɵComponentDeclaration<ApertureIconComponent, "ea-icon-aperture", never, {}, {}, never, never, true, never>;
|
|
1111
1389
|
}
|
|
@@ -1116,1306 +1394,2699 @@ declare class ApertureIconComponent {
|
|
|
1116
1394
|
* directly from Apple per their brand guidelines for use cases like "Sign in
|
|
1117
1395
|
* with Apple".
|
|
1118
1396
|
*/
|
|
1119
|
-
declare class AppleIconComponent {
|
|
1397
|
+
declare class AppleIconComponent extends IconComponentBase {
|
|
1120
1398
|
readonly brand: i0.InputSignal<boolean>;
|
|
1121
1399
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppleIconComponent, never>;
|
|
1122
1400
|
static ɵcmp: i0.ɵɵComponentDeclaration<AppleIconComponent, "ea-icon-apple", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1123
1401
|
}
|
|
1124
1402
|
|
|
1125
|
-
declare class ArchiveIconComponent {
|
|
1403
|
+
declare class ArchiveIconComponent extends IconComponentBase {
|
|
1404
|
+
static readonly slug = "archive";
|
|
1405
|
+
static readonly category: IconCategory;
|
|
1406
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1126
1407
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArchiveIconComponent, never>;
|
|
1127
1408
|
static ɵcmp: i0.ɵɵComponentDeclaration<ArchiveIconComponent, "ea-icon-archive", never, {}, {}, never, never, true, never>;
|
|
1128
1409
|
}
|
|
1129
1410
|
|
|
1130
|
-
declare class ArrowDownIconComponent {
|
|
1411
|
+
declare class ArrowDownIconComponent extends IconComponentBase {
|
|
1412
|
+
static readonly slug = "arrow-down";
|
|
1413
|
+
static readonly category: IconCategory;
|
|
1414
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1131
1415
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowDownIconComponent, never>;
|
|
1132
1416
|
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowDownIconComponent, "ea-icon-arrow-down", never, {}, {}, never, never, true, never>;
|
|
1133
1417
|
}
|
|
1134
1418
|
|
|
1135
|
-
declare class
|
|
1419
|
+
declare class ArrowDownCircleIconComponent extends IconComponentBase {
|
|
1420
|
+
static readonly slug = "arrow-down-circle";
|
|
1421
|
+
static readonly category: IconCategory;
|
|
1422
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1423
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowDownCircleIconComponent, never>;
|
|
1424
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowDownCircleIconComponent, "ea-icon-arrow-down-circle", never, {}, {}, never, never, true, never>;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
declare class ArrowDownLeftIconComponent extends IconComponentBase {
|
|
1428
|
+
static readonly slug = "arrow-down-left";
|
|
1429
|
+
static readonly category: IconCategory;
|
|
1430
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1136
1431
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowDownLeftIconComponent, never>;
|
|
1137
1432
|
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowDownLeftIconComponent, "ea-icon-arrow-down-left", never, {}, {}, never, never, true, never>;
|
|
1138
1433
|
}
|
|
1139
1434
|
|
|
1140
|
-
declare class ArrowDownRightIconComponent {
|
|
1435
|
+
declare class ArrowDownRightIconComponent extends IconComponentBase {
|
|
1436
|
+
static readonly slug = "arrow-down-right";
|
|
1437
|
+
static readonly category: IconCategory;
|
|
1438
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1141
1439
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowDownRightIconComponent, never>;
|
|
1142
1440
|
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowDownRightIconComponent, "ea-icon-arrow-down-right", never, {}, {}, never, never, true, never>;
|
|
1143
1441
|
}
|
|
1144
1442
|
|
|
1145
|
-
declare class ArrowLeftIconComponent {
|
|
1443
|
+
declare class ArrowLeftIconComponent extends IconComponentBase {
|
|
1444
|
+
static readonly slug = "arrow-left";
|
|
1445
|
+
static readonly category: IconCategory;
|
|
1446
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1146
1447
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowLeftIconComponent, never>;
|
|
1147
1448
|
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowLeftIconComponent, "ea-icon-arrow-left", never, {}, {}, never, never, true, never>;
|
|
1148
1449
|
}
|
|
1149
1450
|
|
|
1150
|
-
declare class
|
|
1451
|
+
declare class ArrowLeftCircleIconComponent extends IconComponentBase {
|
|
1452
|
+
static readonly slug = "arrow-left-circle";
|
|
1453
|
+
static readonly category: IconCategory;
|
|
1454
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1455
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowLeftCircleIconComponent, never>;
|
|
1456
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowLeftCircleIconComponent, "ea-icon-arrow-left-circle", never, {}, {}, never, never, true, never>;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
declare class ArrowRightIconComponent extends IconComponentBase {
|
|
1460
|
+
static readonly slug = "arrow-right";
|
|
1461
|
+
static readonly category: IconCategory;
|
|
1462
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1151
1463
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowRightIconComponent, never>;
|
|
1152
1464
|
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowRightIconComponent, "ea-icon-arrow-right", never, {}, {}, never, never, true, never>;
|
|
1153
1465
|
}
|
|
1154
1466
|
|
|
1155
|
-
declare class
|
|
1467
|
+
declare class ArrowRightCircleIconComponent extends IconComponentBase {
|
|
1468
|
+
static readonly slug = "arrow-right-circle";
|
|
1469
|
+
static readonly category: IconCategory;
|
|
1470
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1471
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowRightCircleIconComponent, never>;
|
|
1472
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowRightCircleIconComponent, "ea-icon-arrow-right-circle", never, {}, {}, never, never, true, never>;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
declare class ArrowUpIconComponent extends IconComponentBase {
|
|
1476
|
+
static readonly slug = "arrow-up";
|
|
1477
|
+
static readonly category: IconCategory;
|
|
1478
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1156
1479
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowUpIconComponent, never>;
|
|
1157
1480
|
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowUpIconComponent, "ea-icon-arrow-up", never, {}, {}, never, never, true, never>;
|
|
1158
1481
|
}
|
|
1159
1482
|
|
|
1160
|
-
declare class
|
|
1483
|
+
declare class ArrowUpCircleIconComponent extends IconComponentBase {
|
|
1484
|
+
static readonly slug = "arrow-up-circle";
|
|
1485
|
+
static readonly category: IconCategory;
|
|
1486
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1487
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowUpCircleIconComponent, never>;
|
|
1488
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowUpCircleIconComponent, "ea-icon-arrow-up-circle", never, {}, {}, never, never, true, never>;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
declare class ArrowUpLeftIconComponent extends IconComponentBase {
|
|
1492
|
+
static readonly slug = "arrow-up-left";
|
|
1493
|
+
static readonly category: IconCategory;
|
|
1494
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1161
1495
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowUpLeftIconComponent, never>;
|
|
1162
1496
|
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowUpLeftIconComponent, "ea-icon-arrow-up-left", never, {}, {}, never, never, true, never>;
|
|
1163
1497
|
}
|
|
1164
1498
|
|
|
1165
|
-
declare class ArrowUpRightIconComponent {
|
|
1499
|
+
declare class ArrowUpRightIconComponent extends IconComponentBase {
|
|
1500
|
+
static readonly slug = "arrow-up-right";
|
|
1501
|
+
static readonly category: IconCategory;
|
|
1502
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1166
1503
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowUpRightIconComponent, never>;
|
|
1167
1504
|
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowUpRightIconComponent, "ea-icon-arrow-up-right", never, {}, {}, never, never, true, never>;
|
|
1168
1505
|
}
|
|
1169
1506
|
|
|
1170
|
-
declare class AtSignIconComponent {
|
|
1507
|
+
declare class AtSignIconComponent extends IconComponentBase {
|
|
1508
|
+
static readonly slug = "at-sign";
|
|
1509
|
+
static readonly category: IconCategory;
|
|
1510
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1171
1511
|
static ɵfac: i0.ɵɵFactoryDeclaration<AtSignIconComponent, never>;
|
|
1172
1512
|
static ɵcmp: i0.ɵɵComponentDeclaration<AtSignIconComponent, "ea-icon-at-sign", never, {}, {}, never, never, true, never>;
|
|
1173
1513
|
}
|
|
1174
1514
|
|
|
1175
|
-
declare class AwardIconComponent {
|
|
1515
|
+
declare class AwardIconComponent extends IconComponentBase {
|
|
1516
|
+
static readonly slug = "award";
|
|
1517
|
+
static readonly category: IconCategory;
|
|
1518
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1176
1519
|
static ɵfac: i0.ɵɵFactoryDeclaration<AwardIconComponent, never>;
|
|
1177
1520
|
static ɵcmp: i0.ɵɵComponentDeclaration<AwardIconComponent, "ea-icon-award", never, {}, {}, never, never, true, never>;
|
|
1178
1521
|
}
|
|
1179
1522
|
|
|
1180
|
-
declare class BarChartIconComponent {
|
|
1523
|
+
declare class BarChartIconComponent extends IconComponentBase {
|
|
1524
|
+
static readonly slug = "bar-chart";
|
|
1525
|
+
static readonly category: IconCategory;
|
|
1526
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1181
1527
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarChartIconComponent, never>;
|
|
1182
1528
|
static ɵcmp: i0.ɵɵComponentDeclaration<BarChartIconComponent, "ea-icon-bar-chart", never, {}, {}, never, never, true, never>;
|
|
1183
1529
|
}
|
|
1184
1530
|
|
|
1185
|
-
declare class
|
|
1531
|
+
declare class BarChart2IconComponent extends IconComponentBase {
|
|
1532
|
+
static readonly slug = "bar-chart-2";
|
|
1533
|
+
static readonly category: IconCategory;
|
|
1534
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1535
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BarChart2IconComponent, never>;
|
|
1536
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarChart2IconComponent, "ea-icon-bar-chart-2", never, {}, {}, never, never, true, never>;
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
declare class BatteryIconComponent extends IconComponentBase {
|
|
1540
|
+
static readonly slug = "battery";
|
|
1541
|
+
static readonly category: IconCategory;
|
|
1542
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1186
1543
|
static ɵfac: i0.ɵɵFactoryDeclaration<BatteryIconComponent, never>;
|
|
1187
1544
|
static ɵcmp: i0.ɵɵComponentDeclaration<BatteryIconComponent, "ea-icon-battery", never, {}, {}, never, never, true, never>;
|
|
1188
1545
|
}
|
|
1189
1546
|
|
|
1190
|
-
declare class BatteryChargingIconComponent {
|
|
1547
|
+
declare class BatteryChargingIconComponent extends IconComponentBase {
|
|
1548
|
+
static readonly slug = "battery-charging";
|
|
1549
|
+
static readonly category: IconCategory;
|
|
1550
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1191
1551
|
static ɵfac: i0.ɵɵFactoryDeclaration<BatteryChargingIconComponent, never>;
|
|
1192
1552
|
static ɵcmp: i0.ɵɵComponentDeclaration<BatteryChargingIconComponent, "ea-icon-battery-charging", never, {}, {}, never, never, true, never>;
|
|
1193
1553
|
}
|
|
1194
1554
|
|
|
1195
|
-
declare class BellIconComponent {
|
|
1555
|
+
declare class BellIconComponent extends IconComponentBase {
|
|
1556
|
+
static readonly slug = "bell";
|
|
1557
|
+
static readonly category: IconCategory;
|
|
1558
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1196
1559
|
static ɵfac: i0.ɵɵFactoryDeclaration<BellIconComponent, never>;
|
|
1197
1560
|
static ɵcmp: i0.ɵɵComponentDeclaration<BellIconComponent, "ea-icon-bell", never, {}, {}, never, never, true, never>;
|
|
1198
1561
|
}
|
|
1199
1562
|
|
|
1200
|
-
declare class BellOffIconComponent {
|
|
1563
|
+
declare class BellOffIconComponent extends IconComponentBase {
|
|
1564
|
+
static readonly slug = "bell-off";
|
|
1565
|
+
static readonly category: IconCategory;
|
|
1566
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1201
1567
|
static ɵfac: i0.ɵɵFactoryDeclaration<BellOffIconComponent, never>;
|
|
1202
1568
|
static ɵcmp: i0.ɵɵComponentDeclaration<BellOffIconComponent, "ea-icon-bell-off", never, {}, {}, never, never, true, never>;
|
|
1203
1569
|
}
|
|
1204
1570
|
|
|
1205
|
-
declare class BluetoothIconComponent {
|
|
1571
|
+
declare class BluetoothIconComponent extends IconComponentBase {
|
|
1572
|
+
static readonly slug = "bluetooth";
|
|
1573
|
+
static readonly category: IconCategory;
|
|
1574
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1206
1575
|
static ɵfac: i0.ɵɵFactoryDeclaration<BluetoothIconComponent, never>;
|
|
1207
1576
|
static ɵcmp: i0.ɵɵComponentDeclaration<BluetoothIconComponent, "ea-icon-bluetooth", never, {}, {}, never, never, true, never>;
|
|
1208
1577
|
}
|
|
1209
1578
|
|
|
1210
|
-
declare class BoldIconComponent {
|
|
1579
|
+
declare class BoldIconComponent extends IconComponentBase {
|
|
1580
|
+
static readonly slug = "bold";
|
|
1581
|
+
static readonly category: IconCategory;
|
|
1582
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1211
1583
|
static ɵfac: i0.ɵɵFactoryDeclaration<BoldIconComponent, never>;
|
|
1212
1584
|
static ɵcmp: i0.ɵɵComponentDeclaration<BoldIconComponent, "ea-icon-bold", never, {}, {}, never, never, true, never>;
|
|
1213
1585
|
}
|
|
1214
1586
|
|
|
1215
|
-
declare class BookIconComponent {
|
|
1587
|
+
declare class BookIconComponent extends IconComponentBase {
|
|
1588
|
+
static readonly slug = "book";
|
|
1589
|
+
static readonly category: IconCategory;
|
|
1590
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1216
1591
|
static ɵfac: i0.ɵɵFactoryDeclaration<BookIconComponent, never>;
|
|
1217
1592
|
static ɵcmp: i0.ɵɵComponentDeclaration<BookIconComponent, "ea-icon-book", never, {}, {}, never, never, true, never>;
|
|
1218
1593
|
}
|
|
1219
1594
|
|
|
1220
|
-
declare class BookOpenIconComponent {
|
|
1595
|
+
declare class BookOpenIconComponent extends IconComponentBase {
|
|
1596
|
+
static readonly slug = "book-open";
|
|
1597
|
+
static readonly category: IconCategory;
|
|
1598
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1221
1599
|
static ɵfac: i0.ɵɵFactoryDeclaration<BookOpenIconComponent, never>;
|
|
1222
1600
|
static ɵcmp: i0.ɵɵComponentDeclaration<BookOpenIconComponent, "ea-icon-book-open", never, {}, {}, never, never, true, never>;
|
|
1223
1601
|
}
|
|
1224
1602
|
|
|
1225
|
-
declare class BookmarkIconComponent {
|
|
1603
|
+
declare class BookmarkIconComponent extends IconComponentBase {
|
|
1604
|
+
static readonly slug = "bookmark";
|
|
1605
|
+
static readonly category: IconCategory;
|
|
1606
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1226
1607
|
static ɵfac: i0.ɵɵFactoryDeclaration<BookmarkIconComponent, never>;
|
|
1227
1608
|
static ɵcmp: i0.ɵɵComponentDeclaration<BookmarkIconComponent, "ea-icon-bookmark", never, {}, {}, never, never, true, never>;
|
|
1228
1609
|
}
|
|
1229
1610
|
|
|
1230
|
-
declare class
|
|
1611
|
+
declare class BottleIconComponent extends IconComponentBase {
|
|
1612
|
+
static readonly slug = "bottle";
|
|
1613
|
+
static readonly category: IconCategory;
|
|
1614
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1615
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BottleIconComponent, never>;
|
|
1616
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BottleIconComponent, "ea-icon-bottle", never, {}, {}, never, never, true, never>;
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
declare class BoxIconComponent extends IconComponentBase {
|
|
1620
|
+
static readonly slug = "box";
|
|
1621
|
+
static readonly category: IconCategory;
|
|
1622
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1231
1623
|
static ɵfac: i0.ɵɵFactoryDeclaration<BoxIconComponent, never>;
|
|
1232
1624
|
static ɵcmp: i0.ɵɵComponentDeclaration<BoxIconComponent, "ea-icon-box", never, {}, {}, never, never, true, never>;
|
|
1233
1625
|
}
|
|
1234
1626
|
|
|
1235
|
-
declare class BriefcaseIconComponent {
|
|
1627
|
+
declare class BriefcaseIconComponent extends IconComponentBase {
|
|
1628
|
+
static readonly slug = "briefcase";
|
|
1629
|
+
static readonly category: IconCategory;
|
|
1630
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1236
1631
|
static ɵfac: i0.ɵɵFactoryDeclaration<BriefcaseIconComponent, never>;
|
|
1237
1632
|
static ɵcmp: i0.ɵɵComponentDeclaration<BriefcaseIconComponent, "ea-icon-briefcase", never, {}, {}, never, never, true, never>;
|
|
1238
1633
|
}
|
|
1239
1634
|
|
|
1240
|
-
declare class CalendarIconComponent {
|
|
1635
|
+
declare class CalendarIconComponent extends IconComponentBase {
|
|
1636
|
+
static readonly slug = "calendar";
|
|
1637
|
+
static readonly category: IconCategory;
|
|
1638
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1241
1639
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarIconComponent, never>;
|
|
1242
1640
|
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarIconComponent, "ea-icon-calendar", never, {}, {}, never, never, true, never>;
|
|
1243
1641
|
}
|
|
1244
1642
|
|
|
1245
|
-
declare class CameraIconComponent {
|
|
1643
|
+
declare class CameraIconComponent extends IconComponentBase {
|
|
1644
|
+
static readonly slug = "camera";
|
|
1645
|
+
static readonly category: IconCategory;
|
|
1646
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1246
1647
|
static ɵfac: i0.ɵɵFactoryDeclaration<CameraIconComponent, never>;
|
|
1247
1648
|
static ɵcmp: i0.ɵɵComponentDeclaration<CameraIconComponent, "ea-icon-camera", never, {}, {}, never, never, true, never>;
|
|
1248
1649
|
}
|
|
1249
1650
|
|
|
1250
|
-
declare class
|
|
1651
|
+
declare class CameraOffIconComponent extends IconComponentBase {
|
|
1652
|
+
static readonly slug = "camera-off";
|
|
1653
|
+
static readonly category: IconCategory;
|
|
1654
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1655
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CameraOffIconComponent, never>;
|
|
1656
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CameraOffIconComponent, "ea-icon-camera-off", never, {}, {}, never, never, true, never>;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
declare class CandleIconComponent extends IconComponentBase {
|
|
1660
|
+
static readonly slug = "candle";
|
|
1661
|
+
static readonly category: IconCategory;
|
|
1662
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1663
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CandleIconComponent, never>;
|
|
1664
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CandleIconComponent, "ea-icon-candle", never, {}, {}, never, never, true, never>;
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
declare class CastIconComponent extends IconComponentBase {
|
|
1668
|
+
static readonly slug = "cast";
|
|
1669
|
+
static readonly category: IconCategory;
|
|
1670
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1671
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CastIconComponent, never>;
|
|
1672
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CastIconComponent, "ea-icon-cast", never, {}, {}, never, never, true, never>;
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1675
|
+
declare class CheckIconComponent extends IconComponentBase {
|
|
1676
|
+
static readonly slug = "check";
|
|
1677
|
+
static readonly category: IconCategory;
|
|
1678
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1251
1679
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckIconComponent, never>;
|
|
1252
1680
|
static ɵcmp: i0.ɵɵComponentDeclaration<CheckIconComponent, "ea-icon-check", never, {}, {}, never, never, true, never>;
|
|
1253
1681
|
}
|
|
1254
1682
|
|
|
1255
|
-
declare class CheckCircleIconComponent {
|
|
1683
|
+
declare class CheckCircleIconComponent extends IconComponentBase {
|
|
1684
|
+
static readonly slug = "check-circle";
|
|
1685
|
+
static readonly category: IconCategory;
|
|
1686
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1256
1687
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckCircleIconComponent, never>;
|
|
1257
1688
|
static ɵcmp: i0.ɵɵComponentDeclaration<CheckCircleIconComponent, "ea-icon-check-circle", never, {}, {}, never, never, true, never>;
|
|
1258
1689
|
}
|
|
1259
1690
|
|
|
1260
|
-
declare class
|
|
1691
|
+
declare class CheckSquareIconComponent extends IconComponentBase {
|
|
1692
|
+
static readonly slug = "check-square";
|
|
1693
|
+
static readonly category: IconCategory;
|
|
1694
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1695
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckSquareIconComponent, never>;
|
|
1696
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckSquareIconComponent, "ea-icon-check-square", never, {}, {}, never, never, true, never>;
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
declare class ChevronDownIconComponent extends IconComponentBase {
|
|
1700
|
+
static readonly slug = "chevron-down";
|
|
1701
|
+
static readonly category: IconCategory;
|
|
1702
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1261
1703
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChevronDownIconComponent, never>;
|
|
1262
1704
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChevronDownIconComponent, "ea-icon-chevron-down", never, {}, {}, never, never, true, never>;
|
|
1263
1705
|
}
|
|
1264
1706
|
|
|
1265
|
-
declare class ChevronLeftIconComponent {
|
|
1707
|
+
declare class ChevronLeftIconComponent extends IconComponentBase {
|
|
1708
|
+
static readonly slug = "chevron-left";
|
|
1709
|
+
static readonly category: IconCategory;
|
|
1710
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1266
1711
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChevronLeftIconComponent, never>;
|
|
1267
1712
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChevronLeftIconComponent, "ea-icon-chevron-left", never, {}, {}, never, never, true, never>;
|
|
1268
1713
|
}
|
|
1269
1714
|
|
|
1270
|
-
declare class ChevronRightIconComponent {
|
|
1715
|
+
declare class ChevronRightIconComponent extends IconComponentBase {
|
|
1716
|
+
static readonly slug = "chevron-right";
|
|
1717
|
+
static readonly category: IconCategory;
|
|
1718
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1271
1719
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChevronRightIconComponent, never>;
|
|
1272
1720
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChevronRightIconComponent, "ea-icon-chevron-right", never, {}, {}, never, never, true, never>;
|
|
1273
1721
|
}
|
|
1274
1722
|
|
|
1275
|
-
declare class ChevronUpIconComponent {
|
|
1723
|
+
declare class ChevronUpIconComponent extends IconComponentBase {
|
|
1724
|
+
static readonly slug = "chevron-up";
|
|
1725
|
+
static readonly category: IconCategory;
|
|
1726
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1276
1727
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChevronUpIconComponent, never>;
|
|
1277
1728
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChevronUpIconComponent, "ea-icon-chevron-up", never, {}, {}, never, never, true, never>;
|
|
1278
1729
|
}
|
|
1279
1730
|
|
|
1280
|
-
declare class
|
|
1731
|
+
declare class ChevronsDownIconComponent extends IconComponentBase {
|
|
1732
|
+
static readonly slug = "chevrons-down";
|
|
1733
|
+
static readonly category: IconCategory;
|
|
1734
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1735
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChevronsDownIconComponent, never>;
|
|
1736
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChevronsDownIconComponent, "ea-icon-chevrons-down", never, {}, {}, never, never, true, never>;
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
declare class ChevronsLeftIconComponent extends IconComponentBase {
|
|
1740
|
+
static readonly slug = "chevrons-left";
|
|
1741
|
+
static readonly category: IconCategory;
|
|
1742
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1743
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChevronsLeftIconComponent, never>;
|
|
1744
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChevronsLeftIconComponent, "ea-icon-chevrons-left", never, {}, {}, never, never, true, never>;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
declare class ChevronsRightIconComponent extends IconComponentBase {
|
|
1748
|
+
static readonly slug = "chevrons-right";
|
|
1749
|
+
static readonly category: IconCategory;
|
|
1750
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1751
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChevronsRightIconComponent, never>;
|
|
1752
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChevronsRightIconComponent, "ea-icon-chevrons-right", never, {}, {}, never, never, true, never>;
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
declare class ChevronsUpIconComponent extends IconComponentBase {
|
|
1756
|
+
static readonly slug = "chevrons-up";
|
|
1757
|
+
static readonly category: IconCategory;
|
|
1758
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1759
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChevronsUpIconComponent, never>;
|
|
1760
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChevronsUpIconComponent, "ea-icon-chevrons-up", never, {}, {}, never, never, true, never>;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
declare class ChevronsUpDownIconComponent extends IconComponentBase {
|
|
1764
|
+
static readonly slug = "chevrons-up-down";
|
|
1765
|
+
static readonly category: IconCategory;
|
|
1766
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1281
1767
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChevronsUpDownIconComponent, never>;
|
|
1282
1768
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChevronsUpDownIconComponent, "ea-icon-chevrons-up-down", never, {}, {}, never, never, true, never>;
|
|
1283
1769
|
}
|
|
1284
1770
|
|
|
1285
|
-
declare class ChromeIconComponent {
|
|
1771
|
+
declare class ChromeIconComponent extends IconComponentBase {
|
|
1772
|
+
static readonly slug = "chrome";
|
|
1773
|
+
static readonly category: IconCategory;
|
|
1774
|
+
static readonly isBrand = true;
|
|
1775
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1286
1776
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChromeIconComponent, never>;
|
|
1287
1777
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChromeIconComponent, "ea-icon-chrome", never, {}, {}, never, never, true, never>;
|
|
1288
1778
|
}
|
|
1289
1779
|
|
|
1290
|
-
declare class
|
|
1780
|
+
declare class CircleIconComponent extends IconComponentBase {
|
|
1781
|
+
static readonly slug = "circle";
|
|
1782
|
+
static readonly category: IconCategory;
|
|
1783
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1784
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CircleIconComponent, never>;
|
|
1785
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CircleIconComponent, "ea-icon-circle", never, {}, {}, never, never, true, never>;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
declare class ClipboardIconComponent extends IconComponentBase {
|
|
1789
|
+
static readonly slug = "clipboard";
|
|
1790
|
+
static readonly category: IconCategory;
|
|
1791
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1291
1792
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardIconComponent, never>;
|
|
1292
1793
|
static ɵcmp: i0.ɵɵComponentDeclaration<ClipboardIconComponent, "ea-icon-clipboard", never, {}, {}, never, never, true, never>;
|
|
1293
1794
|
}
|
|
1294
1795
|
|
|
1295
|
-
declare class ClockIconComponent {
|
|
1796
|
+
declare class ClockIconComponent extends IconComponentBase {
|
|
1797
|
+
static readonly slug = "clock";
|
|
1798
|
+
static readonly category: IconCategory;
|
|
1799
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1296
1800
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClockIconComponent, never>;
|
|
1297
1801
|
static ɵcmp: i0.ɵɵComponentDeclaration<ClockIconComponent, "ea-icon-clock", never, {}, {}, never, never, true, never>;
|
|
1298
1802
|
}
|
|
1299
1803
|
|
|
1300
|
-
declare class CloudIconComponent {
|
|
1804
|
+
declare class CloudIconComponent extends IconComponentBase {
|
|
1805
|
+
static readonly slug = "cloud";
|
|
1806
|
+
static readonly category: IconCategory;
|
|
1807
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1301
1808
|
static ɵfac: i0.ɵɵFactoryDeclaration<CloudIconComponent, never>;
|
|
1302
1809
|
static ɵcmp: i0.ɵɵComponentDeclaration<CloudIconComponent, "ea-icon-cloud", never, {}, {}, never, never, true, never>;
|
|
1303
1810
|
}
|
|
1304
1811
|
|
|
1305
|
-
declare class
|
|
1812
|
+
declare class CloudDrizzleIconComponent extends IconComponentBase {
|
|
1813
|
+
static readonly slug = "cloud-drizzle";
|
|
1814
|
+
static readonly category: IconCategory;
|
|
1815
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1816
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CloudDrizzleIconComponent, never>;
|
|
1817
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CloudDrizzleIconComponent, "ea-icon-cloud-drizzle", never, {}, {}, never, never, true, never>;
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
declare class CloudLightningIconComponent extends IconComponentBase {
|
|
1821
|
+
static readonly slug = "cloud-lightning";
|
|
1822
|
+
static readonly category: IconCategory;
|
|
1823
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1824
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CloudLightningIconComponent, never>;
|
|
1825
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CloudLightningIconComponent, "ea-icon-cloud-lightning", never, {}, {}, never, never, true, never>;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
declare class CloudOffIconComponent extends IconComponentBase {
|
|
1829
|
+
static readonly slug = "cloud-off";
|
|
1830
|
+
static readonly category: IconCategory;
|
|
1831
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1832
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CloudOffIconComponent, never>;
|
|
1833
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CloudOffIconComponent, "ea-icon-cloud-off", never, {}, {}, never, never, true, never>;
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
declare class CloudRainIconComponent extends IconComponentBase {
|
|
1837
|
+
static readonly slug = "cloud-rain";
|
|
1838
|
+
static readonly category: IconCategory;
|
|
1839
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1840
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CloudRainIconComponent, never>;
|
|
1841
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CloudRainIconComponent, "ea-icon-cloud-rain", never, {}, {}, never, never, true, never>;
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
declare class CloudSnowIconComponent extends IconComponentBase {
|
|
1845
|
+
static readonly slug = "cloud-snow";
|
|
1846
|
+
static readonly category: IconCategory;
|
|
1847
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1848
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CloudSnowIconComponent, never>;
|
|
1849
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CloudSnowIconComponent, "ea-icon-cloud-snow", never, {}, {}, never, never, true, never>;
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
declare class CloudflareIconComponent extends IconComponentBase {
|
|
1853
|
+
static readonly slug = "cloudflare";
|
|
1854
|
+
static readonly category: IconCategory;
|
|
1855
|
+
static readonly isBrand = true;
|
|
1856
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1306
1857
|
static ɵfac: i0.ɵɵFactoryDeclaration<CloudflareIconComponent, never>;
|
|
1307
1858
|
static ɵcmp: i0.ɵɵComponentDeclaration<CloudflareIconComponent, "ea-icon-cloudflare", never, {}, {}, never, never, true, never>;
|
|
1308
1859
|
}
|
|
1309
1860
|
|
|
1310
|
-
declare class CodeIconComponent {
|
|
1861
|
+
declare class CodeIconComponent extends IconComponentBase {
|
|
1862
|
+
static readonly slug = "code";
|
|
1863
|
+
static readonly category: IconCategory;
|
|
1864
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1311
1865
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodeIconComponent, never>;
|
|
1312
1866
|
static ɵcmp: i0.ɵɵComponentDeclaration<CodeIconComponent, "ea-icon-code", never, {}, {}, never, never, true, never>;
|
|
1313
1867
|
}
|
|
1314
1868
|
|
|
1315
|
-
declare class CodepenIconComponent {
|
|
1869
|
+
declare class CodepenIconComponent extends IconComponentBase {
|
|
1870
|
+
static readonly slug = "codepen";
|
|
1871
|
+
static readonly category: IconCategory;
|
|
1872
|
+
static readonly isBrand = true;
|
|
1873
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1316
1874
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodepenIconComponent, never>;
|
|
1317
1875
|
static ɵcmp: i0.ɵɵComponentDeclaration<CodepenIconComponent, "ea-icon-codepen", never, {}, {}, never, never, true, never>;
|
|
1318
1876
|
}
|
|
1319
1877
|
|
|
1320
|
-
declare class CodesandboxIconComponent {
|
|
1878
|
+
declare class CodesandboxIconComponent extends IconComponentBase {
|
|
1879
|
+
static readonly slug = "codesandbox";
|
|
1880
|
+
static readonly category: IconCategory;
|
|
1881
|
+
static readonly isBrand = true;
|
|
1882
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1321
1883
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodesandboxIconComponent, never>;
|
|
1322
1884
|
static ɵcmp: i0.ɵɵComponentDeclaration<CodesandboxIconComponent, "ea-icon-codesandbox", never, {}, {}, never, never, true, never>;
|
|
1323
1885
|
}
|
|
1324
1886
|
|
|
1325
|
-
declare class CoffeeIconComponent {
|
|
1887
|
+
declare class CoffeeIconComponent extends IconComponentBase {
|
|
1888
|
+
static readonly slug = "coffee";
|
|
1889
|
+
static readonly category: IconCategory;
|
|
1890
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1326
1891
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoffeeIconComponent, never>;
|
|
1327
1892
|
static ɵcmp: i0.ɵɵComponentDeclaration<CoffeeIconComponent, "ea-icon-coffee", never, {}, {}, never, never, true, never>;
|
|
1328
1893
|
}
|
|
1329
1894
|
|
|
1330
|
-
declare class ColumnsIconComponent {
|
|
1895
|
+
declare class ColumnsIconComponent extends IconComponentBase {
|
|
1896
|
+
static readonly slug = "columns";
|
|
1897
|
+
static readonly category: IconCategory;
|
|
1898
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1331
1899
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsIconComponent, never>;
|
|
1332
1900
|
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnsIconComponent, "ea-icon-columns", never, {}, {}, never, never, true, never>;
|
|
1333
1901
|
}
|
|
1334
1902
|
|
|
1335
|
-
declare class CommandIconComponent {
|
|
1903
|
+
declare class CommandIconComponent extends IconComponentBase {
|
|
1904
|
+
static readonly slug = "command";
|
|
1905
|
+
static readonly category: IconCategory;
|
|
1906
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1336
1907
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommandIconComponent, never>;
|
|
1337
1908
|
static ɵcmp: i0.ɵɵComponentDeclaration<CommandIconComponent, "ea-icon-command", never, {}, {}, never, never, true, never>;
|
|
1338
1909
|
}
|
|
1339
1910
|
|
|
1340
|
-
declare class CompassIconComponent {
|
|
1911
|
+
declare class CompassIconComponent extends IconComponentBase {
|
|
1912
|
+
static readonly slug = "compass";
|
|
1913
|
+
static readonly category: IconCategory;
|
|
1914
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1341
1915
|
static ɵfac: i0.ɵɵFactoryDeclaration<CompassIconComponent, never>;
|
|
1342
1916
|
static ɵcmp: i0.ɵɵComponentDeclaration<CompassIconComponent, "ea-icon-compass", never, {}, {}, never, never, true, never>;
|
|
1343
1917
|
}
|
|
1344
1918
|
|
|
1345
|
-
declare class CopyIconComponent {
|
|
1919
|
+
declare class CopyIconComponent extends IconComponentBase {
|
|
1920
|
+
static readonly slug = "copy";
|
|
1921
|
+
static readonly category: IconCategory;
|
|
1922
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1346
1923
|
static ɵfac: i0.ɵɵFactoryDeclaration<CopyIconComponent, never>;
|
|
1347
1924
|
static ɵcmp: i0.ɵɵComponentDeclaration<CopyIconComponent, "ea-icon-copy", never, {}, {}, never, never, true, never>;
|
|
1348
1925
|
}
|
|
1349
1926
|
|
|
1350
|
-
declare class CornerDownLeftIconComponent {
|
|
1927
|
+
declare class CornerDownLeftIconComponent extends IconComponentBase {
|
|
1928
|
+
static readonly slug = "corner-down-left";
|
|
1929
|
+
static readonly category: IconCategory;
|
|
1930
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1351
1931
|
static ɵfac: i0.ɵɵFactoryDeclaration<CornerDownLeftIconComponent, never>;
|
|
1352
1932
|
static ɵcmp: i0.ɵɵComponentDeclaration<CornerDownLeftIconComponent, "ea-icon-corner-down-left", never, {}, {}, never, never, true, never>;
|
|
1353
1933
|
}
|
|
1354
1934
|
|
|
1355
|
-
declare class CornerDownRightIconComponent {
|
|
1935
|
+
declare class CornerDownRightIconComponent extends IconComponentBase {
|
|
1936
|
+
static readonly slug = "corner-down-right";
|
|
1937
|
+
static readonly category: IconCategory;
|
|
1938
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1356
1939
|
static ɵfac: i0.ɵɵFactoryDeclaration<CornerDownRightIconComponent, never>;
|
|
1357
1940
|
static ɵcmp: i0.ɵɵComponentDeclaration<CornerDownRightIconComponent, "ea-icon-corner-down-right", never, {}, {}, never, never, true, never>;
|
|
1358
1941
|
}
|
|
1359
1942
|
|
|
1360
|
-
declare class
|
|
1943
|
+
declare class CornerLeftDownIconComponent extends IconComponentBase {
|
|
1944
|
+
static readonly slug = "corner-left-down";
|
|
1945
|
+
static readonly category: IconCategory;
|
|
1946
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1947
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CornerLeftDownIconComponent, never>;
|
|
1948
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CornerLeftDownIconComponent, "ea-icon-corner-left-down", never, {}, {}, never, never, true, never>;
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
declare class CornerLeftUpIconComponent extends IconComponentBase {
|
|
1952
|
+
static readonly slug = "corner-left-up";
|
|
1953
|
+
static readonly category: IconCategory;
|
|
1954
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1955
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CornerLeftUpIconComponent, never>;
|
|
1956
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CornerLeftUpIconComponent, "ea-icon-corner-left-up", never, {}, {}, never, never, true, never>;
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
declare class CornerRightDownIconComponent extends IconComponentBase {
|
|
1960
|
+
static readonly slug = "corner-right-down";
|
|
1961
|
+
static readonly category: IconCategory;
|
|
1962
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1963
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CornerRightDownIconComponent, never>;
|
|
1964
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CornerRightDownIconComponent, "ea-icon-corner-right-down", never, {}, {}, never, never, true, never>;
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
declare class CornerRightUpIconComponent extends IconComponentBase {
|
|
1968
|
+
static readonly slug = "corner-right-up";
|
|
1969
|
+
static readonly category: IconCategory;
|
|
1970
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1971
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CornerRightUpIconComponent, never>;
|
|
1972
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CornerRightUpIconComponent, "ea-icon-corner-right-up", never, {}, {}, never, never, true, never>;
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
declare class CornerUpLeftIconComponent extends IconComponentBase {
|
|
1976
|
+
static readonly slug = "corner-up-left";
|
|
1977
|
+
static readonly category: IconCategory;
|
|
1978
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1361
1979
|
static ɵfac: i0.ɵɵFactoryDeclaration<CornerUpLeftIconComponent, never>;
|
|
1362
1980
|
static ɵcmp: i0.ɵɵComponentDeclaration<CornerUpLeftIconComponent, "ea-icon-corner-up-left", never, {}, {}, never, never, true, never>;
|
|
1363
1981
|
}
|
|
1364
1982
|
|
|
1365
|
-
declare class CornerUpRightIconComponent {
|
|
1983
|
+
declare class CornerUpRightIconComponent extends IconComponentBase {
|
|
1984
|
+
static readonly slug = "corner-up-right";
|
|
1985
|
+
static readonly category: IconCategory;
|
|
1986
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1366
1987
|
static ɵfac: i0.ɵɵFactoryDeclaration<CornerUpRightIconComponent, never>;
|
|
1367
1988
|
static ɵcmp: i0.ɵɵComponentDeclaration<CornerUpRightIconComponent, "ea-icon-corner-up-right", never, {}, {}, never, never, true, never>;
|
|
1368
1989
|
}
|
|
1369
1990
|
|
|
1370
|
-
declare class CpuIconComponent {
|
|
1991
|
+
declare class CpuIconComponent extends IconComponentBase {
|
|
1992
|
+
static readonly slug = "cpu";
|
|
1993
|
+
static readonly category: IconCategory;
|
|
1994
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1371
1995
|
static ɵfac: i0.ɵɵFactoryDeclaration<CpuIconComponent, never>;
|
|
1372
1996
|
static ɵcmp: i0.ɵɵComponentDeclaration<CpuIconComponent, "ea-icon-cpu", never, {}, {}, never, never, true, never>;
|
|
1373
1997
|
}
|
|
1374
1998
|
|
|
1375
|
-
declare class CreditCardIconComponent {
|
|
1999
|
+
declare class CreditCardIconComponent extends IconComponentBase {
|
|
2000
|
+
static readonly slug = "credit-card";
|
|
2001
|
+
static readonly category: IconCategory;
|
|
2002
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1376
2003
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreditCardIconComponent, never>;
|
|
1377
2004
|
static ɵcmp: i0.ɵɵComponentDeclaration<CreditCardIconComponent, "ea-icon-credit-card", never, {}, {}, never, never, true, never>;
|
|
1378
2005
|
}
|
|
1379
2006
|
|
|
1380
|
-
declare class CropIconComponent {
|
|
2007
|
+
declare class CropIconComponent extends IconComponentBase {
|
|
2008
|
+
static readonly slug = "crop";
|
|
2009
|
+
static readonly category: IconCategory;
|
|
2010
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1381
2011
|
static ɵfac: i0.ɵɵFactoryDeclaration<CropIconComponent, never>;
|
|
1382
2012
|
static ɵcmp: i0.ɵɵComponentDeclaration<CropIconComponent, "ea-icon-crop", never, {}, {}, never, never, true, never>;
|
|
1383
2013
|
}
|
|
1384
2014
|
|
|
1385
|
-
declare class CrosshairIconComponent {
|
|
2015
|
+
declare class CrosshairIconComponent extends IconComponentBase {
|
|
2016
|
+
static readonly slug = "crosshair";
|
|
2017
|
+
static readonly category: IconCategory;
|
|
2018
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1386
2019
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrosshairIconComponent, never>;
|
|
1387
2020
|
static ɵcmp: i0.ɵɵComponentDeclaration<CrosshairIconComponent, "ea-icon-crosshair", never, {}, {}, never, never, true, never>;
|
|
1388
2021
|
}
|
|
1389
2022
|
|
|
1390
|
-
declare class DatabaseIconComponent {
|
|
2023
|
+
declare class DatabaseIconComponent extends IconComponentBase {
|
|
2024
|
+
static readonly slug = "database";
|
|
2025
|
+
static readonly category: IconCategory;
|
|
2026
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1391
2027
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatabaseIconComponent, never>;
|
|
1392
2028
|
static ɵcmp: i0.ɵɵComponentDeclaration<DatabaseIconComponent, "ea-icon-database", never, {}, {}, never, never, true, never>;
|
|
1393
2029
|
}
|
|
1394
2030
|
|
|
1395
|
-
declare class DeleteIconComponent {
|
|
2031
|
+
declare class DeleteIconComponent extends IconComponentBase {
|
|
2032
|
+
static readonly slug = "delete";
|
|
2033
|
+
static readonly category: IconCategory;
|
|
2034
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1396
2035
|
static ɵfac: i0.ɵɵFactoryDeclaration<DeleteIconComponent, never>;
|
|
1397
2036
|
static ɵcmp: i0.ɵɵComponentDeclaration<DeleteIconComponent, "ea-icon-delete", never, {}, {}, never, never, true, never>;
|
|
1398
2037
|
}
|
|
1399
2038
|
|
|
1400
|
-
declare class DiscIconComponent {
|
|
2039
|
+
declare class DiscIconComponent extends IconComponentBase {
|
|
2040
|
+
static readonly slug = "disc";
|
|
2041
|
+
static readonly category: IconCategory;
|
|
2042
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1401
2043
|
static ɵfac: i0.ɵɵFactoryDeclaration<DiscIconComponent, never>;
|
|
1402
2044
|
static ɵcmp: i0.ɵɵComponentDeclaration<DiscIconComponent, "ea-icon-disc", never, {}, {}, never, never, true, never>;
|
|
1403
2045
|
}
|
|
1404
2046
|
|
|
1405
|
-
declare class DiscordIconComponent {
|
|
2047
|
+
declare class DiscordIconComponent extends IconComponentBase {
|
|
2048
|
+
static readonly slug = "discord";
|
|
2049
|
+
static readonly category: IconCategory;
|
|
2050
|
+
static readonly isBrand = true;
|
|
2051
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1406
2052
|
readonly brand: i0.InputSignal<boolean>;
|
|
1407
2053
|
static ɵfac: i0.ɵɵFactoryDeclaration<DiscordIconComponent, never>;
|
|
1408
2054
|
static ɵcmp: i0.ɵɵComponentDeclaration<DiscordIconComponent, "ea-icon-discord", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1409
2055
|
}
|
|
1410
2056
|
|
|
1411
|
-
declare class DivideIconComponent {
|
|
2057
|
+
declare class DivideIconComponent extends IconComponentBase {
|
|
2058
|
+
static readonly slug = "divide";
|
|
2059
|
+
static readonly category: IconCategory;
|
|
2060
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1412
2061
|
static ɵfac: i0.ɵɵFactoryDeclaration<DivideIconComponent, never>;
|
|
1413
2062
|
static ɵcmp: i0.ɵɵComponentDeclaration<DivideIconComponent, "ea-icon-divide", never, {}, {}, never, never, true, never>;
|
|
1414
2063
|
}
|
|
1415
2064
|
|
|
1416
|
-
declare class
|
|
2065
|
+
declare class DivideCircleIconComponent extends IconComponentBase {
|
|
2066
|
+
static readonly slug = "divide-circle";
|
|
2067
|
+
static readonly category: IconCategory;
|
|
2068
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2069
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DivideCircleIconComponent, never>;
|
|
2070
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DivideCircleIconComponent, "ea-icon-divide-circle", never, {}, {}, never, never, true, never>;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
declare class DivideSquareIconComponent extends IconComponentBase {
|
|
2074
|
+
static readonly slug = "divide-square";
|
|
2075
|
+
static readonly category: IconCategory;
|
|
2076
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2077
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DivideSquareIconComponent, never>;
|
|
2078
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DivideSquareIconComponent, "ea-icon-divide-square", never, {}, {}, never, never, true, never>;
|
|
2079
|
+
}
|
|
2080
|
+
|
|
2081
|
+
declare class DockerIconComponent extends IconComponentBase {
|
|
2082
|
+
static readonly slug = "docker";
|
|
2083
|
+
static readonly category: IconCategory;
|
|
2084
|
+
static readonly isBrand = true;
|
|
2085
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1417
2086
|
readonly brand: i0.InputSignal<boolean>;
|
|
1418
2087
|
static ɵfac: i0.ɵɵFactoryDeclaration<DockerIconComponent, never>;
|
|
1419
2088
|
static ɵcmp: i0.ɵɵComponentDeclaration<DockerIconComponent, "ea-icon-docker", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1420
2089
|
}
|
|
1421
2090
|
|
|
1422
|
-
declare class DollarSignIconComponent {
|
|
2091
|
+
declare class DollarSignIconComponent extends IconComponentBase {
|
|
2092
|
+
static readonly slug = "dollar-sign";
|
|
2093
|
+
static readonly category: IconCategory;
|
|
2094
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1423
2095
|
static ɵfac: i0.ɵɵFactoryDeclaration<DollarSignIconComponent, never>;
|
|
1424
2096
|
static ɵcmp: i0.ɵɵComponentDeclaration<DollarSignIconComponent, "ea-icon-dollar-sign", never, {}, {}, never, never, true, never>;
|
|
1425
2097
|
}
|
|
1426
2098
|
|
|
1427
|
-
declare class DownloadIconComponent {
|
|
2099
|
+
declare class DownloadIconComponent extends IconComponentBase {
|
|
2100
|
+
static readonly slug = "download";
|
|
2101
|
+
static readonly category: IconCategory;
|
|
2102
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1428
2103
|
static ɵfac: i0.ɵɵFactoryDeclaration<DownloadIconComponent, never>;
|
|
1429
2104
|
static ɵcmp: i0.ɵɵComponentDeclaration<DownloadIconComponent, "ea-icon-download", never, {}, {}, never, never, true, never>;
|
|
1430
2105
|
}
|
|
1431
2106
|
|
|
1432
|
-
declare class DownloadCloudIconComponent {
|
|
2107
|
+
declare class DownloadCloudIconComponent extends IconComponentBase {
|
|
2108
|
+
static readonly slug = "download-cloud";
|
|
2109
|
+
static readonly category: IconCategory;
|
|
2110
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1433
2111
|
static ɵfac: i0.ɵɵFactoryDeclaration<DownloadCloudIconComponent, never>;
|
|
1434
2112
|
static ɵcmp: i0.ɵɵComponentDeclaration<DownloadCloudIconComponent, "ea-icon-download-cloud", never, {}, {}, never, never, true, never>;
|
|
1435
2113
|
}
|
|
1436
2114
|
|
|
1437
|
-
declare class
|
|
2115
|
+
declare class DribbbleIconComponent extends IconComponentBase {
|
|
2116
|
+
static readonly slug = "dribbble";
|
|
2117
|
+
static readonly category: IconCategory;
|
|
2118
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2119
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DribbbleIconComponent, never>;
|
|
2120
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DribbbleIconComponent, "ea-icon-dribbble", never, {}, {}, never, never, true, never>;
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
declare class DropboxIconComponent extends IconComponentBase {
|
|
2124
|
+
static readonly slug = "dropbox";
|
|
2125
|
+
static readonly category: IconCategory;
|
|
2126
|
+
static readonly isBrand = true;
|
|
2127
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1438
2128
|
readonly brand: i0.InputSignal<boolean>;
|
|
1439
2129
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropboxIconComponent, never>;
|
|
1440
2130
|
static ɵcmp: i0.ɵɵComponentDeclaration<DropboxIconComponent, "ea-icon-dropbox", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1441
2131
|
}
|
|
1442
2132
|
|
|
1443
|
-
declare class DropletIconComponent {
|
|
2133
|
+
declare class DropletIconComponent extends IconComponentBase {
|
|
2134
|
+
static readonly slug = "droplet";
|
|
2135
|
+
static readonly category: IconCategory;
|
|
2136
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1444
2137
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropletIconComponent, never>;
|
|
1445
2138
|
static ɵcmp: i0.ɵɵComponentDeclaration<DropletIconComponent, "ea-icon-droplet", never, {}, {}, never, never, true, never>;
|
|
1446
2139
|
}
|
|
1447
2140
|
|
|
1448
|
-
declare class EagamiIconComponent {
|
|
2141
|
+
declare class EagamiIconComponent extends IconComponentBase {
|
|
2142
|
+
static readonly slug = "eagami";
|
|
2143
|
+
static readonly category: IconCategory;
|
|
2144
|
+
static readonly isBrand = true;
|
|
2145
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1449
2146
|
static ɵfac: i0.ɵɵFactoryDeclaration<EagamiIconComponent, never>;
|
|
1450
2147
|
static ɵcmp: i0.ɵɵComponentDeclaration<EagamiIconComponent, "ea-icon-eagami", never, {}, {}, never, never, true, never>;
|
|
1451
2148
|
}
|
|
1452
2149
|
|
|
1453
|
-
declare class EditIconComponent {
|
|
2150
|
+
declare class EditIconComponent extends IconComponentBase {
|
|
2151
|
+
static readonly slug = "edit";
|
|
2152
|
+
static readonly category: IconCategory;
|
|
2153
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1454
2154
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditIconComponent, never>;
|
|
1455
2155
|
static ɵcmp: i0.ɵɵComponentDeclaration<EditIconComponent, "ea-icon-edit", never, {}, {}, never, never, true, never>;
|
|
1456
2156
|
}
|
|
1457
2157
|
|
|
1458
|
-
declare class Edit2IconComponent {
|
|
2158
|
+
declare class Edit2IconComponent extends IconComponentBase {
|
|
2159
|
+
static readonly slug = "edit-2";
|
|
2160
|
+
static readonly category: IconCategory;
|
|
2161
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1459
2162
|
static ɵfac: i0.ɵɵFactoryDeclaration<Edit2IconComponent, never>;
|
|
1460
2163
|
static ɵcmp: i0.ɵɵComponentDeclaration<Edit2IconComponent, "ea-icon-edit-2", never, {}, {}, never, never, true, never>;
|
|
1461
2164
|
}
|
|
1462
2165
|
|
|
1463
|
-
declare class Edit3IconComponent {
|
|
2166
|
+
declare class Edit3IconComponent extends IconComponentBase {
|
|
2167
|
+
static readonly slug = "edit-3";
|
|
2168
|
+
static readonly category: IconCategory;
|
|
2169
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1464
2170
|
static ɵfac: i0.ɵɵFactoryDeclaration<Edit3IconComponent, never>;
|
|
1465
2171
|
static ɵcmp: i0.ɵɵComponentDeclaration<Edit3IconComponent, "ea-icon-edit-3", never, {}, {}, never, never, true, never>;
|
|
1466
2172
|
}
|
|
1467
2173
|
|
|
1468
|
-
declare class ExternalLinkIconComponent {
|
|
2174
|
+
declare class ExternalLinkIconComponent extends IconComponentBase {
|
|
2175
|
+
static readonly slug = "external-link";
|
|
2176
|
+
static readonly category: IconCategory;
|
|
2177
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1469
2178
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExternalLinkIconComponent, never>;
|
|
1470
2179
|
static ɵcmp: i0.ɵɵComponentDeclaration<ExternalLinkIconComponent, "ea-icon-external-link", never, {}, {}, never, never, true, never>;
|
|
1471
2180
|
}
|
|
1472
2181
|
|
|
1473
|
-
declare class EyeIconComponent {
|
|
2182
|
+
declare class EyeIconComponent extends IconComponentBase {
|
|
2183
|
+
static readonly slug = "eye";
|
|
2184
|
+
static readonly category: IconCategory;
|
|
2185
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1474
2186
|
static ɵfac: i0.ɵɵFactoryDeclaration<EyeIconComponent, never>;
|
|
1475
2187
|
static ɵcmp: i0.ɵɵComponentDeclaration<EyeIconComponent, "ea-icon-eye", never, {}, {}, never, never, true, never>;
|
|
1476
2188
|
}
|
|
1477
2189
|
|
|
1478
|
-
declare class EyeOffIconComponent {
|
|
2190
|
+
declare class EyeOffIconComponent extends IconComponentBase {
|
|
2191
|
+
static readonly slug = "eye-off";
|
|
2192
|
+
static readonly category: IconCategory;
|
|
2193
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1479
2194
|
static ɵfac: i0.ɵɵFactoryDeclaration<EyeOffIconComponent, never>;
|
|
1480
2195
|
static ɵcmp: i0.ɵɵComponentDeclaration<EyeOffIconComponent, "ea-icon-eye-off", never, {}, {}, never, never, true, never>;
|
|
1481
2196
|
}
|
|
1482
2197
|
|
|
1483
|
-
|
|
1484
|
-
|
|
2198
|
+
/**
|
|
2199
|
+
* Facebook icon (Feather outline).
|
|
2200
|
+
*
|
|
2201
|
+
* @remarks
|
|
2202
|
+
* Prior to v1.4 this slug rendered Eagami's brand-filled Facebook mark. v1.4
|
|
2203
|
+
* aligns the canonical slug with Feather Icons, so `FacebookIconComponent` now
|
|
2204
|
+
* renders Feather's outline. The brand-filled mark that previously shipped
|
|
2205
|
+
* here has moved to `<ea-icon-facebook-2>` / `Facebook2IconComponent`.
|
|
2206
|
+
*/
|
|
2207
|
+
declare class FacebookIconComponent extends IconComponentBase {
|
|
2208
|
+
static readonly slug = "facebook";
|
|
2209
|
+
static readonly category: IconCategory;
|
|
2210
|
+
static readonly isBrand = true;
|
|
2211
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1485
2212
|
static ɵfac: i0.ɵɵFactoryDeclaration<FacebookIconComponent, never>;
|
|
1486
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FacebookIconComponent, "ea-icon-facebook", never, {
|
|
2213
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FacebookIconComponent, "ea-icon-facebook", never, {}, {}, never, never, true, never>;
|
|
1487
2214
|
}
|
|
1488
2215
|
|
|
1489
|
-
|
|
2216
|
+
/**
|
|
2217
|
+
* Facebook brand mark (Eagami brand-filled).
|
|
2218
|
+
*
|
|
2219
|
+
* @remarks
|
|
2220
|
+
* Up to v1.3 this design shipped as `FacebookIconComponent` at slug
|
|
2221
|
+
* `ea-icon-facebook`. v1.4 reassigns the canonical slug to Feather's outline
|
|
2222
|
+
* and moves the brand-filled mark here. Set the `brand` input to render in
|
|
2223
|
+
* the official brand colour.
|
|
2224
|
+
*/
|
|
2225
|
+
declare class Facebook2IconComponent extends IconComponentBase {
|
|
2226
|
+
static readonly slug = "facebook-2";
|
|
2227
|
+
static readonly category: IconCategory;
|
|
2228
|
+
static readonly isBrand = true;
|
|
2229
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2230
|
+
readonly brand: i0.InputSignal<boolean>;
|
|
2231
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Facebook2IconComponent, never>;
|
|
2232
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Facebook2IconComponent, "ea-icon-facebook-2", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
declare class FastForwardIconComponent extends IconComponentBase {
|
|
2236
|
+
static readonly slug = "fast-forward";
|
|
2237
|
+
static readonly category: IconCategory;
|
|
2238
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1490
2239
|
static ɵfac: i0.ɵɵFactoryDeclaration<FastForwardIconComponent, never>;
|
|
1491
2240
|
static ɵcmp: i0.ɵɵComponentDeclaration<FastForwardIconComponent, "ea-icon-fast-forward", never, {}, {}, never, never, true, never>;
|
|
1492
2241
|
}
|
|
1493
2242
|
|
|
1494
|
-
declare class FeatherIconComponent {
|
|
2243
|
+
declare class FeatherIconComponent extends IconComponentBase {
|
|
2244
|
+
static readonly slug = "feather";
|
|
2245
|
+
static readonly category: IconCategory;
|
|
2246
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1495
2247
|
static ɵfac: i0.ɵɵFactoryDeclaration<FeatherIconComponent, never>;
|
|
1496
2248
|
static ɵcmp: i0.ɵɵComponentDeclaration<FeatherIconComponent, "ea-icon-feather", never, {}, {}, never, never, true, never>;
|
|
1497
2249
|
}
|
|
1498
2250
|
|
|
1499
|
-
|
|
2251
|
+
/**
|
|
2252
|
+
* Figma icon (Feather outline).
|
|
2253
|
+
*
|
|
2254
|
+
* @remarks
|
|
2255
|
+
* Prior to v1.4 this slug rendered Eagami's brand-filled Figma mark. v1.4
|
|
2256
|
+
* aligns the canonical slug with Feather Icons, so `FigmaIconComponent` now
|
|
2257
|
+
* renders Feather's outline. The brand-filled mark that previously shipped
|
|
2258
|
+
* here has moved to `<ea-icon-figma-2>` / `Figma2IconComponent`.
|
|
2259
|
+
*/
|
|
2260
|
+
declare class FigmaIconComponent extends IconComponentBase {
|
|
2261
|
+
static readonly slug = "figma";
|
|
2262
|
+
static readonly category: IconCategory;
|
|
2263
|
+
static readonly isBrand = true;
|
|
2264
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1500
2265
|
static ɵfac: i0.ɵɵFactoryDeclaration<FigmaIconComponent, never>;
|
|
1501
2266
|
static ɵcmp: i0.ɵɵComponentDeclaration<FigmaIconComponent, "ea-icon-figma", never, {}, {}, never, never, true, never>;
|
|
1502
2267
|
}
|
|
1503
2268
|
|
|
1504
|
-
|
|
2269
|
+
/**
|
|
2270
|
+
* Figma brand mark (Eagami brand-filled).
|
|
2271
|
+
*
|
|
2272
|
+
* @remarks
|
|
2273
|
+
* Up to v1.3 this design shipped as `FigmaIconComponent` at slug
|
|
2274
|
+
* `ea-icon-figma`. v1.4 reassigns the canonical slug to Feather's outline
|
|
2275
|
+
* and moves the brand-filled mark here. Set the `brand` input to render in
|
|
2276
|
+
* the official brand colour.
|
|
2277
|
+
*/
|
|
2278
|
+
declare class Figma2IconComponent extends IconComponentBase {
|
|
2279
|
+
static readonly slug = "figma-2";
|
|
2280
|
+
static readonly category: IconCategory;
|
|
2281
|
+
static readonly isBrand = true;
|
|
2282
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2283
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Figma2IconComponent, never>;
|
|
2284
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Figma2IconComponent, "ea-icon-figma-2", never, {}, {}, never, never, true, never>;
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
declare class FileIconComponent extends IconComponentBase {
|
|
2288
|
+
static readonly slug = "file";
|
|
2289
|
+
static readonly category: IconCategory;
|
|
2290
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1505
2291
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileIconComponent, never>;
|
|
1506
2292
|
static ɵcmp: i0.ɵɵComponentDeclaration<FileIconComponent, "ea-icon-file", never, {}, {}, never, never, true, never>;
|
|
1507
2293
|
}
|
|
1508
2294
|
|
|
1509
|
-
declare class FileMinusIconComponent {
|
|
2295
|
+
declare class FileMinusIconComponent extends IconComponentBase {
|
|
2296
|
+
static readonly slug = "file-minus";
|
|
2297
|
+
static readonly category: IconCategory;
|
|
2298
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1510
2299
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileMinusIconComponent, never>;
|
|
1511
2300
|
static ɵcmp: i0.ɵɵComponentDeclaration<FileMinusIconComponent, "ea-icon-file-minus", never, {}, {}, never, never, true, never>;
|
|
1512
2301
|
}
|
|
1513
2302
|
|
|
1514
|
-
declare class FilePlusIconComponent {
|
|
2303
|
+
declare class FilePlusIconComponent extends IconComponentBase {
|
|
2304
|
+
static readonly slug = "file-plus";
|
|
2305
|
+
static readonly category: IconCategory;
|
|
2306
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1515
2307
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilePlusIconComponent, never>;
|
|
1516
2308
|
static ɵcmp: i0.ɵɵComponentDeclaration<FilePlusIconComponent, "ea-icon-file-plus", never, {}, {}, never, never, true, never>;
|
|
1517
2309
|
}
|
|
1518
2310
|
|
|
1519
|
-
declare class FileTextIconComponent {
|
|
2311
|
+
declare class FileTextIconComponent extends IconComponentBase {
|
|
2312
|
+
static readonly slug = "file-text";
|
|
2313
|
+
static readonly category: IconCategory;
|
|
2314
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1520
2315
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileTextIconComponent, never>;
|
|
1521
2316
|
static ɵcmp: i0.ɵɵComponentDeclaration<FileTextIconComponent, "ea-icon-file-text", never, {}, {}, never, never, true, never>;
|
|
1522
2317
|
}
|
|
1523
2318
|
|
|
1524
|
-
declare class FilmIconComponent {
|
|
2319
|
+
declare class FilmIconComponent extends IconComponentBase {
|
|
2320
|
+
static readonly slug = "film";
|
|
2321
|
+
static readonly category: IconCategory;
|
|
2322
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1525
2323
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilmIconComponent, never>;
|
|
1526
2324
|
static ɵcmp: i0.ɵɵComponentDeclaration<FilmIconComponent, "ea-icon-film", never, {}, {}, never, never, true, never>;
|
|
1527
2325
|
}
|
|
1528
2326
|
|
|
1529
|
-
declare class FilterIconComponent {
|
|
2327
|
+
declare class FilterIconComponent extends IconComponentBase {
|
|
2328
|
+
static readonly slug = "filter";
|
|
2329
|
+
static readonly category: IconCategory;
|
|
2330
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1530
2331
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterIconComponent, never>;
|
|
1531
2332
|
static ɵcmp: i0.ɵɵComponentDeclaration<FilterIconComponent, "ea-icon-filter", never, {}, {}, never, never, true, never>;
|
|
1532
2333
|
}
|
|
1533
2334
|
|
|
1534
|
-
declare class FlagIconComponent {
|
|
2335
|
+
declare class FlagIconComponent extends IconComponentBase {
|
|
2336
|
+
static readonly slug = "flag";
|
|
2337
|
+
static readonly category: IconCategory;
|
|
2338
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1535
2339
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlagIconComponent, never>;
|
|
1536
2340
|
static ɵcmp: i0.ɵɵComponentDeclaration<FlagIconComponent, "ea-icon-flag", never, {}, {}, never, never, true, never>;
|
|
1537
2341
|
}
|
|
1538
2342
|
|
|
1539
|
-
declare class FolderIconComponent {
|
|
2343
|
+
declare class FolderIconComponent extends IconComponentBase {
|
|
2344
|
+
static readonly slug = "folder";
|
|
2345
|
+
static readonly category: IconCategory;
|
|
2346
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1540
2347
|
static ɵfac: i0.ɵɵFactoryDeclaration<FolderIconComponent, never>;
|
|
1541
2348
|
static ɵcmp: i0.ɵɵComponentDeclaration<FolderIconComponent, "ea-icon-folder", never, {}, {}, never, never, true, never>;
|
|
1542
2349
|
}
|
|
1543
2350
|
|
|
1544
|
-
declare class
|
|
2351
|
+
declare class FolderMinusIconComponent extends IconComponentBase {
|
|
2352
|
+
static readonly slug = "folder-minus";
|
|
2353
|
+
static readonly category: IconCategory;
|
|
2354
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2355
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FolderMinusIconComponent, never>;
|
|
2356
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FolderMinusIconComponent, "ea-icon-folder-minus", never, {}, {}, never, never, true, never>;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
declare class FolderPlusIconComponent extends IconComponentBase {
|
|
2360
|
+
static readonly slug = "folder-plus";
|
|
2361
|
+
static readonly category: IconCategory;
|
|
2362
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2363
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FolderPlusIconComponent, never>;
|
|
2364
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FolderPlusIconComponent, "ea-icon-folder-plus", never, {}, {}, never, never, true, never>;
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
declare class FramerIconComponent extends IconComponentBase {
|
|
2368
|
+
static readonly slug = "framer";
|
|
2369
|
+
static readonly category: IconCategory;
|
|
2370
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2371
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FramerIconComponent, never>;
|
|
2372
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FramerIconComponent, "ea-icon-framer", never, {}, {}, never, never, true, never>;
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
declare class FrownIconComponent extends IconComponentBase {
|
|
2376
|
+
static readonly slug = "frown";
|
|
2377
|
+
static readonly category: IconCategory;
|
|
2378
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1545
2379
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrownIconComponent, never>;
|
|
1546
2380
|
static ɵcmp: i0.ɵɵComponentDeclaration<FrownIconComponent, "ea-icon-frown", never, {}, {}, never, never, true, never>;
|
|
1547
2381
|
}
|
|
1548
2382
|
|
|
1549
|
-
declare class GiftIconComponent {
|
|
2383
|
+
declare class GiftIconComponent extends IconComponentBase {
|
|
2384
|
+
static readonly slug = "gift";
|
|
2385
|
+
static readonly category: IconCategory;
|
|
2386
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1550
2387
|
static ɵfac: i0.ɵɵFactoryDeclaration<GiftIconComponent, never>;
|
|
1551
2388
|
static ɵcmp: i0.ɵɵComponentDeclaration<GiftIconComponent, "ea-icon-gift", never, {}, {}, never, never, true, never>;
|
|
1552
2389
|
}
|
|
1553
2390
|
|
|
1554
|
-
declare class GitBranchIconComponent {
|
|
2391
|
+
declare class GitBranchIconComponent extends IconComponentBase {
|
|
2392
|
+
static readonly slug = "git-branch";
|
|
2393
|
+
static readonly category: IconCategory;
|
|
2394
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1555
2395
|
static ɵfac: i0.ɵɵFactoryDeclaration<GitBranchIconComponent, never>;
|
|
1556
2396
|
static ɵcmp: i0.ɵɵComponentDeclaration<GitBranchIconComponent, "ea-icon-git-branch", never, {}, {}, never, never, true, never>;
|
|
1557
2397
|
}
|
|
1558
2398
|
|
|
1559
|
-
declare class GitCommitIconComponent {
|
|
2399
|
+
declare class GitCommitIconComponent extends IconComponentBase {
|
|
2400
|
+
static readonly slug = "git-commit";
|
|
2401
|
+
static readonly category: IconCategory;
|
|
2402
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1560
2403
|
static ɵfac: i0.ɵɵFactoryDeclaration<GitCommitIconComponent, never>;
|
|
1561
2404
|
static ɵcmp: i0.ɵɵComponentDeclaration<GitCommitIconComponent, "ea-icon-git-commit", never, {}, {}, never, never, true, never>;
|
|
1562
2405
|
}
|
|
1563
2406
|
|
|
1564
|
-
declare class GitMergeIconComponent {
|
|
2407
|
+
declare class GitMergeIconComponent extends IconComponentBase {
|
|
2408
|
+
static readonly slug = "git-merge";
|
|
2409
|
+
static readonly category: IconCategory;
|
|
2410
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1565
2411
|
static ɵfac: i0.ɵɵFactoryDeclaration<GitMergeIconComponent, never>;
|
|
1566
2412
|
static ɵcmp: i0.ɵɵComponentDeclaration<GitMergeIconComponent, "ea-icon-git-merge", never, {}, {}, never, never, true, never>;
|
|
1567
2413
|
}
|
|
1568
2414
|
|
|
1569
|
-
declare class GitPullRequestIconComponent {
|
|
2415
|
+
declare class GitPullRequestIconComponent extends IconComponentBase {
|
|
2416
|
+
static readonly slug = "git-pull-request";
|
|
2417
|
+
static readonly category: IconCategory;
|
|
2418
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1570
2419
|
static ɵfac: i0.ɵɵFactoryDeclaration<GitPullRequestIconComponent, never>;
|
|
1571
2420
|
static ɵcmp: i0.ɵɵComponentDeclaration<GitPullRequestIconComponent, "ea-icon-git-pull-request", never, {}, {}, never, never, true, never>;
|
|
1572
2421
|
}
|
|
1573
2422
|
|
|
1574
|
-
|
|
1575
|
-
|
|
2423
|
+
/**
|
|
2424
|
+
* GitHub icon (Feather outline).
|
|
2425
|
+
*
|
|
2426
|
+
* @remarks
|
|
2427
|
+
* Prior to v1.4 this slug rendered Eagami's brand-filled GitHub mark. v1.4
|
|
2428
|
+
* aligns the canonical slug with Feather Icons, so `GithubIconComponent` now
|
|
2429
|
+
* renders Feather's outline. The brand-filled mark that previously shipped
|
|
2430
|
+
* here has moved to `<ea-icon-github-2>` / `Github2IconComponent`.
|
|
2431
|
+
*/
|
|
2432
|
+
declare class GithubIconComponent extends IconComponentBase {
|
|
2433
|
+
static readonly slug = "github";
|
|
2434
|
+
static readonly category: IconCategory;
|
|
2435
|
+
static readonly isBrand = true;
|
|
2436
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1576
2437
|
static ɵfac: i0.ɵɵFactoryDeclaration<GithubIconComponent, never>;
|
|
1577
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GithubIconComponent, "ea-icon-github", never, {
|
|
2438
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GithubIconComponent, "ea-icon-github", never, {}, {}, never, never, true, never>;
|
|
2439
|
+
}
|
|
2440
|
+
|
|
2441
|
+
/**
|
|
2442
|
+
* GitHub brand mark (Eagami brand-filled).
|
|
2443
|
+
*
|
|
2444
|
+
* @remarks
|
|
2445
|
+
* Up to v1.3 this design shipped as `GithubIconComponent` at slug
|
|
2446
|
+
* `ea-icon-github`. v1.4 reassigns the canonical slug to Feather's outline
|
|
2447
|
+
* and moves the brand-filled mark here. Set the `brand` input to render in
|
|
2448
|
+
* the official brand colour.
|
|
2449
|
+
*/
|
|
2450
|
+
declare class Github2IconComponent extends IconComponentBase {
|
|
2451
|
+
static readonly slug = "github-2";
|
|
2452
|
+
static readonly category: IconCategory;
|
|
2453
|
+
static readonly isBrand = true;
|
|
2454
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2455
|
+
readonly brand: i0.InputSignal<boolean>;
|
|
2456
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Github2IconComponent, never>;
|
|
2457
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Github2IconComponent, "ea-icon-github-2", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1578
2458
|
}
|
|
1579
2459
|
|
|
1580
|
-
declare class GitlabIconComponent {
|
|
2460
|
+
declare class GitlabIconComponent extends IconComponentBase {
|
|
2461
|
+
static readonly slug = "gitlab";
|
|
2462
|
+
static readonly category: IconCategory;
|
|
2463
|
+
static readonly isBrand = true;
|
|
2464
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1581
2465
|
readonly brand: i0.InputSignal<boolean>;
|
|
1582
2466
|
static ɵfac: i0.ɵɵFactoryDeclaration<GitlabIconComponent, never>;
|
|
1583
2467
|
static ɵcmp: i0.ɵɵComponentDeclaration<GitlabIconComponent, "ea-icon-gitlab", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1584
2468
|
}
|
|
1585
2469
|
|
|
1586
|
-
declare class GlobeIconComponent {
|
|
2470
|
+
declare class GlobeIconComponent extends IconComponentBase {
|
|
2471
|
+
static readonly slug = "globe";
|
|
2472
|
+
static readonly category: IconCategory;
|
|
2473
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1587
2474
|
static ɵfac: i0.ɵɵFactoryDeclaration<GlobeIconComponent, never>;
|
|
1588
2475
|
static ɵcmp: i0.ɵɵComponentDeclaration<GlobeIconComponent, "ea-icon-globe", never, {}, {}, never, never, true, never>;
|
|
1589
2476
|
}
|
|
1590
2477
|
|
|
1591
|
-
declare class GoogleIconComponent {
|
|
2478
|
+
declare class GoogleIconComponent extends IconComponentBase {
|
|
2479
|
+
static readonly slug = "google";
|
|
2480
|
+
static readonly category: IconCategory;
|
|
2481
|
+
static readonly isBrand = true;
|
|
2482
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1592
2483
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleIconComponent, never>;
|
|
1593
2484
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoogleIconComponent, "ea-icon-google", never, {}, {}, never, never, true, never>;
|
|
1594
2485
|
}
|
|
1595
2486
|
|
|
1596
|
-
declare class GridIconComponent {
|
|
2487
|
+
declare class GridIconComponent extends IconComponentBase {
|
|
2488
|
+
static readonly slug = "grid";
|
|
2489
|
+
static readonly category: IconCategory;
|
|
2490
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1597
2491
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridIconComponent, never>;
|
|
1598
2492
|
static ɵcmp: i0.ɵɵComponentDeclaration<GridIconComponent, "ea-icon-grid", never, {}, {}, never, never, true, never>;
|
|
1599
2493
|
}
|
|
1600
2494
|
|
|
1601
|
-
declare class HardDriveIconComponent {
|
|
2495
|
+
declare class HardDriveIconComponent extends IconComponentBase {
|
|
2496
|
+
static readonly slug = "hard-drive";
|
|
2497
|
+
static readonly category: IconCategory;
|
|
2498
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1602
2499
|
static ɵfac: i0.ɵɵFactoryDeclaration<HardDriveIconComponent, never>;
|
|
1603
2500
|
static ɵcmp: i0.ɵɵComponentDeclaration<HardDriveIconComponent, "ea-icon-hard-drive", never, {}, {}, never, never, true, never>;
|
|
1604
2501
|
}
|
|
1605
2502
|
|
|
1606
|
-
declare class HashIconComponent {
|
|
2503
|
+
declare class HashIconComponent extends IconComponentBase {
|
|
2504
|
+
static readonly slug = "hash";
|
|
2505
|
+
static readonly category: IconCategory;
|
|
2506
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1607
2507
|
static ɵfac: i0.ɵɵFactoryDeclaration<HashIconComponent, never>;
|
|
1608
2508
|
static ɵcmp: i0.ɵɵComponentDeclaration<HashIconComponent, "ea-icon-hash", never, {}, {}, never, never, true, never>;
|
|
1609
2509
|
}
|
|
1610
2510
|
|
|
1611
|
-
declare class HeadphonesIconComponent {
|
|
2511
|
+
declare class HeadphonesIconComponent extends IconComponentBase {
|
|
2512
|
+
static readonly slug = "headphones";
|
|
2513
|
+
static readonly category: IconCategory;
|
|
2514
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1612
2515
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeadphonesIconComponent, never>;
|
|
1613
2516
|
static ɵcmp: i0.ɵɵComponentDeclaration<HeadphonesIconComponent, "ea-icon-headphones", never, {}, {}, never, never, true, never>;
|
|
1614
2517
|
}
|
|
1615
2518
|
|
|
1616
|
-
declare class HeartIconComponent {
|
|
2519
|
+
declare class HeartIconComponent extends IconComponentBase {
|
|
2520
|
+
static readonly slug = "heart";
|
|
2521
|
+
static readonly category: IconCategory;
|
|
2522
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1617
2523
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeartIconComponent, never>;
|
|
1618
2524
|
static ɵcmp: i0.ɵɵComponentDeclaration<HeartIconComponent, "ea-icon-heart", never, {}, {}, never, never, true, never>;
|
|
1619
2525
|
}
|
|
1620
2526
|
|
|
1621
|
-
declare class HelpCircleIconComponent {
|
|
2527
|
+
declare class HelpCircleIconComponent extends IconComponentBase {
|
|
2528
|
+
static readonly slug = "help-circle";
|
|
2529
|
+
static readonly category: IconCategory;
|
|
2530
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1622
2531
|
static ɵfac: i0.ɵɵFactoryDeclaration<HelpCircleIconComponent, never>;
|
|
1623
2532
|
static ɵcmp: i0.ɵɵComponentDeclaration<HelpCircleIconComponent, "ea-icon-help-circle", never, {}, {}, never, never, true, never>;
|
|
1624
2533
|
}
|
|
1625
2534
|
|
|
1626
|
-
declare class
|
|
2535
|
+
declare class HeptagonIconComponent extends IconComponentBase {
|
|
2536
|
+
static readonly slug = "heptagon";
|
|
2537
|
+
static readonly category: IconCategory;
|
|
2538
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2539
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeptagonIconComponent, never>;
|
|
2540
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeptagonIconComponent, "ea-icon-heptagon", never, {}, {}, never, never, true, never>;
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
declare class HexagonIconComponent extends IconComponentBase {
|
|
2544
|
+
static readonly slug = "hexagon";
|
|
2545
|
+
static readonly category: IconCategory;
|
|
2546
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2547
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HexagonIconComponent, never>;
|
|
2548
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HexagonIconComponent, "ea-icon-hexagon", never, {}, {}, never, never, true, never>;
|
|
2549
|
+
}
|
|
2550
|
+
|
|
2551
|
+
declare class HomeIconComponent extends IconComponentBase {
|
|
2552
|
+
static readonly slug = "home";
|
|
2553
|
+
static readonly category: IconCategory;
|
|
2554
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1627
2555
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomeIconComponent, never>;
|
|
1628
2556
|
static ɵcmp: i0.ɵɵComponentDeclaration<HomeIconComponent, "ea-icon-home", never, {}, {}, never, never, true, never>;
|
|
1629
2557
|
}
|
|
1630
2558
|
|
|
1631
|
-
declare class ImageIconComponent {
|
|
2559
|
+
declare class ImageIconComponent extends IconComponentBase {
|
|
2560
|
+
static readonly slug = "image";
|
|
2561
|
+
static readonly category: IconCategory;
|
|
2562
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1632
2563
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageIconComponent, never>;
|
|
1633
2564
|
static ɵcmp: i0.ɵɵComponentDeclaration<ImageIconComponent, "ea-icon-image", never, {}, {}, never, never, true, never>;
|
|
1634
2565
|
}
|
|
1635
2566
|
|
|
1636
|
-
declare class InboxIconComponent {
|
|
2567
|
+
declare class InboxIconComponent extends IconComponentBase {
|
|
2568
|
+
static readonly slug = "inbox";
|
|
2569
|
+
static readonly category: IconCategory;
|
|
2570
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1637
2571
|
static ɵfac: i0.ɵɵFactoryDeclaration<InboxIconComponent, never>;
|
|
1638
2572
|
static ɵcmp: i0.ɵɵComponentDeclaration<InboxIconComponent, "ea-icon-inbox", never, {}, {}, never, never, true, never>;
|
|
1639
2573
|
}
|
|
1640
2574
|
|
|
1641
|
-
declare class InfoIconComponent {
|
|
2575
|
+
declare class InfoIconComponent extends IconComponentBase {
|
|
2576
|
+
static readonly slug = "info";
|
|
2577
|
+
static readonly category: IconCategory;
|
|
2578
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1642
2579
|
static ɵfac: i0.ɵɵFactoryDeclaration<InfoIconComponent, never>;
|
|
1643
2580
|
static ɵcmp: i0.ɵɵComponentDeclaration<InfoIconComponent, "ea-icon-info", never, {}, {}, never, never, true, never>;
|
|
1644
2581
|
}
|
|
1645
2582
|
|
|
1646
|
-
declare class
|
|
2583
|
+
declare class InstagramIconComponent extends IconComponentBase {
|
|
2584
|
+
static readonly slug = "instagram";
|
|
2585
|
+
static readonly category: IconCategory;
|
|
2586
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2587
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InstagramIconComponent, never>;
|
|
2588
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InstagramIconComponent, "ea-icon-instagram", never, {}, {}, never, never, true, never>;
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
declare class ItalicIconComponent extends IconComponentBase {
|
|
2592
|
+
static readonly slug = "italic";
|
|
2593
|
+
static readonly category: IconCategory;
|
|
2594
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1647
2595
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItalicIconComponent, never>;
|
|
1648
2596
|
static ɵcmp: i0.ɵɵComponentDeclaration<ItalicIconComponent, "ea-icon-italic", never, {}, {}, never, never, true, never>;
|
|
1649
2597
|
}
|
|
1650
2598
|
|
|
1651
|
-
declare class KeyIconComponent {
|
|
2599
|
+
declare class KeyIconComponent extends IconComponentBase {
|
|
2600
|
+
static readonly slug = "key";
|
|
2601
|
+
static readonly category: IconCategory;
|
|
2602
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1652
2603
|
static ɵfac: i0.ɵɵFactoryDeclaration<KeyIconComponent, never>;
|
|
1653
2604
|
static ɵcmp: i0.ɵɵComponentDeclaration<KeyIconComponent, "ea-icon-key", never, {}, {}, never, never, true, never>;
|
|
1654
2605
|
}
|
|
1655
2606
|
|
|
1656
|
-
declare class KubernetesIconComponent {
|
|
2607
|
+
declare class KubernetesIconComponent extends IconComponentBase {
|
|
2608
|
+
static readonly slug = "kubernetes";
|
|
2609
|
+
static readonly category: IconCategory;
|
|
2610
|
+
static readonly isBrand = true;
|
|
2611
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1657
2612
|
readonly brand: i0.InputSignal<boolean>;
|
|
1658
2613
|
static ɵfac: i0.ɵɵFactoryDeclaration<KubernetesIconComponent, never>;
|
|
1659
2614
|
static ɵcmp: i0.ɵɵComponentDeclaration<KubernetesIconComponent, "ea-icon-kubernetes", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1660
2615
|
}
|
|
1661
2616
|
|
|
1662
|
-
declare class
|
|
2617
|
+
declare class LampIconComponent extends IconComponentBase {
|
|
2618
|
+
static readonly slug = "lamp";
|
|
2619
|
+
static readonly category: IconCategory;
|
|
2620
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2621
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LampIconComponent, never>;
|
|
2622
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LampIconComponent, "ea-icon-lamp", never, {}, {}, never, never, true, never>;
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2625
|
+
declare class LayersIconComponent extends IconComponentBase {
|
|
2626
|
+
static readonly slug = "layers";
|
|
2627
|
+
static readonly category: IconCategory;
|
|
2628
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1663
2629
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayersIconComponent, never>;
|
|
1664
2630
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayersIconComponent, "ea-icon-layers", never, {}, {}, never, never, true, never>;
|
|
1665
2631
|
}
|
|
1666
2632
|
|
|
1667
|
-
declare class LayoutIconComponent {
|
|
2633
|
+
declare class LayoutIconComponent extends IconComponentBase {
|
|
2634
|
+
static readonly slug = "layout";
|
|
2635
|
+
static readonly category: IconCategory;
|
|
2636
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1668
2637
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutIconComponent, never>;
|
|
1669
2638
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutIconComponent, "ea-icon-layout", never, {}, {}, never, never, true, never>;
|
|
1670
2639
|
}
|
|
1671
2640
|
|
|
1672
|
-
declare class LifeBuoyIconComponent {
|
|
2641
|
+
declare class LifeBuoyIconComponent extends IconComponentBase {
|
|
2642
|
+
static readonly slug = "life-buoy";
|
|
2643
|
+
static readonly category: IconCategory;
|
|
2644
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1673
2645
|
static ɵfac: i0.ɵɵFactoryDeclaration<LifeBuoyIconComponent, never>;
|
|
1674
2646
|
static ɵcmp: i0.ɵɵComponentDeclaration<LifeBuoyIconComponent, "ea-icon-life-buoy", never, {}, {}, never, never, true, never>;
|
|
1675
2647
|
}
|
|
1676
2648
|
|
|
1677
|
-
declare class LinkIconComponent {
|
|
2649
|
+
declare class LinkIconComponent extends IconComponentBase {
|
|
2650
|
+
static readonly slug = "link";
|
|
2651
|
+
static readonly category: IconCategory;
|
|
2652
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1678
2653
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinkIconComponent, never>;
|
|
1679
2654
|
static ɵcmp: i0.ɵɵComponentDeclaration<LinkIconComponent, "ea-icon-link", never, {}, {}, never, never, true, never>;
|
|
1680
2655
|
}
|
|
1681
2656
|
|
|
1682
|
-
declare class Link2IconComponent {
|
|
2657
|
+
declare class Link2IconComponent extends IconComponentBase {
|
|
2658
|
+
static readonly slug = "link-2";
|
|
2659
|
+
static readonly category: IconCategory;
|
|
2660
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1683
2661
|
static ɵfac: i0.ɵɵFactoryDeclaration<Link2IconComponent, never>;
|
|
1684
2662
|
static ɵcmp: i0.ɵɵComponentDeclaration<Link2IconComponent, "ea-icon-link-2", never, {}, {}, never, never, true, never>;
|
|
1685
2663
|
}
|
|
1686
2664
|
|
|
1687
|
-
|
|
1688
|
-
|
|
2665
|
+
/**
|
|
2666
|
+
* LinkedIn icon (Feather outline).
|
|
2667
|
+
*
|
|
2668
|
+
* @remarks
|
|
2669
|
+
* Prior to v1.4 this slug rendered Eagami's brand-filled LinkedIn mark. v1.4
|
|
2670
|
+
* aligns the canonical slug with Feather Icons, so `LinkedinIconComponent` now
|
|
2671
|
+
* renders Feather's outline. The brand-filled mark that previously shipped
|
|
2672
|
+
* here has moved to `<ea-icon-linkedin-2>` / `Linkedin2IconComponent`.
|
|
2673
|
+
*/
|
|
2674
|
+
declare class LinkedinIconComponent extends IconComponentBase {
|
|
2675
|
+
static readonly slug = "linkedin";
|
|
2676
|
+
static readonly category: IconCategory;
|
|
2677
|
+
static readonly isBrand = true;
|
|
2678
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1689
2679
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinkedinIconComponent, never>;
|
|
1690
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinkedinIconComponent, "ea-icon-linkedin", never, {
|
|
2680
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkedinIconComponent, "ea-icon-linkedin", never, {}, {}, never, never, true, never>;
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
/**
|
|
2684
|
+
* LinkedIn brand mark (Eagami brand-filled).
|
|
2685
|
+
*
|
|
2686
|
+
* @remarks
|
|
2687
|
+
* Up to v1.3 this design shipped as `LinkedinIconComponent` at slug
|
|
2688
|
+
* `ea-icon-linkedin`. v1.4 reassigns the canonical slug to Feather's outline
|
|
2689
|
+
* and moves the brand-filled mark here. Set the `brand` input to render in
|
|
2690
|
+
* the official brand colour.
|
|
2691
|
+
*/
|
|
2692
|
+
declare class Linkedin2IconComponent extends IconComponentBase {
|
|
2693
|
+
static readonly slug = "linkedin-2";
|
|
2694
|
+
static readonly category: IconCategory;
|
|
2695
|
+
static readonly isBrand = true;
|
|
2696
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2697
|
+
readonly brand: i0.InputSignal<boolean>;
|
|
2698
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Linkedin2IconComponent, never>;
|
|
2699
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Linkedin2IconComponent, "ea-icon-linkedin-2", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1691
2700
|
}
|
|
1692
2701
|
|
|
1693
|
-
declare class ListIconComponent {
|
|
2702
|
+
declare class ListIconComponent extends IconComponentBase {
|
|
2703
|
+
static readonly slug = "list";
|
|
2704
|
+
static readonly category: IconCategory;
|
|
2705
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1694
2706
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListIconComponent, never>;
|
|
1695
2707
|
static ɵcmp: i0.ɵɵComponentDeclaration<ListIconComponent, "ea-icon-list", never, {}, {}, never, never, true, never>;
|
|
1696
2708
|
}
|
|
1697
2709
|
|
|
1698
|
-
declare class LoaderIconComponent {
|
|
2710
|
+
declare class LoaderIconComponent extends IconComponentBase {
|
|
2711
|
+
static readonly slug = "loader";
|
|
2712
|
+
static readonly category: IconCategory;
|
|
2713
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1699
2714
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderIconComponent, never>;
|
|
1700
2715
|
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderIconComponent, "ea-icon-loader", never, {}, {}, never, never, true, never>;
|
|
1701
2716
|
}
|
|
1702
2717
|
|
|
1703
|
-
declare class LockIconComponent {
|
|
2718
|
+
declare class LockIconComponent extends IconComponentBase {
|
|
2719
|
+
static readonly slug = "lock";
|
|
2720
|
+
static readonly category: IconCategory;
|
|
2721
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1704
2722
|
static ɵfac: i0.ɵɵFactoryDeclaration<LockIconComponent, never>;
|
|
1705
2723
|
static ɵcmp: i0.ɵɵComponentDeclaration<LockIconComponent, "ea-icon-lock", never, {}, {}, never, never, true, never>;
|
|
1706
2724
|
}
|
|
1707
2725
|
|
|
1708
|
-
declare class LogInIconComponent {
|
|
2726
|
+
declare class LogInIconComponent extends IconComponentBase {
|
|
2727
|
+
static readonly slug = "log-in";
|
|
2728
|
+
static readonly category: IconCategory;
|
|
2729
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1709
2730
|
static ɵfac: i0.ɵɵFactoryDeclaration<LogInIconComponent, never>;
|
|
1710
2731
|
static ɵcmp: i0.ɵɵComponentDeclaration<LogInIconComponent, "ea-icon-log-in", never, {}, {}, never, never, true, never>;
|
|
1711
2732
|
}
|
|
1712
2733
|
|
|
1713
|
-
declare class LogOutIconComponent {
|
|
2734
|
+
declare class LogOutIconComponent extends IconComponentBase {
|
|
2735
|
+
static readonly slug = "log-out";
|
|
2736
|
+
static readonly category: IconCategory;
|
|
2737
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1714
2738
|
static ɵfac: i0.ɵɵFactoryDeclaration<LogOutIconComponent, never>;
|
|
1715
2739
|
static ɵcmp: i0.ɵɵComponentDeclaration<LogOutIconComponent, "ea-icon-log-out", never, {}, {}, never, never, true, never>;
|
|
1716
2740
|
}
|
|
1717
2741
|
|
|
1718
|
-
declare class MailIconComponent {
|
|
2742
|
+
declare class MailIconComponent extends IconComponentBase {
|
|
2743
|
+
static readonly slug = "mail";
|
|
2744
|
+
static readonly category: IconCategory;
|
|
2745
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1719
2746
|
static ɵfac: i0.ɵɵFactoryDeclaration<MailIconComponent, never>;
|
|
1720
2747
|
static ɵcmp: i0.ɵɵComponentDeclaration<MailIconComponent, "ea-icon-mail", never, {}, {}, never, never, true, never>;
|
|
1721
2748
|
}
|
|
1722
2749
|
|
|
1723
|
-
declare class MapIconComponent {
|
|
2750
|
+
declare class MapIconComponent extends IconComponentBase {
|
|
2751
|
+
static readonly slug = "map";
|
|
2752
|
+
static readonly category: IconCategory;
|
|
2753
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1724
2754
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapIconComponent, never>;
|
|
1725
2755
|
static ɵcmp: i0.ɵɵComponentDeclaration<MapIconComponent, "ea-icon-map", never, {}, {}, never, never, true, never>;
|
|
1726
2756
|
}
|
|
1727
2757
|
|
|
1728
|
-
declare class MapPinIconComponent {
|
|
2758
|
+
declare class MapPinIconComponent extends IconComponentBase {
|
|
2759
|
+
static readonly slug = "map-pin";
|
|
2760
|
+
static readonly category: IconCategory;
|
|
2761
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1729
2762
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapPinIconComponent, never>;
|
|
1730
2763
|
static ɵcmp: i0.ɵɵComponentDeclaration<MapPinIconComponent, "ea-icon-map-pin", never, {}, {}, never, never, true, never>;
|
|
1731
2764
|
}
|
|
1732
2765
|
|
|
1733
|
-
declare class MastercardIconComponent {
|
|
2766
|
+
declare class MastercardIconComponent extends IconComponentBase {
|
|
2767
|
+
static readonly slug = "mastercard";
|
|
2768
|
+
static readonly category: IconCategory;
|
|
2769
|
+
static readonly isBrand = true;
|
|
2770
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1734
2771
|
static ɵfac: i0.ɵɵFactoryDeclaration<MastercardIconComponent, never>;
|
|
1735
2772
|
static ɵcmp: i0.ɵɵComponentDeclaration<MastercardIconComponent, "ea-icon-mastercard", never, {}, {}, never, never, true, never>;
|
|
1736
2773
|
}
|
|
1737
2774
|
|
|
1738
|
-
declare class MaximizeIconComponent {
|
|
2775
|
+
declare class MaximizeIconComponent extends IconComponentBase {
|
|
2776
|
+
static readonly slug = "maximize";
|
|
2777
|
+
static readonly category: IconCategory;
|
|
2778
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1739
2779
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaximizeIconComponent, never>;
|
|
1740
2780
|
static ɵcmp: i0.ɵɵComponentDeclaration<MaximizeIconComponent, "ea-icon-maximize", never, {}, {}, never, never, true, never>;
|
|
1741
2781
|
}
|
|
1742
2782
|
|
|
1743
|
-
declare class Maximize2IconComponent {
|
|
2783
|
+
declare class Maximize2IconComponent extends IconComponentBase {
|
|
2784
|
+
static readonly slug = "maximize-2";
|
|
2785
|
+
static readonly category: IconCategory;
|
|
2786
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1744
2787
|
static ɵfac: i0.ɵɵFactoryDeclaration<Maximize2IconComponent, never>;
|
|
1745
2788
|
static ɵcmp: i0.ɵɵComponentDeclaration<Maximize2IconComponent, "ea-icon-maximize-2", never, {}, {}, never, never, true, never>;
|
|
1746
2789
|
}
|
|
1747
2790
|
|
|
1748
|
-
declare class MehIconComponent {
|
|
2791
|
+
declare class MehIconComponent extends IconComponentBase {
|
|
2792
|
+
static readonly slug = "meh";
|
|
2793
|
+
static readonly category: IconCategory;
|
|
2794
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1749
2795
|
static ɵfac: i0.ɵɵFactoryDeclaration<MehIconComponent, never>;
|
|
1750
2796
|
static ɵcmp: i0.ɵɵComponentDeclaration<MehIconComponent, "ea-icon-meh", never, {}, {}, never, never, true, never>;
|
|
1751
2797
|
}
|
|
1752
2798
|
|
|
1753
|
-
declare class MenuIconComponent {
|
|
2799
|
+
declare class MenuIconComponent extends IconComponentBase {
|
|
2800
|
+
static readonly slug = "menu";
|
|
2801
|
+
static readonly category: IconCategory;
|
|
2802
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1754
2803
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuIconComponent, never>;
|
|
1755
2804
|
static ɵcmp: i0.ɵɵComponentDeclaration<MenuIconComponent, "ea-icon-menu", never, {}, {}, never, never, true, never>;
|
|
1756
2805
|
}
|
|
1757
2806
|
|
|
1758
|
-
declare class MessageCircleIconComponent {
|
|
2807
|
+
declare class MessageCircleIconComponent extends IconComponentBase {
|
|
2808
|
+
static readonly slug = "message-circle";
|
|
2809
|
+
static readonly category: IconCategory;
|
|
2810
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1759
2811
|
static ɵfac: i0.ɵɵFactoryDeclaration<MessageCircleIconComponent, never>;
|
|
1760
2812
|
static ɵcmp: i0.ɵɵComponentDeclaration<MessageCircleIconComponent, "ea-icon-message-circle", never, {}, {}, never, never, true, never>;
|
|
1761
2813
|
}
|
|
1762
2814
|
|
|
1763
|
-
declare class MessageSquareIconComponent {
|
|
2815
|
+
declare class MessageSquareIconComponent extends IconComponentBase {
|
|
2816
|
+
static readonly slug = "message-square";
|
|
2817
|
+
static readonly category: IconCategory;
|
|
2818
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1764
2819
|
static ɵfac: i0.ɵɵFactoryDeclaration<MessageSquareIconComponent, never>;
|
|
1765
2820
|
static ɵcmp: i0.ɵɵComponentDeclaration<MessageSquareIconComponent, "ea-icon-message-square", never, {}, {}, never, never, true, never>;
|
|
1766
2821
|
}
|
|
1767
2822
|
|
|
1768
|
-
declare class MicIconComponent {
|
|
2823
|
+
declare class MicIconComponent extends IconComponentBase {
|
|
2824
|
+
static readonly slug = "mic";
|
|
2825
|
+
static readonly category: IconCategory;
|
|
2826
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1769
2827
|
static ɵfac: i0.ɵɵFactoryDeclaration<MicIconComponent, never>;
|
|
1770
2828
|
static ɵcmp: i0.ɵɵComponentDeclaration<MicIconComponent, "ea-icon-mic", never, {}, {}, never, never, true, never>;
|
|
1771
2829
|
}
|
|
1772
2830
|
|
|
1773
|
-
declare class MicOffIconComponent {
|
|
2831
|
+
declare class MicOffIconComponent extends IconComponentBase {
|
|
2832
|
+
static readonly slug = "mic-off";
|
|
2833
|
+
static readonly category: IconCategory;
|
|
2834
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1774
2835
|
static ɵfac: i0.ɵɵFactoryDeclaration<MicOffIconComponent, never>;
|
|
1775
2836
|
static ɵcmp: i0.ɵɵComponentDeclaration<MicOffIconComponent, "ea-icon-mic-off", never, {}, {}, never, never, true, never>;
|
|
1776
2837
|
}
|
|
1777
2838
|
|
|
1778
|
-
declare class MicrosoftIconComponent {
|
|
2839
|
+
declare class MicrosoftIconComponent extends IconComponentBase {
|
|
2840
|
+
static readonly slug = "microsoft";
|
|
2841
|
+
static readonly category: IconCategory;
|
|
2842
|
+
static readonly isBrand = true;
|
|
2843
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1779
2844
|
static ɵfac: i0.ɵɵFactoryDeclaration<MicrosoftIconComponent, never>;
|
|
1780
2845
|
static ɵcmp: i0.ɵɵComponentDeclaration<MicrosoftIconComponent, "ea-icon-microsoft", never, {}, {}, never, never, true, never>;
|
|
1781
2846
|
}
|
|
1782
2847
|
|
|
1783
|
-
declare class MinimizeIconComponent {
|
|
2848
|
+
declare class MinimizeIconComponent extends IconComponentBase {
|
|
2849
|
+
static readonly slug = "minimize";
|
|
2850
|
+
static readonly category: IconCategory;
|
|
2851
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1784
2852
|
static ɵfac: i0.ɵɵFactoryDeclaration<MinimizeIconComponent, never>;
|
|
1785
2853
|
static ɵcmp: i0.ɵɵComponentDeclaration<MinimizeIconComponent, "ea-icon-minimize", never, {}, {}, never, never, true, never>;
|
|
1786
2854
|
}
|
|
1787
2855
|
|
|
1788
|
-
declare class Minimize2IconComponent {
|
|
2856
|
+
declare class Minimize2IconComponent extends IconComponentBase {
|
|
2857
|
+
static readonly slug = "minimize-2";
|
|
2858
|
+
static readonly category: IconCategory;
|
|
2859
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1789
2860
|
static ɵfac: i0.ɵɵFactoryDeclaration<Minimize2IconComponent, never>;
|
|
1790
2861
|
static ɵcmp: i0.ɵɵComponentDeclaration<Minimize2IconComponent, "ea-icon-minimize-2", never, {}, {}, never, never, true, never>;
|
|
1791
2862
|
}
|
|
1792
2863
|
|
|
1793
|
-
declare class MinusIconComponent {
|
|
2864
|
+
declare class MinusIconComponent extends IconComponentBase {
|
|
2865
|
+
static readonly slug = "minus";
|
|
2866
|
+
static readonly category: IconCategory;
|
|
2867
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1794
2868
|
static ɵfac: i0.ɵɵFactoryDeclaration<MinusIconComponent, never>;
|
|
1795
2869
|
static ɵcmp: i0.ɵɵComponentDeclaration<MinusIconComponent, "ea-icon-minus", never, {}, {}, never, never, true, never>;
|
|
1796
2870
|
}
|
|
1797
2871
|
|
|
1798
|
-
declare class MinusCircleIconComponent {
|
|
2872
|
+
declare class MinusCircleIconComponent extends IconComponentBase {
|
|
2873
|
+
static readonly slug = "minus-circle";
|
|
2874
|
+
static readonly category: IconCategory;
|
|
2875
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1799
2876
|
static ɵfac: i0.ɵɵFactoryDeclaration<MinusCircleIconComponent, never>;
|
|
1800
2877
|
static ɵcmp: i0.ɵɵComponentDeclaration<MinusCircleIconComponent, "ea-icon-minus-circle", never, {}, {}, never, never, true, never>;
|
|
1801
2878
|
}
|
|
1802
2879
|
|
|
1803
|
-
declare class MinusSquareIconComponent {
|
|
2880
|
+
declare class MinusSquareIconComponent extends IconComponentBase {
|
|
2881
|
+
static readonly slug = "minus-square";
|
|
2882
|
+
static readonly category: IconCategory;
|
|
2883
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1804
2884
|
static ɵfac: i0.ɵɵFactoryDeclaration<MinusSquareIconComponent, never>;
|
|
1805
2885
|
static ɵcmp: i0.ɵɵComponentDeclaration<MinusSquareIconComponent, "ea-icon-minus-square", never, {}, {}, never, never, true, never>;
|
|
1806
2886
|
}
|
|
1807
2887
|
|
|
1808
|
-
declare class MongodbIconComponent {
|
|
2888
|
+
declare class MongodbIconComponent extends IconComponentBase {
|
|
2889
|
+
static readonly slug = "mongodb";
|
|
2890
|
+
static readonly category: IconCategory;
|
|
2891
|
+
static readonly isBrand = true;
|
|
2892
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1809
2893
|
readonly brand: i0.InputSignal<boolean>;
|
|
1810
2894
|
static ɵfac: i0.ɵɵFactoryDeclaration<MongodbIconComponent, never>;
|
|
1811
2895
|
static ɵcmp: i0.ɵɵComponentDeclaration<MongodbIconComponent, "ea-icon-mongodb", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1812
2896
|
}
|
|
1813
2897
|
|
|
1814
|
-
declare class MonitorIconComponent {
|
|
2898
|
+
declare class MonitorIconComponent extends IconComponentBase {
|
|
2899
|
+
static readonly slug = "monitor";
|
|
2900
|
+
static readonly category: IconCategory;
|
|
2901
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1815
2902
|
static ɵfac: i0.ɵɵFactoryDeclaration<MonitorIconComponent, never>;
|
|
1816
2903
|
static ɵcmp: i0.ɵɵComponentDeclaration<MonitorIconComponent, "ea-icon-monitor", never, {}, {}, never, never, true, never>;
|
|
1817
2904
|
}
|
|
1818
2905
|
|
|
1819
|
-
declare class MoonIconComponent {
|
|
2906
|
+
declare class MoonIconComponent extends IconComponentBase {
|
|
2907
|
+
static readonly slug = "moon";
|
|
2908
|
+
static readonly category: IconCategory;
|
|
2909
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1820
2910
|
static ɵfac: i0.ɵɵFactoryDeclaration<MoonIconComponent, never>;
|
|
1821
2911
|
static ɵcmp: i0.ɵɵComponentDeclaration<MoonIconComponent, "ea-icon-moon", never, {}, {}, never, never, true, never>;
|
|
1822
2912
|
}
|
|
1823
2913
|
|
|
1824
|
-
declare class MoreHorizontalIconComponent {
|
|
2914
|
+
declare class MoreHorizontalIconComponent extends IconComponentBase {
|
|
2915
|
+
static readonly slug = "more-horizontal";
|
|
2916
|
+
static readonly category: IconCategory;
|
|
2917
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1825
2918
|
static ɵfac: i0.ɵɵFactoryDeclaration<MoreHorizontalIconComponent, never>;
|
|
1826
2919
|
static ɵcmp: i0.ɵɵComponentDeclaration<MoreHorizontalIconComponent, "ea-icon-more-horizontal", never, {}, {}, never, never, true, never>;
|
|
1827
2920
|
}
|
|
1828
2921
|
|
|
1829
|
-
declare class MoreVerticalIconComponent {
|
|
2922
|
+
declare class MoreVerticalIconComponent extends IconComponentBase {
|
|
2923
|
+
static readonly slug = "more-vertical";
|
|
2924
|
+
static readonly category: IconCategory;
|
|
2925
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1830
2926
|
static ɵfac: i0.ɵɵFactoryDeclaration<MoreVerticalIconComponent, never>;
|
|
1831
2927
|
static ɵcmp: i0.ɵɵComponentDeclaration<MoreVerticalIconComponent, "ea-icon-more-vertical", never, {}, {}, never, never, true, never>;
|
|
1832
2928
|
}
|
|
1833
2929
|
|
|
1834
|
-
declare class MousePointerIconComponent {
|
|
2930
|
+
declare class MousePointerIconComponent extends IconComponentBase {
|
|
2931
|
+
static readonly slug = "mouse-pointer";
|
|
2932
|
+
static readonly category: IconCategory;
|
|
2933
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1835
2934
|
static ɵfac: i0.ɵɵFactoryDeclaration<MousePointerIconComponent, never>;
|
|
1836
2935
|
static ɵcmp: i0.ɵɵComponentDeclaration<MousePointerIconComponent, "ea-icon-mouse-pointer", never, {}, {}, never, never, true, never>;
|
|
1837
2936
|
}
|
|
1838
2937
|
|
|
1839
|
-
declare class MoveIconComponent {
|
|
2938
|
+
declare class MoveIconComponent extends IconComponentBase {
|
|
2939
|
+
static readonly slug = "move";
|
|
2940
|
+
static readonly category: IconCategory;
|
|
2941
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1840
2942
|
static ɵfac: i0.ɵɵFactoryDeclaration<MoveIconComponent, never>;
|
|
1841
2943
|
static ɵcmp: i0.ɵɵComponentDeclaration<MoveIconComponent, "ea-icon-move", never, {}, {}, never, never, true, never>;
|
|
1842
2944
|
}
|
|
1843
2945
|
|
|
1844
|
-
declare class MusicIconComponent {
|
|
2946
|
+
declare class MusicIconComponent extends IconComponentBase {
|
|
2947
|
+
static readonly slug = "music";
|
|
2948
|
+
static readonly category: IconCategory;
|
|
2949
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1845
2950
|
static ɵfac: i0.ɵɵFactoryDeclaration<MusicIconComponent, never>;
|
|
1846
2951
|
static ɵcmp: i0.ɵɵComponentDeclaration<MusicIconComponent, "ea-icon-music", never, {}, {}, never, never, true, never>;
|
|
1847
2952
|
}
|
|
1848
2953
|
|
|
1849
|
-
declare class NavigationIconComponent {
|
|
2954
|
+
declare class NavigationIconComponent extends IconComponentBase {
|
|
2955
|
+
static readonly slug = "navigation";
|
|
2956
|
+
static readonly category: IconCategory;
|
|
2957
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1850
2958
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationIconComponent, never>;
|
|
1851
2959
|
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationIconComponent, "ea-icon-navigation", never, {}, {}, never, never, true, never>;
|
|
1852
2960
|
}
|
|
1853
2961
|
|
|
1854
|
-
declare class Navigation2IconComponent {
|
|
2962
|
+
declare class Navigation2IconComponent extends IconComponentBase {
|
|
2963
|
+
static readonly slug = "navigation-2";
|
|
2964
|
+
static readonly category: IconCategory;
|
|
2965
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1855
2966
|
static ɵfac: i0.ɵɵFactoryDeclaration<Navigation2IconComponent, never>;
|
|
1856
2967
|
static ɵcmp: i0.ɵɵComponentDeclaration<Navigation2IconComponent, "ea-icon-navigation-2", never, {}, {}, never, never, true, never>;
|
|
1857
2968
|
}
|
|
1858
2969
|
|
|
1859
|
-
declare class NetlifyIconComponent {
|
|
2970
|
+
declare class NetlifyIconComponent extends IconComponentBase {
|
|
2971
|
+
static readonly slug = "netlify";
|
|
2972
|
+
static readonly category: IconCategory;
|
|
2973
|
+
static readonly isBrand = true;
|
|
2974
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1860
2975
|
static ɵfac: i0.ɵɵFactoryDeclaration<NetlifyIconComponent, never>;
|
|
1861
2976
|
static ɵcmp: i0.ɵɵComponentDeclaration<NetlifyIconComponent, "ea-icon-netlify", never, {}, {}, never, never, true, never>;
|
|
1862
2977
|
}
|
|
1863
2978
|
|
|
1864
|
-
declare class NotionIconComponent {
|
|
2979
|
+
declare class NotionIconComponent extends IconComponentBase {
|
|
2980
|
+
static readonly slug = "notion";
|
|
2981
|
+
static readonly category: IconCategory;
|
|
2982
|
+
static readonly isBrand = true;
|
|
2983
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1865
2984
|
readonly brand: i0.InputSignal<boolean>;
|
|
1866
2985
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotionIconComponent, never>;
|
|
1867
2986
|
static ɵcmp: i0.ɵɵComponentDeclaration<NotionIconComponent, "ea-icon-notion", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1868
2987
|
}
|
|
1869
2988
|
|
|
1870
|
-
declare class NpmIconComponent {
|
|
2989
|
+
declare class NpmIconComponent extends IconComponentBase {
|
|
2990
|
+
static readonly slug = "npm";
|
|
2991
|
+
static readonly category: IconCategory;
|
|
2992
|
+
static readonly isBrand = true;
|
|
2993
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1871
2994
|
readonly brand: i0.InputSignal<boolean>;
|
|
1872
2995
|
static ɵfac: i0.ɵɵFactoryDeclaration<NpmIconComponent, never>;
|
|
1873
2996
|
static ɵcmp: i0.ɵɵComponentDeclaration<NpmIconComponent, "ea-icon-npm", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1874
2997
|
}
|
|
1875
2998
|
|
|
1876
|
-
declare class OctagonIconComponent {
|
|
2999
|
+
declare class OctagonIconComponent extends IconComponentBase {
|
|
3000
|
+
static readonly slug = "octagon";
|
|
3001
|
+
static readonly category: IconCategory;
|
|
3002
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1877
3003
|
static ɵfac: i0.ɵɵFactoryDeclaration<OctagonIconComponent, never>;
|
|
1878
3004
|
static ɵcmp: i0.ɵɵComponentDeclaration<OctagonIconComponent, "ea-icon-octagon", never, {}, {}, never, never, true, never>;
|
|
1879
3005
|
}
|
|
1880
3006
|
|
|
1881
|
-
declare class PackageIconComponent {
|
|
3007
|
+
declare class PackageIconComponent extends IconComponentBase {
|
|
3008
|
+
static readonly slug = "package";
|
|
3009
|
+
static readonly category: IconCategory;
|
|
3010
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1882
3011
|
static ɵfac: i0.ɵɵFactoryDeclaration<PackageIconComponent, never>;
|
|
1883
3012
|
static ɵcmp: i0.ɵɵComponentDeclaration<PackageIconComponent, "ea-icon-package", never, {}, {}, never, never, true, never>;
|
|
1884
3013
|
}
|
|
1885
3014
|
|
|
1886
|
-
declare class PaperclipIconComponent {
|
|
3015
|
+
declare class PaperclipIconComponent extends IconComponentBase {
|
|
3016
|
+
static readonly slug = "paperclip";
|
|
3017
|
+
static readonly category: IconCategory;
|
|
3018
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1887
3019
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaperclipIconComponent, never>;
|
|
1888
3020
|
static ɵcmp: i0.ɵɵComponentDeclaration<PaperclipIconComponent, "ea-icon-paperclip", never, {}, {}, never, never, true, never>;
|
|
1889
3021
|
}
|
|
1890
3022
|
|
|
1891
|
-
declare class PauseIconComponent {
|
|
3023
|
+
declare class PauseIconComponent extends IconComponentBase {
|
|
3024
|
+
static readonly slug = "pause";
|
|
3025
|
+
static readonly category: IconCategory;
|
|
3026
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1892
3027
|
static ɵfac: i0.ɵɵFactoryDeclaration<PauseIconComponent, never>;
|
|
1893
3028
|
static ɵcmp: i0.ɵɵComponentDeclaration<PauseIconComponent, "ea-icon-pause", never, {}, {}, never, never, true, never>;
|
|
1894
3029
|
}
|
|
1895
3030
|
|
|
1896
|
-
declare class PauseCircleIconComponent {
|
|
3031
|
+
declare class PauseCircleIconComponent extends IconComponentBase {
|
|
3032
|
+
static readonly slug = "pause-circle";
|
|
3033
|
+
static readonly category: IconCategory;
|
|
3034
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1897
3035
|
static ɵfac: i0.ɵɵFactoryDeclaration<PauseCircleIconComponent, never>;
|
|
1898
3036
|
static ɵcmp: i0.ɵɵComponentDeclaration<PauseCircleIconComponent, "ea-icon-pause-circle", never, {}, {}, never, never, true, never>;
|
|
1899
3037
|
}
|
|
1900
3038
|
|
|
1901
|
-
declare class PaypalIconComponent {
|
|
3039
|
+
declare class PaypalIconComponent extends IconComponentBase {
|
|
3040
|
+
static readonly slug = "paypal";
|
|
3041
|
+
static readonly category: IconCategory;
|
|
3042
|
+
static readonly isBrand = true;
|
|
3043
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1902
3044
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaypalIconComponent, never>;
|
|
1903
3045
|
static ɵcmp: i0.ɵɵComponentDeclaration<PaypalIconComponent, "ea-icon-paypal", never, {}, {}, never, never, true, never>;
|
|
1904
3046
|
}
|
|
1905
3047
|
|
|
1906
|
-
declare class
|
|
3048
|
+
declare class PenToolIconComponent extends IconComponentBase {
|
|
3049
|
+
static readonly slug = "pen-tool";
|
|
3050
|
+
static readonly category: IconCategory;
|
|
3051
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3052
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PenToolIconComponent, never>;
|
|
3053
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PenToolIconComponent, "ea-icon-pen-tool", never, {}, {}, never, never, true, never>;
|
|
3054
|
+
}
|
|
3055
|
+
|
|
3056
|
+
/**
|
|
3057
|
+
* @deprecated Will be removed in v2.0.0. The `pencil` icon depicts the same
|
|
3058
|
+
* mark as Feather's canonical `edit-2` (with a marginally different cap
|
|
3059
|
+
* curvature) and is being retired as redundant. Switch to `<ea-icon-edit-2>`
|
|
3060
|
+
* / `Edit2IconComponent`.
|
|
3061
|
+
*/
|
|
3062
|
+
declare class PencilIconComponent extends IconComponentBase {
|
|
3063
|
+
static readonly slug = "pencil";
|
|
3064
|
+
static readonly category: IconCategory;
|
|
3065
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1907
3066
|
static ɵfac: i0.ɵɵFactoryDeclaration<PencilIconComponent, never>;
|
|
1908
3067
|
static ɵcmp: i0.ɵɵComponentDeclaration<PencilIconComponent, "ea-icon-pencil", never, {}, {}, never, never, true, never>;
|
|
1909
3068
|
}
|
|
1910
3069
|
|
|
1911
|
-
declare class
|
|
3070
|
+
declare class PentagonIconComponent extends IconComponentBase {
|
|
3071
|
+
static readonly slug = "pentagon";
|
|
3072
|
+
static readonly category: IconCategory;
|
|
3073
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3074
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PentagonIconComponent, never>;
|
|
3075
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PentagonIconComponent, "ea-icon-pentagon", never, {}, {}, never, never, true, never>;
|
|
3076
|
+
}
|
|
3077
|
+
|
|
3078
|
+
declare class PercentIconComponent extends IconComponentBase {
|
|
3079
|
+
static readonly slug = "percent";
|
|
3080
|
+
static readonly category: IconCategory;
|
|
3081
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1912
3082
|
static ɵfac: i0.ɵɵFactoryDeclaration<PercentIconComponent, never>;
|
|
1913
3083
|
static ɵcmp: i0.ɵɵComponentDeclaration<PercentIconComponent, "ea-icon-percent", never, {}, {}, never, never, true, never>;
|
|
1914
3084
|
}
|
|
1915
3085
|
|
|
1916
|
-
declare class PhoneIconComponent {
|
|
3086
|
+
declare class PhoneIconComponent extends IconComponentBase {
|
|
3087
|
+
static readonly slug = "phone";
|
|
3088
|
+
static readonly category: IconCategory;
|
|
3089
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1917
3090
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneIconComponent, never>;
|
|
1918
3091
|
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneIconComponent, "ea-icon-phone", never, {}, {}, never, never, true, never>;
|
|
1919
3092
|
}
|
|
1920
3093
|
|
|
1921
|
-
declare class
|
|
3094
|
+
declare class PhoneCallIconComponent extends IconComponentBase {
|
|
3095
|
+
static readonly slug = "phone-call";
|
|
3096
|
+
static readonly category: IconCategory;
|
|
3097
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3098
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneCallIconComponent, never>;
|
|
3099
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneCallIconComponent, "ea-icon-phone-call", never, {}, {}, never, never, true, never>;
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
declare class PhoneForwardedIconComponent extends IconComponentBase {
|
|
3103
|
+
static readonly slug = "phone-forwarded";
|
|
3104
|
+
static readonly category: IconCategory;
|
|
3105
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3106
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneForwardedIconComponent, never>;
|
|
3107
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneForwardedIconComponent, "ea-icon-phone-forwarded", never, {}, {}, never, never, true, never>;
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3110
|
+
declare class PhoneIncomingIconComponent extends IconComponentBase {
|
|
3111
|
+
static readonly slug = "phone-incoming";
|
|
3112
|
+
static readonly category: IconCategory;
|
|
3113
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneIncomingIconComponent, never>;
|
|
3115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneIncomingIconComponent, "ea-icon-phone-incoming", never, {}, {}, never, never, true, never>;
|
|
3116
|
+
}
|
|
3117
|
+
|
|
3118
|
+
declare class PhoneMissedIconComponent extends IconComponentBase {
|
|
3119
|
+
static readonly slug = "phone-missed";
|
|
3120
|
+
static readonly category: IconCategory;
|
|
3121
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3122
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneMissedIconComponent, never>;
|
|
3123
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneMissedIconComponent, "ea-icon-phone-missed", never, {}, {}, never, never, true, never>;
|
|
3124
|
+
}
|
|
3125
|
+
|
|
3126
|
+
declare class PhoneOffIconComponent extends IconComponentBase {
|
|
3127
|
+
static readonly slug = "phone-off";
|
|
3128
|
+
static readonly category: IconCategory;
|
|
3129
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3130
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneOffIconComponent, never>;
|
|
3131
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneOffIconComponent, "ea-icon-phone-off", never, {}, {}, never, never, true, never>;
|
|
3132
|
+
}
|
|
3133
|
+
|
|
3134
|
+
declare class PhoneOutgoingIconComponent extends IconComponentBase {
|
|
3135
|
+
static readonly slug = "phone-outgoing";
|
|
3136
|
+
static readonly category: IconCategory;
|
|
3137
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3138
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneOutgoingIconComponent, never>;
|
|
3139
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneOutgoingIconComponent, "ea-icon-phone-outgoing", never, {}, {}, never, never, true, never>;
|
|
3140
|
+
}
|
|
3141
|
+
|
|
3142
|
+
declare class PieChartIconComponent extends IconComponentBase {
|
|
3143
|
+
static readonly slug = "pie-chart";
|
|
3144
|
+
static readonly category: IconCategory;
|
|
3145
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1922
3146
|
static ɵfac: i0.ɵɵFactoryDeclaration<PieChartIconComponent, never>;
|
|
1923
3147
|
static ɵcmp: i0.ɵɵComponentDeclaration<PieChartIconComponent, "ea-icon-pie-chart", never, {}, {}, never, never, true, never>;
|
|
1924
3148
|
}
|
|
1925
3149
|
|
|
1926
|
-
declare class PlayIconComponent {
|
|
3150
|
+
declare class PlayIconComponent extends IconComponentBase {
|
|
3151
|
+
static readonly slug = "play";
|
|
3152
|
+
static readonly category: IconCategory;
|
|
3153
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1927
3154
|
static ɵfac: i0.ɵɵFactoryDeclaration<PlayIconComponent, never>;
|
|
1928
3155
|
static ɵcmp: i0.ɵɵComponentDeclaration<PlayIconComponent, "ea-icon-play", never, {}, {}, never, never, true, never>;
|
|
1929
3156
|
}
|
|
1930
3157
|
|
|
1931
|
-
declare class PlayCircleIconComponent {
|
|
3158
|
+
declare class PlayCircleIconComponent extends IconComponentBase {
|
|
3159
|
+
static readonly slug = "play-circle";
|
|
3160
|
+
static readonly category: IconCategory;
|
|
3161
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1932
3162
|
static ɵfac: i0.ɵɵFactoryDeclaration<PlayCircleIconComponent, never>;
|
|
1933
3163
|
static ɵcmp: i0.ɵɵComponentDeclaration<PlayCircleIconComponent, "ea-icon-play-circle", never, {}, {}, never, never, true, never>;
|
|
1934
3164
|
}
|
|
1935
3165
|
|
|
1936
|
-
declare class PlusIconComponent {
|
|
3166
|
+
declare class PlusIconComponent extends IconComponentBase {
|
|
3167
|
+
static readonly slug = "plus";
|
|
3168
|
+
static readonly category: IconCategory;
|
|
3169
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1937
3170
|
static ɵfac: i0.ɵɵFactoryDeclaration<PlusIconComponent, never>;
|
|
1938
3171
|
static ɵcmp: i0.ɵɵComponentDeclaration<PlusIconComponent, "ea-icon-plus", never, {}, {}, never, never, true, never>;
|
|
1939
3172
|
}
|
|
1940
3173
|
|
|
1941
|
-
declare class PlusCircleIconComponent {
|
|
3174
|
+
declare class PlusCircleIconComponent extends IconComponentBase {
|
|
3175
|
+
static readonly slug = "plus-circle";
|
|
3176
|
+
static readonly category: IconCategory;
|
|
3177
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1942
3178
|
static ɵfac: i0.ɵɵFactoryDeclaration<PlusCircleIconComponent, never>;
|
|
1943
3179
|
static ɵcmp: i0.ɵɵComponentDeclaration<PlusCircleIconComponent, "ea-icon-plus-circle", never, {}, {}, never, never, true, never>;
|
|
1944
3180
|
}
|
|
1945
3181
|
|
|
1946
|
-
declare class PlusSquareIconComponent {
|
|
3182
|
+
declare class PlusSquareIconComponent extends IconComponentBase {
|
|
3183
|
+
static readonly slug = "plus-square";
|
|
3184
|
+
static readonly category: IconCategory;
|
|
3185
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1947
3186
|
static ɵfac: i0.ɵɵFactoryDeclaration<PlusSquareIconComponent, never>;
|
|
1948
3187
|
static ɵcmp: i0.ɵɵComponentDeclaration<PlusSquareIconComponent, "ea-icon-plus-square", never, {}, {}, never, never, true, never>;
|
|
1949
3188
|
}
|
|
1950
3189
|
|
|
1951
|
-
declare class PocketIconComponent {
|
|
3190
|
+
declare class PocketIconComponent extends IconComponentBase {
|
|
3191
|
+
static readonly slug = "pocket";
|
|
3192
|
+
static readonly category: IconCategory;
|
|
3193
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1952
3194
|
static ɵfac: i0.ɵɵFactoryDeclaration<PocketIconComponent, never>;
|
|
1953
3195
|
static ɵcmp: i0.ɵɵComponentDeclaration<PocketIconComponent, "ea-icon-pocket", never, {}, {}, never, never, true, never>;
|
|
1954
3196
|
}
|
|
1955
3197
|
|
|
1956
|
-
declare class PowerIconComponent {
|
|
3198
|
+
declare class PowerIconComponent extends IconComponentBase {
|
|
3199
|
+
static readonly slug = "power";
|
|
3200
|
+
static readonly category: IconCategory;
|
|
3201
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1957
3202
|
static ɵfac: i0.ɵɵFactoryDeclaration<PowerIconComponent, never>;
|
|
1958
3203
|
static ɵcmp: i0.ɵɵComponentDeclaration<PowerIconComponent, "ea-icon-power", never, {}, {}, never, never, true, never>;
|
|
1959
3204
|
}
|
|
1960
3205
|
|
|
1961
|
-
declare class PrinterIconComponent {
|
|
3206
|
+
declare class PrinterIconComponent extends IconComponentBase {
|
|
3207
|
+
static readonly slug = "printer";
|
|
3208
|
+
static readonly category: IconCategory;
|
|
3209
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1962
3210
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrinterIconComponent, never>;
|
|
1963
3211
|
static ɵcmp: i0.ɵɵComponentDeclaration<PrinterIconComponent, "ea-icon-printer", never, {}, {}, never, never, true, never>;
|
|
1964
3212
|
}
|
|
1965
3213
|
|
|
1966
|
-
declare class RadioIconComponent {
|
|
3214
|
+
declare class RadioIconComponent extends IconComponentBase {
|
|
3215
|
+
static readonly slug = "radio";
|
|
3216
|
+
static readonly category: IconCategory;
|
|
3217
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1967
3218
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioIconComponent, never>;
|
|
1968
3219
|
static ɵcmp: i0.ɵɵComponentDeclaration<RadioIconComponent, "ea-icon-radio", never, {}, {}, never, never, true, never>;
|
|
1969
3220
|
}
|
|
1970
3221
|
|
|
1971
|
-
declare class
|
|
3222
|
+
declare class RectangleHorizontalIconComponent extends IconComponentBase {
|
|
3223
|
+
static readonly slug = "rectangle-horizontal";
|
|
3224
|
+
static readonly category: IconCategory;
|
|
3225
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3226
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RectangleHorizontalIconComponent, never>;
|
|
3227
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RectangleHorizontalIconComponent, "ea-icon-rectangle-horizontal", never, {}, {}, never, never, true, never>;
|
|
3228
|
+
}
|
|
3229
|
+
|
|
3230
|
+
declare class RectangleVerticalIconComponent extends IconComponentBase {
|
|
3231
|
+
static readonly slug = "rectangle-vertical";
|
|
3232
|
+
static readonly category: IconCategory;
|
|
3233
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3234
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RectangleVerticalIconComponent, never>;
|
|
3235
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RectangleVerticalIconComponent, "ea-icon-rectangle-vertical", never, {}, {}, never, never, true, never>;
|
|
3236
|
+
}
|
|
3237
|
+
|
|
3238
|
+
declare class RedditIconComponent extends IconComponentBase {
|
|
3239
|
+
static readonly slug = "reddit";
|
|
3240
|
+
static readonly category: IconCategory;
|
|
3241
|
+
static readonly isBrand = true;
|
|
3242
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1972
3243
|
readonly brand: i0.InputSignal<boolean>;
|
|
1973
3244
|
static ɵfac: i0.ɵɵFactoryDeclaration<RedditIconComponent, never>;
|
|
1974
3245
|
static ɵcmp: i0.ɵɵComponentDeclaration<RedditIconComponent, "ea-icon-reddit", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1975
3246
|
}
|
|
1976
3247
|
|
|
1977
|
-
declare class
|
|
3248
|
+
declare class RefreshCcwIconComponent extends IconComponentBase {
|
|
3249
|
+
static readonly slug = "refresh-ccw";
|
|
3250
|
+
static readonly category: IconCategory;
|
|
3251
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3252
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RefreshCcwIconComponent, never>;
|
|
3253
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RefreshCcwIconComponent, "ea-icon-refresh-ccw", never, {}, {}, never, never, true, never>;
|
|
3254
|
+
}
|
|
3255
|
+
|
|
3256
|
+
declare class RefreshCwIconComponent extends IconComponentBase {
|
|
3257
|
+
static readonly slug = "refresh-cw";
|
|
3258
|
+
static readonly category: IconCategory;
|
|
3259
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1978
3260
|
static ɵfac: i0.ɵɵFactoryDeclaration<RefreshCwIconComponent, never>;
|
|
1979
3261
|
static ɵcmp: i0.ɵɵComponentDeclaration<RefreshCwIconComponent, "ea-icon-refresh-cw", never, {}, {}, never, never, true, never>;
|
|
1980
3262
|
}
|
|
1981
3263
|
|
|
1982
|
-
declare class RepeatIconComponent {
|
|
3264
|
+
declare class RepeatIconComponent extends IconComponentBase {
|
|
3265
|
+
static readonly slug = "repeat";
|
|
3266
|
+
static readonly category: IconCategory;
|
|
3267
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1983
3268
|
static ɵfac: i0.ɵɵFactoryDeclaration<RepeatIconComponent, never>;
|
|
1984
3269
|
static ɵcmp: i0.ɵɵComponentDeclaration<RepeatIconComponent, "ea-icon-repeat", never, {}, {}, never, never, true, never>;
|
|
1985
3270
|
}
|
|
1986
3271
|
|
|
1987
|
-
declare class RewindIconComponent {
|
|
3272
|
+
declare class RewindIconComponent extends IconComponentBase {
|
|
3273
|
+
static readonly slug = "rewind";
|
|
3274
|
+
static readonly category: IconCategory;
|
|
3275
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1988
3276
|
static ɵfac: i0.ɵɵFactoryDeclaration<RewindIconComponent, never>;
|
|
1989
3277
|
static ɵcmp: i0.ɵɵComponentDeclaration<RewindIconComponent, "ea-icon-rewind", never, {}, {}, never, never, true, never>;
|
|
1990
3278
|
}
|
|
1991
3279
|
|
|
1992
|
-
declare class RotateCcwIconComponent {
|
|
3280
|
+
declare class RotateCcwIconComponent extends IconComponentBase {
|
|
3281
|
+
static readonly slug = "rotate-ccw";
|
|
3282
|
+
static readonly category: IconCategory;
|
|
3283
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1993
3284
|
static ɵfac: i0.ɵɵFactoryDeclaration<RotateCcwIconComponent, never>;
|
|
1994
3285
|
static ɵcmp: i0.ɵɵComponentDeclaration<RotateCcwIconComponent, "ea-icon-rotate-ccw", never, {}, {}, never, never, true, never>;
|
|
1995
3286
|
}
|
|
1996
3287
|
|
|
1997
|
-
declare class RotateCwIconComponent {
|
|
3288
|
+
declare class RotateCwIconComponent extends IconComponentBase {
|
|
3289
|
+
static readonly slug = "rotate-cw";
|
|
3290
|
+
static readonly category: IconCategory;
|
|
3291
|
+
static readonly tags: ReadonlyArray<string>;
|
|
1998
3292
|
static ɵfac: i0.ɵɵFactoryDeclaration<RotateCwIconComponent, never>;
|
|
1999
3293
|
static ɵcmp: i0.ɵɵComponentDeclaration<RotateCwIconComponent, "ea-icon-rotate-cw", never, {}, {}, never, never, true, never>;
|
|
2000
3294
|
}
|
|
2001
3295
|
|
|
2002
|
-
declare class RssIconComponent {
|
|
3296
|
+
declare class RssIconComponent extends IconComponentBase {
|
|
3297
|
+
static readonly slug = "rss";
|
|
3298
|
+
static readonly category: IconCategory;
|
|
3299
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2003
3300
|
static ɵfac: i0.ɵɵFactoryDeclaration<RssIconComponent, never>;
|
|
2004
3301
|
static ɵcmp: i0.ɵɵComponentDeclaration<RssIconComponent, "ea-icon-rss", never, {}, {}, never, never, true, never>;
|
|
2005
3302
|
}
|
|
2006
3303
|
|
|
2007
|
-
declare class SaveIconComponent {
|
|
3304
|
+
declare class SaveIconComponent extends IconComponentBase {
|
|
3305
|
+
static readonly slug = "save";
|
|
3306
|
+
static readonly category: IconCategory;
|
|
3307
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2008
3308
|
static ɵfac: i0.ɵɵFactoryDeclaration<SaveIconComponent, never>;
|
|
2009
3309
|
static ɵcmp: i0.ɵɵComponentDeclaration<SaveIconComponent, "ea-icon-save", never, {}, {}, never, never, true, never>;
|
|
2010
3310
|
}
|
|
2011
3311
|
|
|
2012
|
-
declare class ScissorsIconComponent {
|
|
3312
|
+
declare class ScissorsIconComponent extends IconComponentBase {
|
|
3313
|
+
static readonly slug = "scissors";
|
|
3314
|
+
static readonly category: IconCategory;
|
|
3315
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2013
3316
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScissorsIconComponent, never>;
|
|
2014
3317
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScissorsIconComponent, "ea-icon-scissors", never, {}, {}, never, never, true, never>;
|
|
2015
3318
|
}
|
|
2016
3319
|
|
|
2017
|
-
declare class SearchIconComponent {
|
|
3320
|
+
declare class SearchIconComponent extends IconComponentBase {
|
|
3321
|
+
static readonly slug = "search";
|
|
3322
|
+
static readonly category: IconCategory;
|
|
3323
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2018
3324
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchIconComponent, never>;
|
|
2019
3325
|
static ɵcmp: i0.ɵɵComponentDeclaration<SearchIconComponent, "ea-icon-search", never, {}, {}, never, never, true, never>;
|
|
2020
3326
|
}
|
|
2021
3327
|
|
|
2022
|
-
declare class SendIconComponent {
|
|
3328
|
+
declare class SendIconComponent extends IconComponentBase {
|
|
3329
|
+
static readonly slug = "send";
|
|
3330
|
+
static readonly category: IconCategory;
|
|
3331
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2023
3332
|
static ɵfac: i0.ɵɵFactoryDeclaration<SendIconComponent, never>;
|
|
2024
3333
|
static ɵcmp: i0.ɵɵComponentDeclaration<SendIconComponent, "ea-icon-send", never, {}, {}, never, never, true, never>;
|
|
2025
3334
|
}
|
|
2026
3335
|
|
|
2027
|
-
declare class ServerIconComponent {
|
|
3336
|
+
declare class ServerIconComponent extends IconComponentBase {
|
|
3337
|
+
static readonly slug = "server";
|
|
3338
|
+
static readonly category: IconCategory;
|
|
3339
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2028
3340
|
static ɵfac: i0.ɵɵFactoryDeclaration<ServerIconComponent, never>;
|
|
2029
3341
|
static ɵcmp: i0.ɵɵComponentDeclaration<ServerIconComponent, "ea-icon-server", never, {}, {}, never, never, true, never>;
|
|
2030
3342
|
}
|
|
2031
3343
|
|
|
2032
|
-
declare class SettingsIconComponent {
|
|
3344
|
+
declare class SettingsIconComponent extends IconComponentBase {
|
|
3345
|
+
static readonly slug = "settings";
|
|
3346
|
+
static readonly category: IconCategory;
|
|
3347
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2033
3348
|
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsIconComponent, never>;
|
|
2034
3349
|
static ɵcmp: i0.ɵɵComponentDeclaration<SettingsIconComponent, "ea-icon-settings", never, {}, {}, never, never, true, never>;
|
|
2035
3350
|
}
|
|
2036
3351
|
|
|
2037
|
-
declare class ShareIconComponent {
|
|
3352
|
+
declare class ShareIconComponent extends IconComponentBase {
|
|
3353
|
+
static readonly slug = "share";
|
|
3354
|
+
static readonly category: IconCategory;
|
|
3355
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2038
3356
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShareIconComponent, never>;
|
|
2039
3357
|
static ɵcmp: i0.ɵɵComponentDeclaration<ShareIconComponent, "ea-icon-share", never, {}, {}, never, never, true, never>;
|
|
2040
3358
|
}
|
|
2041
3359
|
|
|
2042
|
-
declare class Share2IconComponent {
|
|
3360
|
+
declare class Share2IconComponent extends IconComponentBase {
|
|
3361
|
+
static readonly slug = "share-2";
|
|
3362
|
+
static readonly category: IconCategory;
|
|
3363
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2043
3364
|
static ɵfac: i0.ɵɵFactoryDeclaration<Share2IconComponent, never>;
|
|
2044
3365
|
static ɵcmp: i0.ɵɵComponentDeclaration<Share2IconComponent, "ea-icon-share-2", never, {}, {}, never, never, true, never>;
|
|
2045
3366
|
}
|
|
2046
3367
|
|
|
2047
|
-
declare class ShieldIconComponent {
|
|
3368
|
+
declare class ShieldIconComponent extends IconComponentBase {
|
|
3369
|
+
static readonly slug = "shield";
|
|
3370
|
+
static readonly category: IconCategory;
|
|
3371
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2048
3372
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShieldIconComponent, never>;
|
|
2049
3373
|
static ɵcmp: i0.ɵɵComponentDeclaration<ShieldIconComponent, "ea-icon-shield", never, {}, {}, never, never, true, never>;
|
|
2050
3374
|
}
|
|
2051
3375
|
|
|
2052
|
-
declare class ShieldOffIconComponent {
|
|
3376
|
+
declare class ShieldOffIconComponent extends IconComponentBase {
|
|
3377
|
+
static readonly slug = "shield-off";
|
|
3378
|
+
static readonly category: IconCategory;
|
|
3379
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2053
3380
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShieldOffIconComponent, never>;
|
|
2054
3381
|
static ɵcmp: i0.ɵɵComponentDeclaration<ShieldOffIconComponent, "ea-icon-shield-off", never, {}, {}, never, never, true, never>;
|
|
2055
3382
|
}
|
|
2056
3383
|
|
|
2057
|
-
declare class ShoppingBagIconComponent {
|
|
3384
|
+
declare class ShoppingBagIconComponent extends IconComponentBase {
|
|
3385
|
+
static readonly slug = "shopping-bag";
|
|
3386
|
+
static readonly category: IconCategory;
|
|
3387
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2058
3388
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShoppingBagIconComponent, never>;
|
|
2059
3389
|
static ɵcmp: i0.ɵɵComponentDeclaration<ShoppingBagIconComponent, "ea-icon-shopping-bag", never, {}, {}, never, never, true, never>;
|
|
2060
3390
|
}
|
|
2061
3391
|
|
|
2062
|
-
declare class ShoppingCartIconComponent {
|
|
3392
|
+
declare class ShoppingCartIconComponent extends IconComponentBase {
|
|
3393
|
+
static readonly slug = "shopping-cart";
|
|
3394
|
+
static readonly category: IconCategory;
|
|
3395
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2063
3396
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShoppingCartIconComponent, never>;
|
|
2064
3397
|
static ɵcmp: i0.ɵɵComponentDeclaration<ShoppingCartIconComponent, "ea-icon-shopping-cart", never, {}, {}, never, never, true, never>;
|
|
2065
3398
|
}
|
|
2066
3399
|
|
|
2067
|
-
declare class ShuffleIconComponent {
|
|
3400
|
+
declare class ShuffleIconComponent extends IconComponentBase {
|
|
3401
|
+
static readonly slug = "shuffle";
|
|
3402
|
+
static readonly category: IconCategory;
|
|
3403
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2068
3404
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShuffleIconComponent, never>;
|
|
2069
3405
|
static ɵcmp: i0.ɵɵComponentDeclaration<ShuffleIconComponent, "ea-icon-shuffle", never, {}, {}, never, never, true, never>;
|
|
2070
3406
|
}
|
|
2071
3407
|
|
|
2072
|
-
declare class SidebarIconComponent {
|
|
3408
|
+
declare class SidebarIconComponent extends IconComponentBase {
|
|
3409
|
+
static readonly slug = "sidebar";
|
|
3410
|
+
static readonly category: IconCategory;
|
|
3411
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2073
3412
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarIconComponent, never>;
|
|
2074
3413
|
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarIconComponent, "ea-icon-sidebar", never, {}, {}, never, never, true, never>;
|
|
2075
3414
|
}
|
|
2076
3415
|
|
|
2077
|
-
declare class SkipBackIconComponent {
|
|
3416
|
+
declare class SkipBackIconComponent extends IconComponentBase {
|
|
3417
|
+
static readonly slug = "skip-back";
|
|
3418
|
+
static readonly category: IconCategory;
|
|
3419
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2078
3420
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkipBackIconComponent, never>;
|
|
2079
3421
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkipBackIconComponent, "ea-icon-skip-back", never, {}, {}, never, never, true, never>;
|
|
2080
3422
|
}
|
|
2081
3423
|
|
|
2082
|
-
declare class SkipForwardIconComponent {
|
|
3424
|
+
declare class SkipForwardIconComponent extends IconComponentBase {
|
|
3425
|
+
static readonly slug = "skip-forward";
|
|
3426
|
+
static readonly category: IconCategory;
|
|
3427
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2083
3428
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkipForwardIconComponent, never>;
|
|
2084
3429
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkipForwardIconComponent, "ea-icon-skip-forward", never, {}, {}, never, never, true, never>;
|
|
2085
3430
|
}
|
|
2086
3431
|
|
|
2087
|
-
|
|
3432
|
+
/**
|
|
3433
|
+
* Slack icon (Feather outline).
|
|
3434
|
+
*
|
|
3435
|
+
* @remarks
|
|
3436
|
+
* Prior to v1.4 this slug rendered Eagami's brand-filled Slack mark. v1.4
|
|
3437
|
+
* aligns the canonical slug with Feather Icons, so `SlackIconComponent` now
|
|
3438
|
+
* renders Feather's outline. The brand-filled mark that previously shipped
|
|
3439
|
+
* here has moved to `<ea-icon-slack-2>` / `Slack2IconComponent`.
|
|
3440
|
+
*/
|
|
3441
|
+
declare class SlackIconComponent extends IconComponentBase {
|
|
3442
|
+
static readonly slug = "slack";
|
|
3443
|
+
static readonly category: IconCategory;
|
|
3444
|
+
static readonly isBrand = true;
|
|
3445
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2088
3446
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlackIconComponent, never>;
|
|
2089
3447
|
static ɵcmp: i0.ɵɵComponentDeclaration<SlackIconComponent, "ea-icon-slack", never, {}, {}, never, never, true, never>;
|
|
2090
3448
|
}
|
|
2091
3449
|
|
|
2092
|
-
|
|
3450
|
+
/**
|
|
3451
|
+
* Slack brand mark (Eagami brand-filled).
|
|
3452
|
+
*
|
|
3453
|
+
* @remarks
|
|
3454
|
+
* Up to v1.3 this design shipped as `SlackIconComponent` at slug
|
|
3455
|
+
* `ea-icon-slack`. v1.4 reassigns the canonical slug to Feather's outline
|
|
3456
|
+
* and moves the brand-filled mark here. Set the `brand` input to render in
|
|
3457
|
+
* the official brand colour.
|
|
3458
|
+
*/
|
|
3459
|
+
declare class Slack2IconComponent extends IconComponentBase {
|
|
3460
|
+
static readonly slug = "slack-2";
|
|
3461
|
+
static readonly category: IconCategory;
|
|
3462
|
+
static readonly isBrand = true;
|
|
3463
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3464
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Slack2IconComponent, never>;
|
|
3465
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Slack2IconComponent, "ea-icon-slack-2", never, {}, {}, never, never, true, never>;
|
|
3466
|
+
}
|
|
3467
|
+
|
|
3468
|
+
declare class SlashIconComponent extends IconComponentBase {
|
|
3469
|
+
static readonly slug = "slash";
|
|
3470
|
+
static readonly category: IconCategory;
|
|
3471
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2093
3472
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlashIconComponent, never>;
|
|
2094
3473
|
static ɵcmp: i0.ɵɵComponentDeclaration<SlashIconComponent, "ea-icon-slash", never, {}, {}, never, never, true, never>;
|
|
2095
3474
|
}
|
|
2096
3475
|
|
|
2097
|
-
declare class SlidersIconComponent {
|
|
3476
|
+
declare class SlidersIconComponent extends IconComponentBase {
|
|
3477
|
+
static readonly slug = "sliders";
|
|
3478
|
+
static readonly category: IconCategory;
|
|
3479
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2098
3480
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlidersIconComponent, never>;
|
|
2099
3481
|
static ɵcmp: i0.ɵɵComponentDeclaration<SlidersIconComponent, "ea-icon-sliders", never, {}, {}, never, never, true, never>;
|
|
2100
3482
|
}
|
|
2101
3483
|
|
|
2102
|
-
declare class SmartphoneIconComponent {
|
|
3484
|
+
declare class SmartphoneIconComponent extends IconComponentBase {
|
|
3485
|
+
static readonly slug = "smartphone";
|
|
3486
|
+
static readonly category: IconCategory;
|
|
3487
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2103
3488
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartphoneIconComponent, never>;
|
|
2104
3489
|
static ɵcmp: i0.ɵɵComponentDeclaration<SmartphoneIconComponent, "ea-icon-smartphone", never, {}, {}, never, never, true, never>;
|
|
2105
3490
|
}
|
|
2106
3491
|
|
|
2107
|
-
declare class SmileIconComponent {
|
|
3492
|
+
declare class SmileIconComponent extends IconComponentBase {
|
|
3493
|
+
static readonly slug = "smile";
|
|
3494
|
+
static readonly category: IconCategory;
|
|
3495
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2108
3496
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmileIconComponent, never>;
|
|
2109
3497
|
static ɵcmp: i0.ɵɵComponentDeclaration<SmileIconComponent, "ea-icon-smile", never, {}, {}, never, never, true, never>;
|
|
2110
3498
|
}
|
|
2111
3499
|
|
|
2112
|
-
declare class
|
|
3500
|
+
declare class SoccerBallIconComponent extends IconComponentBase {
|
|
3501
|
+
static readonly slug = "soccer-ball";
|
|
3502
|
+
static readonly category: IconCategory;
|
|
3503
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3504
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SoccerBallIconComponent, never>;
|
|
3505
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SoccerBallIconComponent, "ea-icon-soccer-ball", never, {}, {}, never, never, true, never>;
|
|
3506
|
+
}
|
|
3507
|
+
|
|
3508
|
+
declare class SpeakerIconComponent extends IconComponentBase {
|
|
3509
|
+
static readonly slug = "speaker";
|
|
3510
|
+
static readonly category: IconCategory;
|
|
3511
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2113
3512
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpeakerIconComponent, never>;
|
|
2114
3513
|
static ɵcmp: i0.ɵɵComponentDeclaration<SpeakerIconComponent, "ea-icon-speaker", never, {}, {}, never, never, true, never>;
|
|
2115
3514
|
}
|
|
2116
3515
|
|
|
2117
|
-
declare class SpotifyIconComponent {
|
|
3516
|
+
declare class SpotifyIconComponent extends IconComponentBase {
|
|
3517
|
+
static readonly slug = "spotify";
|
|
3518
|
+
static readonly category: IconCategory;
|
|
3519
|
+
static readonly isBrand = true;
|
|
3520
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2118
3521
|
readonly brand: i0.InputSignal<boolean>;
|
|
2119
3522
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpotifyIconComponent, never>;
|
|
2120
3523
|
static ɵcmp: i0.ɵɵComponentDeclaration<SpotifyIconComponent, "ea-icon-spotify", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2121
3524
|
}
|
|
2122
3525
|
|
|
2123
|
-
declare class SquareIconComponent {
|
|
3526
|
+
declare class SquareIconComponent extends IconComponentBase {
|
|
3527
|
+
static readonly slug = "square";
|
|
3528
|
+
static readonly category: IconCategory;
|
|
3529
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2124
3530
|
static ɵfac: i0.ɵɵFactoryDeclaration<SquareIconComponent, never>;
|
|
2125
3531
|
static ɵcmp: i0.ɵɵComponentDeclaration<SquareIconComponent, "ea-icon-square", never, {}, {}, never, never, true, never>;
|
|
2126
3532
|
}
|
|
2127
3533
|
|
|
2128
|
-
declare class StarIconComponent {
|
|
3534
|
+
declare class StarIconComponent extends IconComponentBase {
|
|
3535
|
+
static readonly slug = "star";
|
|
3536
|
+
static readonly category: IconCategory;
|
|
3537
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2129
3538
|
static ɵfac: i0.ɵɵFactoryDeclaration<StarIconComponent, never>;
|
|
2130
3539
|
static ɵcmp: i0.ɵɵComponentDeclaration<StarIconComponent, "ea-icon-star", never, {}, {}, never, never, true, never>;
|
|
2131
3540
|
}
|
|
2132
3541
|
|
|
2133
|
-
declare class StopCircleIconComponent {
|
|
3542
|
+
declare class StopCircleIconComponent extends IconComponentBase {
|
|
3543
|
+
static readonly slug = "stop-circle";
|
|
3544
|
+
static readonly category: IconCategory;
|
|
3545
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2134
3546
|
static ɵfac: i0.ɵɵFactoryDeclaration<StopCircleIconComponent, never>;
|
|
2135
3547
|
static ɵcmp: i0.ɵɵComponentDeclaration<StopCircleIconComponent, "ea-icon-stop-circle", never, {}, {}, never, never, true, never>;
|
|
2136
3548
|
}
|
|
2137
3549
|
|
|
2138
|
-
declare class StripeIconComponent {
|
|
3550
|
+
declare class StripeIconComponent extends IconComponentBase {
|
|
3551
|
+
static readonly slug = "stripe";
|
|
3552
|
+
static readonly category: IconCategory;
|
|
3553
|
+
static readonly isBrand = true;
|
|
3554
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2139
3555
|
readonly brand: i0.InputSignal<boolean>;
|
|
2140
3556
|
static ɵfac: i0.ɵɵFactoryDeclaration<StripeIconComponent, never>;
|
|
2141
3557
|
static ɵcmp: i0.ɵɵComponentDeclaration<StripeIconComponent, "ea-icon-stripe", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2142
3558
|
}
|
|
2143
3559
|
|
|
2144
|
-
declare class SunIconComponent {
|
|
3560
|
+
declare class SunIconComponent extends IconComponentBase {
|
|
3561
|
+
static readonly slug = "sun";
|
|
3562
|
+
static readonly category: IconCategory;
|
|
3563
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2145
3564
|
static ɵfac: i0.ɵɵFactoryDeclaration<SunIconComponent, never>;
|
|
2146
3565
|
static ɵcmp: i0.ɵɵComponentDeclaration<SunIconComponent, "ea-icon-sun", never, {}, {}, never, never, true, never>;
|
|
2147
3566
|
}
|
|
2148
3567
|
|
|
2149
|
-
declare class SunriseIconComponent {
|
|
3568
|
+
declare class SunriseIconComponent extends IconComponentBase {
|
|
3569
|
+
static readonly slug = "sunrise";
|
|
3570
|
+
static readonly category: IconCategory;
|
|
3571
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2150
3572
|
static ɵfac: i0.ɵɵFactoryDeclaration<SunriseIconComponent, never>;
|
|
2151
3573
|
static ɵcmp: i0.ɵɵComponentDeclaration<SunriseIconComponent, "ea-icon-sunrise", never, {}, {}, never, never, true, never>;
|
|
2152
3574
|
}
|
|
2153
3575
|
|
|
2154
|
-
declare class SunsetIconComponent {
|
|
3576
|
+
declare class SunsetIconComponent extends IconComponentBase {
|
|
3577
|
+
static readonly slug = "sunset";
|
|
3578
|
+
static readonly category: IconCategory;
|
|
3579
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2155
3580
|
static ɵfac: i0.ɵɵFactoryDeclaration<SunsetIconComponent, never>;
|
|
2156
3581
|
static ɵcmp: i0.ɵɵComponentDeclaration<SunsetIconComponent, "ea-icon-sunset", never, {}, {}, never, never, true, never>;
|
|
2157
3582
|
}
|
|
2158
3583
|
|
|
2159
|
-
declare class
|
|
3584
|
+
declare class TableIconComponent extends IconComponentBase {
|
|
3585
|
+
static readonly slug = "table";
|
|
3586
|
+
static readonly category: IconCategory;
|
|
3587
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3588
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableIconComponent, never>;
|
|
3589
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableIconComponent, "ea-icon-table", never, {}, {}, never, never, true, never>;
|
|
3590
|
+
}
|
|
3591
|
+
|
|
3592
|
+
declare class TabletIconComponent extends IconComponentBase {
|
|
3593
|
+
static readonly slug = "tablet";
|
|
3594
|
+
static readonly category: IconCategory;
|
|
3595
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2160
3596
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabletIconComponent, never>;
|
|
2161
3597
|
static ɵcmp: i0.ɵɵComponentDeclaration<TabletIconComponent, "ea-icon-tablet", never, {}, {}, never, never, true, never>;
|
|
2162
3598
|
}
|
|
2163
3599
|
|
|
2164
|
-
declare class TagIconComponent {
|
|
3600
|
+
declare class TagIconComponent extends IconComponentBase {
|
|
3601
|
+
static readonly slug = "tag";
|
|
3602
|
+
static readonly category: IconCategory;
|
|
3603
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2165
3604
|
static ɵfac: i0.ɵɵFactoryDeclaration<TagIconComponent, never>;
|
|
2166
3605
|
static ɵcmp: i0.ɵɵComponentDeclaration<TagIconComponent, "ea-icon-tag", never, {}, {}, never, never, true, never>;
|
|
2167
3606
|
}
|
|
2168
3607
|
|
|
2169
|
-
declare class TargetIconComponent {
|
|
3608
|
+
declare class TargetIconComponent extends IconComponentBase {
|
|
3609
|
+
static readonly slug = "target";
|
|
3610
|
+
static readonly category: IconCategory;
|
|
3611
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2170
3612
|
static ɵfac: i0.ɵɵFactoryDeclaration<TargetIconComponent, never>;
|
|
2171
3613
|
static ɵcmp: i0.ɵɵComponentDeclaration<TargetIconComponent, "ea-icon-target", never, {}, {}, never, never, true, never>;
|
|
2172
3614
|
}
|
|
2173
3615
|
|
|
2174
|
-
declare class TerminalIconComponent {
|
|
3616
|
+
declare class TerminalIconComponent extends IconComponentBase {
|
|
3617
|
+
static readonly slug = "terminal";
|
|
3618
|
+
static readonly category: IconCategory;
|
|
3619
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2175
3620
|
static ɵfac: i0.ɵɵFactoryDeclaration<TerminalIconComponent, never>;
|
|
2176
3621
|
static ɵcmp: i0.ɵɵComponentDeclaration<TerminalIconComponent, "ea-icon-terminal", never, {}, {}, never, never, true, never>;
|
|
2177
3622
|
}
|
|
2178
3623
|
|
|
2179
|
-
declare class ThermometerIconComponent {
|
|
3624
|
+
declare class ThermometerIconComponent extends IconComponentBase {
|
|
3625
|
+
static readonly slug = "thermometer";
|
|
3626
|
+
static readonly category: IconCategory;
|
|
3627
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2180
3628
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThermometerIconComponent, never>;
|
|
2181
3629
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThermometerIconComponent, "ea-icon-thermometer", never, {}, {}, never, never, true, never>;
|
|
2182
3630
|
}
|
|
2183
3631
|
|
|
2184
|
-
declare class ThumbsDownIconComponent {
|
|
3632
|
+
declare class ThumbsDownIconComponent extends IconComponentBase {
|
|
3633
|
+
static readonly slug = "thumbs-down";
|
|
3634
|
+
static readonly category: IconCategory;
|
|
3635
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2185
3636
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThumbsDownIconComponent, never>;
|
|
2186
3637
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThumbsDownIconComponent, "ea-icon-thumbs-down", never, {}, {}, never, never, true, never>;
|
|
2187
3638
|
}
|
|
2188
3639
|
|
|
2189
|
-
declare class ThumbsUpIconComponent {
|
|
3640
|
+
declare class ThumbsUpIconComponent extends IconComponentBase {
|
|
3641
|
+
static readonly slug = "thumbs-up";
|
|
3642
|
+
static readonly category: IconCategory;
|
|
3643
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2190
3644
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThumbsUpIconComponent, never>;
|
|
2191
3645
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThumbsUpIconComponent, "ea-icon-thumbs-up", never, {}, {}, never, never, true, never>;
|
|
2192
3646
|
}
|
|
2193
3647
|
|
|
2194
|
-
declare class ToggleLeftIconComponent {
|
|
3648
|
+
declare class ToggleLeftIconComponent extends IconComponentBase {
|
|
3649
|
+
static readonly slug = "toggle-left";
|
|
3650
|
+
static readonly category: IconCategory;
|
|
3651
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2195
3652
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleLeftIconComponent, never>;
|
|
2196
3653
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleLeftIconComponent, "ea-icon-toggle-left", never, {}, {}, never, never, true, never>;
|
|
2197
3654
|
}
|
|
2198
3655
|
|
|
2199
|
-
declare class ToggleRightIconComponent {
|
|
3656
|
+
declare class ToggleRightIconComponent extends IconComponentBase {
|
|
3657
|
+
static readonly slug = "toggle-right";
|
|
3658
|
+
static readonly category: IconCategory;
|
|
3659
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2200
3660
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleRightIconComponent, never>;
|
|
2201
3661
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleRightIconComponent, "ea-icon-toggle-right", never, {}, {}, never, never, true, never>;
|
|
2202
3662
|
}
|
|
2203
3663
|
|
|
2204
|
-
declare class ToolIconComponent {
|
|
3664
|
+
declare class ToolIconComponent extends IconComponentBase {
|
|
3665
|
+
static readonly slug = "tool";
|
|
3666
|
+
static readonly category: IconCategory;
|
|
3667
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2205
3668
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolIconComponent, never>;
|
|
2206
3669
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolIconComponent, "ea-icon-tool", never, {}, {}, never, never, true, never>;
|
|
2207
3670
|
}
|
|
2208
3671
|
|
|
2209
|
-
declare class TrashIconComponent {
|
|
3672
|
+
declare class TrashIconComponent extends IconComponentBase {
|
|
3673
|
+
static readonly slug = "trash";
|
|
3674
|
+
static readonly category: IconCategory;
|
|
3675
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2210
3676
|
static ɵfac: i0.ɵɵFactoryDeclaration<TrashIconComponent, never>;
|
|
2211
3677
|
static ɵcmp: i0.ɵɵComponentDeclaration<TrashIconComponent, "ea-icon-trash", never, {}, {}, never, never, true, never>;
|
|
2212
3678
|
}
|
|
2213
3679
|
|
|
2214
|
-
declare class Trash2IconComponent {
|
|
3680
|
+
declare class Trash2IconComponent extends IconComponentBase {
|
|
3681
|
+
static readonly slug = "trash-2";
|
|
3682
|
+
static readonly category: IconCategory;
|
|
3683
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2215
3684
|
static ɵfac: i0.ɵɵFactoryDeclaration<Trash2IconComponent, never>;
|
|
2216
3685
|
static ɵcmp: i0.ɵɵComponentDeclaration<Trash2IconComponent, "ea-icon-trash-2", never, {}, {}, never, never, true, never>;
|
|
2217
3686
|
}
|
|
2218
3687
|
|
|
2219
|
-
declare class
|
|
3688
|
+
declare class TrelloIconComponent extends IconComponentBase {
|
|
3689
|
+
static readonly slug = "trello";
|
|
3690
|
+
static readonly category: IconCategory;
|
|
3691
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3692
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TrelloIconComponent, never>;
|
|
3693
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TrelloIconComponent, "ea-icon-trello", never, {}, {}, never, never, true, never>;
|
|
3694
|
+
}
|
|
3695
|
+
|
|
3696
|
+
declare class TrendingDownIconComponent extends IconComponentBase {
|
|
3697
|
+
static readonly slug = "trending-down";
|
|
3698
|
+
static readonly category: IconCategory;
|
|
3699
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2220
3700
|
static ɵfac: i0.ɵɵFactoryDeclaration<TrendingDownIconComponent, never>;
|
|
2221
3701
|
static ɵcmp: i0.ɵɵComponentDeclaration<TrendingDownIconComponent, "ea-icon-trending-down", never, {}, {}, never, never, true, never>;
|
|
2222
3702
|
}
|
|
2223
3703
|
|
|
2224
|
-
declare class TrendingUpIconComponent {
|
|
3704
|
+
declare class TrendingUpIconComponent extends IconComponentBase {
|
|
3705
|
+
static readonly slug = "trending-up";
|
|
3706
|
+
static readonly category: IconCategory;
|
|
3707
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2225
3708
|
static ɵfac: i0.ɵɵFactoryDeclaration<TrendingUpIconComponent, never>;
|
|
2226
3709
|
static ɵcmp: i0.ɵɵComponentDeclaration<TrendingUpIconComponent, "ea-icon-trending-up", never, {}, {}, never, never, true, never>;
|
|
2227
3710
|
}
|
|
2228
3711
|
|
|
2229
|
-
declare class TriangleIconComponent {
|
|
3712
|
+
declare class TriangleIconComponent extends IconComponentBase {
|
|
3713
|
+
static readonly slug = "triangle";
|
|
3714
|
+
static readonly category: IconCategory;
|
|
3715
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2230
3716
|
static ɵfac: i0.ɵɵFactoryDeclaration<TriangleIconComponent, never>;
|
|
2231
3717
|
static ɵcmp: i0.ɵɵComponentDeclaration<TriangleIconComponent, "ea-icon-triangle", never, {}, {}, never, never, true, never>;
|
|
2232
3718
|
}
|
|
2233
3719
|
|
|
2234
|
-
declare class
|
|
3720
|
+
declare class TrophyIconComponent extends IconComponentBase {
|
|
3721
|
+
static readonly slug = "trophy";
|
|
3722
|
+
static readonly category: IconCategory;
|
|
3723
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3724
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TrophyIconComponent, never>;
|
|
3725
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TrophyIconComponent, "ea-icon-trophy", never, {}, {}, never, never, true, never>;
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
declare class TruckIconComponent extends IconComponentBase {
|
|
3729
|
+
static readonly slug = "truck";
|
|
3730
|
+
static readonly category: IconCategory;
|
|
3731
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2235
3732
|
static ɵfac: i0.ɵɵFactoryDeclaration<TruckIconComponent, never>;
|
|
2236
3733
|
static ɵcmp: i0.ɵɵComponentDeclaration<TruckIconComponent, "ea-icon-truck", never, {}, {}, never, never, true, never>;
|
|
2237
3734
|
}
|
|
2238
3735
|
|
|
2239
|
-
declare class TvIconComponent {
|
|
3736
|
+
declare class TvIconComponent extends IconComponentBase {
|
|
3737
|
+
static readonly slug = "tv";
|
|
3738
|
+
static readonly category: IconCategory;
|
|
3739
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2240
3740
|
static ɵfac: i0.ɵɵFactoryDeclaration<TvIconComponent, never>;
|
|
2241
3741
|
static ɵcmp: i0.ɵɵComponentDeclaration<TvIconComponent, "ea-icon-tv", never, {}, {}, never, never, true, never>;
|
|
2242
3742
|
}
|
|
2243
3743
|
|
|
2244
|
-
|
|
2245
|
-
|
|
3744
|
+
/**
|
|
3745
|
+
* Twitch icon (Feather outline).
|
|
3746
|
+
*
|
|
3747
|
+
* @remarks
|
|
3748
|
+
* Prior to v1.4 this slug rendered Eagami's brand-filled Twitch mark. v1.4
|
|
3749
|
+
* aligns the canonical slug with Feather Icons, so `TwitchIconComponent` now
|
|
3750
|
+
* renders Feather's outline. The brand-filled mark that previously shipped
|
|
3751
|
+
* here has moved to `<ea-icon-twitch-2>` / `Twitch2IconComponent`.
|
|
3752
|
+
*/
|
|
3753
|
+
declare class TwitchIconComponent extends IconComponentBase {
|
|
3754
|
+
static readonly slug = "twitch";
|
|
3755
|
+
static readonly category: IconCategory;
|
|
3756
|
+
static readonly isBrand = true;
|
|
3757
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2246
3758
|
static ɵfac: i0.ɵɵFactoryDeclaration<TwitchIconComponent, never>;
|
|
2247
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TwitchIconComponent, "ea-icon-twitch", never, {
|
|
3759
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TwitchIconComponent, "ea-icon-twitch", never, {}, {}, never, never, true, never>;
|
|
3760
|
+
}
|
|
3761
|
+
|
|
3762
|
+
/**
|
|
3763
|
+
* Twitch brand mark (Eagami brand-filled).
|
|
3764
|
+
*
|
|
3765
|
+
* @remarks
|
|
3766
|
+
* Up to v1.3 this design shipped as `TwitchIconComponent` at slug
|
|
3767
|
+
* `ea-icon-twitch`. v1.4 reassigns the canonical slug to Feather's outline
|
|
3768
|
+
* and moves the brand-filled mark here. Set the `brand` input to render in
|
|
3769
|
+
* the official brand colour.
|
|
3770
|
+
*/
|
|
3771
|
+
declare class Twitch2IconComponent extends IconComponentBase {
|
|
3772
|
+
static readonly slug = "twitch-2";
|
|
3773
|
+
static readonly category: IconCategory;
|
|
3774
|
+
static readonly isBrand = true;
|
|
3775
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3776
|
+
readonly brand: i0.InputSignal<boolean>;
|
|
3777
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Twitch2IconComponent, never>;
|
|
3778
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Twitch2IconComponent, "ea-icon-twitch-2", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3779
|
+
}
|
|
3780
|
+
|
|
3781
|
+
declare class TwitterIconComponent extends IconComponentBase {
|
|
3782
|
+
static readonly slug = "twitter";
|
|
3783
|
+
static readonly category: IconCategory;
|
|
3784
|
+
static readonly tags: ReadonlyArray<string>;
|
|
3785
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwitterIconComponent, never>;
|
|
3786
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TwitterIconComponent, "ea-icon-twitter", never, {}, {}, never, never, true, never>;
|
|
2248
3787
|
}
|
|
2249
3788
|
|
|
2250
|
-
declare class TypeIconComponent {
|
|
3789
|
+
declare class TypeIconComponent extends IconComponentBase {
|
|
3790
|
+
static readonly slug = "type";
|
|
3791
|
+
static readonly category: IconCategory;
|
|
3792
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2251
3793
|
static ɵfac: i0.ɵɵFactoryDeclaration<TypeIconComponent, never>;
|
|
2252
3794
|
static ɵcmp: i0.ɵɵComponentDeclaration<TypeIconComponent, "ea-icon-type", never, {}, {}, never, never, true, never>;
|
|
2253
3795
|
}
|
|
2254
3796
|
|
|
2255
|
-
declare class UmbrellaIconComponent {
|
|
3797
|
+
declare class UmbrellaIconComponent extends IconComponentBase {
|
|
3798
|
+
static readonly slug = "umbrella";
|
|
3799
|
+
static readonly category: IconCategory;
|
|
3800
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2256
3801
|
static ɵfac: i0.ɵɵFactoryDeclaration<UmbrellaIconComponent, never>;
|
|
2257
3802
|
static ɵcmp: i0.ɵɵComponentDeclaration<UmbrellaIconComponent, "ea-icon-umbrella", never, {}, {}, never, never, true, never>;
|
|
2258
3803
|
}
|
|
2259
3804
|
|
|
2260
|
-
declare class UnderlineIconComponent {
|
|
3805
|
+
declare class UnderlineIconComponent extends IconComponentBase {
|
|
3806
|
+
static readonly slug = "underline";
|
|
3807
|
+
static readonly category: IconCategory;
|
|
3808
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2261
3809
|
static ɵfac: i0.ɵɵFactoryDeclaration<UnderlineIconComponent, never>;
|
|
2262
3810
|
static ɵcmp: i0.ɵɵComponentDeclaration<UnderlineIconComponent, "ea-icon-underline", never, {}, {}, never, never, true, never>;
|
|
2263
3811
|
}
|
|
2264
3812
|
|
|
2265
|
-
declare class UnlockIconComponent {
|
|
3813
|
+
declare class UnlockIconComponent extends IconComponentBase {
|
|
3814
|
+
static readonly slug = "unlock";
|
|
3815
|
+
static readonly category: IconCategory;
|
|
3816
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2266
3817
|
static ɵfac: i0.ɵɵFactoryDeclaration<UnlockIconComponent, never>;
|
|
2267
3818
|
static ɵcmp: i0.ɵɵComponentDeclaration<UnlockIconComponent, "ea-icon-unlock", never, {}, {}, never, never, true, never>;
|
|
2268
3819
|
}
|
|
2269
3820
|
|
|
2270
|
-
declare class UploadIconComponent {
|
|
3821
|
+
declare class UploadIconComponent extends IconComponentBase {
|
|
3822
|
+
static readonly slug = "upload";
|
|
3823
|
+
static readonly category: IconCategory;
|
|
3824
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2271
3825
|
static ɵfac: i0.ɵɵFactoryDeclaration<UploadIconComponent, never>;
|
|
2272
3826
|
static ɵcmp: i0.ɵɵComponentDeclaration<UploadIconComponent, "ea-icon-upload", never, {}, {}, never, never, true, never>;
|
|
2273
3827
|
}
|
|
2274
3828
|
|
|
2275
|
-
declare class UploadCloudIconComponent {
|
|
3829
|
+
declare class UploadCloudIconComponent extends IconComponentBase {
|
|
3830
|
+
static readonly slug = "upload-cloud";
|
|
3831
|
+
static readonly category: IconCategory;
|
|
3832
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2276
3833
|
static ɵfac: i0.ɵɵFactoryDeclaration<UploadCloudIconComponent, never>;
|
|
2277
3834
|
static ɵcmp: i0.ɵɵComponentDeclaration<UploadCloudIconComponent, "ea-icon-upload-cloud", never, {}, {}, never, never, true, never>;
|
|
2278
3835
|
}
|
|
2279
3836
|
|
|
2280
|
-
declare class UserIconComponent {
|
|
3837
|
+
declare class UserIconComponent extends IconComponentBase {
|
|
3838
|
+
static readonly slug = "user";
|
|
3839
|
+
static readonly category: IconCategory;
|
|
3840
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2281
3841
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserIconComponent, never>;
|
|
2282
3842
|
static ɵcmp: i0.ɵɵComponentDeclaration<UserIconComponent, "ea-icon-user", never, {}, {}, never, never, true, never>;
|
|
2283
3843
|
}
|
|
2284
3844
|
|
|
2285
|
-
declare class UserCheckIconComponent {
|
|
3845
|
+
declare class UserCheckIconComponent extends IconComponentBase {
|
|
3846
|
+
static readonly slug = "user-check";
|
|
3847
|
+
static readonly category: IconCategory;
|
|
3848
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2286
3849
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserCheckIconComponent, never>;
|
|
2287
3850
|
static ɵcmp: i0.ɵɵComponentDeclaration<UserCheckIconComponent, "ea-icon-user-check", never, {}, {}, never, never, true, never>;
|
|
2288
3851
|
}
|
|
2289
3852
|
|
|
2290
|
-
declare class UserMinusIconComponent {
|
|
3853
|
+
declare class UserMinusIconComponent extends IconComponentBase {
|
|
3854
|
+
static readonly slug = "user-minus";
|
|
3855
|
+
static readonly category: IconCategory;
|
|
3856
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2291
3857
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserMinusIconComponent, never>;
|
|
2292
3858
|
static ɵcmp: i0.ɵɵComponentDeclaration<UserMinusIconComponent, "ea-icon-user-minus", never, {}, {}, never, never, true, never>;
|
|
2293
3859
|
}
|
|
2294
3860
|
|
|
2295
|
-
declare class UserPlusIconComponent {
|
|
3861
|
+
declare class UserPlusIconComponent extends IconComponentBase {
|
|
3862
|
+
static readonly slug = "user-plus";
|
|
3863
|
+
static readonly category: IconCategory;
|
|
3864
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2296
3865
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserPlusIconComponent, never>;
|
|
2297
3866
|
static ɵcmp: i0.ɵɵComponentDeclaration<UserPlusIconComponent, "ea-icon-user-plus", never, {}, {}, never, never, true, never>;
|
|
2298
3867
|
}
|
|
2299
3868
|
|
|
2300
|
-
declare class UserXIconComponent {
|
|
3869
|
+
declare class UserXIconComponent extends IconComponentBase {
|
|
3870
|
+
static readonly slug = "user-x";
|
|
3871
|
+
static readonly category: IconCategory;
|
|
3872
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2301
3873
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserXIconComponent, never>;
|
|
2302
3874
|
static ɵcmp: i0.ɵɵComponentDeclaration<UserXIconComponent, "ea-icon-user-x", never, {}, {}, never, never, true, never>;
|
|
2303
3875
|
}
|
|
2304
3876
|
|
|
2305
|
-
declare class UsersIconComponent {
|
|
3877
|
+
declare class UsersIconComponent extends IconComponentBase {
|
|
3878
|
+
static readonly slug = "users";
|
|
3879
|
+
static readonly category: IconCategory;
|
|
3880
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2306
3881
|
static ɵfac: i0.ɵɵFactoryDeclaration<UsersIconComponent, never>;
|
|
2307
3882
|
static ɵcmp: i0.ɵɵComponentDeclaration<UsersIconComponent, "ea-icon-users", never, {}, {}, never, never, true, never>;
|
|
2308
3883
|
}
|
|
2309
3884
|
|
|
2310
|
-
declare class VercelIconComponent {
|
|
3885
|
+
declare class VercelIconComponent extends IconComponentBase {
|
|
3886
|
+
static readonly slug = "vercel";
|
|
3887
|
+
static readonly category: IconCategory;
|
|
3888
|
+
static readonly isBrand = true;
|
|
3889
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2311
3890
|
readonly brand: i0.InputSignal<boolean>;
|
|
2312
3891
|
static ɵfac: i0.ɵɵFactoryDeclaration<VercelIconComponent, never>;
|
|
2313
3892
|
static ɵcmp: i0.ɵɵComponentDeclaration<VercelIconComponent, "ea-icon-vercel", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2314
3893
|
}
|
|
2315
3894
|
|
|
2316
|
-
declare class VideoIconComponent {
|
|
3895
|
+
declare class VideoIconComponent extends IconComponentBase {
|
|
3896
|
+
static readonly slug = "video";
|
|
3897
|
+
static readonly category: IconCategory;
|
|
3898
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2317
3899
|
static ɵfac: i0.ɵɵFactoryDeclaration<VideoIconComponent, never>;
|
|
2318
3900
|
static ɵcmp: i0.ɵɵComponentDeclaration<VideoIconComponent, "ea-icon-video", never, {}, {}, never, never, true, never>;
|
|
2319
3901
|
}
|
|
2320
3902
|
|
|
2321
|
-
declare class VideoOffIconComponent {
|
|
3903
|
+
declare class VideoOffIconComponent extends IconComponentBase {
|
|
3904
|
+
static readonly slug = "video-off";
|
|
3905
|
+
static readonly category: IconCategory;
|
|
3906
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2322
3907
|
static ɵfac: i0.ɵɵFactoryDeclaration<VideoOffIconComponent, never>;
|
|
2323
3908
|
static ɵcmp: i0.ɵɵComponentDeclaration<VideoOffIconComponent, "ea-icon-video-off", never, {}, {}, never, never, true, never>;
|
|
2324
3909
|
}
|
|
2325
3910
|
|
|
2326
|
-
declare class VoicemailIconComponent {
|
|
3911
|
+
declare class VoicemailIconComponent extends IconComponentBase {
|
|
3912
|
+
static readonly slug = "voicemail";
|
|
3913
|
+
static readonly category: IconCategory;
|
|
3914
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2327
3915
|
static ɵfac: i0.ɵɵFactoryDeclaration<VoicemailIconComponent, never>;
|
|
2328
3916
|
static ɵcmp: i0.ɵɵComponentDeclaration<VoicemailIconComponent, "ea-icon-voicemail", never, {}, {}, never, never, true, never>;
|
|
2329
3917
|
}
|
|
2330
3918
|
|
|
2331
|
-
declare class VolumeIconComponent {
|
|
3919
|
+
declare class VolumeIconComponent extends IconComponentBase {
|
|
3920
|
+
static readonly slug = "volume";
|
|
3921
|
+
static readonly category: IconCategory;
|
|
3922
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2332
3923
|
static ɵfac: i0.ɵɵFactoryDeclaration<VolumeIconComponent, never>;
|
|
2333
3924
|
static ɵcmp: i0.ɵɵComponentDeclaration<VolumeIconComponent, "ea-icon-volume", never, {}, {}, never, never, true, never>;
|
|
2334
3925
|
}
|
|
2335
3926
|
|
|
2336
|
-
declare class Volume1IconComponent {
|
|
3927
|
+
declare class Volume1IconComponent extends IconComponentBase {
|
|
3928
|
+
static readonly slug = "volume-1";
|
|
3929
|
+
static readonly category: IconCategory;
|
|
3930
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2337
3931
|
static ɵfac: i0.ɵɵFactoryDeclaration<Volume1IconComponent, never>;
|
|
2338
3932
|
static ɵcmp: i0.ɵɵComponentDeclaration<Volume1IconComponent, "ea-icon-volume-1", never, {}, {}, never, never, true, never>;
|
|
2339
3933
|
}
|
|
2340
3934
|
|
|
2341
|
-
declare class Volume2IconComponent {
|
|
3935
|
+
declare class Volume2IconComponent extends IconComponentBase {
|
|
3936
|
+
static readonly slug = "volume-2";
|
|
3937
|
+
static readonly category: IconCategory;
|
|
3938
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2342
3939
|
static ɵfac: i0.ɵɵFactoryDeclaration<Volume2IconComponent, never>;
|
|
2343
3940
|
static ɵcmp: i0.ɵɵComponentDeclaration<Volume2IconComponent, "ea-icon-volume-2", never, {}, {}, never, never, true, never>;
|
|
2344
3941
|
}
|
|
2345
3942
|
|
|
2346
|
-
declare class VolumeXIconComponent {
|
|
3943
|
+
declare class VolumeXIconComponent extends IconComponentBase {
|
|
3944
|
+
static readonly slug = "volume-x";
|
|
3945
|
+
static readonly category: IconCategory;
|
|
3946
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2347
3947
|
static ɵfac: i0.ɵɵFactoryDeclaration<VolumeXIconComponent, never>;
|
|
2348
3948
|
static ɵcmp: i0.ɵɵComponentDeclaration<VolumeXIconComponent, "ea-icon-volume-x", never, {}, {}, never, never, true, never>;
|
|
2349
3949
|
}
|
|
2350
3950
|
|
|
2351
|
-
declare class WatchIconComponent {
|
|
3951
|
+
declare class WatchIconComponent extends IconComponentBase {
|
|
3952
|
+
static readonly slug = "watch";
|
|
3953
|
+
static readonly category: IconCategory;
|
|
3954
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2352
3955
|
static ɵfac: i0.ɵɵFactoryDeclaration<WatchIconComponent, never>;
|
|
2353
3956
|
static ɵcmp: i0.ɵɵComponentDeclaration<WatchIconComponent, "ea-icon-watch", never, {}, {}, never, never, true, never>;
|
|
2354
3957
|
}
|
|
2355
3958
|
|
|
2356
|
-
declare class WifiIconComponent {
|
|
3959
|
+
declare class WifiIconComponent extends IconComponentBase {
|
|
3960
|
+
static readonly slug = "wifi";
|
|
3961
|
+
static readonly category: IconCategory;
|
|
3962
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2357
3963
|
static ɵfac: i0.ɵɵFactoryDeclaration<WifiIconComponent, never>;
|
|
2358
3964
|
static ɵcmp: i0.ɵɵComponentDeclaration<WifiIconComponent, "ea-icon-wifi", never, {}, {}, never, never, true, never>;
|
|
2359
3965
|
}
|
|
2360
3966
|
|
|
2361
|
-
declare class WifiOffIconComponent {
|
|
3967
|
+
declare class WifiOffIconComponent extends IconComponentBase {
|
|
3968
|
+
static readonly slug = "wifi-off";
|
|
3969
|
+
static readonly category: IconCategory;
|
|
3970
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2362
3971
|
static ɵfac: i0.ɵɵFactoryDeclaration<WifiOffIconComponent, never>;
|
|
2363
3972
|
static ɵcmp: i0.ɵɵComponentDeclaration<WifiOffIconComponent, "ea-icon-wifi-off", never, {}, {}, never, never, true, never>;
|
|
2364
3973
|
}
|
|
2365
3974
|
|
|
2366
|
-
declare class WindIconComponent {
|
|
3975
|
+
declare class WindIconComponent extends IconComponentBase {
|
|
3976
|
+
static readonly slug = "wind";
|
|
3977
|
+
static readonly category: IconCategory;
|
|
3978
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2367
3979
|
static ɵfac: i0.ɵɵFactoryDeclaration<WindIconComponent, never>;
|
|
2368
3980
|
static ɵcmp: i0.ɵɵComponentDeclaration<WindIconComponent, "ea-icon-wind", never, {}, {}, never, never, true, never>;
|
|
2369
3981
|
}
|
|
2370
3982
|
|
|
2371
|
-
declare class XIconComponent {
|
|
3983
|
+
declare class XIconComponent extends IconComponentBase {
|
|
3984
|
+
static readonly slug = "x";
|
|
3985
|
+
static readonly category: IconCategory;
|
|
3986
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2372
3987
|
static ɵfac: i0.ɵɵFactoryDeclaration<XIconComponent, never>;
|
|
2373
3988
|
static ɵcmp: i0.ɵɵComponentDeclaration<XIconComponent, "ea-icon-x", never, {}, {}, never, never, true, never>;
|
|
2374
3989
|
}
|
|
2375
3990
|
|
|
2376
|
-
declare class XCircleIconComponent {
|
|
3991
|
+
declare class XCircleIconComponent extends IconComponentBase {
|
|
3992
|
+
static readonly slug = "x-circle";
|
|
3993
|
+
static readonly category: IconCategory;
|
|
3994
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2377
3995
|
static ɵfac: i0.ɵɵFactoryDeclaration<XCircleIconComponent, never>;
|
|
2378
3996
|
static ɵcmp: i0.ɵɵComponentDeclaration<XCircleIconComponent, "ea-icon-x-circle", never, {}, {}, never, never, true, never>;
|
|
2379
3997
|
}
|
|
2380
3998
|
|
|
2381
|
-
declare class XOctagonIconComponent {
|
|
3999
|
+
declare class XOctagonIconComponent extends IconComponentBase {
|
|
4000
|
+
static readonly slug = "x-octagon";
|
|
4001
|
+
static readonly category: IconCategory;
|
|
4002
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2382
4003
|
static ɵfac: i0.ɵɵFactoryDeclaration<XOctagonIconComponent, never>;
|
|
2383
4004
|
static ɵcmp: i0.ɵɵComponentDeclaration<XOctagonIconComponent, "ea-icon-x-octagon", never, {}, {}, never, never, true, never>;
|
|
2384
4005
|
}
|
|
2385
4006
|
|
|
2386
|
-
declare class XSquareIconComponent {
|
|
4007
|
+
declare class XSquareIconComponent extends IconComponentBase {
|
|
4008
|
+
static readonly slug = "x-square";
|
|
4009
|
+
static readonly category: IconCategory;
|
|
4010
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2387
4011
|
static ɵfac: i0.ɵɵFactoryDeclaration<XSquareIconComponent, never>;
|
|
2388
4012
|
static ɵcmp: i0.ɵɵComponentDeclaration<XSquareIconComponent, "ea-icon-x-square", never, {}, {}, never, never, true, never>;
|
|
2389
4013
|
}
|
|
2390
4014
|
|
|
2391
|
-
declare class XTwitterIconComponent {
|
|
4015
|
+
declare class XTwitterIconComponent extends IconComponentBase {
|
|
4016
|
+
static readonly slug = "x-twitter";
|
|
4017
|
+
static readonly category: IconCategory;
|
|
4018
|
+
static readonly isBrand = true;
|
|
4019
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2392
4020
|
readonly brand: i0.InputSignal<boolean>;
|
|
2393
4021
|
static ɵfac: i0.ɵɵFactoryDeclaration<XTwitterIconComponent, never>;
|
|
2394
4022
|
static ɵcmp: i0.ɵɵComponentDeclaration<XTwitterIconComponent, "ea-icon-x-twitter", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2395
4023
|
}
|
|
2396
4024
|
|
|
2397
|
-
|
|
2398
|
-
|
|
4025
|
+
/**
|
|
4026
|
+
* YouTube icon (Feather outline).
|
|
4027
|
+
*
|
|
4028
|
+
* @remarks
|
|
4029
|
+
* Prior to v1.4 this slug rendered Eagami's brand-filled YouTube mark. v1.4
|
|
4030
|
+
* aligns the canonical slug with Feather Icons, so `YoutubeIconComponent` now
|
|
4031
|
+
* renders Feather's outline. The brand-filled mark that previously shipped
|
|
4032
|
+
* here has moved to `<ea-icon-youtube-2>` / `Youtube2IconComponent`.
|
|
4033
|
+
*/
|
|
4034
|
+
declare class YoutubeIconComponent extends IconComponentBase {
|
|
4035
|
+
static readonly slug = "youtube";
|
|
4036
|
+
static readonly category: IconCategory;
|
|
4037
|
+
static readonly isBrand = true;
|
|
4038
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2399
4039
|
static ɵfac: i0.ɵɵFactoryDeclaration<YoutubeIconComponent, never>;
|
|
2400
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<YoutubeIconComponent, "ea-icon-youtube", never, {
|
|
4040
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<YoutubeIconComponent, "ea-icon-youtube", never, {}, {}, never, never, true, never>;
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
/**
|
|
4044
|
+
* YouTube brand mark (Eagami brand-filled).
|
|
4045
|
+
*
|
|
4046
|
+
* @remarks
|
|
4047
|
+
* Up to v1.3 this design shipped as `YoutubeIconComponent` at slug
|
|
4048
|
+
* `ea-icon-youtube`. v1.4 reassigns the canonical slug to Feather's outline
|
|
4049
|
+
* and moves the brand-filled mark here. Set the `brand` input to render in
|
|
4050
|
+
* the official brand colour.
|
|
4051
|
+
*/
|
|
4052
|
+
declare class Youtube2IconComponent extends IconComponentBase {
|
|
4053
|
+
static readonly slug = "youtube-2";
|
|
4054
|
+
static readonly category: IconCategory;
|
|
4055
|
+
static readonly isBrand = true;
|
|
4056
|
+
static readonly tags: ReadonlyArray<string>;
|
|
4057
|
+
readonly brand: i0.InputSignal<boolean>;
|
|
4058
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Youtube2IconComponent, never>;
|
|
4059
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Youtube2IconComponent, "ea-icon-youtube-2", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2401
4060
|
}
|
|
2402
4061
|
|
|
2403
|
-
declare class ZapIconComponent {
|
|
4062
|
+
declare class ZapIconComponent extends IconComponentBase {
|
|
4063
|
+
static readonly slug = "zap";
|
|
4064
|
+
static readonly category: IconCategory;
|
|
4065
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2404
4066
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZapIconComponent, never>;
|
|
2405
4067
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZapIconComponent, "ea-icon-zap", never, {}, {}, never, never, true, never>;
|
|
2406
4068
|
}
|
|
2407
4069
|
|
|
2408
|
-
declare class ZapOffIconComponent {
|
|
4070
|
+
declare class ZapOffIconComponent extends IconComponentBase {
|
|
4071
|
+
static readonly slug = "zap-off";
|
|
4072
|
+
static readonly category: IconCategory;
|
|
4073
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2409
4074
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZapOffIconComponent, never>;
|
|
2410
4075
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZapOffIconComponent, "ea-icon-zap-off", never, {}, {}, never, never, true, never>;
|
|
2411
4076
|
}
|
|
2412
4077
|
|
|
2413
|
-
declare class ZoomInIconComponent {
|
|
4078
|
+
declare class ZoomInIconComponent extends IconComponentBase {
|
|
4079
|
+
static readonly slug = "zoom-in";
|
|
4080
|
+
static readonly category: IconCategory;
|
|
4081
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2414
4082
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZoomInIconComponent, never>;
|
|
2415
4083
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZoomInIconComponent, "ea-icon-zoom-in", never, {}, {}, never, never, true, never>;
|
|
2416
4084
|
}
|
|
2417
4085
|
|
|
2418
|
-
declare class ZoomOutIconComponent {
|
|
4086
|
+
declare class ZoomOutIconComponent extends IconComponentBase {
|
|
4087
|
+
static readonly slug = "zoom-out";
|
|
4088
|
+
static readonly category: IconCategory;
|
|
4089
|
+
static readonly tags: ReadonlyArray<string>;
|
|
2419
4090
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZoomOutIconComponent, never>;
|
|
2420
4091
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZoomOutIconComponent, "ea-icon-zoom-out", never, {}, {}, never, never, true, never>;
|
|
2421
4092
|
}
|
|
@@ -2430,8 +4101,9 @@ type InputType = 'text' | 'email' | 'password' | 'number' | 'search' | 'tel' | '
|
|
|
2430
4101
|
* with Angular forms via `ControlValueAccessor`. Prefix and suffix content
|
|
2431
4102
|
* can be projected via the `prefix` and `suffix` slots.
|
|
2432
4103
|
*/
|
|
2433
|
-
declare class InputComponent implements ControlValueAccessor
|
|
4104
|
+
declare class InputComponent implements ControlValueAccessor {
|
|
2434
4105
|
readonly inputEl: i0.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
4106
|
+
private readonly injector;
|
|
2435
4107
|
protected readonly i18n: EagamiI18nService;
|
|
2436
4108
|
readonly label: i0.InputSignal<string | undefined>;
|
|
2437
4109
|
readonly type: i0.InputSignal<InputType>;
|
|
@@ -2468,7 +4140,7 @@ declare class InputComponent implements ControlValueAccessor, AfterViewInit {
|
|
|
2468
4140
|
'ea-input-wrapper--disabled': boolean;
|
|
2469
4141
|
'ea-input-wrapper--readonly': boolean;
|
|
2470
4142
|
}>;
|
|
2471
|
-
|
|
4143
|
+
constructor();
|
|
2472
4144
|
writeValue(val: string): void;
|
|
2473
4145
|
registerOnChange(fn: (value: string) => void): void;
|
|
2474
4146
|
registerOnTouched(fn: () => void): void;
|
|
@@ -2524,6 +4196,16 @@ declare class MenuComponent {
|
|
|
2524
4196
|
*/
|
|
2525
4197
|
close(restoreFocus?: boolean): void;
|
|
2526
4198
|
private getEnabledItems;
|
|
4199
|
+
/**
|
|
4200
|
+
* `preventScroll: true` is critical here. The menu list is `position: fixed`
|
|
4201
|
+
* but its DOM ancestor is whatever element hosts the menu (often a sticky
|
|
4202
|
+
* header). When `.focus()` is called without `preventScroll`, Chromium uses
|
|
4203
|
+
* the focused element's DOM-tree position (inside the sticky ancestor) rather
|
|
4204
|
+
* than its rendered fixed position to decide whether to scroll — which on a
|
|
4205
|
+
* scrolled page nudges the document up by a few pixels per open, until the
|
|
4206
|
+
* trigger reaches the top edge. The same guard applies to keyboard navigation
|
|
4207
|
+
* and restoring focus on close.
|
|
4208
|
+
*/
|
|
2527
4209
|
private focusFirstItem;
|
|
2528
4210
|
onKeydown(event: KeyboardEvent): void;
|
|
2529
4211
|
onDocumentClick(event: Event): void;
|
|
@@ -3115,5 +4797,5 @@ declare class TooltipDirective implements OnDestroy {
|
|
|
3115
4797
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[eaTooltip]", never, { "eaTooltip": { "alias": "eaTooltip"; "required": true; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3116
4798
|
}
|
|
3117
4799
|
|
|
3118
|
-
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, AppleIconComponent, ArchiveIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftIconComponent, ArrowRightIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkIconComponent, BoxIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CardComponent, CheckCircleIconComponent, CheckIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsUpDownIconComponent, ChromeIconComponent, ClipboardIconComponent, ClockIconComponent, CloudIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, ColumnsIconComponent, CommandIconComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_MESSAGES, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FigmaIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FilmIconComponent, FilterIconComponent, FlagIconComponent, FolderIconComponent, FrownIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HomeIconComponent, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, ItalicIconComponent, KeyIconComponent, KubernetesIconComponent, LayersIconComponent, LayoutIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, LinkedinIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PencilIconComponent, PercentIconComponent, PhoneIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RedditIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, Trash2IconComponent, TrashIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TruckIconComponent, TvIconComponent, TwitchIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, el, en, esES, frFR, frenchSpacing, pl, provideEagamiUi };
|
|
3119
|
-
export type { AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DialogSize, DividerOrientation, DrawerPosition, DrawerSize, DropdownSize, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, InputSize, InputType, MenuItemVariant, MenuPlacement, PaginatorAlign, PaginatorState, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, Toast, ToastOptions, ToastVariant, TooltipPosition };
|
|
4800
|
+
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, AppleIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkIconComponent, BottleIconComponent, BoxIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, ColorPickerComponent, ColumnsIconComponent, CommandIconComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideCircleIconComponent, DivideIconComponent, DivideSquareIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DribbbleIconComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_MESSAGES, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, Figma2IconComponent, FigmaIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FilmIconComponent, FilterIconComponent, FlagIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KubernetesIconComponent, LampIconComponent, LayersIconComponent, LayoutIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PencilIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SoccerBallIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, Trash2IconComponent, TrashIconComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, el, en, esES, frFR, frenchSpacing, iconDisplayName, pl, provideEagamiUi };
|
|
4801
|
+
export type { AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, ColorPickerFormat, ColorPickerInputMode, ColorPickerSize, ColorPickerValue, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DialogSize, DividerOrientation, DrawerPosition, DrawerSize, DropdownSize, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, PaginatorAlign, PaginatorState, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, Toast, ToastOptions, ToastVariant, TooltipPosition };
|