@mparticle/aquarium 1.40.0-poc-unified-nav.6 → 1.40.0-poc-unified-nav.8
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/dist/aquarium.js +2882 -2845
- package/dist/aquarium.umd.cjs +34 -34
- package/dist/src/components/index.d.ts +1 -3
- package/dist/src/shared/UserPreferences.d.ts +1 -1
- package/dist/src/shared/services/InitializationService.d.ts +4 -0
- package/dist/src/shared/{NavigationItemsProvider.d.ts → services/NavigationItemsService.d.ts} +3 -3
- package/dist/src/shared/services/RoutesAuthorizationsService.d.ts +1 -1
- package/package.json +1 -1
- package/dist/src/shared/services/InitialDataService.d.ts +0 -3
|
@@ -86,6 +86,4 @@ export { useNewExperienceReminder, type INewExperienceReminderOptions, type NewE
|
|
|
86
86
|
export { ChartConfig, ChartAxisStyle } from '../constants/ChartConfig';
|
|
87
87
|
export { ChartColors } from '../constants/ChartColors';
|
|
88
88
|
export { RoutesAuthorizationsService } from '../shared/services/RoutesAuthorizationsService';
|
|
89
|
-
export {
|
|
90
|
-
export { InitialDataService } from '../shared/services/InitialDataService';
|
|
91
|
-
export { NavigationItemsProvider } from '../shared/NavigationItemsProvider';
|
|
89
|
+
export { InitializationService } from '../shared/services/InitializationService';
|
package/dist/src/shared/{NavigationItemsProvider.d.ts → services/NavigationItemsService.d.ts}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IGlobalNavigationItem } from '
|
|
1
|
+
import { IGlobalNavigationItem } from '../../../../../../../../src/components';
|
|
2
2
|
export declare enum NavigationItemId {
|
|
3
3
|
Overview = "overview",
|
|
4
4
|
Oversight = "oversight",
|
|
@@ -46,8 +46,8 @@ export declare enum NavigationItemId {
|
|
|
46
46
|
Data = "data",
|
|
47
47
|
Favorites = "favorites"
|
|
48
48
|
}
|
|
49
|
-
export declare class
|
|
49
|
+
export declare class NavigationItemsService {
|
|
50
50
|
static navigationItems: IGlobalNavigationItem[];
|
|
51
|
-
static
|
|
51
|
+
static initialize(): void;
|
|
52
52
|
static findItemById(id: NavigationItemId): IGlobalNavigationItem | undefined;
|
|
53
53
|
}
|
|
@@ -6,7 +6,7 @@ export type RouteAuthorization = {
|
|
|
6
6
|
};
|
|
7
7
|
export declare class RoutesAuthorizationsService {
|
|
8
8
|
private static routesAuthorizations;
|
|
9
|
-
static
|
|
9
|
+
static initialize(): void;
|
|
10
10
|
static isRouteAuthorized(route: string): boolean;
|
|
11
11
|
private static routeMatches;
|
|
12
12
|
}
|
package/package.json
CHANGED