@js-smart/ng-kit 20.5.0 → 20.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/js-smart-ng-kit.mjs +372 -6
- package/fesm2022/js-smart-ng-kit.mjs.map +1 -1
- package/index.d.ts +143 -10
- 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
7
|
import { MatTableDataSource } from '@angular/material/table';
|
|
8
8
|
import { MatPaginator } from '@angular/material/paginator';
|
|
9
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
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 {
|
|
@@ -538,6 +538,35 @@ declare class PreventMultipleClicksDirective implements OnInit, OnDestroy {
|
|
|
538
538
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PreventMultipleClicksDirective, "[preventMultipleClicks]", never, { "throttleTime": { "alias": "throttleTime"; "required": false; "isSignal": true; }; }, { "throttleClick": "throttleClick"; }, never, never, true, never>;
|
|
539
539
|
}
|
|
540
540
|
|
|
541
|
+
declare abstract class BaseButtonDirective implements OnInit {
|
|
542
|
+
icon: _angular_core.InputSignal<string>;
|
|
543
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
544
|
+
loading: _angular_core.InputSignal<boolean>;
|
|
545
|
+
elementRef: ElementRef<any>;
|
|
546
|
+
protected originalText: _angular_core.WritableSignal<string>;
|
|
547
|
+
protected iconSpan: _angular_core.WritableSignal<HTMLElement | null>;
|
|
548
|
+
constructor();
|
|
549
|
+
ngOnInit(): void;
|
|
550
|
+
/**
|
|
551
|
+
* Create icon element if icon name is provided
|
|
552
|
+
*/
|
|
553
|
+
protected createIcon(): void;
|
|
554
|
+
/**
|
|
555
|
+
* Update content of the button
|
|
556
|
+
*/
|
|
557
|
+
protected updateContent(): void;
|
|
558
|
+
/**
|
|
559
|
+
* Show loading state. Add spinner and loadingLabel text
|
|
560
|
+
*/
|
|
561
|
+
protected showLoadingState(element: HTMLElement): void;
|
|
562
|
+
/**
|
|
563
|
+
* Show normal state. Add icon and original text
|
|
564
|
+
*/
|
|
565
|
+
protected showNormalState(element: HTMLElement): void;
|
|
566
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BaseButtonDirective, never>;
|
|
567
|
+
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>;
|
|
568
|
+
}
|
|
569
|
+
|
|
541
570
|
declare class BaseButtonComponent {
|
|
542
571
|
/**
|
|
543
572
|
* Is search in progress and loading the data
|
|
@@ -616,9 +645,17 @@ declare class BsLinkButtonComponent extends BaseButtonComponent {
|
|
|
616
645
|
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
646
|
}
|
|
618
647
|
|
|
648
|
+
declare class BsLinkButtonDirective {
|
|
649
|
+
icon: _angular_core.InputSignal<string>;
|
|
650
|
+
elementRef: ElementRef<any>;
|
|
651
|
+
constructor();
|
|
652
|
+
private updateContent;
|
|
653
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BsLinkButtonDirective, never>;
|
|
654
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BsLinkButtonDirective, "[bsLinkButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
655
|
+
}
|
|
656
|
+
|
|
619
657
|
declare class CloseButtonDirective {
|
|
620
658
|
elementRef: ElementRef<any>;
|
|
621
|
-
renderer: Renderer2;
|
|
622
659
|
constructor();
|
|
623
660
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CloseButtonDirective, never>;
|
|
624
661
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CloseButtonDirective, "[closeButton]", never, {}, {}, never, never, true, never>;
|
|
@@ -634,6 +671,14 @@ declare class DeleteButtonComponent extends BaseButtonComponent {
|
|
|
634
671
|
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
672
|
}
|
|
636
673
|
|
|
674
|
+
declare class DeleteButtonDirective extends BaseButtonDirective {
|
|
675
|
+
icon: _angular_core.InputSignal<string>;
|
|
676
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
677
|
+
constructor();
|
|
678
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DeleteButtonDirective, never>;
|
|
679
|
+
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>;
|
|
680
|
+
}
|
|
681
|
+
|
|
637
682
|
declare class EditBsButtonComponent extends BaseButtonComponent {
|
|
638
683
|
label: _angular_core.InputSignal<string>;
|
|
639
684
|
classes: _angular_core.InputSignal<string>;
|
|
@@ -642,6 +687,23 @@ declare class EditBsButtonComponent extends BaseButtonComponent {
|
|
|
642
687
|
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
688
|
}
|
|
644
689
|
|
|
690
|
+
declare class EditSolidSvgComponent {
|
|
691
|
+
constructor(iconRegistry: MatIconRegistry, sanitizer: DomSanitizer);
|
|
692
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditSolidSvgComponent, never>;
|
|
693
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EditSolidSvgComponent, "edit-solid-svg", never, {}, {}, never, never, true, never>;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
declare class EditBsButtonDirective implements OnInit {
|
|
697
|
+
elementRef: ElementRef<any>;
|
|
698
|
+
viewContainerRef: ViewContainerRef;
|
|
699
|
+
protected originalText: _angular_core.WritableSignal<string>;
|
|
700
|
+
protected iconComponentRef: _angular_core.WritableSignal<ComponentRef<EditSolidSvgComponent> | null>;
|
|
701
|
+
ngOnInit(): void;
|
|
702
|
+
private updateContent;
|
|
703
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditBsButtonDirective, never>;
|
|
704
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<EditBsButtonDirective, "[editBsButton]", never, {}, {}, never, never, true, never>;
|
|
705
|
+
}
|
|
706
|
+
|
|
645
707
|
declare class EditButtonComponent extends BaseButtonComponent {
|
|
646
708
|
label: _angular_core.InputSignal<string>;
|
|
647
709
|
icon: _angular_core.InputSignal<string>;
|
|
@@ -651,6 +713,14 @@ declare class EditButtonComponent extends BaseButtonComponent {
|
|
|
651
713
|
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
714
|
}
|
|
653
715
|
|
|
716
|
+
declare class EditButtonDirective extends BaseButtonDirective {
|
|
717
|
+
icon: _angular_core.InputSignal<string>;
|
|
718
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
719
|
+
constructor();
|
|
720
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditButtonDirective, never>;
|
|
721
|
+
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>;
|
|
722
|
+
}
|
|
723
|
+
|
|
654
724
|
declare class EditSvgIconButtonComponent extends BaseButtonComponent {
|
|
655
725
|
label: _angular_core.InputSignal<string>;
|
|
656
726
|
icon: _angular_core.InputSignal<string>;
|
|
@@ -660,11 +730,28 @@ declare class EditSvgIconButtonComponent extends BaseButtonComponent {
|
|
|
660
730
|
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
731
|
}
|
|
662
732
|
|
|
733
|
+
declare class EditSvgIconButtonDirective implements OnInit {
|
|
734
|
+
elementRef: ElementRef<any>;
|
|
735
|
+
viewContainerRef: ViewContainerRef;
|
|
736
|
+
protected originalText: _angular_core.WritableSignal<string>;
|
|
737
|
+
protected iconComponentRef: _angular_core.WritableSignal<ComponentRef<EditSolidSvgComponent> | null>;
|
|
738
|
+
ngOnInit(): void;
|
|
739
|
+
private updateContent;
|
|
740
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditSvgIconButtonDirective, never>;
|
|
741
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<EditSvgIconButtonDirective, "[editSvgIconButton]", never, {}, {}, never, never, true, never>;
|
|
742
|
+
}
|
|
743
|
+
|
|
663
744
|
declare class ExcelExportButtonComponent {
|
|
664
745
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExcelExportButtonComponent, never>;
|
|
665
746
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExcelExportButtonComponent, "excel-export-button", never, {}, {}, never, never, true, never>;
|
|
666
747
|
}
|
|
667
748
|
|
|
749
|
+
declare class ExcelExportButtonDirective extends BaseButtonDirective {
|
|
750
|
+
constructor();
|
|
751
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExcelExportButtonDirective, never>;
|
|
752
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ExcelExportButtonDirective, "[excelExportButton]", never, {}, {}, never, never, true, never>;
|
|
753
|
+
}
|
|
754
|
+
|
|
668
755
|
declare class ManageButtonComponent extends BaseButtonComponent {
|
|
669
756
|
label: _angular_core.InputSignal<string>;
|
|
670
757
|
icon: _angular_core.InputSignal<string>;
|
|
@@ -674,11 +761,24 @@ declare class ManageButtonComponent extends BaseButtonComponent {
|
|
|
674
761
|
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
762
|
}
|
|
676
763
|
|
|
764
|
+
declare class ManageButtonDirective extends BaseButtonDirective {
|
|
765
|
+
icon: _angular_core.InputSignal<string>;
|
|
766
|
+
constructor();
|
|
767
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ManageButtonDirective, never>;
|
|
768
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ManageButtonDirective, "[manageButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
769
|
+
}
|
|
770
|
+
|
|
677
771
|
declare class PdfExportButtonComponent {
|
|
678
772
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdfExportButtonComponent, never>;
|
|
679
773
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PdfExportButtonComponent, "pdf-export-button", never, {}, {}, never, never, true, never>;
|
|
680
774
|
}
|
|
681
775
|
|
|
776
|
+
declare class PdfExportButtonDirective extends BaseButtonDirective {
|
|
777
|
+
constructor();
|
|
778
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdfExportButtonDirective, never>;
|
|
779
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PdfExportButtonDirective, "[pdfExportButton]", never, {}, {}, never, never, true, never>;
|
|
780
|
+
}
|
|
781
|
+
|
|
682
782
|
declare class PrimaryButtonComponent extends BaseButtonComponent {
|
|
683
783
|
loadingLabel: _angular_core.InputSignal<string>;
|
|
684
784
|
label: _angular_core.InputSignal<string>;
|
|
@@ -690,6 +790,14 @@ declare class PrimaryButtonComponent extends BaseButtonComponent {
|
|
|
690
790
|
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
791
|
}
|
|
692
792
|
|
|
793
|
+
declare class PrimaryButtonDirective extends BaseButtonDirective {
|
|
794
|
+
icon: _angular_core.InputSignal<string>;
|
|
795
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
796
|
+
constructor();
|
|
797
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PrimaryButtonDirective, never>;
|
|
798
|
+
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>;
|
|
799
|
+
}
|
|
800
|
+
|
|
693
801
|
declare class SavePrimaryButtonComponent extends BaseButtonComponent {
|
|
694
802
|
loadingLabel: _angular_core.InputSignal<string>;
|
|
695
803
|
label: _angular_core.InputSignal<string>;
|
|
@@ -700,6 +808,14 @@ declare class SavePrimaryButtonComponent extends BaseButtonComponent {
|
|
|
700
808
|
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
809
|
}
|
|
702
810
|
|
|
811
|
+
declare class SavePrimaryButtonDirective extends BaseButtonDirective {
|
|
812
|
+
icon: _angular_core.InputSignal<string>;
|
|
813
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
814
|
+
constructor();
|
|
815
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SavePrimaryButtonDirective, never>;
|
|
816
|
+
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>;
|
|
817
|
+
}
|
|
818
|
+
|
|
703
819
|
declare class SearchButtonComponent extends BaseButtonComponent {
|
|
704
820
|
loadingLabel: _angular_core.InputSignal<string>;
|
|
705
821
|
label: _angular_core.InputSignal<string>;
|
|
@@ -720,6 +836,14 @@ declare class SuccessButtonComponent extends BaseButtonComponent {
|
|
|
720
836
|
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
837
|
}
|
|
722
838
|
|
|
839
|
+
declare class SuccessButtonDirective extends BaseButtonDirective {
|
|
840
|
+
icon: _angular_core.InputSignal<string>;
|
|
841
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
842
|
+
constructor();
|
|
843
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SuccessButtonDirective, never>;
|
|
844
|
+
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>;
|
|
845
|
+
}
|
|
846
|
+
|
|
723
847
|
declare class ViewButtonComponent extends BaseButtonComponent {
|
|
724
848
|
label: _angular_core.InputSignal<string>;
|
|
725
849
|
icon: _angular_core.InputSignal<string>;
|
|
@@ -728,6 +852,14 @@ declare class ViewButtonComponent extends BaseButtonComponent {
|
|
|
728
852
|
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
853
|
}
|
|
730
854
|
|
|
855
|
+
declare class ViewButtonDirective extends BaseButtonDirective {
|
|
856
|
+
icon: _angular_core.InputSignal<string>;
|
|
857
|
+
loadingLabel: _angular_core.InputSignal<string>;
|
|
858
|
+
constructor();
|
|
859
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewButtonDirective, never>;
|
|
860
|
+
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>;
|
|
861
|
+
}
|
|
862
|
+
|
|
731
863
|
declare class ViewPrimaryButtonComponent extends BaseButtonComponent {
|
|
732
864
|
label: _angular_core.InputSignal<string>;
|
|
733
865
|
icon: _angular_core.InputSignal<string>;
|
|
@@ -737,6 +869,13 @@ declare class ViewPrimaryButtonComponent extends BaseButtonComponent {
|
|
|
737
869
|
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
870
|
}
|
|
739
871
|
|
|
872
|
+
declare class ViewPrimaryButtonDirective extends BaseButtonDirective {
|
|
873
|
+
icon: _angular_core.InputSignal<string>;
|
|
874
|
+
constructor();
|
|
875
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewPrimaryButtonDirective, never>;
|
|
876
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ViewPrimaryButtonDirective, "[viewPrimaryButton]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
877
|
+
}
|
|
878
|
+
|
|
740
879
|
declare class ConfirmDialogComponent {
|
|
741
880
|
data: ConfirmDialogData;
|
|
742
881
|
dialogRef: MatDialogRef<ConfirmDialogComponent>;
|
|
@@ -756,12 +895,6 @@ interface ConfirmDialogData {
|
|
|
756
895
|
message: string;
|
|
757
896
|
}
|
|
758
897
|
|
|
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
898
|
declare class MatSnackBarService {
|
|
766
899
|
snackBar: MatSnackBar;
|
|
767
900
|
/**
|
|
@@ -958,5 +1091,5 @@ declare const markSuccess: (progressState: WritableSignal<ProgressState>, messag
|
|
|
958
1091
|
*/
|
|
959
1092
|
declare const markError: (progressState: WritableSignal<ProgressState>, message?: string) => void;
|
|
960
1093
|
|
|
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 };
|
|
1094
|
+
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
1095
|
export type { AlertType, ConfirmDialogData, MatSnackBarOptions, ProgressState };
|