@backstage/core-components 0.8.4 → 0.8.7-next.0
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 +58 -0
- package/dist/index.d.ts +185 -48
- package/dist/index.esm.js +2586 -2344
- package/dist/index.esm.js.map +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,63 @@
|
|
|
1
1
|
# @backstage/core-components
|
|
2
2
|
|
|
3
|
+
## 0.8.7-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4c773ed25c: Change subtitle of Header style to use palette.bursts.fontColor
|
|
8
|
+
- f465b63b7f: Fix an issue where changes related to the `MobileSidebar` prevented scrolling pages. Additionally improve the menu of the `MobileSidebar` to not overlay the `BottomNavigation`.
|
|
9
|
+
- a681cb9c2f: Make linkTarget configurable for MarkdownContent component
|
|
10
|
+
|
|
11
|
+
## 0.8.6
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- b97a2460d5: Remove the `ignoreChildEvent` utility from the sidebar component to avoid conflicts with popovers
|
|
16
|
+
- bdc53553eb: chore(deps): bump `react-text-truncate` from 0.16.0 to 0.17.0
|
|
17
|
+
- 05f0f44180: chore(deps): bump `remark-gfm` from 2.0.0 to 3.0.1
|
|
18
|
+
- 15bac1d738: chore(deps): bump `react-markdown` from 7.1.2 to 8.0.0
|
|
19
|
+
- 7346b5fb96: chore(deps): bump `rc-progress` from 3.1.4 to 3.2.4
|
|
20
|
+
- 9abb28bb22: Fix issue where component types are not recognized causing the `MobileSidebar` to not render as intended.
|
|
21
|
+
- 1787694435: Updates styling of Header component by removing flex wrap and add max width of characters for subtitle
|
|
22
|
+
|
|
23
|
+
## 0.8.5
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 306d879536: chore(deps): bump `react-syntax-highligher` and `swagger-ui-react`
|
|
28
|
+
- 6b05ad1265: Updated the `SignInPage`, `ProxiedSignInPage` and `UserIdentity` implementations to match the removals of the deprecated `IdentityApi` methods and types.
|
|
29
|
+
- 8bb0f4bc8a: - Add `useContent` hook to have a reference to the current main content element
|
|
30
|
+
- Sets the main content reference on `Content` component
|
|
31
|
+
- 7ba416be78: The `Bar` component will now render a `MobileSidebar` instead of the current sidebar on smaller screens. The state of the `MobileSidebar` will be treated as always open.
|
|
32
|
+
|
|
33
|
+
***
|
|
34
|
+
|
|
35
|
+
**Add MobileSidebar:** A navigation component, which sticks to the bottom. If there is no content in the Sidebar, it won't be rendered. If there are `children` in the `Sidebar`, but no `SidebarGroup`s as `children`, it will render all `children` into a default overlay menu, which can be displayed by clicking a menu item. If `SidebarGroup`s are provided, it will render them in the bottom navigation. Additionally, a `MobileSidebarContext`, which wraps the component, will save the selected menu item.
|
|
36
|
+
|
|
37
|
+
**Add SidebarGroup:** Groups items of the `Sidebar` together. On bigger screens, this won't have any effect at the moment. On smaller screens, it will render a given icon into the `MobileSidebar`. If a route is provided, clicking the `SidebarGroup` in the `MobileSidebar` will route to the page. If no route is provided, it will add a provided icon to the `MobileSidebar` as a menu item & will render the children into an overlay menu, which will be displayed when the menu item is clicked.
|
|
38
|
+
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
- @backstage/core-plugin-api@0.6.0
|
|
41
|
+
- @backstage/config@0.1.13
|
|
42
|
+
|
|
43
|
+
## 0.8.5-next.0
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- 306d879536: chore(deps): bump `react-syntax-highligher` and `swagger-ui-react`
|
|
48
|
+
- 6b05ad1265: Updated the `SignInPage`, `ProxiedSignInPage` and `UserIdentity` implementations to match the removals of the deprecated `IdentityApi` methods and types.
|
|
49
|
+
- 7ba416be78: The `Bar` component will now render a `MobileSidebar` instead of the current sidebar on smaller screens. The state of the `MobileSidebar` will be treated as always open.
|
|
50
|
+
|
|
51
|
+
***
|
|
52
|
+
|
|
53
|
+
**Add MobileSidebar:** A navigation component, which sticks to the bottom. If there is no content in the Sidebar, it won't be rendered. If there are `children` in the `Sidebar`, but no `SidebarGroup`s as `children`, it will render all `children` into a default overlay menu, which can be displayed by clicking a menu item. If `SidebarGroup`s are provided, it will render them in the bottom navigation. Additionally, a `MobileSidebarContext`, which wraps the component, will save the selected menu item.
|
|
54
|
+
|
|
55
|
+
**Add SidebarGroup:** Groups items of the `Sidebar` together. On bigger screens, this won't have any effect at the moment. On smaller screens, it will render a given icon into the `MobileSidebar`. If a route is provided, clicking the `SidebarGroup` in the `MobileSidebar` will route to the page. If no route is provided, it will add a provided icon to the `MobileSidebar` as a menu item & will render the children into an overlay menu, which will be displayed when the menu item is clicked.
|
|
56
|
+
|
|
57
|
+
- Updated dependencies
|
|
58
|
+
- @backstage/core-plugin-api@0.6.0-next.0
|
|
59
|
+
- @backstage/config@0.1.13-next.0
|
|
60
|
+
|
|
3
61
|
## 0.8.4
|
|
4
62
|
|
|
5
63
|
### Patch Changes
|