@eagami/ui 0.7.4 → 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 +2112 -235
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +262 -7
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
|
|
|
@@ -114,6 +114,7 @@ declare class AvatarEditorComponent implements OnDestroy {
|
|
|
114
114
|
setZoom(value: number): void;
|
|
115
115
|
onZoomInput(event: Event): void;
|
|
116
116
|
removeImage(): void;
|
|
117
|
+
captureOriginal(): void;
|
|
117
118
|
revertImage(): void;
|
|
118
119
|
exportCrop(): Promise<Blob>;
|
|
119
120
|
private loadFromUrl;
|
|
@@ -172,6 +173,7 @@ declare class ButtonComponent {
|
|
|
172
173
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
173
174
|
readonly fullWidth: _angular_core.InputSignal<boolean>;
|
|
174
175
|
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
176
|
+
readonly ariaCurrent: _angular_core.InputSignal<string | undefined>;
|
|
175
177
|
readonly clicked: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
176
178
|
readonly isDisabled: _angular_core.Signal<boolean>;
|
|
177
179
|
readonly hostClasses: _angular_core.Signal<{
|
|
@@ -182,7 +184,7 @@ declare class ButtonComponent {
|
|
|
182
184
|
}>;
|
|
183
185
|
handleClick(event: MouseEvent): void;
|
|
184
186
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
185
|
-
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>;
|
|
186
188
|
}
|
|
187
189
|
|
|
188
190
|
type CardVariant = 'elevated' | 'outlined' | 'filled';
|
|
@@ -230,6 +232,55 @@ declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
230
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>;
|
|
231
233
|
}
|
|
232
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
|
+
|
|
233
284
|
type CodeInputSize = 'sm' | 'md' | 'lg';
|
|
234
285
|
type CodeInputStatus = 'default' | 'error' | 'success';
|
|
235
286
|
declare class CodeInputComponent implements ControlValueAccessor {
|
|
@@ -357,14 +408,54 @@ declare class AlertCircleIconComponent {
|
|
|
357
408
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertCircleIconComponent, "ea-icon-alert-circle", never, {}, {}, never, never, true, never>;
|
|
358
409
|
}
|
|
359
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
|
+
|
|
360
451
|
declare class CameraIconComponent {
|
|
361
452
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CameraIconComponent, never>;
|
|
362
453
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CameraIconComponent, "ea-icon-camera", never, {}, {}, never, never, true, never>;
|
|
363
454
|
}
|
|
364
455
|
|
|
365
|
-
declare class
|
|
366
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
367
|
-
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>;
|
|
368
459
|
}
|
|
369
460
|
|
|
370
461
|
declare class CheckIconComponent {
|
|
@@ -372,6 +463,51 @@ declare class CheckIconComponent {
|
|
|
372
463
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CheckIconComponent, "ea-icon-check", never, {}, {}, never, never, true, never>;
|
|
373
464
|
}
|
|
374
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
|
+
|
|
375
511
|
declare class EyeOffIconComponent {
|
|
376
512
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EyeOffIconComponent, never>;
|
|
377
513
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EyeOffIconComponent, "ea-icon-eye-off", never, {}, {}, never, never, true, never>;
|
|
@@ -382,26 +518,91 @@ declare class EyeIconComponent {
|
|
|
382
518
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EyeIconComponent, "ea-icon-eye", never, {}, {}, never, never, true, never>;
|
|
383
519
|
}
|
|
384
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
|
+
|
|
385
541
|
declare class GoogleIconComponent {
|
|
386
542
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GoogleIconComponent, never>;
|
|
387
543
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GoogleIconComponent, "ea-icon-google", never, {}, {}, never, never, true, never>;
|
|
388
544
|
}
|
|
389
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
|
+
|
|
390
556
|
declare class InfoIconComponent {
|
|
391
557
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoIconComponent, never>;
|
|
392
558
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoIconComponent, "ea-icon-info", never, {}, {}, never, never, true, never>;
|
|
393
559
|
}
|
|
394
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
|
+
|
|
395
566
|
declare class LoaderIconComponent {
|
|
396
567
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoaderIconComponent, never>;
|
|
397
568
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LoaderIconComponent, "ea-icon-loader", never, {}, {}, never, never, true, never>;
|
|
398
569
|
}
|
|
399
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
|
+
|
|
400
591
|
declare class MinusIconComponent {
|
|
401
592
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MinusIconComponent, never>;
|
|
402
593
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MinusIconComponent, "ea-icon-minus", never, {}, {}, never, never, true, never>;
|
|
403
594
|
}
|
|
404
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
|
+
|
|
405
606
|
declare class PlusIconComponent {
|
|
406
607
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlusIconComponent, never>;
|
|
407
608
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlusIconComponent, "ea-icon-plus", never, {}, {}, never, never, true, never>;
|
|
@@ -412,6 +613,21 @@ declare class RotateCcwIconComponent {
|
|
|
412
613
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RotateCcwIconComponent, "ea-icon-rotate-ccw", never, {}, {}, never, never, true, never>;
|
|
413
614
|
}
|
|
414
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
|
+
|
|
415
631
|
declare class TrashIconComponent {
|
|
416
632
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TrashIconComponent, never>;
|
|
417
633
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TrashIconComponent, "ea-icon-trash", never, {}, {}, never, never, true, never>;
|
|
@@ -427,6 +643,16 @@ declare class UserIconComponent {
|
|
|
427
643
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserIconComponent, "ea-icon-user", never, {}, {}, never, never, true, never>;
|
|
428
644
|
}
|
|
429
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
|
+
|
|
430
656
|
declare class XIconComponent {
|
|
431
657
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<XIconComponent, never>;
|
|
432
658
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<XIconComponent, "ea-icon-x", never, {}, {}, never, never, true, never>;
|
|
@@ -484,6 +710,35 @@ declare class InputComponent implements ControlValueAccessor, AfterViewInit {
|
|
|
484
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>;
|
|
485
711
|
}
|
|
486
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
|
+
|
|
487
742
|
type ProgressBarVariant = 'default' | 'success' | 'warning' | 'error' | 'info';
|
|
488
743
|
type ProgressBarSize = 'sm' | 'md' | 'lg';
|
|
489
744
|
declare class ProgressBarComponent {
|
|
@@ -740,5 +995,5 @@ declare class TooltipDirective implements OnDestroy {
|
|
|
740
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>;
|
|
741
996
|
}
|
|
742
997
|
|
|
743
|
-
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 };
|
|
744
|
-
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 };
|