@prorobotech/openapi-k8s-toolkit 1.3.0-alpha.1 → 1.3.0-alpha.2
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/dist/openapi-k8s-toolkit.es.js +4 -3
- package/dist/openapi-k8s-toolkit.es.js.map +1 -1
- package/dist/openapi-k8s-toolkit.umd.js +4 -3
- package/dist/openapi-k8s-toolkit.umd.js.map +1 -1
- package/dist/types/components/organisms/DynamicComponents/types/DropdownRedirect.d.ts +5 -0
- package/package.json +1 -1
|
@@ -76970,7 +76970,6 @@ const DefaultIframe = ({ data, children }) => {
|
|
|
76970
76970
|
const TitleSelect = styled(Select)`
|
|
76971
76971
|
&&.ant-select {
|
|
76972
76972
|
cursor: pointer;
|
|
76973
|
-
min-width: 200px;
|
|
76974
76973
|
|
|
76975
76974
|
.ant-select-selector {
|
|
76976
76975
|
border: none;
|
|
@@ -77025,7 +77024,8 @@ const DropdownRedirect = ({
|
|
|
77025
77024
|
placeholder = "Select...",
|
|
77026
77025
|
style,
|
|
77027
77026
|
showSearch = true,
|
|
77028
|
-
loading: externalLoading
|
|
77027
|
+
loading: externalLoading,
|
|
77028
|
+
popupMatchSelectWidth
|
|
77029
77029
|
} = data;
|
|
77030
77030
|
const navigate = useNavigate();
|
|
77031
77031
|
const { data: multiQueryData, isLoading: isMultiQueryLoading } = useMultiQuery();
|
|
@@ -77094,7 +77094,8 @@ const DropdownRedirect = ({
|
|
|
77094
77094
|
style,
|
|
77095
77095
|
showSearch,
|
|
77096
77096
|
filterOption: (input, option) => (option?.label ?? "").toLowerCase().includes(input.toLowerCase()),
|
|
77097
|
-
variant: "borderless"
|
|
77097
|
+
variant: "borderless",
|
|
77098
|
+
popupMatchSelectWidth
|
|
77098
77099
|
}
|
|
77099
77100
|
),
|
|
77100
77101
|
children
|