@bitblit/ngx-acute-common 5.0.519-alpha → 5.0.520-alpha

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.
Files changed (40) hide show
  1. package/lib/components/dialogs/alert/alert.component.d.ts +0 -3
  2. package/lib/components/dialogs/block-ui/block-ui.component.d.ts +0 -3
  3. package/lib/index.js +509 -19
  4. package/lib/index.js.map +1 -1
  5. package/lib/pipes/capitalize.pipe.d.ts +0 -3
  6. package/lib/pipes/dollar-formatted.pipe.d.ts +0 -3
  7. package/lib/pipes/map-values.pipe.d.ts +0 -3
  8. package/lib/pipes/number-with-commas.pipe.d.ts +0 -3
  9. package/lib/pipes/order-by.pipe.d.ts +0 -3
  10. package/lib/pipes/percent-formatted.pipe.d.ts +0 -3
  11. package/lib/pipes/plural.pipe.d.ts +0 -3
  12. package/lib/pipes/round.pipe.d.ts +0 -3
  13. package/lib/pipes/time-ago-formatted.pipe.d.ts +0 -3
  14. package/lib/pipes/timing.pipe.d.ts +0 -3
  15. package/lib/services/google-analytics.service.d.ts +0 -3
  16. package/lib/services/graphql-query.service.d.ts +0 -3
  17. package/lib/services/local-storage.service.d.ts +0 -3
  18. package/lib/services/window-ref.service.d.ts +0 -3
  19. package/package.json +8 -6
  20. package/lib/esm2022/build/ngx-acute-common-info.d.ts +0 -5
  21. package/lib/esm2022/components/dialogs/alert/alert.component.d.ts +0 -9
  22. package/lib/esm2022/components/dialogs/block-ui/block-ui.component.d.ts +0 -9
  23. package/lib/esm2022/index.d.ts +0 -18
  24. package/lib/esm2022/model/google-analytics-config.d.ts +0 -3
  25. package/lib/esm2022/ngx-acute-common.mjs +0 -509
  26. package/lib/esm2022/ngx-acute-common.mjs.map +0 -1
  27. package/lib/esm2022/pipes/capitalize.pipe.d.ts +0 -4
  28. package/lib/esm2022/pipes/dollar-formatted.pipe.d.ts +0 -4
  29. package/lib/esm2022/pipes/map-values.pipe.d.ts +0 -4
  30. package/lib/esm2022/pipes/number-with-commas.pipe.d.ts +0 -4
  31. package/lib/esm2022/pipes/order-by.pipe.d.ts +0 -5
  32. package/lib/esm2022/pipes/percent-formatted.pipe.d.ts +0 -4
  33. package/lib/esm2022/pipes/plural.pipe.d.ts +0 -4
  34. package/lib/esm2022/pipes/round.pipe.d.ts +0 -4
  35. package/lib/esm2022/pipes/time-ago-formatted.pipe.d.ts +0 -4
  36. package/lib/esm2022/pipes/timing.pipe.d.ts +0 -5
  37. package/lib/esm2022/services/google-analytics.service.d.ts +0 -9
  38. package/lib/esm2022/services/graphql-query.service.d.ts +0 -14
  39. package/lib/esm2022/services/local-storage.service.d.ts +0 -8
  40. package/lib/esm2022/services/window-ref.service.d.ts +0 -3
@@ -1,14 +0,0 @@
1
- import { DialogService } from 'primeng/dynamicdialog';
2
- import { MessageService } from 'primeng/api';
3
- import { GraphqlRatchet } from '@bitblit/ratchet-graphql/graphql/graphql-ratchet';
4
- import { AuthorizationStyle } from "@bitblit/ratchet-graphql/graphql/authorization-style";
5
- export declare class GraphqlQueryService {
6
- private graphqlRatchet;
7
- private dialogService;
8
- private messageService;
9
- constructor(graphqlRatchet: GraphqlRatchet, dialogService: DialogService, messageService: MessageService);
10
- executeQuery<T>(queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
11
- executeQueryWithBlock<T>(blockMessage: string, queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
12
- executeMutate<T>(queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
13
- executeMutateWithBlock<T>(blockMessage: string, queryName: string, variables: any, authStyle?: AuthorizationStyle): Promise<T | null>;
14
- }
@@ -1,8 +0,0 @@
1
- export declare function storageFinder(): Storage | null;
2
- export declare class LocalStorageService<T> {
3
- private static readonly APP_NAME;
4
- get storageReady(): boolean;
5
- clear(): void;
6
- update(value: T): T;
7
- fetch(): T;
8
- }
@@ -1,3 +0,0 @@
1
- export declare class WindowRefService {
2
- nativeWindow(): Window;
3
- }