Sha256: ae296ad1ced4c7b4963e3ee23ecf780e8d0837e94577435f83cc75bae72aa6df

Contents?: true

Size: 838 Bytes

Versions: 2

Compression:

Stored size: 838 Bytes

Contents

import React from 'react';
import { GlobalProps } from '../utilities/globalProps';
declare type RichTextEditorProps = {
    aria?: {
        [key: string]: string;
    };
    advancedEditor?: any;
    advancedEditorToolbar?: boolean;
    toolbarBottom?: Boolean;
    children?: React.ReactNode | React.ReactNode[];
    className?: string;
    data?: {
        [key: string]: string;
    };
    focus?: boolean;
    id?: string;
    inline?: boolean;
    extensions?: {
        [key: string]: string;
    }[];
    name?: string;
    onChange: (html: string, text: string) => void;
    placeholder?: string;
    simple?: boolean;
    sticky?: boolean;
    template: string;
    value?: string;
    maxWidth?: string;
} & GlobalProps;
declare const RichTextEditor: (props: RichTextEditorProps) => JSX.Element;
export default RichTextEditor;

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
playbook_ui-13.12.0.pre.alpha.PLAY1081exporttypes1609 app/pb_kits/playbook/pb_rich_text_editor/_rich_text_editor.d.ts
playbook_ui-13.12.0.pre.alpha.PLAY1081exporttypes1608 app/pb_kits/playbook/pb_rich_text_editor/_rich_text_editor.d.ts