altCommandAttrType: commandAttrType.styleName,
buttons: {
"bold": {
js: buttonBase,
commandName: "bold",
commandValue: {
"styleName": "bold",
"className": "arte-font-weight-bold"
},
supportedTypes: [editorTypes.richText, editorTypes.plainText],
supportsTagName: true,
tooltip: "Bold"
},
"italic": {
js: buttonBase,
commandName: "italic",
commandValue: {
"styleName": "italic",
"className": "arte-font-style-italic"
},
supportedTypes: [editorTypes.richText, editorTypes.plainText],
supportsTagName: true,
tooltip: "Italic"
},
"underline": {
js: buttonBase,
commandName: "underline",
commandValue: {
"styleName": "underline",
"className": "arte-text-decoration-underline"
},
supportedTypes: [editorTypes.richText, editorTypes.plainText],
supportsTagName: true,
tooltip: "Underline"
},
"blockquote": {
js: buttonBase,
commandName: "blockquote",
supportedTypes: [editorTypes.richText],
tooltip: "Blockquote"
},
"textAlignLeft": {
js: buttonBase,
icon: "../content/Icons/icons/text_align_left.png",
commandName: "textAlign",
commandValue: {
"styleName": "left",
"className": "arte-text-align-left"
},
supportedTypes: [editorTypes.richText, editorTypes.plainText],
tooltip: "Text align left"
},
"textAlignCenter": {
js: buttonBase,
icon: "../content/Icons/icons/text_align_center.png",
commandName: "textAlign",
commandValue: {
"styleName": "center",
"className": "arte-text-align-center"
},
supportedTypes: [editorTypes.richText, editorTypes.plainText],
tooltip: "Text align center"
},
"textAlignRight": {
js: buttonBase,
icon: "../content/Icons/icons/text_align_right.png",
commandName: "textAlign",
commandValue: {
"styleName": "right",
"className": "arte-text-align-right"
},
supportedTypes: [editorTypes.richText, editorTypes.plainText],
tooltip: "Text align right"
},
"h1": {
js: buttonBase,
commandName: "h1",
icon: "../content/Icons/icons/text_heading_1.png",
supportedTypes: [editorTypes.richText],
tooltip: "H1"
},
"h2": {
js: buttonBase,
commandName: "h2",
icon: "../content/Icons/icons/text_heading_2.png",
supportedTypes: [editorTypes.richText],
tooltip: "H2"
},
"h3": {
js: buttonBase,
commandName: "h3",
icon: "../content/Icons/icons/text_heading_3.png",
supportedTypes: [editorTypes.richText],
tooltip: "H3"
},
"h4": {
js: buttonBase,
commandName: "h4",
icon: "../content/Icons/icons/text_heading_4.png",
supportedTypes: [editorTypes.richText],
tooltip: "H4"
},
"h5": {
js: buttonBase,
commandName: "h5",
icon: "../content/Icons/icons/text_heading_5.png",
supportedTypes: [editorTypes.richText],
tooltip: "H5"
},
"h6": {
js: buttonBase,
commandName: "h6",
icon: "../content/Icons/icons/text_heading_6.png",
supportedTypes: [editorTypes.richText],
tooltip: "H6"
},
"subscript": {
js: buttonBase,
commandName: "subscript",
icon: "../content/Icons/icons/text_subscript.png",
supportedTypes: [editorTypes.richText],
tooltip: "Subscript"
},
"superscript": {
js: buttonBase,
commandName: "superscript",
icon: "../content/Icons/icons/text_superscript.png",
supportedTypes: [editorTypes.richText],
tooltip: "Superscript"
},
"fontSize": {
js: buttonWithDropDown,
icon: null,
commandName: "fontSize",
options: ["", 8, 10, 12, 15, 20],
acceptsParams: true,
supportedTypes: [editorTypes.richText, editorTypes.plainText],
tooltip: "Font size"
},
"fontFamily": {
js: buttonWithDropDown,
icon: null,
commandName: "fontFamily",
options: ["", "Arial", "curier new", "Georgia", "Times New Roman"],
acceptsParams: true,
supportedTypes: [editorTypes.richText, editorTypes.plainText],
tooltip: "Font family"
},
"color": {
js: buttonWithDropDown,
icon: null,
commandName: "color",
options: ["", "Black", "Blue", "Green", "Red"],
acceptsParams: true,
supportedTypes: [editorTypes.richText, editorTypes.plainText],
tooltip: "Color"
},
"unorderedList": {
js: buttonBase,
commandName: "unorderedList",
supportedTypes: [editorTypes.richText],
tooltip: "Unordered list"
},
"orderedList": {
js: buttonBase,
commandName: "orderedList",
supportedTypes: [editorTypes.richText],
tooltip: "Ordered list"
},
"backgroundColor": {
acceptsParams: true,
js: buttonWithDropDown,
commandName: "backgroundColor",
options: ["", "Black", "Blue", "Green", "Red"],
supportedTypes: [editorTypes.richText],
tooltip: "Background Color"
},
"undo": {
js: buttonBase,
commandName: "undo",
supportedTypes: [editorTypes.richText, editorTypes.plainText],
tooltip: "Undo"
},
"redo": {
js: buttonBase,
commandName: "redo",
supportedTypes: [editorTypes.richText, editorTypes.plainText],
tooltip: "Redo"
},
"toolbarLineBreak": {