@backstage-community/plugin-announcements 0.5.5 → 0.5.6
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/CHANGELOG.md +9 -0
- package/dist/index.d.ts +2 -2
- package/package.json +23 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @backstage-community/plugin-announcements
|
|
2
2
|
|
|
3
|
+
## 0.5.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1f34951: Upgraded to Backstage release 1.37.
|
|
8
|
+
- Updated dependencies [1f34951]
|
|
9
|
+
- @backstage-community/plugin-announcements-common@0.3.1
|
|
10
|
+
- @backstage-community/plugin-announcements-react@0.4.2
|
|
11
|
+
|
|
3
12
|
## 0.5.5
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import * as
|
|
2
|
+
import * as _backstage_core_components__ from '@backstage/core-components/*';
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
import { IndexableDocument, ResultHighlight } from '@backstage/plugin-search-common';
|
|
5
5
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
@@ -95,7 +95,7 @@ declare const AnnouncementsCard: ({ title, max, category, active, variant, sortB
|
|
|
95
95
|
max?: number | undefined;
|
|
96
96
|
category?: string | undefined;
|
|
97
97
|
active?: boolean | undefined;
|
|
98
|
-
variant?:
|
|
98
|
+
variant?: _backstage_core_components__.InfoCardVariants | undefined;
|
|
99
99
|
sortBy?: "created_at" | "start_at" | undefined;
|
|
100
100
|
order?: "desc" | "asc" | undefined;
|
|
101
101
|
}) => react.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-announcements",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
4
4
|
"main": "./dist/index.esm.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
"*": {
|
|
12
|
-
"
|
|
12
|
+
"*": [
|
|
13
13
|
"dist/index.d.ts"
|
|
14
14
|
],
|
|
15
15
|
"alpha": [
|
|
@@ -45,7 +45,10 @@
|
|
|
45
45
|
"@backstage-community/plugin-announcements-common",
|
|
46
46
|
"@backstage-community/plugin-announcements-node",
|
|
47
47
|
"@backstage-community/plugin-announcements-react"
|
|
48
|
-
]
|
|
48
|
+
],
|
|
49
|
+
"features": {
|
|
50
|
+
"./alpha": "@backstage/FrontendPlugin"
|
|
51
|
+
}
|
|
49
52
|
},
|
|
50
53
|
"sideEffects": false,
|
|
51
54
|
"scripts": {
|
|
@@ -58,21 +61,21 @@
|
|
|
58
61
|
"postpack": "backstage-cli package postpack"
|
|
59
62
|
},
|
|
60
63
|
"dependencies": {
|
|
61
|
-
"@backstage-community/plugin-announcements-common": "^0.3.
|
|
62
|
-
"@backstage-community/plugin-announcements-react": "^0.4.
|
|
64
|
+
"@backstage-community/plugin-announcements-common": "^0.3.1",
|
|
65
|
+
"@backstage-community/plugin-announcements-react": "^0.4.2",
|
|
63
66
|
"@backstage/catalog-model": "^1.7.3",
|
|
64
|
-
"@backstage/core-app-api": "^1.
|
|
65
|
-
"@backstage/core-compat-api": "^0.
|
|
66
|
-
"@backstage/core-components": "^0.
|
|
67
|
-
"@backstage/core-plugin-api": "^1.10.
|
|
67
|
+
"@backstage/core-app-api": "^1.16.0",
|
|
68
|
+
"@backstage/core-compat-api": "^0.4.0",
|
|
69
|
+
"@backstage/core-components": "^0.17.0",
|
|
70
|
+
"@backstage/core-plugin-api": "^1.10.5",
|
|
68
71
|
"@backstage/errors": "^1.2.7",
|
|
69
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
70
|
-
"@backstage/plugin-catalog-react": "^1.
|
|
71
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
72
|
+
"@backstage/frontend-plugin-api": "^0.10.0",
|
|
73
|
+
"@backstage/plugin-catalog-react": "^1.16.0",
|
|
74
|
+
"@backstage/plugin-permission-react": "^0.4.32",
|
|
72
75
|
"@backstage/plugin-search-common": "^1.2.17",
|
|
73
|
-
"@backstage/plugin-search-react": "^1.8.
|
|
74
|
-
"@backstage/plugin-signals-react": "^0.0.
|
|
75
|
-
"@backstage/theme": "^0.6.
|
|
76
|
+
"@backstage/plugin-search-react": "^1.8.7",
|
|
77
|
+
"@backstage/plugin-signals-react": "^0.0.11",
|
|
78
|
+
"@backstage/theme": "^0.6.4",
|
|
76
79
|
"@material-ui/core": "^4.12.2",
|
|
77
80
|
"@material-ui/icons": "^4.11.3",
|
|
78
81
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -90,11 +93,11 @@
|
|
|
90
93
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
91
94
|
},
|
|
92
95
|
"devDependencies": {
|
|
93
|
-
"@backstage/cli": "^0.
|
|
94
|
-
"@backstage/dev-utils": "^1.1.
|
|
95
|
-
"@backstage/frontend-test-utils": "^0.
|
|
96
|
-
"@backstage/plugin-signals": "^0.0.
|
|
97
|
-
"@backstage/test-utils": "^1.7.
|
|
96
|
+
"@backstage/cli": "^0.31.0",
|
|
97
|
+
"@backstage/dev-utils": "^1.1.8",
|
|
98
|
+
"@backstage/frontend-test-utils": "^0.3.0",
|
|
99
|
+
"@backstage/plugin-signals": "^0.0.17",
|
|
100
|
+
"@backstage/test-utils": "^1.7.6",
|
|
98
101
|
"@testing-library/jest-dom": "^6.3.0",
|
|
99
102
|
"@testing-library/react": "^14.0.0",
|
|
100
103
|
"@testing-library/user-event": "^14.5.1",
|