New translation system and filtering/group for Library Items #1

Merged
DrMint merged 7 commits from develop into main 2022-03-05 15:37:59 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 67aa30c2f7 - Show all commits

View File

@ -5,7 +5,7 @@ type ButtonProps = {
id?: string;
className?: string;
href?: string;
children: React.ReactChild | React.ReactChild[];
children: React.ReactNode;
active?: boolean;
locale?: string;
onClick?: MouseEventHandler<HTMLDivElement>;

View File

@ -1,6 +1,6 @@
type ChipProps = {
className?: string;
children: React.ReactChild | React.ReactChild[];
children: React.ReactNode;
"data-tip"?: string;
"data-for"?: string;
"data-html"?: boolean;

View File

@ -1,6 +1,6 @@
type InsetBoxProps = {
className?: string;
children: React.ReactChild | React.ReactChild[];
children: React.ReactNode;
id?: string;
};