@progress/kendo-react-editor 14.5.0-develop.9 → 15.0.0-develop.2
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/Editor.js +1 -1
- package/Editor.mjs +94 -78
- package/EditorMcpWrapper.d.ts +17 -0
- package/EditorMcpWrapper.js +8 -0
- package/EditorMcpWrapper.mjs +18 -0
- package/EditorProps.d.ts +17 -0
- package/README.md +4 -4
- package/dist/cdn/js/kendo-react-editor.js +1 -1
- package/index.d.mts +5 -3
- package/index.d.ts +5 -3
- package/index.js +1 -1
- package/index.mjs +138 -136
- package/messages/index.d.ts +4 -0
- package/messages/index.js +1 -1
- package/messages/index.mjs +202 -198
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +12 -12
- package/tools/align.js +1 -1
- package/tools/align.mjs +19 -18
- package/tools/indent.js +1 -1
- package/tools/indent.mjs +18 -17
- package/tools/inlineFormat.js +1 -1
- package/tools/inlineFormat.mjs +23 -22
- package/tools/outdent.js +1 -1
- package/tools/outdent.mjs +23 -22
- package/tools/proseMirrorTool.js +1 -1
- package/tools/proseMirrorTool.mjs +19 -18
package/index.d.mts
CHANGED
|
@@ -5,15 +5,17 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { Editor } from './Editor.js';
|
|
8
|
+
import { Editor as EditorClassComponent } from './Editor.js';
|
|
9
9
|
import { EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, EditorExecuteEvent, EditorFocusEvent, EditorBlurEvent, EditorIFrameInitEvent } from './EditorProps';
|
|
10
|
+
import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, MarkSpec, Schema, NodeType, NodeSpec, MarkType, ContentMatch, DOMParser, DOMSerializer, Transform, Step, StepResult, joinPoint, canJoin, canSplit, insertPoint, dropPoint, liftTarget, findWrapping, StepMap, MapResult, Mapping, AddMarkStep, RemoveMarkStep, ReplaceStep, ReplaceAroundStep, replaceStep, wrapIn, setBlockType, toggleMark, autoJoin, chainCommands, history, undoDepth, redoDepth, InputRule, inputRules, wrappingInputRule, textblockTypeInputRule, keymap, keydownHandler, addListNodes, wrapInList, splitListItem, liftListItem, sinkListItem, dropCursor, gapCursor, tableEditing, fixTables, cellAround, isInTable, selectionCell, moveCellForward, inSameTable, findCell, colCount, nextCell, removeColSpan, addColSpan, columnIsHeader, tableNodes, tableNodeTypes, CellSelection, TableMap, columnResizing, updateColumnsOnResize, selectedRect, addColumn, rowIsHeader, addRow, deleteRow, mergeCells, splitCell, splitCellWithType, setCellAttr, toggleHeader, goToNextCell, deleteTable, getHtml, parseContent } from '@progress/kendo-editor-common';
|
|
10
11
|
import { EditorTools } from './tools/index.js';
|
|
11
12
|
import { EditorToolsSettings } from './config/toolsSettings.js';
|
|
12
13
|
import { EditorUtils } from './utils/index.js';
|
|
13
14
|
import { EditorDialogs } from './dialogs/index.js';
|
|
14
15
|
import { editorPropsKey } from './utils/props-key.js';
|
|
15
16
|
import { nodes, marks } from './config/schema';
|
|
16
|
-
|
|
17
|
+
declare const Editor: import('react').ForwardRefExoticComponent<EditorProps & import('react').RefAttributes<EditorClassComponent>>;
|
|
18
|
+
type Editor = EditorClassComponent;
|
|
17
19
|
export { type Shortcuts } from './config/shortcuts.js';
|
|
18
20
|
export { type PasteCleanupSettings } from './config/pasteSettings';
|
|
19
21
|
/**
|
|
@@ -180,4 +182,4 @@ export declare const ProseMirror: {
|
|
|
180
182
|
goToNextCell: typeof goToNextCell;
|
|
181
183
|
deleteTable: typeof deleteTable;
|
|
182
184
|
};
|
|
183
|
-
export { Editor, EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, EditorExecuteEvent, EditorFocusEvent, EditorBlurEvent, EditorIFrameInitEvent, EditorTools, EditorToolsSettings, EditorUtils, EditorDialogs, NodeSpec, MarkSpec, nodes, marks, getHtml, parseContent, editorPropsKey };
|
|
185
|
+
export { Editor, EditorClassComponent, EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, EditorExecuteEvent, EditorFocusEvent, EditorBlurEvent, EditorIFrameInitEvent, EditorTools, EditorToolsSettings, EditorUtils, EditorDialogs, NodeSpec, MarkSpec, nodes, marks, getHtml, parseContent, editorPropsKey };
|
package/index.d.ts
CHANGED
|
@@ -5,15 +5,17 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { Editor } from './Editor.js';
|
|
8
|
+
import { Editor as EditorClassComponent } from './Editor.js';
|
|
9
9
|
import { EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, EditorExecuteEvent, EditorFocusEvent, EditorBlurEvent, EditorIFrameInitEvent } from './EditorProps';
|
|
10
|
+
import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, MarkSpec, Schema, NodeType, NodeSpec, MarkType, ContentMatch, DOMParser, DOMSerializer, Transform, Step, StepResult, joinPoint, canJoin, canSplit, insertPoint, dropPoint, liftTarget, findWrapping, StepMap, MapResult, Mapping, AddMarkStep, RemoveMarkStep, ReplaceStep, ReplaceAroundStep, replaceStep, wrapIn, setBlockType, toggleMark, autoJoin, chainCommands, history, undoDepth, redoDepth, InputRule, inputRules, wrappingInputRule, textblockTypeInputRule, keymap, keydownHandler, addListNodes, wrapInList, splitListItem, liftListItem, sinkListItem, dropCursor, gapCursor, tableEditing, fixTables, cellAround, isInTable, selectionCell, moveCellForward, inSameTable, findCell, colCount, nextCell, removeColSpan, addColSpan, columnIsHeader, tableNodes, tableNodeTypes, CellSelection, TableMap, columnResizing, updateColumnsOnResize, selectedRect, addColumn, rowIsHeader, addRow, deleteRow, mergeCells, splitCell, splitCellWithType, setCellAttr, toggleHeader, goToNextCell, deleteTable, getHtml, parseContent } from '@progress/kendo-editor-common';
|
|
10
11
|
import { EditorTools } from './tools/index.js';
|
|
11
12
|
import { EditorToolsSettings } from './config/toolsSettings.js';
|
|
12
13
|
import { EditorUtils } from './utils/index.js';
|
|
13
14
|
import { EditorDialogs } from './dialogs/index.js';
|
|
14
15
|
import { editorPropsKey } from './utils/props-key.js';
|
|
15
16
|
import { nodes, marks } from './config/schema';
|
|
16
|
-
|
|
17
|
+
declare const Editor: import('react').ForwardRefExoticComponent<EditorProps & import('react').RefAttributes<EditorClassComponent>>;
|
|
18
|
+
type Editor = EditorClassComponent;
|
|
17
19
|
export { type Shortcuts } from './config/shortcuts.js';
|
|
18
20
|
export { type PasteCleanupSettings } from './config/pasteSettings';
|
|
19
21
|
/**
|
|
@@ -180,4 +182,4 @@ export declare const ProseMirror: {
|
|
|
180
182
|
goToNextCell: typeof goToNextCell;
|
|
181
183
|
deleteTable: typeof deleteTable;
|
|
182
184
|
};
|
|
183
|
-
export { Editor, EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, EditorExecuteEvent, EditorFocusEvent, EditorBlurEvent, EditorIFrameInitEvent, EditorTools, EditorToolsSettings, EditorUtils, EditorDialogs, NodeSpec, MarkSpec, nodes, marks, getHtml, parseContent, editorPropsKey };
|
|
185
|
+
export { Editor, EditorClassComponent, EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, EditorExecuteEvent, EditorFocusEvent, EditorBlurEvent, EditorIFrameInitEvent, EditorTools, EditorToolsSettings, EditorUtils, EditorDialogs, NodeSpec, MarkSpec, nodes, marks, getHtml, parseContent, editorPropsKey };
|
package/index.js
CHANGED
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
"use client";
|
|
9
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./Editor.js"),o=require("./tools/index.js"),
|
|
9
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./Editor.js"),o=require("./EditorMcpWrapper.js"),e=require("@progress/kendo-editor-common"),l=require("./tools/index.js"),r=require("./config/toolsSettings.js"),n=require("./utils/index.js"),i=require("./dialogs/index.js"),a=require("./utils/props-key.js"),d=o.EditorWrapper,s={Selection:e.Selection,SelectionRange:e.SelectionRange,TextSelection:e.TextSelection,NodeSelection:e.NodeSelection,AllSelection:e.AllSelection,EditorState:e.EditorState,Plugin:e.Plugin,PluginKey:e.PluginKey,Transaction:e.Transaction,Decoration:e.Decoration,DecorationSet:e.DecorationSet,EditorView:e.EditorView,Node:e.Node,ResolvedPos:e.ResolvedPos,NodeRange:e.NodeRange,Fragment:e.Fragment,Slice:e.Slice,ReplaceError:e.ReplaceError,Mark:e.Mark,Schema:e.Schema,NodeType:e.NodeType,MarkType:e.MarkType,ContentMatch:e.ContentMatch,DOMParser:e.DOMParser,DOMSerializer:e.DOMSerializer,Transform:e.Transform,Step:e.Step,StepResult:e.StepResult,joinPoint:e.joinPoint,canJoin:e.canJoin,canSplit:e.canSplit,insertPoint:e.insertPoint,dropPoint:e.dropPoint,liftTarget:e.liftTarget,findWrapping:e.findWrapping,StepMap:e.StepMap,MapResult:e.MapResult,Mapping:e.Mapping,AddMarkStep:e.AddMarkStep,RemoveMarkStep:e.RemoveMarkStep,ReplaceStep:e.ReplaceStep,ReplaceAroundStep:e.ReplaceAroundStep,replaceStep:e.replaceStep,deleteSelection:e.deleteSelection,joinBackward:e.joinBackward,selectNodeBackward:e.selectNodeBackward,joinForward:e.joinForward,selectNodeForward:e.selectNodeForward,joinUp:e.joinUp,joinDown:e.joinDown,lift:e.lift,newlineInCode:e.newlineInCode,exitCode:e.exitCode,createParagraphNear:e.createParagraphNear,liftEmptyBlock:e.liftEmptyBlock,splitBlock:e.splitBlock,splitBlockKeepMarks:e.splitBlockKeepMarks,selectParentNode:e.selectParentNode,selectAll:e.selectAll,wrapIn:e.wrapIn,setBlockType:e.setBlockType,toggleMark:e.toggleMark,autoJoin:e.autoJoin,chainCommands:e.chainCommands,pcBaseKeymap:e.pcBaseKeymap,macBaseKeymap:e.macBaseKeymap,baseKeymap:e.baseKeymap,history:e.history,undo:e.undo,redo:e.redo,undoDepth:e.undoDepth,redoDepth:e.redoDepth,InputRule:e.InputRule,inputRules:e.inputRules,undoInputRule:e.undoInputRule,emDash:e.emDash,ellipsis:e.ellipsis,openDoubleQuote:e.openDoubleQuote,closeDoubleQuote:e.closeDoubleQuote,openSingleQuote:e.openSingleQuote,closeSingleQuote:e.closeSingleQuote,smartQuotes:e.smartQuotes,wrappingInputRule:e.wrappingInputRule,textblockTypeInputRule:e.textblockTypeInputRule,keymap:e.keymap,keydownHandler:e.keydownHandler,orderedList:e.orderedList,bulletList:e.bulletList,listItem:e.listItem,addListNodes:e.addListNodes,wrapInList:e.wrapInList,splitListItem:e.splitListItem,liftListItem:e.liftListItem,sinkListItem:e.sinkListItem,dropCursor:e.dropCursor,gapCursor:e.gapCursor,tableEditing:e.tableEditing,fixTables:e.fixTables,fixTablesKey:e.fixTablesKey,cellAround:e.cellAround,isInTable:e.isInTable,selectionCell:e.selectionCell,moveCellForward:e.moveCellForward,inSameTable:e.inSameTable,findCell:e.findCell,colCount:e.colCount,nextCell:e.nextCell,removeColSpan:e.removeColSpan,addColSpan:e.addColSpan,columnIsHeader:e.columnIsHeader,tableNodes:e.tableNodes,tableNodeTypes:e.tableNodeTypes,CellSelection:e.CellSelection,TableMap:e.TableMap,tableEditingKey:e.tableEditingKey,columnResizing:e.columnResizing,columnResizingPluginKey:e.columnResizingPluginKey,updateColumnsOnResize:e.updateColumnsOnResize,selectedRect:e.selectedRect,addColumn:e.addColumn,addColumnBefore:e.addColumnBefore,addColumnAfter:e.addColumnAfter,deleteColumn:e.deleteColumn,rowIsHeader:e.rowIsHeader,addRow:e.addRow,addRowBefore:e.addRowBefore,addRowAfter:e.addRowAfter,deleteRow:e.deleteRow,mergeCells:e.mergeCells,splitCell:e.splitCell,splitCellWithType:e.splitCellWithType,setCellAttr:e.setCellAttr,toggleHeader:e.toggleHeader,toggleHeaderRow:e.toggleHeaderRow,toggleHeaderColumn:e.toggleHeaderColumn,toggleHeaderCell:e.toggleHeaderCell,goToNextCell:e.goToNextCell,deleteTable:e.deleteTable};exports.EditorClassComponent=t.Editor;Object.defineProperty(exports,"getHtml",{enumerable:!0,get:()=>e.getHtml});Object.defineProperty(exports,"marks",{enumerable:!0,get:()=>e.marks});Object.defineProperty(exports,"nodes",{enumerable:!0,get:()=>e.nodes});Object.defineProperty(exports,"parseContent",{enumerable:!0,get:()=>e.parseContent});Object.defineProperty(exports,"EditorTools",{enumerable:!0,get:()=>l.EditorTools});Object.defineProperty(exports,"EditorToolsSettings",{enumerable:!0,get:()=>r.EditorToolsSettings});Object.defineProperty(exports,"EditorUtils",{enumerable:!0,get:()=>n.EditorUtils});Object.defineProperty(exports,"EditorDialogs",{enumerable:!0,get:()=>i.EditorDialogs});exports.editorPropsKey=a.editorPropsKey;exports.Editor=d;exports.ProseMirror=s;
|
package/index.mjs
CHANGED
|
@@ -6,176 +6,178 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
"use client";
|
|
9
|
-
import { Editor as
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
|
|
9
|
+
import { Editor as Qo } from "./Editor.mjs";
|
|
10
|
+
import { EditorWrapper as e } from "./EditorMcpWrapper.mjs";
|
|
11
|
+
import { deleteTable as o, goToNextCell as t, toggleHeaderCell as l, toggleHeaderColumn as r, toggleHeaderRow as a, toggleHeader as i, setCellAttr as n, splitCellWithType as d, splitCell as p, mergeCells as s, deleteRow as c, addRowAfter as m, addRowBefore as u, addRow as g, rowIsHeader as C, deleteColumn as S, addColumnAfter as R, addColumnBefore as f, addColumn as T, selectedRect as w, updateColumnsOnResize as y, columnResizingPluginKey as k, columnResizing as b, tableEditingKey as x, TableMap as E, CellSelection as I, tableNodeTypes as M, tableNodes as N, columnIsHeader as P, addColSpan as D, removeColSpan as B, nextCell as h, colCount as K, findCell as A, inSameTable as H, moveCellForward as L, selectionCell as j, isInTable as Q, cellAround as v, fixTablesKey as z, fixTables as F, tableEditing as O, gapCursor as W, dropCursor as J, sinkListItem as U, liftListItem as V, splitListItem as q, wrapInList as G, addListNodes as X, listItem as Y, bulletList as Z, orderedList as _, keydownHandler as $, keymap as ee, textblockTypeInputRule as oe, wrappingInputRule as te, smartQuotes as le, closeSingleQuote as re, openSingleQuote as ae, closeDoubleQuote as ie, openDoubleQuote as ne, ellipsis as de, emDash as pe, undoInputRule as se, inputRules as ce, InputRule as me, redoDepth as ue, undoDepth as ge, redo as Ce, undo as Se, history as Re, baseKeymap as fe, macBaseKeymap as Te, pcBaseKeymap as we, chainCommands as ye, autoJoin as ke, toggleMark as be, setBlockType as xe, wrapIn as Ee, selectAll as Ie, selectParentNode as Me, splitBlockKeepMarks as Ne, splitBlock as Pe, liftEmptyBlock as De, createParagraphNear as Be, exitCode as he, newlineInCode as Ke, lift as Ae, joinDown as He, joinUp as Le, selectNodeForward as je, joinForward as Qe, selectNodeBackward as ve, joinBackward as ze, deleteSelection as Fe, replaceStep as Oe, ReplaceAroundStep as We, ReplaceStep as Je, RemoveMarkStep as Ue, AddMarkStep as Ve, Mapping as qe, MapResult as Ge, StepMap as Xe, findWrapping as Ye, liftTarget as Ze, dropPoint as _e, insertPoint as $e, canSplit as eo, canJoin as oo, joinPoint as to, StepResult as lo, Step as ro, Transform as ao, DOMSerializer as io, DOMParser as no, ContentMatch as po, MarkType as so, NodeType as co, Schema as mo, Mark as uo, ReplaceError as go, Slice as Co, Fragment as So, NodeRange as Ro, ResolvedPos as fo, Node as To, EditorView as wo, DecorationSet as yo, Decoration as ko, Transaction as bo, PluginKey as xo, Plugin as Eo, EditorState as Io, AllSelection as Mo, NodeSelection as No, TextSelection as Po, SelectionRange as Do, Selection as Bo } from "@progress/kendo-editor-common";
|
|
12
|
+
import { getHtml as zo, marks as Fo, nodes as Oo, parseContent as Wo } from "@progress/kendo-editor-common";
|
|
13
|
+
import { EditorTools as Uo } from "./tools/index.mjs";
|
|
14
|
+
import { EditorToolsSettings as qo } from "./config/toolsSettings.mjs";
|
|
15
|
+
import { EditorUtils as Xo } from "./utils/index.mjs";
|
|
16
|
+
import { EditorDialogs as Zo } from "./dialogs/index.mjs";
|
|
17
|
+
import { editorPropsKey as $o } from "./utils/props-key.mjs";
|
|
18
|
+
const Ao = e, Ho = {
|
|
18
19
|
// prosemirror-state
|
|
19
|
-
Selection:
|
|
20
|
+
Selection: Bo,
|
|
20
21
|
SelectionRange: Do,
|
|
21
22
|
TextSelection: Po,
|
|
22
23
|
NodeSelection: No,
|
|
23
24
|
AllSelection: Mo,
|
|
24
25
|
EditorState: Io,
|
|
25
|
-
Plugin:
|
|
26
|
-
PluginKey:
|
|
27
|
-
Transaction:
|
|
26
|
+
Plugin: Eo,
|
|
27
|
+
PluginKey: xo,
|
|
28
|
+
Transaction: bo,
|
|
28
29
|
// prosemirror-view
|
|
29
|
-
Decoration:
|
|
30
|
-
DecorationSet:
|
|
31
|
-
EditorView:
|
|
30
|
+
Decoration: ko,
|
|
31
|
+
DecorationSet: yo,
|
|
32
|
+
EditorView: wo,
|
|
32
33
|
// prosemirror-model
|
|
33
|
-
Node:
|
|
34
|
-
ResolvedPos:
|
|
35
|
-
NodeRange:
|
|
36
|
-
Fragment:
|
|
37
|
-
Slice:
|
|
38
|
-
ReplaceError:
|
|
39
|
-
Mark:
|
|
40
|
-
Schema:
|
|
41
|
-
NodeType:
|
|
42
|
-
MarkType:
|
|
43
|
-
ContentMatch:
|
|
34
|
+
Node: To,
|
|
35
|
+
ResolvedPos: fo,
|
|
36
|
+
NodeRange: Ro,
|
|
37
|
+
Fragment: So,
|
|
38
|
+
Slice: Co,
|
|
39
|
+
ReplaceError: go,
|
|
40
|
+
Mark: uo,
|
|
41
|
+
Schema: mo,
|
|
42
|
+
NodeType: co,
|
|
43
|
+
MarkType: so,
|
|
44
|
+
ContentMatch: po,
|
|
44
45
|
DOMParser: no,
|
|
45
|
-
DOMSerializer:
|
|
46
|
+
DOMSerializer: io,
|
|
46
47
|
// prosemirror-transform
|
|
47
|
-
Transform:
|
|
48
|
-
Step:
|
|
49
|
-
StepResult:
|
|
50
|
-
joinPoint:
|
|
51
|
-
canJoin:
|
|
52
|
-
canSplit:
|
|
53
|
-
insertPoint:
|
|
54
|
-
dropPoint:
|
|
55
|
-
liftTarget:
|
|
56
|
-
findWrapping:
|
|
57
|
-
StepMap:
|
|
58
|
-
MapResult:
|
|
59
|
-
Mapping:
|
|
60
|
-
AddMarkStep:
|
|
48
|
+
Transform: ao,
|
|
49
|
+
Step: ro,
|
|
50
|
+
StepResult: lo,
|
|
51
|
+
joinPoint: to,
|
|
52
|
+
canJoin: oo,
|
|
53
|
+
canSplit: eo,
|
|
54
|
+
insertPoint: $e,
|
|
55
|
+
dropPoint: _e,
|
|
56
|
+
liftTarget: Ze,
|
|
57
|
+
findWrapping: Ye,
|
|
58
|
+
StepMap: Xe,
|
|
59
|
+
MapResult: Ge,
|
|
60
|
+
Mapping: qe,
|
|
61
|
+
AddMarkStep: Ve,
|
|
61
62
|
RemoveMarkStep: Ue,
|
|
62
63
|
ReplaceStep: Je,
|
|
63
|
-
ReplaceAroundStep:
|
|
64
|
-
replaceStep:
|
|
64
|
+
ReplaceAroundStep: We,
|
|
65
|
+
replaceStep: Oe,
|
|
65
66
|
// prosemirror-commands
|
|
66
|
-
deleteSelection:
|
|
67
|
-
joinBackward:
|
|
68
|
-
selectNodeBackward:
|
|
69
|
-
joinForward:
|
|
70
|
-
selectNodeForward:
|
|
71
|
-
joinUp:
|
|
72
|
-
joinDown:
|
|
73
|
-
lift:
|
|
74
|
-
newlineInCode:
|
|
75
|
-
exitCode:
|
|
76
|
-
createParagraphNear:
|
|
67
|
+
deleteSelection: Fe,
|
|
68
|
+
joinBackward: ze,
|
|
69
|
+
selectNodeBackward: ve,
|
|
70
|
+
joinForward: Qe,
|
|
71
|
+
selectNodeForward: je,
|
|
72
|
+
joinUp: Le,
|
|
73
|
+
joinDown: He,
|
|
74
|
+
lift: Ae,
|
|
75
|
+
newlineInCode: Ke,
|
|
76
|
+
exitCode: he,
|
|
77
|
+
createParagraphNear: Be,
|
|
77
78
|
liftEmptyBlock: De,
|
|
78
79
|
splitBlock: Pe,
|
|
79
80
|
splitBlockKeepMarks: Ne,
|
|
80
81
|
selectParentNode: Me,
|
|
81
82
|
selectAll: Ie,
|
|
82
|
-
wrapIn:
|
|
83
|
-
setBlockType:
|
|
84
|
-
toggleMark:
|
|
85
|
-
autoJoin:
|
|
86
|
-
chainCommands:
|
|
87
|
-
pcBaseKeymap:
|
|
88
|
-
macBaseKeymap:
|
|
89
|
-
baseKeymap:
|
|
83
|
+
wrapIn: Ee,
|
|
84
|
+
setBlockType: xe,
|
|
85
|
+
toggleMark: be,
|
|
86
|
+
autoJoin: ke,
|
|
87
|
+
chainCommands: ye,
|
|
88
|
+
pcBaseKeymap: we,
|
|
89
|
+
macBaseKeymap: Te,
|
|
90
|
+
baseKeymap: fe,
|
|
90
91
|
// prosemirror-history
|
|
91
|
-
history:
|
|
92
|
-
undo:
|
|
93
|
-
redo:
|
|
94
|
-
undoDepth:
|
|
95
|
-
redoDepth:
|
|
92
|
+
history: Re,
|
|
93
|
+
undo: Se,
|
|
94
|
+
redo: Ce,
|
|
95
|
+
undoDepth: ge,
|
|
96
|
+
redoDepth: ue,
|
|
96
97
|
// prosemirror-inputrules
|
|
97
|
-
InputRule:
|
|
98
|
-
inputRules:
|
|
99
|
-
undoInputRule:
|
|
100
|
-
emDash:
|
|
101
|
-
ellipsis:
|
|
98
|
+
InputRule: me,
|
|
99
|
+
inputRules: ce,
|
|
100
|
+
undoInputRule: se,
|
|
101
|
+
emDash: pe,
|
|
102
|
+
ellipsis: de,
|
|
102
103
|
openDoubleQuote: ne,
|
|
103
|
-
closeDoubleQuote:
|
|
104
|
-
openSingleQuote:
|
|
105
|
-
closeSingleQuote:
|
|
106
|
-
smartQuotes:
|
|
107
|
-
wrappingInputRule:
|
|
108
|
-
textblockTypeInputRule:
|
|
104
|
+
closeDoubleQuote: ie,
|
|
105
|
+
openSingleQuote: ae,
|
|
106
|
+
closeSingleQuote: re,
|
|
107
|
+
smartQuotes: le,
|
|
108
|
+
wrappingInputRule: te,
|
|
109
|
+
textblockTypeInputRule: oe,
|
|
109
110
|
// prosemirror-keymap
|
|
110
|
-
keymap:
|
|
111
|
-
keydownHandler:
|
|
111
|
+
keymap: ee,
|
|
112
|
+
keydownHandler: $,
|
|
112
113
|
// prosemirror-schema-list
|
|
113
|
-
orderedList:
|
|
114
|
-
bulletList:
|
|
115
|
-
listItem:
|
|
116
|
-
addListNodes:
|
|
117
|
-
wrapInList:
|
|
118
|
-
splitListItem:
|
|
119
|
-
liftListItem:
|
|
114
|
+
orderedList: _,
|
|
115
|
+
bulletList: Z,
|
|
116
|
+
listItem: Y,
|
|
117
|
+
addListNodes: X,
|
|
118
|
+
wrapInList: G,
|
|
119
|
+
splitListItem: q,
|
|
120
|
+
liftListItem: V,
|
|
120
121
|
sinkListItem: U,
|
|
121
122
|
// prosemirror-dropcursor
|
|
122
123
|
dropCursor: J,
|
|
123
124
|
// prosemirror-gapcursor
|
|
124
|
-
gapCursor:
|
|
125
|
+
gapCursor: W,
|
|
125
126
|
// prosemirror-tables
|
|
126
|
-
tableEditing:
|
|
127
|
-
fixTables:
|
|
128
|
-
fixTablesKey:
|
|
129
|
-
cellAround:
|
|
130
|
-
isInTable:
|
|
131
|
-
selectionCell:
|
|
132
|
-
moveCellForward:
|
|
133
|
-
inSameTable:
|
|
134
|
-
findCell:
|
|
135
|
-
colCount:
|
|
136
|
-
nextCell:
|
|
137
|
-
removeColSpan:
|
|
127
|
+
tableEditing: O,
|
|
128
|
+
fixTables: F,
|
|
129
|
+
fixTablesKey: z,
|
|
130
|
+
cellAround: v,
|
|
131
|
+
isInTable: Q,
|
|
132
|
+
selectionCell: j,
|
|
133
|
+
moveCellForward: L,
|
|
134
|
+
inSameTable: H,
|
|
135
|
+
findCell: A,
|
|
136
|
+
colCount: K,
|
|
137
|
+
nextCell: h,
|
|
138
|
+
removeColSpan: B,
|
|
138
139
|
addColSpan: D,
|
|
139
140
|
columnIsHeader: P,
|
|
140
141
|
tableNodes: N,
|
|
141
142
|
tableNodeTypes: M,
|
|
142
143
|
CellSelection: I,
|
|
143
|
-
TableMap:
|
|
144
|
-
tableEditingKey:
|
|
145
|
-
columnResizing:
|
|
146
|
-
columnResizingPluginKey:
|
|
147
|
-
updateColumnsOnResize:
|
|
148
|
-
selectedRect:
|
|
149
|
-
addColumn:
|
|
150
|
-
addColumnBefore:
|
|
151
|
-
addColumnAfter:
|
|
152
|
-
deleteColumn:
|
|
153
|
-
rowIsHeader:
|
|
154
|
-
addRow:
|
|
155
|
-
addRowBefore:
|
|
156
|
-
addRowAfter:
|
|
157
|
-
deleteRow:
|
|
158
|
-
mergeCells:
|
|
159
|
-
splitCell:
|
|
160
|
-
splitCellWithType:
|
|
144
|
+
TableMap: E,
|
|
145
|
+
tableEditingKey: x,
|
|
146
|
+
columnResizing: b,
|
|
147
|
+
columnResizingPluginKey: k,
|
|
148
|
+
updateColumnsOnResize: y,
|
|
149
|
+
selectedRect: w,
|
|
150
|
+
addColumn: T,
|
|
151
|
+
addColumnBefore: f,
|
|
152
|
+
addColumnAfter: R,
|
|
153
|
+
deleteColumn: S,
|
|
154
|
+
rowIsHeader: C,
|
|
155
|
+
addRow: g,
|
|
156
|
+
addRowBefore: u,
|
|
157
|
+
addRowAfter: m,
|
|
158
|
+
deleteRow: c,
|
|
159
|
+
mergeCells: s,
|
|
160
|
+
splitCell: p,
|
|
161
|
+
splitCellWithType: d,
|
|
161
162
|
setCellAttr: n,
|
|
162
|
-
toggleHeader:
|
|
163
|
-
toggleHeaderRow:
|
|
164
|
-
toggleHeaderColumn:
|
|
165
|
-
toggleHeaderCell:
|
|
166
|
-
goToNextCell:
|
|
167
|
-
deleteTable:
|
|
163
|
+
toggleHeader: i,
|
|
164
|
+
toggleHeaderRow: a,
|
|
165
|
+
toggleHeaderColumn: r,
|
|
166
|
+
toggleHeaderCell: l,
|
|
167
|
+
goToNextCell: t,
|
|
168
|
+
deleteTable: o
|
|
168
169
|
};
|
|
169
170
|
export {
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
171
|
+
Ao as Editor,
|
|
172
|
+
Qo as EditorClassComponent,
|
|
173
|
+
Zo as EditorDialogs,
|
|
174
|
+
Uo as EditorTools,
|
|
175
|
+
qo as EditorToolsSettings,
|
|
176
|
+
Xo as EditorUtils,
|
|
177
|
+
Ho as ProseMirror,
|
|
178
|
+
$o as editorPropsKey,
|
|
179
|
+
zo as getHtml,
|
|
180
|
+
Fo as marks,
|
|
181
|
+
Oo as nodes,
|
|
182
|
+
Wo as parseContent
|
|
181
183
|
};
|
package/messages/index.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ export declare const messages: {
|
|
|
89
89
|
"editor.findReplace-matches": string;
|
|
90
90
|
"editor.findReplace-invalidRegExp": string;
|
|
91
91
|
"editor.iframeTitle": string;
|
|
92
|
+
"editor.contentAreaLabel": string;
|
|
92
93
|
"editorTools.foreColorLabel": string;
|
|
93
94
|
"editorTools.backColorLabel": string;
|
|
94
95
|
"editor.cellProperties": string;
|
|
@@ -180,6 +181,7 @@ export declare const messages: {
|
|
|
180
181
|
"editor.listStyleLowerRoman": string;
|
|
181
182
|
"editor.listStyleUpperLatin": string;
|
|
182
183
|
"editor.listStyleLowerLatin": string;
|
|
184
|
+
"editor.toolbarAriaLabel": string;
|
|
183
185
|
};
|
|
184
186
|
/**
|
|
185
187
|
* @hidden
|
|
@@ -265,6 +267,7 @@ export declare const keys: {
|
|
|
265
267
|
findReplaceMatches: string;
|
|
266
268
|
findReplaceInvalidRegExp: string;
|
|
267
269
|
iframeTitle: string;
|
|
270
|
+
contentAreaLabel: string;
|
|
268
271
|
foreColorLabel: string;
|
|
269
272
|
backColorLabel: string;
|
|
270
273
|
cellProperties: string;
|
|
@@ -356,4 +359,5 @@ export declare const keys: {
|
|
|
356
359
|
listStyleLowerRoman: string;
|
|
357
360
|
listStyleUpperLatin: string;
|
|
358
361
|
listStyleLowerLatin: string;
|
|
362
|
+
toolbarAriaLabel: string;
|
|
359
363
|
};
|
package/messages/index.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="editor.bold",t="editor.italic",o="editor.underline",r="editor.strikethrough",i="editor.subscript",l="editor.superscript",s="editor.hyperlink",n="editor.insertFile",d="editor.print",c="editor.selectAll",a="editor.cleanFormatting",p="editor.pdf",b="editor.foregroundColor",P="editor.backgroundColor",g="editor.createTable",C="editor.insertTableHint",m="editor.addRowBefore",h="editor.addRowAfter",f="editor.addColumnBefore",y="editor.addColumnAfter",R="editor.deleteRow",u="editor.deleteColumn",S="editor.deleteTable",A="editor.mergeCells",T="editor.splitCell",w="editor.hyperlink-dialog-title",B="editor.hyperlink-dialog-content-address",I="editor.hyperlink-dialog-content-title",H="editor.hyperlink-dialog-content-newwindow",k="editor.hyperlink-dialog-cancel",L="editor.hyperlink-dialog-insert",v="editor.insertfile-dialog-title",W="editor.insertfile-dialog-content-address",D="editor.insertfile-dialog-content-title",F="editor.insertfile-dialog-cancel",M="editor.insertfile-dialog-insert",x="editor.image",N="editor.image-dialog-title",U="editor.image-address",E="editor.image-title",G="editor.image-altText",O="editor.image-width",z="editor.image-height",q="editor.image-cancel",J="editor.image-insert",V="editor.viewHtml",j="editor.viewHtml-dialog-title",K="editor.viewHtml-cancel",Q="editor.viewHtml-update",X="editor.unlink",Y="editor.undo",Z="editor.redo",_="editor.fontSize",$="editor.fontName",ee="editor.format",te="editor.alignLeft",oe="editor.alignRight",re="editor.alignCenter",ie="editor.alignJustify",le="editor.indent",se="editor.outdent",ne="editor.orderedList",de="editor.bulletList",ce="editor.findReplace-tool-title",ae="editor.findReplace-dialog-title",pe="editor.findReplace-tab-find",be="editor.findReplace-tab-replace",Pe="editor.findReplace-findWhat",ge="editor.findReplace-replaceWith",Ce="editor.findReplace-replace",me="editor.findReplace-replaceAll",he="editor.findReplace-matchCase",fe="editor.findReplace-matchWord",ye="editor.findReplace-matchCyclic",Re="editor.findReplace-useRegExp",ue="editor.findReplace-prevMatch",Se="editor.findReplace-nextMatch",Ae="editor.findReplace-matches",Te="editor.findReplace-invalidRegExp",we="editor.iframeTitle",Be="editorTools.foreColorLabel",Ie="editorTools.backColorLabel",He="editor.cellProperties",ke="editor.cellPropertiesLeftTop",Le="editor.cellPropertiesCenterTop",ve="editor.cellPropertiesRightTop",We="editor.cellPropertiesLeftMiddle",De="editor.cellPropertiesCenterMiddle",Fe="editor.cellPropertiesRightMiddle",Me="editor.cellPropertiesLeftBottom",xe="editor.cellPropertiesCenterBottom",Ne="editor.cellPropertiesRightBottom",Ue="editor.cellPropertiesNoAlignment",Ee="editor.cellPropertiesWrap",Ge="editor.cellPropertiesFitToCell",Oe="editor.cellPropertiesApplyToAllCells",ze="editor.cellPropertiesWidth",qe="editor.cellPropertiesApplyToColumn",Je="editor.cellPropertiesHeight",Ve="editor.cellPropertiesApplyToRow",je="editor.cellPropertiesAlignment",Ke="editor.cellPropertiesTextControl",Qe="editor.cellPropertiesCellPadding",Xe="editor.cellPropertiesBackground",Ye="editor.cellPropertiesBorderWidth",Ze="editor.cellPropertiesBorderColor",_e="editor.cellPropertiesBorderStyle",$e="editor.cellPropertiesId",et="editor.cellPropertiesCssClass",tt="editor.cellPropertiesSave",ot="editor.cellPropertiesCancel",rt="editor.tableProperties",it="editor.tablePropertiesAlignLeft",lt="editor.tablePropertiesAlignCenter",st="editor.tablePropertiesAlignRight",nt="editor.tablePropertiesNoAlignment",dt="editor.tablePropertiesLeft",ct="editor.tablePropertiesCenter",at="editor.tablePropertiesRight",pt="editor.tablePropertiesTop",bt="editor.tablePropertiesBottom",Pt="editor.tablePropertiesNone",gt="editor.tablePropertiesUsingScopeAttribute",Ct="editor.tablePropertiesUsingIdAttributes",mt="editor.tablePropertiesRows",ht="editor.tablePropertiesColumns",ft="editor.tablePropertiesWidth",yt="editor.tablePropertiesHeight",Rt="editor.tablePropertiesPosition",ut="editor.tablePropertiesAlignment",St="editor.tablePropertiesCellSpacing",At="editor.tablePropertiesCellPadding",Tt="editor.tablePropertiesTableBackground",wt="editor.tablePropertiesBorderWidth",Bt="editor.tablePropertiesBorderColor",It="editor.tablePropertiesBorderStyle",Ht="editor.tablePropertiesCollapseBorders",kt="editor.tablePropertiesID",Lt="editor.tablePropertiesCssClass",vt="editor.tablePropertiesAccessibility",Wt="editor.tablePropertiesCaption",Dt="editor.tablePropertiesCaptionPosition",Ft="editor.tablePropertiesCaptionAlignment",Mt="editor.tablePropertiesHeaderRows",xt="editor.tablePropertiesHeaderCols",Nt="editor.tablePropertiesAssociateHeaders",Ut="editor.tablePropertiesGeneral",Et="editor.tablePropertiesAdvanced",Gt="editor.tablePropertiesSave",Ot="editor.tablePropertiesCancel",zt="editor.borderStyleNone",qt="editor.borderStyleSolid",Jt="editor.borderStyleDotted",Vt="editor.borderStyleDashed",jt="editor.borderStyleDouble",Kt="editor.borderStyleGroove",Qt="editor.borderStyleRidge",Xt="editor.borderStyleInset",Yt="editor.borderStyleOutset",Zt="editor.borderStyleInitial",_t="editor.borderStyleInherit",$t="editor.borderStyleHidden",eo="editor.sizeAuto",to="editor.listStyleDisc",oo="editor.listStyleCircle",ro="editor.listStyleSquare",io="editor.listStyleDecimal",lo="editor.listStyleUpperRoman",so="editor.listStyleLowerRoman",no="editor.listStyleUpperLatin",co="editor.listStyleLowerLatin",ao={[e]:"Bold",[t]:"Italic",[o]:"Underline",[r]:"Strikethrough",[i]:"Subscript",[l]:"Superscript",[X]:"Remove hyperlink",[Y]:"Undo",[Z]:"Redo",[_]:"Font Size",[$]:"Font Name",[ee]:"Format",[te]:"Align text left",[oe]:"Align text right",[re]:"Center text",[ie]:"Justify",[le]:"Indent",[se]:"Outdent",[ne]:"Insert ordered list",[de]:"Insert unordered list",[d]:"Print",[c]:"Select All",[a]:"Clean formatting",[p]:"Export as PDF",[b]:"Color",[P]:"Background color",[g]:"Create a table",[C]:"Create a {0} x {1} table",[m]:"Add row above",[h]:"Add row below",[f]:"Add column on the left",[y]:"Add column on the right",[R]:"Delete row",[u]:"Delete column",[S]:"Delete table",[A]:"Merge cells",[T]:"Split cell",[s]:"Insert hyperlink",[w]:"Insert hyperlink",[B]:"Web address",[I]:"Title",[H]:"Open link in new window",[k]:"Cancel",[L]:"Insert",[n]:"Insert file",[v]:"Insert file",[W]:"Web address",[D]:"Title",[F]:"Cancel",[M]:"Insert",[x]:"Insert image",[N]:"Insert image",[U]:"Web address",[E]:"Title",[G]:"Alternate text",[O]:"Width (px)",[z]:"Height (px)",[q]:"Cancel",[J]:"Insert",[V]:"View HTML",[j]:"View HTML",[K]:"Cancel",[Q]:"Update",[ce]:"Find and Replace",[ae]:"Find and Replace",[pe]:"Find",[be]:"Replace",[Pe]:"Find What:",[ge]:"Replace With",[Ce]:"Replace",[me]:"Replace All",[he]:"Match Case",[fe]:"Match whole word only",[ye]:"Match cyclic (Wrap around)",[Re]:"Regular Expression",[ue]:"Prev",[Se]:"Next",[Ae]:"{0} of {1} matches",[Te]:"Invalid regular expression.",[we]:"Editable area. Press Alt + F10 for toolbar.",[Be]:"Fore Color",[Ie]:"Back Color",[He]:"Cell properties",[ke]:"Left Top",[Le]:"Center Top",[ve]:"Right Top",[We]:"Left Middle",[De]:"Center Middle",[Fe]:"Right Middle",[Me]:"Left Bottom",[xe]:"Center Bottom",[Ne]:"Right Bottom",[Ue]:"No Alignment",[Ee]:"Wrap",[Ge]:"Fit to cell",[Oe]:"Apply to all cells",[ze]:"Width",[qe]:"apply to column",[Je]:"Height",[Ve]:"apply to row",[je]:"Alignment",[Ke]:"Text control",[Qe]:"Cell padding",[Xe]:"Background",[Ye]:"Border width",[Ze]:"Border color",[_e]:"Border style",[$e]:"ID",[et]:"CSS class",[tt]:"Save",[ot]:"Cancel",[rt]:"Table properties",[it]:"Align Left",[lt]:"Align Center",[st]:"Align Right",[nt]:"No Alignment",[dt]:"Left",[ct]:"Center",[at]:"Right",[pt]:"Top",[bt]:"Bottom",[Pt]:"None",[gt]:"Using 'scope' attribute",[Ct]:"Using 'id' attributes",[mt]:"Rows",[ht]:"Columns",[ft]:"Width",[yt]:"Height",[Rt]:"Position",[ut]:"Alignment",[St]:"Cell spacing",[At]:"Cell padding",[Tt]:"Table background",[wt]:"Border width",[Bt]:"Border color",[It]:"Border style",[Ht]:"Collapse borders",[kt]:"ID",[Lt]:"CSS class",[vt]:"Accessibility",[Wt]:"Caption",[Dt]:"Position",[Ft]:"Alignment",[Mt]:"Header rows",[xt]:"Header cols",[Nt]:"Associate headers",[Ut]:"General",[Et]:"Advanced",[Gt]:"Save",[Ot]:"Cancel",[zt]:"None",[qt]:"Solid",[Jt]:"Dotted",[Vt]:"Dashed",[jt]:"Double",[Kt]:"Groove",[Qt]:"Ridge",[Xt]:"Inset",[Yt]:"Outset",[Zt]:"Initial",[_t]:"Inherit",[$t]:"Hidden",[eo]:"Auto",[to]:"Disc",[oo]:"Circle",[ro]:"Square",[io]:"Decimal",[lo]:"Upper roman",[so]:"Lower roman",[no]:"Upper latin",[co]:"Lower latin"},po={bold:e,italic:t,underline:o,strikethrough:r,subscript:i,superscript:l,unlink:X,undo:Y,redo:Z,fontSize:_,fontName:$,format:ee,alignLeft:te,alignRight:oe,alignCenter:re,alignJustify:ie,indent:le,outdent:se,orderedList:ne,bulletList:de,print:d,selectAll:c,cleanFormatting:a,pdf:p,foregroundColor:b,backgroundColor:P,createTable:g,createTableHint:C,addRowBefore:m,addRowAfter:h,addColumnBefore:f,addColumnAfter:y,deleteRow:R,deleteColumn:u,deleteTable:S,mergeCells:A,splitCell:T,insertHyperlink:s,insertHyperlinkDialogTitle:w,insertHyperlinkAddress:B,insertHyperlinkTitle:I,insertHyperlinkNewWindow:H,insertHyperlinkCancel:k,insertHyperlinkInsert:L,insertFile:n,insertFileDialogTitle:v,insertFileAddress:W,insertFileTitle:D,insertFileCancel:F,insertFileInsert:M,insertImage:x,insertImageDialogTitle:N,insertImageAddress:U,insertImageTitle:E,insertImageAltText:G,insertImageWidth:O,insertImageHeight:z,insertImageCancel:q,insertImageInsert:J,viewHtml:V,viewHtmlDialogTitle:j,viewHtmlCancel:K,viewHtmlUpdate:Q,findReplaceToolTitle:ce,findReplaceDialogTitle:ae,findReplaceTabFind:pe,findReplaceTabReplace:be,findReplaceFindWhat:Pe,findReplaceReplaceWith:ge,findReplaceReplace:Ce,findReplaceReplaceAll:me,findReplaceMatchCase:he,findReplaceMatchWord:fe,findReplaceMatchCyclic:ye,findReplaceUseRegExp:Re,findReplacePrevMatch:ue,findReplaceNextMatch:Se,findReplaceMatches:Ae,findReplaceInvalidRegExp:Te,iframeTitle:we,foreColorLabel:Be,backColorLabel:Ie,cellProperties:He,cellPropertiesLeftTop:ke,cellPropertiesCenterTop:Le,cellPropertiesRightTop:ve,cellPropertiesLeftMiddle:We,cellPropertiesCenterMiddle:De,cellPropertiesRightMiddle:Fe,cellPropertiesLeftBottom:Me,cellPropertiesCenterBottom:xe,cellPropertiesRightBottom:Ne,cellPropertiesNoAlignment:Ue,cellPropertiesWrap:Ee,cellPropertiesFitToCell:Ge,cellPropertiesApplyToAllCells:Oe,cellPropertiesWidth:ze,cellPropertiesApplyToColumn:qe,cellPropertiesHeight:Je,cellPropertiesApplyToRow:Ve,cellPropertiesAlignment:je,cellPropertiesTextControl:Ke,cellPropertiesCellPadding:Qe,cellPropertiesBackground:Xe,cellPropertiesBorderWidth:Ye,cellPropertiesBorderColor:Ze,cellPropertiesBorderStyle:_e,cellPropertiesId:$e,cellPropertiesCssClass:et,cellPropertiesSave:tt,cellPropertiesCancel:ot,tableProperties:rt,tablePropertiesAlignLeft:it,tablePropertiesAlignCenter:lt,tablePropertiesAlignRight:st,tablePropertiesNoAlignment:nt,tablePropertiesLeft:dt,tablePropertiesCenter:ct,tablePropertiesRight:at,tablePropertiesTop:pt,tablePropertiesBottom:bt,tablePropertiesNone:Pt,tablePropertiesUsingScopeAttribute:gt,tablePropertiesUsingIdAttributes:Ct,tablePropertiesRows:mt,tablePropertiesColumns:ht,tablePropertiesWidth:ft,tablePropertiesHeight:yt,tablePropertiesPosition:Rt,tablePropertiesAlignment:ut,tablePropertiesCellSpacing:St,tablePropertiesCellPadding:At,tablePropertiesTableBackground:Tt,tablePropertiesBorderWidth:wt,tablePropertiesBorderColor:Bt,tablePropertiesBorderStyle:It,tablePropertiesCollapseBorders:Ht,tablePropertiesId:kt,tablePropertiesCssClass:Lt,tablePropertiesAccessibility:vt,tablePropertiesCaption:Wt,tablePropertiesCaptionPosition:Dt,tablePropertiesCaptionAlignment:Ft,tablePropertiesHeaderRows:Mt,tablePropertiesHeaderCols:xt,tablePropertiesAssociateHeaders:Nt,tablePropertiesGeneral:Ut,tablePropertiesAdvanced:Et,tablePropertiesSave:Gt,tablePropertiesCancel:Ot,borderStyleNone:zt,borderStyleSolid:qt,borderStyleDotted:Jt,borderStyleDashed:Vt,borderStyleDouble:jt,borderStyleGroove:Kt,borderStyleRidge:Qt,borderStyleInset:Xt,borderStyleOutset:Yt,borderStyleInitial:Zt,borderStyleInherit:_t,borderStyleHidden:$t,sizeAuto:eo,listStyleDisc:to,listStyleCircle:oo,listStyleSquare:ro,listStyleDecimal:io,listStyleUpperRoman:lo,listStyleLowerRoman:so,listStyleUpperLatin:no,listStyleLowerLatin:co};exports.keys=po;exports.messages=ao;
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="editor.bold",t="editor.italic",o="editor.underline",r="editor.strikethrough",i="editor.subscript",l="editor.superscript",s="editor.hyperlink",n="editor.insertFile",d="editor.print",c="editor.selectAll",a="editor.cleanFormatting",p="editor.pdf",b="editor.foregroundColor",P="editor.backgroundColor",g="editor.createTable",C="editor.insertTableHint",m="editor.addRowBefore",h="editor.addRowAfter",f="editor.addColumnBefore",y="editor.addColumnAfter",R="editor.deleteRow",u="editor.deleteColumn",A="editor.deleteTable",S="editor.mergeCells",T="editor.splitCell",w="editor.hyperlink-dialog-title",B="editor.hyperlink-dialog-content-address",I="editor.hyperlink-dialog-content-title",L="editor.hyperlink-dialog-content-newwindow",H="editor.hyperlink-dialog-cancel",k="editor.hyperlink-dialog-insert",v="editor.insertfile-dialog-title",W="editor.insertfile-dialog-content-address",D="editor.insertfile-dialog-content-title",F="editor.insertfile-dialog-cancel",M="editor.insertfile-dialog-insert",x="editor.image",N="editor.image-dialog-title",U="editor.image-address",E="editor.image-title",G="editor.image-altText",O="editor.image-width",z="editor.image-height",q="editor.image-cancel",J="editor.image-insert",V="editor.viewHtml",j="editor.viewHtml-dialog-title",K="editor.viewHtml-cancel",Q="editor.viewHtml-update",X="editor.unlink",Y="editor.undo",Z="editor.redo",_="editor.fontSize",$="editor.fontName",ee="editor.format",te="editor.alignLeft",oe="editor.alignRight",re="editor.alignCenter",ie="editor.alignJustify",le="editor.indent",se="editor.outdent",ne="editor.orderedList",de="editor.bulletList",ce="editor.findReplace-tool-title",ae="editor.findReplace-dialog-title",pe="editor.findReplace-tab-find",be="editor.findReplace-tab-replace",Pe="editor.findReplace-findWhat",ge="editor.findReplace-replaceWith",Ce="editor.findReplace-replace",me="editor.findReplace-replaceAll",he="editor.findReplace-matchCase",fe="editor.findReplace-matchWord",ye="editor.findReplace-matchCyclic",Re="editor.findReplace-useRegExp",ue="editor.findReplace-prevMatch",Ae="editor.findReplace-nextMatch",Se="editor.findReplace-matches",Te="editor.findReplace-invalidRegExp",we="editor.iframeTitle",Be="editor.contentAreaLabel",Ie="editorTools.foreColorLabel",Le="editorTools.backColorLabel",He="editor.cellProperties",ke="editor.cellPropertiesLeftTop",ve="editor.cellPropertiesCenterTop",We="editor.cellPropertiesRightTop",De="editor.cellPropertiesLeftMiddle",Fe="editor.cellPropertiesCenterMiddle",Me="editor.cellPropertiesRightMiddle",xe="editor.cellPropertiesLeftBottom",Ne="editor.cellPropertiesCenterBottom",Ue="editor.cellPropertiesRightBottom",Ee="editor.cellPropertiesNoAlignment",Ge="editor.cellPropertiesWrap",Oe="editor.cellPropertiesFitToCell",ze="editor.cellPropertiesApplyToAllCells",qe="editor.cellPropertiesWidth",Je="editor.cellPropertiesApplyToColumn",Ve="editor.cellPropertiesHeight",je="editor.cellPropertiesApplyToRow",Ke="editor.cellPropertiesAlignment",Qe="editor.cellPropertiesTextControl",Xe="editor.cellPropertiesCellPadding",Ye="editor.cellPropertiesBackground",Ze="editor.cellPropertiesBorderWidth",_e="editor.cellPropertiesBorderColor",$e="editor.cellPropertiesBorderStyle",et="editor.cellPropertiesId",tt="editor.cellPropertiesCssClass",ot="editor.cellPropertiesSave",rt="editor.cellPropertiesCancel",it="editor.tableProperties",lt="editor.tablePropertiesAlignLeft",st="editor.tablePropertiesAlignCenter",nt="editor.tablePropertiesAlignRight",dt="editor.tablePropertiesNoAlignment",ct="editor.tablePropertiesLeft",at="editor.tablePropertiesCenter",pt="editor.tablePropertiesRight",bt="editor.tablePropertiesTop",Pt="editor.tablePropertiesBottom",gt="editor.tablePropertiesNone",Ct="editor.tablePropertiesUsingScopeAttribute",mt="editor.tablePropertiesUsingIdAttributes",ht="editor.tablePropertiesRows",ft="editor.tablePropertiesColumns",yt="editor.tablePropertiesWidth",Rt="editor.tablePropertiesHeight",ut="editor.tablePropertiesPosition",At="editor.tablePropertiesAlignment",St="editor.tablePropertiesCellSpacing",Tt="editor.tablePropertiesCellPadding",wt="editor.tablePropertiesTableBackground",Bt="editor.tablePropertiesBorderWidth",It="editor.tablePropertiesBorderColor",Lt="editor.tablePropertiesBorderStyle",Ht="editor.tablePropertiesCollapseBorders",kt="editor.tablePropertiesID",vt="editor.tablePropertiesCssClass",Wt="editor.tablePropertiesAccessibility",Dt="editor.tablePropertiesCaption",Ft="editor.tablePropertiesCaptionPosition",Mt="editor.tablePropertiesCaptionAlignment",xt="editor.tablePropertiesHeaderRows",Nt="editor.tablePropertiesHeaderCols",Ut="editor.tablePropertiesAssociateHeaders",Et="editor.tablePropertiesGeneral",Gt="editor.tablePropertiesAdvanced",Ot="editor.tablePropertiesSave",zt="editor.tablePropertiesCancel",qt="editor.borderStyleNone",Jt="editor.borderStyleSolid",Vt="editor.borderStyleDotted",jt="editor.borderStyleDashed",Kt="editor.borderStyleDouble",Qt="editor.borderStyleGroove",Xt="editor.borderStyleRidge",Yt="editor.borderStyleInset",Zt="editor.borderStyleOutset",_t="editor.borderStyleInitial",$t="editor.borderStyleInherit",eo="editor.borderStyleHidden",to="editor.sizeAuto",oo="editor.listStyleDisc",ro="editor.listStyleCircle",io="editor.listStyleSquare",lo="editor.listStyleDecimal",so="editor.listStyleUpperRoman",no="editor.listStyleLowerRoman",co="editor.listStyleUpperLatin",ao="editor.listStyleLowerLatin",po="editor.toolbarAriaLabel",bo={[e]:"Bold",[t]:"Italic",[o]:"Underline",[r]:"Strikethrough",[i]:"Subscript",[l]:"Superscript",[X]:"Remove hyperlink",[Y]:"Undo",[Z]:"Redo",[_]:"Font Size",[$]:"Font Name",[ee]:"Format",[te]:"Align text left",[oe]:"Align text right",[re]:"Center text",[ie]:"Justify",[le]:"Indent",[se]:"Outdent",[ne]:"Insert ordered list",[de]:"Insert unordered list",[d]:"Print",[c]:"Select All",[a]:"Clean formatting",[p]:"Export as PDF",[b]:"Color",[P]:"Background color",[g]:"Create a table",[C]:"Create a {0} x {1} table",[m]:"Add row above",[h]:"Add row below",[f]:"Add column on the left",[y]:"Add column on the right",[R]:"Delete row",[u]:"Delete column",[A]:"Delete table",[S]:"Merge cells",[T]:"Split cell",[s]:"Insert hyperlink",[w]:"Insert hyperlink",[B]:"Web address",[I]:"Title",[L]:"Open link in new window",[H]:"Cancel",[k]:"Insert",[n]:"Insert file",[v]:"Insert file",[W]:"Web address",[D]:"Title",[F]:"Cancel",[M]:"Insert",[x]:"Insert image",[N]:"Insert image",[U]:"Web address",[E]:"Title",[G]:"Alternate text",[O]:"Width (px)",[z]:"Height (px)",[q]:"Cancel",[J]:"Insert",[V]:"View HTML",[j]:"View HTML",[K]:"Cancel",[Q]:"Update",[ce]:"Find and Replace",[ae]:"Find and Replace",[pe]:"Find",[be]:"Replace",[Pe]:"Find What:",[ge]:"Replace With",[Ce]:"Replace",[me]:"Replace All",[he]:"Match Case",[fe]:"Match whole word only",[ye]:"Match cyclic (Wrap around)",[Re]:"Regular Expression",[ue]:"Prev",[Ae]:"Next",[Se]:"{0} of {1} matches",[Te]:"Invalid regular expression.",[we]:"Editable area. Press Alt + F10 for toolbar.",[Be]:"Editor content",[Ie]:"Fore Color",[Le]:"Back Color",[He]:"Cell properties",[ke]:"Left Top",[ve]:"Center Top",[We]:"Right Top",[De]:"Left Middle",[Fe]:"Center Middle",[Me]:"Right Middle",[xe]:"Left Bottom",[Ne]:"Center Bottom",[Ue]:"Right Bottom",[Ee]:"No Alignment",[Ge]:"Wrap",[Oe]:"Fit to cell",[ze]:"Apply to all cells",[qe]:"Width",[Je]:"apply to column",[Ve]:"Height",[je]:"apply to row",[Ke]:"Alignment",[Qe]:"Text control",[Xe]:"Cell padding",[Ye]:"Background",[Ze]:"Border width",[_e]:"Border color",[$e]:"Border style",[et]:"ID",[tt]:"CSS class",[ot]:"Save",[rt]:"Cancel",[it]:"Table properties",[lt]:"Align Left",[st]:"Align Center",[nt]:"Align Right",[dt]:"No Alignment",[ct]:"Left",[at]:"Center",[pt]:"Right",[bt]:"Top",[Pt]:"Bottom",[gt]:"None",[Ct]:"Using 'scope' attribute",[mt]:"Using 'id' attributes",[ht]:"Rows",[ft]:"Columns",[yt]:"Width",[Rt]:"Height",[ut]:"Position",[At]:"Alignment",[St]:"Cell spacing",[Tt]:"Cell padding",[wt]:"Table background",[Bt]:"Border width",[It]:"Border color",[Lt]:"Border style",[Ht]:"Collapse borders",[kt]:"ID",[vt]:"CSS class",[Wt]:"Accessibility",[Dt]:"Caption",[Ft]:"Position",[Mt]:"Alignment",[xt]:"Header rows",[Nt]:"Header cols",[Ut]:"Associate headers",[Et]:"General",[Gt]:"Advanced",[Ot]:"Save",[zt]:"Cancel",[qt]:"None",[Jt]:"Solid",[Vt]:"Dotted",[jt]:"Dashed",[Kt]:"Double",[Qt]:"Groove",[Xt]:"Ridge",[Yt]:"Inset",[Zt]:"Outset",[_t]:"Initial",[$t]:"Inherit",[eo]:"Hidden",[to]:"Auto",[oo]:"Disc",[ro]:"Circle",[io]:"Square",[lo]:"Decimal",[so]:"Upper roman",[no]:"Lower roman",[co]:"Upper latin",[ao]:"Lower latin",[po]:"Toolbar"},Po={bold:e,italic:t,underline:o,strikethrough:r,subscript:i,superscript:l,unlink:X,undo:Y,redo:Z,fontSize:_,fontName:$,format:ee,alignLeft:te,alignRight:oe,alignCenter:re,alignJustify:ie,indent:le,outdent:se,orderedList:ne,bulletList:de,print:d,selectAll:c,cleanFormatting:a,pdf:p,foregroundColor:b,backgroundColor:P,createTable:g,createTableHint:C,addRowBefore:m,addRowAfter:h,addColumnBefore:f,addColumnAfter:y,deleteRow:R,deleteColumn:u,deleteTable:A,mergeCells:S,splitCell:T,insertHyperlink:s,insertHyperlinkDialogTitle:w,insertHyperlinkAddress:B,insertHyperlinkTitle:I,insertHyperlinkNewWindow:L,insertHyperlinkCancel:H,insertHyperlinkInsert:k,insertFile:n,insertFileDialogTitle:v,insertFileAddress:W,insertFileTitle:D,insertFileCancel:F,insertFileInsert:M,insertImage:x,insertImageDialogTitle:N,insertImageAddress:U,insertImageTitle:E,insertImageAltText:G,insertImageWidth:O,insertImageHeight:z,insertImageCancel:q,insertImageInsert:J,viewHtml:V,viewHtmlDialogTitle:j,viewHtmlCancel:K,viewHtmlUpdate:Q,findReplaceToolTitle:ce,findReplaceDialogTitle:ae,findReplaceTabFind:pe,findReplaceTabReplace:be,findReplaceFindWhat:Pe,findReplaceReplaceWith:ge,findReplaceReplace:Ce,findReplaceReplaceAll:me,findReplaceMatchCase:he,findReplaceMatchWord:fe,findReplaceMatchCyclic:ye,findReplaceUseRegExp:Re,findReplacePrevMatch:ue,findReplaceNextMatch:Ae,findReplaceMatches:Se,findReplaceInvalidRegExp:Te,iframeTitle:we,contentAreaLabel:Be,foreColorLabel:Ie,backColorLabel:Le,cellProperties:He,cellPropertiesLeftTop:ke,cellPropertiesCenterTop:ve,cellPropertiesRightTop:We,cellPropertiesLeftMiddle:De,cellPropertiesCenterMiddle:Fe,cellPropertiesRightMiddle:Me,cellPropertiesLeftBottom:xe,cellPropertiesCenterBottom:Ne,cellPropertiesRightBottom:Ue,cellPropertiesNoAlignment:Ee,cellPropertiesWrap:Ge,cellPropertiesFitToCell:Oe,cellPropertiesApplyToAllCells:ze,cellPropertiesWidth:qe,cellPropertiesApplyToColumn:Je,cellPropertiesHeight:Ve,cellPropertiesApplyToRow:je,cellPropertiesAlignment:Ke,cellPropertiesTextControl:Qe,cellPropertiesCellPadding:Xe,cellPropertiesBackground:Ye,cellPropertiesBorderWidth:Ze,cellPropertiesBorderColor:_e,cellPropertiesBorderStyle:$e,cellPropertiesId:et,cellPropertiesCssClass:tt,cellPropertiesSave:ot,cellPropertiesCancel:rt,tableProperties:it,tablePropertiesAlignLeft:lt,tablePropertiesAlignCenter:st,tablePropertiesAlignRight:nt,tablePropertiesNoAlignment:dt,tablePropertiesLeft:ct,tablePropertiesCenter:at,tablePropertiesRight:pt,tablePropertiesTop:bt,tablePropertiesBottom:Pt,tablePropertiesNone:gt,tablePropertiesUsingScopeAttribute:Ct,tablePropertiesUsingIdAttributes:mt,tablePropertiesRows:ht,tablePropertiesColumns:ft,tablePropertiesWidth:yt,tablePropertiesHeight:Rt,tablePropertiesPosition:ut,tablePropertiesAlignment:At,tablePropertiesCellSpacing:St,tablePropertiesCellPadding:Tt,tablePropertiesTableBackground:wt,tablePropertiesBorderWidth:Bt,tablePropertiesBorderColor:It,tablePropertiesBorderStyle:Lt,tablePropertiesCollapseBorders:Ht,tablePropertiesId:kt,tablePropertiesCssClass:vt,tablePropertiesAccessibility:Wt,tablePropertiesCaption:Dt,tablePropertiesCaptionPosition:Ft,tablePropertiesCaptionAlignment:Mt,tablePropertiesHeaderRows:xt,tablePropertiesHeaderCols:Nt,tablePropertiesAssociateHeaders:Ut,tablePropertiesGeneral:Et,tablePropertiesAdvanced:Gt,tablePropertiesSave:Ot,tablePropertiesCancel:zt,borderStyleNone:qt,borderStyleSolid:Jt,borderStyleDotted:Vt,borderStyleDashed:jt,borderStyleDouble:Kt,borderStyleGroove:Qt,borderStyleRidge:Xt,borderStyleInset:Yt,borderStyleOutset:Zt,borderStyleInitial:_t,borderStyleInherit:$t,borderStyleHidden:eo,sizeAuto:to,listStyleDisc:oo,listStyleCircle:ro,listStyleSquare:io,listStyleDecimal:lo,listStyleUpperRoman:so,listStyleLowerRoman:no,listStyleUpperLatin:co,listStyleLowerLatin:ao,toolbarAriaLabel:po};exports.keys=Po;exports.messages=bo;
|