Update from Vibe Studio

This commit is contained in:
Vibe Studio
2026-01-16 02:20:32 +00:00
parent a4605e311a
commit 71de1506ca
28603 changed files with 2179459 additions and 0 deletions

20
node_modules/antd/lib/typography/Editable.d.ts generated vendored Normal file
View File

@@ -0,0 +1,20 @@
import * as React from 'react';
import type { TextAreaProps } from 'rc-textarea';
import type { DirectionType } from '../config-provider';
interface EditableProps {
prefixCls: string;
value: string;
'aria-label'?: string;
onSave: (value: string) => void;
onCancel: () => void;
onEnd?: () => void;
className?: string;
style?: React.CSSProperties;
direction?: DirectionType;
maxLength?: number;
autoSize?: TextAreaProps['autoSize'];
enterIcon?: React.ReactNode;
component?: string;
}
declare const Editable: React.FC<EditableProps>;
export default Editable;