This component has been removed and not replaced. If you feel like you need this component, please open an issue on the Strapi repository to discuss your usecase.
This component aliased `Formik`, something we're working towards removing. The `Form` component and it's sibling exports from `@strapi/strapi/admin` should be used instead:
```ts
// Before
import { Form } from '@strapi/helper-plugin';
// After
import { Form } from '@strapi/strapi/admin';
```
Users should note that any use of the Formik library will no longer work & insted should look at the documentation for the `Form` component.
This component has been removed and not replaced, you should use the `EmptyStateLayout` component from `@strapi/design-system`.
### NoMedia
This component has been removed and not replaced. If you feel like you need this component, please open an issue on the Strapi repository to discuss your usecase.
### NotAllowedInput
This component has been removed and not replaced. If you feel like you need this component, please open an issue on the Strapi repository to discuss your usecase. You can easily replicate this in your own project by using the `TextInput` from `@strapi/design-system`:
```tsx
import { TextInput } from '@strapi/design-system';
const MyComponent = (props) => {
return (
<TextInputdisabledplaceholder="No permissions to see this field"type="text"{...props}/>
);
};
```
### ReactSelect
This component has been removed and not replaced. If you feel like you need this component, please open an issue on the Strapi repository to discuss your usecase.
### SettingsPageTitle
This component has been removed and not replaced. If you feel like you need this component, please open an issue on the Strapi repository to discuss your usecase.
### Status
This component should be imported from the `@strapi/design-system` package:
This function has been removed and not replaced. If you feel like you need this function, please open an issue on the Strapi repository to discuss your usecase.
### formatContentTypeData
This function has been removed and not replaced. If you feel like you need this function, please open an issue on the Strapi repository to discuss your usecase.
### useCMEditViewDataManager
This hook has been split into different hooks, each with more ability then it's previous:
- useDocument
- useDocumentLayout
- useDocumentRBAC
- useForm
```ts
// Before
import { useCMEditViewDataManager } from '@strapi/helper-plugin';
This component has been removed and not replaced. If you feel like you need this function, please open an issue on the Strapi repository to discuss your usecase.
### RemoveRoundedButton
This component has been removed and not replaced. If you feel like you need this function, please open an issue on the Strapi repository to discuss your usecase.