all files / rich-text-editor/base/ enum.js

100% Statements 31/31
100% Branches 8/8
100% Functions 5/5
100% Lines 31/31
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38              
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var RenderType;
    (function (RenderType) {
        RenderType[RenderType["Toolbar"] = 0] = "Toolbar";
        RenderType[RenderType["Content"] = 1] = "Content";
        RenderType[RenderType["Popup"] = 2] = "Popup";
        RenderType[RenderType["LinkToolbar"] = 3] = "LinkToolbar";
        RenderType[RenderType["TextToolbar"] = 4] = "TextToolbar";
        RenderType[RenderType["ImageToolbar"] = 5] = "ImageToolbar";
        RenderType[RenderType["AudioToolbar"] = 6] = "AudioToolbar";
        RenderType[RenderType["VideoToolbar"] = 7] = "VideoToolbar";
        RenderType[RenderType["InlineToolbar"] = 8] = "InlineToolbar";
        RenderType[RenderType["TableToolbar"] = 9] = "TableToolbar";
    })(RenderType = exports.RenderType || (exports.RenderType = {}));
    var ToolbarType;
    (function (ToolbarType) {
        ToolbarType["Expand"] = "Expand";
        ToolbarType["MultiRow"] = "MultiRow";
        ToolbarType["Scrollable"] = "Scrollable";
    })(ToolbarType = exports.ToolbarType || (exports.ToolbarType = {}));
    var DialogType;
    (function (DialogType) {
        DialogType["InsertLink"] = "InsertLink";
        DialogType["InsertImage"] = "InsertImage";
        DialogType["InsertAudio"] = "InsertAudio";
        DialogType["InsertVideo"] = "InsertVideo";
        DialogType["InsertTable"] = "InsertTable";
    })(DialogType = exports.DialogType || (exports.DialogType = {}));
    var ImageInputSource;
    (function (ImageInputSource) {
        ImageInputSource["Uploaded"] = "Uploaded";
        ImageInputSource["Dropped"] = "Dropped";
        ImageInputSource["Pasted"] = "Pasted";
    })(ImageInputSource = exports.ImageInputSource || (exports.ImageInputSource = {}));
});