/* eslint-disable */ // @ts-nocheck import { AlertVariant, MenuToggle, Select, SelectList, } from "../../shared/@patternfly/react-core"; import { useState } from "react"; import { useTranslation } from "react-i18next"; import { useAdminClient } from "../admin-client"; import type { Row } from "../clients/scopes/ClientScopes"; import { useAlerts } from "../../shared/keycloak-ui-shared"; import { ClientScope, allClientScopeTypes, changeClientScope, changeScope, clientScopeTypesSelectOptions, } from "../components/client-scope/ClientScopeTypes"; type ChangeTypeDropdownProps = { clientId?: string; selectedRows: Row[]; refresh: () => void; }; export const ChangeTypeDropdown = ({ clientId, selectedRows, refresh, }: ChangeTypeDropdownProps) => { const { adminClient } = useAdminClient(); const { t } = useTranslation(); const [open, setOpen] = useState(false); const { addAlert, addError } = useAlerts(); return ( ); };