draftify-react 0.2.9 → 0.3.1
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/draftify-react.css +1 -1
- package/dist/draftify-react.es.js +2156 -1941
- package/dist/draftify-react.umd.js +10 -10
- package/index.d.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -249,13 +249,18 @@ export interface DraftifyReactProps {
|
|
|
249
249
|
|
|
250
250
|
backgroundEnable?: boolean;
|
|
251
251
|
|
|
252
|
+
ToolBarEnable?: boolean;
|
|
253
|
+
|
|
252
254
|
DraftifyBackground?: string;
|
|
255
|
+
|
|
256
|
+
fontFamily?: string;
|
|
253
257
|
}
|
|
254
258
|
|
|
255
259
|
declare function DraftifyReact(props: DraftifyReactProps): JSX.Element;
|
|
256
260
|
|
|
257
261
|
export interface ReaderProps {
|
|
258
262
|
blocksData: DraftifyBlock[];
|
|
263
|
+
fontFamily?: string;
|
|
259
264
|
CustomOutput1?: ({
|
|
260
265
|
customBlock,
|
|
261
266
|
modifyCustom,
|