@recursyve/nice-ui-kit.v2 13.2.0-beta.102 → 13.2.0-beta.104

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.
@@ -0,0 +1 @@
1
+ export * from "./public-api";
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export interface NiceLoadingToastData {
3
+ message: string;
4
+ }
5
+ export declare class NiceLoadingToastComponent {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NiceLoadingToastComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<NiceLoadingToastComponent, "nice-loading-toast", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,17 @@
1
+ import { Overlay, ScrollStrategyOptions } from "@angular/cdk/overlay";
2
+ import { ElementRef } from "@angular/core";
3
+ import { NiceLoadingToastService } from "./loading-toast.service";
4
+ import * as i0 from "@angular/core";
5
+ export declare class NiceLoadingToastDirective {
6
+ private elRef;
7
+ private overlay;
8
+ private sso;
9
+ private loadingService;
10
+ private overlayRef;
11
+ private loadingRef;
12
+ private _loading;
13
+ set loading(loading: boolean | null);
14
+ constructor(elRef: ElementRef, overlay: Overlay, sso: ScrollStrategyOptions, loadingService: NiceLoadingToastService);
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<NiceLoadingToastDirective, never>;
16
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceLoadingToastDirective, "[niceLoadingToast]", never, { "loading": "niceLoadingToast"; }, {}, never>;
17
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./loading-toast.component";
3
+ import * as i2 from "./loading-toast.directive";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/material/snack-bar";
6
+ import * as i5 from "@angular/material/progress-spinner";
7
+ export declare class NiceLoadingToastModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NiceLoadingToastModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NiceLoadingToastModule, [typeof i1.NiceLoadingToastComponent, typeof i2.NiceLoadingToastDirective], [typeof i3.CommonModule, typeof i4.MatSnackBarModule, typeof i5.MatProgressSpinnerModule], [typeof i2.NiceLoadingToastDirective]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<NiceLoadingToastModule>;
11
+ }
@@ -0,0 +1,12 @@
1
+ import { MatSnackBar, MatSnackBarRef } from "@angular/material/snack-bar";
2
+ import { TranslateService } from "@ngx-translate/core";
3
+ import * as i0 from "@angular/core";
4
+ export declare class NiceLoadingToastService {
5
+ private snackbar;
6
+ private translateService;
7
+ constructor(snackbar: MatSnackBar, translateService: TranslateService);
8
+ showLoadingToast(messageKey: string, params?: object): MatSnackBarRef<any>;
9
+ private getTranslations;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<NiceLoadingToastService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<NiceLoadingToastService>;
12
+ }
@@ -0,0 +1,4 @@
1
+ export * from "./loading-toast.component";
2
+ export * from "./loading-toast.directive";
3
+ export * from "./loading-toast.module";
4
+ export * from "./loading-toast.service";
@@ -11,6 +11,7 @@ export * from "./horizontal-stepper";
11
11
  export * from "./image-cropper";
12
12
  export * from "./layout";
13
13
  export * from "./loading-spinner";
14
+ export * from "./loading-toast";
14
15
  export * from "./lottie";
15
16
  export * from "./navigation";
16
17
  export * from "./search-bar";
@@ -23,6 +23,7 @@ export declare class NiceChipListDirective implements ControlValueAccessor, OnIn
23
23
  registerOnTouched(fn: any): void;
24
24
  private setupAsyncTypeahead;
25
25
  private addValue;
26
+ private updateTypeaheadSearchOptions;
26
27
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceChipListDirective, [{ optional: true; }, { optional: true; }, null]>;
27
28
  static ɵdir: i0.ɵɵDirectiveDeclaration<NiceChipListDirective, "input[niceChipList], nice-async-typeahead[niceChipList]", never, { "withItemList": "withItemList"; "reloadOnSelected": "reloadOnSelected"; }, {}, never>;
28
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recursyve/nice-ui-kit.v2",
3
- "version": "13.2.0-beta.102",
3
+ "version": "13.2.0-beta.104",
4
4
  "exports": {
5
5
  ".": {
6
6
  "sass": "./_index.scss",