This commit is contained in:
2025-10-18 01:46:46 +03:00
commit 9baa68258e
74 changed files with 29125 additions and 0 deletions

View File

@ -0,0 +1,8 @@
import { Checkbox, CheckboxProps } from '@mantine/core';
type Props = CheckboxProps;
const BooleanField = (props: Props) => {
return <Checkbox {...props} />;
};
export default BooleanField;

View File

@ -0,0 +1,9 @@
import { NumberInput, NumberInputProps } from '@mantine/core';
type Props = NumberInputProps;
const NumberField = (props: Props) => {
return <NumberInput hideControls {...props} />;
};
export default NumberField;

View File

@ -0,0 +1,9 @@
import { TextInput, TextInputProps } from '@mantine/core';
type Props = TextInputProps;
const StringField = (props: Props) => {
return <TextInput {...props} />;
};
export default StringField