@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.81 → 0.0.1-alpha.83

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.
@@ -8444,6 +8444,10 @@
8444
8444
  );
8445
8445
  };
8446
8446
 
8447
+ const FlexGrow = st.div`
8448
+ flex-grow: 1;
8449
+ `;
8450
+
8447
8451
  const getDirectUnknownResource = async ({ uri }) => {
8448
8452
  return axios.get(uri);
8449
8453
  };
@@ -26261,7 +26265,13 @@
26261
26265
  return /* @__PURE__ */ jsxRuntimeExports.jsx(ShortenedTextWithTooltip, { trimLength: possibleTrimLength, text: possibleUndefinedValue });
26262
26266
  }
26263
26267
  }
26264
- return /* @__PURE__ */ jsxRuntimeExports.jsx(ShortenedTextWithTooltip, { trimLength: possibleTrimLength, text: `Raw: ${JSON.stringify(value)}` });
26268
+ if (value === void 0) {
26269
+ return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { children: "Raw: undefined" });
26270
+ }
26271
+ return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { children: [
26272
+ "Raw: ",
26273
+ JSON.stringify(value)
26274
+ ] });
26265
26275
  },
26266
26276
  width: possibleColWidth,
26267
26277
  filterDropdown: ({ setSelectedKeys, selectedKeys, confirm, clearFilters, close }) => /* @__PURE__ */ jsxRuntimeExports.jsx(
@@ -43842,6 +43852,7 @@
43842
43852
  ) }),
43843
43853
  /* @__PURE__ */ jsxRuntimeExports.jsx("div", { children: /* @__PURE__ */ jsxRuntimeExports.jsx(YamlEditor, { theme, currentValues: yamlValues || {}, onChange: onYamlChangeCallback }) })
43844
43854
  ] }),
43855
+ /* @__PURE__ */ jsxRuntimeExports.jsx(FlexGrow, {}),
43845
43856
  /* @__PURE__ */ jsxRuntimeExports.jsx(Styled$c.ControlsRowContainer, { $bgColor: token.colorPrimaryBg, $designNewLayout: designNewLayout, children: /* @__PURE__ */ jsxRuntimeExports.jsxs(antd.Flex, { gap: designNewLayout ? 10 : 16, align: "center", children: [
43846
43857
  /* @__PURE__ */ jsxRuntimeExports.jsx(antd.Button, { type: "primary", onClick: onSubmit, loading: isLoading, children: "Submit" }),
43847
43858
  backlink && /* @__PURE__ */ jsxRuntimeExports.jsx(antd.Button, { onClick: () => navigate(backlink), children: "Cancel" }),
@@ -47054,6 +47065,7 @@
47054
47065
  exports.EditIcon = EditIcon;
47055
47066
  exports.EnrichedTable = EnrichedTable$1;
47056
47067
  exports.EnrichedTableProvider = EnrichedTableProvider;
47068
+ exports.FlexGrow = FlexGrow;
47057
47069
  exports.LockedIcon = LockedIcon;
47058
47070
  exports.ManageableBreadcrumbs = ManageableBreadcrumbs;
47059
47071
  exports.ManageableBreadcrumbsWithDataProvider = ManageableBreadcrumbsWithDataProvider;