@centreon/ui-context 24.7.0 → 24.7.1
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 +2 -2
- package/src/index.ts +0 -3
- package/src/types.ts +0 -13
- package/src/platformVersionsAtom.ts +0 -5
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@centreon/ui-context",
|
|
3
|
-
"version": "24.7.
|
|
3
|
+
"version": "24.7.1",
|
|
4
4
|
"description": "Centreon UI shared context",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"keywords": [],
|
|
7
7
|
"author": "centreon@centreon.com",
|
|
8
|
-
"license": "
|
|
8
|
+
"license": "MIT",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"eslint": "eslint ./src --ext .ts --max-warnings 0",
|
|
11
11
|
"eslint:fix": "pnpm eslint --fix"
|
package/src/index.ts
CHANGED
|
@@ -11,9 +11,6 @@ export {
|
|
|
11
11
|
platformFeaturesAtom,
|
|
12
12
|
featureFlagsDerivedAtom
|
|
13
13
|
} from './platformFeauresAtom';
|
|
14
|
-
|
|
15
|
-
export { platformVersionsAtom } from './platformVersionsAtom';
|
|
16
|
-
|
|
17
14
|
export { isOnPublicPageAtom } from './isOnPublicPageAtom';
|
|
18
15
|
export { additionalResourcesAtom } from './additionalResources';
|
|
19
16
|
export {
|
package/src/types.ts
CHANGED
|
@@ -129,16 +129,3 @@ export interface FederatedModule {
|
|
|
129
129
|
remoteEntry: string;
|
|
130
130
|
remoteUrl?: string;
|
|
131
131
|
}
|
|
132
|
-
|
|
133
|
-
interface Version {
|
|
134
|
-
fix: string;
|
|
135
|
-
major: string;
|
|
136
|
-
minor: string;
|
|
137
|
-
version: string;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
export interface PlatformVersions {
|
|
141
|
-
modules: Record<string, Version>;
|
|
142
|
-
web: Version;
|
|
143
|
-
widgets: Record<string, Version | null>;
|
|
144
|
-
}
|