@eagami/ui 5.8.6 → 5.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/eagami-ui.mjs +780 -114
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/_tooltip.scss +3 -0
- package/types/eagami-ui.d.ts +86 -11
package/fesm2022/eagami-ui.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, makeEnvironmentProviders, provideEnvironmentInitializer, signal, inject, effect, computed, Injectable, input, ChangeDetectionStrategy, Component, HostBinding, Directive, model, output, Injector, afterNextRender, DestroyRef, viewChild, ElementRef, HostListener, forwardRef, Renderer2, untracked, ViewEncapsulation, contentChild, viewChildren, PLATFORM_ID } from '@angular/core';
|
|
2
|
+
import { InjectionToken, makeEnvironmentProviders, provideEnvironmentInitializer, signal, inject, effect, computed, Injectable, input, ChangeDetectionStrategy, Component, HostBinding, Directive, model, output, Injector, afterNextRender, DestroyRef, viewChild, ElementRef, HostListener, forwardRef, Renderer2, ViewContainerRef, TemplateRef, untracked, ViewEncapsulation, contentChild, viewChildren, PLATFORM_ID } from '@angular/core';
|
|
3
3
|
import { NgClass, NgComponentOutlet, NgTemplateOutlet, isPlatformBrowser } from '@angular/common';
|
|
4
4
|
import { NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
5
5
|
|
|
@@ -5418,16 +5418,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImpo
|
|
|
5418
5418
|
/**
|
|
5419
5419
|
* Attaches a positioned tooltip to its host element. Shows on hover and
|
|
5420
5420
|
* focus, hides on leave/blur or Escape, and wires up `aria-describedby` so
|
|
5421
|
-
* the tooltip text is announced to assistive technology.
|
|
5421
|
+
* the tooltip text is announced to assistive technology. Accepts either a
|
|
5422
|
+
* plain string or a `TemplateRef` for styled multi-part content.
|
|
5422
5423
|
*/
|
|
5423
5424
|
class TooltipDirective {
|
|
5424
5425
|
el = inject(ElementRef);
|
|
5425
5426
|
renderer = inject(Renderer2);
|
|
5427
|
+
viewContainer = inject(ViewContainerRef);
|
|
5426
5428
|
eaTooltip = input.required(...(ngDevMode ? [{ debugName: "eaTooltip" }] : /* istanbul ignore next */ []));
|
|
5427
5429
|
tooltipPosition = input('top', ...(ngDevMode ? [{ debugName: "tooltipPosition" }] : /* istanbul ignore next */ []));
|
|
5428
5430
|
/** Max width in px; the text wraps at this width. Clamped to a 50px floor. */
|
|
5429
5431
|
maxWidth = input(200, ...(ngDevMode ? [{ debugName: "maxWidth" }] : /* istanbul ignore next */ []));
|
|
5430
5432
|
tooltipEl = null;
|
|
5433
|
+
templateView = null;
|
|
5431
5434
|
tooltipId = `ea-tooltip-${Math.random().toString(36).slice(2, 9)}`;
|
|
5432
5435
|
// Touch devices fire `mouseenter` on tap but never fire `mouseleave` until
|
|
5433
5436
|
// the user taps elsewhere, leaving hover-driven tooltips latched open. Track
|
|
@@ -5530,7 +5533,17 @@ class TooltipDirective {
|
|
|
5530
5533
|
this.renderer.addClass(this.tooltipEl, `ea-tooltip--${this.tooltipPosition()}`);
|
|
5531
5534
|
this.renderer.setAttribute(this.tooltipEl, 'role', 'tooltip');
|
|
5532
5535
|
this.renderer.setAttribute(this.tooltipEl, 'id', this.tooltipId);
|
|
5533
|
-
|
|
5536
|
+
const content = this.eaTooltip();
|
|
5537
|
+
if (content instanceof TemplateRef) {
|
|
5538
|
+
this.templateView = this.viewContainer.createEmbeddedView(content);
|
|
5539
|
+
this.templateView.detectChanges();
|
|
5540
|
+
for (const node of this.templateView.rootNodes) {
|
|
5541
|
+
this.renderer.appendChild(this.tooltipEl, node);
|
|
5542
|
+
}
|
|
5543
|
+
}
|
|
5544
|
+
else {
|
|
5545
|
+
this.tooltipEl.textContent = content;
|
|
5546
|
+
}
|
|
5534
5547
|
const maxWidth = this.maxWidth();
|
|
5535
5548
|
if (maxWidth != null) {
|
|
5536
5549
|
this.renderer.setStyle(this.tooltipEl, 'max-width', `${Math.max(50, maxWidth)}px`);
|
|
@@ -5577,6 +5590,8 @@ class TooltipDirective {
|
|
|
5577
5590
|
document.removeEventListener('keydown', this.keydownHandler);
|
|
5578
5591
|
this.tooltipEl.remove();
|
|
5579
5592
|
this.tooltipEl = null;
|
|
5593
|
+
this.templateView?.destroy();
|
|
5594
|
+
this.templateView = null;
|
|
5580
5595
|
this.removeDescribedBy();
|
|
5581
5596
|
}
|
|
5582
5597
|
}
|
|
@@ -19355,6 +19370,263 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImpo
|
|
|
19355
19370
|
}]
|
|
19356
19371
|
}] });
|
|
19357
19372
|
|
|
19373
|
+
class BugIconComponent extends IconComponentBase {
|
|
19374
|
+
static slug = 'bug';
|
|
19375
|
+
static category = 'eagami';
|
|
19376
|
+
static tags = [
|
|
19377
|
+
'bug',
|
|
19378
|
+
'insect',
|
|
19379
|
+
'issue',
|
|
19380
|
+
'error',
|
|
19381
|
+
'debug',
|
|
19382
|
+
'bogue',
|
|
19383
|
+
'insecte',
|
|
19384
|
+
'bicho',
|
|
19385
|
+
'fallo',
|
|
19386
|
+
'σφάλμα',
|
|
19387
|
+
'έντομο',
|
|
19388
|
+
'błąd',
|
|
19389
|
+
'owad',
|
|
19390
|
+
];
|
|
19391
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: BugIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
19392
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.18", type: BugIconComponent, isStandalone: true, selector: "ea-icon-bug", usesInheritance: true, ngImport: i0, template: `
|
|
19393
|
+
<svg
|
|
19394
|
+
viewBox="0 0 24 24"
|
|
19395
|
+
fill="none"
|
|
19396
|
+
stroke="currentColor"
|
|
19397
|
+
[attr.stroke-width]="strokeWidth()"
|
|
19398
|
+
stroke-linecap="round"
|
|
19399
|
+
stroke-linejoin="round"
|
|
19400
|
+
aria-hidden="true"
|
|
19401
|
+
width="100%"
|
|
19402
|
+
height="100%">
|
|
19403
|
+
<path d="M12 20v-9" />
|
|
19404
|
+
<path d="M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z" />
|
|
19405
|
+
<path d="M14.12 3.88 16 2" />
|
|
19406
|
+
<path d="M21 21a4 4 0 0 0-3.81-4" />
|
|
19407
|
+
<path d="M21 5a4 4 0 0 1-3.55 3.97" />
|
|
19408
|
+
<path d="M22 13h-4" />
|
|
19409
|
+
<path d="M3 21a4 4 0 0 1 3.81-4" />
|
|
19410
|
+
<path d="M3 5a4 4 0 0 0 3.55 3.97" />
|
|
19411
|
+
<path d="M6 13H2" />
|
|
19412
|
+
<path d="m8 2 1.88 1.88" />
|
|
19413
|
+
<path d="M9 7.13V6a3 3 0 1 1 6 0v1.13" />
|
|
19414
|
+
</svg>
|
|
19415
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
19416
|
+
}
|
|
19417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: BugIconComponent, decorators: [{
|
|
19418
|
+
type: Component,
|
|
19419
|
+
args: [{
|
|
19420
|
+
selector: 'ea-icon-bug',
|
|
19421
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
19422
|
+
template: `
|
|
19423
|
+
<svg
|
|
19424
|
+
viewBox="0 0 24 24"
|
|
19425
|
+
fill="none"
|
|
19426
|
+
stroke="currentColor"
|
|
19427
|
+
[attr.stroke-width]="strokeWidth()"
|
|
19428
|
+
stroke-linecap="round"
|
|
19429
|
+
stroke-linejoin="round"
|
|
19430
|
+
aria-hidden="true"
|
|
19431
|
+
width="100%"
|
|
19432
|
+
height="100%">
|
|
19433
|
+
<path d="M12 20v-9" />
|
|
19434
|
+
<path d="M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z" />
|
|
19435
|
+
<path d="M14.12 3.88 16 2" />
|
|
19436
|
+
<path d="M21 21a4 4 0 0 0-3.81-4" />
|
|
19437
|
+
<path d="M21 5a4 4 0 0 1-3.55 3.97" />
|
|
19438
|
+
<path d="M22 13h-4" />
|
|
19439
|
+
<path d="M3 21a4 4 0 0 1 3.81-4" />
|
|
19440
|
+
<path d="M3 5a4 4 0 0 0 3.55 3.97" />
|
|
19441
|
+
<path d="M6 13H2" />
|
|
19442
|
+
<path d="m8 2 1.88 1.88" />
|
|
19443
|
+
<path d="M9 7.13V6a3 3 0 1 1 6 0v1.13" />
|
|
19444
|
+
</svg>
|
|
19445
|
+
`,
|
|
19446
|
+
}]
|
|
19447
|
+
}] });
|
|
19448
|
+
|
|
19449
|
+
class BuildingIconComponent extends IconComponentBase {
|
|
19450
|
+
static slug = 'building';
|
|
19451
|
+
static category = 'eagami';
|
|
19452
|
+
static tags = [
|
|
19453
|
+
'building',
|
|
19454
|
+
'office',
|
|
19455
|
+
'company',
|
|
19456
|
+
'organization',
|
|
19457
|
+
'apartment',
|
|
19458
|
+
'immeuble',
|
|
19459
|
+
'bâtiment',
|
|
19460
|
+
'edificio',
|
|
19461
|
+
'oficina',
|
|
19462
|
+
'κτίριο',
|
|
19463
|
+
'γραφείο',
|
|
19464
|
+
'budynek',
|
|
19465
|
+
'biuro',
|
|
19466
|
+
];
|
|
19467
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: BuildingIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
19468
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.18", type: BuildingIconComponent, isStandalone: true, selector: "ea-icon-building", usesInheritance: true, ngImport: i0, template: `
|
|
19469
|
+
<svg
|
|
19470
|
+
viewBox="0 0 24 24"
|
|
19471
|
+
fill="none"
|
|
19472
|
+
stroke="currentColor"
|
|
19473
|
+
[attr.stroke-width]="strokeWidth()"
|
|
19474
|
+
stroke-linecap="round"
|
|
19475
|
+
stroke-linejoin="round"
|
|
19476
|
+
aria-hidden="true"
|
|
19477
|
+
width="100%"
|
|
19478
|
+
height="100%">
|
|
19479
|
+
<path d="M12 10h.01" />
|
|
19480
|
+
<path d="M12 14h.01" />
|
|
19481
|
+
<path d="M12 6h.01" />
|
|
19482
|
+
<path d="M16 10h.01" />
|
|
19483
|
+
<path d="M16 14h.01" />
|
|
19484
|
+
<path d="M16 6h.01" />
|
|
19485
|
+
<path d="M8 10h.01" />
|
|
19486
|
+
<path d="M8 14h.01" />
|
|
19487
|
+
<path d="M8 6h.01" />
|
|
19488
|
+
<path d="M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3" />
|
|
19489
|
+
<rect
|
|
19490
|
+
x="4"
|
|
19491
|
+
y="2"
|
|
19492
|
+
width="16"
|
|
19493
|
+
height="20"
|
|
19494
|
+
rx="2" />
|
|
19495
|
+
</svg>
|
|
19496
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
19497
|
+
}
|
|
19498
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: BuildingIconComponent, decorators: [{
|
|
19499
|
+
type: Component,
|
|
19500
|
+
args: [{
|
|
19501
|
+
selector: 'ea-icon-building',
|
|
19502
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
19503
|
+
template: `
|
|
19504
|
+
<svg
|
|
19505
|
+
viewBox="0 0 24 24"
|
|
19506
|
+
fill="none"
|
|
19507
|
+
stroke="currentColor"
|
|
19508
|
+
[attr.stroke-width]="strokeWidth()"
|
|
19509
|
+
stroke-linecap="round"
|
|
19510
|
+
stroke-linejoin="round"
|
|
19511
|
+
aria-hidden="true"
|
|
19512
|
+
width="100%"
|
|
19513
|
+
height="100%">
|
|
19514
|
+
<path d="M12 10h.01" />
|
|
19515
|
+
<path d="M12 14h.01" />
|
|
19516
|
+
<path d="M12 6h.01" />
|
|
19517
|
+
<path d="M16 10h.01" />
|
|
19518
|
+
<path d="M16 14h.01" />
|
|
19519
|
+
<path d="M16 6h.01" />
|
|
19520
|
+
<path d="M8 10h.01" />
|
|
19521
|
+
<path d="M8 14h.01" />
|
|
19522
|
+
<path d="M8 6h.01" />
|
|
19523
|
+
<path d="M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3" />
|
|
19524
|
+
<rect
|
|
19525
|
+
x="4"
|
|
19526
|
+
y="2"
|
|
19527
|
+
width="16"
|
|
19528
|
+
height="20"
|
|
19529
|
+
rx="2" />
|
|
19530
|
+
</svg>
|
|
19531
|
+
`,
|
|
19532
|
+
}]
|
|
19533
|
+
}] });
|
|
19534
|
+
|
|
19535
|
+
class CalculatorIconComponent extends IconComponentBase {
|
|
19536
|
+
static slug = 'calculator';
|
|
19537
|
+
static category = 'eagami';
|
|
19538
|
+
static tags = [
|
|
19539
|
+
'calculator',
|
|
19540
|
+
'math',
|
|
19541
|
+
'count',
|
|
19542
|
+
'calculate',
|
|
19543
|
+
'calculatrice',
|
|
19544
|
+
'calculadora',
|
|
19545
|
+
'αριθμομηχανή',
|
|
19546
|
+
'kalkulator',
|
|
19547
|
+
];
|
|
19548
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: CalculatorIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
19549
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.18", type: CalculatorIconComponent, isStandalone: true, selector: "ea-icon-calculator", usesInheritance: true, ngImport: i0, template: `
|
|
19550
|
+
<svg
|
|
19551
|
+
viewBox="0 0 24 24"
|
|
19552
|
+
fill="none"
|
|
19553
|
+
stroke="currentColor"
|
|
19554
|
+
[attr.stroke-width]="strokeWidth()"
|
|
19555
|
+
stroke-linecap="round"
|
|
19556
|
+
stroke-linejoin="round"
|
|
19557
|
+
aria-hidden="true"
|
|
19558
|
+
width="100%"
|
|
19559
|
+
height="100%">
|
|
19560
|
+
<rect
|
|
19561
|
+
width="16"
|
|
19562
|
+
height="20"
|
|
19563
|
+
x="4"
|
|
19564
|
+
y="2"
|
|
19565
|
+
rx="2" />
|
|
19566
|
+
<line
|
|
19567
|
+
x1="8"
|
|
19568
|
+
x2="16"
|
|
19569
|
+
y1="6"
|
|
19570
|
+
y2="6" />
|
|
19571
|
+
<line
|
|
19572
|
+
x1="16"
|
|
19573
|
+
x2="16"
|
|
19574
|
+
y1="14"
|
|
19575
|
+
y2="18" />
|
|
19576
|
+
<path d="M16 10h.01" />
|
|
19577
|
+
<path d="M12 10h.01" />
|
|
19578
|
+
<path d="M8 10h.01" />
|
|
19579
|
+
<path d="M12 14h.01" />
|
|
19580
|
+
<path d="M8 14h.01" />
|
|
19581
|
+
<path d="M12 18h.01" />
|
|
19582
|
+
<path d="M8 18h.01" />
|
|
19583
|
+
</svg>
|
|
19584
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
19585
|
+
}
|
|
19586
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: CalculatorIconComponent, decorators: [{
|
|
19587
|
+
type: Component,
|
|
19588
|
+
args: [{
|
|
19589
|
+
selector: 'ea-icon-calculator',
|
|
19590
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
19591
|
+
template: `
|
|
19592
|
+
<svg
|
|
19593
|
+
viewBox="0 0 24 24"
|
|
19594
|
+
fill="none"
|
|
19595
|
+
stroke="currentColor"
|
|
19596
|
+
[attr.stroke-width]="strokeWidth()"
|
|
19597
|
+
stroke-linecap="round"
|
|
19598
|
+
stroke-linejoin="round"
|
|
19599
|
+
aria-hidden="true"
|
|
19600
|
+
width="100%"
|
|
19601
|
+
height="100%">
|
|
19602
|
+
<rect
|
|
19603
|
+
width="16"
|
|
19604
|
+
height="20"
|
|
19605
|
+
x="4"
|
|
19606
|
+
y="2"
|
|
19607
|
+
rx="2" />
|
|
19608
|
+
<line
|
|
19609
|
+
x1="8"
|
|
19610
|
+
x2="16"
|
|
19611
|
+
y1="6"
|
|
19612
|
+
y2="6" />
|
|
19613
|
+
<line
|
|
19614
|
+
x1="16"
|
|
19615
|
+
x2="16"
|
|
19616
|
+
y1="14"
|
|
19617
|
+
y2="18" />
|
|
19618
|
+
<path d="M16 10h.01" />
|
|
19619
|
+
<path d="M12 10h.01" />
|
|
19620
|
+
<path d="M8 10h.01" />
|
|
19621
|
+
<path d="M12 14h.01" />
|
|
19622
|
+
<path d="M8 14h.01" />
|
|
19623
|
+
<path d="M12 18h.01" />
|
|
19624
|
+
<path d="M8 18h.01" />
|
|
19625
|
+
</svg>
|
|
19626
|
+
`,
|
|
19627
|
+
}]
|
|
19628
|
+
}] });
|
|
19629
|
+
|
|
19358
19630
|
class CalendarCheckIconComponent extends IconComponentBase {
|
|
19359
19631
|
static slug = 'calendar-check';
|
|
19360
19632
|
static category = 'eagami';
|
|
@@ -26216,6 +26488,65 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImpo
|
|
|
26216
26488
|
}]
|
|
26217
26489
|
}] });
|
|
26218
26490
|
|
|
26491
|
+
class HistoryIconComponent extends IconComponentBase {
|
|
26492
|
+
static slug = 'history';
|
|
26493
|
+
static category = 'eagami';
|
|
26494
|
+
static tags = [
|
|
26495
|
+
'history',
|
|
26496
|
+
'recent',
|
|
26497
|
+
'clock',
|
|
26498
|
+
'time',
|
|
26499
|
+
'undo',
|
|
26500
|
+
'historique',
|
|
26501
|
+
'récent',
|
|
26502
|
+
'historial',
|
|
26503
|
+
'reciente',
|
|
26504
|
+
'ιστορικό',
|
|
26505
|
+
'historia',
|
|
26506
|
+
'ostatnie',
|
|
26507
|
+
];
|
|
26508
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: HistoryIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
26509
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.18", type: HistoryIconComponent, isStandalone: true, selector: "ea-icon-history", usesInheritance: true, ngImport: i0, template: `
|
|
26510
|
+
<svg
|
|
26511
|
+
viewBox="0 0 24 24"
|
|
26512
|
+
fill="none"
|
|
26513
|
+
stroke="currentColor"
|
|
26514
|
+
[attr.stroke-width]="strokeWidth()"
|
|
26515
|
+
stroke-linecap="round"
|
|
26516
|
+
stroke-linejoin="round"
|
|
26517
|
+
aria-hidden="true"
|
|
26518
|
+
width="100%"
|
|
26519
|
+
height="100%">
|
|
26520
|
+
<path d="M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" />
|
|
26521
|
+
<path d="M3 3v5h5" />
|
|
26522
|
+
<path d="M12 7v5l4 2" />
|
|
26523
|
+
</svg>
|
|
26524
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
26525
|
+
}
|
|
26526
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: HistoryIconComponent, decorators: [{
|
|
26527
|
+
type: Component,
|
|
26528
|
+
args: [{
|
|
26529
|
+
selector: 'ea-icon-history',
|
|
26530
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
26531
|
+
template: `
|
|
26532
|
+
<svg
|
|
26533
|
+
viewBox="0 0 24 24"
|
|
26534
|
+
fill="none"
|
|
26535
|
+
stroke="currentColor"
|
|
26536
|
+
[attr.stroke-width]="strokeWidth()"
|
|
26537
|
+
stroke-linecap="round"
|
|
26538
|
+
stroke-linejoin="round"
|
|
26539
|
+
aria-hidden="true"
|
|
26540
|
+
width="100%"
|
|
26541
|
+
height="100%">
|
|
26542
|
+
<path d="M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" />
|
|
26543
|
+
<path d="M3 3v5h5" />
|
|
26544
|
+
<path d="M12 7v5l4 2" />
|
|
26545
|
+
</svg>
|
|
26546
|
+
`,
|
|
26547
|
+
}]
|
|
26548
|
+
}] });
|
|
26549
|
+
|
|
26219
26550
|
class HomeIconComponent extends IconComponentBase {
|
|
26220
26551
|
static slug = 'home';
|
|
26221
26552
|
static category = 'feather';
|
|
@@ -27128,6 +27459,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImpo
|
|
|
27128
27459
|
}]
|
|
27129
27460
|
}] });
|
|
27130
27461
|
|
|
27462
|
+
class LightbulbIconComponent extends IconComponentBase {
|
|
27463
|
+
static slug = 'lightbulb';
|
|
27464
|
+
static category = 'eagami';
|
|
27465
|
+
static tags = [
|
|
27466
|
+
'lightbulb',
|
|
27467
|
+
'bulb',
|
|
27468
|
+
'idea',
|
|
27469
|
+
'light',
|
|
27470
|
+
'inspiration',
|
|
27471
|
+
'tip',
|
|
27472
|
+
'ampoule',
|
|
27473
|
+
'idée',
|
|
27474
|
+
'bombilla',
|
|
27475
|
+
'λάμπα',
|
|
27476
|
+
'ιδέα',
|
|
27477
|
+
'żarówka',
|
|
27478
|
+
'pomysł',
|
|
27479
|
+
];
|
|
27480
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: LightbulbIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
27481
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.18", type: LightbulbIconComponent, isStandalone: true, selector: "ea-icon-lightbulb", usesInheritance: true, ngImport: i0, template: `
|
|
27482
|
+
<svg
|
|
27483
|
+
viewBox="0 0 24 24"
|
|
27484
|
+
fill="none"
|
|
27485
|
+
stroke="currentColor"
|
|
27486
|
+
[attr.stroke-width]="strokeWidth()"
|
|
27487
|
+
stroke-linecap="round"
|
|
27488
|
+
stroke-linejoin="round"
|
|
27489
|
+
aria-hidden="true"
|
|
27490
|
+
width="100%"
|
|
27491
|
+
height="100%">
|
|
27492
|
+
<path
|
|
27493
|
+
d="M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5" />
|
|
27494
|
+
<path d="M9 18h6" />
|
|
27495
|
+
<path d="M10 22h4" />
|
|
27496
|
+
</svg>
|
|
27497
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
27498
|
+
}
|
|
27499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: LightbulbIconComponent, decorators: [{
|
|
27500
|
+
type: Component,
|
|
27501
|
+
args: [{
|
|
27502
|
+
selector: 'ea-icon-lightbulb',
|
|
27503
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
27504
|
+
template: `
|
|
27505
|
+
<svg
|
|
27506
|
+
viewBox="0 0 24 24"
|
|
27507
|
+
fill="none"
|
|
27508
|
+
stroke="currentColor"
|
|
27509
|
+
[attr.stroke-width]="strokeWidth()"
|
|
27510
|
+
stroke-linecap="round"
|
|
27511
|
+
stroke-linejoin="round"
|
|
27512
|
+
aria-hidden="true"
|
|
27513
|
+
width="100%"
|
|
27514
|
+
height="100%">
|
|
27515
|
+
<path
|
|
27516
|
+
d="M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5" />
|
|
27517
|
+
<path d="M9 18h6" />
|
|
27518
|
+
<path d="M10 22h4" />
|
|
27519
|
+
</svg>
|
|
27520
|
+
`,
|
|
27521
|
+
}]
|
|
27522
|
+
}] });
|
|
27523
|
+
|
|
27131
27524
|
class Link2IconComponent extends IconComponentBase {
|
|
27132
27525
|
static slug = 'link-2';
|
|
27133
27526
|
static category = 'feather';
|
|
@@ -28351,6 +28744,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImpo
|
|
|
28351
28744
|
}]
|
|
28352
28745
|
}] });
|
|
28353
28746
|
|
|
28747
|
+
class MegaphoneIconComponent extends IconComponentBase {
|
|
28748
|
+
static slug = 'megaphone';
|
|
28749
|
+
static category = 'eagami';
|
|
28750
|
+
static tags = [
|
|
28751
|
+
'megaphone',
|
|
28752
|
+
'announcement',
|
|
28753
|
+
'broadcast',
|
|
28754
|
+
'bullhorn',
|
|
28755
|
+
'marketing',
|
|
28756
|
+
'mégaphone',
|
|
28757
|
+
'annonce',
|
|
28758
|
+
'megáfono',
|
|
28759
|
+
'anuncio',
|
|
28760
|
+
'μεγάφωνο',
|
|
28761
|
+
'ανακοίνωση',
|
|
28762
|
+
'megafon',
|
|
28763
|
+
'ogłoszenie',
|
|
28764
|
+
];
|
|
28765
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: MegaphoneIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
28766
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.18", type: MegaphoneIconComponent, isStandalone: true, selector: "ea-icon-megaphone", usesInheritance: true, ngImport: i0, template: `
|
|
28767
|
+
<svg
|
|
28768
|
+
viewBox="0 0 24 24"
|
|
28769
|
+
fill="none"
|
|
28770
|
+
stroke="currentColor"
|
|
28771
|
+
[attr.stroke-width]="strokeWidth()"
|
|
28772
|
+
stroke-linecap="round"
|
|
28773
|
+
stroke-linejoin="round"
|
|
28774
|
+
aria-hidden="true"
|
|
28775
|
+
width="100%"
|
|
28776
|
+
height="100%">
|
|
28777
|
+
<path
|
|
28778
|
+
d="M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z" />
|
|
28779
|
+
<path d="M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14" />
|
|
28780
|
+
<path d="M8 6v8" />
|
|
28781
|
+
</svg>
|
|
28782
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
28783
|
+
}
|
|
28784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: MegaphoneIconComponent, decorators: [{
|
|
28785
|
+
type: Component,
|
|
28786
|
+
args: [{
|
|
28787
|
+
selector: 'ea-icon-megaphone',
|
|
28788
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
28789
|
+
template: `
|
|
28790
|
+
<svg
|
|
28791
|
+
viewBox="0 0 24 24"
|
|
28792
|
+
fill="none"
|
|
28793
|
+
stroke="currentColor"
|
|
28794
|
+
[attr.stroke-width]="strokeWidth()"
|
|
28795
|
+
stroke-linecap="round"
|
|
28796
|
+
stroke-linejoin="round"
|
|
28797
|
+
aria-hidden="true"
|
|
28798
|
+
width="100%"
|
|
28799
|
+
height="100%">
|
|
28800
|
+
<path
|
|
28801
|
+
d="M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z" />
|
|
28802
|
+
<path d="M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14" />
|
|
28803
|
+
<path d="M8 6v8" />
|
|
28804
|
+
</svg>
|
|
28805
|
+
`,
|
|
28806
|
+
}]
|
|
28807
|
+
}] });
|
|
28808
|
+
|
|
28354
28809
|
class MehIconComponent extends IconComponentBase {
|
|
28355
28810
|
static slug = 'meh';
|
|
28356
28811
|
static category = 'feather';
|
|
@@ -30025,10 +30480,98 @@ class PackageIconComponent extends IconComponentBase {
|
|
|
30025
30480
|
</svg>
|
|
30026
30481
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
30027
30482
|
}
|
|
30028
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: PackageIconComponent, decorators: [{
|
|
30483
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: PackageIconComponent, decorators: [{
|
|
30484
|
+
type: Component,
|
|
30485
|
+
args: [{
|
|
30486
|
+
selector: 'ea-icon-package',
|
|
30487
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
30488
|
+
template: `
|
|
30489
|
+
<svg
|
|
30490
|
+
viewBox="0 0 24 24"
|
|
30491
|
+
fill="none"
|
|
30492
|
+
stroke="currentColor"
|
|
30493
|
+
[attr.stroke-width]="strokeWidth()"
|
|
30494
|
+
stroke-linecap="round"
|
|
30495
|
+
stroke-linejoin="round"
|
|
30496
|
+
aria-hidden="true"
|
|
30497
|
+
width="100%"
|
|
30498
|
+
height="100%">
|
|
30499
|
+
<line
|
|
30500
|
+
x1="16.5"
|
|
30501
|
+
y1="9.4"
|
|
30502
|
+
x2="7.5"
|
|
30503
|
+
y2="4.21" />
|
|
30504
|
+
<path
|
|
30505
|
+
d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z" />
|
|
30506
|
+
<polyline points="3.27 6.96 12 12.01 20.73 6.96" />
|
|
30507
|
+
<line
|
|
30508
|
+
x1="12"
|
|
30509
|
+
y1="22.08"
|
|
30510
|
+
x2="12"
|
|
30511
|
+
y2="12" />
|
|
30512
|
+
</svg>
|
|
30513
|
+
`,
|
|
30514
|
+
}]
|
|
30515
|
+
}] });
|
|
30516
|
+
|
|
30517
|
+
class PaletteIconComponent extends IconComponentBase {
|
|
30518
|
+
static slug = 'palette';
|
|
30519
|
+
static category = 'eagami';
|
|
30520
|
+
static tags = [
|
|
30521
|
+
'palette',
|
|
30522
|
+
'color',
|
|
30523
|
+
'paint',
|
|
30524
|
+
'theme',
|
|
30525
|
+
'art',
|
|
30526
|
+
'couleur',
|
|
30527
|
+
'peinture',
|
|
30528
|
+
'paleta',
|
|
30529
|
+
'pintura',
|
|
30530
|
+
'παλέτα',
|
|
30531
|
+
'χρώμα',
|
|
30532
|
+
'kolor',
|
|
30533
|
+
];
|
|
30534
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: PaletteIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
30535
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.18", type: PaletteIconComponent, isStandalone: true, selector: "ea-icon-palette", usesInheritance: true, ngImport: i0, template: `
|
|
30536
|
+
<svg
|
|
30537
|
+
viewBox="0 0 24 24"
|
|
30538
|
+
fill="none"
|
|
30539
|
+
stroke="currentColor"
|
|
30540
|
+
[attr.stroke-width]="strokeWidth()"
|
|
30541
|
+
stroke-linecap="round"
|
|
30542
|
+
stroke-linejoin="round"
|
|
30543
|
+
aria-hidden="true"
|
|
30544
|
+
width="100%"
|
|
30545
|
+
height="100%">
|
|
30546
|
+
<path
|
|
30547
|
+
d="M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z" />
|
|
30548
|
+
<circle
|
|
30549
|
+
cx="13.5"
|
|
30550
|
+
cy="6.5"
|
|
30551
|
+
r=".5"
|
|
30552
|
+
fill="currentColor" />
|
|
30553
|
+
<circle
|
|
30554
|
+
cx="17.5"
|
|
30555
|
+
cy="10.5"
|
|
30556
|
+
r=".5"
|
|
30557
|
+
fill="currentColor" />
|
|
30558
|
+
<circle
|
|
30559
|
+
cx="6.5"
|
|
30560
|
+
cy="12.5"
|
|
30561
|
+
r=".5"
|
|
30562
|
+
fill="currentColor" />
|
|
30563
|
+
<circle
|
|
30564
|
+
cx="8.5"
|
|
30565
|
+
cy="7.5"
|
|
30566
|
+
r=".5"
|
|
30567
|
+
fill="currentColor" />
|
|
30568
|
+
</svg>
|
|
30569
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
30570
|
+
}
|
|
30571
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: PaletteIconComponent, decorators: [{
|
|
30029
30572
|
type: Component,
|
|
30030
30573
|
args: [{
|
|
30031
|
-
selector: 'ea-icon-
|
|
30574
|
+
selector: 'ea-icon-palette',
|
|
30032
30575
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
30033
30576
|
template: `
|
|
30034
30577
|
<svg
|
|
@@ -30041,19 +30584,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImpo
|
|
|
30041
30584
|
aria-hidden="true"
|
|
30042
30585
|
width="100%"
|
|
30043
30586
|
height="100%">
|
|
30044
|
-
<line
|
|
30045
|
-
x1="16.5"
|
|
30046
|
-
y1="9.4"
|
|
30047
|
-
x2="7.5"
|
|
30048
|
-
y2="4.21" />
|
|
30049
30587
|
<path
|
|
30050
|
-
d="
|
|
30051
|
-
<
|
|
30052
|
-
|
|
30053
|
-
|
|
30054
|
-
|
|
30055
|
-
|
|
30056
|
-
|
|
30588
|
+
d="M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z" />
|
|
30589
|
+
<circle
|
|
30590
|
+
cx="13.5"
|
|
30591
|
+
cy="6.5"
|
|
30592
|
+
r=".5"
|
|
30593
|
+
fill="currentColor" />
|
|
30594
|
+
<circle
|
|
30595
|
+
cx="17.5"
|
|
30596
|
+
cy="10.5"
|
|
30597
|
+
r=".5"
|
|
30598
|
+
fill="currentColor" />
|
|
30599
|
+
<circle
|
|
30600
|
+
cx="6.5"
|
|
30601
|
+
cy="12.5"
|
|
30602
|
+
r=".5"
|
|
30603
|
+
fill="currentColor" />
|
|
30604
|
+
<circle
|
|
30605
|
+
cx="8.5"
|
|
30606
|
+
cy="7.5"
|
|
30607
|
+
r=".5"
|
|
30608
|
+
fill="currentColor" />
|
|
30057
30609
|
</svg>
|
|
30058
30610
|
`,
|
|
30059
30611
|
}]
|
|
@@ -31061,6 +31613,65 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImpo
|
|
|
31061
31613
|
}]
|
|
31062
31614
|
}] });
|
|
31063
31615
|
|
|
31616
|
+
class PinIconComponent extends IconComponentBase {
|
|
31617
|
+
static slug = 'pin';
|
|
31618
|
+
static category = 'eagami';
|
|
31619
|
+
static tags = [
|
|
31620
|
+
'pin',
|
|
31621
|
+
'pushpin',
|
|
31622
|
+
'tack',
|
|
31623
|
+
'attach',
|
|
31624
|
+
'save',
|
|
31625
|
+
'épingle',
|
|
31626
|
+
'punaise',
|
|
31627
|
+
'chincheta',
|
|
31628
|
+
'alfiler',
|
|
31629
|
+
'καρφίτσα',
|
|
31630
|
+
'pinezka',
|
|
31631
|
+
'przypnij',
|
|
31632
|
+
];
|
|
31633
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: PinIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
31634
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.18", type: PinIconComponent, isStandalone: true, selector: "ea-icon-pin", usesInheritance: true, ngImport: i0, template: `
|
|
31635
|
+
<svg
|
|
31636
|
+
viewBox="0 0 24 24"
|
|
31637
|
+
fill="none"
|
|
31638
|
+
stroke="currentColor"
|
|
31639
|
+
[attr.stroke-width]="strokeWidth()"
|
|
31640
|
+
stroke-linecap="round"
|
|
31641
|
+
stroke-linejoin="round"
|
|
31642
|
+
aria-hidden="true"
|
|
31643
|
+
width="100%"
|
|
31644
|
+
height="100%">
|
|
31645
|
+
<path d="M12 17v5" />
|
|
31646
|
+
<path
|
|
31647
|
+
d="M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z" />
|
|
31648
|
+
</svg>
|
|
31649
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
31650
|
+
}
|
|
31651
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: PinIconComponent, decorators: [{
|
|
31652
|
+
type: Component,
|
|
31653
|
+
args: [{
|
|
31654
|
+
selector: 'ea-icon-pin',
|
|
31655
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
31656
|
+
template: `
|
|
31657
|
+
<svg
|
|
31658
|
+
viewBox="0 0 24 24"
|
|
31659
|
+
fill="none"
|
|
31660
|
+
stroke="currentColor"
|
|
31661
|
+
[attr.stroke-width]="strokeWidth()"
|
|
31662
|
+
stroke-linecap="round"
|
|
31663
|
+
stroke-linejoin="round"
|
|
31664
|
+
aria-hidden="true"
|
|
31665
|
+
width="100%"
|
|
31666
|
+
height="100%">
|
|
31667
|
+
<path d="M12 17v5" />
|
|
31668
|
+
<path
|
|
31669
|
+
d="M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z" />
|
|
31670
|
+
</svg>
|
|
31671
|
+
`,
|
|
31672
|
+
}]
|
|
31673
|
+
}] });
|
|
31674
|
+
|
|
31064
31675
|
class PinterestIconComponent extends IconComponentBase {
|
|
31065
31676
|
static slug = 'pinterest';
|
|
31066
31677
|
static category = 'eagami';
|
|
@@ -31226,6 +31837,67 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImpo
|
|
|
31226
31837
|
}]
|
|
31227
31838
|
}] });
|
|
31228
31839
|
|
|
31840
|
+
class PlugIconComponent extends IconComponentBase {
|
|
31841
|
+
static slug = 'plug';
|
|
31842
|
+
static category = 'eagami';
|
|
31843
|
+
static tags = [
|
|
31844
|
+
'plug',
|
|
31845
|
+
'power',
|
|
31846
|
+
'outlet',
|
|
31847
|
+
'connect',
|
|
31848
|
+
'electricity',
|
|
31849
|
+
'prise',
|
|
31850
|
+
'brancher',
|
|
31851
|
+
'enchufe',
|
|
31852
|
+
'conectar',
|
|
31853
|
+
'πρίζα',
|
|
31854
|
+
'wtyczka',
|
|
31855
|
+
'zasilanie',
|
|
31856
|
+
];
|
|
31857
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: PlugIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
31858
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.18", type: PlugIconComponent, isStandalone: true, selector: "ea-icon-plug", usesInheritance: true, ngImport: i0, template: `
|
|
31859
|
+
<svg
|
|
31860
|
+
viewBox="0 0 24 24"
|
|
31861
|
+
fill="none"
|
|
31862
|
+
stroke="currentColor"
|
|
31863
|
+
[attr.stroke-width]="strokeWidth()"
|
|
31864
|
+
stroke-linecap="round"
|
|
31865
|
+
stroke-linejoin="round"
|
|
31866
|
+
aria-hidden="true"
|
|
31867
|
+
width="100%"
|
|
31868
|
+
height="100%">
|
|
31869
|
+
<path d="M12 22v-5" />
|
|
31870
|
+
<path d="M15 8V2" />
|
|
31871
|
+
<path d="M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z" />
|
|
31872
|
+
<path d="M9 8V2" />
|
|
31873
|
+
</svg>
|
|
31874
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
31875
|
+
}
|
|
31876
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: PlugIconComponent, decorators: [{
|
|
31877
|
+
type: Component,
|
|
31878
|
+
args: [{
|
|
31879
|
+
selector: 'ea-icon-plug',
|
|
31880
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
31881
|
+
template: `
|
|
31882
|
+
<svg
|
|
31883
|
+
viewBox="0 0 24 24"
|
|
31884
|
+
fill="none"
|
|
31885
|
+
stroke="currentColor"
|
|
31886
|
+
[attr.stroke-width]="strokeWidth()"
|
|
31887
|
+
stroke-linecap="round"
|
|
31888
|
+
stroke-linejoin="round"
|
|
31889
|
+
aria-hidden="true"
|
|
31890
|
+
width="100%"
|
|
31891
|
+
height="100%">
|
|
31892
|
+
<path d="M12 22v-5" />
|
|
31893
|
+
<path d="M15 8V2" />
|
|
31894
|
+
<path d="M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z" />
|
|
31895
|
+
<path d="M9 8V2" />
|
|
31896
|
+
</svg>
|
|
31897
|
+
`,
|
|
31898
|
+
}]
|
|
31899
|
+
}] });
|
|
31900
|
+
|
|
31229
31901
|
class PlusCircleIconComponent extends IconComponentBase {
|
|
31230
31902
|
static slug = 'plus-circle';
|
|
31231
31903
|
static category = 'feather';
|
|
@@ -33057,101 +33729,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImpo
|
|
|
33057
33729
|
}]
|
|
33058
33730
|
}] });
|
|
33059
33731
|
|
|
33060
|
-
class Share2IconComponent extends IconComponentBase {
|
|
33061
|
-
static slug = 'share-2';
|
|
33062
|
-
static category = 'feather';
|
|
33063
|
-
static tags = [
|
|
33064
|
-
'share-2',
|
|
33065
|
-
'share',
|
|
33066
|
-
'2',
|
|
33067
|
-
'send',
|
|
33068
|
-
'network',
|
|
33069
|
-
'social',
|
|
33070
|
-
'partager',
|
|
33071
|
-
'compartir',
|
|
33072
|
-
'κοινοποίηση',
|
|
33073
|
-
'udostępnij',
|
|
33074
|
-
];
|
|
33075
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: Share2IconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
33076
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.18", type: Share2IconComponent, isStandalone: true, selector: "ea-icon-share-2", usesInheritance: true, ngImport: i0, template: `
|
|
33077
|
-
<svg
|
|
33078
|
-
viewBox="0 0 24 24"
|
|
33079
|
-
fill="none"
|
|
33080
|
-
stroke="currentColor"
|
|
33081
|
-
[attr.stroke-width]="strokeWidth()"
|
|
33082
|
-
stroke-linecap="round"
|
|
33083
|
-
stroke-linejoin="round"
|
|
33084
|
-
aria-hidden="true"
|
|
33085
|
-
width="100%"
|
|
33086
|
-
height="100%">
|
|
33087
|
-
<circle
|
|
33088
|
-
cx="18"
|
|
33089
|
-
cy="5"
|
|
33090
|
-
r="3" />
|
|
33091
|
-
<circle
|
|
33092
|
-
cx="6"
|
|
33093
|
-
cy="12"
|
|
33094
|
-
r="3" />
|
|
33095
|
-
<circle
|
|
33096
|
-
cx="18"
|
|
33097
|
-
cy="19"
|
|
33098
|
-
r="3" />
|
|
33099
|
-
<line
|
|
33100
|
-
x1="8.59"
|
|
33101
|
-
y1="13.51"
|
|
33102
|
-
x2="15.42"
|
|
33103
|
-
y2="17.49" />
|
|
33104
|
-
<line
|
|
33105
|
-
x1="15.41"
|
|
33106
|
-
y1="6.51"
|
|
33107
|
-
x2="8.59"
|
|
33108
|
-
y2="10.49" />
|
|
33109
|
-
</svg>
|
|
33110
|
-
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
33111
|
-
}
|
|
33112
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: Share2IconComponent, decorators: [{
|
|
33113
|
-
type: Component,
|
|
33114
|
-
args: [{
|
|
33115
|
-
selector: 'ea-icon-share-2',
|
|
33116
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
33117
|
-
template: `
|
|
33118
|
-
<svg
|
|
33119
|
-
viewBox="0 0 24 24"
|
|
33120
|
-
fill="none"
|
|
33121
|
-
stroke="currentColor"
|
|
33122
|
-
[attr.stroke-width]="strokeWidth()"
|
|
33123
|
-
stroke-linecap="round"
|
|
33124
|
-
stroke-linejoin="round"
|
|
33125
|
-
aria-hidden="true"
|
|
33126
|
-
width="100%"
|
|
33127
|
-
height="100%">
|
|
33128
|
-
<circle
|
|
33129
|
-
cx="18"
|
|
33130
|
-
cy="5"
|
|
33131
|
-
r="3" />
|
|
33132
|
-
<circle
|
|
33133
|
-
cx="6"
|
|
33134
|
-
cy="12"
|
|
33135
|
-
r="3" />
|
|
33136
|
-
<circle
|
|
33137
|
-
cx="18"
|
|
33138
|
-
cy="19"
|
|
33139
|
-
r="3" />
|
|
33140
|
-
<line
|
|
33141
|
-
x1="8.59"
|
|
33142
|
-
y1="13.51"
|
|
33143
|
-
x2="15.42"
|
|
33144
|
-
y2="17.49" />
|
|
33145
|
-
<line
|
|
33146
|
-
x1="15.41"
|
|
33147
|
-
y1="6.51"
|
|
33148
|
-
x2="8.59"
|
|
33149
|
-
y2="10.49" />
|
|
33150
|
-
</svg>
|
|
33151
|
-
`,
|
|
33152
|
-
}]
|
|
33153
|
-
}] });
|
|
33154
|
-
|
|
33155
33732
|
class ShareIconComponent extends IconComponentBase {
|
|
33156
33733
|
static slug = 'share';
|
|
33157
33734
|
static category = 'feather';
|
|
@@ -36107,6 +36684,86 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImpo
|
|
|
36107
36684
|
}]
|
|
36108
36685
|
}], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
|
|
36109
36686
|
|
|
36687
|
+
class TimerIconComponent extends IconComponentBase {
|
|
36688
|
+
static slug = 'timer';
|
|
36689
|
+
static category = 'eagami';
|
|
36690
|
+
static tags = [
|
|
36691
|
+
'timer',
|
|
36692
|
+
'stopwatch',
|
|
36693
|
+
'countdown',
|
|
36694
|
+
'time',
|
|
36695
|
+
'minuteur',
|
|
36696
|
+
'chronomètre',
|
|
36697
|
+
'temporizador',
|
|
36698
|
+
'cronómetro',
|
|
36699
|
+
'χρονόμετρο',
|
|
36700
|
+
'minutnik',
|
|
36701
|
+
'stoper',
|
|
36702
|
+
];
|
|
36703
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: TimerIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
36704
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.18", type: TimerIconComponent, isStandalone: true, selector: "ea-icon-timer", usesInheritance: true, ngImport: i0, template: `
|
|
36705
|
+
<svg
|
|
36706
|
+
viewBox="0 0 24 24"
|
|
36707
|
+
fill="none"
|
|
36708
|
+
stroke="currentColor"
|
|
36709
|
+
[attr.stroke-width]="strokeWidth()"
|
|
36710
|
+
stroke-linecap="round"
|
|
36711
|
+
stroke-linejoin="round"
|
|
36712
|
+
aria-hidden="true"
|
|
36713
|
+
width="100%"
|
|
36714
|
+
height="100%">
|
|
36715
|
+
<line
|
|
36716
|
+
x1="10"
|
|
36717
|
+
x2="14"
|
|
36718
|
+
y1="2"
|
|
36719
|
+
y2="2" />
|
|
36720
|
+
<line
|
|
36721
|
+
x1="12"
|
|
36722
|
+
x2="15"
|
|
36723
|
+
y1="14"
|
|
36724
|
+
y2="11" />
|
|
36725
|
+
<circle
|
|
36726
|
+
cx="12"
|
|
36727
|
+
cy="14"
|
|
36728
|
+
r="8" />
|
|
36729
|
+
</svg>
|
|
36730
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
36731
|
+
}
|
|
36732
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.18", ngImport: i0, type: TimerIconComponent, decorators: [{
|
|
36733
|
+
type: Component,
|
|
36734
|
+
args: [{
|
|
36735
|
+
selector: 'ea-icon-timer',
|
|
36736
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
36737
|
+
template: `
|
|
36738
|
+
<svg
|
|
36739
|
+
viewBox="0 0 24 24"
|
|
36740
|
+
fill="none"
|
|
36741
|
+
stroke="currentColor"
|
|
36742
|
+
[attr.stroke-width]="strokeWidth()"
|
|
36743
|
+
stroke-linecap="round"
|
|
36744
|
+
stroke-linejoin="round"
|
|
36745
|
+
aria-hidden="true"
|
|
36746
|
+
width="100%"
|
|
36747
|
+
height="100%">
|
|
36748
|
+
<line
|
|
36749
|
+
x1="10"
|
|
36750
|
+
x2="14"
|
|
36751
|
+
y1="2"
|
|
36752
|
+
y2="2" />
|
|
36753
|
+
<line
|
|
36754
|
+
x1="12"
|
|
36755
|
+
x2="15"
|
|
36756
|
+
y1="14"
|
|
36757
|
+
y2="11" />
|
|
36758
|
+
<circle
|
|
36759
|
+
cx="12"
|
|
36760
|
+
cy="14"
|
|
36761
|
+
r="8" />
|
|
36762
|
+
</svg>
|
|
36763
|
+
`,
|
|
36764
|
+
}]
|
|
36765
|
+
}] });
|
|
36766
|
+
|
|
36110
36767
|
class ToggleLeftIconComponent extends IconComponentBase {
|
|
36111
36768
|
static slug = 'toggle-left';
|
|
36112
36769
|
static category = 'feather';
|
|
@@ -39739,7 +40396,6 @@ const ICONS = [
|
|
|
39739
40396
|
SendIconComponent,
|
|
39740
40397
|
ServerIconComponent,
|
|
39741
40398
|
SettingsIconComponent,
|
|
39742
|
-
Share2IconComponent,
|
|
39743
40399
|
ShareIconComponent,
|
|
39744
40400
|
ShieldOffIconComponent,
|
|
39745
40401
|
ShieldIconComponent,
|
|
@@ -39876,11 +40532,21 @@ const ICONS = [
|
|
|
39876
40532
|
SvelteIconComponent,
|
|
39877
40533
|
VueIconComponent,
|
|
39878
40534
|
WordpressIconComponent,
|
|
40535
|
+
BugIconComponent,
|
|
40536
|
+
BuildingIconComponent,
|
|
40537
|
+
CalculatorIconComponent,
|
|
40538
|
+
HistoryIconComponent,
|
|
40539
|
+
LightbulbIconComponent,
|
|
40540
|
+
MegaphoneIconComponent,
|
|
40541
|
+
PaletteIconComponent,
|
|
40542
|
+
PinIconComponent,
|
|
40543
|
+
PlugIconComponent,
|
|
40544
|
+
TimerIconComponent,
|
|
39879
40545
|
].sort((a, b) => a.slug.localeCompare(b.slug));
|
|
39880
40546
|
|
|
39881
40547
|
/**
|
|
39882
40548
|
* Generated bundle index. Do not edit.
|
|
39883
40549
|
*/
|
|
39884
40550
|
|
|
39885
|
-
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, AndroidIconComponent, AngularIconComponent, AnthropicIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeCheckIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BellRingIconComponent, BitcoinIconComponent, BlueskyIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkCheckIconComponent, BookmarkIconComponent, BookmarkPlusIconComponent, BotIconComponent, BottleIconComponent, BoxIconComponent, BrainIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarCheckIconComponent, CalendarDaysIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardCheckIconComponent, ClipboardIconComponent, ClipboardListIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, CoinsIconComponent, ColorPickerComponent, ColumnsIconComponent, CommandIconComponent, CommandPaletteComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DEFAULT_PALETTE_ROLES, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideCircleIconComponent, DivideIconComponent, DivideSquareIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DribbbleIconComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_ALL_LOCALES, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_LOCALE_META, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FieldLabelComponent, FieldMessagesComponent, Figma2IconComponent, FigmaIconComponent, FileCheckIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FilterXIconComponent, FingerprintIconComponent, FlagIconComponent, FlameIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderOpenIconComponent, FolderPlusIconComponent, FormFieldComponent, FramerIconComponent, FrownIconComponent, GaugeIconComponent, GeminiIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitCompareIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HalfCircleIconComponent, HalfHeartIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KeyboardIconComponent, KubernetesIconComponent, LampIconComponent, LanguagesIconComponent, LayersIconComponent, LayoutIconComponent, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailCheckIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MultiSelectComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NodejsIconComponent, NotionIconComponent, NpmIconComponent, NumberInputComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PinterestIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, PythonIconComponent, QrCodeIconComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, ReactIconComponent, ReceiptIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RedoIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RocketIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScanIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldCheckIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShopifyIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SnowflakeIconComponent, SoccerBallIconComponent, SparklesIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SvelteIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, TimelineComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UndoIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, VueIconComponent, WCAG_AA, WalletIconComponent, WandIconComponent, WatchIconComponent, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, WordpressIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, ar, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, he, hexToOklch, hi, iconDisplayName, is, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, ru, uk, validatePalette, visibleNodeIds, walkTree, zhCN };
|
|
40551
|
+
export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, AndroidIconComponent, AngularIconComponent, AnthropicIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeCheckIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BellRingIconComponent, BitcoinIconComponent, BlueskyIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkCheckIconComponent, BookmarkIconComponent, BookmarkPlusIconComponent, BotIconComponent, BottleIconComponent, BoxIconComponent, BrainIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, BugIconComponent, BuildingIconComponent, ButtonComponent, CalculatorIconComponent, CalendarCheckIconComponent, CalendarDaysIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardCheckIconComponent, ClipboardIconComponent, ClipboardListIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, CoinsIconComponent, ColorPickerComponent, ColumnsIconComponent, CommandIconComponent, CommandPaletteComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DEFAULT_PALETTE_ROLES, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideCircleIconComponent, DivideIconComponent, DivideSquareIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DribbbleIconComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_ALL_LOCALES, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_LOCALE_META, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FieldLabelComponent, FieldMessagesComponent, Figma2IconComponent, FigmaIconComponent, FileCheckIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FilterXIconComponent, FingerprintIconComponent, FlagIconComponent, FlameIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderOpenIconComponent, FolderPlusIconComponent, FormFieldComponent, FramerIconComponent, FrownIconComponent, GaugeIconComponent, GeminiIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitCompareIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HalfCircleIconComponent, HalfHeartIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HistoryIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KeyboardIconComponent, KubernetesIconComponent, LampIconComponent, LanguagesIconComponent, LayersIconComponent, LayoutIconComponent, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, LightbulbIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailCheckIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MegaphoneIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MultiSelectComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NodejsIconComponent, NotionIconComponent, NpmIconComponent, NumberInputComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaletteIconComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PinIconComponent, PinterestIconComponent, PlayCircleIconComponent, PlayIconComponent, PlugIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, PythonIconComponent, QrCodeIconComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, ReactIconComponent, ReceiptIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RedoIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RocketIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScanIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, ShareIconComponent, ShieldCheckIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShopifyIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SnowflakeIconComponent, SoccerBallIconComponent, SparklesIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SvelteIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, TimelineComponent, TimerIconComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UndoIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, VueIconComponent, WCAG_AA, WalletIconComponent, WandIconComponent, WatchIconComponent, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, WordpressIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, ar, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, he, hexToOklch, hi, iconDisplayName, is, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, ru, uk, validatePalette, visibleNodeIds, walkTree, zhCN };
|
|
39886
40552
|
//# sourceMappingURL=eagami-ui.mjs.map
|