@backstage/core-components 0.9.5-next.1 → 0.9.6-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 +37 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.esm.js +3 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @backstage/core-components
|
|
2
2
|
|
|
3
|
+
## 0.9.6-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c3cfc83af2: Updated JSDoc to be MDX compatible.
|
|
8
|
+
|
|
9
|
+
## 0.9.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- feb4e8de07: Fix EntityPage tab scrolling overflow bug on Firefox
|
|
14
|
+
- 65840b17be: Fix issue where right arrow icon was incorrectly added to side bar items without a sub-menu
|
|
15
|
+
- de593ec78f: Updated dependency `react-text-truncate` to `^0.19.0`.
|
|
16
|
+
- 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
|
|
17
|
+
- 6968b65ba1: Updated dependency `@react-hookz/web` to `^14.0.0`.
|
|
18
|
+
- ee2cd642c5: Updated dependency `rc-progress` to `3.3.3`.
|
|
19
|
+
- 96d1e01641: Accessibility updates:
|
|
20
|
+
|
|
21
|
+
- Added `aria-label` to the `Select` component
|
|
22
|
+
- Changed heading level used in the header of `Table` component
|
|
23
|
+
|
|
24
|
+
- 7d355c4b3f: Fix the missing filter in the toolbar when passing a custom component in the core-components Table
|
|
25
|
+
- 1cf9caecd6: fix Sidebar Contexts deprecation message
|
|
26
|
+
- bff65e6958: The `SidebarPinStateContext` and `SidebarContext` have been deprecated and will be removed in a future release. Instead, use `<SidebarPinStateProvider>` + `useSidebarPinState()` and/or `<SidebarOpenStateProvider>` + `useSidebarOpenState()`.
|
|
27
|
+
|
|
28
|
+
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.
|
|
29
|
+
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @backstage/core-plugin-api@1.0.3
|
|
32
|
+
|
|
33
|
+
## 0.9.5-next.2
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- ee2cd642c5: Updated dependency `rc-progress` to `3.3.3`.
|
|
38
|
+
- 1cf9caecd6: fix Sidebar Contexts deprecation message
|
|
39
|
+
|
|
3
40
|
## 0.9.5-next.1
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -375,7 +375,7 @@ declare namespace types_d {
|
|
|
375
375
|
*
|
|
376
376
|
* @public
|
|
377
377
|
* @remarks
|
|
378
|
-
*
|
|
378
|
+
* `<NodeData>` and `<EdgeData>` are useful when rendering custom or edge labels
|
|
379
379
|
*/
|
|
380
380
|
interface DependencyGraphProps<NodeData, EdgeData> extends React__default.SVGProps<SVGSVGElement> {
|
|
381
381
|
/**
|
|
@@ -1344,7 +1344,7 @@ declare type ItemCardHeaderProps = Partial<WithStyles<typeof styles>> & {
|
|
|
1344
1344
|
* A simple card header, rendering a default look for "item cards" - cards that
|
|
1345
1345
|
* are arranged in a grid for users to select among several options.
|
|
1346
1346
|
*
|
|
1347
|
-
* This component expects to be placed within a MUI
|
|
1347
|
+
* This component expects to be placed within a MUI `<CardMedia>`.
|
|
1348
1348
|
*
|
|
1349
1349
|
* Styles for the header can be overridden using the `classes` prop, e.g.:
|
|
1350
1350
|
*
|
|
@@ -1683,7 +1683,7 @@ declare type SidebarOpenState = {
|
|
|
1683
1683
|
* Context whether the `Sidebar` is open
|
|
1684
1684
|
*
|
|
1685
1685
|
* @public @deprecated
|
|
1686
|
-
* Use `<
|
|
1686
|
+
* Use `<SidebarOpenStateProvider>` + `useSidebarOpenState()` instead.
|
|
1687
1687
|
*/
|
|
1688
1688
|
declare const LegacySidebarContext: React__default.Context<SidebarContextType>;
|
|
1689
1689
|
/**
|
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,
|