@eagami/ui 1.0.2 → 1.1.1
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 +14 -0
- package/fesm2022/eagami-ui.mjs +3212 -521
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/_tooltip.scss +8 -0
- package/src/styles/tokens/_colors.scss +7 -6
- package/src/styles/tokens/_elevation.scss +9 -8
- package/types/eagami-ui.d.ts +255 -1
package/fesm2022/eagami-ui.mjs
CHANGED
|
@@ -323,7 +323,7 @@ class AlertComponent {
|
|
|
323
323
|
this.dismissed.emit();
|
|
324
324
|
}
|
|
325
325
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
326
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: AlertComponent, isStandalone: true, selector: "ea-alert", inputs: { variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, dismissible: { classPropertyName: "dismissible", publicName: "dismissible", isSignal: true, isRequired: false, transformFunction: null }, visible: { classPropertyName: "visible", publicName: "visible", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { visible: "visibleChange", dismissed: "dismissed" }, ngImport: i0, template: "@if (visible()) {\n <div\n class=\"ea-alert\"\n [class.ea-alert--default]=\"variant() === 'default'\"\n [class.ea-alert--success]=\"variant() === 'success'\"\n [class.ea-alert--warning]=\"variant() === 'warning'\"\n [class.ea-alert--error]=\"variant() === 'error'\"\n [class.ea-alert--info]=\"variant() === 'info'\"\n [attr.role]=\"role()\">\n <span class=\"ea-alert__icon\">\n @switch (variant()) {\n @case ('success') {\n <ea-icon-check />\n }\n @case ('warning') {\n <ea-icon-alert-circle />\n }\n @case ('error') {\n <ea-icon-alert-circle />\n }\n @case ('info') {\n <ea-icon-info />\n }\n @default {\n <ea-icon-info />\n }\n }\n </span>\n <div class=\"ea-alert__content\">\n <ng-content />\n </div>\n @if (dismissible()) {\n <button\n class=\"ea-alert__close\"\n type=\"button\"\n aria-label=\"Dismiss\"\n (click)=\"dismiss()\">\n <ea-icon-x />\n </button>\n }\n </div>\n}\n", styles: [".ea-alert{display:flex;align-items:flex-start;gap:var(--space-3);padding:var(--space-3) var(--space-4);font-size:var(--font-size-sm);font-weight:var(--font-weight-regular);line-height:var(--line-height-normal);border:var(--border-width-thin) solid;border-radius:var(--radius-lg)}.ea-alert--default{background-color:var(--color-bg-subtle);border-color:var(--color-border-default);color:var(--color-text-primary)}.ea-alert--default .ea-alert__icon{color:var(--color-text-secondary)}.ea-alert--success{background-color:var(--color-success-subtle);border-color:var(--color-success-default);color:var(--color-text-primary)}.ea-alert--success .ea-alert__icon{color:var(--color-success-default)}.ea-alert--warning{background-color:var(--color-warning-subtle);border-color:var(--color-warning-default);color:var(--color-text-primary)}.ea-alert--warning .ea-alert__icon{color:var(--color-warning-default)}.ea-alert--error{background-color:var(--color-error-subtle);border-color:var(--color-error-default);color:var(--color-text-primary)}.ea-alert--error .ea-alert__icon{color:var(--color-error-default)}.ea-alert--info{background-color:var(--color-info-subtle);border-color:var(--color-info-default);color:var(--color-text-primary)}.ea-alert--info .ea-alert__icon{color:var(--color-info-default)}.ea-alert__icon{display:flex;flex-shrink:0;width:1.25rem;height:
|
|
326
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: AlertComponent, isStandalone: true, selector: "ea-alert", inputs: { variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, dismissible: { classPropertyName: "dismissible", publicName: "dismissible", isSignal: true, isRequired: false, transformFunction: null }, visible: { classPropertyName: "visible", publicName: "visible", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { visible: "visibleChange", dismissed: "dismissed" }, ngImport: i0, template: "@if (visible()) {\n <div\n class=\"ea-alert\"\n [class.ea-alert--default]=\"variant() === 'default'\"\n [class.ea-alert--success]=\"variant() === 'success'\"\n [class.ea-alert--warning]=\"variant() === 'warning'\"\n [class.ea-alert--error]=\"variant() === 'error'\"\n [class.ea-alert--info]=\"variant() === 'info'\"\n [attr.role]=\"role()\">\n <span class=\"ea-alert__icon\">\n @switch (variant()) {\n @case ('success') {\n <ea-icon-check />\n }\n @case ('warning') {\n <ea-icon-alert-circle />\n }\n @case ('error') {\n <ea-icon-alert-circle />\n }\n @case ('info') {\n <ea-icon-info />\n }\n @default {\n <ea-icon-info />\n }\n }\n </span>\n <div class=\"ea-alert__content\">\n <ng-content />\n </div>\n @if (dismissible()) {\n <button\n class=\"ea-alert__close\"\n type=\"button\"\n aria-label=\"Dismiss\"\n (click)=\"dismiss()\">\n <ea-icon-x />\n </button>\n }\n </div>\n}\n", styles: [".ea-alert{display:flex;align-items:flex-start;gap:var(--space-3);padding:var(--space-3) var(--space-4);font-size:var(--font-size-sm);font-weight:var(--font-weight-regular);line-height:var(--line-height-normal);border:var(--border-width-thin) solid;border-radius:var(--radius-lg)}.ea-alert--default{background-color:var(--color-bg-subtle);border-color:var(--color-border-default);color:var(--color-text-primary)}.ea-alert--default .ea-alert__icon{color:var(--color-text-secondary)}.ea-alert--success{background-color:var(--color-success-subtle);border-color:var(--color-success-default);color:var(--color-text-primary)}.ea-alert--success .ea-alert__icon{color:var(--color-success-default)}.ea-alert--warning{background-color:var(--color-warning-subtle);border-color:var(--color-warning-default);color:var(--color-text-primary)}.ea-alert--warning .ea-alert__icon{color:var(--color-warning-default)}.ea-alert--error{background-color:var(--color-error-subtle);border-color:var(--color-error-default);color:var(--color-text-primary)}.ea-alert--error .ea-alert__icon{color:var(--color-error-default)}.ea-alert--info{background-color:var(--color-info-subtle);border-color:var(--color-info-default);color:var(--color-text-primary)}.ea-alert--info .ea-alert__icon{color:var(--color-info-default)}.ea-alert__icon{display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;width:1.25rem;height:calc(1em * var(--line-height-normal))}.ea-alert__content{flex:1;min-width:0}.ea-alert__close{display:flex;align-items:center;justify-content:center;flex-shrink:0;padding:0;width:1.25rem;height:1.25rem;background:none;border:none;border-radius:var(--radius-sm);color:var(--color-text-secondary);cursor:pointer;transition:var(--transition-colors)}.ea-alert__close:hover{color:var(--color-text-primary)}.ea-alert__close:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}\n"], dependencies: [{ kind: "component", type: AlertCircleIconComponent, selector: "ea-icon-alert-circle" }, { kind: "component", type: CheckIconComponent, selector: "ea-icon-check" }, { kind: "component", type: InfoIconComponent, selector: "ea-icon-info" }, { kind: "component", type: XIconComponent, selector: "ea-icon-x" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
327
327
|
}
|
|
328
328
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AlertComponent, decorators: [{
|
|
329
329
|
type: Component,
|
|
@@ -332,7 +332,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
332
332
|
CheckIconComponent,
|
|
333
333
|
InfoIconComponent,
|
|
334
334
|
XIconComponent,
|
|
335
|
-
], template: "@if (visible()) {\n <div\n class=\"ea-alert\"\n [class.ea-alert--default]=\"variant() === 'default'\"\n [class.ea-alert--success]=\"variant() === 'success'\"\n [class.ea-alert--warning]=\"variant() === 'warning'\"\n [class.ea-alert--error]=\"variant() === 'error'\"\n [class.ea-alert--info]=\"variant() === 'info'\"\n [attr.role]=\"role()\">\n <span class=\"ea-alert__icon\">\n @switch (variant()) {\n @case ('success') {\n <ea-icon-check />\n }\n @case ('warning') {\n <ea-icon-alert-circle />\n }\n @case ('error') {\n <ea-icon-alert-circle />\n }\n @case ('info') {\n <ea-icon-info />\n }\n @default {\n <ea-icon-info />\n }\n }\n </span>\n <div class=\"ea-alert__content\">\n <ng-content />\n </div>\n @if (dismissible()) {\n <button\n class=\"ea-alert__close\"\n type=\"button\"\n aria-label=\"Dismiss\"\n (click)=\"dismiss()\">\n <ea-icon-x />\n </button>\n }\n </div>\n}\n", styles: [".ea-alert{display:flex;align-items:flex-start;gap:var(--space-3);padding:var(--space-3) var(--space-4);font-size:var(--font-size-sm);font-weight:var(--font-weight-regular);line-height:var(--line-height-normal);border:var(--border-width-thin) solid;border-radius:var(--radius-lg)}.ea-alert--default{background-color:var(--color-bg-subtle);border-color:var(--color-border-default);color:var(--color-text-primary)}.ea-alert--default .ea-alert__icon{color:var(--color-text-secondary)}.ea-alert--success{background-color:var(--color-success-subtle);border-color:var(--color-success-default);color:var(--color-text-primary)}.ea-alert--success .ea-alert__icon{color:var(--color-success-default)}.ea-alert--warning{background-color:var(--color-warning-subtle);border-color:var(--color-warning-default);color:var(--color-text-primary)}.ea-alert--warning .ea-alert__icon{color:var(--color-warning-default)}.ea-alert--error{background-color:var(--color-error-subtle);border-color:var(--color-error-default);color:var(--color-text-primary)}.ea-alert--error .ea-alert__icon{color:var(--color-error-default)}.ea-alert--info{background-color:var(--color-info-subtle);border-color:var(--color-info-default);color:var(--color-text-primary)}.ea-alert--info .ea-alert__icon{color:var(--color-info-default)}.ea-alert__icon{display:flex;flex-shrink:0;width:1.25rem;height:
|
|
335
|
+
], template: "@if (visible()) {\n <div\n class=\"ea-alert\"\n [class.ea-alert--default]=\"variant() === 'default'\"\n [class.ea-alert--success]=\"variant() === 'success'\"\n [class.ea-alert--warning]=\"variant() === 'warning'\"\n [class.ea-alert--error]=\"variant() === 'error'\"\n [class.ea-alert--info]=\"variant() === 'info'\"\n [attr.role]=\"role()\">\n <span class=\"ea-alert__icon\">\n @switch (variant()) {\n @case ('success') {\n <ea-icon-check />\n }\n @case ('warning') {\n <ea-icon-alert-circle />\n }\n @case ('error') {\n <ea-icon-alert-circle />\n }\n @case ('info') {\n <ea-icon-info />\n }\n @default {\n <ea-icon-info />\n }\n }\n </span>\n <div class=\"ea-alert__content\">\n <ng-content />\n </div>\n @if (dismissible()) {\n <button\n class=\"ea-alert__close\"\n type=\"button\"\n aria-label=\"Dismiss\"\n (click)=\"dismiss()\">\n <ea-icon-x />\n </button>\n }\n </div>\n}\n", styles: [".ea-alert{display:flex;align-items:flex-start;gap:var(--space-3);padding:var(--space-3) var(--space-4);font-size:var(--font-size-sm);font-weight:var(--font-weight-regular);line-height:var(--line-height-normal);border:var(--border-width-thin) solid;border-radius:var(--radius-lg)}.ea-alert--default{background-color:var(--color-bg-subtle);border-color:var(--color-border-default);color:var(--color-text-primary)}.ea-alert--default .ea-alert__icon{color:var(--color-text-secondary)}.ea-alert--success{background-color:var(--color-success-subtle);border-color:var(--color-success-default);color:var(--color-text-primary)}.ea-alert--success .ea-alert__icon{color:var(--color-success-default)}.ea-alert--warning{background-color:var(--color-warning-subtle);border-color:var(--color-warning-default);color:var(--color-text-primary)}.ea-alert--warning .ea-alert__icon{color:var(--color-warning-default)}.ea-alert--error{background-color:var(--color-error-subtle);border-color:var(--color-error-default);color:var(--color-text-primary)}.ea-alert--error .ea-alert__icon{color:var(--color-error-default)}.ea-alert--info{background-color:var(--color-info-subtle);border-color:var(--color-info-default);color:var(--color-text-primary)}.ea-alert--info .ea-alert__icon{color:var(--color-info-default)}.ea-alert__icon{display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;width:1.25rem;height:calc(1em * var(--line-height-normal))}.ea-alert__content{flex:1;min-width:0}.ea-alert__close{display:flex;align-items:center;justify-content:center;flex-shrink:0;padding:0;width:1.25rem;height:1.25rem;background:none;border:none;border-radius:var(--radius-sm);color:var(--color-text-secondary);cursor:pointer;transition:var(--transition-colors)}.ea-alert__close:hover{color:var(--color-text-primary)}.ea-alert__close:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}\n"] }]
|
|
336
336
|
}], propDecorators: { variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], dismissible: [{ type: i0.Input, args: [{ isSignal: true, alias: "dismissible", required: false }] }], visible: [{ type: i0.Input, args: [{ isSignal: true, alias: "visible", required: false }] }, { type: i0.Output, args: ["visibleChange"] }], dismissed: [{ type: i0.Output, args: ["dismissed"] }] } });
|
|
337
337
|
|
|
338
338
|
/**
|
|
@@ -875,6 +875,14 @@ class TooltipDirective {
|
|
|
875
875
|
tooltipPosition = input('top', ...(ngDevMode ? [{ debugName: "tooltipPosition" }] : /* istanbul ignore next */ []));
|
|
876
876
|
tooltipEl = null;
|
|
877
877
|
tooltipId = `ea-tooltip-${Math.random().toString(36).slice(2, 9)}`;
|
|
878
|
+
// Touch devices fire `mouseenter` on tap but never fire `mouseleave` until
|
|
879
|
+
// the user taps elsewhere, leaving hover-driven tooltips latched open. Track
|
|
880
|
+
// hover capability reactively via the MediaQueryList so pointer listeners
|
|
881
|
+
// are attached/detached when the device gains or loses hover (DevTools mobile
|
|
882
|
+
// mode toggling, Bluetooth peripherals connecting, etc.) without a refresh.
|
|
883
|
+
hoverMql = typeof window !== 'undefined' && typeof window.matchMedia === 'function'
|
|
884
|
+
? window.matchMedia('(hover: hover)')
|
|
885
|
+
: null;
|
|
878
886
|
showHandler = () => this.show();
|
|
879
887
|
hideHandler = () => this.hide();
|
|
880
888
|
keydownHandler = (event) => {
|
|
@@ -882,13 +890,15 @@ class TooltipDirective {
|
|
|
882
890
|
this.hide();
|
|
883
891
|
}
|
|
884
892
|
};
|
|
893
|
+
hoverChangeHandler = (event) => this.syncPointerListeners(event.matches);
|
|
885
894
|
constructor() {
|
|
886
895
|
const native = this.el.nativeElement;
|
|
887
|
-
|
|
888
|
-
native.addEventListener('mouseleave', this.hideHandler);
|
|
896
|
+
// Focus/blur/keydown always wire up — keyboard users benefit on any device.
|
|
889
897
|
native.addEventListener('focus', this.showHandler);
|
|
890
898
|
native.addEventListener('blur', this.hideHandler);
|
|
891
899
|
native.addEventListener('keydown', this.keydownHandler);
|
|
900
|
+
this.syncPointerListeners(this.hoverMql?.matches ?? true);
|
|
901
|
+
this.hoverMql?.addEventListener('change', this.hoverChangeHandler);
|
|
892
902
|
}
|
|
893
903
|
ngOnDestroy() {
|
|
894
904
|
const native = this.el.nativeElement;
|
|
@@ -897,8 +907,23 @@ class TooltipDirective {
|
|
|
897
907
|
native.removeEventListener('focus', this.showHandler);
|
|
898
908
|
native.removeEventListener('blur', this.hideHandler);
|
|
899
909
|
native.removeEventListener('keydown', this.keydownHandler);
|
|
910
|
+
this.hoverMql?.removeEventListener('change', this.hoverChangeHandler);
|
|
900
911
|
this.hide();
|
|
901
912
|
}
|
|
913
|
+
syncPointerListeners(canHover) {
|
|
914
|
+
const native = this.el.nativeElement;
|
|
915
|
+
// Remove first to keep this idempotent — addEventListener with the same
|
|
916
|
+
// handler is a no-op anyway, but pairing keeps the bookkeeping obvious.
|
|
917
|
+
native.removeEventListener('mouseenter', this.showHandler);
|
|
918
|
+
native.removeEventListener('mouseleave', this.hideHandler);
|
|
919
|
+
if (canHover) {
|
|
920
|
+
native.addEventListener('mouseenter', this.showHandler);
|
|
921
|
+
native.addEventListener('mouseleave', this.hideHandler);
|
|
922
|
+
}
|
|
923
|
+
else {
|
|
924
|
+
this.hide();
|
|
925
|
+
}
|
|
926
|
+
}
|
|
902
927
|
show() {
|
|
903
928
|
if (this.tooltipEl || !this.eaTooltip())
|
|
904
929
|
return;
|
|
@@ -1773,11 +1798,11 @@ class CardComponent {
|
|
|
1773
1798
|
'ea-card--full-width': this.fullWidth(),
|
|
1774
1799
|
}), ...(ngDevMode ? [{ debugName: "hostClasses" }] : /* istanbul ignore next */ []));
|
|
1775
1800
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: CardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1776
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: CardComponent, isStandalone: true, selector: "ea-card", inputs: { variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, padding: { classPropertyName: "padding", publicName: "padding", isSignal: true, isRequired: false, transformFunction: null }, fullWidth: { classPropertyName: "fullWidth", publicName: "fullWidth", isSignal: true, isRequired: false, transformFunction: null }, headerAlign: { classPropertyName: "headerAlign", publicName: "headerAlign", isSignal: true, isRequired: false, transformFunction: null }, headerDivider: { classPropertyName: "headerDivider", publicName: "headerDivider", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div\n class=\"ea-card\"\n [ngClass]=\"hostClasses()\">\n <div\n class=\"ea-card__header\"\n [style.text-align]=\"headerAlign()\">\n <ng-content select=\"[slot=header]\" />\n </div>\n\n @if (headerDivider()) {\n <ea-divider class=\"ea-card__divider\" />\n }\n\n <div class=\"ea-card__body\">\n <ng-content />\n </div>\n\n <div class=\"ea-card__footer\">\n <ng-content select=\"[slot=footer]\" />\n </div>\n</div>\n", styles: ["ea-card{display:block;min-height:0}.ea-card{display:flex;flex-direction:column;min-height:0;border-radius:var(--radius-lg);font-family:var(--font-family-sans);color:var(--color-text-primary);overflow:hidden}.ea-card--elevated{background-color:var(--color-bg-elevated);box-shadow:var(--ea-card-shadow, var(--shadow-md))}.ea-card--outlined{background-color:var(--color-bg-base);border:var(--border-width-thin) solid var(--color-border-default)}.ea-card--filled{background-color:var(--color-bg-subtle)}.ea-card--padding-none .ea-card__header{padding:var(--ea-card-header-padding, 0)}.ea-card--padding-none .ea-card__body{padding:var(--ea-card-body-padding, 0)}.ea-card--padding-none .ea-card__footer{padding:var(--ea-card-footer-padding, 0)}.ea-card--padding-sm .ea-card__header{padding:var(--ea-card-header-padding, var(--space-3) var(--space-3) 0)}.ea-card--padding-sm .ea-card__body{padding:var(--ea-card-body-padding, var(--space-3))}.ea-card--padding-sm .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-3) var(--space-3))}.ea-card--padding-md .ea-card__header{padding:var(--ea-card-header-padding, var(--space-4) var(--space-4) 0)}.ea-card--padding-md .ea-card__body{padding:var(--ea-card-body-padding, var(--space-4))}.ea-card--padding-md .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-4) var(--space-4))}.ea-card--padding-lg .ea-card__header{padding:var(--ea-card-header-padding, var(--space-6) var(--space-6) 0)}.ea-card--padding-lg .ea-card__body{padding:var(--ea-card-body-padding, var(--space-6))}.ea-card--padding-lg .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-6) var(--space-6))}.ea-card--padding-xl .ea-card__header{padding:var(--ea-card-header-padding, var(--space-8) var(--space-8) 0)}.ea-card--padding-xl .ea-card__body{padding:var(--ea-card-body-padding, var(--space-8))}.ea-card--padding-xl .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-8) var(--space-8))}.ea-card--full-width{width:100%}.ea-card__divider{margin:var(--space-2) var(--space-4) 0}.ea-card__header:empty,.ea-card__footer:empty{display:none}.ea-card__header{font-size:var(--text-label-lg-size);font-weight:var(--text-label-lg-weight);line-height:var(--text-label-lg-lh)}.ea-card__body{flex:1;font-size:var(--font-size-sm);line-height:var(--line-height-normal);color:var(--color-text-secondary)}.ea-card__footer{display:flex;align-items:center;justify-content:center;gap:var(--space-3)}.ea-card__footer>*{display:flex;align-items:center;justify-content:center;gap:var(--space-3)}\n"], dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: DividerComponent, selector: "ea-divider", inputs: ["orientation", "label"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
1801
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: CardComponent, isStandalone: true, selector: "ea-card", inputs: { variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, padding: { classPropertyName: "padding", publicName: "padding", isSignal: true, isRequired: false, transformFunction: null }, fullWidth: { classPropertyName: "fullWidth", publicName: "fullWidth", isSignal: true, isRequired: false, transformFunction: null }, headerAlign: { classPropertyName: "headerAlign", publicName: "headerAlign", isSignal: true, isRequired: false, transformFunction: null }, headerDivider: { classPropertyName: "headerDivider", publicName: "headerDivider", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div\n class=\"ea-card\"\n [ngClass]=\"hostClasses()\">\n <div\n class=\"ea-card__header\"\n [style.text-align]=\"headerAlign()\">\n <ng-content select=\"[slot=header]\" />\n </div>\n\n @if (headerDivider()) {\n <ea-divider class=\"ea-card__divider\" />\n }\n\n <div class=\"ea-card__body\">\n <ng-content />\n </div>\n\n <div class=\"ea-card__footer\">\n <ng-content select=\"[slot=footer]\" />\n </div>\n</div>\n", styles: ["ea-card{display:block;min-height:0}.ea-card{display:flex;flex-direction:column;min-height:0;border-radius:var(--radius-lg);font-family:var(--font-family-sans);color:var(--color-text-primary);overflow:hidden}.ea-card--elevated{background-color:var(--color-bg-elevated);border:var(--border-width-thin) solid var(--color-border-default);box-shadow:var(--ea-card-shadow, var(--shadow-md))}.ea-card--outlined{background-color:var(--color-bg-base);border:var(--border-width-thin) solid var(--color-border-default)}.ea-card--filled{background-color:var(--color-bg-subtle)}.ea-card--padding-none .ea-card__header{padding:var(--ea-card-header-padding, 0)}.ea-card--padding-none .ea-card__body{padding:var(--ea-card-body-padding, 0)}.ea-card--padding-none .ea-card__footer{padding:var(--ea-card-footer-padding, 0)}.ea-card--padding-sm .ea-card__header{padding:var(--ea-card-header-padding, var(--space-3) var(--space-3) 0)}.ea-card--padding-sm .ea-card__body{padding:var(--ea-card-body-padding, var(--space-3))}.ea-card--padding-sm .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-3) var(--space-3))}.ea-card--padding-md .ea-card__header{padding:var(--ea-card-header-padding, var(--space-4) var(--space-4) 0)}.ea-card--padding-md .ea-card__body{padding:var(--ea-card-body-padding, var(--space-4))}.ea-card--padding-md .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-4) var(--space-4))}.ea-card--padding-lg .ea-card__header{padding:var(--ea-card-header-padding, var(--space-6) var(--space-6) 0)}.ea-card--padding-lg .ea-card__body{padding:var(--ea-card-body-padding, var(--space-6))}.ea-card--padding-lg .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-6) var(--space-6))}.ea-card--padding-xl .ea-card__header{padding:var(--ea-card-header-padding, var(--space-8) var(--space-8) 0)}.ea-card--padding-xl .ea-card__body{padding:var(--ea-card-body-padding, var(--space-8))}.ea-card--padding-xl .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-8) var(--space-8))}.ea-card--full-width{width:100%}.ea-card__divider{margin:var(--space-2) var(--space-4) 0}.ea-card__header:empty,.ea-card__footer:empty{display:none}.ea-card__header{font-size:var(--text-label-lg-size);font-weight:var(--text-label-lg-weight);line-height:var(--text-label-lg-lh)}.ea-card__body{flex:1;font-size:var(--font-size-sm);line-height:var(--line-height-normal);color:var(--color-text-secondary)}.ea-card__footer{display:flex;align-items:center;justify-content:center;gap:var(--space-3)}.ea-card__footer>*{display:flex;align-items:center;justify-content:center;gap:var(--space-3)}\n"], dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: DividerComponent, selector: "ea-divider", inputs: ["orientation", "label"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
1777
1802
|
}
|
|
1778
1803
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: CardComponent, decorators: [{
|
|
1779
1804
|
type: Component,
|
|
1780
|
-
args: [{ selector: 'ea-card', imports: [NgClass, DividerComponent], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"ea-card\"\n [ngClass]=\"hostClasses()\">\n <div\n class=\"ea-card__header\"\n [style.text-align]=\"headerAlign()\">\n <ng-content select=\"[slot=header]\" />\n </div>\n\n @if (headerDivider()) {\n <ea-divider class=\"ea-card__divider\" />\n }\n\n <div class=\"ea-card__body\">\n <ng-content />\n </div>\n\n <div class=\"ea-card__footer\">\n <ng-content select=\"[slot=footer]\" />\n </div>\n</div>\n", styles: ["ea-card{display:block;min-height:0}.ea-card{display:flex;flex-direction:column;min-height:0;border-radius:var(--radius-lg);font-family:var(--font-family-sans);color:var(--color-text-primary);overflow:hidden}.ea-card--elevated{background-color:var(--color-bg-elevated);box-shadow:var(--ea-card-shadow, var(--shadow-md))}.ea-card--outlined{background-color:var(--color-bg-base);border:var(--border-width-thin) solid var(--color-border-default)}.ea-card--filled{background-color:var(--color-bg-subtle)}.ea-card--padding-none .ea-card__header{padding:var(--ea-card-header-padding, 0)}.ea-card--padding-none .ea-card__body{padding:var(--ea-card-body-padding, 0)}.ea-card--padding-none .ea-card__footer{padding:var(--ea-card-footer-padding, 0)}.ea-card--padding-sm .ea-card__header{padding:var(--ea-card-header-padding, var(--space-3) var(--space-3) 0)}.ea-card--padding-sm .ea-card__body{padding:var(--ea-card-body-padding, var(--space-3))}.ea-card--padding-sm .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-3) var(--space-3))}.ea-card--padding-md .ea-card__header{padding:var(--ea-card-header-padding, var(--space-4) var(--space-4) 0)}.ea-card--padding-md .ea-card__body{padding:var(--ea-card-body-padding, var(--space-4))}.ea-card--padding-md .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-4) var(--space-4))}.ea-card--padding-lg .ea-card__header{padding:var(--ea-card-header-padding, var(--space-6) var(--space-6) 0)}.ea-card--padding-lg .ea-card__body{padding:var(--ea-card-body-padding, var(--space-6))}.ea-card--padding-lg .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-6) var(--space-6))}.ea-card--padding-xl .ea-card__header{padding:var(--ea-card-header-padding, var(--space-8) var(--space-8) 0)}.ea-card--padding-xl .ea-card__body{padding:var(--ea-card-body-padding, var(--space-8))}.ea-card--padding-xl .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-8) var(--space-8))}.ea-card--full-width{width:100%}.ea-card__divider{margin:var(--space-2) var(--space-4) 0}.ea-card__header:empty,.ea-card__footer:empty{display:none}.ea-card__header{font-size:var(--text-label-lg-size);font-weight:var(--text-label-lg-weight);line-height:var(--text-label-lg-lh)}.ea-card__body{flex:1;font-size:var(--font-size-sm);line-height:var(--line-height-normal);color:var(--color-text-secondary)}.ea-card__footer{display:flex;align-items:center;justify-content:center;gap:var(--space-3)}.ea-card__footer>*{display:flex;align-items:center;justify-content:center;gap:var(--space-3)}\n"] }]
|
|
1805
|
+
args: [{ selector: 'ea-card', imports: [NgClass, DividerComponent], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"ea-card\"\n [ngClass]=\"hostClasses()\">\n <div\n class=\"ea-card__header\"\n [style.text-align]=\"headerAlign()\">\n <ng-content select=\"[slot=header]\" />\n </div>\n\n @if (headerDivider()) {\n <ea-divider class=\"ea-card__divider\" />\n }\n\n <div class=\"ea-card__body\">\n <ng-content />\n </div>\n\n <div class=\"ea-card__footer\">\n <ng-content select=\"[slot=footer]\" />\n </div>\n</div>\n", styles: ["ea-card{display:block;min-height:0}.ea-card{display:flex;flex-direction:column;min-height:0;border-radius:var(--radius-lg);font-family:var(--font-family-sans);color:var(--color-text-primary);overflow:hidden}.ea-card--elevated{background-color:var(--color-bg-elevated);border:var(--border-width-thin) solid var(--color-border-default);box-shadow:var(--ea-card-shadow, var(--shadow-md))}.ea-card--outlined{background-color:var(--color-bg-base);border:var(--border-width-thin) solid var(--color-border-default)}.ea-card--filled{background-color:var(--color-bg-subtle)}.ea-card--padding-none .ea-card__header{padding:var(--ea-card-header-padding, 0)}.ea-card--padding-none .ea-card__body{padding:var(--ea-card-body-padding, 0)}.ea-card--padding-none .ea-card__footer{padding:var(--ea-card-footer-padding, 0)}.ea-card--padding-sm .ea-card__header{padding:var(--ea-card-header-padding, var(--space-3) var(--space-3) 0)}.ea-card--padding-sm .ea-card__body{padding:var(--ea-card-body-padding, var(--space-3))}.ea-card--padding-sm .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-3) var(--space-3))}.ea-card--padding-md .ea-card__header{padding:var(--ea-card-header-padding, var(--space-4) var(--space-4) 0)}.ea-card--padding-md .ea-card__body{padding:var(--ea-card-body-padding, var(--space-4))}.ea-card--padding-md .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-4) var(--space-4))}.ea-card--padding-lg .ea-card__header{padding:var(--ea-card-header-padding, var(--space-6) var(--space-6) 0)}.ea-card--padding-lg .ea-card__body{padding:var(--ea-card-body-padding, var(--space-6))}.ea-card--padding-lg .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-6) var(--space-6))}.ea-card--padding-xl .ea-card__header{padding:var(--ea-card-header-padding, var(--space-8) var(--space-8) 0)}.ea-card--padding-xl .ea-card__body{padding:var(--ea-card-body-padding, var(--space-8))}.ea-card--padding-xl .ea-card__footer{padding:var(--ea-card-footer-padding, 0 var(--space-8) var(--space-8))}.ea-card--full-width{width:100%}.ea-card__divider{margin:var(--space-2) var(--space-4) 0}.ea-card__header:empty,.ea-card__footer:empty{display:none}.ea-card__header{font-size:var(--text-label-lg-size);font-weight:var(--text-label-lg-weight);line-height:var(--text-label-lg-lh)}.ea-card__body{flex:1;font-size:var(--font-size-sm);line-height:var(--line-height-normal);color:var(--color-text-secondary)}.ea-card__footer{display:flex;align-items:center;justify-content:center;gap:var(--space-3)}.ea-card__footer>*{display:flex;align-items:center;justify-content:center;gap:var(--space-3)}\n"] }]
|
|
1781
1806
|
}], propDecorators: { variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], padding: [{ type: i0.Input, args: [{ isSignal: true, alias: "padding", required: false }] }], fullWidth: [{ type: i0.Input, args: [{ isSignal: true, alias: "fullWidth", required: false }] }], headerAlign: [{ type: i0.Input, args: [{ isSignal: true, alias: "headerAlign", required: false }] }], headerDivider: [{ type: i0.Input, args: [{ isSignal: true, alias: "headerDivider", required: false }] }] } });
|
|
1782
1807
|
|
|
1783
1808
|
/**
|
|
@@ -2085,7 +2110,7 @@ class DataTableComponent {
|
|
|
2085
2110
|
return key ? item[key] : _index;
|
|
2086
2111
|
}
|
|
2087
2112
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: DataTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2088
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: DataTableComponent, isStandalone: true, selector: "ea-data-table", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: true, transformFunction: null }, data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: true, transformFunction: null }, trackBy: { classPropertyName: "trackBy", publicName: "trackBy", isSignal: true, isRequired: false, transformFunction: null }, density: { classPropertyName: "density", publicName: "density", isSignal: true, isRequired: false, transformFunction: null }, stickyHeader: { classPropertyName: "stickyHeader", publicName: "stickyHeader", isSignal: true, isRequired: false, transformFunction: null }, striped: { classPropertyName: "striped", publicName: "striped", isSignal: true, isRequired: false, transformFunction: null }, hoverable: { classPropertyName: "hoverable", publicName: "hoverable", isSignal: true, isRequired: false, transformFunction: null }, bordered: { classPropertyName: "bordered", publicName: "bordered", isSignal: true, isRequired: false, transformFunction: null }, noDataText: { classPropertyName: "noDataText", publicName: "noDataText", isSignal: true, isRequired: false, transformFunction: null }, sort: { classPropertyName: "sort", publicName: "sort", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { sort: "sortChange", sorted: "sorted" }, queries: [{ propertyName: "noDataTemplate", first: true, predicate: ["noData"], descendants: true, isSignal: true }], ngImport: i0, template: "<div\n class=\"ea-data-table\"\n [ngClass]=\"hostClasses()\"\n role=\"grid\">\n <table class=\"ea-data-table__table\">\n
|
|
2113
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: DataTableComponent, isStandalone: true, selector: "ea-data-table", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: true, transformFunction: null }, data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: true, transformFunction: null }, trackBy: { classPropertyName: "trackBy", publicName: "trackBy", isSignal: true, isRequired: false, transformFunction: null }, density: { classPropertyName: "density", publicName: "density", isSignal: true, isRequired: false, transformFunction: null }, stickyHeader: { classPropertyName: "stickyHeader", publicName: "stickyHeader", isSignal: true, isRequired: false, transformFunction: null }, striped: { classPropertyName: "striped", publicName: "striped", isSignal: true, isRequired: false, transformFunction: null }, hoverable: { classPropertyName: "hoverable", publicName: "hoverable", isSignal: true, isRequired: false, transformFunction: null }, bordered: { classPropertyName: "bordered", publicName: "bordered", isSignal: true, isRequired: false, transformFunction: null }, noDataText: { classPropertyName: "noDataText", publicName: "noDataText", isSignal: true, isRequired: false, transformFunction: null }, sort: { classPropertyName: "sort", publicName: "sort", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { sort: "sortChange", sorted: "sorted" }, queries: [{ propertyName: "noDataTemplate", first: true, predicate: ["noData"], descendants: true, isSignal: true }], ngImport: i0, template: "<div\n class=\"ea-data-table\"\n [ngClass]=\"hostClasses()\"\n role=\"grid\">\n <div class=\"ea-data-table__scroll\">\n <table class=\"ea-data-table__table\">\n <thead class=\"ea-data-table__head\">\n <tr class=\"ea-data-table__row ea-data-table__row--header\">\n @for (col of columns(); track col.key) {\n <th\n class=\"ea-data-table__cell ea-data-table__cell--header\"\n [class.ea-data-table__cell--sortable]=\"col.sortable\"\n [class.ea-data-table__cell--sorted]=\"\n sort().column === col.key && sort().direction\n \"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n [style.width]=\"col.width ?? null\"\n [attr.aria-sort]=\"\n sort().column === col.key && sort().direction === 'asc'\n ? 'ascending'\n : sort().column === col.key && sort().direction === 'desc'\n ? 'descending'\n : col.sortable\n ? 'none'\n : null\n \"\n (click)=\"onHeaderClick(col)\"\n (keydown.enter)=\"onHeaderClick(col)\"\n (keydown.space)=\"$event.preventDefault(); onHeaderClick(col)\"\n [attr.tabindex]=\"col.sortable ? 0 : null\">\n @if (col.headerTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.headerTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: col }\" />\n } @else {\n <span class=\"ea-data-table__header-text\">{{ col.label }}</span>\n }\n @if (col.sortable) {\n <span class=\"ea-data-table__sort-icon\">\n @if (sort().column === col.key && sort().direction === 'asc') {\n <ea-icon-arrow-up />\n } @else if (sort().column === col.key && sort().direction === 'desc') {\n <ea-icon-arrow-down />\n } @else {\n <ea-icon-chevrons-up-down />\n }\n </span>\n }\n </th>\n }\n </tr>\n </thead>\n <tbody class=\"ea-data-table__body\">\n @if (sortedData().length === 0) {\n <tr class=\"ea-data-table__row ea-data-table__row--empty\">\n <td\n class=\"ea-data-table__cell ea-data-table__cell--empty\"\n [attr.colspan]=\"columns().length\">\n @if (noDataTemplate()) {\n <ng-container [ngTemplateOutlet]=\"noDataTemplate()!\" />\n } @else {\n {{ noDataText() }}\n }\n </td>\n </tr>\n } @else {\n @for (row of sortedData(); track trackByFn($index, row)) {\n <tr\n class=\"ea-data-table__row\"\n role=\"row\">\n @for (col of columns(); track col.key) {\n <td\n class=\"ea-data-table__cell\"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n role=\"gridcell\">\n @if (col.cellTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.cellTemplate\"\n [ngTemplateOutletContext]=\"{\n $implicit: row,\n value: getCellValue(row, col.key),\n }\" />\n } @else if (col.format) {\n {{ col.format(getCellValue(row, col.key)) }}\n } @else {\n {{ getCellValue(row, col.key) }}\n }\n </td>\n }\n </tr>\n }\n }\n </tbody>\n </table>\n </div>\n <ng-content select=\"ea-paginator\" />\n</div>\n", styles: [".ea-data-table{overflow:hidden;width:100%;border:var(--border-width-thin) solid var(--color-border-default);border-radius:var(--radius-lg);background-color:var(--color-bg-base)}.ea-data-table__scroll{overflow-x:auto}.ea-data-table__table{width:100%;border-spacing:0;border-collapse:collapse;font-family:var(--font-family-sans);font-size:var(--font-size-sm);color:var(--color-text-primary);table-layout:auto}.ea-data-table__head{background-color:var(--color-bg-subtle)}.ea-data-table__cell--header{position:relative;font-weight:var(--font-weight-medium);font-size:var(--text-label-sm-size);line-height:var(--text-label-sm-lh);letter-spacing:var(--letter-spacing-wide);text-transform:uppercase;text-align:left;white-space:nowrap;color:var(--color-text-secondary);border-bottom:var(--border-width-thin) solid var(--color-border-default);-webkit-user-select:none;user-select:none}.ea-data-table__cell--sortable{cursor:pointer;transition:var(--transition-colors)}.ea-data-table__cell--sortable:hover{color:var(--color-text-primary);background-color:var(--color-bg-muted)}.ea-data-table__cell--sortable:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}.ea-data-table__cell--sorted{color:var(--color-brand-default)}.ea-data-table__header-text{display:inline;vertical-align:middle}.ea-data-table__sort-icon{display:inline-flex;vertical-align:middle;width:1em;height:1em;margin-left:var(--space-1);opacity:.5;transition:var(--transition-opacity)}.ea-data-table__cell--sortable:hover .ea-data-table__sort-icon,.ea-data-table__cell--sorted .ea-data-table__sort-icon{opacity:1}.ea-data-table__row{border-bottom:var(--border-width-thin) solid var(--color-border-default);transition:var(--transition-colors)}.ea-data-table__row:last-child{border-bottom:none}.ea-data-table__cell{text-align:left;vertical-align:middle}.ea-data-table__cell--align-center{text-align:center}.ea-data-table__cell--align-right{text-align:right}.ea-data-table__cell--empty{text-align:center;color:var(--color-text-tertiary);font-style:italic}.ea-data-table--compact .ea-data-table__cell{padding:var(--space-1-5) var(--space-3)}.ea-data-table--comfortable .ea-data-table__cell{padding:var(--space-2-5) var(--space-4)}.ea-data-table--spacious .ea-data-table__cell{padding:var(--space-4) var(--space-6)}.ea-data-table--sticky,.ea-data-table--sticky .ea-data-table__scroll{max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__table{display:flex;flex-direction:column;min-width:32rem;max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__head{display:block;flex-shrink:0}.ea-data-table--sticky .ea-data-table__head .ea-data-table__row--header{display:table;width:100%;table-layout:fixed}.ea-data-table--sticky .ea-data-table__body{display:block;overflow-y:auto;flex:1 1 auto;min-height:0}.ea-data-table--sticky .ea-data-table__body .ea-data-table__row{display:table;width:100%;table-layout:fixed}.ea-data-table--striped .ea-data-table__body .ea-data-table__row:nth-child(2n){background-color:var(--color-bg-subtle)}.ea-data-table--hoverable .ea-data-table__body .ea-data-table__row:not(.ea-data-table__row--empty):hover{background-color:var(--color-bg-muted)}.ea-data-table--bordered .ea-data-table__cell{border-right:var(--border-width-thin) solid var(--color-border-default)}.ea-data-table--bordered .ea-data-table__cell:last-child{border-right:none}\n"], dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: ArrowUpIconComponent, selector: "ea-icon-arrow-up" }, { kind: "component", type: ArrowDownIconComponent, selector: "ea-icon-arrow-down" }, { kind: "component", type: ChevronsUpDownIconComponent, selector: "ea-icon-chevrons-up-down" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
2089
2114
|
}
|
|
2090
2115
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: DataTableComponent, decorators: [{
|
|
2091
2116
|
type: Component,
|
|
@@ -2095,7 +2120,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
2095
2120
|
ArrowUpIconComponent,
|
|
2096
2121
|
ArrowDownIconComponent,
|
|
2097
2122
|
ChevronsUpDownIconComponent,
|
|
2098
|
-
], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"ea-data-table\"\n [ngClass]=\"hostClasses()\"\n role=\"grid\">\n <table class=\"ea-data-table__table\">\n
|
|
2123
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"ea-data-table\"\n [ngClass]=\"hostClasses()\"\n role=\"grid\">\n <div class=\"ea-data-table__scroll\">\n <table class=\"ea-data-table__table\">\n <thead class=\"ea-data-table__head\">\n <tr class=\"ea-data-table__row ea-data-table__row--header\">\n @for (col of columns(); track col.key) {\n <th\n class=\"ea-data-table__cell ea-data-table__cell--header\"\n [class.ea-data-table__cell--sortable]=\"col.sortable\"\n [class.ea-data-table__cell--sorted]=\"\n sort().column === col.key && sort().direction\n \"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n [style.width]=\"col.width ?? null\"\n [attr.aria-sort]=\"\n sort().column === col.key && sort().direction === 'asc'\n ? 'ascending'\n : sort().column === col.key && sort().direction === 'desc'\n ? 'descending'\n : col.sortable\n ? 'none'\n : null\n \"\n (click)=\"onHeaderClick(col)\"\n (keydown.enter)=\"onHeaderClick(col)\"\n (keydown.space)=\"$event.preventDefault(); onHeaderClick(col)\"\n [attr.tabindex]=\"col.sortable ? 0 : null\">\n @if (col.headerTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.headerTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: col }\" />\n } @else {\n <span class=\"ea-data-table__header-text\">{{ col.label }}</span>\n }\n @if (col.sortable) {\n <span class=\"ea-data-table__sort-icon\">\n @if (sort().column === col.key && sort().direction === 'asc') {\n <ea-icon-arrow-up />\n } @else if (sort().column === col.key && sort().direction === 'desc') {\n <ea-icon-arrow-down />\n } @else {\n <ea-icon-chevrons-up-down />\n }\n </span>\n }\n </th>\n }\n </tr>\n </thead>\n <tbody class=\"ea-data-table__body\">\n @if (sortedData().length === 0) {\n <tr class=\"ea-data-table__row ea-data-table__row--empty\">\n <td\n class=\"ea-data-table__cell ea-data-table__cell--empty\"\n [attr.colspan]=\"columns().length\">\n @if (noDataTemplate()) {\n <ng-container [ngTemplateOutlet]=\"noDataTemplate()!\" />\n } @else {\n {{ noDataText() }}\n }\n </td>\n </tr>\n } @else {\n @for (row of sortedData(); track trackByFn($index, row)) {\n <tr\n class=\"ea-data-table__row\"\n role=\"row\">\n @for (col of columns(); track col.key) {\n <td\n class=\"ea-data-table__cell\"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n role=\"gridcell\">\n @if (col.cellTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.cellTemplate\"\n [ngTemplateOutletContext]=\"{\n $implicit: row,\n value: getCellValue(row, col.key),\n }\" />\n } @else if (col.format) {\n {{ col.format(getCellValue(row, col.key)) }}\n } @else {\n {{ getCellValue(row, col.key) }}\n }\n </td>\n }\n </tr>\n }\n }\n </tbody>\n </table>\n </div>\n <ng-content select=\"ea-paginator\" />\n</div>\n", styles: [".ea-data-table{overflow:hidden;width:100%;border:var(--border-width-thin) solid var(--color-border-default);border-radius:var(--radius-lg);background-color:var(--color-bg-base)}.ea-data-table__scroll{overflow-x:auto}.ea-data-table__table{width:100%;border-spacing:0;border-collapse:collapse;font-family:var(--font-family-sans);font-size:var(--font-size-sm);color:var(--color-text-primary);table-layout:auto}.ea-data-table__head{background-color:var(--color-bg-subtle)}.ea-data-table__cell--header{position:relative;font-weight:var(--font-weight-medium);font-size:var(--text-label-sm-size);line-height:var(--text-label-sm-lh);letter-spacing:var(--letter-spacing-wide);text-transform:uppercase;text-align:left;white-space:nowrap;color:var(--color-text-secondary);border-bottom:var(--border-width-thin) solid var(--color-border-default);-webkit-user-select:none;user-select:none}.ea-data-table__cell--sortable{cursor:pointer;transition:var(--transition-colors)}.ea-data-table__cell--sortable:hover{color:var(--color-text-primary);background-color:var(--color-bg-muted)}.ea-data-table__cell--sortable:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}.ea-data-table__cell--sorted{color:var(--color-brand-default)}.ea-data-table__header-text{display:inline;vertical-align:middle}.ea-data-table__sort-icon{display:inline-flex;vertical-align:middle;width:1em;height:1em;margin-left:var(--space-1);opacity:.5;transition:var(--transition-opacity)}.ea-data-table__cell--sortable:hover .ea-data-table__sort-icon,.ea-data-table__cell--sorted .ea-data-table__sort-icon{opacity:1}.ea-data-table__row{border-bottom:var(--border-width-thin) solid var(--color-border-default);transition:var(--transition-colors)}.ea-data-table__row:last-child{border-bottom:none}.ea-data-table__cell{text-align:left;vertical-align:middle}.ea-data-table__cell--align-center{text-align:center}.ea-data-table__cell--align-right{text-align:right}.ea-data-table__cell--empty{text-align:center;color:var(--color-text-tertiary);font-style:italic}.ea-data-table--compact .ea-data-table__cell{padding:var(--space-1-5) var(--space-3)}.ea-data-table--comfortable .ea-data-table__cell{padding:var(--space-2-5) var(--space-4)}.ea-data-table--spacious .ea-data-table__cell{padding:var(--space-4) var(--space-6)}.ea-data-table--sticky,.ea-data-table--sticky .ea-data-table__scroll{max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__table{display:flex;flex-direction:column;min-width:32rem;max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__head{display:block;flex-shrink:0}.ea-data-table--sticky .ea-data-table__head .ea-data-table__row--header{display:table;width:100%;table-layout:fixed}.ea-data-table--sticky .ea-data-table__body{display:block;overflow-y:auto;flex:1 1 auto;min-height:0}.ea-data-table--sticky .ea-data-table__body .ea-data-table__row{display:table;width:100%;table-layout:fixed}.ea-data-table--striped .ea-data-table__body .ea-data-table__row:nth-child(2n){background-color:var(--color-bg-subtle)}.ea-data-table--hoverable .ea-data-table__body .ea-data-table__row:not(.ea-data-table__row--empty):hover{background-color:var(--color-bg-muted)}.ea-data-table--bordered .ea-data-table__cell{border-right:var(--border-width-thin) solid var(--color-border-default)}.ea-data-table--bordered .ea-data-table__cell:last-child{border-right:none}\n"] }]
|
|
2099
2124
|
}], propDecorators: { columns: [{ type: i0.Input, args: [{ isSignal: true, alias: "columns", required: true }] }], data: [{ type: i0.Input, args: [{ isSignal: true, alias: "data", required: true }] }], trackBy: [{ type: i0.Input, args: [{ isSignal: true, alias: "trackBy", required: false }] }], density: [{ type: i0.Input, args: [{ isSignal: true, alias: "density", required: false }] }], stickyHeader: [{ type: i0.Input, args: [{ isSignal: true, alias: "stickyHeader", required: false }] }], striped: [{ type: i0.Input, args: [{ isSignal: true, alias: "striped", required: false }] }], hoverable: [{ type: i0.Input, args: [{ isSignal: true, alias: "hoverable", required: false }] }], bordered: [{ type: i0.Input, args: [{ isSignal: true, alias: "bordered", required: false }] }], noDataText: [{ type: i0.Input, args: [{ isSignal: true, alias: "noDataText", required: false }] }], sort: [{ type: i0.Input, args: [{ isSignal: true, alias: "sort", required: false }] }, { type: i0.Output, args: ["sortChange"] }], sorted: [{ type: i0.Output, args: ["sorted"] }], noDataTemplate: [{ type: i0.ContentChild, args: ['noData', { isSignal: true }] }] } });
|
|
2100
2125
|
|
|
2101
2126
|
/**
|
|
@@ -3603,6 +3628,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
3603
3628
|
}]
|
|
3604
3629
|
}] });
|
|
3605
3630
|
|
|
3631
|
+
/**
|
|
3632
|
+
* @deprecated Will be removed in v2.0.0. The icon depicts Apple Inc.'s logo,
|
|
3633
|
+
* which is more strictly protected than other brand marks. Source the asset
|
|
3634
|
+
* directly from Apple per their brand guidelines for use cases like "Sign in
|
|
3635
|
+
* with Apple".
|
|
3636
|
+
*/
|
|
3606
3637
|
class AppleIconComponent {
|
|
3607
3638
|
brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
|
|
3608
3639
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AppleIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -3641,6 +3672,66 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
3641
3672
|
}]
|
|
3642
3673
|
}], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
|
|
3643
3674
|
|
|
3675
|
+
class ArchiveIconComponent {
|
|
3676
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ArchiveIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3677
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ArchiveIconComponent, isStandalone: true, selector: "ea-icon-archive", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
3678
|
+
<svg
|
|
3679
|
+
viewBox="0 0 24 24"
|
|
3680
|
+
fill="none"
|
|
3681
|
+
stroke="currentColor"
|
|
3682
|
+
stroke-width="2"
|
|
3683
|
+
stroke-linecap="round"
|
|
3684
|
+
stroke-linejoin="round"
|
|
3685
|
+
aria-hidden="true"
|
|
3686
|
+
width="100%"
|
|
3687
|
+
height="100%">
|
|
3688
|
+
<polyline points="21 8 21 21 3 21 3 8" />
|
|
3689
|
+
<rect
|
|
3690
|
+
x="1"
|
|
3691
|
+
y="3"
|
|
3692
|
+
width="22"
|
|
3693
|
+
height="5" />
|
|
3694
|
+
<line
|
|
3695
|
+
x1="10"
|
|
3696
|
+
y1="12"
|
|
3697
|
+
x2="14"
|
|
3698
|
+
y2="12" />
|
|
3699
|
+
</svg>
|
|
3700
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3701
|
+
}
|
|
3702
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ArchiveIconComponent, decorators: [{
|
|
3703
|
+
type: Component,
|
|
3704
|
+
args: [{
|
|
3705
|
+
selector: 'ea-icon-archive',
|
|
3706
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3707
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
3708
|
+
template: `
|
|
3709
|
+
<svg
|
|
3710
|
+
viewBox="0 0 24 24"
|
|
3711
|
+
fill="none"
|
|
3712
|
+
stroke="currentColor"
|
|
3713
|
+
stroke-width="2"
|
|
3714
|
+
stroke-linecap="round"
|
|
3715
|
+
stroke-linejoin="round"
|
|
3716
|
+
aria-hidden="true"
|
|
3717
|
+
width="100%"
|
|
3718
|
+
height="100%">
|
|
3719
|
+
<polyline points="21 8 21 21 3 21 3 8" />
|
|
3720
|
+
<rect
|
|
3721
|
+
x="1"
|
|
3722
|
+
y="3"
|
|
3723
|
+
width="22"
|
|
3724
|
+
height="5" />
|
|
3725
|
+
<line
|
|
3726
|
+
x1="10"
|
|
3727
|
+
y1="12"
|
|
3728
|
+
x2="14"
|
|
3729
|
+
y2="12" />
|
|
3730
|
+
</svg>
|
|
3731
|
+
`,
|
|
3732
|
+
}]
|
|
3733
|
+
}] });
|
|
3734
|
+
|
|
3644
3735
|
class ArrowLeftIconComponent {
|
|
3645
3736
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ArrowLeftIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3646
3737
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ArrowLeftIconComponent, isStandalone: true, selector: "ea-icon-arrow-left", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
@@ -3741,9 +3832,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
3741
3832
|
}]
|
|
3742
3833
|
}] });
|
|
3743
3834
|
|
|
3744
|
-
class
|
|
3745
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
3746
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
3835
|
+
class AtSignIconComponent {
|
|
3836
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AtSignIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3837
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: AtSignIconComponent, isStandalone: true, selector: "ea-icon-at-sign", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
3747
3838
|
<svg
|
|
3748
3839
|
viewBox="0 0 24 24"
|
|
3749
3840
|
fill="none"
|
|
@@ -3754,15 +3845,18 @@ class BellIconComponent {
|
|
|
3754
3845
|
aria-hidden="true"
|
|
3755
3846
|
width="100%"
|
|
3756
3847
|
height="100%">
|
|
3757
|
-
<
|
|
3758
|
-
|
|
3848
|
+
<circle
|
|
3849
|
+
cx="12"
|
|
3850
|
+
cy="12"
|
|
3851
|
+
r="4" />
|
|
3852
|
+
<path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94" />
|
|
3759
3853
|
</svg>
|
|
3760
3854
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3761
3855
|
}
|
|
3762
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
3856
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AtSignIconComponent, decorators: [{
|
|
3763
3857
|
type: Component,
|
|
3764
3858
|
args: [{
|
|
3765
|
-
selector: 'ea-icon-
|
|
3859
|
+
selector: 'ea-icon-at-sign',
|
|
3766
3860
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3767
3861
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
3768
3862
|
template: `
|
|
@@ -3776,16 +3870,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
3776
3870
|
aria-hidden="true"
|
|
3777
3871
|
width="100%"
|
|
3778
3872
|
height="100%">
|
|
3779
|
-
<
|
|
3780
|
-
|
|
3873
|
+
<circle
|
|
3874
|
+
cx="12"
|
|
3875
|
+
cy="12"
|
|
3876
|
+
r="4" />
|
|
3877
|
+
<path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94" />
|
|
3781
3878
|
</svg>
|
|
3782
3879
|
`,
|
|
3783
3880
|
}]
|
|
3784
3881
|
}] });
|
|
3785
3882
|
|
|
3786
|
-
class
|
|
3787
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
3788
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
3883
|
+
class BarChartIconComponent {
|
|
3884
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BarChartIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3885
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: BarChartIconComponent, isStandalone: true, selector: "ea-icon-bar-chart", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
3789
3886
|
<svg
|
|
3790
3887
|
viewBox="0 0 24 24"
|
|
3791
3888
|
fill="none"
|
|
@@ -3796,15 +3893,28 @@ class CheckCircleIconComponent {
|
|
|
3796
3893
|
aria-hidden="true"
|
|
3797
3894
|
width="100%"
|
|
3798
3895
|
height="100%">
|
|
3799
|
-
<
|
|
3800
|
-
|
|
3896
|
+
<line
|
|
3897
|
+
x1="12"
|
|
3898
|
+
y1="20"
|
|
3899
|
+
x2="12"
|
|
3900
|
+
y2="10" />
|
|
3901
|
+
<line
|
|
3902
|
+
x1="18"
|
|
3903
|
+
y1="20"
|
|
3904
|
+
x2="18"
|
|
3905
|
+
y2="4" />
|
|
3906
|
+
<line
|
|
3907
|
+
x1="6"
|
|
3908
|
+
y1="20"
|
|
3909
|
+
x2="6"
|
|
3910
|
+
y2="16" />
|
|
3801
3911
|
</svg>
|
|
3802
3912
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3803
3913
|
}
|
|
3804
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
3914
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BarChartIconComponent, decorators: [{
|
|
3805
3915
|
type: Component,
|
|
3806
3916
|
args: [{
|
|
3807
|
-
selector: 'ea-icon-
|
|
3917
|
+
selector: 'ea-icon-bar-chart',
|
|
3808
3918
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3809
3919
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
3810
3920
|
template: `
|
|
@@ -3818,16 +3928,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
3818
3928
|
aria-hidden="true"
|
|
3819
3929
|
width="100%"
|
|
3820
3930
|
height="100%">
|
|
3821
|
-
<
|
|
3822
|
-
|
|
3931
|
+
<line
|
|
3932
|
+
x1="12"
|
|
3933
|
+
y1="20"
|
|
3934
|
+
x2="12"
|
|
3935
|
+
y2="10" />
|
|
3936
|
+
<line
|
|
3937
|
+
x1="18"
|
|
3938
|
+
y1="20"
|
|
3939
|
+
x2="18"
|
|
3940
|
+
y2="4" />
|
|
3941
|
+
<line
|
|
3942
|
+
x1="6"
|
|
3943
|
+
y1="20"
|
|
3944
|
+
x2="6"
|
|
3945
|
+
y2="16" />
|
|
3823
3946
|
</svg>
|
|
3824
3947
|
`,
|
|
3825
3948
|
}]
|
|
3826
3949
|
}] });
|
|
3827
3950
|
|
|
3828
|
-
class
|
|
3829
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
3830
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
3951
|
+
class BellIconComponent {
|
|
3952
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BellIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3953
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: BellIconComponent, isStandalone: true, selector: "ea-icon-bell", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
3831
3954
|
<svg
|
|
3832
3955
|
viewBox="0 0 24 24"
|
|
3833
3956
|
fill="none"
|
|
@@ -3838,14 +3961,15 @@ class ChevronUpIconComponent {
|
|
|
3838
3961
|
aria-hidden="true"
|
|
3839
3962
|
width="100%"
|
|
3840
3963
|
height="100%">
|
|
3841
|
-
<
|
|
3964
|
+
<path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" />
|
|
3965
|
+
<path d="M13.73 21a2 2 0 0 1-3.46 0" />
|
|
3842
3966
|
</svg>
|
|
3843
3967
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3844
3968
|
}
|
|
3845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
3969
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BellIconComponent, decorators: [{
|
|
3846
3970
|
type: Component,
|
|
3847
3971
|
args: [{
|
|
3848
|
-
selector: 'ea-icon-
|
|
3972
|
+
selector: 'ea-icon-bell',
|
|
3849
3973
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3850
3974
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
3851
3975
|
template: `
|
|
@@ -3859,15 +3983,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
3859
3983
|
aria-hidden="true"
|
|
3860
3984
|
width="100%"
|
|
3861
3985
|
height="100%">
|
|
3862
|
-
<
|
|
3986
|
+
<path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" />
|
|
3987
|
+
<path d="M13.73 21a2 2 0 0 1-3.46 0" />
|
|
3863
3988
|
</svg>
|
|
3864
3989
|
`,
|
|
3865
3990
|
}]
|
|
3866
3991
|
}] });
|
|
3867
3992
|
|
|
3868
|
-
class
|
|
3869
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
3870
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
3993
|
+
class BookmarkIconComponent {
|
|
3994
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BookmarkIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3995
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: BookmarkIconComponent, isStandalone: true, selector: "ea-icon-bookmark", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
3871
3996
|
<svg
|
|
3872
3997
|
viewBox="0 0 24 24"
|
|
3873
3998
|
fill="none"
|
|
@@ -3878,18 +4003,14 @@ class ClockIconComponent {
|
|
|
3878
4003
|
aria-hidden="true"
|
|
3879
4004
|
width="100%"
|
|
3880
4005
|
height="100%">
|
|
3881
|
-
<
|
|
3882
|
-
cx="12"
|
|
3883
|
-
cy="12"
|
|
3884
|
-
r="10" />
|
|
3885
|
-
<polyline points="12 6 12 12 16 14" />
|
|
4006
|
+
<path d="M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" />
|
|
3886
4007
|
</svg>
|
|
3887
4008
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3888
4009
|
}
|
|
3889
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4010
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BookmarkIconComponent, decorators: [{
|
|
3890
4011
|
type: Component,
|
|
3891
4012
|
args: [{
|
|
3892
|
-
selector: 'ea-icon-
|
|
4013
|
+
selector: 'ea-icon-bookmark',
|
|
3893
4014
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3894
4015
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
3895
4016
|
template: `
|
|
@@ -3903,19 +4024,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
3903
4024
|
aria-hidden="true"
|
|
3904
4025
|
width="100%"
|
|
3905
4026
|
height="100%">
|
|
3906
|
-
<
|
|
3907
|
-
cx="12"
|
|
3908
|
-
cy="12"
|
|
3909
|
-
r="10" />
|
|
3910
|
-
<polyline points="12 6 12 12 16 14" />
|
|
4027
|
+
<path d="M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" />
|
|
3911
4028
|
</svg>
|
|
3912
4029
|
`,
|
|
3913
4030
|
}]
|
|
3914
4031
|
}] });
|
|
3915
4032
|
|
|
3916
|
-
class
|
|
3917
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
3918
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
4033
|
+
class BriefcaseIconComponent {
|
|
4034
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BriefcaseIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4035
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: BriefcaseIconComponent, isStandalone: true, selector: "ea-icon-briefcase", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
3919
4036
|
<svg
|
|
3920
4037
|
viewBox="0 0 24 24"
|
|
3921
4038
|
fill="none"
|
|
@@ -3927,20 +4044,20 @@ class CopyIconComponent {
|
|
|
3927
4044
|
width="100%"
|
|
3928
4045
|
height="100%">
|
|
3929
4046
|
<rect
|
|
3930
|
-
x="
|
|
3931
|
-
y="
|
|
3932
|
-
width="
|
|
3933
|
-
height="
|
|
4047
|
+
x="2"
|
|
4048
|
+
y="7"
|
|
4049
|
+
width="20"
|
|
4050
|
+
height="14"
|
|
3934
4051
|
rx="2"
|
|
3935
4052
|
ry="2" />
|
|
3936
|
-
<path d="
|
|
4053
|
+
<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" />
|
|
3937
4054
|
</svg>
|
|
3938
4055
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3939
4056
|
}
|
|
3940
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4057
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: BriefcaseIconComponent, decorators: [{
|
|
3941
4058
|
type: Component,
|
|
3942
4059
|
args: [{
|
|
3943
|
-
selector: 'ea-icon-
|
|
4060
|
+
selector: 'ea-icon-briefcase',
|
|
3944
4061
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3945
4062
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
3946
4063
|
template: `
|
|
@@ -3955,21 +4072,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
3955
4072
|
width="100%"
|
|
3956
4073
|
height="100%">
|
|
3957
4074
|
<rect
|
|
3958
|
-
x="
|
|
3959
|
-
y="
|
|
3960
|
-
width="
|
|
3961
|
-
height="
|
|
4075
|
+
x="2"
|
|
4076
|
+
y="7"
|
|
4077
|
+
width="20"
|
|
4078
|
+
height="14"
|
|
3962
4079
|
rx="2"
|
|
3963
4080
|
ry="2" />
|
|
3964
|
-
<path d="
|
|
4081
|
+
<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" />
|
|
3965
4082
|
</svg>
|
|
3966
4083
|
`,
|
|
3967
4084
|
}]
|
|
3968
4085
|
}] });
|
|
3969
4086
|
|
|
3970
|
-
class
|
|
3971
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
3972
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
4087
|
+
class CheckCircleIconComponent {
|
|
4088
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: CheckCircleIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4089
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: CheckCircleIconComponent, isStandalone: true, selector: "ea-icon-check-circle", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
3973
4090
|
<svg
|
|
3974
4091
|
viewBox="0 0 24 24"
|
|
3975
4092
|
fill="none"
|
|
@@ -3980,20 +4097,15 @@ class DownloadIconComponent {
|
|
|
3980
4097
|
aria-hidden="true"
|
|
3981
4098
|
width="100%"
|
|
3982
4099
|
height="100%">
|
|
3983
|
-
<path d="
|
|
3984
|
-
<polyline points="
|
|
3985
|
-
<line
|
|
3986
|
-
x1="12"
|
|
3987
|
-
y1="15"
|
|
3988
|
-
x2="12"
|
|
3989
|
-
y2="3" />
|
|
4100
|
+
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14" />
|
|
4101
|
+
<polyline points="22 4 12 14.01 9 11.01" />
|
|
3990
4102
|
</svg>
|
|
3991
4103
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3992
4104
|
}
|
|
3993
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: CheckCircleIconComponent, decorators: [{
|
|
3994
4106
|
type: Component,
|
|
3995
4107
|
args: [{
|
|
3996
|
-
selector: 'ea-icon-
|
|
4108
|
+
selector: 'ea-icon-check-circle',
|
|
3997
4109
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3998
4110
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
3999
4111
|
template: `
|
|
@@ -4007,21 +4119,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4007
4119
|
aria-hidden="true"
|
|
4008
4120
|
width="100%"
|
|
4009
4121
|
height="100%">
|
|
4010
|
-
<path d="
|
|
4011
|
-
<polyline points="
|
|
4012
|
-
<line
|
|
4013
|
-
x1="12"
|
|
4014
|
-
y1="15"
|
|
4015
|
-
x2="12"
|
|
4016
|
-
y2="3" />
|
|
4122
|
+
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14" />
|
|
4123
|
+
<polyline points="22 4 12 14.01 9 11.01" />
|
|
4017
4124
|
</svg>
|
|
4018
4125
|
`,
|
|
4019
4126
|
}]
|
|
4020
4127
|
}] });
|
|
4021
4128
|
|
|
4022
|
-
class
|
|
4023
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4024
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
4129
|
+
class ChevronUpIconComponent {
|
|
4130
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ChevronUpIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4131
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ChevronUpIconComponent, isStandalone: true, selector: "ea-icon-chevron-up", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4025
4132
|
<svg
|
|
4026
4133
|
viewBox="0 0 24 24"
|
|
4027
4134
|
fill="none"
|
|
@@ -4032,20 +4139,14 @@ class ExternalLinkIconComponent {
|
|
|
4032
4139
|
aria-hidden="true"
|
|
4033
4140
|
width="100%"
|
|
4034
4141
|
height="100%">
|
|
4035
|
-
<
|
|
4036
|
-
<polyline points="15 3 21 3 21 9" />
|
|
4037
|
-
<line
|
|
4038
|
-
x1="10"
|
|
4039
|
-
y1="14"
|
|
4040
|
-
x2="21"
|
|
4041
|
-
y2="3" />
|
|
4142
|
+
<polyline points="18 15 12 9 6 15" />
|
|
4042
4143
|
</svg>
|
|
4043
4144
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4044
4145
|
}
|
|
4045
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ChevronUpIconComponent, decorators: [{
|
|
4046
4147
|
type: Component,
|
|
4047
4148
|
args: [{
|
|
4048
|
-
selector: 'ea-icon-
|
|
4149
|
+
selector: 'ea-icon-chevron-up',
|
|
4049
4150
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4050
4151
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4051
4152
|
template: `
|
|
@@ -4059,21 +4160,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4059
4160
|
aria-hidden="true"
|
|
4060
4161
|
width="100%"
|
|
4061
4162
|
height="100%">
|
|
4062
|
-
<
|
|
4063
|
-
<polyline points="15 3 21 3 21 9" />
|
|
4064
|
-
<line
|
|
4065
|
-
x1="10"
|
|
4066
|
-
y1="14"
|
|
4067
|
-
x2="21"
|
|
4068
|
-
y2="3" />
|
|
4163
|
+
<polyline points="18 15 12 9 6 15" />
|
|
4069
4164
|
</svg>
|
|
4070
4165
|
`,
|
|
4071
4166
|
}]
|
|
4072
4167
|
}] });
|
|
4073
4168
|
|
|
4074
|
-
class
|
|
4075
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4076
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
4169
|
+
class ClipboardIconComponent {
|
|
4170
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ClipboardIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4171
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ClipboardIconComponent, isStandalone: true, selector: "ea-icon-clipboard", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4077
4172
|
<svg
|
|
4078
4173
|
viewBox="0 0 24 24"
|
|
4079
4174
|
fill="none"
|
|
@@ -4085,19 +4180,21 @@ class EyeOffIconComponent {
|
|
|
4085
4180
|
width="100%"
|
|
4086
4181
|
height="100%">
|
|
4087
4182
|
<path
|
|
4088
|
-
d="
|
|
4089
|
-
<
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
4093
|
-
|
|
4183
|
+
d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" />
|
|
4184
|
+
<rect
|
|
4185
|
+
x="8"
|
|
4186
|
+
y="2"
|
|
4187
|
+
width="8"
|
|
4188
|
+
height="4"
|
|
4189
|
+
rx="1"
|
|
4190
|
+
ry="1" />
|
|
4094
4191
|
</svg>
|
|
4095
4192
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4096
4193
|
}
|
|
4097
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ClipboardIconComponent, decorators: [{
|
|
4098
4195
|
type: Component,
|
|
4099
4196
|
args: [{
|
|
4100
|
-
selector: 'ea-icon-
|
|
4197
|
+
selector: 'ea-icon-clipboard',
|
|
4101
4198
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4102
4199
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4103
4200
|
template: `
|
|
@@ -4112,20 +4209,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4112
4209
|
width="100%"
|
|
4113
4210
|
height="100%">
|
|
4114
4211
|
<path
|
|
4115
|
-
d="
|
|
4116
|
-
<
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4212
|
+
d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" />
|
|
4213
|
+
<rect
|
|
4214
|
+
x="8"
|
|
4215
|
+
y="2"
|
|
4216
|
+
width="8"
|
|
4217
|
+
height="4"
|
|
4218
|
+
rx="1"
|
|
4219
|
+
ry="1" />
|
|
4121
4220
|
</svg>
|
|
4122
4221
|
`,
|
|
4123
4222
|
}]
|
|
4124
4223
|
}] });
|
|
4125
4224
|
|
|
4126
|
-
class
|
|
4127
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4128
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
4225
|
+
class ClockIconComponent {
|
|
4226
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ClockIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4227
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ClockIconComponent, isStandalone: true, selector: "ea-icon-clock", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4129
4228
|
<svg
|
|
4130
4229
|
viewBox="0 0 24 24"
|
|
4131
4230
|
fill="none"
|
|
@@ -4136,18 +4235,18 @@ class EyeIconComponent {
|
|
|
4136
4235
|
aria-hidden="true"
|
|
4137
4236
|
width="100%"
|
|
4138
4237
|
height="100%">
|
|
4139
|
-
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z" />
|
|
4140
4238
|
<circle
|
|
4141
4239
|
cx="12"
|
|
4142
4240
|
cy="12"
|
|
4143
|
-
r="
|
|
4241
|
+
r="10" />
|
|
4242
|
+
<polyline points="12 6 12 12 16 14" />
|
|
4144
4243
|
</svg>
|
|
4145
4244
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4146
4245
|
}
|
|
4147
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ClockIconComponent, decorators: [{
|
|
4148
4247
|
type: Component,
|
|
4149
4248
|
args: [{
|
|
4150
|
-
selector: 'ea-icon-
|
|
4249
|
+
selector: 'ea-icon-clock',
|
|
4151
4250
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4152
4251
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4153
4252
|
template: `
|
|
@@ -4161,57 +4260,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4161
4260
|
aria-hidden="true"
|
|
4162
4261
|
width="100%"
|
|
4163
4262
|
height="100%">
|
|
4164
|
-
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z" />
|
|
4165
4263
|
<circle
|
|
4166
4264
|
cx="12"
|
|
4167
4265
|
cy="12"
|
|
4168
|
-
r="
|
|
4266
|
+
r="10" />
|
|
4267
|
+
<polyline points="12 6 12 12 16 14" />
|
|
4169
4268
|
</svg>
|
|
4170
4269
|
`,
|
|
4171
4270
|
}]
|
|
4172
4271
|
}] });
|
|
4173
4272
|
|
|
4174
|
-
class
|
|
4175
|
-
|
|
4176
|
-
static
|
|
4177
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: FacebookIconComponent, isStandalone: true, selector: "ea-icon-facebook", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#1877F2' : null" }, styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4273
|
+
class CloudIconComponent {
|
|
4274
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: CloudIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4275
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: CloudIconComponent, isStandalone: true, selector: "ea-icon-cloud", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4178
4276
|
<svg
|
|
4179
4277
|
viewBox="0 0 24 24"
|
|
4180
|
-
fill="
|
|
4278
|
+
fill="none"
|
|
4279
|
+
stroke="currentColor"
|
|
4280
|
+
stroke-width="2"
|
|
4281
|
+
stroke-linecap="round"
|
|
4282
|
+
stroke-linejoin="round"
|
|
4181
4283
|
aria-hidden="true"
|
|
4182
4284
|
width="100%"
|
|
4183
4285
|
height="100%">
|
|
4184
|
-
<path
|
|
4185
|
-
d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073" />
|
|
4286
|
+
<path d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" />
|
|
4186
4287
|
</svg>
|
|
4187
4288
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4188
4289
|
}
|
|
4189
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4290
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: CloudIconComponent, decorators: [{
|
|
4190
4291
|
type: Component,
|
|
4191
4292
|
args: [{
|
|
4192
|
-
selector: 'ea-icon-
|
|
4293
|
+
selector: 'ea-icon-cloud',
|
|
4193
4294
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4194
|
-
host: {
|
|
4195
|
-
style: 'display: inline-flex; width: 1em; height: 1em;',
|
|
4196
|
-
'[style.color]': "brand() ? '#1877F2' : null",
|
|
4197
|
-
},
|
|
4295
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4198
4296
|
template: `
|
|
4199
4297
|
<svg
|
|
4200
4298
|
viewBox="0 0 24 24"
|
|
4201
|
-
fill="
|
|
4299
|
+
fill="none"
|
|
4300
|
+
stroke="currentColor"
|
|
4301
|
+
stroke-width="2"
|
|
4302
|
+
stroke-linecap="round"
|
|
4303
|
+
stroke-linejoin="round"
|
|
4202
4304
|
aria-hidden="true"
|
|
4203
4305
|
width="100%"
|
|
4204
4306
|
height="100%">
|
|
4205
|
-
<path
|
|
4206
|
-
d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073" />
|
|
4307
|
+
<path d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" />
|
|
4207
4308
|
</svg>
|
|
4208
4309
|
`,
|
|
4209
4310
|
}]
|
|
4210
|
-
}]
|
|
4311
|
+
}] });
|
|
4211
4312
|
|
|
4212
|
-
class
|
|
4213
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4214
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
4313
|
+
class CopyIconComponent {
|
|
4314
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: CopyIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4315
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: CopyIconComponent, isStandalone: true, selector: "ea-icon-copy", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4215
4316
|
<svg
|
|
4216
4317
|
viewBox="0 0 24 24"
|
|
4217
4318
|
fill="none"
|
|
@@ -4222,15 +4323,21 @@ class FileIconComponent {
|
|
|
4222
4323
|
aria-hidden="true"
|
|
4223
4324
|
width="100%"
|
|
4224
4325
|
height="100%">
|
|
4225
|
-
<
|
|
4226
|
-
|
|
4326
|
+
<rect
|
|
4327
|
+
x="9"
|
|
4328
|
+
y="9"
|
|
4329
|
+
width="13"
|
|
4330
|
+
height="13"
|
|
4331
|
+
rx="2"
|
|
4332
|
+
ry="2" />
|
|
4333
|
+
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
|
|
4227
4334
|
</svg>
|
|
4228
4335
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4229
4336
|
}
|
|
4230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: CopyIconComponent, decorators: [{
|
|
4231
4338
|
type: Component,
|
|
4232
4339
|
args: [{
|
|
4233
|
-
selector: 'ea-icon-
|
|
4340
|
+
selector: 'ea-icon-copy',
|
|
4234
4341
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4235
4342
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4236
4343
|
template: `
|
|
@@ -4244,16 +4351,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4244
4351
|
aria-hidden="true"
|
|
4245
4352
|
width="100%"
|
|
4246
4353
|
height="100%">
|
|
4247
|
-
<
|
|
4248
|
-
|
|
4354
|
+
<rect
|
|
4355
|
+
x="9"
|
|
4356
|
+
y="9"
|
|
4357
|
+
width="13"
|
|
4358
|
+
height="13"
|
|
4359
|
+
rx="2"
|
|
4360
|
+
ry="2" />
|
|
4361
|
+
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
|
|
4249
4362
|
</svg>
|
|
4250
4363
|
`,
|
|
4251
4364
|
}]
|
|
4252
4365
|
}] });
|
|
4253
4366
|
|
|
4254
|
-
class
|
|
4255
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4256
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
4367
|
+
class CreditCardIconComponent {
|
|
4368
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: CreditCardIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4369
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: CreditCardIconComponent, isStandalone: true, selector: "ea-icon-credit-card", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4257
4370
|
<svg
|
|
4258
4371
|
viewBox="0 0 24 24"
|
|
4259
4372
|
fill="none"
|
|
@@ -4264,14 +4377,25 @@ class FilterIconComponent {
|
|
|
4264
4377
|
aria-hidden="true"
|
|
4265
4378
|
width="100%"
|
|
4266
4379
|
height="100%">
|
|
4267
|
-
<
|
|
4380
|
+
<rect
|
|
4381
|
+
x="1"
|
|
4382
|
+
y="4"
|
|
4383
|
+
width="22"
|
|
4384
|
+
height="16"
|
|
4385
|
+
rx="2"
|
|
4386
|
+
ry="2" />
|
|
4387
|
+
<line
|
|
4388
|
+
x1="1"
|
|
4389
|
+
y1="10"
|
|
4390
|
+
x2="23"
|
|
4391
|
+
y2="10" />
|
|
4268
4392
|
</svg>
|
|
4269
4393
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4270
4394
|
}
|
|
4271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: CreditCardIconComponent, decorators: [{
|
|
4272
4396
|
type: Component,
|
|
4273
4397
|
args: [{
|
|
4274
|
-
selector: 'ea-icon-
|
|
4398
|
+
selector: 'ea-icon-credit-card',
|
|
4275
4399
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4276
4400
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4277
4401
|
template: `
|
|
@@ -4285,105 +4409,128 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4285
4409
|
aria-hidden="true"
|
|
4286
4410
|
width="100%"
|
|
4287
4411
|
height="100%">
|
|
4288
|
-
<
|
|
4412
|
+
<rect
|
|
4413
|
+
x="1"
|
|
4414
|
+
y="4"
|
|
4415
|
+
width="22"
|
|
4416
|
+
height="16"
|
|
4417
|
+
rx="2"
|
|
4418
|
+
ry="2" />
|
|
4419
|
+
<line
|
|
4420
|
+
x1="1"
|
|
4421
|
+
y1="10"
|
|
4422
|
+
x2="23"
|
|
4423
|
+
y2="10" />
|
|
4289
4424
|
</svg>
|
|
4290
4425
|
`,
|
|
4291
4426
|
}]
|
|
4292
4427
|
}] });
|
|
4293
4428
|
|
|
4294
|
-
class
|
|
4295
|
-
|
|
4296
|
-
static
|
|
4297
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: GithubIconComponent, isStandalone: true, selector: "ea-icon-github", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#181717' : null" }, styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4429
|
+
class DollarSignIconComponent {
|
|
4430
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: DollarSignIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4431
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: DollarSignIconComponent, isStandalone: true, selector: "ea-icon-dollar-sign", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4298
4432
|
<svg
|
|
4299
4433
|
viewBox="0 0 24 24"
|
|
4300
|
-
fill="
|
|
4434
|
+
fill="none"
|
|
4435
|
+
stroke="currentColor"
|
|
4436
|
+
stroke-width="2"
|
|
4437
|
+
stroke-linecap="round"
|
|
4438
|
+
stroke-linejoin="round"
|
|
4301
4439
|
aria-hidden="true"
|
|
4302
4440
|
width="100%"
|
|
4303
4441
|
height="100%">
|
|
4304
|
-
<
|
|
4305
|
-
|
|
4442
|
+
<line
|
|
4443
|
+
x1="12"
|
|
4444
|
+
y1="1"
|
|
4445
|
+
x2="12"
|
|
4446
|
+
y2="23" />
|
|
4447
|
+
<path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" />
|
|
4306
4448
|
</svg>
|
|
4307
4449
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4308
4450
|
}
|
|
4309
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4451
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: DollarSignIconComponent, decorators: [{
|
|
4310
4452
|
type: Component,
|
|
4311
4453
|
args: [{
|
|
4312
|
-
selector: 'ea-icon-
|
|
4454
|
+
selector: 'ea-icon-dollar-sign',
|
|
4313
4455
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4314
|
-
host: {
|
|
4315
|
-
style: 'display: inline-flex; width: 1em; height: 1em;',
|
|
4316
|
-
'[style.color]': "brand() ? '#181717' : null",
|
|
4317
|
-
},
|
|
4456
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4318
4457
|
template: `
|
|
4319
4458
|
<svg
|
|
4320
4459
|
viewBox="0 0 24 24"
|
|
4321
|
-
fill="
|
|
4460
|
+
fill="none"
|
|
4461
|
+
stroke="currentColor"
|
|
4462
|
+
stroke-width="2"
|
|
4463
|
+
stroke-linecap="round"
|
|
4464
|
+
stroke-linejoin="round"
|
|
4322
4465
|
aria-hidden="true"
|
|
4323
4466
|
width="100%"
|
|
4324
4467
|
height="100%">
|
|
4325
|
-
<
|
|
4326
|
-
|
|
4468
|
+
<line
|
|
4469
|
+
x1="12"
|
|
4470
|
+
y1="1"
|
|
4471
|
+
x2="12"
|
|
4472
|
+
y2="23" />
|
|
4473
|
+
<path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" />
|
|
4327
4474
|
</svg>
|
|
4328
4475
|
`,
|
|
4329
4476
|
}]
|
|
4330
|
-
}]
|
|
4477
|
+
}] });
|
|
4331
4478
|
|
|
4332
|
-
class
|
|
4333
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4334
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
4479
|
+
class DownloadIconComponent {
|
|
4480
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: DownloadIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4481
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: DownloadIconComponent, isStandalone: true, selector: "ea-icon-download", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4335
4482
|
<svg
|
|
4336
4483
|
viewBox="0 0 24 24"
|
|
4484
|
+
fill="none"
|
|
4485
|
+
stroke="currentColor"
|
|
4486
|
+
stroke-width="2"
|
|
4487
|
+
stroke-linecap="round"
|
|
4488
|
+
stroke-linejoin="round"
|
|
4337
4489
|
aria-hidden="true"
|
|
4338
4490
|
width="100%"
|
|
4339
4491
|
height="100%">
|
|
4340
|
-
<path
|
|
4341
|
-
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
|
|
4345
|
-
|
|
4346
|
-
|
|
4347
|
-
d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18A10.96 10.96 0 0 0 1 12c0 1.77.42 3.45 1.18 4.93l3.66-2.84z"
|
|
4348
|
-
fill="#FBBC05" />
|
|
4349
|
-
<path
|
|
4350
|
-
d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"
|
|
4351
|
-
fill="#EA4335" />
|
|
4492
|
+
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" />
|
|
4493
|
+
<polyline points="7 10 12 15 17 10" />
|
|
4494
|
+
<line
|
|
4495
|
+
x1="12"
|
|
4496
|
+
y1="15"
|
|
4497
|
+
x2="12"
|
|
4498
|
+
y2="3" />
|
|
4352
4499
|
</svg>
|
|
4353
4500
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4354
4501
|
}
|
|
4355
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: DownloadIconComponent, decorators: [{
|
|
4356
4503
|
type: Component,
|
|
4357
4504
|
args: [{
|
|
4358
|
-
selector: 'ea-icon-
|
|
4505
|
+
selector: 'ea-icon-download',
|
|
4359
4506
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4360
4507
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4361
4508
|
template: `
|
|
4362
4509
|
<svg
|
|
4363
4510
|
viewBox="0 0 24 24"
|
|
4511
|
+
fill="none"
|
|
4512
|
+
stroke="currentColor"
|
|
4513
|
+
stroke-width="2"
|
|
4514
|
+
stroke-linecap="round"
|
|
4515
|
+
stroke-linejoin="round"
|
|
4364
4516
|
aria-hidden="true"
|
|
4365
4517
|
width="100%"
|
|
4366
4518
|
height="100%">
|
|
4367
|
-
<path
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18A10.96 10.96 0 0 0 1 12c0 1.77.42 3.45 1.18 4.93l3.66-2.84z"
|
|
4375
|
-
fill="#FBBC05" />
|
|
4376
|
-
<path
|
|
4377
|
-
d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"
|
|
4378
|
-
fill="#EA4335" />
|
|
4519
|
+
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" />
|
|
4520
|
+
<polyline points="7 10 12 15 17 10" />
|
|
4521
|
+
<line
|
|
4522
|
+
x1="12"
|
|
4523
|
+
y1="15"
|
|
4524
|
+
x2="12"
|
|
4525
|
+
y2="3" />
|
|
4379
4526
|
</svg>
|
|
4380
4527
|
`,
|
|
4381
4528
|
}]
|
|
4382
4529
|
}] });
|
|
4383
4530
|
|
|
4384
|
-
class
|
|
4385
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4386
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
4531
|
+
class ExternalLinkIconComponent {
|
|
4532
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ExternalLinkIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4533
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ExternalLinkIconComponent, isStandalone: true, selector: "ea-icon-external-link", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4387
4534
|
<svg
|
|
4388
4535
|
viewBox="0 0 24 24"
|
|
4389
4536
|
fill="none"
|
|
@@ -4394,15 +4541,20 @@ class HeartIconComponent {
|
|
|
4394
4541
|
aria-hidden="true"
|
|
4395
4542
|
width="100%"
|
|
4396
4543
|
height="100%">
|
|
4397
|
-
<path
|
|
4398
|
-
|
|
4544
|
+
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" />
|
|
4545
|
+
<polyline points="15 3 21 3 21 9" />
|
|
4546
|
+
<line
|
|
4547
|
+
x1="10"
|
|
4548
|
+
y1="14"
|
|
4549
|
+
x2="21"
|
|
4550
|
+
y2="3" />
|
|
4399
4551
|
</svg>
|
|
4400
4552
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4401
4553
|
}
|
|
4402
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ExternalLinkIconComponent, decorators: [{
|
|
4403
4555
|
type: Component,
|
|
4404
4556
|
args: [{
|
|
4405
|
-
selector: 'ea-icon-
|
|
4557
|
+
selector: 'ea-icon-external-link',
|
|
4406
4558
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4407
4559
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4408
4560
|
template: `
|
|
@@ -4416,16 +4568,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4416
4568
|
aria-hidden="true"
|
|
4417
4569
|
width="100%"
|
|
4418
4570
|
height="100%">
|
|
4419
|
-
<path
|
|
4420
|
-
|
|
4571
|
+
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" />
|
|
4572
|
+
<polyline points="15 3 21 3 21 9" />
|
|
4573
|
+
<line
|
|
4574
|
+
x1="10"
|
|
4575
|
+
y1="14"
|
|
4576
|
+
x2="21"
|
|
4577
|
+
y2="3" />
|
|
4421
4578
|
</svg>
|
|
4422
4579
|
`,
|
|
4423
4580
|
}]
|
|
4424
4581
|
}] });
|
|
4425
4582
|
|
|
4426
|
-
class
|
|
4427
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4428
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
4583
|
+
class EyeOffIconComponent {
|
|
4584
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: EyeOffIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4585
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: EyeOffIconComponent, isStandalone: true, selector: "ea-icon-eye-off", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4429
4586
|
<svg
|
|
4430
4587
|
viewBox="0 0 24 24"
|
|
4431
4588
|
fill="none"
|
|
@@ -4436,25 +4593,20 @@ class ImageIconComponent {
|
|
|
4436
4593
|
aria-hidden="true"
|
|
4437
4594
|
width="100%"
|
|
4438
4595
|
height="100%">
|
|
4439
|
-
<
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
<circle
|
|
4447
|
-
cx="8.5"
|
|
4448
|
-
cy="8.5"
|
|
4449
|
-
r="1.5" />
|
|
4450
|
-
<polyline points="21 15 16 10 5 21" />
|
|
4596
|
+
<path
|
|
4597
|
+
d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24" />
|
|
4598
|
+
<line
|
|
4599
|
+
x1="1"
|
|
4600
|
+
y1="1"
|
|
4601
|
+
x2="23"
|
|
4602
|
+
y2="23" />
|
|
4451
4603
|
</svg>
|
|
4452
4604
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4453
4605
|
}
|
|
4454
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: EyeOffIconComponent, decorators: [{
|
|
4455
4607
|
type: Component,
|
|
4456
4608
|
args: [{
|
|
4457
|
-
selector: 'ea-icon-
|
|
4609
|
+
selector: 'ea-icon-eye-off',
|
|
4458
4610
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4459
4611
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4460
4612
|
template: `
|
|
@@ -4468,26 +4620,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4468
4620
|
aria-hidden="true"
|
|
4469
4621
|
width="100%"
|
|
4470
4622
|
height="100%">
|
|
4471
|
-
<
|
|
4472
|
-
|
|
4473
|
-
|
|
4474
|
-
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
<circle
|
|
4479
|
-
cx="8.5"
|
|
4480
|
-
cy="8.5"
|
|
4481
|
-
r="1.5" />
|
|
4482
|
-
<polyline points="21 15 16 10 5 21" />
|
|
4623
|
+
<path
|
|
4624
|
+
d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24" />
|
|
4625
|
+
<line
|
|
4626
|
+
x1="1"
|
|
4627
|
+
y1="1"
|
|
4628
|
+
x2="23"
|
|
4629
|
+
y2="23" />
|
|
4483
4630
|
</svg>
|
|
4484
4631
|
`,
|
|
4485
4632
|
}]
|
|
4486
4633
|
}] });
|
|
4487
4634
|
|
|
4488
|
-
class
|
|
4489
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4490
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
4635
|
+
class EyeIconComponent {
|
|
4636
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: EyeIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4637
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: EyeIconComponent, isStandalone: true, selector: "ea-icon-eye", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4491
4638
|
<svg
|
|
4492
4639
|
viewBox="0 0 24 24"
|
|
4493
4640
|
fill="none"
|
|
@@ -4498,15 +4645,2452 @@ class LinkIconComponent {
|
|
|
4498
4645
|
aria-hidden="true"
|
|
4499
4646
|
width="100%"
|
|
4500
4647
|
height="100%">
|
|
4501
|
-
<path d="
|
|
4502
|
-
<
|
|
4648
|
+
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z" />
|
|
4649
|
+
<circle
|
|
4650
|
+
cx="12"
|
|
4651
|
+
cy="12"
|
|
4652
|
+
r="3" />
|
|
4653
|
+
</svg>
|
|
4654
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4655
|
+
}
|
|
4656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: EyeIconComponent, decorators: [{
|
|
4657
|
+
type: Component,
|
|
4658
|
+
args: [{
|
|
4659
|
+
selector: 'ea-icon-eye',
|
|
4660
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4661
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4662
|
+
template: `
|
|
4663
|
+
<svg
|
|
4664
|
+
viewBox="0 0 24 24"
|
|
4665
|
+
fill="none"
|
|
4666
|
+
stroke="currentColor"
|
|
4667
|
+
stroke-width="2"
|
|
4668
|
+
stroke-linecap="round"
|
|
4669
|
+
stroke-linejoin="round"
|
|
4670
|
+
aria-hidden="true"
|
|
4671
|
+
width="100%"
|
|
4672
|
+
height="100%">
|
|
4673
|
+
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z" />
|
|
4674
|
+
<circle
|
|
4675
|
+
cx="12"
|
|
4676
|
+
cy="12"
|
|
4677
|
+
r="3" />
|
|
4678
|
+
</svg>
|
|
4679
|
+
`,
|
|
4680
|
+
}]
|
|
4681
|
+
}] });
|
|
4682
|
+
|
|
4683
|
+
class FacebookIconComponent {
|
|
4684
|
+
brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
|
|
4685
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: FacebookIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4686
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: FacebookIconComponent, isStandalone: true, selector: "ea-icon-facebook", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#1877F2' : null" }, styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4687
|
+
<svg
|
|
4688
|
+
viewBox="0 0 24 24"
|
|
4689
|
+
fill="currentColor"
|
|
4690
|
+
aria-hidden="true"
|
|
4691
|
+
width="100%"
|
|
4692
|
+
height="100%">
|
|
4693
|
+
<path
|
|
4694
|
+
d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073" />
|
|
4695
|
+
</svg>
|
|
4696
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4697
|
+
}
|
|
4698
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: FacebookIconComponent, decorators: [{
|
|
4699
|
+
type: Component,
|
|
4700
|
+
args: [{
|
|
4701
|
+
selector: 'ea-icon-facebook',
|
|
4702
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4703
|
+
host: {
|
|
4704
|
+
style: 'display: inline-flex; width: 1em; height: 1em;',
|
|
4705
|
+
'[style.color]': "brand() ? '#1877F2' : null",
|
|
4706
|
+
},
|
|
4707
|
+
template: `
|
|
4708
|
+
<svg
|
|
4709
|
+
viewBox="0 0 24 24"
|
|
4710
|
+
fill="currentColor"
|
|
4711
|
+
aria-hidden="true"
|
|
4712
|
+
width="100%"
|
|
4713
|
+
height="100%">
|
|
4714
|
+
<path
|
|
4715
|
+
d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073" />
|
|
4716
|
+
</svg>
|
|
4717
|
+
`,
|
|
4718
|
+
}]
|
|
4719
|
+
}], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
|
|
4720
|
+
|
|
4721
|
+
class FileIconComponent {
|
|
4722
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: FileIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4723
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: FileIconComponent, isStandalone: true, selector: "ea-icon-file", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4724
|
+
<svg
|
|
4725
|
+
viewBox="0 0 24 24"
|
|
4726
|
+
fill="none"
|
|
4727
|
+
stroke="currentColor"
|
|
4728
|
+
stroke-width="2"
|
|
4729
|
+
stroke-linecap="round"
|
|
4730
|
+
stroke-linejoin="round"
|
|
4731
|
+
aria-hidden="true"
|
|
4732
|
+
width="100%"
|
|
4733
|
+
height="100%">
|
|
4734
|
+
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z" />
|
|
4735
|
+
<polyline points="13 2 13 9 20 9" />
|
|
4736
|
+
</svg>
|
|
4737
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4738
|
+
}
|
|
4739
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: FileIconComponent, decorators: [{
|
|
4740
|
+
type: Component,
|
|
4741
|
+
args: [{
|
|
4742
|
+
selector: 'ea-icon-file',
|
|
4743
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4744
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4745
|
+
template: `
|
|
4746
|
+
<svg
|
|
4747
|
+
viewBox="0 0 24 24"
|
|
4748
|
+
fill="none"
|
|
4749
|
+
stroke="currentColor"
|
|
4750
|
+
stroke-width="2"
|
|
4751
|
+
stroke-linecap="round"
|
|
4752
|
+
stroke-linejoin="round"
|
|
4753
|
+
aria-hidden="true"
|
|
4754
|
+
width="100%"
|
|
4755
|
+
height="100%">
|
|
4756
|
+
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z" />
|
|
4757
|
+
<polyline points="13 2 13 9 20 9" />
|
|
4758
|
+
</svg>
|
|
4759
|
+
`,
|
|
4760
|
+
}]
|
|
4761
|
+
}] });
|
|
4762
|
+
|
|
4763
|
+
class FilterIconComponent {
|
|
4764
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: FilterIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4765
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: FilterIconComponent, isStandalone: true, selector: "ea-icon-filter", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4766
|
+
<svg
|
|
4767
|
+
viewBox="0 0 24 24"
|
|
4768
|
+
fill="none"
|
|
4769
|
+
stroke="currentColor"
|
|
4770
|
+
stroke-width="2"
|
|
4771
|
+
stroke-linecap="round"
|
|
4772
|
+
stroke-linejoin="round"
|
|
4773
|
+
aria-hidden="true"
|
|
4774
|
+
width="100%"
|
|
4775
|
+
height="100%">
|
|
4776
|
+
<polygon points="22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" />
|
|
4777
|
+
</svg>
|
|
4778
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4779
|
+
}
|
|
4780
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: FilterIconComponent, decorators: [{
|
|
4781
|
+
type: Component,
|
|
4782
|
+
args: [{
|
|
4783
|
+
selector: 'ea-icon-filter',
|
|
4784
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4785
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4786
|
+
template: `
|
|
4787
|
+
<svg
|
|
4788
|
+
viewBox="0 0 24 24"
|
|
4789
|
+
fill="none"
|
|
4790
|
+
stroke="currentColor"
|
|
4791
|
+
stroke-width="2"
|
|
4792
|
+
stroke-linecap="round"
|
|
4793
|
+
stroke-linejoin="round"
|
|
4794
|
+
aria-hidden="true"
|
|
4795
|
+
width="100%"
|
|
4796
|
+
height="100%">
|
|
4797
|
+
<polygon points="22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" />
|
|
4798
|
+
</svg>
|
|
4799
|
+
`,
|
|
4800
|
+
}]
|
|
4801
|
+
}] });
|
|
4802
|
+
|
|
4803
|
+
class FlagIconComponent {
|
|
4804
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: FlagIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4805
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: FlagIconComponent, isStandalone: true, selector: "ea-icon-flag", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4806
|
+
<svg
|
|
4807
|
+
viewBox="0 0 24 24"
|
|
4808
|
+
fill="none"
|
|
4809
|
+
stroke="currentColor"
|
|
4810
|
+
stroke-width="2"
|
|
4811
|
+
stroke-linecap="round"
|
|
4812
|
+
stroke-linejoin="round"
|
|
4813
|
+
aria-hidden="true"
|
|
4814
|
+
width="100%"
|
|
4815
|
+
height="100%">
|
|
4816
|
+
<path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" />
|
|
4817
|
+
<line
|
|
4818
|
+
x1="4"
|
|
4819
|
+
y1="22"
|
|
4820
|
+
x2="4"
|
|
4821
|
+
y2="15" />
|
|
4822
|
+
</svg>
|
|
4823
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4824
|
+
}
|
|
4825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: FlagIconComponent, decorators: [{
|
|
4826
|
+
type: Component,
|
|
4827
|
+
args: [{
|
|
4828
|
+
selector: 'ea-icon-flag',
|
|
4829
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4830
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4831
|
+
template: `
|
|
4832
|
+
<svg
|
|
4833
|
+
viewBox="0 0 24 24"
|
|
4834
|
+
fill="none"
|
|
4835
|
+
stroke="currentColor"
|
|
4836
|
+
stroke-width="2"
|
|
4837
|
+
stroke-linecap="round"
|
|
4838
|
+
stroke-linejoin="round"
|
|
4839
|
+
aria-hidden="true"
|
|
4840
|
+
width="100%"
|
|
4841
|
+
height="100%">
|
|
4842
|
+
<path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" />
|
|
4843
|
+
<line
|
|
4844
|
+
x1="4"
|
|
4845
|
+
y1="22"
|
|
4846
|
+
x2="4"
|
|
4847
|
+
y2="15" />
|
|
4848
|
+
</svg>
|
|
4849
|
+
`,
|
|
4850
|
+
}]
|
|
4851
|
+
}] });
|
|
4852
|
+
|
|
4853
|
+
class FolderIconComponent {
|
|
4854
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: FolderIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4855
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: FolderIconComponent, isStandalone: true, selector: "ea-icon-folder", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4856
|
+
<svg
|
|
4857
|
+
viewBox="0 0 24 24"
|
|
4858
|
+
fill="none"
|
|
4859
|
+
stroke="currentColor"
|
|
4860
|
+
stroke-width="2"
|
|
4861
|
+
stroke-linecap="round"
|
|
4862
|
+
stroke-linejoin="round"
|
|
4863
|
+
aria-hidden="true"
|
|
4864
|
+
width="100%"
|
|
4865
|
+
height="100%">
|
|
4866
|
+
<path
|
|
4867
|
+
d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" />
|
|
4868
|
+
</svg>
|
|
4869
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4870
|
+
}
|
|
4871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: FolderIconComponent, decorators: [{
|
|
4872
|
+
type: Component,
|
|
4873
|
+
args: [{
|
|
4874
|
+
selector: 'ea-icon-folder',
|
|
4875
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4876
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4877
|
+
template: `
|
|
4878
|
+
<svg
|
|
4879
|
+
viewBox="0 0 24 24"
|
|
4880
|
+
fill="none"
|
|
4881
|
+
stroke="currentColor"
|
|
4882
|
+
stroke-width="2"
|
|
4883
|
+
stroke-linecap="round"
|
|
4884
|
+
stroke-linejoin="round"
|
|
4885
|
+
aria-hidden="true"
|
|
4886
|
+
width="100%"
|
|
4887
|
+
height="100%">
|
|
4888
|
+
<path
|
|
4889
|
+
d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" />
|
|
4890
|
+
</svg>
|
|
4891
|
+
`,
|
|
4892
|
+
}]
|
|
4893
|
+
}] });
|
|
4894
|
+
|
|
4895
|
+
class GiftIconComponent {
|
|
4896
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GiftIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4897
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: GiftIconComponent, isStandalone: true, selector: "ea-icon-gift", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4898
|
+
<svg
|
|
4899
|
+
viewBox="0 0 24 24"
|
|
4900
|
+
fill="none"
|
|
4901
|
+
stroke="currentColor"
|
|
4902
|
+
stroke-width="2"
|
|
4903
|
+
stroke-linecap="round"
|
|
4904
|
+
stroke-linejoin="round"
|
|
4905
|
+
aria-hidden="true"
|
|
4906
|
+
width="100%"
|
|
4907
|
+
height="100%">
|
|
4908
|
+
<polyline points="20 12 20 22 4 22 4 12" />
|
|
4909
|
+
<rect
|
|
4910
|
+
x="2"
|
|
4911
|
+
y="7"
|
|
4912
|
+
width="20"
|
|
4913
|
+
height="5" />
|
|
4914
|
+
<line
|
|
4915
|
+
x1="12"
|
|
4916
|
+
y1="22"
|
|
4917
|
+
x2="12"
|
|
4918
|
+
y2="7" />
|
|
4919
|
+
<path d="M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z" />
|
|
4920
|
+
<path d="M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z" />
|
|
4921
|
+
</svg>
|
|
4922
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4923
|
+
}
|
|
4924
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GiftIconComponent, decorators: [{
|
|
4925
|
+
type: Component,
|
|
4926
|
+
args: [{
|
|
4927
|
+
selector: 'ea-icon-gift',
|
|
4928
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4929
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4930
|
+
template: `
|
|
4931
|
+
<svg
|
|
4932
|
+
viewBox="0 0 24 24"
|
|
4933
|
+
fill="none"
|
|
4934
|
+
stroke="currentColor"
|
|
4935
|
+
stroke-width="2"
|
|
4936
|
+
stroke-linecap="round"
|
|
4937
|
+
stroke-linejoin="round"
|
|
4938
|
+
aria-hidden="true"
|
|
4939
|
+
width="100%"
|
|
4940
|
+
height="100%">
|
|
4941
|
+
<polyline points="20 12 20 22 4 22 4 12" />
|
|
4942
|
+
<rect
|
|
4943
|
+
x="2"
|
|
4944
|
+
y="7"
|
|
4945
|
+
width="20"
|
|
4946
|
+
height="5" />
|
|
4947
|
+
<line
|
|
4948
|
+
x1="12"
|
|
4949
|
+
y1="22"
|
|
4950
|
+
x2="12"
|
|
4951
|
+
y2="7" />
|
|
4952
|
+
<path d="M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z" />
|
|
4953
|
+
<path d="M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z" />
|
|
4954
|
+
</svg>
|
|
4955
|
+
`,
|
|
4956
|
+
}]
|
|
4957
|
+
}] });
|
|
4958
|
+
|
|
4959
|
+
class GithubIconComponent {
|
|
4960
|
+
brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
|
|
4961
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GithubIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4962
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: GithubIconComponent, isStandalone: true, selector: "ea-icon-github", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#181717' : null" }, styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4963
|
+
<svg
|
|
4964
|
+
viewBox="0 0 24 24"
|
|
4965
|
+
fill="currentColor"
|
|
4966
|
+
aria-hidden="true"
|
|
4967
|
+
width="100%"
|
|
4968
|
+
height="100%">
|
|
4969
|
+
<path
|
|
4970
|
+
d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" />
|
|
4971
|
+
</svg>
|
|
4972
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4973
|
+
}
|
|
4974
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GithubIconComponent, decorators: [{
|
|
4975
|
+
type: Component,
|
|
4976
|
+
args: [{
|
|
4977
|
+
selector: 'ea-icon-github',
|
|
4978
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4979
|
+
host: {
|
|
4980
|
+
style: 'display: inline-flex; width: 1em; height: 1em;',
|
|
4981
|
+
'[style.color]': "brand() ? '#181717' : null",
|
|
4982
|
+
},
|
|
4983
|
+
template: `
|
|
4984
|
+
<svg
|
|
4985
|
+
viewBox="0 0 24 24"
|
|
4986
|
+
fill="currentColor"
|
|
4987
|
+
aria-hidden="true"
|
|
4988
|
+
width="100%"
|
|
4989
|
+
height="100%">
|
|
4990
|
+
<path
|
|
4991
|
+
d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" />
|
|
4992
|
+
</svg>
|
|
4993
|
+
`,
|
|
4994
|
+
}]
|
|
4995
|
+
}], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
|
|
4996
|
+
|
|
4997
|
+
class GlobeIconComponent {
|
|
4998
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GlobeIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4999
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: GlobeIconComponent, isStandalone: true, selector: "ea-icon-globe", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5000
|
+
<svg
|
|
5001
|
+
viewBox="0 0 24 24"
|
|
5002
|
+
fill="none"
|
|
5003
|
+
stroke="currentColor"
|
|
5004
|
+
stroke-width="2"
|
|
5005
|
+
stroke-linecap="round"
|
|
5006
|
+
stroke-linejoin="round"
|
|
5007
|
+
aria-hidden="true"
|
|
5008
|
+
width="100%"
|
|
5009
|
+
height="100%">
|
|
5010
|
+
<circle
|
|
5011
|
+
cx="12"
|
|
5012
|
+
cy="12"
|
|
5013
|
+
r="10" />
|
|
5014
|
+
<line
|
|
5015
|
+
x1="2"
|
|
5016
|
+
y1="12"
|
|
5017
|
+
x2="22"
|
|
5018
|
+
y2="12" />
|
|
5019
|
+
<path
|
|
5020
|
+
d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z" />
|
|
5021
|
+
</svg>
|
|
5022
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5023
|
+
}
|
|
5024
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GlobeIconComponent, decorators: [{
|
|
5025
|
+
type: Component,
|
|
5026
|
+
args: [{
|
|
5027
|
+
selector: 'ea-icon-globe',
|
|
5028
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5029
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5030
|
+
template: `
|
|
5031
|
+
<svg
|
|
5032
|
+
viewBox="0 0 24 24"
|
|
5033
|
+
fill="none"
|
|
5034
|
+
stroke="currentColor"
|
|
5035
|
+
stroke-width="2"
|
|
5036
|
+
stroke-linecap="round"
|
|
5037
|
+
stroke-linejoin="round"
|
|
5038
|
+
aria-hidden="true"
|
|
5039
|
+
width="100%"
|
|
5040
|
+
height="100%">
|
|
5041
|
+
<circle
|
|
5042
|
+
cx="12"
|
|
5043
|
+
cy="12"
|
|
5044
|
+
r="10" />
|
|
5045
|
+
<line
|
|
5046
|
+
x1="2"
|
|
5047
|
+
y1="12"
|
|
5048
|
+
x2="22"
|
|
5049
|
+
y2="12" />
|
|
5050
|
+
<path
|
|
5051
|
+
d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z" />
|
|
5052
|
+
</svg>
|
|
5053
|
+
`,
|
|
5054
|
+
}]
|
|
5055
|
+
}] });
|
|
5056
|
+
|
|
5057
|
+
class GoogleIconComponent {
|
|
5058
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GoogleIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5059
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: GoogleIconComponent, isStandalone: true, selector: "ea-icon-google", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5060
|
+
<svg
|
|
5061
|
+
viewBox="0 0 24 24"
|
|
5062
|
+
aria-hidden="true"
|
|
5063
|
+
width="100%"
|
|
5064
|
+
height="100%">
|
|
5065
|
+
<path
|
|
5066
|
+
d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 0 1-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z"
|
|
5067
|
+
fill="#4285F4" />
|
|
5068
|
+
<path
|
|
5069
|
+
d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"
|
|
5070
|
+
fill="#34A853" />
|
|
5071
|
+
<path
|
|
5072
|
+
d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18A10.96 10.96 0 0 0 1 12c0 1.77.42 3.45 1.18 4.93l3.66-2.84z"
|
|
5073
|
+
fill="#FBBC05" />
|
|
5074
|
+
<path
|
|
5075
|
+
d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"
|
|
5076
|
+
fill="#EA4335" />
|
|
5077
|
+
</svg>
|
|
5078
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5079
|
+
}
|
|
5080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: GoogleIconComponent, decorators: [{
|
|
5081
|
+
type: Component,
|
|
5082
|
+
args: [{
|
|
5083
|
+
selector: 'ea-icon-google',
|
|
5084
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5085
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5086
|
+
template: `
|
|
5087
|
+
<svg
|
|
5088
|
+
viewBox="0 0 24 24"
|
|
5089
|
+
aria-hidden="true"
|
|
5090
|
+
width="100%"
|
|
5091
|
+
height="100%">
|
|
5092
|
+
<path
|
|
5093
|
+
d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 0 1-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z"
|
|
5094
|
+
fill="#4285F4" />
|
|
5095
|
+
<path
|
|
5096
|
+
d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"
|
|
5097
|
+
fill="#34A853" />
|
|
5098
|
+
<path
|
|
5099
|
+
d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18A10.96 10.96 0 0 0 1 12c0 1.77.42 3.45 1.18 4.93l3.66-2.84z"
|
|
5100
|
+
fill="#FBBC05" />
|
|
5101
|
+
<path
|
|
5102
|
+
d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"
|
|
5103
|
+
fill="#EA4335" />
|
|
5104
|
+
</svg>
|
|
5105
|
+
`,
|
|
5106
|
+
}]
|
|
5107
|
+
}] });
|
|
5108
|
+
|
|
5109
|
+
class HashIconComponent {
|
|
5110
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: HashIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5111
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: HashIconComponent, isStandalone: true, selector: "ea-icon-hash", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5112
|
+
<svg
|
|
5113
|
+
viewBox="0 0 24 24"
|
|
5114
|
+
fill="none"
|
|
5115
|
+
stroke="currentColor"
|
|
5116
|
+
stroke-width="2"
|
|
5117
|
+
stroke-linecap="round"
|
|
5118
|
+
stroke-linejoin="round"
|
|
5119
|
+
aria-hidden="true"
|
|
5120
|
+
width="100%"
|
|
5121
|
+
height="100%">
|
|
5122
|
+
<line
|
|
5123
|
+
x1="4"
|
|
5124
|
+
y1="9"
|
|
5125
|
+
x2="20"
|
|
5126
|
+
y2="9" />
|
|
5127
|
+
<line
|
|
5128
|
+
x1="4"
|
|
5129
|
+
y1="15"
|
|
5130
|
+
x2="20"
|
|
5131
|
+
y2="15" />
|
|
5132
|
+
<line
|
|
5133
|
+
x1="10"
|
|
5134
|
+
y1="3"
|
|
5135
|
+
x2="8"
|
|
5136
|
+
y2="21" />
|
|
5137
|
+
<line
|
|
5138
|
+
x1="16"
|
|
5139
|
+
y1="3"
|
|
5140
|
+
x2="14"
|
|
5141
|
+
y2="21" />
|
|
5142
|
+
</svg>
|
|
5143
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5144
|
+
}
|
|
5145
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: HashIconComponent, decorators: [{
|
|
5146
|
+
type: Component,
|
|
5147
|
+
args: [{
|
|
5148
|
+
selector: 'ea-icon-hash',
|
|
5149
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5150
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5151
|
+
template: `
|
|
5152
|
+
<svg
|
|
5153
|
+
viewBox="0 0 24 24"
|
|
5154
|
+
fill="none"
|
|
5155
|
+
stroke="currentColor"
|
|
5156
|
+
stroke-width="2"
|
|
5157
|
+
stroke-linecap="round"
|
|
5158
|
+
stroke-linejoin="round"
|
|
5159
|
+
aria-hidden="true"
|
|
5160
|
+
width="100%"
|
|
5161
|
+
height="100%">
|
|
5162
|
+
<line
|
|
5163
|
+
x1="4"
|
|
5164
|
+
y1="9"
|
|
5165
|
+
x2="20"
|
|
5166
|
+
y2="9" />
|
|
5167
|
+
<line
|
|
5168
|
+
x1="4"
|
|
5169
|
+
y1="15"
|
|
5170
|
+
x2="20"
|
|
5171
|
+
y2="15" />
|
|
5172
|
+
<line
|
|
5173
|
+
x1="10"
|
|
5174
|
+
y1="3"
|
|
5175
|
+
x2="8"
|
|
5176
|
+
y2="21" />
|
|
5177
|
+
<line
|
|
5178
|
+
x1="16"
|
|
5179
|
+
y1="3"
|
|
5180
|
+
x2="14"
|
|
5181
|
+
y2="21" />
|
|
5182
|
+
</svg>
|
|
5183
|
+
`,
|
|
5184
|
+
}]
|
|
5185
|
+
}] });
|
|
5186
|
+
|
|
5187
|
+
class HeartIconComponent {
|
|
5188
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: HeartIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5189
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: HeartIconComponent, isStandalone: true, selector: "ea-icon-heart", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5190
|
+
<svg
|
|
5191
|
+
viewBox="0 0 24 24"
|
|
5192
|
+
fill="none"
|
|
5193
|
+
stroke="currentColor"
|
|
5194
|
+
stroke-width="2"
|
|
5195
|
+
stroke-linecap="round"
|
|
5196
|
+
stroke-linejoin="round"
|
|
5197
|
+
aria-hidden="true"
|
|
5198
|
+
width="100%"
|
|
5199
|
+
height="100%">
|
|
5200
|
+
<path
|
|
5201
|
+
d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z" />
|
|
5202
|
+
</svg>
|
|
5203
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5204
|
+
}
|
|
5205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: HeartIconComponent, decorators: [{
|
|
5206
|
+
type: Component,
|
|
5207
|
+
args: [{
|
|
5208
|
+
selector: 'ea-icon-heart',
|
|
5209
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5210
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5211
|
+
template: `
|
|
5212
|
+
<svg
|
|
5213
|
+
viewBox="0 0 24 24"
|
|
5214
|
+
fill="none"
|
|
5215
|
+
stroke="currentColor"
|
|
5216
|
+
stroke-width="2"
|
|
5217
|
+
stroke-linecap="round"
|
|
5218
|
+
stroke-linejoin="round"
|
|
5219
|
+
aria-hidden="true"
|
|
5220
|
+
width="100%"
|
|
5221
|
+
height="100%">
|
|
5222
|
+
<path
|
|
5223
|
+
d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z" />
|
|
5224
|
+
</svg>
|
|
5225
|
+
`,
|
|
5226
|
+
}]
|
|
5227
|
+
}] });
|
|
5228
|
+
|
|
5229
|
+
class HelpCircleIconComponent {
|
|
5230
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: HelpCircleIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5231
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: HelpCircleIconComponent, isStandalone: true, selector: "ea-icon-help-circle", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5232
|
+
<svg
|
|
5233
|
+
viewBox="0 0 24 24"
|
|
5234
|
+
fill="none"
|
|
5235
|
+
stroke="currentColor"
|
|
5236
|
+
stroke-width="2"
|
|
5237
|
+
stroke-linecap="round"
|
|
5238
|
+
stroke-linejoin="round"
|
|
5239
|
+
aria-hidden="true"
|
|
5240
|
+
width="100%"
|
|
5241
|
+
height="100%">
|
|
5242
|
+
<circle
|
|
5243
|
+
cx="12"
|
|
5244
|
+
cy="12"
|
|
5245
|
+
r="10" />
|
|
5246
|
+
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" />
|
|
5247
|
+
<line
|
|
5248
|
+
x1="12"
|
|
5249
|
+
y1="17"
|
|
5250
|
+
x2="12.01"
|
|
5251
|
+
y2="17" />
|
|
5252
|
+
</svg>
|
|
5253
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5254
|
+
}
|
|
5255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: HelpCircleIconComponent, decorators: [{
|
|
5256
|
+
type: Component,
|
|
5257
|
+
args: [{
|
|
5258
|
+
selector: 'ea-icon-help-circle',
|
|
5259
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5260
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5261
|
+
template: `
|
|
5262
|
+
<svg
|
|
5263
|
+
viewBox="0 0 24 24"
|
|
5264
|
+
fill="none"
|
|
5265
|
+
stroke="currentColor"
|
|
5266
|
+
stroke-width="2"
|
|
5267
|
+
stroke-linecap="round"
|
|
5268
|
+
stroke-linejoin="round"
|
|
5269
|
+
aria-hidden="true"
|
|
5270
|
+
width="100%"
|
|
5271
|
+
height="100%">
|
|
5272
|
+
<circle
|
|
5273
|
+
cx="12"
|
|
5274
|
+
cy="12"
|
|
5275
|
+
r="10" />
|
|
5276
|
+
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" />
|
|
5277
|
+
<line
|
|
5278
|
+
x1="12"
|
|
5279
|
+
y1="17"
|
|
5280
|
+
x2="12.01"
|
|
5281
|
+
y2="17" />
|
|
5282
|
+
</svg>
|
|
5283
|
+
`,
|
|
5284
|
+
}]
|
|
5285
|
+
}] });
|
|
5286
|
+
|
|
5287
|
+
class HomeIconComponent {
|
|
5288
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: HomeIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5289
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: HomeIconComponent, isStandalone: true, selector: "ea-icon-home", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5290
|
+
<svg
|
|
5291
|
+
viewBox="0 0 24 24"
|
|
5292
|
+
fill="none"
|
|
5293
|
+
stroke="currentColor"
|
|
5294
|
+
stroke-width="2"
|
|
5295
|
+
stroke-linecap="round"
|
|
5296
|
+
stroke-linejoin="round"
|
|
5297
|
+
aria-hidden="true"
|
|
5298
|
+
width="100%"
|
|
5299
|
+
height="100%">
|
|
5300
|
+
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
|
|
5301
|
+
<polyline points="9 22 9 12 15 12 15 22" />
|
|
5302
|
+
</svg>
|
|
5303
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5304
|
+
}
|
|
5305
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: HomeIconComponent, decorators: [{
|
|
5306
|
+
type: Component,
|
|
5307
|
+
args: [{
|
|
5308
|
+
selector: 'ea-icon-home',
|
|
5309
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5310
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5311
|
+
template: `
|
|
5312
|
+
<svg
|
|
5313
|
+
viewBox="0 0 24 24"
|
|
5314
|
+
fill="none"
|
|
5315
|
+
stroke="currentColor"
|
|
5316
|
+
stroke-width="2"
|
|
5317
|
+
stroke-linecap="round"
|
|
5318
|
+
stroke-linejoin="round"
|
|
5319
|
+
aria-hidden="true"
|
|
5320
|
+
width="100%"
|
|
5321
|
+
height="100%">
|
|
5322
|
+
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
|
|
5323
|
+
<polyline points="9 22 9 12 15 12 15 22" />
|
|
5324
|
+
</svg>
|
|
5325
|
+
`,
|
|
5326
|
+
}]
|
|
5327
|
+
}] });
|
|
5328
|
+
|
|
5329
|
+
class ImageIconComponent {
|
|
5330
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ImageIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5331
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ImageIconComponent, isStandalone: true, selector: "ea-icon-image", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5332
|
+
<svg
|
|
5333
|
+
viewBox="0 0 24 24"
|
|
5334
|
+
fill="none"
|
|
5335
|
+
stroke="currentColor"
|
|
5336
|
+
stroke-width="2"
|
|
5337
|
+
stroke-linecap="round"
|
|
5338
|
+
stroke-linejoin="round"
|
|
5339
|
+
aria-hidden="true"
|
|
5340
|
+
width="100%"
|
|
5341
|
+
height="100%">
|
|
5342
|
+
<rect
|
|
5343
|
+
x="3"
|
|
5344
|
+
y="3"
|
|
5345
|
+
width="18"
|
|
5346
|
+
height="18"
|
|
5347
|
+
rx="2"
|
|
5348
|
+
ry="2" />
|
|
5349
|
+
<circle
|
|
5350
|
+
cx="8.5"
|
|
5351
|
+
cy="8.5"
|
|
5352
|
+
r="1.5" />
|
|
5353
|
+
<polyline points="21 15 16 10 5 21" />
|
|
5354
|
+
</svg>
|
|
5355
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5356
|
+
}
|
|
5357
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ImageIconComponent, decorators: [{
|
|
5358
|
+
type: Component,
|
|
5359
|
+
args: [{
|
|
5360
|
+
selector: 'ea-icon-image',
|
|
5361
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5362
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5363
|
+
template: `
|
|
5364
|
+
<svg
|
|
5365
|
+
viewBox="0 0 24 24"
|
|
5366
|
+
fill="none"
|
|
5367
|
+
stroke="currentColor"
|
|
5368
|
+
stroke-width="2"
|
|
5369
|
+
stroke-linecap="round"
|
|
5370
|
+
stroke-linejoin="round"
|
|
5371
|
+
aria-hidden="true"
|
|
5372
|
+
width="100%"
|
|
5373
|
+
height="100%">
|
|
5374
|
+
<rect
|
|
5375
|
+
x="3"
|
|
5376
|
+
y="3"
|
|
5377
|
+
width="18"
|
|
5378
|
+
height="18"
|
|
5379
|
+
rx="2"
|
|
5380
|
+
ry="2" />
|
|
5381
|
+
<circle
|
|
5382
|
+
cx="8.5"
|
|
5383
|
+
cy="8.5"
|
|
5384
|
+
r="1.5" />
|
|
5385
|
+
<polyline points="21 15 16 10 5 21" />
|
|
5386
|
+
</svg>
|
|
5387
|
+
`,
|
|
5388
|
+
}]
|
|
5389
|
+
}] });
|
|
5390
|
+
|
|
5391
|
+
class InboxIconComponent {
|
|
5392
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: InboxIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5393
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: InboxIconComponent, isStandalone: true, selector: "ea-icon-inbox", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5394
|
+
<svg
|
|
5395
|
+
viewBox="0 0 24 24"
|
|
5396
|
+
fill="none"
|
|
5397
|
+
stroke="currentColor"
|
|
5398
|
+
stroke-width="2"
|
|
5399
|
+
stroke-linecap="round"
|
|
5400
|
+
stroke-linejoin="round"
|
|
5401
|
+
aria-hidden="true"
|
|
5402
|
+
width="100%"
|
|
5403
|
+
height="100%">
|
|
5404
|
+
<polyline points="22 12 16 12 14 15 10 15 8 12 2 12" />
|
|
5405
|
+
<path
|
|
5406
|
+
d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" />
|
|
5407
|
+
</svg>
|
|
5408
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5409
|
+
}
|
|
5410
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: InboxIconComponent, decorators: [{
|
|
5411
|
+
type: Component,
|
|
5412
|
+
args: [{
|
|
5413
|
+
selector: 'ea-icon-inbox',
|
|
5414
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5415
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5416
|
+
template: `
|
|
5417
|
+
<svg
|
|
5418
|
+
viewBox="0 0 24 24"
|
|
5419
|
+
fill="none"
|
|
5420
|
+
stroke="currentColor"
|
|
5421
|
+
stroke-width="2"
|
|
5422
|
+
stroke-linecap="round"
|
|
5423
|
+
stroke-linejoin="round"
|
|
5424
|
+
aria-hidden="true"
|
|
5425
|
+
width="100%"
|
|
5426
|
+
height="100%">
|
|
5427
|
+
<polyline points="22 12 16 12 14 15 10 15 8 12 2 12" />
|
|
5428
|
+
<path
|
|
5429
|
+
d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" />
|
|
5430
|
+
</svg>
|
|
5431
|
+
`,
|
|
5432
|
+
}]
|
|
5433
|
+
}] });
|
|
5434
|
+
|
|
5435
|
+
class LinkIconComponent {
|
|
5436
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LinkIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5437
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: LinkIconComponent, isStandalone: true, selector: "ea-icon-link", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5438
|
+
<svg
|
|
5439
|
+
viewBox="0 0 24 24"
|
|
5440
|
+
fill="none"
|
|
5441
|
+
stroke="currentColor"
|
|
5442
|
+
stroke-width="2"
|
|
5443
|
+
stroke-linecap="round"
|
|
5444
|
+
stroke-linejoin="round"
|
|
5445
|
+
aria-hidden="true"
|
|
5446
|
+
width="100%"
|
|
5447
|
+
height="100%">
|
|
5448
|
+
<path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" />
|
|
5449
|
+
<path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" />
|
|
4503
5450
|
</svg>
|
|
4504
5451
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4505
5452
|
}
|
|
4506
5453
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LinkIconComponent, decorators: [{
|
|
4507
5454
|
type: Component,
|
|
4508
5455
|
args: [{
|
|
4509
|
-
selector: 'ea-icon-link',
|
|
5456
|
+
selector: 'ea-icon-link',
|
|
5457
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5458
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5459
|
+
template: `
|
|
5460
|
+
<svg
|
|
5461
|
+
viewBox="0 0 24 24"
|
|
5462
|
+
fill="none"
|
|
5463
|
+
stroke="currentColor"
|
|
5464
|
+
stroke-width="2"
|
|
5465
|
+
stroke-linecap="round"
|
|
5466
|
+
stroke-linejoin="round"
|
|
5467
|
+
aria-hidden="true"
|
|
5468
|
+
width="100%"
|
|
5469
|
+
height="100%">
|
|
5470
|
+
<path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" />
|
|
5471
|
+
<path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" />
|
|
5472
|
+
</svg>
|
|
5473
|
+
`,
|
|
5474
|
+
}]
|
|
5475
|
+
}] });
|
|
5476
|
+
|
|
5477
|
+
class ListIconComponent {
|
|
5478
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ListIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5479
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ListIconComponent, isStandalone: true, selector: "ea-icon-list", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5480
|
+
<svg
|
|
5481
|
+
viewBox="0 0 24 24"
|
|
5482
|
+
fill="none"
|
|
5483
|
+
stroke="currentColor"
|
|
5484
|
+
stroke-width="2"
|
|
5485
|
+
stroke-linecap="round"
|
|
5486
|
+
stroke-linejoin="round"
|
|
5487
|
+
aria-hidden="true"
|
|
5488
|
+
width="100%"
|
|
5489
|
+
height="100%">
|
|
5490
|
+
<line
|
|
5491
|
+
x1="8"
|
|
5492
|
+
y1="6"
|
|
5493
|
+
x2="21"
|
|
5494
|
+
y2="6" />
|
|
5495
|
+
<line
|
|
5496
|
+
x1="8"
|
|
5497
|
+
y1="12"
|
|
5498
|
+
x2="21"
|
|
5499
|
+
y2="12" />
|
|
5500
|
+
<line
|
|
5501
|
+
x1="8"
|
|
5502
|
+
y1="18"
|
|
5503
|
+
x2="21"
|
|
5504
|
+
y2="18" />
|
|
5505
|
+
<line
|
|
5506
|
+
x1="3"
|
|
5507
|
+
y1="6"
|
|
5508
|
+
x2="3.01"
|
|
5509
|
+
y2="6" />
|
|
5510
|
+
<line
|
|
5511
|
+
x1="3"
|
|
5512
|
+
y1="12"
|
|
5513
|
+
x2="3.01"
|
|
5514
|
+
y2="12" />
|
|
5515
|
+
<line
|
|
5516
|
+
x1="3"
|
|
5517
|
+
y1="18"
|
|
5518
|
+
x2="3.01"
|
|
5519
|
+
y2="18" />
|
|
5520
|
+
</svg>
|
|
5521
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5522
|
+
}
|
|
5523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ListIconComponent, decorators: [{
|
|
5524
|
+
type: Component,
|
|
5525
|
+
args: [{
|
|
5526
|
+
selector: 'ea-icon-list',
|
|
5527
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5528
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5529
|
+
template: `
|
|
5530
|
+
<svg
|
|
5531
|
+
viewBox="0 0 24 24"
|
|
5532
|
+
fill="none"
|
|
5533
|
+
stroke="currentColor"
|
|
5534
|
+
stroke-width="2"
|
|
5535
|
+
stroke-linecap="round"
|
|
5536
|
+
stroke-linejoin="round"
|
|
5537
|
+
aria-hidden="true"
|
|
5538
|
+
width="100%"
|
|
5539
|
+
height="100%">
|
|
5540
|
+
<line
|
|
5541
|
+
x1="8"
|
|
5542
|
+
y1="6"
|
|
5543
|
+
x2="21"
|
|
5544
|
+
y2="6" />
|
|
5545
|
+
<line
|
|
5546
|
+
x1="8"
|
|
5547
|
+
y1="12"
|
|
5548
|
+
x2="21"
|
|
5549
|
+
y2="12" />
|
|
5550
|
+
<line
|
|
5551
|
+
x1="8"
|
|
5552
|
+
y1="18"
|
|
5553
|
+
x2="21"
|
|
5554
|
+
y2="18" />
|
|
5555
|
+
<line
|
|
5556
|
+
x1="3"
|
|
5557
|
+
y1="6"
|
|
5558
|
+
x2="3.01"
|
|
5559
|
+
y2="6" />
|
|
5560
|
+
<line
|
|
5561
|
+
x1="3"
|
|
5562
|
+
y1="12"
|
|
5563
|
+
x2="3.01"
|
|
5564
|
+
y2="12" />
|
|
5565
|
+
<line
|
|
5566
|
+
x1="3"
|
|
5567
|
+
y1="18"
|
|
5568
|
+
x2="3.01"
|
|
5569
|
+
y2="18" />
|
|
5570
|
+
</svg>
|
|
5571
|
+
`,
|
|
5572
|
+
}]
|
|
5573
|
+
}] });
|
|
5574
|
+
|
|
5575
|
+
class LoaderIconComponent {
|
|
5576
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LoaderIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5577
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: LoaderIconComponent, isStandalone: true, selector: "ea-icon-loader", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5578
|
+
<svg
|
|
5579
|
+
viewBox="0 0 24 24"
|
|
5580
|
+
fill="none"
|
|
5581
|
+
stroke="currentColor"
|
|
5582
|
+
stroke-width="2"
|
|
5583
|
+
stroke-linecap="round"
|
|
5584
|
+
stroke-linejoin="round"
|
|
5585
|
+
aria-hidden="true"
|
|
5586
|
+
width="100%"
|
|
5587
|
+
height="100%">
|
|
5588
|
+
<line
|
|
5589
|
+
x1="12"
|
|
5590
|
+
y1="2"
|
|
5591
|
+
x2="12"
|
|
5592
|
+
y2="6" />
|
|
5593
|
+
<line
|
|
5594
|
+
x1="12"
|
|
5595
|
+
y1="18"
|
|
5596
|
+
x2="12"
|
|
5597
|
+
y2="22" />
|
|
5598
|
+
<line
|
|
5599
|
+
x1="4.93"
|
|
5600
|
+
y1="4.93"
|
|
5601
|
+
x2="7.76"
|
|
5602
|
+
y2="7.76" />
|
|
5603
|
+
<line
|
|
5604
|
+
x1="16.24"
|
|
5605
|
+
y1="16.24"
|
|
5606
|
+
x2="19.07"
|
|
5607
|
+
y2="19.07" />
|
|
5608
|
+
<line
|
|
5609
|
+
x1="2"
|
|
5610
|
+
y1="12"
|
|
5611
|
+
x2="6"
|
|
5612
|
+
y2="12" />
|
|
5613
|
+
<line
|
|
5614
|
+
x1="18"
|
|
5615
|
+
y1="12"
|
|
5616
|
+
x2="22"
|
|
5617
|
+
y2="12" />
|
|
5618
|
+
<line
|
|
5619
|
+
x1="4.93"
|
|
5620
|
+
y1="19.07"
|
|
5621
|
+
x2="7.76"
|
|
5622
|
+
y2="16.24" />
|
|
5623
|
+
<line
|
|
5624
|
+
x1="16.24"
|
|
5625
|
+
y1="7.76"
|
|
5626
|
+
x2="19.07"
|
|
5627
|
+
y2="4.93" />
|
|
5628
|
+
</svg>
|
|
5629
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5630
|
+
}
|
|
5631
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LoaderIconComponent, decorators: [{
|
|
5632
|
+
type: Component,
|
|
5633
|
+
args: [{
|
|
5634
|
+
selector: 'ea-icon-loader',
|
|
5635
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5636
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5637
|
+
template: `
|
|
5638
|
+
<svg
|
|
5639
|
+
viewBox="0 0 24 24"
|
|
5640
|
+
fill="none"
|
|
5641
|
+
stroke="currentColor"
|
|
5642
|
+
stroke-width="2"
|
|
5643
|
+
stroke-linecap="round"
|
|
5644
|
+
stroke-linejoin="round"
|
|
5645
|
+
aria-hidden="true"
|
|
5646
|
+
width="100%"
|
|
5647
|
+
height="100%">
|
|
5648
|
+
<line
|
|
5649
|
+
x1="12"
|
|
5650
|
+
y1="2"
|
|
5651
|
+
x2="12"
|
|
5652
|
+
y2="6" />
|
|
5653
|
+
<line
|
|
5654
|
+
x1="12"
|
|
5655
|
+
y1="18"
|
|
5656
|
+
x2="12"
|
|
5657
|
+
y2="22" />
|
|
5658
|
+
<line
|
|
5659
|
+
x1="4.93"
|
|
5660
|
+
y1="4.93"
|
|
5661
|
+
x2="7.76"
|
|
5662
|
+
y2="7.76" />
|
|
5663
|
+
<line
|
|
5664
|
+
x1="16.24"
|
|
5665
|
+
y1="16.24"
|
|
5666
|
+
x2="19.07"
|
|
5667
|
+
y2="19.07" />
|
|
5668
|
+
<line
|
|
5669
|
+
x1="2"
|
|
5670
|
+
y1="12"
|
|
5671
|
+
x2="6"
|
|
5672
|
+
y2="12" />
|
|
5673
|
+
<line
|
|
5674
|
+
x1="18"
|
|
5675
|
+
y1="12"
|
|
5676
|
+
x2="22"
|
|
5677
|
+
y2="12" />
|
|
5678
|
+
<line
|
|
5679
|
+
x1="4.93"
|
|
5680
|
+
y1="19.07"
|
|
5681
|
+
x2="7.76"
|
|
5682
|
+
y2="16.24" />
|
|
5683
|
+
<line
|
|
5684
|
+
x1="16.24"
|
|
5685
|
+
y1="7.76"
|
|
5686
|
+
x2="19.07"
|
|
5687
|
+
y2="4.93" />
|
|
5688
|
+
</svg>
|
|
5689
|
+
`,
|
|
5690
|
+
}]
|
|
5691
|
+
}] });
|
|
5692
|
+
|
|
5693
|
+
class LockIconComponent {
|
|
5694
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LockIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5695
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: LockIconComponent, isStandalone: true, selector: "ea-icon-lock", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5696
|
+
<svg
|
|
5697
|
+
viewBox="0 0 24 24"
|
|
5698
|
+
fill="none"
|
|
5699
|
+
stroke="currentColor"
|
|
5700
|
+
stroke-width="2"
|
|
5701
|
+
stroke-linecap="round"
|
|
5702
|
+
stroke-linejoin="round"
|
|
5703
|
+
aria-hidden="true"
|
|
5704
|
+
width="100%"
|
|
5705
|
+
height="100%">
|
|
5706
|
+
<rect
|
|
5707
|
+
x="3"
|
|
5708
|
+
y="11"
|
|
5709
|
+
width="18"
|
|
5710
|
+
height="11"
|
|
5711
|
+
rx="2"
|
|
5712
|
+
ry="2" />
|
|
5713
|
+
<path d="M7 11V7a5 5 0 0 1 10 0v4" />
|
|
5714
|
+
</svg>
|
|
5715
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5716
|
+
}
|
|
5717
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LockIconComponent, decorators: [{
|
|
5718
|
+
type: Component,
|
|
5719
|
+
args: [{
|
|
5720
|
+
selector: 'ea-icon-lock',
|
|
5721
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5722
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5723
|
+
template: `
|
|
5724
|
+
<svg
|
|
5725
|
+
viewBox="0 0 24 24"
|
|
5726
|
+
fill="none"
|
|
5727
|
+
stroke="currentColor"
|
|
5728
|
+
stroke-width="2"
|
|
5729
|
+
stroke-linecap="round"
|
|
5730
|
+
stroke-linejoin="round"
|
|
5731
|
+
aria-hidden="true"
|
|
5732
|
+
width="100%"
|
|
5733
|
+
height="100%">
|
|
5734
|
+
<rect
|
|
5735
|
+
x="3"
|
|
5736
|
+
y="11"
|
|
5737
|
+
width="18"
|
|
5738
|
+
height="11"
|
|
5739
|
+
rx="2"
|
|
5740
|
+
ry="2" />
|
|
5741
|
+
<path d="M7 11V7a5 5 0 0 1 10 0v4" />
|
|
5742
|
+
</svg>
|
|
5743
|
+
`,
|
|
5744
|
+
}]
|
|
5745
|
+
}] });
|
|
5746
|
+
|
|
5747
|
+
class LogInIconComponent {
|
|
5748
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LogInIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5749
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: LogInIconComponent, isStandalone: true, selector: "ea-icon-log-in", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5750
|
+
<svg
|
|
5751
|
+
viewBox="0 0 24 24"
|
|
5752
|
+
fill="none"
|
|
5753
|
+
stroke="currentColor"
|
|
5754
|
+
stroke-width="2"
|
|
5755
|
+
stroke-linecap="round"
|
|
5756
|
+
stroke-linejoin="round"
|
|
5757
|
+
aria-hidden="true"
|
|
5758
|
+
width="100%"
|
|
5759
|
+
height="100%">
|
|
5760
|
+
<path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" />
|
|
5761
|
+
<polyline points="10 17 15 12 10 7" />
|
|
5762
|
+
<line
|
|
5763
|
+
x1="15"
|
|
5764
|
+
y1="12"
|
|
5765
|
+
x2="3"
|
|
5766
|
+
y2="12" />
|
|
5767
|
+
</svg>
|
|
5768
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5769
|
+
}
|
|
5770
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LogInIconComponent, decorators: [{
|
|
5771
|
+
type: Component,
|
|
5772
|
+
args: [{
|
|
5773
|
+
selector: 'ea-icon-log-in',
|
|
5774
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5775
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5776
|
+
template: `
|
|
5777
|
+
<svg
|
|
5778
|
+
viewBox="0 0 24 24"
|
|
5779
|
+
fill="none"
|
|
5780
|
+
stroke="currentColor"
|
|
5781
|
+
stroke-width="2"
|
|
5782
|
+
stroke-linecap="round"
|
|
5783
|
+
stroke-linejoin="round"
|
|
5784
|
+
aria-hidden="true"
|
|
5785
|
+
width="100%"
|
|
5786
|
+
height="100%">
|
|
5787
|
+
<path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" />
|
|
5788
|
+
<polyline points="10 17 15 12 10 7" />
|
|
5789
|
+
<line
|
|
5790
|
+
x1="15"
|
|
5791
|
+
y1="12"
|
|
5792
|
+
x2="3"
|
|
5793
|
+
y2="12" />
|
|
5794
|
+
</svg>
|
|
5795
|
+
`,
|
|
5796
|
+
}]
|
|
5797
|
+
}] });
|
|
5798
|
+
|
|
5799
|
+
class LogOutIconComponent {
|
|
5800
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LogOutIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5801
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: LogOutIconComponent, isStandalone: true, selector: "ea-icon-log-out", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5802
|
+
<svg
|
|
5803
|
+
viewBox="0 0 24 24"
|
|
5804
|
+
fill="none"
|
|
5805
|
+
stroke="currentColor"
|
|
5806
|
+
stroke-width="2"
|
|
5807
|
+
stroke-linecap="round"
|
|
5808
|
+
stroke-linejoin="round"
|
|
5809
|
+
aria-hidden="true"
|
|
5810
|
+
width="100%"
|
|
5811
|
+
height="100%">
|
|
5812
|
+
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" />
|
|
5813
|
+
<polyline points="16 17 21 12 16 7" />
|
|
5814
|
+
<line
|
|
5815
|
+
x1="21"
|
|
5816
|
+
y1="12"
|
|
5817
|
+
x2="9"
|
|
5818
|
+
y2="12" />
|
|
5819
|
+
</svg>
|
|
5820
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5821
|
+
}
|
|
5822
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: LogOutIconComponent, decorators: [{
|
|
5823
|
+
type: Component,
|
|
5824
|
+
args: [{
|
|
5825
|
+
selector: 'ea-icon-log-out',
|
|
5826
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5827
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5828
|
+
template: `
|
|
5829
|
+
<svg
|
|
5830
|
+
viewBox="0 0 24 24"
|
|
5831
|
+
fill="none"
|
|
5832
|
+
stroke="currentColor"
|
|
5833
|
+
stroke-width="2"
|
|
5834
|
+
stroke-linecap="round"
|
|
5835
|
+
stroke-linejoin="round"
|
|
5836
|
+
aria-hidden="true"
|
|
5837
|
+
width="100%"
|
|
5838
|
+
height="100%">
|
|
5839
|
+
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" />
|
|
5840
|
+
<polyline points="16 17 21 12 16 7" />
|
|
5841
|
+
<line
|
|
5842
|
+
x1="21"
|
|
5843
|
+
y1="12"
|
|
5844
|
+
x2="9"
|
|
5845
|
+
y2="12" />
|
|
5846
|
+
</svg>
|
|
5847
|
+
`,
|
|
5848
|
+
}]
|
|
5849
|
+
}] });
|
|
5850
|
+
|
|
5851
|
+
class MailIconComponent {
|
|
5852
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MailIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5853
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: MailIconComponent, isStandalone: true, selector: "ea-icon-mail", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5854
|
+
<svg
|
|
5855
|
+
viewBox="0 0 24 24"
|
|
5856
|
+
fill="none"
|
|
5857
|
+
stroke="currentColor"
|
|
5858
|
+
stroke-width="2"
|
|
5859
|
+
stroke-linecap="round"
|
|
5860
|
+
stroke-linejoin="round"
|
|
5861
|
+
aria-hidden="true"
|
|
5862
|
+
width="100%"
|
|
5863
|
+
height="100%">
|
|
5864
|
+
<path
|
|
5865
|
+
d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" />
|
|
5866
|
+
<polyline points="22 6 12 13 2 6" />
|
|
5867
|
+
</svg>
|
|
5868
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5869
|
+
}
|
|
5870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MailIconComponent, decorators: [{
|
|
5871
|
+
type: Component,
|
|
5872
|
+
args: [{
|
|
5873
|
+
selector: 'ea-icon-mail',
|
|
5874
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5875
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5876
|
+
template: `
|
|
5877
|
+
<svg
|
|
5878
|
+
viewBox="0 0 24 24"
|
|
5879
|
+
fill="none"
|
|
5880
|
+
stroke="currentColor"
|
|
5881
|
+
stroke-width="2"
|
|
5882
|
+
stroke-linecap="round"
|
|
5883
|
+
stroke-linejoin="round"
|
|
5884
|
+
aria-hidden="true"
|
|
5885
|
+
width="100%"
|
|
5886
|
+
height="100%">
|
|
5887
|
+
<path
|
|
5888
|
+
d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" />
|
|
5889
|
+
<polyline points="22 6 12 13 2 6" />
|
|
5890
|
+
</svg>
|
|
5891
|
+
`,
|
|
5892
|
+
}]
|
|
5893
|
+
}] });
|
|
5894
|
+
|
|
5895
|
+
class MapPinIconComponent {
|
|
5896
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MapPinIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5897
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: MapPinIconComponent, isStandalone: true, selector: "ea-icon-map-pin", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5898
|
+
<svg
|
|
5899
|
+
viewBox="0 0 24 24"
|
|
5900
|
+
fill="none"
|
|
5901
|
+
stroke="currentColor"
|
|
5902
|
+
stroke-width="2"
|
|
5903
|
+
stroke-linecap="round"
|
|
5904
|
+
stroke-linejoin="round"
|
|
5905
|
+
aria-hidden="true"
|
|
5906
|
+
width="100%"
|
|
5907
|
+
height="100%">
|
|
5908
|
+
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z" />
|
|
5909
|
+
<circle
|
|
5910
|
+
cx="12"
|
|
5911
|
+
cy="10"
|
|
5912
|
+
r="3" />
|
|
5913
|
+
</svg>
|
|
5914
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5915
|
+
}
|
|
5916
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MapPinIconComponent, decorators: [{
|
|
5917
|
+
type: Component,
|
|
5918
|
+
args: [{
|
|
5919
|
+
selector: 'ea-icon-map-pin',
|
|
5920
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5921
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5922
|
+
template: `
|
|
5923
|
+
<svg
|
|
5924
|
+
viewBox="0 0 24 24"
|
|
5925
|
+
fill="none"
|
|
5926
|
+
stroke="currentColor"
|
|
5927
|
+
stroke-width="2"
|
|
5928
|
+
stroke-linecap="round"
|
|
5929
|
+
stroke-linejoin="round"
|
|
5930
|
+
aria-hidden="true"
|
|
5931
|
+
width="100%"
|
|
5932
|
+
height="100%">
|
|
5933
|
+
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z" />
|
|
5934
|
+
<circle
|
|
5935
|
+
cx="12"
|
|
5936
|
+
cy="10"
|
|
5937
|
+
r="3" />
|
|
5938
|
+
</svg>
|
|
5939
|
+
`,
|
|
5940
|
+
}]
|
|
5941
|
+
}] });
|
|
5942
|
+
|
|
5943
|
+
class MaximizeIconComponent {
|
|
5944
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MaximizeIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5945
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: MaximizeIconComponent, isStandalone: true, selector: "ea-icon-maximize", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5946
|
+
<svg
|
|
5947
|
+
viewBox="0 0 24 24"
|
|
5948
|
+
fill="none"
|
|
5949
|
+
stroke="currentColor"
|
|
5950
|
+
stroke-width="2"
|
|
5951
|
+
stroke-linecap="round"
|
|
5952
|
+
stroke-linejoin="round"
|
|
5953
|
+
aria-hidden="true"
|
|
5954
|
+
width="100%"
|
|
5955
|
+
height="100%">
|
|
5956
|
+
<path d="M8 3H5a2 2 0 0 0-2 2v3" />
|
|
5957
|
+
<path d="M21 8V5a2 2 0 0 0-2-2h-3" />
|
|
5958
|
+
<path d="M3 16v3a2 2 0 0 0 2 2h3" />
|
|
5959
|
+
<path d="M16 21h3a2 2 0 0 0 2-2v-3" />
|
|
5960
|
+
</svg>
|
|
5961
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5962
|
+
}
|
|
5963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MaximizeIconComponent, decorators: [{
|
|
5964
|
+
type: Component,
|
|
5965
|
+
args: [{
|
|
5966
|
+
selector: 'ea-icon-maximize',
|
|
5967
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5968
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5969
|
+
template: `
|
|
5970
|
+
<svg
|
|
5971
|
+
viewBox="0 0 24 24"
|
|
5972
|
+
fill="none"
|
|
5973
|
+
stroke="currentColor"
|
|
5974
|
+
stroke-width="2"
|
|
5975
|
+
stroke-linecap="round"
|
|
5976
|
+
stroke-linejoin="round"
|
|
5977
|
+
aria-hidden="true"
|
|
5978
|
+
width="100%"
|
|
5979
|
+
height="100%">
|
|
5980
|
+
<path d="M8 3H5a2 2 0 0 0-2 2v3" />
|
|
5981
|
+
<path d="M21 8V5a2 2 0 0 0-2-2h-3" />
|
|
5982
|
+
<path d="M3 16v3a2 2 0 0 0 2 2h3" />
|
|
5983
|
+
<path d="M16 21h3a2 2 0 0 0 2-2v-3" />
|
|
5984
|
+
</svg>
|
|
5985
|
+
`,
|
|
5986
|
+
}]
|
|
5987
|
+
}] });
|
|
5988
|
+
|
|
5989
|
+
class MenuIconComponent {
|
|
5990
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MenuIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5991
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: MenuIconComponent, isStandalone: true, selector: "ea-icon-menu", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5992
|
+
<svg
|
|
5993
|
+
viewBox="0 0 24 24"
|
|
5994
|
+
fill="none"
|
|
5995
|
+
stroke="currentColor"
|
|
5996
|
+
stroke-width="2"
|
|
5997
|
+
stroke-linecap="round"
|
|
5998
|
+
stroke-linejoin="round"
|
|
5999
|
+
aria-hidden="true"
|
|
6000
|
+
width="100%"
|
|
6001
|
+
height="100%">
|
|
6002
|
+
<line
|
|
6003
|
+
x1="3"
|
|
6004
|
+
y1="6"
|
|
6005
|
+
x2="21"
|
|
6006
|
+
y2="6" />
|
|
6007
|
+
<line
|
|
6008
|
+
x1="3"
|
|
6009
|
+
y1="12"
|
|
6010
|
+
x2="21"
|
|
6011
|
+
y2="12" />
|
|
6012
|
+
<line
|
|
6013
|
+
x1="3"
|
|
6014
|
+
y1="18"
|
|
6015
|
+
x2="21"
|
|
6016
|
+
y2="18" />
|
|
6017
|
+
</svg>
|
|
6018
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6019
|
+
}
|
|
6020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MenuIconComponent, decorators: [{
|
|
6021
|
+
type: Component,
|
|
6022
|
+
args: [{
|
|
6023
|
+
selector: 'ea-icon-menu',
|
|
6024
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6025
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6026
|
+
template: `
|
|
6027
|
+
<svg
|
|
6028
|
+
viewBox="0 0 24 24"
|
|
6029
|
+
fill="none"
|
|
6030
|
+
stroke="currentColor"
|
|
6031
|
+
stroke-width="2"
|
|
6032
|
+
stroke-linecap="round"
|
|
6033
|
+
stroke-linejoin="round"
|
|
6034
|
+
aria-hidden="true"
|
|
6035
|
+
width="100%"
|
|
6036
|
+
height="100%">
|
|
6037
|
+
<line
|
|
6038
|
+
x1="3"
|
|
6039
|
+
y1="6"
|
|
6040
|
+
x2="21"
|
|
6041
|
+
y2="6" />
|
|
6042
|
+
<line
|
|
6043
|
+
x1="3"
|
|
6044
|
+
y1="12"
|
|
6045
|
+
x2="21"
|
|
6046
|
+
y2="12" />
|
|
6047
|
+
<line
|
|
6048
|
+
x1="3"
|
|
6049
|
+
y1="18"
|
|
6050
|
+
x2="21"
|
|
6051
|
+
y2="18" />
|
|
6052
|
+
</svg>
|
|
6053
|
+
`,
|
|
6054
|
+
}]
|
|
6055
|
+
}] });
|
|
6056
|
+
|
|
6057
|
+
class MicIconComponent {
|
|
6058
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MicIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6059
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: MicIconComponent, isStandalone: true, selector: "ea-icon-mic", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6060
|
+
<svg
|
|
6061
|
+
viewBox="0 0 24 24"
|
|
6062
|
+
fill="none"
|
|
6063
|
+
stroke="currentColor"
|
|
6064
|
+
stroke-width="2"
|
|
6065
|
+
stroke-linecap="round"
|
|
6066
|
+
stroke-linejoin="round"
|
|
6067
|
+
aria-hidden="true"
|
|
6068
|
+
width="100%"
|
|
6069
|
+
height="100%">
|
|
6070
|
+
<path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z" />
|
|
6071
|
+
<path d="M19 10v2a7 7 0 0 1-14 0v-2" />
|
|
6072
|
+
<line
|
|
6073
|
+
x1="12"
|
|
6074
|
+
y1="19"
|
|
6075
|
+
x2="12"
|
|
6076
|
+
y2="23" />
|
|
6077
|
+
<line
|
|
6078
|
+
x1="8"
|
|
6079
|
+
y1="23"
|
|
6080
|
+
x2="16"
|
|
6081
|
+
y2="23" />
|
|
6082
|
+
</svg>
|
|
6083
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6084
|
+
}
|
|
6085
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MicIconComponent, decorators: [{
|
|
6086
|
+
type: Component,
|
|
6087
|
+
args: [{
|
|
6088
|
+
selector: 'ea-icon-mic',
|
|
6089
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6090
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6091
|
+
template: `
|
|
6092
|
+
<svg
|
|
6093
|
+
viewBox="0 0 24 24"
|
|
6094
|
+
fill="none"
|
|
6095
|
+
stroke="currentColor"
|
|
6096
|
+
stroke-width="2"
|
|
6097
|
+
stroke-linecap="round"
|
|
6098
|
+
stroke-linejoin="round"
|
|
6099
|
+
aria-hidden="true"
|
|
6100
|
+
width="100%"
|
|
6101
|
+
height="100%">
|
|
6102
|
+
<path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z" />
|
|
6103
|
+
<path d="M19 10v2a7 7 0 0 1-14 0v-2" />
|
|
6104
|
+
<line
|
|
6105
|
+
x1="12"
|
|
6106
|
+
y1="19"
|
|
6107
|
+
x2="12"
|
|
6108
|
+
y2="23" />
|
|
6109
|
+
<line
|
|
6110
|
+
x1="8"
|
|
6111
|
+
y1="23"
|
|
6112
|
+
x2="16"
|
|
6113
|
+
y2="23" />
|
|
6114
|
+
</svg>
|
|
6115
|
+
`,
|
|
6116
|
+
}]
|
|
6117
|
+
}] });
|
|
6118
|
+
|
|
6119
|
+
class MicrosoftIconComponent {
|
|
6120
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MicrosoftIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6121
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: MicrosoftIconComponent, isStandalone: true, selector: "ea-icon-microsoft", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6122
|
+
<svg
|
|
6123
|
+
viewBox="0 0 24 24"
|
|
6124
|
+
aria-hidden="true"
|
|
6125
|
+
width="100%"
|
|
6126
|
+
height="100%">
|
|
6127
|
+
<rect
|
|
6128
|
+
x="1"
|
|
6129
|
+
y="1"
|
|
6130
|
+
width="10"
|
|
6131
|
+
height="10"
|
|
6132
|
+
fill="#F25022" />
|
|
6133
|
+
<rect
|
|
6134
|
+
x="13"
|
|
6135
|
+
y="1"
|
|
6136
|
+
width="10"
|
|
6137
|
+
height="10"
|
|
6138
|
+
fill="#7FBA00" />
|
|
6139
|
+
<rect
|
|
6140
|
+
x="1"
|
|
6141
|
+
y="13"
|
|
6142
|
+
width="10"
|
|
6143
|
+
height="10"
|
|
6144
|
+
fill="#00A4EF" />
|
|
6145
|
+
<rect
|
|
6146
|
+
x="13"
|
|
6147
|
+
y="13"
|
|
6148
|
+
width="10"
|
|
6149
|
+
height="10"
|
|
6150
|
+
fill="#FFB900" />
|
|
6151
|
+
</svg>
|
|
6152
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6153
|
+
}
|
|
6154
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MicrosoftIconComponent, decorators: [{
|
|
6155
|
+
type: Component,
|
|
6156
|
+
args: [{
|
|
6157
|
+
selector: 'ea-icon-microsoft',
|
|
6158
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6159
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6160
|
+
template: `
|
|
6161
|
+
<svg
|
|
6162
|
+
viewBox="0 0 24 24"
|
|
6163
|
+
aria-hidden="true"
|
|
6164
|
+
width="100%"
|
|
6165
|
+
height="100%">
|
|
6166
|
+
<rect
|
|
6167
|
+
x="1"
|
|
6168
|
+
y="1"
|
|
6169
|
+
width="10"
|
|
6170
|
+
height="10"
|
|
6171
|
+
fill="#F25022" />
|
|
6172
|
+
<rect
|
|
6173
|
+
x="13"
|
|
6174
|
+
y="1"
|
|
6175
|
+
width="10"
|
|
6176
|
+
height="10"
|
|
6177
|
+
fill="#7FBA00" />
|
|
6178
|
+
<rect
|
|
6179
|
+
x="1"
|
|
6180
|
+
y="13"
|
|
6181
|
+
width="10"
|
|
6182
|
+
height="10"
|
|
6183
|
+
fill="#00A4EF" />
|
|
6184
|
+
<rect
|
|
6185
|
+
x="13"
|
|
6186
|
+
y="13"
|
|
6187
|
+
width="10"
|
|
6188
|
+
height="10"
|
|
6189
|
+
fill="#FFB900" />
|
|
6190
|
+
</svg>
|
|
6191
|
+
`,
|
|
6192
|
+
}]
|
|
6193
|
+
}] });
|
|
6194
|
+
|
|
6195
|
+
class MinimizeIconComponent {
|
|
6196
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MinimizeIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6197
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: MinimizeIconComponent, isStandalone: true, selector: "ea-icon-minimize", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6198
|
+
<svg
|
|
6199
|
+
viewBox="0 0 24 24"
|
|
6200
|
+
fill="none"
|
|
6201
|
+
stroke="currentColor"
|
|
6202
|
+
stroke-width="2"
|
|
6203
|
+
stroke-linecap="round"
|
|
6204
|
+
stroke-linejoin="round"
|
|
6205
|
+
aria-hidden="true"
|
|
6206
|
+
width="100%"
|
|
6207
|
+
height="100%">
|
|
6208
|
+
<path d="M8 3v3a2 2 0 0 1-2 2H3" />
|
|
6209
|
+
<path d="M21 8h-3a2 2 0 0 1-2-2V3" />
|
|
6210
|
+
<path d="M3 16h3a2 2 0 0 1 2 2v3" />
|
|
6211
|
+
<path d="M16 21v-3a2 2 0 0 1 2-2h3" />
|
|
6212
|
+
</svg>
|
|
6213
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6214
|
+
}
|
|
6215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MinimizeIconComponent, decorators: [{
|
|
6216
|
+
type: Component,
|
|
6217
|
+
args: [{
|
|
6218
|
+
selector: 'ea-icon-minimize',
|
|
6219
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6220
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6221
|
+
template: `
|
|
6222
|
+
<svg
|
|
6223
|
+
viewBox="0 0 24 24"
|
|
6224
|
+
fill="none"
|
|
6225
|
+
stroke="currentColor"
|
|
6226
|
+
stroke-width="2"
|
|
6227
|
+
stroke-linecap="round"
|
|
6228
|
+
stroke-linejoin="round"
|
|
6229
|
+
aria-hidden="true"
|
|
6230
|
+
width="100%"
|
|
6231
|
+
height="100%">
|
|
6232
|
+
<path d="M8 3v3a2 2 0 0 1-2 2H3" />
|
|
6233
|
+
<path d="M21 8h-3a2 2 0 0 1-2-2V3" />
|
|
6234
|
+
<path d="M3 16h3a2 2 0 0 1 2 2v3" />
|
|
6235
|
+
<path d="M16 21v-3a2 2 0 0 1 2-2h3" />
|
|
6236
|
+
</svg>
|
|
6237
|
+
`,
|
|
6238
|
+
}]
|
|
6239
|
+
}] });
|
|
6240
|
+
|
|
6241
|
+
class MonitorIconComponent {
|
|
6242
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MonitorIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6243
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: MonitorIconComponent, isStandalone: true, selector: "ea-icon-monitor", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6244
|
+
<svg
|
|
6245
|
+
viewBox="0 0 24 24"
|
|
6246
|
+
fill="none"
|
|
6247
|
+
stroke="currentColor"
|
|
6248
|
+
stroke-width="2"
|
|
6249
|
+
stroke-linecap="round"
|
|
6250
|
+
stroke-linejoin="round"
|
|
6251
|
+
aria-hidden="true"
|
|
6252
|
+
width="100%"
|
|
6253
|
+
height="100%">
|
|
6254
|
+
<rect
|
|
6255
|
+
x="2"
|
|
6256
|
+
y="3"
|
|
6257
|
+
width="20"
|
|
6258
|
+
height="14"
|
|
6259
|
+
rx="2"
|
|
6260
|
+
ry="2" />
|
|
6261
|
+
<line
|
|
6262
|
+
x1="8"
|
|
6263
|
+
y1="21"
|
|
6264
|
+
x2="16"
|
|
6265
|
+
y2="21" />
|
|
6266
|
+
<line
|
|
6267
|
+
x1="12"
|
|
6268
|
+
y1="17"
|
|
6269
|
+
x2="12"
|
|
6270
|
+
y2="21" />
|
|
6271
|
+
</svg>
|
|
6272
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6273
|
+
}
|
|
6274
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MonitorIconComponent, decorators: [{
|
|
6275
|
+
type: Component,
|
|
6276
|
+
args: [{
|
|
6277
|
+
selector: 'ea-icon-monitor',
|
|
6278
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6279
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6280
|
+
template: `
|
|
6281
|
+
<svg
|
|
6282
|
+
viewBox="0 0 24 24"
|
|
6283
|
+
fill="none"
|
|
6284
|
+
stroke="currentColor"
|
|
6285
|
+
stroke-width="2"
|
|
6286
|
+
stroke-linecap="round"
|
|
6287
|
+
stroke-linejoin="round"
|
|
6288
|
+
aria-hidden="true"
|
|
6289
|
+
width="100%"
|
|
6290
|
+
height="100%">
|
|
6291
|
+
<rect
|
|
6292
|
+
x="2"
|
|
6293
|
+
y="3"
|
|
6294
|
+
width="20"
|
|
6295
|
+
height="14"
|
|
6296
|
+
rx="2"
|
|
6297
|
+
ry="2" />
|
|
6298
|
+
<line
|
|
6299
|
+
x1="8"
|
|
6300
|
+
y1="21"
|
|
6301
|
+
x2="16"
|
|
6302
|
+
y2="21" />
|
|
6303
|
+
<line
|
|
6304
|
+
x1="12"
|
|
6305
|
+
y1="17"
|
|
6306
|
+
x2="12"
|
|
6307
|
+
y2="21" />
|
|
6308
|
+
</svg>
|
|
6309
|
+
`,
|
|
6310
|
+
}]
|
|
6311
|
+
}] });
|
|
6312
|
+
|
|
6313
|
+
class MoonIconComponent {
|
|
6314
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MoonIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6315
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: MoonIconComponent, isStandalone: true, selector: "ea-icon-moon", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6316
|
+
<svg
|
|
6317
|
+
viewBox="0 0 24 24"
|
|
6318
|
+
fill="none"
|
|
6319
|
+
stroke="currentColor"
|
|
6320
|
+
stroke-width="2"
|
|
6321
|
+
stroke-linecap="round"
|
|
6322
|
+
stroke-linejoin="round"
|
|
6323
|
+
aria-hidden="true"
|
|
6324
|
+
width="100%"
|
|
6325
|
+
height="100%">
|
|
6326
|
+
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" />
|
|
6327
|
+
</svg>
|
|
6328
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6329
|
+
}
|
|
6330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MoonIconComponent, decorators: [{
|
|
6331
|
+
type: Component,
|
|
6332
|
+
args: [{
|
|
6333
|
+
selector: 'ea-icon-moon',
|
|
6334
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6335
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6336
|
+
template: `
|
|
6337
|
+
<svg
|
|
6338
|
+
viewBox="0 0 24 24"
|
|
6339
|
+
fill="none"
|
|
6340
|
+
stroke="currentColor"
|
|
6341
|
+
stroke-width="2"
|
|
6342
|
+
stroke-linecap="round"
|
|
6343
|
+
stroke-linejoin="round"
|
|
6344
|
+
aria-hidden="true"
|
|
6345
|
+
width="100%"
|
|
6346
|
+
height="100%">
|
|
6347
|
+
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" />
|
|
6348
|
+
</svg>
|
|
6349
|
+
`,
|
|
6350
|
+
}]
|
|
6351
|
+
}] });
|
|
6352
|
+
|
|
6353
|
+
class MoreHorizontalIconComponent {
|
|
6354
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MoreHorizontalIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6355
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: MoreHorizontalIconComponent, isStandalone: true, selector: "ea-icon-more-horizontal", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6356
|
+
<svg
|
|
6357
|
+
viewBox="0 0 24 24"
|
|
6358
|
+
fill="none"
|
|
6359
|
+
stroke="currentColor"
|
|
6360
|
+
stroke-width="2"
|
|
6361
|
+
stroke-linecap="round"
|
|
6362
|
+
stroke-linejoin="round"
|
|
6363
|
+
aria-hidden="true"
|
|
6364
|
+
width="100%"
|
|
6365
|
+
height="100%">
|
|
6366
|
+
<circle
|
|
6367
|
+
cx="12"
|
|
6368
|
+
cy="12"
|
|
6369
|
+
r="1" />
|
|
6370
|
+
<circle
|
|
6371
|
+
cx="19"
|
|
6372
|
+
cy="12"
|
|
6373
|
+
r="1" />
|
|
6374
|
+
<circle
|
|
6375
|
+
cx="5"
|
|
6376
|
+
cy="12"
|
|
6377
|
+
r="1" />
|
|
6378
|
+
</svg>
|
|
6379
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6380
|
+
}
|
|
6381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MoreHorizontalIconComponent, decorators: [{
|
|
6382
|
+
type: Component,
|
|
6383
|
+
args: [{
|
|
6384
|
+
selector: 'ea-icon-more-horizontal',
|
|
6385
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6386
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6387
|
+
template: `
|
|
6388
|
+
<svg
|
|
6389
|
+
viewBox="0 0 24 24"
|
|
6390
|
+
fill="none"
|
|
6391
|
+
stroke="currentColor"
|
|
6392
|
+
stroke-width="2"
|
|
6393
|
+
stroke-linecap="round"
|
|
6394
|
+
stroke-linejoin="round"
|
|
6395
|
+
aria-hidden="true"
|
|
6396
|
+
width="100%"
|
|
6397
|
+
height="100%">
|
|
6398
|
+
<circle
|
|
6399
|
+
cx="12"
|
|
6400
|
+
cy="12"
|
|
6401
|
+
r="1" />
|
|
6402
|
+
<circle
|
|
6403
|
+
cx="19"
|
|
6404
|
+
cy="12"
|
|
6405
|
+
r="1" />
|
|
6406
|
+
<circle
|
|
6407
|
+
cx="5"
|
|
6408
|
+
cy="12"
|
|
6409
|
+
r="1" />
|
|
6410
|
+
</svg>
|
|
6411
|
+
`,
|
|
6412
|
+
}]
|
|
6413
|
+
}] });
|
|
6414
|
+
|
|
6415
|
+
class PackageIconComponent {
|
|
6416
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PackageIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6417
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: PackageIconComponent, isStandalone: true, selector: "ea-icon-package", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6418
|
+
<svg
|
|
6419
|
+
viewBox="0 0 24 24"
|
|
6420
|
+
fill="none"
|
|
6421
|
+
stroke="currentColor"
|
|
6422
|
+
stroke-width="2"
|
|
6423
|
+
stroke-linecap="round"
|
|
6424
|
+
stroke-linejoin="round"
|
|
6425
|
+
aria-hidden="true"
|
|
6426
|
+
width="100%"
|
|
6427
|
+
height="100%">
|
|
6428
|
+
<line
|
|
6429
|
+
x1="16.5"
|
|
6430
|
+
y1="9.4"
|
|
6431
|
+
x2="7.5"
|
|
6432
|
+
y2="4.21" />
|
|
6433
|
+
<path
|
|
6434
|
+
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" />
|
|
6435
|
+
<polyline points="3.27 6.96 12 12.01 20.73 6.96" />
|
|
6436
|
+
<line
|
|
6437
|
+
x1="12"
|
|
6438
|
+
y1="22.08"
|
|
6439
|
+
x2="12"
|
|
6440
|
+
y2="12" />
|
|
6441
|
+
</svg>
|
|
6442
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6443
|
+
}
|
|
6444
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PackageIconComponent, decorators: [{
|
|
6445
|
+
type: Component,
|
|
6446
|
+
args: [{
|
|
6447
|
+
selector: 'ea-icon-package',
|
|
6448
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6449
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6450
|
+
template: `
|
|
6451
|
+
<svg
|
|
6452
|
+
viewBox="0 0 24 24"
|
|
6453
|
+
fill="none"
|
|
6454
|
+
stroke="currentColor"
|
|
6455
|
+
stroke-width="2"
|
|
6456
|
+
stroke-linecap="round"
|
|
6457
|
+
stroke-linejoin="round"
|
|
6458
|
+
aria-hidden="true"
|
|
6459
|
+
width="100%"
|
|
6460
|
+
height="100%">
|
|
6461
|
+
<line
|
|
6462
|
+
x1="16.5"
|
|
6463
|
+
y1="9.4"
|
|
6464
|
+
x2="7.5"
|
|
6465
|
+
y2="4.21" />
|
|
6466
|
+
<path
|
|
6467
|
+
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" />
|
|
6468
|
+
<polyline points="3.27 6.96 12 12.01 20.73 6.96" />
|
|
6469
|
+
<line
|
|
6470
|
+
x1="12"
|
|
6471
|
+
y1="22.08"
|
|
6472
|
+
x2="12"
|
|
6473
|
+
y2="12" />
|
|
6474
|
+
</svg>
|
|
6475
|
+
`,
|
|
6476
|
+
}]
|
|
6477
|
+
}] });
|
|
6478
|
+
|
|
6479
|
+
class PaperclipIconComponent {
|
|
6480
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PaperclipIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6481
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: PaperclipIconComponent, isStandalone: true, selector: "ea-icon-paperclip", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6482
|
+
<svg
|
|
6483
|
+
viewBox="0 0 24 24"
|
|
6484
|
+
fill="none"
|
|
6485
|
+
stroke="currentColor"
|
|
6486
|
+
stroke-width="2"
|
|
6487
|
+
stroke-linecap="round"
|
|
6488
|
+
stroke-linejoin="round"
|
|
6489
|
+
aria-hidden="true"
|
|
6490
|
+
width="100%"
|
|
6491
|
+
height="100%">
|
|
6492
|
+
<path
|
|
6493
|
+
d="M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48" />
|
|
6494
|
+
</svg>
|
|
6495
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6496
|
+
}
|
|
6497
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PaperclipIconComponent, decorators: [{
|
|
6498
|
+
type: Component,
|
|
6499
|
+
args: [{
|
|
6500
|
+
selector: 'ea-icon-paperclip',
|
|
6501
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6502
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6503
|
+
template: `
|
|
6504
|
+
<svg
|
|
6505
|
+
viewBox="0 0 24 24"
|
|
6506
|
+
fill="none"
|
|
6507
|
+
stroke="currentColor"
|
|
6508
|
+
stroke-width="2"
|
|
6509
|
+
stroke-linecap="round"
|
|
6510
|
+
stroke-linejoin="round"
|
|
6511
|
+
aria-hidden="true"
|
|
6512
|
+
width="100%"
|
|
6513
|
+
height="100%">
|
|
6514
|
+
<path
|
|
6515
|
+
d="M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48" />
|
|
6516
|
+
</svg>
|
|
6517
|
+
`,
|
|
6518
|
+
}]
|
|
6519
|
+
}] });
|
|
6520
|
+
|
|
6521
|
+
class PauseIconComponent {
|
|
6522
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PauseIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6523
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: PauseIconComponent, isStandalone: true, selector: "ea-icon-pause", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6524
|
+
<svg
|
|
6525
|
+
viewBox="0 0 24 24"
|
|
6526
|
+
fill="none"
|
|
6527
|
+
stroke="currentColor"
|
|
6528
|
+
stroke-width="2"
|
|
6529
|
+
stroke-linecap="round"
|
|
6530
|
+
stroke-linejoin="round"
|
|
6531
|
+
aria-hidden="true"
|
|
6532
|
+
width="100%"
|
|
6533
|
+
height="100%">
|
|
6534
|
+
<rect
|
|
6535
|
+
x="6"
|
|
6536
|
+
y="4"
|
|
6537
|
+
width="4"
|
|
6538
|
+
height="16" />
|
|
6539
|
+
<rect
|
|
6540
|
+
x="14"
|
|
6541
|
+
y="4"
|
|
6542
|
+
width="4"
|
|
6543
|
+
height="16" />
|
|
6544
|
+
</svg>
|
|
6545
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6546
|
+
}
|
|
6547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PauseIconComponent, decorators: [{
|
|
6548
|
+
type: Component,
|
|
6549
|
+
args: [{
|
|
6550
|
+
selector: 'ea-icon-pause',
|
|
6551
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6552
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6553
|
+
template: `
|
|
6554
|
+
<svg
|
|
6555
|
+
viewBox="0 0 24 24"
|
|
6556
|
+
fill="none"
|
|
6557
|
+
stroke="currentColor"
|
|
6558
|
+
stroke-width="2"
|
|
6559
|
+
stroke-linecap="round"
|
|
6560
|
+
stroke-linejoin="round"
|
|
6561
|
+
aria-hidden="true"
|
|
6562
|
+
width="100%"
|
|
6563
|
+
height="100%">
|
|
6564
|
+
<rect
|
|
6565
|
+
x="6"
|
|
6566
|
+
y="4"
|
|
6567
|
+
width="4"
|
|
6568
|
+
height="16" />
|
|
6569
|
+
<rect
|
|
6570
|
+
x="14"
|
|
6571
|
+
y="4"
|
|
6572
|
+
width="4"
|
|
6573
|
+
height="16" />
|
|
6574
|
+
</svg>
|
|
6575
|
+
`,
|
|
6576
|
+
}]
|
|
6577
|
+
}] });
|
|
6578
|
+
|
|
6579
|
+
class PencilIconComponent {
|
|
6580
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PencilIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6581
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: PencilIconComponent, isStandalone: true, selector: "ea-icon-pencil", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6582
|
+
<svg
|
|
6583
|
+
viewBox="0 0 24 24"
|
|
6584
|
+
fill="none"
|
|
6585
|
+
stroke="currentColor"
|
|
6586
|
+
stroke-width="2"
|
|
6587
|
+
stroke-linecap="round"
|
|
6588
|
+
stroke-linejoin="round"
|
|
6589
|
+
aria-hidden="true"
|
|
6590
|
+
width="100%"
|
|
6591
|
+
height="100%">
|
|
6592
|
+
<path d="M17 3a2.83 2.83 0 0 1 4 4L7.5 20.5 2 22l1.5-5.5Z" />
|
|
6593
|
+
</svg>
|
|
6594
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6595
|
+
}
|
|
6596
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PencilIconComponent, decorators: [{
|
|
6597
|
+
type: Component,
|
|
6598
|
+
args: [{
|
|
6599
|
+
selector: 'ea-icon-pencil',
|
|
6600
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6601
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6602
|
+
template: `
|
|
6603
|
+
<svg
|
|
6604
|
+
viewBox="0 0 24 24"
|
|
6605
|
+
fill="none"
|
|
6606
|
+
stroke="currentColor"
|
|
6607
|
+
stroke-width="2"
|
|
6608
|
+
stroke-linecap="round"
|
|
6609
|
+
stroke-linejoin="round"
|
|
6610
|
+
aria-hidden="true"
|
|
6611
|
+
width="100%"
|
|
6612
|
+
height="100%">
|
|
6613
|
+
<path d="M17 3a2.83 2.83 0 0 1 4 4L7.5 20.5 2 22l1.5-5.5Z" />
|
|
6614
|
+
</svg>
|
|
6615
|
+
`,
|
|
6616
|
+
}]
|
|
6617
|
+
}] });
|
|
6618
|
+
|
|
6619
|
+
class PhoneIconComponent {
|
|
6620
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PhoneIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6621
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: PhoneIconComponent, isStandalone: true, selector: "ea-icon-phone", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6622
|
+
<svg
|
|
6623
|
+
viewBox="0 0 24 24"
|
|
6624
|
+
fill="none"
|
|
6625
|
+
stroke="currentColor"
|
|
6626
|
+
stroke-width="2"
|
|
6627
|
+
stroke-linecap="round"
|
|
6628
|
+
stroke-linejoin="round"
|
|
6629
|
+
aria-hidden="true"
|
|
6630
|
+
width="100%"
|
|
6631
|
+
height="100%">
|
|
6632
|
+
<path
|
|
6633
|
+
d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" />
|
|
6634
|
+
</svg>
|
|
6635
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6636
|
+
}
|
|
6637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PhoneIconComponent, decorators: [{
|
|
6638
|
+
type: Component,
|
|
6639
|
+
args: [{
|
|
6640
|
+
selector: 'ea-icon-phone',
|
|
6641
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6642
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6643
|
+
template: `
|
|
6644
|
+
<svg
|
|
6645
|
+
viewBox="0 0 24 24"
|
|
6646
|
+
fill="none"
|
|
6647
|
+
stroke="currentColor"
|
|
6648
|
+
stroke-width="2"
|
|
6649
|
+
stroke-linecap="round"
|
|
6650
|
+
stroke-linejoin="round"
|
|
6651
|
+
aria-hidden="true"
|
|
6652
|
+
width="100%"
|
|
6653
|
+
height="100%">
|
|
6654
|
+
<path
|
|
6655
|
+
d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" />
|
|
6656
|
+
</svg>
|
|
6657
|
+
`,
|
|
6658
|
+
}]
|
|
6659
|
+
}] });
|
|
6660
|
+
|
|
6661
|
+
class PlayIconComponent {
|
|
6662
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PlayIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6663
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: PlayIconComponent, isStandalone: true, selector: "ea-icon-play", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6664
|
+
<svg
|
|
6665
|
+
viewBox="0 0 24 24"
|
|
6666
|
+
fill="none"
|
|
6667
|
+
stroke="currentColor"
|
|
6668
|
+
stroke-width="2"
|
|
6669
|
+
stroke-linecap="round"
|
|
6670
|
+
stroke-linejoin="round"
|
|
6671
|
+
aria-hidden="true"
|
|
6672
|
+
width="100%"
|
|
6673
|
+
height="100%">
|
|
6674
|
+
<polygon points="5 3 19 12 5 21 5 3" />
|
|
6675
|
+
</svg>
|
|
6676
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6677
|
+
}
|
|
6678
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PlayIconComponent, decorators: [{
|
|
6679
|
+
type: Component,
|
|
6680
|
+
args: [{
|
|
6681
|
+
selector: 'ea-icon-play',
|
|
6682
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6683
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6684
|
+
template: `
|
|
6685
|
+
<svg
|
|
6686
|
+
viewBox="0 0 24 24"
|
|
6687
|
+
fill="none"
|
|
6688
|
+
stroke="currentColor"
|
|
6689
|
+
stroke-width="2"
|
|
6690
|
+
stroke-linecap="round"
|
|
6691
|
+
stroke-linejoin="round"
|
|
6692
|
+
aria-hidden="true"
|
|
6693
|
+
width="100%"
|
|
6694
|
+
height="100%">
|
|
6695
|
+
<polygon points="5 3 19 12 5 21 5 3" />
|
|
6696
|
+
</svg>
|
|
6697
|
+
`,
|
|
6698
|
+
}]
|
|
6699
|
+
}] });
|
|
6700
|
+
|
|
6701
|
+
class PrinterIconComponent {
|
|
6702
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PrinterIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6703
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: PrinterIconComponent, isStandalone: true, selector: "ea-icon-printer", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6704
|
+
<svg
|
|
6705
|
+
viewBox="0 0 24 24"
|
|
6706
|
+
fill="none"
|
|
6707
|
+
stroke="currentColor"
|
|
6708
|
+
stroke-width="2"
|
|
6709
|
+
stroke-linecap="round"
|
|
6710
|
+
stroke-linejoin="round"
|
|
6711
|
+
aria-hidden="true"
|
|
6712
|
+
width="100%"
|
|
6713
|
+
height="100%">
|
|
6714
|
+
<polyline points="6 9 6 2 18 2 18 9" />
|
|
6715
|
+
<path
|
|
6716
|
+
d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" />
|
|
6717
|
+
<rect
|
|
6718
|
+
x="6"
|
|
6719
|
+
y="14"
|
|
6720
|
+
width="12"
|
|
6721
|
+
height="8" />
|
|
6722
|
+
</svg>
|
|
6723
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6724
|
+
}
|
|
6725
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: PrinterIconComponent, decorators: [{
|
|
6726
|
+
type: Component,
|
|
6727
|
+
args: [{
|
|
6728
|
+
selector: 'ea-icon-printer',
|
|
6729
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6730
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6731
|
+
template: `
|
|
6732
|
+
<svg
|
|
6733
|
+
viewBox="0 0 24 24"
|
|
6734
|
+
fill="none"
|
|
6735
|
+
stroke="currentColor"
|
|
6736
|
+
stroke-width="2"
|
|
6737
|
+
stroke-linecap="round"
|
|
6738
|
+
stroke-linejoin="round"
|
|
6739
|
+
aria-hidden="true"
|
|
6740
|
+
width="100%"
|
|
6741
|
+
height="100%">
|
|
6742
|
+
<polyline points="6 9 6 2 18 2 18 9" />
|
|
6743
|
+
<path
|
|
6744
|
+
d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" />
|
|
6745
|
+
<rect
|
|
6746
|
+
x="6"
|
|
6747
|
+
y="14"
|
|
6748
|
+
width="12"
|
|
6749
|
+
height="8" />
|
|
6750
|
+
</svg>
|
|
6751
|
+
`,
|
|
6752
|
+
}]
|
|
6753
|
+
}] });
|
|
6754
|
+
|
|
6755
|
+
class RefreshCwIconComponent {
|
|
6756
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: RefreshCwIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6757
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: RefreshCwIconComponent, isStandalone: true, selector: "ea-icon-refresh-cw", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6758
|
+
<svg
|
|
6759
|
+
viewBox="0 0 24 24"
|
|
6760
|
+
fill="none"
|
|
6761
|
+
stroke="currentColor"
|
|
6762
|
+
stroke-width="2"
|
|
6763
|
+
stroke-linecap="round"
|
|
6764
|
+
stroke-linejoin="round"
|
|
6765
|
+
aria-hidden="true"
|
|
6766
|
+
width="100%"
|
|
6767
|
+
height="100%">
|
|
6768
|
+
<polyline points="23 4 23 10 17 10" />
|
|
6769
|
+
<polyline points="1 20 1 14 7 14" />
|
|
6770
|
+
<path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15" />
|
|
6771
|
+
</svg>
|
|
6772
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6773
|
+
}
|
|
6774
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: RefreshCwIconComponent, decorators: [{
|
|
6775
|
+
type: Component,
|
|
6776
|
+
args: [{
|
|
6777
|
+
selector: 'ea-icon-refresh-cw',
|
|
6778
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6779
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6780
|
+
template: `
|
|
6781
|
+
<svg
|
|
6782
|
+
viewBox="0 0 24 24"
|
|
6783
|
+
fill="none"
|
|
6784
|
+
stroke="currentColor"
|
|
6785
|
+
stroke-width="2"
|
|
6786
|
+
stroke-linecap="round"
|
|
6787
|
+
stroke-linejoin="round"
|
|
6788
|
+
aria-hidden="true"
|
|
6789
|
+
width="100%"
|
|
6790
|
+
height="100%">
|
|
6791
|
+
<polyline points="23 4 23 10 17 10" />
|
|
6792
|
+
<polyline points="1 20 1 14 7 14" />
|
|
6793
|
+
<path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15" />
|
|
6794
|
+
</svg>
|
|
6795
|
+
`,
|
|
6796
|
+
}]
|
|
6797
|
+
}] });
|
|
6798
|
+
|
|
6799
|
+
class SaveIconComponent {
|
|
6800
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SaveIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6801
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: SaveIconComponent, isStandalone: true, selector: "ea-icon-save", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6802
|
+
<svg
|
|
6803
|
+
viewBox="0 0 24 24"
|
|
6804
|
+
fill="none"
|
|
6805
|
+
stroke="currentColor"
|
|
6806
|
+
stroke-width="2"
|
|
6807
|
+
stroke-linecap="round"
|
|
6808
|
+
stroke-linejoin="round"
|
|
6809
|
+
aria-hidden="true"
|
|
6810
|
+
width="100%"
|
|
6811
|
+
height="100%">
|
|
6812
|
+
<path d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z" />
|
|
6813
|
+
<polyline points="17 21 17 13 7 13 7 21" />
|
|
6814
|
+
<polyline points="7 3 7 8 15 8" />
|
|
6815
|
+
</svg>
|
|
6816
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6817
|
+
}
|
|
6818
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SaveIconComponent, decorators: [{
|
|
6819
|
+
type: Component,
|
|
6820
|
+
args: [{
|
|
6821
|
+
selector: 'ea-icon-save',
|
|
6822
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6823
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6824
|
+
template: `
|
|
6825
|
+
<svg
|
|
6826
|
+
viewBox="0 0 24 24"
|
|
6827
|
+
fill="none"
|
|
6828
|
+
stroke="currentColor"
|
|
6829
|
+
stroke-width="2"
|
|
6830
|
+
stroke-linecap="round"
|
|
6831
|
+
stroke-linejoin="round"
|
|
6832
|
+
aria-hidden="true"
|
|
6833
|
+
width="100%"
|
|
6834
|
+
height="100%">
|
|
6835
|
+
<path d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z" />
|
|
6836
|
+
<polyline points="17 21 17 13 7 13 7 21" />
|
|
6837
|
+
<polyline points="7 3 7 8 15 8" />
|
|
6838
|
+
</svg>
|
|
6839
|
+
`,
|
|
6840
|
+
}]
|
|
6841
|
+
}] });
|
|
6842
|
+
|
|
6843
|
+
class SearchIconComponent {
|
|
6844
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SearchIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6845
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: SearchIconComponent, isStandalone: true, selector: "ea-icon-search", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6846
|
+
<svg
|
|
6847
|
+
viewBox="0 0 24 24"
|
|
6848
|
+
fill="none"
|
|
6849
|
+
stroke="currentColor"
|
|
6850
|
+
stroke-width="2"
|
|
6851
|
+
stroke-linecap="round"
|
|
6852
|
+
stroke-linejoin="round"
|
|
6853
|
+
aria-hidden="true"
|
|
6854
|
+
width="100%"
|
|
6855
|
+
height="100%">
|
|
6856
|
+
<circle
|
|
6857
|
+
cx="11"
|
|
6858
|
+
cy="11"
|
|
6859
|
+
r="8" />
|
|
6860
|
+
<path d="m21 21-4.35-4.35" />
|
|
6861
|
+
</svg>
|
|
6862
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6863
|
+
}
|
|
6864
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SearchIconComponent, decorators: [{
|
|
6865
|
+
type: Component,
|
|
6866
|
+
args: [{
|
|
6867
|
+
selector: 'ea-icon-search',
|
|
6868
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6869
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6870
|
+
template: `
|
|
6871
|
+
<svg
|
|
6872
|
+
viewBox="0 0 24 24"
|
|
6873
|
+
fill="none"
|
|
6874
|
+
stroke="currentColor"
|
|
6875
|
+
stroke-width="2"
|
|
6876
|
+
stroke-linecap="round"
|
|
6877
|
+
stroke-linejoin="round"
|
|
6878
|
+
aria-hidden="true"
|
|
6879
|
+
width="100%"
|
|
6880
|
+
height="100%">
|
|
6881
|
+
<circle
|
|
6882
|
+
cx="11"
|
|
6883
|
+
cy="11"
|
|
6884
|
+
r="8" />
|
|
6885
|
+
<path d="m21 21-4.35-4.35" />
|
|
6886
|
+
</svg>
|
|
6887
|
+
`,
|
|
6888
|
+
}]
|
|
6889
|
+
}] });
|
|
6890
|
+
|
|
6891
|
+
class SendIconComponent {
|
|
6892
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SendIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6893
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: SendIconComponent, isStandalone: true, selector: "ea-icon-send", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6894
|
+
<svg
|
|
6895
|
+
viewBox="0 0 24 24"
|
|
6896
|
+
fill="none"
|
|
6897
|
+
stroke="currentColor"
|
|
6898
|
+
stroke-width="2"
|
|
6899
|
+
stroke-linecap="round"
|
|
6900
|
+
stroke-linejoin="round"
|
|
6901
|
+
aria-hidden="true"
|
|
6902
|
+
width="100%"
|
|
6903
|
+
height="100%">
|
|
6904
|
+
<line
|
|
6905
|
+
x1="22"
|
|
6906
|
+
y1="2"
|
|
6907
|
+
x2="11"
|
|
6908
|
+
y2="13" />
|
|
6909
|
+
<polygon points="22 2 15 22 11 13 2 9 22 2" />
|
|
6910
|
+
</svg>
|
|
6911
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6912
|
+
}
|
|
6913
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SendIconComponent, decorators: [{
|
|
6914
|
+
type: Component,
|
|
6915
|
+
args: [{
|
|
6916
|
+
selector: 'ea-icon-send',
|
|
6917
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6918
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6919
|
+
template: `
|
|
6920
|
+
<svg
|
|
6921
|
+
viewBox="0 0 24 24"
|
|
6922
|
+
fill="none"
|
|
6923
|
+
stroke="currentColor"
|
|
6924
|
+
stroke-width="2"
|
|
6925
|
+
stroke-linecap="round"
|
|
6926
|
+
stroke-linejoin="round"
|
|
6927
|
+
aria-hidden="true"
|
|
6928
|
+
width="100%"
|
|
6929
|
+
height="100%">
|
|
6930
|
+
<line
|
|
6931
|
+
x1="22"
|
|
6932
|
+
y1="2"
|
|
6933
|
+
x2="11"
|
|
6934
|
+
y2="13" />
|
|
6935
|
+
<polygon points="22 2 15 22 11 13 2 9 22 2" />
|
|
6936
|
+
</svg>
|
|
6937
|
+
`,
|
|
6938
|
+
}]
|
|
6939
|
+
}] });
|
|
6940
|
+
|
|
6941
|
+
class SettingsIconComponent {
|
|
6942
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SettingsIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6943
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: SettingsIconComponent, isStandalone: true, selector: "ea-icon-settings", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6944
|
+
<svg
|
|
6945
|
+
viewBox="0 0 24 24"
|
|
6946
|
+
fill="none"
|
|
6947
|
+
stroke="currentColor"
|
|
6948
|
+
stroke-width="2"
|
|
6949
|
+
stroke-linecap="round"
|
|
6950
|
+
stroke-linejoin="round"
|
|
6951
|
+
aria-hidden="true"
|
|
6952
|
+
width="100%"
|
|
6953
|
+
height="100%">
|
|
6954
|
+
<circle
|
|
6955
|
+
cx="12"
|
|
6956
|
+
cy="12"
|
|
6957
|
+
r="3" />
|
|
6958
|
+
<path
|
|
6959
|
+
d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" />
|
|
6960
|
+
</svg>
|
|
6961
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6962
|
+
}
|
|
6963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SettingsIconComponent, decorators: [{
|
|
6964
|
+
type: Component,
|
|
6965
|
+
args: [{
|
|
6966
|
+
selector: 'ea-icon-settings',
|
|
6967
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6968
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
6969
|
+
template: `
|
|
6970
|
+
<svg
|
|
6971
|
+
viewBox="0 0 24 24"
|
|
6972
|
+
fill="none"
|
|
6973
|
+
stroke="currentColor"
|
|
6974
|
+
stroke-width="2"
|
|
6975
|
+
stroke-linecap="round"
|
|
6976
|
+
stroke-linejoin="round"
|
|
6977
|
+
aria-hidden="true"
|
|
6978
|
+
width="100%"
|
|
6979
|
+
height="100%">
|
|
6980
|
+
<circle
|
|
6981
|
+
cx="12"
|
|
6982
|
+
cy="12"
|
|
6983
|
+
r="3" />
|
|
6984
|
+
<path
|
|
6985
|
+
d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" />
|
|
6986
|
+
</svg>
|
|
6987
|
+
`,
|
|
6988
|
+
}]
|
|
6989
|
+
}] });
|
|
6990
|
+
|
|
6991
|
+
class ShareIconComponent {
|
|
6992
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ShareIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6993
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ShareIconComponent, isStandalone: true, selector: "ea-icon-share", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
6994
|
+
<svg
|
|
6995
|
+
viewBox="0 0 24 24"
|
|
6996
|
+
fill="none"
|
|
6997
|
+
stroke="currentColor"
|
|
6998
|
+
stroke-width="2"
|
|
6999
|
+
stroke-linecap="round"
|
|
7000
|
+
stroke-linejoin="round"
|
|
7001
|
+
aria-hidden="true"
|
|
7002
|
+
width="100%"
|
|
7003
|
+
height="100%">
|
|
7004
|
+
<circle
|
|
7005
|
+
cx="18"
|
|
7006
|
+
cy="5"
|
|
7007
|
+
r="3" />
|
|
7008
|
+
<circle
|
|
7009
|
+
cx="6"
|
|
7010
|
+
cy="12"
|
|
7011
|
+
r="3" />
|
|
7012
|
+
<circle
|
|
7013
|
+
cx="18"
|
|
7014
|
+
cy="19"
|
|
7015
|
+
r="3" />
|
|
7016
|
+
<line
|
|
7017
|
+
x1="8.59"
|
|
7018
|
+
y1="13.51"
|
|
7019
|
+
x2="15.42"
|
|
7020
|
+
y2="17.49" />
|
|
7021
|
+
<line
|
|
7022
|
+
x1="15.41"
|
|
7023
|
+
y1="6.51"
|
|
7024
|
+
x2="8.59"
|
|
7025
|
+
y2="10.49" />
|
|
7026
|
+
</svg>
|
|
7027
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
7028
|
+
}
|
|
7029
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ShareIconComponent, decorators: [{
|
|
7030
|
+
type: Component,
|
|
7031
|
+
args: [{
|
|
7032
|
+
selector: 'ea-icon-share',
|
|
7033
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7034
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
7035
|
+
template: `
|
|
7036
|
+
<svg
|
|
7037
|
+
viewBox="0 0 24 24"
|
|
7038
|
+
fill="none"
|
|
7039
|
+
stroke="currentColor"
|
|
7040
|
+
stroke-width="2"
|
|
7041
|
+
stroke-linecap="round"
|
|
7042
|
+
stroke-linejoin="round"
|
|
7043
|
+
aria-hidden="true"
|
|
7044
|
+
width="100%"
|
|
7045
|
+
height="100%">
|
|
7046
|
+
<circle
|
|
7047
|
+
cx="18"
|
|
7048
|
+
cy="5"
|
|
7049
|
+
r="3" />
|
|
7050
|
+
<circle
|
|
7051
|
+
cx="6"
|
|
7052
|
+
cy="12"
|
|
7053
|
+
r="3" />
|
|
7054
|
+
<circle
|
|
7055
|
+
cx="18"
|
|
7056
|
+
cy="19"
|
|
7057
|
+
r="3" />
|
|
7058
|
+
<line
|
|
7059
|
+
x1="8.59"
|
|
7060
|
+
y1="13.51"
|
|
7061
|
+
x2="15.42"
|
|
7062
|
+
y2="17.49" />
|
|
7063
|
+
<line
|
|
7064
|
+
x1="15.41"
|
|
7065
|
+
y1="6.51"
|
|
7066
|
+
x2="8.59"
|
|
7067
|
+
y2="10.49" />
|
|
7068
|
+
</svg>
|
|
7069
|
+
`,
|
|
7070
|
+
}]
|
|
7071
|
+
}] });
|
|
7072
|
+
|
|
7073
|
+
class ShieldIconComponent {
|
|
7074
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ShieldIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7075
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ShieldIconComponent, isStandalone: true, selector: "ea-icon-shield", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
7076
|
+
<svg
|
|
7077
|
+
viewBox="0 0 24 24"
|
|
7078
|
+
fill="none"
|
|
7079
|
+
stroke="currentColor"
|
|
7080
|
+
stroke-width="2"
|
|
7081
|
+
stroke-linecap="round"
|
|
7082
|
+
stroke-linejoin="round"
|
|
7083
|
+
aria-hidden="true"
|
|
7084
|
+
width="100%"
|
|
7085
|
+
height="100%">
|
|
7086
|
+
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" />
|
|
7087
|
+
</svg>
|
|
7088
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
7089
|
+
}
|
|
7090
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ShieldIconComponent, decorators: [{
|
|
7091
|
+
type: Component,
|
|
7092
|
+
args: [{
|
|
7093
|
+
selector: 'ea-icon-shield',
|
|
4510
7094
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4511
7095
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4512
7096
|
template: `
|
|
@@ -4520,16 +7104,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4520
7104
|
aria-hidden="true"
|
|
4521
7105
|
width="100%"
|
|
4522
7106
|
height="100%">
|
|
4523
|
-
<path d="
|
|
4524
|
-
<path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" />
|
|
7107
|
+
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" />
|
|
4525
7108
|
</svg>
|
|
4526
7109
|
`,
|
|
4527
7110
|
}]
|
|
4528
7111
|
}] });
|
|
4529
7112
|
|
|
4530
|
-
class
|
|
4531
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4532
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
7113
|
+
class ShoppingCartIconComponent {
|
|
7114
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ShoppingCartIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7115
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ShoppingCartIconComponent, isStandalone: true, selector: "ea-icon-shopping-cart", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4533
7116
|
<svg
|
|
4534
7117
|
viewBox="0 0 24 24"
|
|
4535
7118
|
fill="none"
|
|
@@ -4540,53 +7123,81 @@ class LoaderIconComponent {
|
|
|
4540
7123
|
aria-hidden="true"
|
|
4541
7124
|
width="100%"
|
|
4542
7125
|
height="100%">
|
|
4543
|
-
<
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
7126
|
+
<circle
|
|
7127
|
+
cx="9"
|
|
7128
|
+
cy="21"
|
|
7129
|
+
r="1" />
|
|
7130
|
+
<circle
|
|
7131
|
+
cx="20"
|
|
7132
|
+
cy="21"
|
|
7133
|
+
r="1" />
|
|
7134
|
+
<path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6" />
|
|
7135
|
+
</svg>
|
|
7136
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
7137
|
+
}
|
|
7138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ShoppingCartIconComponent, decorators: [{
|
|
7139
|
+
type: Component,
|
|
7140
|
+
args: [{
|
|
7141
|
+
selector: 'ea-icon-shopping-cart',
|
|
7142
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7143
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
7144
|
+
template: `
|
|
7145
|
+
<svg
|
|
7146
|
+
viewBox="0 0 24 24"
|
|
7147
|
+
fill="none"
|
|
7148
|
+
stroke="currentColor"
|
|
7149
|
+
stroke-width="2"
|
|
7150
|
+
stroke-linecap="round"
|
|
7151
|
+
stroke-linejoin="round"
|
|
7152
|
+
aria-hidden="true"
|
|
7153
|
+
width="100%"
|
|
7154
|
+
height="100%">
|
|
7155
|
+
<circle
|
|
7156
|
+
cx="9"
|
|
7157
|
+
cy="21"
|
|
7158
|
+
r="1" />
|
|
7159
|
+
<circle
|
|
7160
|
+
cx="20"
|
|
7161
|
+
cy="21"
|
|
7162
|
+
r="1" />
|
|
7163
|
+
<path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6" />
|
|
7164
|
+
</svg>
|
|
7165
|
+
`,
|
|
7166
|
+
}]
|
|
7167
|
+
}] });
|
|
7168
|
+
|
|
7169
|
+
class SmartphoneIconComponent {
|
|
7170
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SmartphoneIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7171
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: SmartphoneIconComponent, isStandalone: true, selector: "ea-icon-smartphone", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
7172
|
+
<svg
|
|
7173
|
+
viewBox="0 0 24 24"
|
|
7174
|
+
fill="none"
|
|
7175
|
+
stroke="currentColor"
|
|
7176
|
+
stroke-width="2"
|
|
7177
|
+
stroke-linecap="round"
|
|
7178
|
+
stroke-linejoin="round"
|
|
7179
|
+
aria-hidden="true"
|
|
7180
|
+
width="100%"
|
|
7181
|
+
height="100%">
|
|
7182
|
+
<rect
|
|
7183
|
+
x="5"
|
|
7184
|
+
y="2"
|
|
7185
|
+
width="14"
|
|
7186
|
+
height="20"
|
|
7187
|
+
rx="2"
|
|
7188
|
+
ry="2" />
|
|
4548
7189
|
<line
|
|
4549
7190
|
x1="12"
|
|
4550
7191
|
y1="18"
|
|
4551
|
-
x2="12"
|
|
4552
|
-
y2="
|
|
4553
|
-
<line
|
|
4554
|
-
x1="4.93"
|
|
4555
|
-
y1="4.93"
|
|
4556
|
-
x2="7.76"
|
|
4557
|
-
y2="7.76" />
|
|
4558
|
-
<line
|
|
4559
|
-
x1="16.24"
|
|
4560
|
-
y1="16.24"
|
|
4561
|
-
x2="19.07"
|
|
4562
|
-
y2="19.07" />
|
|
4563
|
-
<line
|
|
4564
|
-
x1="2"
|
|
4565
|
-
y1="12"
|
|
4566
|
-
x2="6"
|
|
4567
|
-
y2="12" />
|
|
4568
|
-
<line
|
|
4569
|
-
x1="18"
|
|
4570
|
-
y1="12"
|
|
4571
|
-
x2="22"
|
|
4572
|
-
y2="12" />
|
|
4573
|
-
<line
|
|
4574
|
-
x1="4.93"
|
|
4575
|
-
y1="19.07"
|
|
4576
|
-
x2="7.76"
|
|
4577
|
-
y2="16.24" />
|
|
4578
|
-
<line
|
|
4579
|
-
x1="16.24"
|
|
4580
|
-
y1="7.76"
|
|
4581
|
-
x2="19.07"
|
|
4582
|
-
y2="4.93" />
|
|
7192
|
+
x2="12.01"
|
|
7193
|
+
y2="18" />
|
|
4583
7194
|
</svg>
|
|
4584
7195
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4585
7196
|
}
|
|
4586
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
7197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SmartphoneIconComponent, decorators: [{
|
|
4587
7198
|
type: Component,
|
|
4588
7199
|
args: [{
|
|
4589
|
-
selector: 'ea-icon-
|
|
7200
|
+
selector: 'ea-icon-smartphone',
|
|
4590
7201
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4591
7202
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4592
7203
|
template: `
|
|
@@ -4600,54 +7211,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4600
7211
|
aria-hidden="true"
|
|
4601
7212
|
width="100%"
|
|
4602
7213
|
height="100%">
|
|
4603
|
-
<
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
7214
|
+
<rect
|
|
7215
|
+
x="5"
|
|
7216
|
+
y="2"
|
|
7217
|
+
width="14"
|
|
7218
|
+
height="20"
|
|
7219
|
+
rx="2"
|
|
7220
|
+
ry="2" />
|
|
4608
7221
|
<line
|
|
4609
7222
|
x1="12"
|
|
4610
7223
|
y1="18"
|
|
4611
|
-
x2="12"
|
|
4612
|
-
y2="
|
|
4613
|
-
<line
|
|
4614
|
-
x1="4.93"
|
|
4615
|
-
y1="4.93"
|
|
4616
|
-
x2="7.76"
|
|
4617
|
-
y2="7.76" />
|
|
4618
|
-
<line
|
|
4619
|
-
x1="16.24"
|
|
4620
|
-
y1="16.24"
|
|
4621
|
-
x2="19.07"
|
|
4622
|
-
y2="19.07" />
|
|
4623
|
-
<line
|
|
4624
|
-
x1="2"
|
|
4625
|
-
y1="12"
|
|
4626
|
-
x2="6"
|
|
4627
|
-
y2="12" />
|
|
4628
|
-
<line
|
|
4629
|
-
x1="18"
|
|
4630
|
-
y1="12"
|
|
4631
|
-
x2="22"
|
|
4632
|
-
y2="12" />
|
|
4633
|
-
<line
|
|
4634
|
-
x1="4.93"
|
|
4635
|
-
y1="19.07"
|
|
4636
|
-
x2="7.76"
|
|
4637
|
-
y2="16.24" />
|
|
4638
|
-
<line
|
|
4639
|
-
x1="16.24"
|
|
4640
|
-
y1="7.76"
|
|
4641
|
-
x2="19.07"
|
|
4642
|
-
y2="4.93" />
|
|
7224
|
+
x2="12.01"
|
|
7225
|
+
y2="18" />
|
|
4643
7226
|
</svg>
|
|
4644
7227
|
`,
|
|
4645
7228
|
}]
|
|
4646
7229
|
}] });
|
|
4647
7230
|
|
|
4648
|
-
class
|
|
4649
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4650
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
7231
|
+
class StarIconComponent {
|
|
7232
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: StarIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7233
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: StarIconComponent, isStandalone: true, selector: "ea-icon-star", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4651
7234
|
<svg
|
|
4652
7235
|
viewBox="0 0 24 24"
|
|
4653
7236
|
fill="none"
|
|
@@ -4658,20 +7241,99 @@ class LogOutIconComponent {
|
|
|
4658
7241
|
aria-hidden="true"
|
|
4659
7242
|
width="100%"
|
|
4660
7243
|
height="100%">
|
|
4661
|
-
<
|
|
4662
|
-
|
|
7244
|
+
<polygon
|
|
7245
|
+
points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" />
|
|
7246
|
+
</svg>
|
|
7247
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
7248
|
+
}
|
|
7249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: StarIconComponent, decorators: [{
|
|
7250
|
+
type: Component,
|
|
7251
|
+
args: [{
|
|
7252
|
+
selector: 'ea-icon-star',
|
|
7253
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7254
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
7255
|
+
template: `
|
|
7256
|
+
<svg
|
|
7257
|
+
viewBox="0 0 24 24"
|
|
7258
|
+
fill="none"
|
|
7259
|
+
stroke="currentColor"
|
|
7260
|
+
stroke-width="2"
|
|
7261
|
+
stroke-linecap="round"
|
|
7262
|
+
stroke-linejoin="round"
|
|
7263
|
+
aria-hidden="true"
|
|
7264
|
+
width="100%"
|
|
7265
|
+
height="100%">
|
|
7266
|
+
<polygon
|
|
7267
|
+
points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" />
|
|
7268
|
+
</svg>
|
|
7269
|
+
`,
|
|
7270
|
+
}]
|
|
7271
|
+
}] });
|
|
7272
|
+
|
|
7273
|
+
class SunIconComponent {
|
|
7274
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SunIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7275
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: SunIconComponent, isStandalone: true, selector: "ea-icon-sun", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
7276
|
+
<svg
|
|
7277
|
+
viewBox="0 0 24 24"
|
|
7278
|
+
fill="none"
|
|
7279
|
+
stroke="currentColor"
|
|
7280
|
+
stroke-width="2"
|
|
7281
|
+
stroke-linecap="round"
|
|
7282
|
+
stroke-linejoin="round"
|
|
7283
|
+
aria-hidden="true"
|
|
7284
|
+
width="100%"
|
|
7285
|
+
height="100%">
|
|
7286
|
+
<circle
|
|
7287
|
+
cx="12"
|
|
7288
|
+
cy="12"
|
|
7289
|
+
r="5" />
|
|
7290
|
+
<line
|
|
7291
|
+
x1="12"
|
|
7292
|
+
y1="1"
|
|
7293
|
+
x2="12"
|
|
7294
|
+
y2="3" />
|
|
7295
|
+
<line
|
|
7296
|
+
x1="12"
|
|
7297
|
+
y1="21"
|
|
7298
|
+
x2="12"
|
|
7299
|
+
y2="23" />
|
|
7300
|
+
<line
|
|
7301
|
+
x1="4.22"
|
|
7302
|
+
y1="4.22"
|
|
7303
|
+
x2="5.64"
|
|
7304
|
+
y2="5.64" />
|
|
7305
|
+
<line
|
|
7306
|
+
x1="18.36"
|
|
7307
|
+
y1="18.36"
|
|
7308
|
+
x2="19.78"
|
|
7309
|
+
y2="19.78" />
|
|
7310
|
+
<line
|
|
7311
|
+
x1="1"
|
|
7312
|
+
y1="12"
|
|
7313
|
+
x2="3"
|
|
7314
|
+
y2="12" />
|
|
4663
7315
|
<line
|
|
4664
7316
|
x1="21"
|
|
4665
7317
|
y1="12"
|
|
4666
|
-
x2="
|
|
7318
|
+
x2="23"
|
|
4667
7319
|
y2="12" />
|
|
7320
|
+
<line
|
|
7321
|
+
x1="4.22"
|
|
7322
|
+
y1="19.78"
|
|
7323
|
+
x2="5.64"
|
|
7324
|
+
y2="18.36" />
|
|
7325
|
+
<line
|
|
7326
|
+
x1="18.36"
|
|
7327
|
+
y1="5.64"
|
|
7328
|
+
x2="19.78"
|
|
7329
|
+
y2="4.22" />
|
|
4668
7330
|
</svg>
|
|
4669
7331
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4670
7332
|
}
|
|
4671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
7333
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SunIconComponent, decorators: [{
|
|
4672
7334
|
type: Component,
|
|
4673
7335
|
args: [{
|
|
4674
|
-
selector: 'ea-icon-
|
|
7336
|
+
selector: 'ea-icon-sun',
|
|
4675
7337
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4676
7338
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4677
7339
|
template: `
|
|
@@ -4685,21 +7347,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4685
7347
|
aria-hidden="true"
|
|
4686
7348
|
width="100%"
|
|
4687
7349
|
height="100%">
|
|
4688
|
-
<
|
|
4689
|
-
|
|
7350
|
+
<circle
|
|
7351
|
+
cx="12"
|
|
7352
|
+
cy="12"
|
|
7353
|
+
r="5" />
|
|
7354
|
+
<line
|
|
7355
|
+
x1="12"
|
|
7356
|
+
y1="1"
|
|
7357
|
+
x2="12"
|
|
7358
|
+
y2="3" />
|
|
7359
|
+
<line
|
|
7360
|
+
x1="12"
|
|
7361
|
+
y1="21"
|
|
7362
|
+
x2="12"
|
|
7363
|
+
y2="23" />
|
|
7364
|
+
<line
|
|
7365
|
+
x1="4.22"
|
|
7366
|
+
y1="4.22"
|
|
7367
|
+
x2="5.64"
|
|
7368
|
+
y2="5.64" />
|
|
7369
|
+
<line
|
|
7370
|
+
x1="18.36"
|
|
7371
|
+
y1="18.36"
|
|
7372
|
+
x2="19.78"
|
|
7373
|
+
y2="19.78" />
|
|
7374
|
+
<line
|
|
7375
|
+
x1="1"
|
|
7376
|
+
y1="12"
|
|
7377
|
+
x2="3"
|
|
7378
|
+
y2="12" />
|
|
4690
7379
|
<line
|
|
4691
7380
|
x1="21"
|
|
4692
7381
|
y1="12"
|
|
4693
|
-
x2="
|
|
7382
|
+
x2="23"
|
|
4694
7383
|
y2="12" />
|
|
7384
|
+
<line
|
|
7385
|
+
x1="4.22"
|
|
7386
|
+
y1="19.78"
|
|
7387
|
+
x2="5.64"
|
|
7388
|
+
y2="18.36" />
|
|
7389
|
+
<line
|
|
7390
|
+
x1="18.36"
|
|
7391
|
+
y1="5.64"
|
|
7392
|
+
x2="19.78"
|
|
7393
|
+
y2="4.22" />
|
|
4695
7394
|
</svg>
|
|
4696
7395
|
`,
|
|
4697
7396
|
}]
|
|
4698
7397
|
}] });
|
|
4699
7398
|
|
|
4700
|
-
class
|
|
4701
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4702
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
7399
|
+
class ThumbsDownIconComponent {
|
|
7400
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ThumbsDownIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7401
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ThumbsDownIconComponent, isStandalone: true, selector: "ea-icon-thumbs-down", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4703
7402
|
<svg
|
|
4704
7403
|
viewBox="0 0 24 24"
|
|
4705
7404
|
fill="none"
|
|
@@ -4711,15 +7410,14 @@ class MailIconComponent {
|
|
|
4711
7410
|
width="100%"
|
|
4712
7411
|
height="100%">
|
|
4713
7412
|
<path
|
|
4714
|
-
d="
|
|
4715
|
-
<polyline points="22 6 12 13 2 6" />
|
|
7413
|
+
d="M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17" />
|
|
4716
7414
|
</svg>
|
|
4717
7415
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4718
7416
|
}
|
|
4719
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
7417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ThumbsDownIconComponent, decorators: [{
|
|
4720
7418
|
type: Component,
|
|
4721
7419
|
args: [{
|
|
4722
|
-
selector: 'ea-icon-
|
|
7420
|
+
selector: 'ea-icon-thumbs-down',
|
|
4723
7421
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4724
7422
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4725
7423
|
template: `
|
|
@@ -4734,16 +7432,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4734
7432
|
width="100%"
|
|
4735
7433
|
height="100%">
|
|
4736
7434
|
<path
|
|
4737
|
-
d="
|
|
4738
|
-
<polyline points="22 6 12 13 2 6" />
|
|
7435
|
+
d="M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17" />
|
|
4739
7436
|
</svg>
|
|
4740
7437
|
`,
|
|
4741
7438
|
}]
|
|
4742
7439
|
}] });
|
|
4743
7440
|
|
|
4744
|
-
class
|
|
4745
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4746
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
7441
|
+
class ThumbsUpIconComponent {
|
|
7442
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ThumbsUpIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7443
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ThumbsUpIconComponent, isStandalone: true, selector: "ea-icon-thumbs-up", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4747
7444
|
<svg
|
|
4748
7445
|
viewBox="0 0 24 24"
|
|
4749
7446
|
fill="none"
|
|
@@ -4754,28 +7451,15 @@ class MenuIconComponent {
|
|
|
4754
7451
|
aria-hidden="true"
|
|
4755
7452
|
width="100%"
|
|
4756
7453
|
height="100%">
|
|
4757
|
-
<
|
|
4758
|
-
|
|
4759
|
-
y1="6"
|
|
4760
|
-
x2="21"
|
|
4761
|
-
y2="6" />
|
|
4762
|
-
<line
|
|
4763
|
-
x1="3"
|
|
4764
|
-
y1="12"
|
|
4765
|
-
x2="21"
|
|
4766
|
-
y2="12" />
|
|
4767
|
-
<line
|
|
4768
|
-
x1="3"
|
|
4769
|
-
y1="18"
|
|
4770
|
-
x2="21"
|
|
4771
|
-
y2="18" />
|
|
7454
|
+
<path
|
|
7455
|
+
d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3" />
|
|
4772
7456
|
</svg>
|
|
4773
7457
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4774
7458
|
}
|
|
4775
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
7459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ThumbsUpIconComponent, decorators: [{
|
|
4776
7460
|
type: Component,
|
|
4777
7461
|
args: [{
|
|
4778
|
-
selector: 'ea-icon-
|
|
7462
|
+
selector: 'ea-icon-thumbs-up',
|
|
4779
7463
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4780
7464
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4781
7465
|
template: `
|
|
@@ -4789,105 +7473,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4789
7473
|
aria-hidden="true"
|
|
4790
7474
|
width="100%"
|
|
4791
7475
|
height="100%">
|
|
4792
|
-
<
|
|
4793
|
-
|
|
4794
|
-
y1="6"
|
|
4795
|
-
x2="21"
|
|
4796
|
-
y2="6" />
|
|
4797
|
-
<line
|
|
4798
|
-
x1="3"
|
|
4799
|
-
y1="12"
|
|
4800
|
-
x2="21"
|
|
4801
|
-
y2="12" />
|
|
4802
|
-
<line
|
|
4803
|
-
x1="3"
|
|
4804
|
-
y1="18"
|
|
4805
|
-
x2="21"
|
|
4806
|
-
y2="18" />
|
|
7476
|
+
<path
|
|
7477
|
+
d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3" />
|
|
4807
7478
|
</svg>
|
|
4808
7479
|
`,
|
|
4809
7480
|
}]
|
|
4810
7481
|
}] });
|
|
4811
7482
|
|
|
4812
|
-
class
|
|
4813
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4814
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
7483
|
+
class TrendingUpIconComponent {
|
|
7484
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: TrendingUpIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7485
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: TrendingUpIconComponent, isStandalone: true, selector: "ea-icon-trending-up", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4815
7486
|
<svg
|
|
4816
7487
|
viewBox="0 0 24 24"
|
|
7488
|
+
fill="none"
|
|
7489
|
+
stroke="currentColor"
|
|
7490
|
+
stroke-width="2"
|
|
7491
|
+
stroke-linecap="round"
|
|
7492
|
+
stroke-linejoin="round"
|
|
4817
7493
|
aria-hidden="true"
|
|
4818
7494
|
width="100%"
|
|
4819
7495
|
height="100%">
|
|
4820
|
-
<
|
|
4821
|
-
|
|
4822
|
-
y="1"
|
|
4823
|
-
width="10"
|
|
4824
|
-
height="10"
|
|
4825
|
-
fill="#F25022" />
|
|
4826
|
-
<rect
|
|
4827
|
-
x="13"
|
|
4828
|
-
y="1"
|
|
4829
|
-
width="10"
|
|
4830
|
-
height="10"
|
|
4831
|
-
fill="#7FBA00" />
|
|
4832
|
-
<rect
|
|
4833
|
-
x="1"
|
|
4834
|
-
y="13"
|
|
4835
|
-
width="10"
|
|
4836
|
-
height="10"
|
|
4837
|
-
fill="#00A4EF" />
|
|
4838
|
-
<rect
|
|
4839
|
-
x="13"
|
|
4840
|
-
y="13"
|
|
4841
|
-
width="10"
|
|
4842
|
-
height="10"
|
|
4843
|
-
fill="#FFB900" />
|
|
7496
|
+
<polyline points="23 6 13.5 15.5 8.5 10.5 1 18" />
|
|
7497
|
+
<polyline points="17 6 23 6 23 12" />
|
|
4844
7498
|
</svg>
|
|
4845
7499
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4846
7500
|
}
|
|
4847
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
7501
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: TrendingUpIconComponent, decorators: [{
|
|
4848
7502
|
type: Component,
|
|
4849
7503
|
args: [{
|
|
4850
|
-
selector: 'ea-icon-
|
|
7504
|
+
selector: 'ea-icon-trending-up',
|
|
4851
7505
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4852
7506
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4853
7507
|
template: `
|
|
4854
7508
|
<svg
|
|
4855
7509
|
viewBox="0 0 24 24"
|
|
7510
|
+
fill="none"
|
|
7511
|
+
stroke="currentColor"
|
|
7512
|
+
stroke-width="2"
|
|
7513
|
+
stroke-linecap="round"
|
|
7514
|
+
stroke-linejoin="round"
|
|
4856
7515
|
aria-hidden="true"
|
|
4857
7516
|
width="100%"
|
|
4858
7517
|
height="100%">
|
|
4859
|
-
<
|
|
4860
|
-
|
|
4861
|
-
y="1"
|
|
4862
|
-
width="10"
|
|
4863
|
-
height="10"
|
|
4864
|
-
fill="#F25022" />
|
|
4865
|
-
<rect
|
|
4866
|
-
x="13"
|
|
4867
|
-
y="1"
|
|
4868
|
-
width="10"
|
|
4869
|
-
height="10"
|
|
4870
|
-
fill="#7FBA00" />
|
|
4871
|
-
<rect
|
|
4872
|
-
x="1"
|
|
4873
|
-
y="13"
|
|
4874
|
-
width="10"
|
|
4875
|
-
height="10"
|
|
4876
|
-
fill="#00A4EF" />
|
|
4877
|
-
<rect
|
|
4878
|
-
x="13"
|
|
4879
|
-
y="13"
|
|
4880
|
-
width="10"
|
|
4881
|
-
height="10"
|
|
4882
|
-
fill="#FFB900" />
|
|
7518
|
+
<polyline points="23 6 13.5 15.5 8.5 10.5 1 18" />
|
|
7519
|
+
<polyline points="17 6 23 6 23 12" />
|
|
4883
7520
|
</svg>
|
|
4884
7521
|
`,
|
|
4885
7522
|
}]
|
|
4886
7523
|
}] });
|
|
4887
7524
|
|
|
4888
|
-
class
|
|
4889
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4890
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
7525
|
+
class UnlockIconComponent {
|
|
7526
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: UnlockIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7527
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: UnlockIconComponent, isStandalone: true, selector: "ea-icon-unlock", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4891
7528
|
<svg
|
|
4892
7529
|
viewBox="0 0 24 24"
|
|
4893
7530
|
fill="none"
|
|
@@ -4898,25 +7535,21 @@ class MoreHorizontalIconComponent {
|
|
|
4898
7535
|
aria-hidden="true"
|
|
4899
7536
|
width="100%"
|
|
4900
7537
|
height="100%">
|
|
4901
|
-
<
|
|
4902
|
-
|
|
4903
|
-
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
|
|
4908
|
-
|
|
4909
|
-
<circle
|
|
4910
|
-
cx="5"
|
|
4911
|
-
cy="12"
|
|
4912
|
-
r="1" />
|
|
7538
|
+
<rect
|
|
7539
|
+
x="3"
|
|
7540
|
+
y="11"
|
|
7541
|
+
width="18"
|
|
7542
|
+
height="11"
|
|
7543
|
+
rx="2"
|
|
7544
|
+
ry="2" />
|
|
7545
|
+
<path d="M7 11V7a5 5 0 0 1 9.9-1" />
|
|
4913
7546
|
</svg>
|
|
4914
7547
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4915
7548
|
}
|
|
4916
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
7549
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: UnlockIconComponent, decorators: [{
|
|
4917
7550
|
type: Component,
|
|
4918
7551
|
args: [{
|
|
4919
|
-
selector: 'ea-icon-
|
|
7552
|
+
selector: 'ea-icon-unlock',
|
|
4920
7553
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4921
7554
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4922
7555
|
template: `
|
|
@@ -4930,26 +7563,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4930
7563
|
aria-hidden="true"
|
|
4931
7564
|
width="100%"
|
|
4932
7565
|
height="100%">
|
|
4933
|
-
<
|
|
4934
|
-
|
|
4935
|
-
|
|
4936
|
-
|
|
4937
|
-
|
|
4938
|
-
|
|
4939
|
-
|
|
4940
|
-
|
|
4941
|
-
<circle
|
|
4942
|
-
cx="5"
|
|
4943
|
-
cy="12"
|
|
4944
|
-
r="1" />
|
|
7566
|
+
<rect
|
|
7567
|
+
x="3"
|
|
7568
|
+
y="11"
|
|
7569
|
+
width="18"
|
|
7570
|
+
height="11"
|
|
7571
|
+
rx="2"
|
|
7572
|
+
ry="2" />
|
|
7573
|
+
<path d="M7 11V7a5 5 0 0 1 9.9-1" />
|
|
4945
7574
|
</svg>
|
|
4946
7575
|
`,
|
|
4947
7576
|
}]
|
|
4948
7577
|
}] });
|
|
4949
7578
|
|
|
4950
|
-
class
|
|
4951
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4952
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
7579
|
+
class UsersIconComponent {
|
|
7580
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: UsersIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7581
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: UsersIconComponent, isStandalone: true, selector: "ea-icon-users", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4953
7582
|
<svg
|
|
4954
7583
|
viewBox="0 0 24 24"
|
|
4955
7584
|
fill="none"
|
|
@@ -4960,14 +7589,20 @@ class PencilIconComponent {
|
|
|
4960
7589
|
aria-hidden="true"
|
|
4961
7590
|
width="100%"
|
|
4962
7591
|
height="100%">
|
|
4963
|
-
<path d="M17
|
|
7592
|
+
<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" />
|
|
7593
|
+
<circle
|
|
7594
|
+
cx="9"
|
|
7595
|
+
cy="7"
|
|
7596
|
+
r="4" />
|
|
7597
|
+
<path d="M23 21v-2a4 4 0 0 0-3-3.87" />
|
|
7598
|
+
<path d="M16 3.13a4 4 0 0 1 0 7.75" />
|
|
4964
7599
|
</svg>
|
|
4965
7600
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4966
7601
|
}
|
|
4967
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
7602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: UsersIconComponent, decorators: [{
|
|
4968
7603
|
type: Component,
|
|
4969
7604
|
args: [{
|
|
4970
|
-
selector: 'ea-icon-
|
|
7605
|
+
selector: 'ea-icon-users',
|
|
4971
7606
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4972
7607
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
4973
7608
|
template: `
|
|
@@ -4981,15 +7616,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
4981
7616
|
aria-hidden="true"
|
|
4982
7617
|
width="100%"
|
|
4983
7618
|
height="100%">
|
|
4984
|
-
<path d="M17
|
|
7619
|
+
<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" />
|
|
7620
|
+
<circle
|
|
7621
|
+
cx="9"
|
|
7622
|
+
cy="7"
|
|
7623
|
+
r="4" />
|
|
7624
|
+
<path d="M23 21v-2a4 4 0 0 0-3-3.87" />
|
|
7625
|
+
<path d="M16 3.13a4 4 0 0 1 0 7.75" />
|
|
4985
7626
|
</svg>
|
|
4986
7627
|
`,
|
|
4987
7628
|
}]
|
|
4988
7629
|
}] });
|
|
4989
7630
|
|
|
4990
|
-
class
|
|
4991
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
4992
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
7631
|
+
class VideoIconComponent {
|
|
7632
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: VideoIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7633
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: VideoIconComponent, isStandalone: true, selector: "ea-icon-video", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
4993
7634
|
<svg
|
|
4994
7635
|
viewBox="0 0 24 24"
|
|
4995
7636
|
fill="none"
|
|
@@ -5000,18 +7641,21 @@ class SearchIconComponent {
|
|
|
5000
7641
|
aria-hidden="true"
|
|
5001
7642
|
width="100%"
|
|
5002
7643
|
height="100%">
|
|
5003
|
-
<
|
|
5004
|
-
|
|
5005
|
-
|
|
5006
|
-
|
|
5007
|
-
|
|
7644
|
+
<polygon points="23 7 16 12 23 17 23 7" />
|
|
7645
|
+
<rect
|
|
7646
|
+
x="1"
|
|
7647
|
+
y="5"
|
|
7648
|
+
width="15"
|
|
7649
|
+
height="14"
|
|
7650
|
+
rx="2"
|
|
7651
|
+
ry="2" />
|
|
5008
7652
|
</svg>
|
|
5009
7653
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5010
7654
|
}
|
|
5011
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
7655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: VideoIconComponent, decorators: [{
|
|
5012
7656
|
type: Component,
|
|
5013
7657
|
args: [{
|
|
5014
|
-
selector: 'ea-icon-
|
|
7658
|
+
selector: 'ea-icon-video',
|
|
5015
7659
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5016
7660
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5017
7661
|
template: `
|
|
@@ -5025,19 +7669,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
5025
7669
|
aria-hidden="true"
|
|
5026
7670
|
width="100%"
|
|
5027
7671
|
height="100%">
|
|
5028
|
-
<
|
|
5029
|
-
|
|
5030
|
-
|
|
5031
|
-
|
|
5032
|
-
|
|
7672
|
+
<polygon points="23 7 16 12 23 17 23 7" />
|
|
7673
|
+
<rect
|
|
7674
|
+
x="1"
|
|
7675
|
+
y="5"
|
|
7676
|
+
width="15"
|
|
7677
|
+
height="14"
|
|
7678
|
+
rx="2"
|
|
7679
|
+
ry="2" />
|
|
5033
7680
|
</svg>
|
|
5034
7681
|
`,
|
|
5035
7682
|
}]
|
|
5036
7683
|
}] });
|
|
5037
7684
|
|
|
5038
|
-
class
|
|
5039
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
5040
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
7685
|
+
class Volume2IconComponent {
|
|
7686
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: Volume2IconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7687
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: Volume2IconComponent, isStandalone: true, selector: "ea-icon-volume-2", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5041
7688
|
<svg
|
|
5042
7689
|
viewBox="0 0 24 24"
|
|
5043
7690
|
fill="none"
|
|
@@ -5048,19 +7695,15 @@ class SettingsIconComponent {
|
|
|
5048
7695
|
aria-hidden="true"
|
|
5049
7696
|
width="100%"
|
|
5050
7697
|
height="100%">
|
|
5051
|
-
<
|
|
5052
|
-
|
|
5053
|
-
cy="12"
|
|
5054
|
-
r="3" />
|
|
5055
|
-
<path
|
|
5056
|
-
d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" />
|
|
7698
|
+
<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5" />
|
|
7699
|
+
<path d="M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07" />
|
|
5057
7700
|
</svg>
|
|
5058
7701
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5059
7702
|
}
|
|
5060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
7703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: Volume2IconComponent, decorators: [{
|
|
5061
7704
|
type: Component,
|
|
5062
7705
|
args: [{
|
|
5063
|
-
selector: 'ea-icon-
|
|
7706
|
+
selector: 'ea-icon-volume-2',
|
|
5064
7707
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5065
7708
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5066
7709
|
template: `
|
|
@@ -5074,20 +7717,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
5074
7717
|
aria-hidden="true"
|
|
5075
7718
|
width="100%"
|
|
5076
7719
|
height="100%">
|
|
5077
|
-
<
|
|
5078
|
-
|
|
5079
|
-
cy="12"
|
|
5080
|
-
r="3" />
|
|
5081
|
-
<path
|
|
5082
|
-
d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" />
|
|
7720
|
+
<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5" />
|
|
7721
|
+
<path d="M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07" />
|
|
5083
7722
|
</svg>
|
|
5084
7723
|
`,
|
|
5085
7724
|
}]
|
|
5086
7725
|
}] });
|
|
5087
7726
|
|
|
5088
|
-
class
|
|
5089
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
5090
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type:
|
|
7727
|
+
class WifiIconComponent {
|
|
7728
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: WifiIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7729
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: WifiIconComponent, isStandalone: true, selector: "ea-icon-wifi", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
5091
7730
|
<svg
|
|
5092
7731
|
viewBox="0 0 24 24"
|
|
5093
7732
|
fill="none"
|
|
@@ -5098,15 +7737,21 @@ class StarIconComponent {
|
|
|
5098
7737
|
aria-hidden="true"
|
|
5099
7738
|
width="100%"
|
|
5100
7739
|
height="100%">
|
|
5101
|
-
<
|
|
5102
|
-
|
|
7740
|
+
<path d="M5 12.55a11 11 0 0 1 14.08 0" />
|
|
7741
|
+
<path d="M1.42 9a16 16 0 0 1 21.16 0" />
|
|
7742
|
+
<path d="M8.53 16.11a6 6 0 0 1 6.95 0" />
|
|
7743
|
+
<line
|
|
7744
|
+
x1="12"
|
|
7745
|
+
y1="20"
|
|
7746
|
+
x2="12.01"
|
|
7747
|
+
y2="20" />
|
|
5103
7748
|
</svg>
|
|
5104
7749
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5105
7750
|
}
|
|
5106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
7751
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: WifiIconComponent, decorators: [{
|
|
5107
7752
|
type: Component,
|
|
5108
7753
|
args: [{
|
|
5109
|
-
selector: 'ea-icon-
|
|
7754
|
+
selector: 'ea-icon-wifi',
|
|
5110
7755
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5111
7756
|
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
5112
7757
|
template: `
|
|
@@ -5120,8 +7765,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
5120
7765
|
aria-hidden="true"
|
|
5121
7766
|
width="100%"
|
|
5122
7767
|
height="100%">
|
|
5123
|
-
<
|
|
5124
|
-
|
|
7768
|
+
<path d="M5 12.55a11 11 0 0 1 14.08 0" />
|
|
7769
|
+
<path d="M1.42 9a16 16 0 0 1 21.16 0" />
|
|
7770
|
+
<path d="M8.53 16.11a6 6 0 0 1 6.95 0" />
|
|
7771
|
+
<line
|
|
7772
|
+
x1="12"
|
|
7773
|
+
y1="20"
|
|
7774
|
+
x2="12.01"
|
|
7775
|
+
y2="20" />
|
|
5125
7776
|
</svg>
|
|
5126
7777
|
`,
|
|
5127
7778
|
}]
|
|
@@ -5231,6 +7882,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
5231
7882
|
}]
|
|
5232
7883
|
}], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
|
|
5233
7884
|
|
|
7885
|
+
class ZapIconComponent {
|
|
7886
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ZapIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7887
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: ZapIconComponent, isStandalone: true, selector: "ea-icon-zap", host: { styleAttribute: "display: inline-flex; width: 1em; height: 1em;" }, ngImport: i0, template: `
|
|
7888
|
+
<svg
|
|
7889
|
+
viewBox="0 0 24 24"
|
|
7890
|
+
fill="none"
|
|
7891
|
+
stroke="currentColor"
|
|
7892
|
+
stroke-width="2"
|
|
7893
|
+
stroke-linecap="round"
|
|
7894
|
+
stroke-linejoin="round"
|
|
7895
|
+
aria-hidden="true"
|
|
7896
|
+
width="100%"
|
|
7897
|
+
height="100%">
|
|
7898
|
+
<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2" />
|
|
7899
|
+
</svg>
|
|
7900
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
7901
|
+
}
|
|
7902
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ZapIconComponent, decorators: [{
|
|
7903
|
+
type: Component,
|
|
7904
|
+
args: [{
|
|
7905
|
+
selector: 'ea-icon-zap',
|
|
7906
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7907
|
+
host: { style: 'display: inline-flex; width: 1em; height: 1em;' },
|
|
7908
|
+
template: `
|
|
7909
|
+
<svg
|
|
7910
|
+
viewBox="0 0 24 24"
|
|
7911
|
+
fill="none"
|
|
7912
|
+
stroke="currentColor"
|
|
7913
|
+
stroke-width="2"
|
|
7914
|
+
stroke-linecap="round"
|
|
7915
|
+
stroke-linejoin="round"
|
|
7916
|
+
aria-hidden="true"
|
|
7917
|
+
width="100%"
|
|
7918
|
+
height="100%">
|
|
7919
|
+
<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2" />
|
|
7920
|
+
</svg>
|
|
7921
|
+
`,
|
|
7922
|
+
}]
|
|
7923
|
+
}] });
|
|
7924
|
+
|
|
5234
7925
|
/**
|
|
5235
7926
|
* Single-line text field with label, hint, and error message support.
|
|
5236
7927
|
* Includes a built-in show/hide toggle for `password` inputs and integrates
|
|
@@ -5795,11 +8486,11 @@ class RadioComponent {
|
|
|
5795
8486
|
this.group.select(this.value());
|
|
5796
8487
|
}
|
|
5797
8488
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: RadioComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5798
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: RadioComponent, isStandalone: true, selector: "ea-radio", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<label\n class=\"ea-radio\"\n [ngClass]=\"hostClasses()\"\n [for]=\"id()\">\n <input\n type=\"radio\"\n class=\"ea-radio__input\"\n [id]=\"id()\"\n [name]=\"name()\"\n [value]=\"value()\"\n [checked]=\"isChecked()\"\n [disabled]=\"isDisabled()\"\n (change)=\"handleChange()\" />\n\n <span\n class=\"ea-radio__circle\"\n aria-hidden=\"true\">\n </span>\n\n @if (label()) {\n <span class=\"ea-radio__label\">{{ label() }}</span>\n }\n</label>\n", styles: [".ea-radio{display:inline-flex;align-items:
|
|
8489
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: RadioComponent, isStandalone: true, selector: "ea-radio", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<label\n class=\"ea-radio\"\n [ngClass]=\"hostClasses()\"\n [for]=\"id()\">\n <input\n type=\"radio\"\n class=\"ea-radio__input\"\n [id]=\"id()\"\n [name]=\"name()\"\n [value]=\"value()\"\n [checked]=\"isChecked()\"\n [disabled]=\"isDisabled()\"\n (change)=\"handleChange()\" />\n\n <span\n class=\"ea-radio__circle\"\n aria-hidden=\"true\">\n </span>\n\n @if (label()) {\n <span class=\"ea-radio__label\">{{ label() }}</span>\n }\n</label>\n", styles: [".ea-radio{display:inline-flex;align-items:center;gap:var(--space-2);cursor:pointer;-webkit-user-select:none;user-select:none;font-family:var(--font-family-sans);color:var(--color-text-primary)}.ea-radio--sm .ea-radio__circle{width:1rem;height:1rem}.ea-radio--sm .ea-radio__label{font-size:var(--font-size-sm);line-height:1rem}.ea-radio--md .ea-radio__circle{width:1.25rem;height:1.25rem}.ea-radio--md .ea-radio__label{font-size:var(--font-size-sm);line-height:1.25rem}.ea-radio--lg .ea-radio__circle{width:1.5rem;height:1.5rem}.ea-radio--lg .ea-radio__label{font-size:var(--font-size-md);line-height:1.5rem}.ea-radio--disabled{opacity:.45;cursor:not-allowed}.ea-radio--checked .ea-radio__circle{border-color:var(--color-brand-default)}.ea-radio--checked .ea-radio__circle:after{transform:scale(1)}.ea-radio:hover:not(.ea-radio--disabled) .ea-radio__circle{border-color:var(--color-brand-default)}.ea-radio__input{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.ea-radio__input:focus-visible+.ea-radio__circle{box-shadow:var(--shadow-focus-ring)}.ea-radio__circle{display:flex;align-items:center;justify-content:center;flex-shrink:0;border-radius:var(--radius-full);background-color:var(--color-bg-base);border:var(--border-width-medium) solid var(--color-border-strong);transition:var(--transition-colors),var(--transition-shadow)}.ea-radio__circle:after{content:\"\";display:block;width:45%;height:45%;border-radius:var(--radius-full);background-color:var(--color-brand-default);transform:scale(0);transition:var(--transition-transform)}.ea-radio__label{font-weight:var(--font-weight-regular)}\n"], dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5799
8490
|
}
|
|
5800
8491
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: RadioComponent, decorators: [{
|
|
5801
8492
|
type: Component,
|
|
5802
|
-
args: [{ selector: 'ea-radio', changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgClass], template: "<label\n class=\"ea-radio\"\n [ngClass]=\"hostClasses()\"\n [for]=\"id()\">\n <input\n type=\"radio\"\n class=\"ea-radio__input\"\n [id]=\"id()\"\n [name]=\"name()\"\n [value]=\"value()\"\n [checked]=\"isChecked()\"\n [disabled]=\"isDisabled()\"\n (change)=\"handleChange()\" />\n\n <span\n class=\"ea-radio__circle\"\n aria-hidden=\"true\">\n </span>\n\n @if (label()) {\n <span class=\"ea-radio__label\">{{ label() }}</span>\n }\n</label>\n", styles: [".ea-radio{display:inline-flex;align-items:
|
|
8493
|
+
args: [{ selector: 'ea-radio', changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgClass], template: "<label\n class=\"ea-radio\"\n [ngClass]=\"hostClasses()\"\n [for]=\"id()\">\n <input\n type=\"radio\"\n class=\"ea-radio__input\"\n [id]=\"id()\"\n [name]=\"name()\"\n [value]=\"value()\"\n [checked]=\"isChecked()\"\n [disabled]=\"isDisabled()\"\n (change)=\"handleChange()\" />\n\n <span\n class=\"ea-radio__circle\"\n aria-hidden=\"true\">\n </span>\n\n @if (label()) {\n <span class=\"ea-radio__label\">{{ label() }}</span>\n }\n</label>\n", styles: [".ea-radio{display:inline-flex;align-items:center;gap:var(--space-2);cursor:pointer;-webkit-user-select:none;user-select:none;font-family:var(--font-family-sans);color:var(--color-text-primary)}.ea-radio--sm .ea-radio__circle{width:1rem;height:1rem}.ea-radio--sm .ea-radio__label{font-size:var(--font-size-sm);line-height:1rem}.ea-radio--md .ea-radio__circle{width:1.25rem;height:1.25rem}.ea-radio--md .ea-radio__label{font-size:var(--font-size-sm);line-height:1.25rem}.ea-radio--lg .ea-radio__circle{width:1.5rem;height:1.5rem}.ea-radio--lg .ea-radio__label{font-size:var(--font-size-md);line-height:1.5rem}.ea-radio--disabled{opacity:.45;cursor:not-allowed}.ea-radio--checked .ea-radio__circle{border-color:var(--color-brand-default)}.ea-radio--checked .ea-radio__circle:after{transform:scale(1)}.ea-radio:hover:not(.ea-radio--disabled) .ea-radio__circle{border-color:var(--color-brand-default)}.ea-radio__input{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.ea-radio__input:focus-visible+.ea-radio__circle{box-shadow:var(--shadow-focus-ring)}.ea-radio__circle{display:flex;align-items:center;justify-content:center;flex-shrink:0;border-radius:var(--radius-full);background-color:var(--color-bg-base);border:var(--border-width-medium) solid var(--color-border-strong);transition:var(--transition-colors),var(--transition-shadow)}.ea-radio__circle:after{content:\"\";display:block;width:45%;height:45%;border-radius:var(--radius-full);background-color:var(--color-brand-default);transform:scale(0);transition:var(--transition-transform)}.ea-radio__label{font-weight:var(--font-weight-regular)}\n"] }]
|
|
5803
8494
|
}], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: true }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
|
|
5804
8495
|
|
|
5805
8496
|
/**
|
|
@@ -6488,11 +9179,11 @@ class ToastComponent {
|
|
|
6488
9179
|
return toast.variant === 'error' || toast.variant === 'warning' ? 'alert' : 'status';
|
|
6489
9180
|
}
|
|
6490
9181
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ToastComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6491
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: ToastComponent, isStandalone: true, selector: "ea-toast", ngImport: i0, template: "@if (toastService.toasts().length) {\n <div\n class=\"ea-toast-container\"\n aria-live=\"polite\"\n aria-atomic=\"false\">\n @for (toast of toastService.toasts(); track toast.id) {\n <div\n class=\"ea-toast ea-toast--{{ toast.variant }}\"\n [attr.role]=\"getRole(toast)\"\n [attr.aria-live]=\"getRole(toast) === 'alert' ? 'assertive' : 'polite'\">\n <span class=\"ea-toast__message\">{{ toast.message }}</span>\n <button\n class=\"ea-toast__close\"\n type=\"button\"\n aria-label=\"Dismiss\"\n (click)=\"toastService.dismiss(toast.id)\">\n <ea-icon-x />\n </button>\n </div>\n }\n </div>\n}\n", styles: [".ea-toast-container{position:fixed;bottom:var(--space-6);right:var(--space-6);left:var(--space-6);z-index:var(--z-index-toast);display:flex;flex-direction:column;align-items:flex-end;gap:var(--space-2);pointer-events:none}@media(min-width:640px){.ea-toast-container{left:auto;max-width:24rem}}.ea-toast{display:flex;align-items:center;gap:var(--space-3);width:100%;padding:var(--space-3) var(--space-4);font-family:var(--font-family-sans);font-size:var(--font-size-sm);font-weight:var(--font-weight-medium);line-height:var(--line-height-normal);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);pointer-events:auto;animation:ea-toast-slide-in var(--duration-slow) var(--ease-out)}@media(min-width:640px){.ea-toast{width:auto}}.ea-toast--default{background-color:var(--color-neutral-800);color:var(--color-neutral-0)}.ea-toast--success{background-color:var(--color-success-subtle);color:var(--color-success-700)}.ea-toast--warning{background-color:var(--color-warning-subtle);color:var(--color-warning-700)}.ea-toast--error{background-color:var(--color-error-subtle);color:var(--color-error-700)}.ea-toast--info{background-color:var(--color-info-subtle);color:var(--color-info-700)}.ea-toast__message{flex:1;min-width:0}.ea-toast__close{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:1.25rem;height:1.25rem;padding:0;background:none;border:none;color:inherit;opacity:.7;cursor:pointer;border-radius:var(--radius-sm);transition:var(--transition-colors)}.ea-toast__close:hover{opacity:1}.ea-toast__close:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}@keyframes ea-toast-slide-in{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}\n"], dependencies: [{ kind: "component", type: XIconComponent, selector: "ea-icon-x" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
9182
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: ToastComponent, isStandalone: true, selector: "ea-toast", ngImport: i0, template: "@if (toastService.toasts().length) {\n <div\n class=\"ea-toast-container\"\n aria-live=\"polite\"\n aria-atomic=\"false\">\n @for (toast of toastService.toasts(); track toast.id) {\n <div\n class=\"ea-toast ea-toast--{{ toast.variant }}\"\n [attr.role]=\"getRole(toast)\"\n [attr.aria-live]=\"getRole(toast) === 'alert' ? 'assertive' : 'polite'\">\n <span class=\"ea-toast__message\">{{ toast.message }}</span>\n <button\n class=\"ea-toast__close\"\n type=\"button\"\n aria-label=\"Dismiss\"\n (click)=\"toastService.dismiss(toast.id)\">\n <ea-icon-x />\n </button>\n </div>\n }\n </div>\n}\n", styles: [".ea-toast-container{position:fixed;bottom:var(--space-6);right:var(--space-6);left:var(--space-6);z-index:var(--z-index-toast);display:flex;flex-direction:column;align-items:flex-end;gap:var(--space-2);pointer-events:none}@media(min-width:640px){.ea-toast-container{left:auto;max-width:24rem}}.ea-toast{display:flex;align-items:center;gap:var(--space-3);width:100%;padding:var(--space-3) var(--space-4);font-family:var(--font-family-sans);font-size:var(--font-size-sm);font-weight:var(--font-weight-medium);line-height:var(--line-height-normal);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);pointer-events:auto;animation:ea-toast-slide-in var(--duration-slow) var(--ease-out)}@media(min-width:640px){.ea-toast{width:auto}}.ea-toast--default{background-color:var(--color-neutral-800);color:var(--color-neutral-0)}.ea-toast--success{background-color:var(--color-bg-elevated);background-image:linear-gradient(var(--color-success-subtle),var(--color-success-subtle));color:var(--color-success-700)}.ea-toast--warning{background-color:var(--color-bg-elevated);background-image:linear-gradient(var(--color-warning-subtle),var(--color-warning-subtle));color:var(--color-warning-700)}.ea-toast--error{background-color:var(--color-bg-elevated);background-image:linear-gradient(var(--color-error-subtle),var(--color-error-subtle));color:var(--color-error-700)}.ea-toast--info{background-color:var(--color-bg-elevated);background-image:linear-gradient(var(--color-info-subtle),var(--color-info-subtle));color:var(--color-info-700)}.ea-toast__message{flex:1;min-width:0}.ea-toast__close{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:1.25rem;height:1.25rem;padding:0;background:none;border:none;color:inherit;opacity:.7;cursor:pointer;border-radius:var(--radius-sm);transition:var(--transition-colors)}.ea-toast__close:hover{opacity:1}.ea-toast__close:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}@keyframes ea-toast-slide-in{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}@media(prefers-reduced-motion:reduce){.ea-toast{animation-name:ea-toast-fade-in}}@keyframes ea-toast-fade-in{0%{opacity:0}to{opacity:1}}@media(prefers-color-scheme:dark){:root:not([data-theme=light]) .ea-toast--success{color:var(--color-success-200)}:root:not([data-theme=light]) .ea-toast--warning{color:var(--color-warning-200)}:root:not([data-theme=light]) .ea-toast--error{color:var(--color-error-200)}:root:not([data-theme=light]) .ea-toast--info{color:var(--color-info-200)}}:root[data-theme=dark] .ea-toast--success{color:var(--color-success-200)}:root[data-theme=dark] .ea-toast--warning{color:var(--color-warning-200)}:root[data-theme=dark] .ea-toast--error{color:var(--color-error-200)}:root[data-theme=dark] .ea-toast--info{color:var(--color-info-200)}\n"], dependencies: [{ kind: "component", type: XIconComponent, selector: "ea-icon-x" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
6492
9183
|
}
|
|
6493
9184
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ToastComponent, decorators: [{
|
|
6494
9185
|
type: Component,
|
|
6495
|
-
args: [{ selector: 'ea-toast', imports: [XIconComponent], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "@if (toastService.toasts().length) {\n <div\n class=\"ea-toast-container\"\n aria-live=\"polite\"\n aria-atomic=\"false\">\n @for (toast of toastService.toasts(); track toast.id) {\n <div\n class=\"ea-toast ea-toast--{{ toast.variant }}\"\n [attr.role]=\"getRole(toast)\"\n [attr.aria-live]=\"getRole(toast) === 'alert' ? 'assertive' : 'polite'\">\n <span class=\"ea-toast__message\">{{ toast.message }}</span>\n <button\n class=\"ea-toast__close\"\n type=\"button\"\n aria-label=\"Dismiss\"\n (click)=\"toastService.dismiss(toast.id)\">\n <ea-icon-x />\n </button>\n </div>\n }\n </div>\n}\n", styles: [".ea-toast-container{position:fixed;bottom:var(--space-6);right:var(--space-6);left:var(--space-6);z-index:var(--z-index-toast);display:flex;flex-direction:column;align-items:flex-end;gap:var(--space-2);pointer-events:none}@media(min-width:640px){.ea-toast-container{left:auto;max-width:24rem}}.ea-toast{display:flex;align-items:center;gap:var(--space-3);width:100%;padding:var(--space-3) var(--space-4);font-family:var(--font-family-sans);font-size:var(--font-size-sm);font-weight:var(--font-weight-medium);line-height:var(--line-height-normal);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);pointer-events:auto;animation:ea-toast-slide-in var(--duration-slow) var(--ease-out)}@media(min-width:640px){.ea-toast{width:auto}}.ea-toast--default{background-color:var(--color-neutral-800);color:var(--color-neutral-0)}.ea-toast--success{background-color:var(--color-success-subtle);color:var(--color-success-700)}.ea-toast--warning{background-color:var(--color-warning-subtle);color:var(--color-warning-700)}.ea-toast--error{background-color:var(--color-error-subtle);color:var(--color-error-700)}.ea-toast--info{background-color:var(--color-info-subtle);color:var(--color-info-700)}.ea-toast__message{flex:1;min-width:0}.ea-toast__close{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:1.25rem;height:1.25rem;padding:0;background:none;border:none;color:inherit;opacity:.7;cursor:pointer;border-radius:var(--radius-sm);transition:var(--transition-colors)}.ea-toast__close:hover{opacity:1}.ea-toast__close:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}@keyframes ea-toast-slide-in{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}\n"] }]
|
|
9186
|
+
args: [{ selector: 'ea-toast', imports: [XIconComponent], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "@if (toastService.toasts().length) {\n <div\n class=\"ea-toast-container\"\n aria-live=\"polite\"\n aria-atomic=\"false\">\n @for (toast of toastService.toasts(); track toast.id) {\n <div\n class=\"ea-toast ea-toast--{{ toast.variant }}\"\n [attr.role]=\"getRole(toast)\"\n [attr.aria-live]=\"getRole(toast) === 'alert' ? 'assertive' : 'polite'\">\n <span class=\"ea-toast__message\">{{ toast.message }}</span>\n <button\n class=\"ea-toast__close\"\n type=\"button\"\n aria-label=\"Dismiss\"\n (click)=\"toastService.dismiss(toast.id)\">\n <ea-icon-x />\n </button>\n </div>\n }\n </div>\n}\n", styles: [".ea-toast-container{position:fixed;bottom:var(--space-6);right:var(--space-6);left:var(--space-6);z-index:var(--z-index-toast);display:flex;flex-direction:column;align-items:flex-end;gap:var(--space-2);pointer-events:none}@media(min-width:640px){.ea-toast-container{left:auto;max-width:24rem}}.ea-toast{display:flex;align-items:center;gap:var(--space-3);width:100%;padding:var(--space-3) var(--space-4);font-family:var(--font-family-sans);font-size:var(--font-size-sm);font-weight:var(--font-weight-medium);line-height:var(--line-height-normal);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);pointer-events:auto;animation:ea-toast-slide-in var(--duration-slow) var(--ease-out)}@media(min-width:640px){.ea-toast{width:auto}}.ea-toast--default{background-color:var(--color-neutral-800);color:var(--color-neutral-0)}.ea-toast--success{background-color:var(--color-bg-elevated);background-image:linear-gradient(var(--color-success-subtle),var(--color-success-subtle));color:var(--color-success-700)}.ea-toast--warning{background-color:var(--color-bg-elevated);background-image:linear-gradient(var(--color-warning-subtle),var(--color-warning-subtle));color:var(--color-warning-700)}.ea-toast--error{background-color:var(--color-bg-elevated);background-image:linear-gradient(var(--color-error-subtle),var(--color-error-subtle));color:var(--color-error-700)}.ea-toast--info{background-color:var(--color-bg-elevated);background-image:linear-gradient(var(--color-info-subtle),var(--color-info-subtle));color:var(--color-info-700)}.ea-toast__message{flex:1;min-width:0}.ea-toast__close{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:1.25rem;height:1.25rem;padding:0;background:none;border:none;color:inherit;opacity:.7;cursor:pointer;border-radius:var(--radius-sm);transition:var(--transition-colors)}.ea-toast__close:hover{opacity:1}.ea-toast__close:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}@keyframes ea-toast-slide-in{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}@media(prefers-reduced-motion:reduce){.ea-toast{animation-name:ea-toast-fade-in}}@keyframes ea-toast-fade-in{0%{opacity:0}to{opacity:1}}@media(prefers-color-scheme:dark){:root:not([data-theme=light]) .ea-toast--success{color:var(--color-success-200)}:root:not([data-theme=light]) .ea-toast--warning{color:var(--color-warning-200)}:root:not([data-theme=light]) .ea-toast--error{color:var(--color-error-200)}:root:not([data-theme=light]) .ea-toast--info{color:var(--color-info-200)}}:root[data-theme=dark] .ea-toast--success{color:var(--color-success-200)}:root[data-theme=dark] .ea-toast--warning{color:var(--color-warning-200)}:root[data-theme=dark] .ea-toast--error{color:var(--color-error-200)}:root[data-theme=dark] .ea-toast--info{color:var(--color-info-200)}\n"] }]
|
|
6496
9187
|
}] });
|
|
6497
9188
|
|
|
6498
9189
|
// =============================================================================
|
|
@@ -6504,5 +9195,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
6504
9195
|
* Generated bundle index. Do not edit.
|
|
6505
9196
|
*/
|
|
6506
9197
|
|
|
6507
|
-
export { AccordionComponent, AccordionItemComponent, AlertCircleIconComponent, AlertComponent, AlertTriangleIconComponent, AppleIconComponent, ArrowDownIconComponent, ArrowLeftIconComponent, ArrowRightIconComponent, ArrowUpIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, BadgeComponent, BellIconComponent, BreadcrumbsComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CardComponent, CheckCircleIconComponent, CheckIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsUpDownIconComponent, ClockIconComponent, CodeInputComponent, CopyIconComponent, DataTableComponent, DatePickerComponent, DialogComponent, DividerComponent, DownloadIconComponent, DrawerComponent, DropdownComponent, EagamiIconComponent, EagamiWordmarkComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, FacebookIconComponent, FileIconComponent, FilterIconComponent, GithubIconComponent, GoogleIconComponent, HeartIconComponent, ImageIconComponent, InfoIconComponent, InputComponent, LinkIconComponent, LoaderIconComponent, LogOutIconComponent, MailIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MicrosoftIconComponent, MinusIconComponent, MoreHorizontalIconComponent, PaginatorComponent, PencilIconComponent, PlusIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RotateCcwIconComponent, SearchIconComponent, SegmentedComponent, SettingsIconComponent, SkeletonComponent, SliderComponent, SpinnerComponent, StarIconComponent, SwitchComponent, TabComponent, TabsComponent, TagComponent, TextareaComponent, ToastComponent, ToastService, TooltipDirective, TrashIconComponent, UploadIconComponent, UserIconComponent, XCircleIconComponent, XIconComponent, XTwitterIconComponent };
|
|
9198
|
+
export { AccordionComponent, AccordionItemComponent, AlertCircleIconComponent, AlertComponent, AlertTriangleIconComponent, AppleIconComponent, ArchiveIconComponent, ArrowDownIconComponent, ArrowLeftIconComponent, ArrowRightIconComponent, ArrowUpIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, BadgeComponent, BarChartIconComponent, BellIconComponent, BookmarkIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CardComponent, CheckCircleIconComponent, CheckIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsUpDownIconComponent, ClipboardIconComponent, ClockIconComponent, CloudIconComponent, CodeInputComponent, CopyIconComponent, CreditCardIconComponent, DataTableComponent, DatePickerComponent, DialogComponent, DividerComponent, DollarSignIconComponent, DownloadIconComponent, DrawerComponent, DropdownComponent, EagamiIconComponent, EagamiWordmarkComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, FacebookIconComponent, FileIconComponent, FilterIconComponent, FlagIconComponent, FolderIconComponent, GiftIconComponent, GithubIconComponent, GlobeIconComponent, GoogleIconComponent, HashIconComponent, HeartIconComponent, HelpCircleIconComponent, HomeIconComponent, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, LinkIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailIconComponent, MapPinIconComponent, MaximizeIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MicIconComponent, MicrosoftIconComponent, MinimizeIconComponent, MinusIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseIconComponent, PencilIconComponent, PhoneIconComponent, PlayIconComponent, PlusIconComponent, PrinterIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RefreshCwIconComponent, RotateCcwIconComponent, SaveIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, SettingsIconComponent, ShareIconComponent, ShieldIconComponent, ShoppingCartIconComponent, SkeletonComponent, SliderComponent, SmartphoneIconComponent, SpinnerComponent, StarIconComponent, SunIconComponent, SwitchComponent, TabComponent, TabsComponent, TagComponent, TextareaComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, ToastComponent, ToastService, TooltipDirective, TrashIconComponent, TrendingUpIconComponent, UnlockIconComponent, UploadIconComponent, UserIconComponent, UsersIconComponent, VideoIconComponent, Volume2IconComponent, WifiIconComponent, XCircleIconComponent, XIconComponent, XTwitterIconComponent, ZapIconComponent };
|
|
6508
9199
|
//# sourceMappingURL=eagami-ui.mjs.map
|