Skip to content

Commit

Permalink
Change types to top level export (zenoamaro#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
clinyong authored and alexkrolick committed Apr 3, 2018
1 parent 4509e0c commit edfb1e5
Showing 1 changed file with 80 additions and 56 deletions.
136 changes: 80 additions & 56 deletions types.d.ts
Original file line number Diff line number Diff line change
@@ -1,70 +1,94 @@
import * as React from "react";
import * as Quill from "quill";

export interface UnprivilegedEditor {
getLength(): number;
getText(index?: number, length?: number): string;
getHTML(): string;
getBounds(index: number, length?: number): Quill.BoundsStatic;
getSelection(focus?: boolean): Quill.RangeStatic;
getContents(index?: number, length?: number): Quill.DeltaStatic;
}
declare namespace ReactQuill {
export interface UnprivilegedEditor {
getLength(): number;
getText(index?: number, length?: number): string;
getHTML(): string;
getBounds(index: number, length?: number): Quill.BoundsStatic;
getSelection(focus?: boolean): Quill.RangeStatic;
getContents(index?: number, length?: number): Quill.DeltaStatic;
}

export interface ComponentProps {
id?: string;
className?: string;
theme?: string;
style?: React.CSSProperties;
readOnly?: boolean;
value?: string | Quill.Delta;
defaultValue?: string | Quill.Delta;
placeholder?: string;
tabIndex?: number;
bounds?: string | HTMLElement;
onChange?: (
content: string,
delta: Quill.Delta,
source: Quill.Sources,
editor: UnprivilegedEditor
) => void;
onChangeSelection?: (
range: Quill.RangeStatic,
source: Quill.Sources,
editor: UnprivilegedEditor
) => void;
onFocus?: (
range: Quill.RangeStatic,
source: Quill.Sources,
editor: UnprivilegedEditor
) => void;
onBlur?: (
previousRange: Quill.RangeStatic,
source: Quill.Sources,
editor: UnprivilegedEditor
) => void;
onKeyPress?: React.EventHandler<any>;
onKeyDown?: React.EventHandler<any>;
onKeyUp?: React.EventHandler<any>;
formats?: string[];
children?: React.ReactElement<any>;
modules?: Quill.StringMap;

export interface ComponentProps {
id?: string;
className?: string;
theme?: string;
style?: React.CSSProperties;
readOnly?: boolean;
value?: string | Quill.Delta;
defaultValue?: string | Quill.Delta;
placeholder?: string;
tabIndex?: number;
bounds?: string | HTMLElement;
onChange?: (content: string, delta: Quill.Delta, source: Quill.Sources, editor: UnprivilegedEditor) => void;
onChangeSelection?: (range: Quill.RangeStatic, source: Quill.Sources, editor: UnprivilegedEditor) => void;
onFocus?: (range: Quill.RangeStatic, source: Quill.Sources, editor: UnprivilegedEditor) => void;
onBlur?: (previousRange: Quill.RangeStatic, source: Quill.Sources, editor: UnprivilegedEditor) => void;
onKeyPress?: React.EventHandler<any>;
onKeyDown?: React.EventHandler<any>;
onKeyUp?: React.EventHandler<any>;
formats?: string[];
children?: React.ReactElement<any>;
modules?: Quill.StringMap;
/** @deprecated
* The `toolbar` prop has been deprecated. Use `modules.toolbar` instead.
* See: https://github.com/zenoamaro/react-quill#upgrading-to-react-quill-v100.
* */

/** @deprecated
* The `toolbar` prop has been deprecated. Use `modules.toolbar` instead.
* See: https://github.com/zenoamaro/react-quill#upgrading-to-react-quill-v100.
* */
toolbar?: never;
/** @deprecated
* The `styles` prop has been deprecated. Use custom stylesheets instead.
* See: https://github.com/zenoamaro/react-quill#upgrading-to-react-quill-v100
*/

toolbar?: never;
/** @deprecated
* The `styles` prop has been deprecated. Use custom stylesheets instead.
* See: https://github.com/zenoamaro/react-quill#upgrading-to-react-quill-v100
*/
styles?: never;
/**
* @deprecated
* The `pollInterval` property does not have any effect anymore.
* You can safely remove it from your props.
* See: https://github.com/zenoamaro/react-quill#upgrading-to-react-quill-v100.
*/
pollInterval?: never;
}

styles?: never;
/**
* @deprecated
* The `pollInterval` property does not have any effect anymore.
* You can safely remove it from your props.
* See: https://github.com/zenoamaro/react-quill#upgrading-to-react-quill-v100.
*/
pollInterval?: never;
export interface Mixin {
createEditor(
element: HTMLElement,
config: Quill.QuillOptionsStatic
): Quill.Quill;
hookEditor(editor: Quill.Quill): void;
unhookEditor(editor: Quill.Quill): void;
setEditorReadOnly(editor: Quill.Quill, value: boolean): void;
setEditorContents(editor: Quill.Quill, value: Quill.Delta | string): void;
setEditorSelection(editor: Quill.Quill, range: Quill.RangeStatic): void;
makeUnprivilegedEditor(editor: Quill.Quill): UnprivilegedEditor;
}
}

export default class Component extends React.Component<ComponentProps> {
declare class ReactQuill extends React.Component<ReactQuill.ComponentProps> {
focus(): void;
blur(): void;
getEditor(): Quill.Quill;
}

export interface Mixin {
createEditor(element: HTMLElement, config: Quill.QuillOptionsStatic): Quill.Quill;
hookEditor(editor: Quill.Quill): void;
unhookEditor(editor: Quill.Quill): void;
setEditorReadOnly(editor: Quill.Quill, value: boolean): void;
setEditorContents(editor: Quill.Quill, value: Quill.Delta | string): void;
setEditorSelection(editor: Quill.Quill, range: Quill.RangeStatic): void;
makeUnprivilegedEditor(editor: Quill.Quill): UnprivilegedEditor;
}
export = ReactQuill;

0 comments on commit edfb1e5

Please sign in to comment.