@js-smart/ng-kit 20.5.0 → 20.6.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/fesm2022/js-smart-ng-kit.mjs +384 -15
- package/fesm2022/js-smart-ng-kit.mjs.map +1 -1
- package/index.d.ts +151 -13
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { OnInit, ChangeDetectorRef, OnDestroy, OnChanges, AfterContentChecked, ElementRef, SimpleChanges,
|
|
2
|
+
import { OnInit, ChangeDetectorRef, OnDestroy, OnChanges, AfterContentChecked, ElementRef, SimpleChanges, ViewContainerRef, ComponentRef, WritableSignal } from '@angular/core';
|
|
3
3
|
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
4
4
|
import { ThemePalette, MatOptionSelectionChange } from '@angular/material/core';
|
|
5
5
|
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
6
6
|
import { MatAutocompleteTrigger } from '@angular/material/autocomplete';
|
|
7
|
-
import { MatTableDataSource } from '@angular/material/table';
|
|
8
7
|
import { MatPaginator } from '@angular/material/paginator';
|
|
9
|
-
import {
|
|
8
|
+
import { MatTableDataSource } from '@angular/material/table';
|
|
10
9
|
import { MatIconRegistry } from '@angular/material/icon';
|
|
11
10
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
11
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
12
12
|
import { MatSnackBar, MatSnackBarHorizontalPosition, MatSnackBarVerticalPosition } from '@angular/material/snack-bar';
|
|
13
13
|
|
|
14
14
|
interface ProgressState {
|
|
@@ -368,6 +368,7 @@ declare class PrintOptions {
|
|
|
368
368
|
* @author Pavan Kumar Jadda
|
|
369
369
|
*/
|
|
370
370
|
declare class NgxPrintDirective {
|
|
371
|
+
document: Document;
|
|
371
372
|
/**
|
|
372
373
|
* ID of the HTML element those contents need to be printed
|
|
373
374
|
*
|
|
@@ -402,7 +403,7 @@ declare class NgxPrintDirective {
|
|
|
402
403
|
* @since 12.0.0
|
|
403
404
|
* @author Pavan Kumar Jadda
|
|
404
405
|
*/
|
|
405
|
-
matTableDataSource: MatTableDataSource<
|
|
406
|
+
matTableDataSource: MatTableDataSource<unknown>;
|
|
406
407
|
/**
|
|
407
408
|
* Instance of the Mat Paginator
|
|
408
409
|
*
|
|
@@ -438,7 +439,7 @@ declare class NgxPrintDirective {
|
|
|
438
439
|
* @author Pavan Kumar Jadda
|
|
439
440
|
*/
|
|
440
441
|
hideMatTablePaginator: boolean;
|
|
441
|
-
printStyleArray:
|
|
442
|
+
printStyleArray: string[];
|
|
442
443
|
printOptions: PrintOptions;
|
|
443
444
|
/**
|
|
444
445
|
* List of Style sheet files
|
|
@@ -538,6 +539,36 @@ declare class PreventMultipleClicksDirective implements OnInit, OnDestroy {
|
|
|
538
539
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PreventMultipleClicksDirective, "[preventMultipleClicks]", never, { "throttleTime": { "alias": "throttleTime"; "required": false; "isSignal": true; }; }, { "throttleClick": "throttleClick"; }, never, never, true, never>;
|
|
539
540
|
}
|
|
540
541
|
|
|
542
|
+
declare abstract class BaseButtonDirective implements OnInit {
|
|
543
|
+
icon: _angular_core.InputSignal<string>;
|
|
544
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
545
|
+
loading: _angular_core.InputSignal<boolean>;
|
|
546
|
+
elementRef: ElementRef<any>;
|
|
547
|
+
document: Document;
|
|
548
|
+
protected originalText: _angular_core.WritableSignal<string>;
|
|
549
|
+
protected iconSpan: _angular_core.WritableSignal<HTMLElement | null>;
|
|
550
|
+
constructor();
|
|
551
|
+
ngOnInit(): void;
|
|
552
|
+
/**
|
|
553
|
+
* Create icon element if icon name is provided
|
|
554
|
+
*/
|
|
555
|
+
protected createIcon(): void;
|
|
556
|
+
/**
|
|
557
|
+
* Update content of the button
|
|
558
|
+
*/
|
|
559
|
+
protected updateContent(): void;
|
|
560
|
+
/**
|
|
561
|
+
* Show loading state. Add spinner and loadingLabel text
|
|
562
|
+
*/
|
|
563
|
+
protected showLoadingState(element: HTMLElement): void;
|
|
564
|
+
/**
|
|
565
|
+
* Show normal state. Add icon and original text
|
|
566
|
+
*/
|
|
567
|
+
protected showNormalState(element: HTMLElement): void;
|
|
568
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BaseButtonDirective, never>;
|
|
569
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BaseButtonDirective, never, never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
570
|
+
}
|
|
571
|
+
|
|
541
572
|
declare class BaseButtonComponent {
|
|
542
573
|
/**
|
|
543
574
|
* Is search in progress and loading the data
|
|
@@ -616,9 +647,18 @@ declare class BsLinkButtonComponent extends BaseButtonComponent {
|
|
|
616
647
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BsLinkButtonComponent, "bs-link-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
617
648
|
}
|
|
618
649
|
|
|
650
|
+
declare class BsLinkButtonDirective {
|
|
651
|
+
icon: _angular_core.InputSignal<string>;
|
|
652
|
+
elementRef: ElementRef<any>;
|
|
653
|
+
document: Document;
|
|
654
|
+
constructor();
|
|
655
|
+
private updateContent;
|
|
656
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BsLinkButtonDirective, never>;
|
|
657
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BsLinkButtonDirective, "[bsLinkButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
658
|
+
}
|
|
659
|
+
|
|
619
660
|
declare class CloseButtonDirective {
|
|
620
661
|
elementRef: ElementRef<any>;
|
|
621
|
-
renderer: Renderer2;
|
|
622
662
|
constructor();
|
|
623
663
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CloseButtonDirective, never>;
|
|
624
664
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CloseButtonDirective, "[closeButton]", never, {}, {}, never, never, true, never>;
|
|
@@ -634,6 +674,14 @@ declare class DeleteButtonComponent extends BaseButtonComponent {
|
|
|
634
674
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DeleteButtonComponent, "delete-button", never, { "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
635
675
|
}
|
|
636
676
|
|
|
677
|
+
declare class DeleteButtonDirective extends BaseButtonDirective {
|
|
678
|
+
icon: _angular_core.InputSignal<string>;
|
|
679
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
680
|
+
constructor();
|
|
681
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DeleteButtonDirective, never>;
|
|
682
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DeleteButtonDirective, "[deleteButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
683
|
+
}
|
|
684
|
+
|
|
637
685
|
declare class EditBsButtonComponent extends BaseButtonComponent {
|
|
638
686
|
label: _angular_core.InputSignal<string>;
|
|
639
687
|
classes: _angular_core.InputSignal<string>;
|
|
@@ -642,6 +690,24 @@ declare class EditBsButtonComponent extends BaseButtonComponent {
|
|
|
642
690
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditBsButtonComponent, "edit-bs-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
643
691
|
}
|
|
644
692
|
|
|
693
|
+
declare class EditSolidSvgComponent {
|
|
694
|
+
constructor(iconRegistry: MatIconRegistry, sanitizer: DomSanitizer);
|
|
695
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditSolidSvgComponent, never>;
|
|
696
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditSolidSvgComponent, "edit-solid-svg", never, {}, {}, never, never, true, never>;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
declare class EditBsButtonDirective implements OnInit {
|
|
700
|
+
elementRef: ElementRef<any>;
|
|
701
|
+
viewContainerRef: ViewContainerRef;
|
|
702
|
+
document: Document;
|
|
703
|
+
protected originalText: _angular_core.WritableSignal<string>;
|
|
704
|
+
protected iconComponentRef: _angular_core.WritableSignal<ComponentRef<EditSolidSvgComponent> | null>;
|
|
705
|
+
ngOnInit(): void;
|
|
706
|
+
private updateContent;
|
|
707
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditBsButtonDirective, never>;
|
|
708
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<EditBsButtonDirective, "[editBsButton]", never, {}, {}, never, never, true, never>;
|
|
709
|
+
}
|
|
710
|
+
|
|
645
711
|
declare class EditButtonComponent extends BaseButtonComponent {
|
|
646
712
|
label: _angular_core.InputSignal<string>;
|
|
647
713
|
icon: _angular_core.InputSignal<string>;
|
|
@@ -651,6 +717,14 @@ declare class EditButtonComponent extends BaseButtonComponent {
|
|
|
651
717
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditButtonComponent, "edit-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
652
718
|
}
|
|
653
719
|
|
|
720
|
+
declare class EditButtonDirective extends BaseButtonDirective {
|
|
721
|
+
icon: _angular_core.InputSignal<string>;
|
|
722
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
723
|
+
constructor();
|
|
724
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditButtonDirective, never>;
|
|
725
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<EditButtonDirective, "[editButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
726
|
+
}
|
|
727
|
+
|
|
654
728
|
declare class EditSvgIconButtonComponent extends BaseButtonComponent {
|
|
655
729
|
label: _angular_core.InputSignal<string>;
|
|
656
730
|
icon: _angular_core.InputSignal<string>;
|
|
@@ -660,11 +734,29 @@ declare class EditSvgIconButtonComponent extends BaseButtonComponent {
|
|
|
660
734
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditSvgIconButtonComponent, "edit-svg-icon-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
661
735
|
}
|
|
662
736
|
|
|
737
|
+
declare class EditSvgIconButtonDirective implements OnInit {
|
|
738
|
+
elementRef: ElementRef<any>;
|
|
739
|
+
viewContainerRef: ViewContainerRef;
|
|
740
|
+
document: Document;
|
|
741
|
+
protected originalText: _angular_core.WritableSignal<string>;
|
|
742
|
+
protected iconComponentRef: _angular_core.WritableSignal<ComponentRef<EditSolidSvgComponent> | null>;
|
|
743
|
+
ngOnInit(): void;
|
|
744
|
+
private updateContent;
|
|
745
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditSvgIconButtonDirective, never>;
|
|
746
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<EditSvgIconButtonDirective, "[editSvgIconButton]", never, {}, {}, never, never, true, never>;
|
|
747
|
+
}
|
|
748
|
+
|
|
663
749
|
declare class ExcelExportButtonComponent {
|
|
664
750
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExcelExportButtonComponent, never>;
|
|
665
751
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExcelExportButtonComponent, "excel-export-button", never, {}, {}, never, never, true, never>;
|
|
666
752
|
}
|
|
667
753
|
|
|
754
|
+
declare class ExcelExportButtonDirective extends BaseButtonDirective {
|
|
755
|
+
constructor();
|
|
756
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExcelExportButtonDirective, never>;
|
|
757
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ExcelExportButtonDirective, "[excelExportButton]", never, {}, {}, never, never, true, never>;
|
|
758
|
+
}
|
|
759
|
+
|
|
668
760
|
declare class ManageButtonComponent extends BaseButtonComponent {
|
|
669
761
|
label: _angular_core.InputSignal<string>;
|
|
670
762
|
icon: _angular_core.InputSignal<string>;
|
|
@@ -674,11 +766,24 @@ declare class ManageButtonComponent extends BaseButtonComponent {
|
|
|
674
766
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ManageButtonComponent, "manage-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
675
767
|
}
|
|
676
768
|
|
|
769
|
+
declare class ManageButtonDirective extends BaseButtonDirective {
|
|
770
|
+
icon: _angular_core.InputSignal<string>;
|
|
771
|
+
constructor();
|
|
772
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ManageButtonDirective, never>;
|
|
773
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ManageButtonDirective, "[manageButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
774
|
+
}
|
|
775
|
+
|
|
677
776
|
declare class PdfExportButtonComponent {
|
|
678
777
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdfExportButtonComponent, never>;
|
|
679
778
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PdfExportButtonComponent, "pdf-export-button", never, {}, {}, never, never, true, never>;
|
|
680
779
|
}
|
|
681
780
|
|
|
781
|
+
declare class PdfExportButtonDirective extends BaseButtonDirective {
|
|
782
|
+
constructor();
|
|
783
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdfExportButtonDirective, never>;
|
|
784
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PdfExportButtonDirective, "[pdfExportButton]", never, {}, {}, never, never, true, never>;
|
|
785
|
+
}
|
|
786
|
+
|
|
682
787
|
declare class PrimaryButtonComponent extends BaseButtonComponent {
|
|
683
788
|
loadingLabel: _angular_core.InputSignal<string>;
|
|
684
789
|
label: _angular_core.InputSignal<string>;
|
|
@@ -690,6 +795,14 @@ declare class PrimaryButtonComponent extends BaseButtonComponent {
|
|
|
690
795
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PrimaryButtonComponent, "primary-button", never, { "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
691
796
|
}
|
|
692
797
|
|
|
798
|
+
declare class PrimaryButtonDirective extends BaseButtonDirective {
|
|
799
|
+
icon: _angular_core.InputSignal<string>;
|
|
800
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
801
|
+
constructor();
|
|
802
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PrimaryButtonDirective, never>;
|
|
803
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PrimaryButtonDirective, "[primaryButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
804
|
+
}
|
|
805
|
+
|
|
693
806
|
declare class SavePrimaryButtonComponent extends BaseButtonComponent {
|
|
694
807
|
loadingLabel: _angular_core.InputSignal<string>;
|
|
695
808
|
label: _angular_core.InputSignal<string>;
|
|
@@ -700,6 +813,14 @@ declare class SavePrimaryButtonComponent extends BaseButtonComponent {
|
|
|
700
813
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SavePrimaryButtonComponent, "save-primary-button", never, { "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
701
814
|
}
|
|
702
815
|
|
|
816
|
+
declare class SavePrimaryButtonDirective extends BaseButtonDirective {
|
|
817
|
+
icon: _angular_core.InputSignal<string>;
|
|
818
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
819
|
+
constructor();
|
|
820
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SavePrimaryButtonDirective, never>;
|
|
821
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SavePrimaryButtonDirective, "[savePrimaryButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
822
|
+
}
|
|
823
|
+
|
|
703
824
|
declare class SearchButtonComponent extends BaseButtonComponent {
|
|
704
825
|
loadingLabel: _angular_core.InputSignal<string>;
|
|
705
826
|
label: _angular_core.InputSignal<string>;
|
|
@@ -720,6 +841,14 @@ declare class SuccessButtonComponent extends BaseButtonComponent {
|
|
|
720
841
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SuccessButtonComponent, "success-button", never, { "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
721
842
|
}
|
|
722
843
|
|
|
844
|
+
declare class SuccessButtonDirective extends BaseButtonDirective {
|
|
845
|
+
icon: _angular_core.InputSignal<string>;
|
|
846
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
847
|
+
constructor();
|
|
848
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SuccessButtonDirective, never>;
|
|
849
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SuccessButtonDirective, "[successButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
850
|
+
}
|
|
851
|
+
|
|
723
852
|
declare class ViewButtonComponent extends BaseButtonComponent {
|
|
724
853
|
label: _angular_core.InputSignal<string>;
|
|
725
854
|
icon: _angular_core.InputSignal<string>;
|
|
@@ -728,6 +857,14 @@ declare class ViewButtonComponent extends BaseButtonComponent {
|
|
|
728
857
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ViewButtonComponent, "view-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
729
858
|
}
|
|
730
859
|
|
|
860
|
+
declare class ViewButtonDirective extends BaseButtonDirective {
|
|
861
|
+
icon: _angular_core.InputSignal<string>;
|
|
862
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
863
|
+
constructor();
|
|
864
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewButtonDirective, never>;
|
|
865
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ViewButtonDirective, "[viewButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "loadingLabel": { "alias": "loadingLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
866
|
+
}
|
|
867
|
+
|
|
731
868
|
declare class ViewPrimaryButtonComponent extends BaseButtonComponent {
|
|
732
869
|
label: _angular_core.InputSignal<string>;
|
|
733
870
|
icon: _angular_core.InputSignal<string>;
|
|
@@ -737,6 +874,13 @@ declare class ViewPrimaryButtonComponent extends BaseButtonComponent {
|
|
|
737
874
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ViewPrimaryButtonComponent, "view-primary-button", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
738
875
|
}
|
|
739
876
|
|
|
877
|
+
declare class ViewPrimaryButtonDirective extends BaseButtonDirective {
|
|
878
|
+
icon: _angular_core.InputSignal<string>;
|
|
879
|
+
constructor();
|
|
880
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewPrimaryButtonDirective, never>;
|
|
881
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ViewPrimaryButtonDirective, "[viewPrimaryButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
882
|
+
}
|
|
883
|
+
|
|
740
884
|
declare class ConfirmDialogComponent {
|
|
741
885
|
data: ConfirmDialogData;
|
|
742
886
|
dialogRef: MatDialogRef<ConfirmDialogComponent>;
|
|
@@ -756,12 +900,6 @@ interface ConfirmDialogData {
|
|
|
756
900
|
message: string;
|
|
757
901
|
}
|
|
758
902
|
|
|
759
|
-
declare class EditSolidSvgComponent {
|
|
760
|
-
constructor(iconRegistry: MatIconRegistry, sanitizer: DomSanitizer);
|
|
761
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditSolidSvgComponent, never>;
|
|
762
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditSolidSvgComponent, "edit-solid-svg", never, {}, {}, never, never, true, never>;
|
|
763
|
-
}
|
|
764
|
-
|
|
765
903
|
declare class MatSnackBarService {
|
|
766
904
|
snackBar: MatSnackBar;
|
|
767
905
|
/**
|
|
@@ -958,5 +1096,5 @@ declare const markSuccess: (progressState: WritableSignal<ProgressState>, messag
|
|
|
958
1096
|
*/
|
|
959
1097
|
declare const markError: (progressState: WritableSignal<ProgressState>, message?: string) => void;
|
|
960
1098
|
|
|
961
|
-
export { AlertComponent, AutocompleteComponent, BsLinkButtonComponent, CloseButtonDirective, ConfirmDialogComponent, DeleteButtonComponent, EditBsButtonComponent, EditButtonComponent, EditSolidSvgComponent, EditSvgIconButtonComponent, EntityStore, ExcelExportButtonComponent, ManageButtonComponent, MatSnackBarService, NgxPrintDirective, NgxSpinnerComponent, NgxSpinnerService, PdfExportButtonComponent, PreventMultipleClicksDirective, PrimaryButtonComponent, SavePrimaryButtonComponent, SearchButtonComponent, SpinnerComponent, Store, SuccessButtonComponent, ViewButtonComponent, ViewPrimaryButtonComponent, initializeState, markError, markLoading, markSuccess };
|
|
1099
|
+
export { AlertComponent, AutocompleteComponent, BaseButtonDirective, BsLinkButtonComponent, BsLinkButtonDirective, CloseButtonDirective, ConfirmDialogComponent, DeleteButtonComponent, DeleteButtonDirective, EditBsButtonComponent, EditBsButtonDirective, EditButtonComponent, EditButtonDirective, EditSolidSvgComponent, EditSvgIconButtonComponent, EditSvgIconButtonDirective, EntityStore, ExcelExportButtonComponent, ExcelExportButtonDirective, ManageButtonComponent, ManageButtonDirective, MatSnackBarService, NgxPrintDirective, NgxSpinnerComponent, NgxSpinnerService, PdfExportButtonComponent, PdfExportButtonDirective, PreventMultipleClicksDirective, PrimaryButtonComponent, PrimaryButtonDirective, SavePrimaryButtonComponent, SavePrimaryButtonDirective, SearchButtonComponent, SpinnerComponent, Store, SuccessButtonComponent, SuccessButtonDirective, ViewButtonComponent, ViewButtonDirective, ViewPrimaryButtonComponent, ViewPrimaryButtonDirective, initializeState, markError, markLoading, markSuccess };
|
|
962
1100
|
export type { AlertType, ConfirmDialogData, MatSnackBarOptions, ProgressState };
|