@backstage-community/plugin-announcements 0.13.0 → 0.13.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @backstage-community/plugin-announcements
|
|
2
2
|
|
|
3
|
+
## 0.13.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 93bb787: Fixed the typings for the Announcements new frontend system plugin, which previously prevented correct overriding.
|
|
8
|
+
- 6efe1a3: - Fixed table rendering in `<AnnouncementsPage markdownRenderer="md-editor" />`. Table styling was not correctly applied when using the Backstage Light theme.
|
|
9
|
+
- Updated `@uiw/react-md-editor` dependency to `^4.0.8`.
|
|
10
|
+
|
|
3
11
|
## 0.13.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,13 +1,119 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import * as _backstage_plugin_search_react_alpha from '@backstage/plugin-search-react/alpha';
|
|
3
|
+
import * as _backstage_catalog_model from '@backstage/catalog-model';
|
|
4
|
+
import * as react from 'react';
|
|
5
|
+
import * as _backstage_plugin_catalog_react_alpha from '@backstage/plugin-catalog-react/alpha';
|
|
6
|
+
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
1
7
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
2
|
-
import { FrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
3
8
|
|
|
4
9
|
/**
|
|
5
10
|
* @alpha
|
|
6
11
|
*/
|
|
7
|
-
declare const _default:
|
|
8
|
-
|
|
9
|
-
}, {
|
|
10
|
-
|
|
12
|
+
declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{
|
|
13
|
+
root: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
14
|
+
}, {}, {
|
|
15
|
+
"api:announcements": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
16
|
+
kind: "api";
|
|
17
|
+
name: undefined;
|
|
18
|
+
config: {};
|
|
19
|
+
configInput: {};
|
|
20
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_core_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
21
|
+
inputs: {};
|
|
22
|
+
params: <TApi, TImpl extends TApi, TDeps extends {
|
|
23
|
+
[x: string]: unknown;
|
|
24
|
+
}>(params: _backstage_core_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_core_plugin_api.AnyApiFactory>;
|
|
25
|
+
}>;
|
|
26
|
+
"entity-card:announcements/announcements": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
27
|
+
kind: "entity-card";
|
|
28
|
+
name: "announcements";
|
|
29
|
+
config: {
|
|
30
|
+
filter: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
31
|
+
type: "content" | "summary" | "info" | undefined;
|
|
32
|
+
};
|
|
33
|
+
configInput: {
|
|
34
|
+
filter?: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
35
|
+
type?: "content" | "summary" | "info" | undefined;
|
|
36
|
+
};
|
|
37
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: _backstage_catalog_model.Entity) => boolean, "catalog.entity-filter-function", {
|
|
38
|
+
optional: true;
|
|
39
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-filter-expression", {
|
|
40
|
+
optional: true;
|
|
41
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_plugin_catalog_react_alpha.EntityCardType, "catalog.entity-card-type", {
|
|
42
|
+
optional: true;
|
|
43
|
+
}>;
|
|
44
|
+
inputs: {};
|
|
45
|
+
params: {
|
|
46
|
+
loader: () => Promise<JSX.Element>;
|
|
47
|
+
filter?: _backstage_plugin_catalog_react_alpha.EntityPredicate | ((entity: _backstage_catalog_model.Entity) => boolean) | undefined;
|
|
48
|
+
type?: _backstage_plugin_catalog_react_alpha.EntityCardType | undefined;
|
|
49
|
+
};
|
|
50
|
+
}>;
|
|
51
|
+
"nav-item:announcements": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
52
|
+
kind: "nav-item";
|
|
53
|
+
name: undefined;
|
|
54
|
+
config: {};
|
|
55
|
+
configInput: {};
|
|
56
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
57
|
+
title: string;
|
|
58
|
+
icon: _backstage_core_plugin_api.IconComponent;
|
|
59
|
+
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
60
|
+
}, "core.nav-item.target", {}>;
|
|
61
|
+
inputs: {};
|
|
62
|
+
params: {
|
|
63
|
+
title: string;
|
|
64
|
+
icon: _backstage_core_plugin_api.IconComponent;
|
|
65
|
+
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
66
|
+
};
|
|
67
|
+
}>;
|
|
68
|
+
"page:announcements": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
69
|
+
kind: "page";
|
|
70
|
+
name: undefined;
|
|
71
|
+
config: {
|
|
72
|
+
path: string | undefined;
|
|
73
|
+
};
|
|
74
|
+
configInput: {
|
|
75
|
+
path?: string | undefined;
|
|
76
|
+
};
|
|
77
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
78
|
+
optional: true;
|
|
79
|
+
}>;
|
|
80
|
+
inputs: {};
|
|
81
|
+
params: {
|
|
82
|
+
defaultPath?: [Error: "Use the 'path' param instead"] | undefined;
|
|
83
|
+
path: string;
|
|
84
|
+
loader: () => Promise<JSX.Element>;
|
|
85
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
|
|
86
|
+
};
|
|
87
|
+
}>;
|
|
88
|
+
"search-filter-result-type:announcements": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
89
|
+
kind: "search-filter-result-type";
|
|
90
|
+
name: undefined;
|
|
91
|
+
config: {};
|
|
92
|
+
configInput: {};
|
|
93
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
94
|
+
value: string;
|
|
95
|
+
name: string;
|
|
96
|
+
icon: JSX.Element;
|
|
97
|
+
}, "search.filters.result-types.type", {}>;
|
|
98
|
+
inputs: {};
|
|
99
|
+
params: _backstage_plugin_search_react_alpha.SearchFilterResultTypeBlueprintParams;
|
|
100
|
+
}>;
|
|
101
|
+
"search-result-list-item:announcements": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
102
|
+
kind: "search-result-list-item";
|
|
103
|
+
name: undefined;
|
|
104
|
+
config: {
|
|
105
|
+
noTrack: boolean;
|
|
106
|
+
};
|
|
107
|
+
configInput: {
|
|
108
|
+
noTrack?: boolean | undefined;
|
|
109
|
+
};
|
|
110
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
111
|
+
predicate?: _backstage_plugin_search_react_alpha.SearchResultItemExtensionPredicate | undefined;
|
|
112
|
+
component: _backstage_plugin_search_react_alpha.SearchResultItemExtensionComponent;
|
|
113
|
+
}, "search.search-result-list-item.item", {}>;
|
|
114
|
+
inputs: {};
|
|
115
|
+
params: _backstage_plugin_search_react_alpha.SearchResultListItemBlueprintParams;
|
|
116
|
+
}>;
|
|
11
117
|
}>;
|
|
12
118
|
|
|
13
119
|
export { _default as default };
|
package/dist/alpha.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { convertLegacyRouteRefs } from '@backstage/core-compat-api';\nimport {
|
|
1
|
+
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { convertLegacyRouteRefs } from '@backstage/core-compat-api';\nimport { createFrontendPlugin } from '@backstage/frontend-plugin-api';\nimport { announcementsApiExtension } from './alpha/apis';\nimport { entityAnnouncementsCard } from './alpha/entityCards';\nimport { announcementsNavItem } from './alpha/navItems';\nimport { announcementsPage } from './alpha/pages';\nimport {\n announcementsSearchFilterResultType,\n announcementsSearchResultListItem,\n} from './alpha/search';\nimport { rootRouteRef } from './routes';\n\n/**\n * @alpha\n */\nexport default createFrontendPlugin({\n pluginId: 'announcements',\n routes: convertLegacyRouteRefs({\n root: rootRouteRef,\n }),\n extensions: [\n announcementsApiExtension,\n entityAnnouncementsCard,\n announcementsPage,\n announcementsNavItem,\n announcementsSearchResultListItem,\n announcementsSearchFilterResultType,\n ],\n});\n"],"names":[],"mappings":";;;;;;;;;AA8BA,YAAe,oBAAqB,CAAA;AAAA,EAClC,QAAU,EAAA,eAAA;AAAA,EACV,QAAQ,sBAAuB,CAAA;AAAA,IAC7B,IAAM,EAAA;AAAA,GACP,CAAA;AAAA,EACD,UAAY,EAAA;AAAA,IACV,yBAAA;AAAA,IACA,uBAAA;AAAA,IACA,iBAAA;AAAA,IACA,oBAAA;AAAA,IACA,iCAAA;AAAA,IACA;AAAA;AAEJ,CAAC,CAAA;;;;"}
|
|
@@ -22,6 +22,24 @@ const useStyles = makeStyles((theme) => ({
|
|
|
22
22
|
"& blockquote": {
|
|
23
23
|
paddingLeft: theme.spacing(1),
|
|
24
24
|
color: theme.palette.text.secondary
|
|
25
|
+
},
|
|
26
|
+
"& table": {
|
|
27
|
+
"& thead th": {
|
|
28
|
+
color: theme.palette.text.primary,
|
|
29
|
+
backgroundColor: theme.palette.type === "dark" ? theme.palette.background.default : theme.palette.background.paper
|
|
30
|
+
},
|
|
31
|
+
"& th, & td": {
|
|
32
|
+
border: 0
|
|
33
|
+
},
|
|
34
|
+
"& tbody tr:nth-of-type(odd)": {
|
|
35
|
+
backgroundColor: theme.palette.type === "dark" ? theme.palette.action.selected : theme.palette.action.hover
|
|
36
|
+
},
|
|
37
|
+
"& tbody tr:nth-of-type(even)": {
|
|
38
|
+
backgroundColor: theme.palette.type === "dark" ? theme.palette.background.paper : theme.palette.background.paper
|
|
39
|
+
},
|
|
40
|
+
"& tbody td": {
|
|
41
|
+
borderTop: `1px solid ${theme.palette.divider}`
|
|
42
|
+
}
|
|
25
43
|
}
|
|
26
44
|
}
|
|
27
45
|
}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MarkdownRenderer.esm.js","sources":["../../../src/components/MarkdownRenderer/MarkdownRenderer.tsx"],"sourcesContent":["/*\n * Copyright 2025 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { MarkdownContent } from '@backstage/core-components';\nimport MDEditor from '@uiw/react-md-editor';\nimport { makeStyles, useTheme } from '@material-ui/core';\n\n/**\n * @public\n * Use this props to specify which rendering mode the MarkdownRenderer should operate in.\n *\n * - `'backstage'`: Indicates that the renderer should use the Backstage built-in style.\n * - `'md-editor'`: Indicates that the renderer should use the Markdown Editor (WYSIWYG) style.\n *\n */\nexport type MarkdownRendererTypeProps = 'backstage' | 'md-editor';\n\nexport interface MarkdownRendererProps {\n content: string;\n rendererType?: MarkdownRendererTypeProps;\n}\n\n// Custom styles for the MDEditor to match Backstage MUI theme\nconst useStyles = makeStyles(theme => ({\n mdEditor: {\n color: theme.palette.text.primary,\n '& a': {\n color: theme.palette.primary.main,\n },\n '& code': {\n backgroundColor: theme.palette.background.default,\n color: theme.palette.text.primary,\n borderRadius: theme.shape.borderRadius,\n },\n '& pre': {\n backgroundColor: theme.palette.background.default,\n padding: theme.spacing(1),\n borderRadius: theme.shape.borderRadius,\n },\n '& blockquote': {\n paddingLeft: theme.spacing(1),\n color: theme.palette.text.secondary,\n },\n },\n}));\n\nexport const MarkdownRenderer = ({\n content,\n rendererType = 'backstage',\n}: MarkdownRendererProps) => {\n const theme = useTheme();\n const classes = useStyles();\n\n switch (rendererType) {\n case 'md-editor':\n return (\n <MDEditor.Markdown\n source={content}\n className={classes.mdEditor}\n style={{\n backgroundColor: 'transparent',\n color: theme.palette.text.primary,\n fontFamily: theme.typography.fontFamily,\n }}\n />\n );\n case 'backstage':\n default:\n return <MarkdownContent content={content} />;\n }\n};\n"],"names":[],"mappings":";;;;;AAmCA,MAAM,SAAA,GAAY,WAAW,CAAU,KAAA,MAAA;AAAA,EACrC,QAAU,EAAA;AAAA,IACR,KAAA,EAAO,KAAM,CAAA,OAAA,CAAQ,IAAK,CAAA,OAAA;AAAA,IAC1B,KAAO,EAAA;AAAA,MACL,KAAA,EAAO,KAAM,CAAA,OAAA,CAAQ,OAAQ,CAAA;AAAA,KAC/B;AAAA,IACA,QAAU,EAAA;AAAA,MACR,eAAA,EAAiB,KAAM,CAAA,OAAA,CAAQ,UAAW,CAAA,OAAA;AAAA,MAC1C,KAAA,EAAO,KAAM,CAAA,OAAA,CAAQ,IAAK,CAAA,OAAA;AAAA,MAC1B,YAAA,EAAc,MAAM,KAAM,CAAA;AAAA,KAC5B;AAAA,IACA,OAAS,EAAA;AAAA,MACP,eAAA,EAAiB,KAAM,CAAA,OAAA,CAAQ,UAAW,CAAA,OAAA;AAAA,MAC1C,OAAA,EAAS,KAAM,CAAA,OAAA,CAAQ,CAAC,CAAA;AAAA,MACxB,YAAA,EAAc,MAAM,KAAM,CAAA;AAAA,KAC5B;AAAA,IACA,cAAgB,EAAA;AAAA,MACd,WAAA,EAAa,KAAM,CAAA,OAAA,CAAQ,CAAC,CAAA;AAAA,MAC5B,KAAA,EAAO,KAAM,CAAA,OAAA,CAAQ,IAAK,CAAA;AAAA;
|
|
1
|
+
{"version":3,"file":"MarkdownRenderer.esm.js","sources":["../../../src/components/MarkdownRenderer/MarkdownRenderer.tsx"],"sourcesContent":["/*\n * Copyright 2025 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { MarkdownContent } from '@backstage/core-components';\nimport MDEditor from '@uiw/react-md-editor';\nimport { makeStyles, useTheme } from '@material-ui/core';\n\n/**\n * @public\n * Use this props to specify which rendering mode the MarkdownRenderer should operate in.\n *\n * - `'backstage'`: Indicates that the renderer should use the Backstage built-in style.\n * - `'md-editor'`: Indicates that the renderer should use the Markdown Editor (WYSIWYG) style.\n *\n */\nexport type MarkdownRendererTypeProps = 'backstage' | 'md-editor';\n\nexport interface MarkdownRendererProps {\n content: string;\n rendererType?: MarkdownRendererTypeProps;\n}\n\n// Custom styles for the MDEditor to match Backstage MUI theme\nconst useStyles = makeStyles(theme => ({\n mdEditor: {\n color: theme.palette.text.primary,\n '& a': {\n color: theme.palette.primary.main,\n },\n '& code': {\n backgroundColor: theme.palette.background.default,\n color: theme.palette.text.primary,\n borderRadius: theme.shape.borderRadius,\n },\n '& pre': {\n backgroundColor: theme.palette.background.default,\n padding: theme.spacing(1),\n borderRadius: theme.shape.borderRadius,\n },\n '& blockquote': {\n paddingLeft: theme.spacing(1),\n color: theme.palette.text.secondary,\n },\n '& table': {\n '& thead th': {\n color: theme.palette.text.primary,\n backgroundColor:\n theme.palette.type === 'dark'\n ? theme.palette.background.default\n : theme.palette.background.paper,\n },\n '& th, & td': {\n border: 0,\n },\n '& tbody tr:nth-of-type(odd)': {\n backgroundColor:\n theme.palette.type === 'dark'\n ? theme.palette.action.selected\n : theme.palette.action.hover,\n },\n '& tbody tr:nth-of-type(even)': {\n backgroundColor:\n theme.palette.type === 'dark'\n ? theme.palette.background.paper\n : theme.palette.background.paper,\n },\n '& tbody td': {\n borderTop: `1px solid ${theme.palette.divider}`,\n },\n },\n },\n}));\n\nexport const MarkdownRenderer = ({\n content,\n rendererType = 'backstage',\n}: MarkdownRendererProps) => {\n const theme = useTheme();\n const classes = useStyles();\n\n switch (rendererType) {\n case 'md-editor':\n return (\n <MDEditor.Markdown\n source={content}\n className={classes.mdEditor}\n style={{\n backgroundColor: 'transparent',\n color: theme.palette.text.primary,\n fontFamily: theme.typography.fontFamily,\n }}\n />\n );\n case 'backstage':\n default:\n return <MarkdownContent content={content} />;\n }\n};\n"],"names":[],"mappings":";;;;;AAmCA,MAAM,SAAA,GAAY,WAAW,CAAU,KAAA,MAAA;AAAA,EACrC,QAAU,EAAA;AAAA,IACR,KAAA,EAAO,KAAM,CAAA,OAAA,CAAQ,IAAK,CAAA,OAAA;AAAA,IAC1B,KAAO,EAAA;AAAA,MACL,KAAA,EAAO,KAAM,CAAA,OAAA,CAAQ,OAAQ,CAAA;AAAA,KAC/B;AAAA,IACA,QAAU,EAAA;AAAA,MACR,eAAA,EAAiB,KAAM,CAAA,OAAA,CAAQ,UAAW,CAAA,OAAA;AAAA,MAC1C,KAAA,EAAO,KAAM,CAAA,OAAA,CAAQ,IAAK,CAAA,OAAA;AAAA,MAC1B,YAAA,EAAc,MAAM,KAAM,CAAA;AAAA,KAC5B;AAAA,IACA,OAAS,EAAA;AAAA,MACP,eAAA,EAAiB,KAAM,CAAA,OAAA,CAAQ,UAAW,CAAA,OAAA;AAAA,MAC1C,OAAA,EAAS,KAAM,CAAA,OAAA,CAAQ,CAAC,CAAA;AAAA,MACxB,YAAA,EAAc,MAAM,KAAM,CAAA;AAAA,KAC5B;AAAA,IACA,cAAgB,EAAA;AAAA,MACd,WAAA,EAAa,KAAM,CAAA,OAAA,CAAQ,CAAC,CAAA;AAAA,MAC5B,KAAA,EAAO,KAAM,CAAA,OAAA,CAAQ,IAAK,CAAA;AAAA,KAC5B;AAAA,IACA,SAAW,EAAA;AAAA,MACT,YAAc,EAAA;AAAA,QACZ,KAAA,EAAO,KAAM,CAAA,OAAA,CAAQ,IAAK,CAAA,OAAA;AAAA,QAC1B,eAAA,EACE,KAAM,CAAA,OAAA,CAAQ,IAAS,KAAA,MAAA,GACnB,KAAM,CAAA,OAAA,CAAQ,UAAW,CAAA,OAAA,GACzB,KAAM,CAAA,OAAA,CAAQ,UAAW,CAAA;AAAA,OACjC;AAAA,MACA,YAAc,EAAA;AAAA,QACZ,MAAQ,EAAA;AAAA,OACV;AAAA,MACA,6BAA+B,EAAA;AAAA,QAC7B,eAAA,EACE,KAAM,CAAA,OAAA,CAAQ,IAAS,KAAA,MAAA,GACnB,KAAM,CAAA,OAAA,CAAQ,MAAO,CAAA,QAAA,GACrB,KAAM,CAAA,OAAA,CAAQ,MAAO,CAAA;AAAA,OAC7B;AAAA,MACA,8BAAgC,EAAA;AAAA,QAC9B,eAAA,EACE,KAAM,CAAA,OAAA,CAAQ,IAAS,KAAA,MAAA,GACnB,KAAM,CAAA,OAAA,CAAQ,UAAW,CAAA,KAAA,GACzB,KAAM,CAAA,OAAA,CAAQ,UAAW,CAAA;AAAA,OACjC;AAAA,MACA,YAAc,EAAA;AAAA,QACZ,SAAW,EAAA,CAAA,UAAA,EAAa,KAAM,CAAA,OAAA,CAAQ,OAAO,CAAA;AAAA;AAC/C;AACF;AAEJ,CAAE,CAAA,CAAA;AAEK,MAAM,mBAAmB,CAAC;AAAA,EAC/B,OAAA;AAAA,EACA,YAAe,GAAA;AACjB,CAA6B,KAAA;AAC3B,EAAA,MAAM,QAAQ,QAAS,EAAA;AACvB,EAAA,MAAM,UAAU,SAAU,EAAA;AAE1B,EAAA,QAAQ,YAAc;AAAA,IACpB,KAAK,WAAA;AACH,MACE,uBAAA,GAAA;AAAA,QAAC,QAAS,CAAA,QAAA;AAAA,QAAT;AAAA,UACC,MAAQ,EAAA,OAAA;AAAA,UACR,WAAW,OAAQ,CAAA,QAAA;AAAA,UACnB,KAAO,EAAA;AAAA,YACL,eAAiB,EAAA,aAAA;AAAA,YACjB,KAAA,EAAO,KAAM,CAAA,OAAA,CAAQ,IAAK,CAAA,OAAA;AAAA,YAC1B,UAAA,EAAY,MAAM,UAAW,CAAA;AAAA;AAC/B;AAAA,OACF;AAAA,IAEJ,KAAK,WAAA;AAAA,IACL;AACE,MAAO,uBAAA,GAAA,CAAC,mBAAgB,OAAkB,EAAA,CAAA;AAAA;AAEhD;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-announcements",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"main": "./dist/index.esm.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@mui/icons-material": "^5.15.6",
|
|
83
83
|
"@mui/material": "^5.15.6",
|
|
84
84
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
85
|
-
"@uiw/react-md-editor": "^4.0.
|
|
85
|
+
"@uiw/react-md-editor": "^4.0.8",
|
|
86
86
|
"add": "^2.0.6",
|
|
87
87
|
"luxon": "^3.2.0",
|
|
88
88
|
"react-use": "^17.2.4",
|