@backstage/plugin-kubernetes 0.7.1 → 0.7.2-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 +11 -0
- package/dist/index.d.ts +6 -4
- package/dist/index.esm.js +4 -9
- package/dist/index.esm.js.map +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes
|
|
2
2
|
|
|
3
|
+
## 0.7.2-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bf5e9030eb: Updated dependency `msw` to `^0.45.0`.
|
|
8
|
+
- ef9ab322de: Minor API signatures cleanup
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/core-plugin-api@1.0.6-next.0
|
|
11
|
+
- @backstage/core-components@0.11.1-next.0
|
|
12
|
+
- @backstage/plugin-catalog-react@1.1.4-next.0
|
|
13
|
+
|
|
3
14
|
## 0.7.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -192,9 +192,10 @@ declare type ErrorReportingProps = {
|
|
|
192
192
|
};
|
|
193
193
|
declare const ErrorReporting: ({ detectedErrors }: ErrorReportingProps) => JSX.Element;
|
|
194
194
|
|
|
195
|
-
|
|
195
|
+
/** @public */
|
|
196
|
+
declare const HorizontalPodAutoscalerDrawer: (props: {
|
|
196
197
|
hpa: V1HorizontalPodAutoscaler;
|
|
197
|
-
expanded?: boolean
|
|
198
|
+
expanded?: boolean;
|
|
198
199
|
children?: React.ReactNode;
|
|
199
200
|
}) => JSX.Element;
|
|
200
201
|
|
|
@@ -220,9 +221,10 @@ interface KubernetesDrawerProps<T extends KubernetesDrawerable> {
|
|
|
220
221
|
}
|
|
221
222
|
declare const KubernetesDrawer: <T extends KubernetesDrawerable>({ object, renderObject, kind, buttonVariant, expanded, children, }: KubernetesDrawerProps<T>) => JSX.Element;
|
|
222
223
|
|
|
223
|
-
|
|
224
|
+
/** @public */
|
|
225
|
+
declare const PodDrawer: (props: {
|
|
224
226
|
pod: V1Pod;
|
|
225
|
-
expanded?: boolean
|
|
227
|
+
expanded?: boolean;
|
|
226
228
|
}) => JSX.Element;
|
|
227
229
|
|
|
228
230
|
declare type PodColumns = 'READY' | 'RESOURCE';
|
package/dist/index.esm.js
CHANGED
|
@@ -1159,10 +1159,8 @@ const KubernetesDrawer = ({
|
|
|
1159
1159
|
})));
|
|
1160
1160
|
};
|
|
1161
1161
|
|
|
1162
|
-
const PodDrawer = ({
|
|
1163
|
-
pod,
|
|
1164
|
-
expanded
|
|
1165
|
-
}) => {
|
|
1162
|
+
const PodDrawer = (props) => {
|
|
1163
|
+
const { pod, expanded } = props;
|
|
1166
1164
|
return /* @__PURE__ */ React__default.createElement(KubernetesDrawer, {
|
|
1167
1165
|
object: pod,
|
|
1168
1166
|
expanded,
|
|
@@ -1319,11 +1317,8 @@ const DeploymentDrawer = ({
|
|
|
1319
1317
|
}))));
|
|
1320
1318
|
};
|
|
1321
1319
|
|
|
1322
|
-
const HorizontalPodAutoscalerDrawer = ({
|
|
1323
|
-
hpa,
|
|
1324
|
-
expanded,
|
|
1325
|
-
children
|
|
1326
|
-
}) => {
|
|
1320
|
+
const HorizontalPodAutoscalerDrawer = (props) => {
|
|
1321
|
+
const { hpa, expanded, children } = props;
|
|
1327
1322
|
return /* @__PURE__ */ React__default.createElement(KubernetesDrawer, {
|
|
1328
1323
|
kind: "HorizontalPodAutoscaler",
|
|
1329
1324
|
object: hpa,
|