@centreon/ui-context 26.3.1 → 26.3.3
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/package.json +1 -1
- package/src/index.ts +19 -17
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -3,16 +3,17 @@ export { default as aclAtom } from "./aclAtom";
|
|
|
3
3
|
export { additionalResourcesAtom } from "./additionalResources";
|
|
4
4
|
export { browserLocaleAtom } from "./browserLocaleAtom";
|
|
5
5
|
export { default as cloudServicesAtom } from "./cloudServicesAtom";
|
|
6
|
+
export { defaultAcl } from "./defaults";
|
|
6
7
|
export { default as downtimeAtom } from "./downtimeAtom";
|
|
7
8
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
federatedModulesAtom,
|
|
10
|
+
federatedWidgetsAtom,
|
|
10
11
|
} from "./federatedModulesAndWidgetsAtoms";
|
|
11
12
|
export { isOnPublicPageAtom } from "./isOnPublicPageAtom";
|
|
12
13
|
export { isResourceStatusFullSearchEnabledAtom } from "./isResourceStatusFullSearchEnabledAtom";
|
|
13
14
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
featureFlagsDerivedAtom,
|
|
16
|
+
platformFeaturesAtom,
|
|
16
17
|
} from "./platformFeauresAtom";
|
|
17
18
|
export { default as platformNameAtom } from "./platformNameAtom";
|
|
18
19
|
export { platformVersionsAtom } from "./platformVersionsAtom";
|
|
@@ -20,19 +21,20 @@ export { default as refreshIntervalAtom } from "./refreshIntervalAtom";
|
|
|
20
21
|
export { default as resourceStorageOptimizationModeAtom } from "./resourceStorageOptimizationMode";
|
|
21
22
|
export { default as statisticsRefreshIntervalAtom } from "./statisticsRefreshIntervalAtom";
|
|
22
23
|
export type {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
24
|
+
Acknowledgement,
|
|
25
|
+
Acl,
|
|
26
|
+
ActionAcl,
|
|
27
|
+
Actions,
|
|
28
|
+
AdditionalResource,
|
|
29
|
+
CloudServices,
|
|
30
|
+
DashboardRolesAndPermissions,
|
|
31
|
+
Downtime,
|
|
32
|
+
FeatureFlags,
|
|
33
|
+
PlatformFeatures,
|
|
34
|
+
PlatformVersions,
|
|
35
|
+
User,
|
|
36
|
+
UserContext,
|
|
37
|
+
UserPermissions,
|
|
36
38
|
} from "./types";
|
|
37
39
|
export { DashboardGlobalRole, ListingVariant, ThemeMode } from "./types";
|
|
38
40
|
export { default as userAtom } from "./userAtom";
|