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