all files / common/ constant.js

100% Statements 54/54
100% Branches 0/0
100% Functions 1/1
100% Lines 54/54
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57      
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.KEY_DOWN = 'keydown';
    exports.ACTION = 'action';
    exports.FORMAT_TYPE = 'format-type';
    exports.KEY_DOWN_HANDLER = 'keydown-handler';
    exports.LIST_TYPE = 'list-type';
    exports.CODE_BLOCK = 'code-block';
    exports.KEY_UP_HANDLER = 'keyup-handler';
    exports.KEY_UP = 'keyup';
    exports.MODEL_CHANGED_PLUGIN = 'model_changed_plugin';
    exports.MODEL_CHANGED = 'model_changed';
    exports.MS_WORD_CLEANUP_PLUGIN = 'ms_word_cleanup_plugin';
    exports.MS_WORD_CLEANUP = 'ms_word_cleanup';
    exports.ON_BEGIN = 'onBegin';
    exports.SPACE_ACTION = 'actionBegin';
    exports.FORMAT_PAINTER_ACTIONS = 'format_painter_actions';
    exports.AI_ASSISTANT_ACTIONS = 'ai_assistant_actions';
    exports.BLOCKQUOTE_LIST_HANDLE = 'blockquote_list_handled';
    exports.EMOJI_PICKER_ACTIONS = 'emoji_picker_actions';
    exports.AUTO_FORMAT_ACTIONS = 'auto_format_actions';
    exports.MOUSE_DOWN = 'mouseDown';
    exports.DESTROY = 'destroy';
    exports.INTERNAL_DESTROY = 'internal_destroy';
    exports.CODEBLOCK_INDENTATION = 'codeblock_indentation';
    exports.CODEBLOCK_DISABLETOOLBAR = 'codeblock_disabletoolbar';
    exports.CLS_RTE_TABLE_RESIZE = 'e-rte-table-resize';
    exports.CLS_TB_ROW_INSERT = 'e-tb-row-insert';
    exports.CLS_TB_COL_INSERT = 'e-tb-col-insert';
    exports.CLS_TB_DASH_BOR = 'e-dashed-border';
    exports.CLS_TB_ALT_BOR = 'e-alternate-border';
    exports.CLS_TB_COL_RES = 'e-column-resize';
    exports.CLS_TB_ROW_RES = 'e-row-resize';
    exports.CLS_TB_BOX_RES = 'e-table-box';
    exports.CLS_IMG_FOCUS = 'e-img-focus';
    exports.CLS_TABLE_SEL = 'e-cell-select';
    exports.CLS_TABLE_SEL_END = 'e-cell-select-end';
    exports.CLS_TABLE_MULTI_CELL = 'e-multi-cells-select';
    exports.CLS_AUD_FOCUS = 'e-audio-focus';
    exports.CLS_VID_FOCUS = 'e-video-focus';
    exports.CLS_RTE_DRAG_IMAGE = 'e-rte-drag-image';
    exports.CLS_RESIZE = 'e-resize';
    exports.hideTableQuickToolbar = 'hideTableQuickToolbar';
    exports.touchStart = 'touchStart';
    exports.touchEnd = 'touchEnd';
    exports.cut = 'cut';
    exports.dragEnterEvent = 'dragEnter_Event';
    exports.dragOverEvent = 'dragOver_Event';
    exports.dragStartEvent = 'dragStart_Event';
    exports.dropEvent = 'drop_Event';
    exports.dragEnter = 'dragEnter';
    exports.dragDrop = 'dragDrop';
    exports.dragOver = 'dragOver';
    exports.dropEventHandler = 'drop';
});