@prorobotech/openapi-k8s-toolkit 1.2.1-alpha.13 → 1.2.1-alpha.14

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.
@@ -76970,6 +76970,7 @@ const DefaultIframe = ({ data, children }) => {
76970
76970
  const TitleSelect = styled(Select)`
76971
76971
  &&.ant-select {
76972
76972
  cursor: pointer;
76973
+ min-width: 200px;
76973
76974
 
76974
76975
  .ant-select-selector {
76975
76976
  border: none;
@@ -77033,12 +77034,14 @@ const DropdownRedirect = ({
77033
77034
  acc[index.toString()] = value;
77034
77035
  return acc;
77035
77036
  }, {});
77037
+ const UNDEFINED_FALLBACK = "~undefined-value~";
77036
77038
  const clusterPrepared = parseAll({ text: cluster, replaceValues, multiQueryData });
77037
77039
  const apiVersionPrepared = parseAll({ text: apiVersion, replaceValues, multiQueryData });
77038
77040
  const apiGroupPrepared = apiGroup ? parseAll({ text: apiGroup, replaceValues, multiQueryData }) : void 0;
77039
77041
  const namespacePrepared = namespace ? parseAll({ text: namespace, replaceValues, multiQueryData }) : void 0;
77040
77042
  const pluralPrepared = parseAll({ text: plural, replaceValues, multiQueryData });
77041
- const currentValuePrepared = currentValue ? parseAll({ text: currentValue, replaceValues, multiQueryData }) : void 0;
77043
+ const currentValueRaw = currentValue ? parseWithoutPartsOfUrl({ text: currentValue, multiQueryData, customFallback: UNDEFINED_FALLBACK }) : void 0;
77044
+ const currentValuePrepared = currentValueRaw === UNDEFINED_FALLBACK ? void 0 : currentValueRaw;
77042
77045
  const {
77043
77046
  data: resourceList,
77044
77047
  isLoading: isResourceLoading,