adou-ui
Version:
feat:修复了TagInput无法清空的问题
24 lines (23 loc) • 1.11 kB
TypeScript
import React from "react";
import "codemirror/lib/codemirror.css";
import "codemirror/theme/material.css";
import "codemirror/theme/base16-light.css";
import "codemirror/theme/base16-dark.css";
import "codemirror/mode/htmlmixed/htmlmixed";
import "codemirror/mode/css/css";
import "codemirror/mode/javascript/javascript";
import "./index.scss";
declare const _default: React.ComponentType<Omit<{
label?: string | undefined;
defaultValue?: string | undefined;
placeholder?: string | undefined;
disabled?: boolean | undefined;
mode?: "htmlmixed" | "css" | "javascript" | undefined;
theme?: "material" | "base16-light" | "base16-dark" | undefined;
lineNumbers?: boolean | undefined;
lineWrapping?: boolean | undefined;
styleActiveLine?: boolean | undefined;
onChangeOK?: ((e: React.ChangeEvent<HTMLTextAreaElement>, ...args: any) => void) | undefined;
setFormItemValue?: ((value: any) => void) | undefined;
}, keyof import("react-i18next").WithTranslation<N, undefined>> & import("react-i18next").WithTranslationProps>;
export default _default;