Use correct path for imports of the Admin Client (#4175)
This commit is contained in:
parent
b13bcdc020
commit
2089b2209f
9 changed files with 23 additions and 23 deletions
|
@ -1,3 +1,4 @@
|
|||
import RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/realmRepresentation";
|
||||
import {
|
||||
ActionGroup,
|
||||
Button,
|
||||
|
@ -7,7 +8,6 @@ import {
|
|||
SelectVariant,
|
||||
Switch,
|
||||
} from "@patternfly/react-core";
|
||||
import RealmRepresentation from "libs/keycloak-admin-client/lib/defs/realmRepresentation";
|
||||
import { useState } from "react";
|
||||
import { Controller, useFormContext } from "react-hook-form-v7";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
import { useState } from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { Controller, useFormContext } from "react-hook-form";
|
||||
import GroupRepresentation from "@keycloak/keycloak-admin-client/lib/defs/groupRepresentation";
|
||||
import {
|
||||
Button,
|
||||
Chip,
|
||||
|
@ -8,12 +6,14 @@ import {
|
|||
FormGroup,
|
||||
InputGroup,
|
||||
} from "@patternfly/react-core";
|
||||
import { useState } from "react";
|
||||
import { Controller, useFormContext } from "react-hook-form";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
import type { ComponentProps } from "./components";
|
||||
import { HelpItem } from "../help-enabler/HelpItem";
|
||||
import { GroupPickerDialog } from "../group/GroupPickerDialog";
|
||||
import { HelpItem } from "../help-enabler/HelpItem";
|
||||
import type { ComponentProps } from "./components";
|
||||
import { convertToName } from "./DynamicComponents";
|
||||
import GroupRepresentation from "libs/keycloak-admin-client/lib/defs/groupRepresentation";
|
||||
|
||||
export const GroupComponent = ({ name, label, helpText }: ComponentProps) => {
|
||||
const { t } = useTranslation("dynamic");
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import IdentityProviderRepresentation from "@keycloak/keycloak-admin-client/lib/defs/identityProviderRepresentation";
|
||||
import {
|
||||
ExpandableSection,
|
||||
FormGroup,
|
||||
|
@ -7,7 +8,6 @@ import {
|
|||
SelectVariant,
|
||||
ValidatedOptions,
|
||||
} from "@patternfly/react-core";
|
||||
import IdentityProviderRepresentation from "libs/keycloak-admin-client/lib/defs/identityProviderRepresentation";
|
||||
import { useState } from "react";
|
||||
import { Controller, useFormContext, useWatch } from "react-hook-form-v7";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import IdentityProviderRepresentation from "@keycloak/keycloak-admin-client/lib/defs/identityProviderRepresentation";
|
||||
import {
|
||||
ExpandableSection,
|
||||
FormGroup,
|
||||
|
@ -10,7 +11,6 @@ import { useState } from "react";
|
|||
import { Controller, useFormContext, useWatch } from "react-hook-form-v7";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
import IdentityProviderRepresentation from "libs/keycloak-admin-client/lib/defs/identityProviderRepresentation";
|
||||
import { HelpItem } from "../../components/help-enabler/HelpItem";
|
||||
import { KeycloakTextInput } from "../../components/keycloak-text-input/KeycloakTextInput";
|
||||
import { SwitchField } from "../component/SwitchField";
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import IdentityProviderRepresentation from "@keycloak/keycloak-admin-client/lib/defs/identityProviderRepresentation";
|
||||
import { FormGroup, ValidatedOptions } from "@patternfly/react-core";
|
||||
import IdentityProviderRepresentation from "libs/keycloak-admin-client/lib/defs/identityProviderRepresentation";
|
||||
import { useFormContext } from "react-hook-form-v7";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import IdentityProviderRepresentation from "@keycloak/keycloak-admin-client/lib/defs/identityProviderRepresentation";
|
||||
import { FormGroup, Switch, ValidatedOptions } from "@patternfly/react-core";
|
||||
import IdentityProviderRepresentation from "libs/keycloak-admin-client/lib/defs/identityProviderRepresentation";
|
||||
import { Controller, useFormContext } from "react-hook-form-v7";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { useState } from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import ComponentRepresentation from "@keycloak/keycloak-admin-client/lib/defs/componentRepresentation";
|
||||
import ComponentTypeRepresentation from "@keycloak/keycloak-admin-client/lib/defs/componentTypeRepresentation";
|
||||
import {
|
||||
Modal,
|
||||
ModalVariant,
|
||||
|
@ -14,13 +14,13 @@ import {
|
|||
Thead,
|
||||
Tr,
|
||||
} from "@patternfly/react-table";
|
||||
import { useState } from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
import { useServerInfo } from "../../../context/server-info/ServerInfoProvider";
|
||||
import useToggle from "../../../utils/useToggle";
|
||||
import type { IndexedValidations } from "../../NewAttributeSettings";
|
||||
import { AddValidatorRoleDialog } from "./AddValidatorRoleDialog";
|
||||
import useToggle from "../../../utils/useToggle";
|
||||
import { useServerInfo } from "../../../context/server-info/ServerInfoProvider";
|
||||
import ComponentTypeRepresentation from "@keycloak/keycloak-admin-client/lib/defs/componentTypeRepresentation";
|
||||
import ComponentRepresentation from "libs/keycloak-admin-client/lib/defs/componentRepresentation";
|
||||
|
||||
export type AddValidatorDialogProps = {
|
||||
selectedValidators: IndexedValidations[];
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
import { useTranslation } from "react-i18next";
|
||||
import { FormProvider, useForm } from "react-hook-form";
|
||||
import { Button, Form, Modal, ModalVariant } from "@patternfly/react-core";
|
||||
|
||||
import ComponentRepresentation from "@keycloak/keycloak-admin-client/lib/defs/componentRepresentation";
|
||||
import type ComponentTypeRepresentation from "@keycloak/keycloak-admin-client/lib/defs/componentTypeRepresentation";
|
||||
import { Button, Form, Modal, ModalVariant } from "@patternfly/react-core";
|
||||
import { FormProvider, useForm } from "react-hook-form";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
import { DynamicComponents } from "../../../components/dynamic/DynamicComponents";
|
||||
import ComponentRepresentation from "libs/keycloak-admin-client/lib/defs/componentRepresentation";
|
||||
|
||||
export type AddValidatorRoleDialogProps = {
|
||||
open: boolean;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import type ComponentRepresentation from "@keycloak/keycloak-admin-client/lib/defs/componentRepresentation";
|
||||
import type ComponentTypeRepresentation from "@keycloak/keycloak-admin-client/lib/defs/componentTypeRepresentation";
|
||||
import { DirectionType } from "@keycloak/keycloak-admin-client/lib/resources/userStorageProvider";
|
||||
import {
|
||||
ActionGroup,
|
||||
AlertVariant,
|
||||
|
@ -14,7 +15,6 @@ import {
|
|||
SelectVariant,
|
||||
ValidatedOptions,
|
||||
} from "@patternfly/react-core";
|
||||
import { DirectionType } from "libs/keycloak-admin-client/lib/resources/userStorageProvider";
|
||||
import { useState } from "react";
|
||||
import { Controller, FormProvider, useForm, useWatch } from "react-hook-form";
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
|
Loading…
Reference in a new issue