@backstage/core-components 0.14.4-next.0 → 0.14.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/CHANGELOG.md +15 -0
- package/alpha/package.json +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +10 -10
- package/testUtils/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/core-components
|
|
2
2
|
|
|
3
|
+
## 0.14.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ed5c901: No `undefined` class name used at `MarkdownContent` if no custom class name was provided.
|
|
8
|
+
- abfbcfc: Updated dependency `@testing-library/react` to `^15.0.0`.
|
|
9
|
+
- cb1e3b0: Updated dependency `@testing-library/dom` to `^10.0.0`.
|
|
10
|
+
- f546e38: Added Link component in `TabUI` providing functionality like copy link or open in new tab.
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/core-plugin-api@1.9.2
|
|
13
|
+
- @backstage/theme@0.5.3
|
|
14
|
+
- @backstage/version-bridge@1.0.8
|
|
15
|
+
- @backstage/config@1.2.0
|
|
16
|
+
- @backstage/errors@1.2.4
|
|
17
|
+
|
|
3
18
|
## 0.14.4-next.0
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.esm.js
CHANGED
|
@@ -1533,7 +1533,7 @@ function MarkdownContent(props) {
|
|
|
1533
1533
|
ReactMarkdown,
|
|
1534
1534
|
{
|
|
1535
1535
|
remarkPlugins: dialect === "gfm" ? [gfm] : [],
|
|
1536
|
-
className: `${classes.markdown} ${className}
|
|
1536
|
+
className: `${classes.markdown} ${className != null ? className : ""}`.trim(),
|
|
1537
1537
|
children: content,
|
|
1538
1538
|
components,
|
|
1539
1539
|
linkTarget,
|