@bitblit/ngx-acute-common 5.0.516-alpha → 5.0.518-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.
- package/lib/acute-common.module.js +94 -0
- package/lib/acute-common.module.js.map +1 -0
- package/lib/build/ngx-acute-common-info.js +15 -0
- package/lib/build/ngx-acute-common-info.js.map +1 -0
- package/lib/components/dialogs/alert/alert.component.js +46 -0
- package/lib/components/dialogs/alert/alert.component.js.map +1 -0
- package/lib/components/dialogs/block-ui/block-ui.component.js +78 -0
- package/lib/components/dialogs/block-ui/block-ui.component.js.map +1 -0
- package/lib/esm2022/ngx-acute-common.mjs +50 -17
- package/lib/esm2022/ngx-acute-common.mjs.map +1 -1
- package/lib/{esm2022/index.d.ts → index.js} +3 -1
- package/lib/index.js.map +1 -0
- package/lib/model/google-analytics-config.js +2 -0
- package/lib/model/google-analytics-config.js.map +1 -0
- package/lib/pipes/capitalize.pipe.js +16 -0
- package/lib/pipes/capitalize.pipe.js.map +1 -0
- package/lib/pipes/dollar-formatted.pipe.js +18 -0
- package/lib/pipes/dollar-formatted.pipe.js.map +1 -0
- package/lib/pipes/map-values.pipe.js +23 -0
- package/lib/pipes/map-values.pipe.js.map +1 -0
- package/lib/pipes/number-with-commas.pipe.js +14 -0
- package/lib/pipes/number-with-commas.pipe.js.map +1 -0
- package/lib/pipes/order-by.pipe.js +59 -0
- package/lib/pipes/order-by.pipe.js.map +1 -0
- package/lib/pipes/percent-formatted.pipe.js +15 -0
- package/lib/pipes/percent-formatted.pipe.js.map +1 -0
- package/lib/pipes/plural.pipe.js +19 -0
- package/lib/pipes/plural.pipe.js.map +1 -0
- package/lib/pipes/round.pipe.js +14 -0
- package/lib/pipes/round.pipe.js.map +1 -0
- package/lib/pipes/time-ago-formatted.pipe.js +16 -0
- package/lib/pipes/time-ago-formatted.pipe.js.map +1 -0
- package/lib/pipes/timing.pipe.js +22 -0
- package/lib/pipes/timing.pipe.js.map +1 -0
- package/lib/services/google-analytics.service.js +61 -0
- package/lib/services/google-analytics.service.js.map +1 -0
- package/lib/services/graphql-query.service.js +87 -0
- package/lib/services/graphql-query.service.js.map +1 -0
- package/lib/services/local-storage.service.js +51 -0
- package/lib/services/local-storage.service.js.map +1 -0
- package/lib/services/window-ref.service.js +22 -0
- package/lib/services/window-ref.service.js.map +1 -0
- package/package.json +7 -3
- package/lib/esm2022/build/ngx-acute-common-info.d.ts +0 -5
- package/lib/esm2022/components/dialogs/alert/alert.component.d.ts +0 -9
- package/lib/esm2022/components/dialogs/block-ui/block-ui.component.d.ts +0 -9
- package/lib/esm2022/model/google-analytics-config.d.ts +0 -3
- package/lib/esm2022/pipes/capitalize.pipe.d.ts +0 -4
- package/lib/esm2022/pipes/dollar-formatted.pipe.d.ts +0 -4
- package/lib/esm2022/pipes/map-values.pipe.d.ts +0 -4
- package/lib/esm2022/pipes/number-with-commas.pipe.d.ts +0 -4
- package/lib/esm2022/pipes/order-by.pipe.d.ts +0 -5
- package/lib/esm2022/pipes/percent-formatted.pipe.d.ts +0 -4
- package/lib/esm2022/pipes/plural.pipe.d.ts +0 -4
- package/lib/esm2022/pipes/round.pipe.d.ts +0 -4
- package/lib/esm2022/pipes/time-ago-formatted.pipe.d.ts +0 -4
- package/lib/esm2022/pipes/timing.pipe.d.ts +0 -5
- package/lib/esm2022/services/google-analytics.service.d.ts +0 -9
- package/lib/esm2022/services/graphql-query.service.d.ts +0 -14
- package/lib/esm2022/services/local-storage.service.d.ts +0 -8
- package/lib/esm2022/services/window-ref.service.d.ts +0 -3
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Router } from '@angular/router';
|
|
2
|
-
export declare class GoogleAnalyticsService {
|
|
3
|
-
private router;
|
|
4
|
-
private static readonly IS_PROD;
|
|
5
|
-
constructor(router: Router);
|
|
6
|
-
initialize(): void;
|
|
7
|
-
private onRouteChange;
|
|
8
|
-
event(action: string, eventCategory?: string, eventLabel?: string, value?: string): void;
|
|
9
|
-
}
|
|
@@ -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
|
-
}
|