@backstage/core-components 0.13.5-next.2 → 0.13.5-next.3
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 +12 -0
- package/dist/index.d.ts +4 -4
- package/dist/index.esm.js.map +1 -1
- package/package.json +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage/core-components
|
|
2
2
|
|
|
3
|
+
## 0.13.5-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/config@1.1.0-next.2
|
|
10
|
+
- @backstage/core-plugin-api@1.6.0-next.3
|
|
11
|
+
- @backstage/errors@1.2.2-next.0
|
|
12
|
+
- @backstage/theme@0.4.2-next.0
|
|
13
|
+
- @backstage/version-bridge@1.0.5-next.0
|
|
14
|
+
|
|
3
15
|
## 0.13.5-next.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -788,10 +788,10 @@ type SlackChannel = {
|
|
|
788
788
|
href?: string;
|
|
789
789
|
};
|
|
790
790
|
/** @public */
|
|
791
|
-
type ErrorBoundaryProps = {
|
|
791
|
+
type ErrorBoundaryProps = React__default.PropsWithChildren<{
|
|
792
792
|
slackChannel?: string | SlackChannel;
|
|
793
793
|
onError?: (error: Error, errorInfo: string) => null;
|
|
794
|
-
}
|
|
794
|
+
}>;
|
|
795
795
|
type State = {
|
|
796
796
|
error?: Error;
|
|
797
797
|
errorInfo?: ErrorInfo;
|
|
@@ -1281,10 +1281,10 @@ declare function HeaderActionMenu(props: HeaderActionMenuProps): React__default.
|
|
|
1281
1281
|
|
|
1282
1282
|
/** @public */
|
|
1283
1283
|
type HeaderLabelClassKey = 'root' | 'label' | 'value';
|
|
1284
|
-
type HeaderLabelContentProps = {
|
|
1284
|
+
type HeaderLabelContentProps = PropsWithChildren<{
|
|
1285
1285
|
value: React__default.ReactNode;
|
|
1286
1286
|
className: string;
|
|
1287
|
-
}
|
|
1287
|
+
}>;
|
|
1288
1288
|
type HeaderLabelProps = {
|
|
1289
1289
|
label: string;
|
|
1290
1290
|
value?: HeaderLabelContentProps['value'];
|