@me1a/ui 2.6.3 → 2.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts
CHANGED
|
@@ -1662,9 +1662,13 @@ interface MarkdownEditorProps {
|
|
|
1662
1662
|
* whether to focus the editor on mount
|
|
1663
1663
|
*/
|
|
1664
1664
|
autoFocus?: boolean;
|
|
1665
|
+
/**
|
|
1666
|
+
* whether to immediately render the editor
|
|
1667
|
+
*/
|
|
1668
|
+
immediatelyRender?: boolean;
|
|
1665
1669
|
}
|
|
1666
1670
|
|
|
1667
|
-
declare function MarkdownEditor({ value, onChange, className, placeholder, disabled, onKeyDown, autoFocus }: MarkdownEditorProps): react_jsx_runtime.JSX.Element | null;
|
|
1671
|
+
declare function MarkdownEditor({ value, onChange, className, placeholder, disabled, onKeyDown, autoFocus, immediatelyRender }: MarkdownEditorProps): react_jsx_runtime.JSX.Element | null;
|
|
1668
1672
|
|
|
1669
1673
|
declare const Drawer: {
|
|
1670
1674
|
({ shouldScaleBackground, ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
|