@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.96 → 0.0.1-alpha.97

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.
@@ -8525,8 +8525,9 @@ const CustomSelect$5 = st(Select)`
8525
8525
  margin: 0;
8526
8526
  padding: 4px;
8527
8527
 
8528
- && .ant-select-selector {
8528
+ &&& .ant-select-selector {
8529
8529
  background: none;
8530
+ padding-inline-end: ${({ $paddingContainerEnd }) => $paddingContainerEnd || "12px"} !important;
8530
8531
  }
8531
8532
 
8532
8533
  && .ant-select-selector,
@@ -8567,7 +8568,8 @@ const Styled$n = {
8567
8568
  };
8568
8569
 
8569
8570
  const CustomSelect$4 = (props) => {
8570
- return /* @__PURE__ */ jsxRuntimeExports.jsx(Styled$n.CustomSelect, { ...props });
8571
+ const { paddingContainerEnd, ...rest } = props;
8572
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(Styled$n.CustomSelect, { $paddingContainerEnd: paddingContainerEnd, ...rest });
8571
8573
  };
8572
8574
 
8573
8575
  const CursorPointerTag = st(Tag)`
@@ -47008,7 +47010,8 @@ const EditModal = ({
47008
47010
  allowClearEditSelect,
47009
47011
  endpoint,
47010
47012
  pathToValue,
47011
- editModalWidth
47013
+ editModalWidth,
47014
+ paddingContainerEnd
47012
47015
  }) => {
47013
47016
  const queryClient = useQueryClient();
47014
47017
  const [error, setError] = useState();
@@ -47110,7 +47113,8 @@ const EditModal = ({
47110
47113
  children: typeof label === "string" ? truncate(label, maxEditTagTextLength) : "Not a string value"
47111
47114
  }
47112
47115
  ) });
47113
- }
47116
+ },
47117
+ paddingContainerEnd
47114
47118
  }
47115
47119
  )
47116
47120
  }
@@ -47139,7 +47143,8 @@ const Labels = ({ data, children }) => {
47139
47143
  allowClearEditSelect,
47140
47144
  endpoint,
47141
47145
  pathToValue,
47142
- editModalWidth
47146
+ editModalWidth,
47147
+ paddingContainerEnd
47143
47148
  } = data;
47144
47149
  const [api, contextHolder] = notification.useNotification();
47145
47150
  const [open, setOpen] = useState(false);
@@ -47232,7 +47237,8 @@ const Labels = ({ data, children }) => {
47232
47237
  allowClearEditSelect,
47233
47238
  endpoint: endpointPrepared,
47234
47239
  pathToValue: pathToValuePrepared,
47235
- editModalWidth
47240
+ editModalWidth,
47241
+ paddingContainerEnd
47236
47242
  }
47237
47243
  )
47238
47244
  ] });
@@ -47296,7 +47302,8 @@ const Labels = ({ data, children }) => {
47296
47302
  allowClearEditSelect,
47297
47303
  endpoint: endpointPrepared,
47298
47304
  pathToValue: pathToValuePrepared,
47299
- editModalWidth
47305
+ editModalWidth,
47306
+ paddingContainerEnd
47300
47307
  }
47301
47308
  )
47302
47309
  ] });