@backstage/core-components 0.9.5-next.2 → 0.9.5
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 +24 -0
- package/dist/index.esm.js +3 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/core-components
|
|
2
2
|
|
|
3
|
+
## 0.9.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- feb4e8de07: Fix EntityPage tab scrolling overflow bug on Firefox
|
|
8
|
+
- 65840b17be: Fix issue where right arrow icon was incorrectly added to side bar items without a sub-menu
|
|
9
|
+
- de593ec78f: Updated dependency `react-text-truncate` to `^0.19.0`.
|
|
10
|
+
- 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
|
|
11
|
+
- 6968b65ba1: Updated dependency `@react-hookz/web` to `^14.0.0`.
|
|
12
|
+
- ee2cd642c5: Updated dependency `rc-progress` to `3.3.3`.
|
|
13
|
+
- 96d1e01641: Accessibility updates:
|
|
14
|
+
|
|
15
|
+
- Added `aria-label` to the `Select` component
|
|
16
|
+
- Changed heading level used in the header of `Table` component
|
|
17
|
+
|
|
18
|
+
- 7d355c4b3f: Fix the missing filter in the toolbar when passing a custom component in the core-components Table
|
|
19
|
+
- 1cf9caecd6: fix Sidebar Contexts deprecation message
|
|
20
|
+
- bff65e6958: The `SidebarPinStateContext` and `SidebarContext` have been deprecated and will be removed in a future release. Instead, use `<SidebarPinStateProvider>` + `useSidebarPinState()` and/or `<SidebarOpenStateProvider>` + `useSidebarOpenState()`.
|
|
21
|
+
|
|
22
|
+
This was done to ensure that sidebar state can be shared successfully across components exported by different packages, regardless of what version of this package is resolved and installed for each individual package.
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @backstage/core-plugin-api@1.0.3
|
|
26
|
+
|
|
3
27
|
## 0.9.5-next.2
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/index.esm.js
CHANGED
|
@@ -4741,6 +4741,7 @@ function Table(props) {
|
|
|
4741
4741
|
initialState,
|
|
4742
4742
|
emptyContent,
|
|
4743
4743
|
onStateChange,
|
|
4744
|
+
components,
|
|
4744
4745
|
...restProps
|
|
4745
4746
|
} = props;
|
|
4746
4747
|
const tableClasses = useTableStyles();
|
|
@@ -4867,7 +4868,8 @@ function Table(props) {
|
|
|
4867
4868
|
components: {
|
|
4868
4869
|
Header: StyledMTableHeader,
|
|
4869
4870
|
Toolbar,
|
|
4870
|
-
Body
|
|
4871
|
+
Body,
|
|
4872
|
+
...components
|
|
4871
4873
|
},
|
|
4872
4874
|
options: { ...defaultOptions, ...options },
|
|
4873
4875
|
columns: MTColumns,
|