@eagami/ui 0.7.3 → 0.8.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 +272 -175
- package/fesm2022/eagami-ui.mjs +2187 -267
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +269 -10
package/package.json
CHANGED
package/types/eagami-ui.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { OnDestroy, ElementRef, AfterViewInit, OnInit } from '@angular/core';
|
|
2
|
+
import { OnDestroy, ElementRef, TemplateRef, AfterViewInit, OnInit } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import * as _eagami_ui from '@eagami/ui';
|
|
5
5
|
|
|
@@ -53,7 +53,7 @@ declare class AvatarEditorComponent implements OnDestroy {
|
|
|
53
53
|
readonly shape: _angular_core.InputSignal<AvatarEditorShape>;
|
|
54
54
|
readonly canvasSize: _angular_core.InputSignal<number>;
|
|
55
55
|
readonly currentSrc: _angular_core.InputSignal<string | undefined>;
|
|
56
|
-
readonly
|
|
56
|
+
readonly loading: _angular_core.InputSignal<boolean>;
|
|
57
57
|
readonly accept: _angular_core.InputSignal<string>;
|
|
58
58
|
readonly maxFileSize: _angular_core.InputSignal<number>;
|
|
59
59
|
readonly minZoom: _angular_core.InputSignal<number>;
|
|
@@ -69,7 +69,7 @@ declare class AvatarEditorComponent implements OnDestroy {
|
|
|
69
69
|
readonly hasImage: _angular_core.WritableSignal<boolean>;
|
|
70
70
|
readonly isDragOver: _angular_core.WritableSignal<boolean>;
|
|
71
71
|
readonly isAtOriginal: _angular_core.WritableSignal<boolean>;
|
|
72
|
-
readonly isLoading: _angular_core.
|
|
72
|
+
readonly isLoading: _angular_core.Signal<boolean>;
|
|
73
73
|
readonly zoom: _angular_core.WritableSignal<number>;
|
|
74
74
|
readonly canRevert: _angular_core.Signal<boolean>;
|
|
75
75
|
private image;
|
|
@@ -82,6 +82,10 @@ declare class AvatarEditorComponent implements OnDestroy {
|
|
|
82
82
|
private initialOffsetX;
|
|
83
83
|
private initialOffsetY;
|
|
84
84
|
private _suppressCropStateEmit;
|
|
85
|
+
private readonly isFetching;
|
|
86
|
+
private originalCaptured;
|
|
87
|
+
private originalImage;
|
|
88
|
+
private originalCropState;
|
|
85
89
|
readonly hostClasses: _angular_core.Signal<{
|
|
86
90
|
[x: string]: boolean;
|
|
87
91
|
'ea-avatar-editor--has-image': boolean;
|
|
@@ -110,6 +114,7 @@ declare class AvatarEditorComponent implements OnDestroy {
|
|
|
110
114
|
setZoom(value: number): void;
|
|
111
115
|
onZoomInput(event: Event): void;
|
|
112
116
|
removeImage(): void;
|
|
117
|
+
captureOriginal(): void;
|
|
113
118
|
revertImage(): void;
|
|
114
119
|
exportCrop(): Promise<Blob>;
|
|
115
120
|
private loadFromUrl;
|
|
@@ -123,7 +128,7 @@ declare class AvatarEditorComponent implements OnDestroy {
|
|
|
123
128
|
private emitCropStateChange;
|
|
124
129
|
private clearCanvas;
|
|
125
130
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AvatarEditorComponent, never>;
|
|
126
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AvatarEditorComponent, "ea-avatar-editor", never, { "shape": { "alias": "shape"; "required": false; "isSignal": true; }; "canvasSize": { "alias": "canvasSize"; "required": false; "isSignal": true; }; "currentSrc": { "alias": "currentSrc"; "required": false; "isSignal": true; }; "
|
|
131
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AvatarEditorComponent, "ea-avatar-editor", never, { "shape": { "alias": "shape"; "required": false; "isSignal": true; }; "canvasSize": { "alias": "canvasSize"; "required": false; "isSignal": true; }; "currentSrc": { "alias": "currentSrc"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; "isSignal": true; }; "minZoom": { "alias": "minZoom"; "required": false; "isSignal": true; }; "maxZoom": { "alias": "maxZoom"; "required": false; "isSignal": true; }; "exportQuality": { "alias": "exportQuality"; "required": false; "isSignal": true; }; "exportType": { "alias": "exportType"; "required": false; "isSignal": true; }; "cropState": { "alias": "cropState"; "required": false; "isSignal": true; }; }, { "cropped": "cropped"; "fileSelected": "fileSelected"; "removed": "removed"; "fileError": "fileError"; "cropStateChange": "cropStateChange"; }, never, never, true, never>;
|
|
127
132
|
}
|
|
128
133
|
|
|
129
134
|
type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -168,6 +173,7 @@ declare class ButtonComponent {
|
|
|
168
173
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
169
174
|
readonly fullWidth: _angular_core.InputSignal<boolean>;
|
|
170
175
|
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
176
|
+
readonly ariaCurrent: _angular_core.InputSignal<string | undefined>;
|
|
171
177
|
readonly clicked: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
172
178
|
readonly isDisabled: _angular_core.Signal<boolean>;
|
|
173
179
|
readonly hostClasses: _angular_core.Signal<{
|
|
@@ -178,7 +184,7 @@ declare class ButtonComponent {
|
|
|
178
184
|
}>;
|
|
179
185
|
handleClick(event: MouseEvent): void;
|
|
180
186
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
181
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonComponent, "ea-button", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, ["[slot=prefix]", "*", "[slot=suffix]"], true, never>;
|
|
187
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonComponent, "ea-button", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "ariaCurrent": { "alias": "aria-current"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, ["[slot=prefix]", "*", "[slot=suffix]"], true, never>;
|
|
182
188
|
}
|
|
183
189
|
|
|
184
190
|
type CardVariant = 'elevated' | 'outlined' | 'filled';
|
|
@@ -226,6 +232,55 @@ declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
226
232
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CheckboxComponent, "ea-checkbox", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "changed": "changed"; }, never, never, true, never>;
|
|
227
233
|
}
|
|
228
234
|
|
|
235
|
+
type DataTableDensity = 'compact' | 'comfortable' | 'spacious';
|
|
236
|
+
type SortDirection = 'asc' | 'desc' | null;
|
|
237
|
+
interface DataTableColumn<T = Record<string, unknown>> {
|
|
238
|
+
key: string;
|
|
239
|
+
label: string;
|
|
240
|
+
sortable?: boolean;
|
|
241
|
+
align?: 'left' | 'center' | 'right';
|
|
242
|
+
width?: string;
|
|
243
|
+
format?: (value: unknown) => string;
|
|
244
|
+
cellTemplate?: TemplateRef<{
|
|
245
|
+
$implicit: T;
|
|
246
|
+
value: unknown;
|
|
247
|
+
}>;
|
|
248
|
+
headerTemplate?: TemplateRef<{
|
|
249
|
+
$implicit: DataTableColumn<T>;
|
|
250
|
+
}>;
|
|
251
|
+
}
|
|
252
|
+
interface DataTableSortState {
|
|
253
|
+
column: string;
|
|
254
|
+
direction: SortDirection;
|
|
255
|
+
}
|
|
256
|
+
declare class DataTableComponent<T = Record<string, unknown>> {
|
|
257
|
+
readonly columns: _angular_core.InputSignal<DataTableColumn<T>[]>;
|
|
258
|
+
readonly data: _angular_core.InputSignal<T[]>;
|
|
259
|
+
readonly trackBy: _angular_core.InputSignal<keyof T | undefined>;
|
|
260
|
+
readonly density: _angular_core.InputSignal<DataTableDensity>;
|
|
261
|
+
readonly stickyHeader: _angular_core.InputSignal<boolean>;
|
|
262
|
+
readonly striped: _angular_core.InputSignal<boolean>;
|
|
263
|
+
readonly hoverable: _angular_core.InputSignal<boolean>;
|
|
264
|
+
readonly bordered: _angular_core.InputSignal<boolean>;
|
|
265
|
+
readonly noDataText: _angular_core.InputSignal<string>;
|
|
266
|
+
readonly sort: _angular_core.ModelSignal<DataTableSortState>;
|
|
267
|
+
readonly sortChange: _angular_core.OutputEmitterRef<DataTableSortState>;
|
|
268
|
+
readonly noDataTemplate: _angular_core.Signal<TemplateRef<unknown> | undefined>;
|
|
269
|
+
readonly hostClasses: _angular_core.Signal<{
|
|
270
|
+
[x: string]: boolean;
|
|
271
|
+
'ea-data-table--sticky': boolean;
|
|
272
|
+
'ea-data-table--striped': boolean;
|
|
273
|
+
'ea-data-table--hoverable': boolean;
|
|
274
|
+
'ea-data-table--bordered': boolean;
|
|
275
|
+
}>;
|
|
276
|
+
readonly sortedData: _angular_core.Signal<T[]>;
|
|
277
|
+
getCellValue(row: T, key: string): unknown;
|
|
278
|
+
onHeaderClick(col: DataTableColumn<T>): void;
|
|
279
|
+
trackByFn(_index: number, item: T): unknown;
|
|
280
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataTableComponent<any>, never>;
|
|
281
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataTableComponent<any>, "ea-data-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "trackBy": { "alias": "trackBy"; "required": false; "isSignal": true; }; "density": { "alias": "density"; "required": false; "isSignal": true; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "hoverable": { "alias": "hoverable"; "required": false; "isSignal": true; }; "bordered": { "alias": "bordered"; "required": false; "isSignal": true; }; "noDataText": { "alias": "noDataText"; "required": false; "isSignal": true; }; "sort": { "alias": "sort"; "required": false; "isSignal": true; }; }, { "sort": "sortChange"; "sortChange": "sortChange"; }, ["noDataTemplate"], ["ea-paginator"], true, never>;
|
|
282
|
+
}
|
|
283
|
+
|
|
229
284
|
type CodeInputSize = 'sm' | 'md' | 'lg';
|
|
230
285
|
type CodeInputStatus = 'default' | 'error' | 'success';
|
|
231
286
|
declare class CodeInputComponent implements ControlValueAccessor {
|
|
@@ -353,14 +408,54 @@ declare class AlertCircleIconComponent {
|
|
|
353
408
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertCircleIconComponent, "ea-icon-alert-circle", never, {}, {}, never, never, true, never>;
|
|
354
409
|
}
|
|
355
410
|
|
|
411
|
+
declare class AlertTriangleIconComponent {
|
|
412
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AlertTriangleIconComponent, never>;
|
|
413
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertTriangleIconComponent, "ea-icon-alert-triangle", never, {}, {}, never, never, true, never>;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
declare class AppleIconComponent {
|
|
417
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AppleIconComponent, never>;
|
|
418
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AppleIconComponent, "ea-icon-apple", never, {}, {}, never, never, true, never>;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
declare class ArrowDownIconComponent {
|
|
422
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ArrowDownIconComponent, never>;
|
|
423
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ArrowDownIconComponent, "ea-icon-arrow-down", never, {}, {}, never, never, true, never>;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
declare class ArrowLeftIconComponent {
|
|
427
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ArrowLeftIconComponent, never>;
|
|
428
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ArrowLeftIconComponent, "ea-icon-arrow-left", never, {}, {}, never, never, true, never>;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
declare class ArrowRightIconComponent {
|
|
432
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ArrowRightIconComponent, never>;
|
|
433
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ArrowRightIconComponent, "ea-icon-arrow-right", never, {}, {}, never, never, true, never>;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
declare class ArrowUpIconComponent {
|
|
437
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ArrowUpIconComponent, never>;
|
|
438
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ArrowUpIconComponent, "ea-icon-arrow-up", never, {}, {}, never, never, true, never>;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
declare class BellIconComponent {
|
|
442
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BellIconComponent, never>;
|
|
443
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BellIconComponent, "ea-icon-bell", never, {}, {}, never, never, true, never>;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
declare class CalendarIconComponent {
|
|
447
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CalendarIconComponent, never>;
|
|
448
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CalendarIconComponent, "ea-icon-calendar", never, {}, {}, never, never, true, never>;
|
|
449
|
+
}
|
|
450
|
+
|
|
356
451
|
declare class CameraIconComponent {
|
|
357
452
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CameraIconComponent, never>;
|
|
358
453
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CameraIconComponent, "ea-icon-camera", never, {}, {}, never, never, true, never>;
|
|
359
454
|
}
|
|
360
455
|
|
|
361
|
-
declare class
|
|
362
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
363
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<
|
|
456
|
+
declare class CheckCircleIconComponent {
|
|
457
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CheckCircleIconComponent, never>;
|
|
458
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CheckCircleIconComponent, "ea-icon-check-circle", never, {}, {}, never, never, true, never>;
|
|
364
459
|
}
|
|
365
460
|
|
|
366
461
|
declare class CheckIconComponent {
|
|
@@ -368,6 +463,51 @@ declare class CheckIconComponent {
|
|
|
368
463
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CheckIconComponent, "ea-icon-check", never, {}, {}, never, never, true, never>;
|
|
369
464
|
}
|
|
370
465
|
|
|
466
|
+
declare class ChevronDownIconComponent {
|
|
467
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChevronDownIconComponent, never>;
|
|
468
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChevronDownIconComponent, "ea-icon-chevron-down", never, {}, {}, never, never, true, never>;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
declare class ChevronLeftIconComponent {
|
|
472
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChevronLeftIconComponent, never>;
|
|
473
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChevronLeftIconComponent, "ea-icon-chevron-left", never, {}, {}, never, never, true, never>;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
declare class ChevronRightIconComponent {
|
|
477
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChevronRightIconComponent, never>;
|
|
478
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChevronRightIconComponent, "ea-icon-chevron-right", never, {}, {}, never, never, true, never>;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
declare class ChevronUpIconComponent {
|
|
482
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChevronUpIconComponent, never>;
|
|
483
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChevronUpIconComponent, "ea-icon-chevron-up", never, {}, {}, never, never, true, never>;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
declare class ChevronsUpDownIconComponent {
|
|
487
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChevronsUpDownIconComponent, never>;
|
|
488
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChevronsUpDownIconComponent, "ea-icon-chevrons-up-down", never, {}, {}, never, never, true, never>;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
declare class ClockIconComponent {
|
|
492
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClockIconComponent, never>;
|
|
493
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClockIconComponent, "ea-icon-clock", never, {}, {}, never, never, true, never>;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
declare class CopyIconComponent {
|
|
497
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CopyIconComponent, never>;
|
|
498
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CopyIconComponent, "ea-icon-copy", never, {}, {}, never, never, true, never>;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
declare class DownloadIconComponent {
|
|
502
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DownloadIconComponent, never>;
|
|
503
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DownloadIconComponent, "ea-icon-download", never, {}, {}, never, never, true, never>;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
declare class ExternalLinkIconComponent {
|
|
507
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExternalLinkIconComponent, never>;
|
|
508
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExternalLinkIconComponent, "ea-icon-external-link", never, {}, {}, never, never, true, never>;
|
|
509
|
+
}
|
|
510
|
+
|
|
371
511
|
declare class EyeOffIconComponent {
|
|
372
512
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EyeOffIconComponent, never>;
|
|
373
513
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EyeOffIconComponent, "ea-icon-eye-off", never, {}, {}, never, never, true, never>;
|
|
@@ -378,26 +518,91 @@ declare class EyeIconComponent {
|
|
|
378
518
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EyeIconComponent, "ea-icon-eye", never, {}, {}, never, never, true, never>;
|
|
379
519
|
}
|
|
380
520
|
|
|
521
|
+
declare class FacebookIconComponent {
|
|
522
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FacebookIconComponent, never>;
|
|
523
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FacebookIconComponent, "ea-icon-facebook", never, {}, {}, never, never, true, never>;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
declare class FileIconComponent {
|
|
527
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FileIconComponent, never>;
|
|
528
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileIconComponent, "ea-icon-file", never, {}, {}, never, never, true, never>;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
declare class FilterIconComponent {
|
|
532
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterIconComponent, never>;
|
|
533
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterIconComponent, "ea-icon-filter", never, {}, {}, never, never, true, never>;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
declare class GithubIconComponent {
|
|
537
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GithubIconComponent, never>;
|
|
538
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GithubIconComponent, "ea-icon-github", never, {}, {}, never, never, true, never>;
|
|
539
|
+
}
|
|
540
|
+
|
|
381
541
|
declare class GoogleIconComponent {
|
|
382
542
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GoogleIconComponent, never>;
|
|
383
543
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GoogleIconComponent, "ea-icon-google", never, {}, {}, never, never, true, never>;
|
|
384
544
|
}
|
|
385
545
|
|
|
546
|
+
declare class HeartIconComponent {
|
|
547
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeartIconComponent, never>;
|
|
548
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeartIconComponent, "ea-icon-heart", never, {}, {}, never, never, true, never>;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
declare class ImageIconComponent {
|
|
552
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ImageIconComponent, never>;
|
|
553
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ImageIconComponent, "ea-icon-image", never, {}, {}, never, never, true, never>;
|
|
554
|
+
}
|
|
555
|
+
|
|
386
556
|
declare class InfoIconComponent {
|
|
387
557
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoIconComponent, never>;
|
|
388
558
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoIconComponent, "ea-icon-info", never, {}, {}, never, never, true, never>;
|
|
389
559
|
}
|
|
390
560
|
|
|
561
|
+
declare class LinkIconComponent {
|
|
562
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LinkIconComponent, never>;
|
|
563
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LinkIconComponent, "ea-icon-link", never, {}, {}, never, never, true, never>;
|
|
564
|
+
}
|
|
565
|
+
|
|
391
566
|
declare class LoaderIconComponent {
|
|
392
567
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoaderIconComponent, never>;
|
|
393
568
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LoaderIconComponent, "ea-icon-loader", never, {}, {}, never, never, true, never>;
|
|
394
569
|
}
|
|
395
570
|
|
|
571
|
+
declare class LogOutIconComponent {
|
|
572
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LogOutIconComponent, never>;
|
|
573
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LogOutIconComponent, "ea-icon-log-out", never, {}, {}, never, never, true, never>;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
declare class MailIconComponent {
|
|
577
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MailIconComponent, never>;
|
|
578
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MailIconComponent, "ea-icon-mail", never, {}, {}, never, never, true, never>;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
declare class MenuIconComponent {
|
|
582
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuIconComponent, never>;
|
|
583
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuIconComponent, "ea-icon-menu", never, {}, {}, never, never, true, never>;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
declare class MicrosoftIconComponent {
|
|
587
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MicrosoftIconComponent, never>;
|
|
588
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MicrosoftIconComponent, "ea-icon-microsoft", never, {}, {}, never, never, true, never>;
|
|
589
|
+
}
|
|
590
|
+
|
|
396
591
|
declare class MinusIconComponent {
|
|
397
592
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MinusIconComponent, never>;
|
|
398
593
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MinusIconComponent, "ea-icon-minus", never, {}, {}, never, never, true, never>;
|
|
399
594
|
}
|
|
400
595
|
|
|
596
|
+
declare class MoreHorizontalIconComponent {
|
|
597
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MoreHorizontalIconComponent, never>;
|
|
598
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MoreHorizontalIconComponent, "ea-icon-more-horizontal", never, {}, {}, never, never, true, never>;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
declare class PencilIconComponent {
|
|
602
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PencilIconComponent, never>;
|
|
603
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PencilIconComponent, "ea-icon-pencil", never, {}, {}, never, never, true, never>;
|
|
604
|
+
}
|
|
605
|
+
|
|
401
606
|
declare class PlusIconComponent {
|
|
402
607
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlusIconComponent, never>;
|
|
403
608
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlusIconComponent, "ea-icon-plus", never, {}, {}, never, never, true, never>;
|
|
@@ -408,6 +613,21 @@ declare class RotateCcwIconComponent {
|
|
|
408
613
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RotateCcwIconComponent, "ea-icon-rotate-ccw", never, {}, {}, never, never, true, never>;
|
|
409
614
|
}
|
|
410
615
|
|
|
616
|
+
declare class SearchIconComponent {
|
|
617
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchIconComponent, never>;
|
|
618
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchIconComponent, "ea-icon-search", never, {}, {}, never, never, true, never>;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
declare class SettingsIconComponent {
|
|
622
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SettingsIconComponent, never>;
|
|
623
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SettingsIconComponent, "ea-icon-settings", never, {}, {}, never, never, true, never>;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
declare class StarIconComponent {
|
|
627
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StarIconComponent, never>;
|
|
628
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StarIconComponent, "ea-icon-star", never, {}, {}, never, never, true, never>;
|
|
629
|
+
}
|
|
630
|
+
|
|
411
631
|
declare class TrashIconComponent {
|
|
412
632
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TrashIconComponent, never>;
|
|
413
633
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TrashIconComponent, "ea-icon-trash", never, {}, {}, never, never, true, never>;
|
|
@@ -423,6 +643,16 @@ declare class UserIconComponent {
|
|
|
423
643
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserIconComponent, "ea-icon-user", never, {}, {}, never, never, true, never>;
|
|
424
644
|
}
|
|
425
645
|
|
|
646
|
+
declare class XCircleIconComponent {
|
|
647
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XCircleIconComponent, never>;
|
|
648
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XCircleIconComponent, "ea-icon-x-circle", never, {}, {}, never, never, true, never>;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
declare class XTwitterIconComponent {
|
|
652
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XTwitterIconComponent, never>;
|
|
653
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XTwitterIconComponent, "ea-icon-x-twitter", never, {}, {}, never, never, true, never>;
|
|
654
|
+
}
|
|
655
|
+
|
|
426
656
|
declare class XIconComponent {
|
|
427
657
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XIconComponent, never>;
|
|
428
658
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XIconComponent, "ea-icon-x", never, {}, {}, never, never, true, never>;
|
|
@@ -480,6 +710,35 @@ declare class InputComponent implements ControlValueAccessor, AfterViewInit {
|
|
|
480
710
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputComponent, "ea-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "error"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; "autofocus": { "alias": "autofocus"; "required": false; "isSignal": true; }; "showPasswordToggle": { "alias": "showPasswordToggle"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "inputFocused": "inputFocused"; "inputBlurred": "inputBlurred"; }, never, ["[slot=prefix]", "[slot=suffix]"], true, never>;
|
|
481
711
|
}
|
|
482
712
|
|
|
713
|
+
type PaginatorPlacement = 'left' | 'center' | 'right';
|
|
714
|
+
interface PaginatorState {
|
|
715
|
+
page: number;
|
|
716
|
+
pageSize: number;
|
|
717
|
+
}
|
|
718
|
+
declare class PaginatorComponent {
|
|
719
|
+
readonly totalItems: _angular_core.InputSignal<number>;
|
|
720
|
+
readonly pageSizeOptions: _angular_core.InputSignal<number[]>;
|
|
721
|
+
readonly showPageSizeSelector: _angular_core.InputSignal<boolean>;
|
|
722
|
+
readonly showRangeLabel: _angular_core.InputSignal<boolean>;
|
|
723
|
+
readonly placement: _angular_core.InputSignal<PaginatorPlacement>;
|
|
724
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
725
|
+
readonly page: _angular_core.ModelSignal<number>;
|
|
726
|
+
readonly pageSize: _angular_core.ModelSignal<number>;
|
|
727
|
+
readonly changed: _angular_core.OutputEmitterRef<PaginatorState>;
|
|
728
|
+
readonly totalPages: _angular_core.Signal<number>;
|
|
729
|
+
readonly rangeStart: _angular_core.Signal<number>;
|
|
730
|
+
readonly rangeEnd: _angular_core.Signal<number>;
|
|
731
|
+
readonly canGoPrev: _angular_core.Signal<boolean>;
|
|
732
|
+
readonly canGoNext: _angular_core.Signal<boolean>;
|
|
733
|
+
readonly visiblePages: _angular_core.Signal<(number | "ellipsis")[]>;
|
|
734
|
+
goToPage(page: number): void;
|
|
735
|
+
prevPage(): void;
|
|
736
|
+
nextPage(): void;
|
|
737
|
+
onPageSizeChange(event: Event): void;
|
|
738
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PaginatorComponent, never>;
|
|
739
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaginatorComponent, "ea-paginator", never, { "totalItems": { "alias": "totalItems"; "required": true; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "showPageSizeSelector": { "alias": "showPageSizeSelector"; "required": false; "isSignal": true; }; "showRangeLabel": { "alias": "showRangeLabel"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; }, { "page": "pageChange"; "pageSize": "pageSizeChange"; "changed": "changed"; }, never, never, true, never>;
|
|
740
|
+
}
|
|
741
|
+
|
|
483
742
|
type ProgressBarVariant = 'default' | 'success' | 'warning' | 'error' | 'info';
|
|
484
743
|
type ProgressBarSize = 'sm' | 'md' | 'lg';
|
|
485
744
|
declare class ProgressBarComponent {
|
|
@@ -736,5 +995,5 @@ declare class TooltipDirective implements OnDestroy {
|
|
|
736
995
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TooltipDirective, "[eaTooltip]", never, { "eaTooltip": { "alias": "eaTooltip"; "required": true; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
737
996
|
}
|
|
738
997
|
|
|
739
|
-
export { AccordionComponent, AccordionItemComponent, AlertCircleIconComponent, AlertComponent, AvatarComponent, AvatarEditorComponent, BadgeComponent, ButtonComponent, CameraIconComponent, CardComponent, CheckIconComponent, CheckboxComponent, ChevronDownIconComponent, CodeInputComponent, DialogComponent, DividerComponent, DropdownComponent, EyeIconComponent, EyeOffIconComponent, GoogleIconComponent, InfoIconComponent, InputComponent, LoaderIconComponent, MinusIconComponent, PlusIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RotateCcwIconComponent, SkeletonComponent, SpinnerComponent, SwitchComponent, TabComponent, TabsComponent, TagComponent, TextareaComponent, ToastComponent, ToastService, TooltipDirective, TrashIconComponent, UploadIconComponent, UserIconComponent, XIconComponent };
|
|
740
|
-
export type { AlertVariant, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeSize, BadgeVariant, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, CodeInputStatus, DialogSize, DividerOrientation, DropdownOption, DropdownSize, InputSize, InputStatus, InputType, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, SkeletonVariant, SpinnerSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TextareaStatus, Toast, ToastOptions, ToastVariant, TooltipPosition };
|
|
998
|
+
export { AccordionComponent, AccordionItemComponent, AlertCircleIconComponent, AlertComponent, AlertTriangleIconComponent, AppleIconComponent, ArrowDownIconComponent, ArrowLeftIconComponent, ArrowRightIconComponent, ArrowUpIconComponent, AvatarComponent, AvatarEditorComponent, BadgeComponent, BellIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CardComponent, CheckCircleIconComponent, CheckIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsUpDownIconComponent, ClockIconComponent, CodeInputComponent, CopyIconComponent, DataTableComponent, DialogComponent, DividerComponent, DownloadIconComponent, DropdownComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, FacebookIconComponent, FileIconComponent, FilterIconComponent, GithubIconComponent, GoogleIconComponent, HeartIconComponent, ImageIconComponent, InfoIconComponent, InputComponent, LinkIconComponent, LoaderIconComponent, LogOutIconComponent, MailIconComponent, MenuIconComponent, MicrosoftIconComponent, MinusIconComponent, MoreHorizontalIconComponent, PaginatorComponent, PencilIconComponent, PlusIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RotateCcwIconComponent, SearchIconComponent, SettingsIconComponent, SkeletonComponent, SpinnerComponent, StarIconComponent, SwitchComponent, TabComponent, TabsComponent, TagComponent, TextareaComponent, ToastComponent, ToastService, TooltipDirective, TrashIconComponent, UploadIconComponent, UserIconComponent, XCircleIconComponent, XIconComponent, XTwitterIconComponent };
|
|
999
|
+
export type { AlertVariant, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeSize, BadgeVariant, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, CodeInputStatus, DataTableColumn, DataTableDensity, DataTableSortState, DialogSize, DividerOrientation, DropdownOption, DropdownSize, InputSize, InputStatus, InputType, PaginatorPlacement, PaginatorState, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, SkeletonVariant, SortDirection, SpinnerSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, TextareaStatus, Toast, ToastOptions, ToastVariant, TooltipPosition };
|