@axis-backstage/plugin-statuspage 0.3.3 → 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 +13 -11
- package/CHANGELOG.md +0 -42
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": "^0.2.
|
|
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
|
-
|
|
47
|
+
"module": "./dist/index.esm.js",
|
|
48
|
+
"directory": "_release/package"
|
|
49
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
# @axis-backstage/plugin-statuspage
|
|
2
|
-
|
|
3
|
-
## 0.3.3
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- ae965c0: Fix broken workspace dependencies
|
|
8
|
-
|
|
9
|
-
## 0.3.2
|
|
10
|
-
|
|
11
|
-
### Patch Changes
|
|
12
|
-
|
|
13
|
-
- 60b6270: Fix broken release
|
|
14
|
-
|
|
15
|
-
## 0.3.1
|
|
16
|
-
|
|
17
|
-
### Patch Changes
|
|
18
|
-
|
|
19
|
-
- 73b296f: Better README and small UI-fixes
|
|
20
|
-
|
|
21
|
-
## 0.3.0
|
|
22
|
-
|
|
23
|
-
### Minor Changes
|
|
24
|
-
|
|
25
|
-
- 32683b9: StatuspageEntityCard was route mounted incorrectly, which broke the component in certain cases.
|
|
26
|
-
|
|
27
|
-
## 0.2.1
|
|
28
|
-
|
|
29
|
-
### Patch Changes
|
|
30
|
-
|
|
31
|
-
- 050e48d: Replace all Mui Grid v1 with v2
|
|
32
|
-
|
|
33
|
-
## 0.2.0
|
|
34
|
-
|
|
35
|
-
### Minor Changes
|
|
36
|
-
|
|
37
|
-
- b445aaa: Initial Release of the Statuspage Plugin
|
|
38
|
-
|
|
39
|
-
### Patch Changes
|
|
40
|
-
|
|
41
|
-
- Updated dependencies [b445aaa]
|
|
42
|
-
- @axis-backstage/plugin-statuspage-common@0.2.0
|