Introduce new combobox and make it work with chip input

We introduced a new accessible combobox component. This component is based on headless ui and made compatible with our components and forms. Also we replaced the outdated `Autocomplete` component with the new combobox.

Co-authored-by: Konstantin Schaper <konstantin.schaper@cloudogu.com>

Reviewed-by: Florian Scholdei <florian.scholdei@cloudogu.com>
This commit is contained in:
Eduard Heimbuch
2023-06-19 13:04:26 +02:00
parent e4d846b0d4
commit bc2a599b2c
39 changed files with 1119 additions and 276 deletions

View File

@@ -25,6 +25,12 @@ import React, { FC } from "react";
import UserGroupAutocomplete, { AutocompleteProps } from "./UserGroupAutocomplete";
import { useTranslation } from "react-i18next";
/**
* @deprecated
* @since 2.45.0
*
* Use {@link Combobox} instead
*/
const GroupAutocomplete: FC<AutocompleteProps> = (props) => {
const [t] = useTranslation("commons");
return (