@festo-ui/angular 8.3.0-dev.665 → 8.3.0-dev.667
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 +2 -3
- package/fesm2022/festo-ui-angular.mjs +43 -62
- package/fesm2022/festo-ui-angular.mjs.map +1 -1
- package/index.d.ts +8 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -888,23 +888,25 @@ declare class FngSnackbarContainerDirective implements OnDestroy {
|
|
|
888
888
|
ngOnDestroy(): void;
|
|
889
889
|
private push;
|
|
890
890
|
private remove;
|
|
891
|
+
private updateStackIndices;
|
|
891
892
|
static ɵfac: i0.ɵɵFactoryDeclaration<FngSnackbarContainerDirective, never>;
|
|
892
893
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FngSnackbarContainerDirective, "[fngSnackbarContainer]", never, { "fngSnackbarContainer": { "alias": "fngSnackbarContainer"; "required": false; }; }, {}, never, never, true, never>;
|
|
893
894
|
}
|
|
894
895
|
|
|
895
896
|
declare class FngSnackbarComponent implements AfterViewInit, OnDestroy {
|
|
896
|
-
data: FngSnackbarData |
|
|
897
|
-
close:
|
|
898
|
-
action:
|
|
899
|
-
|
|
900
|
-
|
|
897
|
+
readonly data: i0.WritableSignal<FngSnackbarData | null | undefined>;
|
|
898
|
+
readonly close: i0.OutputEmitterRef<void>;
|
|
899
|
+
readonly action: i0.OutputEmitterRef<void>;
|
|
900
|
+
readonly isShown: i0.WritableSignal<boolean>;
|
|
901
|
+
readonly stackIndex: i0.WritableSignal<number>;
|
|
901
902
|
private timeout;
|
|
903
|
+
get transform(): string;
|
|
902
904
|
ngAfterViewInit(): void;
|
|
903
905
|
ngOnDestroy(): void;
|
|
904
906
|
onAction(): void;
|
|
905
907
|
onClose(): void;
|
|
906
908
|
static ɵfac: i0.ɵɵFactoryDeclaration<FngSnackbarComponent, never>;
|
|
907
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FngSnackbarComponent, "fng-snackbar", never, {
|
|
909
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngSnackbarComponent, "fng-snackbar", never, {}, { "close": "close"; "action": "action"; }, never, never, true, never>;
|
|
908
910
|
}
|
|
909
911
|
|
|
910
912
|
declare class FestoAngularSnackbarModule {
|
package/package.json
CHANGED