first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
import React, {ElementType, HTMLProps, ReactElement, ReactNode} from 'react';
import {InputSize} from './input-size';
export interface BaseFieldProps {
disabled?: boolean;
required?: boolean;
labelSuffix?: ReactNode;
labelSuffixPosition?: 'spaced' | 'inline';
autoFocus?: boolean;
autoSelectText?: boolean;
labelElementType?: ElementType;
label?: ReactNode;
labelPosition?: 'top' | 'side';
labelDisplay?: string;
size?: InputSize;
inputRadius?: 'rounded-full' | 'rounded' | 'rounded-none' | string;
inputRing?: string;
inputFontSize?: string;
inputBorder?: string;
inputShadow?: string;
invalid?: boolean;
errorMessage?: ReactNode;
description?: ReactNode;
descriptionPosition?: 'top' | 'bottom';
flexibleHeight?: boolean;
// usually an icon or icon button, displayed inside the input
startAdornment?: React.ReactNode;
endAdornment?: React.ReactNode;
adornmentPosition?: string;
// usually a text button, displayed side by side with input
startAppend?: ReactElement;
endAppend?: ReactElement;
className?: string;
inputWrapperClassName?: string;
inputClassName?: string;
unstyled?: boolean;
background?: 'bg-transparent' | 'bg-alt' | 'bg' | 'bg-white';
inputTestId?: string;
}
export interface BaseFieldPropsWithDom<T>
extends BaseFieldProps,
Omit<HTMLProps<T>, 'label' | 'size' | 'ref' | 'children'> {}