@backstage/plugin-kubernetes 0.7.7-next.2 → 0.7.8-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 CHANGED
@@ -1,5 +1,28 @@
1
1
  # @backstage/plugin-kubernetes
2
2
 
3
+ ## 0.7.8-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-kubernetes-common@0.6.0-next.0
9
+ - @backstage/plugin-catalog-react@1.3.0-next.0
10
+ - @backstage/catalog-model@1.1.6-next.0
11
+
12
+ ## 0.7.7
13
+
14
+ ### Patch Changes
15
+
16
+ - 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
17
+ - Updated dependencies
18
+ - @backstage/catalog-model@1.1.5
19
+ - @backstage/plugin-catalog-react@1.2.4
20
+ - @backstage/core-components@0.12.3
21
+ - @backstage/core-plugin-api@1.3.0
22
+ - @backstage/config@1.0.6
23
+ - @backstage/theme@0.2.16
24
+ - @backstage/plugin-kubernetes-common@0.5.1
25
+
3
26
  ## 0.7.7-next.2
4
27
 
5
28
  ### 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("p", null, "analysis templates:"), step.analysis.templates.map((t, i) => /* @__PURE__ */ React__default.createElement("p", { key: i }, `${t.templateName}${t.clusterScope ? " (cluster scoped)" : ""}`)));
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
  };