@backstage/plugin-kubernetes 0.7.7-next.2 → 0.7.7
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 +14 -0
- package/dist/index.esm.js +2 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes
|
|
2
2
|
|
|
3
|
+
## 0.7.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/catalog-model@1.1.5
|
|
10
|
+
- @backstage/plugin-catalog-react@1.2.4
|
|
11
|
+
- @backstage/core-components@0.12.3
|
|
12
|
+
- @backstage/core-plugin-api@1.3.0
|
|
13
|
+
- @backstage/config@1.0.6
|
|
14
|
+
- @backstage/theme@0.2.16
|
|
15
|
+
- @backstage/plugin-kubernetes-common@0.5.1
|
|
16
|
+
|
|
3
17
|
## 0.7.7-next.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.esm.js
CHANGED
|
@@ -18,6 +18,7 @@ import lodash from 'lodash';
|
|
|
18
18
|
import PauseIcon from '@material-ui/icons/Pause';
|
|
19
19
|
import ErrorOutlineIcon from '@material-ui/icons/ErrorOutline';
|
|
20
20
|
import { DateTime } from 'luxon';
|
|
21
|
+
import Typography$1 from '@material-ui/core/Typography';
|
|
21
22
|
import EmptyStateImage from './assets/emptystate.svg';
|
|
22
23
|
|
|
23
24
|
class KubernetesBackendClient {
|
|
@@ -2047,7 +2048,7 @@ const createLabelForStep = (step) => {
|
|
|
2047
2048
|
} else if (isPauseStep(step)) {
|
|
2048
2049
|
return step.pause.duration === void 0 ? "infinite pause" : `pause for ${step.pause.duration}`;
|
|
2049
2050
|
} else if (isAnalysisStep(step)) {
|
|
2050
|
-
return /* @__PURE__ */ React__default.createElement("div", null, /* @__PURE__ */ React__default.createElement(
|
|
2051
|
+
return /* @__PURE__ */ React__default.createElement("div", null, /* @__PURE__ */ React__default.createElement(Typography$1, { paragraph: true }, "analysis templates:"), step.analysis.templates.map((t, i) => /* @__PURE__ */ React__default.createElement(Typography$1, { paragraph: true, key: i }, `${t.templateName}${t.clusterScope ? " (cluster scoped)" : ""}`)));
|
|
2051
2052
|
}
|
|
2052
2053
|
return "unknown step";
|
|
2053
2054
|
};
|