@axis-backstage/plugin-statuspage 0.3.2 → 0.3.4
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/index.d.ts +1 -1
- package/dist/index.esm.js +2 -2
- package/package.json +12 -10
package/dist/index.d.ts
CHANGED
|
@@ -100,4 +100,4 @@ declare class StatuspageClient implements StatuspageApi {
|
|
|
100
100
|
getComponentGroups(name: string): Promise<ComponentGroup[]>;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
export { StatuspageApi, StatuspageClient, StatuspageEntityCard, StatuspagePage, StatuspageProps, isStatuspageAvailable, statuspageApiRef, statuspagePlugin };
|
|
103
|
+
export { type StatuspageApi, StatuspageClient, StatuspageEntityCard, StatuspagePage, type StatuspageProps, isStatuspageAvailable, statuspageApiRef, statuspagePlugin };
|
package/dist/index.esm.js
CHANGED
|
@@ -224,8 +224,8 @@ const StatuspageComponent = ({ name }) => {
|
|
|
224
224
|
|
|
225
225
|
var StatuspageComponent$1 = /*#__PURE__*/Object.freeze({
|
|
226
226
|
__proto__: null,
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
StatuspageComponent: StatuspageComponent,
|
|
228
|
+
statusColorMap: statusColorMap
|
|
229
229
|
});
|
|
230
230
|
|
|
231
231
|
const formatStatusString = (status) => status.split("_").map((word) => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()).join(" ");
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axis-backstage/plugin-statuspage",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public",
|
|
9
9
|
"main": "dist/index.esm.js",
|
|
10
|
-
"types": "dist/index.d.ts"
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"directory": "_release/package"
|
|
11
12
|
},
|
|
12
13
|
"backstage": {
|
|
13
14
|
"role": "frontend-plugin"
|
|
@@ -23,11 +24,11 @@
|
|
|
23
24
|
"postpack": "backstage-cli package postpack"
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
|
-
"@axis-backstage/plugin-statuspage-common": "
|
|
27
|
-
"@backstage/catalog-model": "^1.4.
|
|
28
|
-
"@backstage/core-components": "^0.
|
|
29
|
-
"@backstage/core-plugin-api": "^1.
|
|
30
|
-
"@backstage/plugin-catalog-react": "^1.
|
|
27
|
+
"@axis-backstage/plugin-statuspage-common": "^0.2.1",
|
|
28
|
+
"@backstage/catalog-model": "^1.4.5",
|
|
29
|
+
"@backstage/core-components": "^0.14.4",
|
|
30
|
+
"@backstage/core-plugin-api": "^1.9.2",
|
|
31
|
+
"@backstage/plugin-catalog-react": "^1.11.3",
|
|
31
32
|
"@mui/icons-material": "^5.15.7",
|
|
32
33
|
"@mui/material": "^5.15.7",
|
|
33
34
|
"react-use": "^17.2.4"
|
|
@@ -36,12 +37,13 @@
|
|
|
36
37
|
"react": "^17.0.0 || ^18.0.0"
|
|
37
38
|
},
|
|
38
39
|
"devDependencies": {
|
|
39
|
-
"@backstage/cli": "^0.
|
|
40
|
-
"@backstage/dev-utils": "^1.0.
|
|
40
|
+
"@backstage/cli": "^0.26.3",
|
|
41
|
+
"@backstage/dev-utils": "^1.0.31",
|
|
41
42
|
"@testing-library/jest-dom": "^5.10.1"
|
|
42
43
|
},
|
|
43
44
|
"files": [
|
|
44
45
|
"dist"
|
|
45
46
|
],
|
|
46
|
-
"module": "./dist/index.esm.js"
|
|
47
|
+
"module": "./dist/index.esm.js",
|
|
48
|
+
"directory": "_release/package"
|
|
47
49
|
}
|