@murabei-data-science/pumpwood-ui 1.4.1 → 1.4.3

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.
@@ -1185,11 +1185,13 @@ interface IMarkdownEditorProps {
1185
1185
  error?: string;
1186
1186
  disabled?: boolean;
1187
1187
  className?: string;
1188
+ /** Toast UI theme. Defaults to following the document `.dark` class. */
1189
+ theme?: "light" | "dark";
1188
1190
  }
1189
1191
  /**
1190
1192
  * WYSIWYG markdown editor wrapper around Toast UI Editor.
1191
1193
  */
1192
- declare function MarkdownEditor({ value, onChange, placeholder, error, disabled, className, }: IMarkdownEditorProps): react_jsx_runtime.JSX.Element;
1194
+ declare function MarkdownEditor({ value, onChange, placeholder, error, disabled, className, theme, }: IMarkdownEditorProps): react_jsx_runtime.JSX.Element;
1193
1195
 
1194
1196
  declare function Loading(): react_jsx_runtime.JSX.Element;
1195
1197