57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import * as _chakra_ui_styled_system from '@chakra-ui/styled-system';
|
|
|
|
declare const editableTheme: {
|
|
baseStyle?: {
|
|
preview: {
|
|
borderRadius: string;
|
|
py: string;
|
|
transitionProperty: string;
|
|
transitionDuration: string;
|
|
};
|
|
input: {
|
|
borderRadius: string;
|
|
py: string;
|
|
transitionProperty: string;
|
|
transitionDuration: string;
|
|
width: string;
|
|
_focusVisible: {
|
|
boxShadow: string;
|
|
};
|
|
_placeholder: {
|
|
opacity: number;
|
|
};
|
|
};
|
|
textarea: {
|
|
borderRadius: string;
|
|
py: string;
|
|
transitionProperty: string;
|
|
transitionDuration: string;
|
|
width: string;
|
|
_focusVisible: {
|
|
boxShadow: string;
|
|
};
|
|
_placeholder: {
|
|
opacity: number;
|
|
};
|
|
};
|
|
} | undefined;
|
|
sizes?: {
|
|
[key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
|
|
keys: ("textarea" | "preview" | "input")[];
|
|
}>;
|
|
} | undefined;
|
|
variants?: {
|
|
[key: string]: _chakra_ui_styled_system.PartsStyleInterpolation<{
|
|
keys: ("textarea" | "preview" | "input")[];
|
|
}>;
|
|
} | undefined;
|
|
defaultProps?: {
|
|
size?: string | number | undefined;
|
|
variant?: string | number | undefined;
|
|
colorScheme?: string | undefined;
|
|
} | undefined;
|
|
parts: ("textarea" | "preview" | "input")[];
|
|
};
|
|
|
|
export { editableTheme };
|