@progress/kendo-angular-editor 2.5.0-dev.202111161123 → 2.5.0-dev.202111231749
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/dist/cdn/js/kendo-angular-editor.js +2 -2
- package/dist/cdn/main.js +1 -1
- package/dist/es/common/error-messages.js +2 -1
- package/dist/es/config/command-icons.js +4 -2
- package/dist/es/config/commands.js +32 -31
- package/dist/es/editor-toolbar-state.js +20 -2
- package/dist/es/editor.component.js +4 -3
- package/dist/es/editor.module.js +7 -1
- package/dist/es/index.js +2 -0
- package/dist/es/localization/messages.js +8 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/tools/print/editor-print-button.directive.js +67 -0
- package/dist/es/tools/select-all/select-all-button.directive.js +48 -0
- package/dist/es/tools/shared/editor-command-base.js +7 -5
- package/dist/es2015/common/commands.d.ts +5 -1
- package/dist/es2015/common/error-messages.js +2 -1
- package/dist/es2015/config/command-icons.d.ts +2 -2
- package/dist/es2015/config/command-icons.js +4 -2
- package/dist/es2015/config/commands.js +31 -30
- package/dist/es2015/editor-toolbar-state.js +20 -2
- package/dist/es2015/editor.component.d.ts +5 -0
- package/dist/es2015/editor.component.js +7 -2
- package/dist/es2015/editor.module.js +7 -1
- package/dist/es2015/index.d.ts +2 -0
- package/dist/es2015/index.js +2 -0
- package/dist/es2015/index.metadata.json +1 -1
- package/dist/es2015/localization/messages.d.ts +8 -0
- package/dist/es2015/localization/messages.js +8 -0
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/es2015/tools/print/editor-print-button.directive.d.ts +33 -0
- package/dist/es2015/tools/print/editor-print-button.directive.js +64 -0
- package/dist/es2015/tools/select-all/select-all-button.directive.d.ts +29 -0
- package/dist/es2015/tools/select-all/select-all-button.directive.js +46 -0
- package/dist/es2015/tools/shared/editor-command-base.d.ts +4 -3
- package/dist/es2015/tools/shared/editor-command-base.js +6 -4
- package/dist/es2015/tools/shared/editor-command-button.d.ts +3 -3
- package/dist/fesm2015/index.js +173 -43
- package/dist/fesm5/index.js +177 -46
- package/dist/npm/common/error-messages.js +2 -1
- package/dist/npm/config/command-icons.js +4 -2
- package/dist/npm/config/commands.js +33 -31
- package/dist/npm/editor-toolbar-state.js +20 -2
- package/dist/npm/editor.component.js +4 -3
- package/dist/npm/editor.module.js +7 -1
- package/dist/npm/index.js +4 -0
- package/dist/npm/localization/messages.js +8 -0
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/tools/print/editor-print-button.directive.js +69 -0
- package/dist/npm/tools/select-all/select-all-button.directive.js +50 -0
- package/dist/npm/tools/shared/editor-command-base.js +7 -5
- package/dist/systemjs/kendo-angular-editor.js +1 -1
- package/package.json +1 -1
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { alignBlocks, alignLeftRules, alignCenterRules, alignRightRules, alignJustifyRules, alignRemoveRules, indent, outdent, setHtml, getHtml, insertImage, insertText, applyLink, removeLink, expandToWordWrap,
|
|
6
6
|
//marks
|
|
7
|
-
bold, italic, underline, strikethrough, subscript, superscript, link, toggleInlineFormat, applyInlineStyle, formatBlockElements, toggleOrderedList, toggleUnorderedList, isAligned, undo, redo, cleanFormatting } from '@progress/kendo-editor-common';
|
|
7
|
+
bold, italic, underline, strikethrough, subscript, superscript, link, toggleInlineFormat, applyInlineStyle, formatBlockElements, toggleOrderedList, toggleUnorderedList, isAligned, undo, redo, cleanFormatting, selectAll } from '@progress/kendo-editor-common';
|
|
8
8
|
import { insertTable, deleteTable, addColumnBefore, addColumnAfter, addRowBefore, addRowAfter, deleteRow, deleteColumn, mergeCells, splitCell } from './table-commands';
|
|
9
9
|
const alignRemove = (state, dispatch) => alignBlocks(alignRemoveRules)(state, dispatch);
|
|
10
10
|
const ɵ0 = alignRemove;
|
|
11
|
-
const ɵ1 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, bold, { applyToWord })), ɵ2 = (options) => cleanFormatting(options), ɵ3 = attrs => expandToWordWrap(applyLink, { mark: 'link', attrs: attrs.value, applyToWord: attrs.applyToWord }), ɵ4 = attrs => expandToWordWrap(applyInlineStyle, { style: 'font-family', value: attrs.value, applyToWord: attrs.applyToWord }), ɵ5 = attrs => expandToWordWrap(applyInlineStyle, { style: 'font-size', value: attrs.value + 'px', applyToWord: attrs.applyToWord }), ɵ6 = attrs => expandToWordWrap(applyLink, { mark: 'link', attrs: attrs, applyToWord: attrs.applyToWord }), ɵ7 = text => insertText(text), ɵ8 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, italic, { applyToWord })), ɵ9 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, strikethrough, { applyToWord })), ɵ10 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, subscript, { applyToWord })), ɵ11 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, superscript, { applyToWord })), ɵ12 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, underline, { applyToWord })), ɵ13 = () => removeLink(link), ɵ14 = attrs => expandToWordWrap(applyInlineStyle, { style: 'color', value: attrs.value, applyToWord: attrs.applyToWord }), ɵ15 = attrs => expandToWordWrap(applyInlineStyle, { style: 'background-color', value: attrs.value, applyToWord: attrs.applyToWord });
|
|
11
|
+
const ɵ1 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, bold, { applyToWord })), ɵ2 = (options) => cleanFormatting(options), ɵ3 = attrs => expandToWordWrap(applyLink, { mark: 'link', attrs: attrs.value, applyToWord: attrs.applyToWord }), ɵ4 = attrs => expandToWordWrap(applyInlineStyle, { style: 'font-family', value: attrs.value, applyToWord: attrs.applyToWord }), ɵ5 = attrs => expandToWordWrap(applyInlineStyle, { style: 'font-size', value: attrs.value + 'px', applyToWord: attrs.applyToWord }), ɵ6 = attrs => expandToWordWrap(applyLink, { mark: 'link', attrs: attrs, applyToWord: attrs.applyToWord }), ɵ7 = text => insertText(text), ɵ8 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, italic, { applyToWord })), ɵ9 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, strikethrough, { applyToWord })), ɵ10 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, subscript, { applyToWord })), ɵ11 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, superscript, { applyToWord })), ɵ12 = (applyToWord) => expandToWordWrap(toggleInlineFormat, Object.assign({}, underline, { applyToWord })), ɵ13 = () => removeLink(link), ɵ14 = attrs => expandToWordWrap(applyInlineStyle, { style: 'color', value: attrs.value, applyToWord: attrs.applyToWord }), ɵ15 = attrs => expandToWordWrap(applyInlineStyle, { style: 'background-color', value: attrs.value, applyToWord: attrs.applyToWord }), ɵ16 = () => (state, dispatch) => selectAll(state, dispatch);
|
|
12
12
|
const inlineCommand = {
|
|
13
13
|
bold: ɵ1,
|
|
14
14
|
cleanFormatting: ɵ2,
|
|
@@ -24,42 +24,43 @@ const inlineCommand = {
|
|
|
24
24
|
underline: ɵ12,
|
|
25
25
|
unlink: ɵ13,
|
|
26
26
|
foreColor: ɵ14,
|
|
27
|
-
backColor: ɵ15
|
|
27
|
+
backColor: ɵ15,
|
|
28
|
+
selectAll: ɵ16
|
|
28
29
|
};
|
|
29
|
-
const ɵ
|
|
30
|
+
const ɵ17 = () => (state, dispatch) => isAligned(state, alignCenterRules) ? alignRemove(state, dispatch) : alignBlocks(alignCenterRules)(state, dispatch), ɵ18 = () => (state, dispatch) => isAligned(state, alignJustifyRules) ? alignRemove(state, dispatch) : alignBlocks(alignJustifyRules)(state, dispatch), ɵ19 = () => (state, dispatch) => isAligned(state, alignLeftRules) ? alignRemove(state, dispatch) : alignBlocks(alignLeftRules)(state, dispatch), ɵ20 = () => (state, dispatch) => isAligned(state, alignRightRules) ? alignRemove(state, dispatch) : alignBlocks(alignRightRules)(state, dispatch), ɵ21 = formatAttr => formatBlockElements(formatAttr.tag), ɵ22 = () => getHtml, ɵ23 = () => indent, ɵ24 = attrs => insertImage(attrs), ɵ25 = () => toggleOrderedList, ɵ26 = () => toggleUnorderedList, ɵ27 = () => outdent, ɵ28 = () => redo, ɵ29 = ({ content, parseOptions }) => setHtml(content, 'setHTML', parseOptions), ɵ30 = () => undo;
|
|
30
31
|
const blockCommand = {
|
|
31
|
-
alignCenter: ɵ
|
|
32
|
-
alignJustify: ɵ
|
|
33
|
-
alignLeft: ɵ
|
|
34
|
-
alignRight: ɵ
|
|
35
|
-
format: ɵ
|
|
36
|
-
getHTML: ɵ
|
|
37
|
-
indent: ɵ
|
|
38
|
-
insertImage: ɵ
|
|
32
|
+
alignCenter: ɵ17,
|
|
33
|
+
alignJustify: ɵ18,
|
|
34
|
+
alignLeft: ɵ19,
|
|
35
|
+
alignRight: ɵ20,
|
|
36
|
+
format: ɵ21,
|
|
37
|
+
getHTML: ɵ22,
|
|
38
|
+
indent: ɵ23,
|
|
39
|
+
insertImage: ɵ24,
|
|
39
40
|
// think about changing the command name.
|
|
40
|
-
insertOrderedList: ɵ
|
|
41
|
+
insertOrderedList: ɵ25,
|
|
41
42
|
// think about changing the command name.
|
|
42
|
-
insertUnorderedList: ɵ
|
|
43
|
-
outdent: ɵ
|
|
44
|
-
redo: ɵ
|
|
45
|
-
setHTML: ɵ
|
|
46
|
-
undo: ɵ
|
|
43
|
+
insertUnorderedList: ɵ26,
|
|
44
|
+
outdent: ɵ27,
|
|
45
|
+
redo: ɵ28,
|
|
46
|
+
setHTML: ɵ29,
|
|
47
|
+
undo: ɵ30
|
|
47
48
|
};
|
|
48
|
-
const ɵ
|
|
49
|
+
const ɵ31 = attr => insertTable(attr), ɵ32 = () => addColumnBefore, ɵ33 = () => addColumnAfter, ɵ34 = () => addRowBefore, ɵ35 = () => addRowAfter, ɵ36 = () => deleteRow, ɵ37 = () => deleteColumn, ɵ38 = () => mergeCells, ɵ39 = () => splitCell, ɵ40 = () => deleteTable;
|
|
49
50
|
const tableCommand = {
|
|
50
|
-
insertTable: ɵ
|
|
51
|
-
addColumnBefore: ɵ
|
|
52
|
-
addColumnAfter: ɵ
|
|
53
|
-
addRowBefore: ɵ
|
|
54
|
-
addRowAfter: ɵ
|
|
55
|
-
deleteRow: ɵ
|
|
56
|
-
deleteColumn: ɵ
|
|
57
|
-
mergeCells: ɵ
|
|
58
|
-
splitCell: ɵ
|
|
59
|
-
deleteTable: ɵ
|
|
51
|
+
insertTable: ɵ31,
|
|
52
|
+
addColumnBefore: ɵ32,
|
|
53
|
+
addColumnAfter: ɵ33,
|
|
54
|
+
addRowBefore: ɵ34,
|
|
55
|
+
addRowAfter: ɵ35,
|
|
56
|
+
deleteRow: ɵ36,
|
|
57
|
+
deleteColumn: ɵ37,
|
|
58
|
+
mergeCells: ɵ38,
|
|
59
|
+
splitCell: ɵ39,
|
|
60
|
+
deleteTable: ɵ40
|
|
60
61
|
};
|
|
61
62
|
/**
|
|
62
63
|
* @hidden
|
|
63
64
|
*/
|
|
64
65
|
export const editorCommands = Object.assign({}, inlineCommand, blockCommand, tableCommand);
|
|
65
|
-
export { ɵ0, ɵ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 };
|
|
66
|
+
export { ɵ0, ɵ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 };
|
|
@@ -64,6 +64,10 @@ export const getToolbarState = (state, options) => ({
|
|
|
64
64
|
selected: false,
|
|
65
65
|
disabled: !redo(state)
|
|
66
66
|
},
|
|
67
|
+
selectAll: {
|
|
68
|
+
selected: false,
|
|
69
|
+
disabled: false
|
|
70
|
+
},
|
|
67
71
|
strikethrough: {
|
|
68
72
|
selected: hasMark(state, strikethrough),
|
|
69
73
|
disabled: false
|
|
@@ -113,6 +117,12 @@ export const getToolbarState = (state, options) => ({
|
|
|
113
117
|
selected: false,
|
|
114
118
|
disabled: false
|
|
115
119
|
},
|
|
120
|
+
// print
|
|
121
|
+
print: {
|
|
122
|
+
selected: false,
|
|
123
|
+
disabled: false
|
|
124
|
+
},
|
|
125
|
+
// table
|
|
116
126
|
insertTable: {
|
|
117
127
|
selected: false,
|
|
118
128
|
disabled: false
|
|
@@ -185,6 +195,8 @@ export const initialToolBarState = {
|
|
|
185
195
|
//history
|
|
186
196
|
redo: { selected: false, disabled: true },
|
|
187
197
|
undo: { selected: false, disabled: true },
|
|
198
|
+
// print
|
|
199
|
+
print: { selected: false, disabled: false },
|
|
188
200
|
//dialogs
|
|
189
201
|
createLink: { selected: false, disabled: true },
|
|
190
202
|
insertFile: { selected: false, disabled: true },
|
|
@@ -200,7 +212,9 @@ export const initialToolBarState = {
|
|
|
200
212
|
deleteColumn: { selected: false, disabled: true },
|
|
201
213
|
mergeCells: { selected: false, disabled: true },
|
|
202
214
|
splitCell: { selected: false, disabled: true },
|
|
203
|
-
deleteTable: { selected: false, disabled: true }
|
|
215
|
+
deleteTable: { selected: false, disabled: true },
|
|
216
|
+
// select all
|
|
217
|
+
selectAll: { selected: false, disabled: false }
|
|
204
218
|
};
|
|
205
219
|
/**
|
|
206
220
|
* @hidden
|
|
@@ -233,6 +247,8 @@ export const disabledToolBarState = {
|
|
|
233
247
|
//history
|
|
234
248
|
redo: { selected: false, disabled: true },
|
|
235
249
|
undo: { selected: false, disabled: true },
|
|
250
|
+
// print
|
|
251
|
+
print: { selected: false, disabled: true },
|
|
236
252
|
//dialogs
|
|
237
253
|
createLink: { selected: false, disabled: true },
|
|
238
254
|
insertFile: { selected: false, disabled: true },
|
|
@@ -248,5 +264,7 @@ export const disabledToolBarState = {
|
|
|
248
264
|
deleteColumn: { selected: false, disabled: true },
|
|
249
265
|
mergeCells: { selected: false, disabled: true },
|
|
250
266
|
splitCell: { selected: false, disabled: true },
|
|
251
|
-
deleteTable: { selected: false, disabled: true }
|
|
267
|
+
deleteTable: { selected: false, disabled: true },
|
|
268
|
+
// select all
|
|
269
|
+
selectAll: { selected: false, disabled: true }
|
|
252
270
|
};
|
|
@@ -39,6 +39,7 @@ export declare class EditorComponent implements AfterViewInit, ControlValueAcces
|
|
|
39
39
|
/**
|
|
40
40
|
* If set to `false`, the Editor will run in style non-encapsulated mode. This means
|
|
41
41
|
* that the styles of the page will be persisted in the Editor and its content will be affected by them.
|
|
42
|
+
* @default true
|
|
42
43
|
*/
|
|
43
44
|
iframe: boolean;
|
|
44
45
|
/**
|
|
@@ -147,6 +148,10 @@ export declare class EditorComponent implements AfterViewInit, ControlValueAcces
|
|
|
147
148
|
* @hidden
|
|
148
149
|
*/
|
|
149
150
|
focusChangedProgrammatically: boolean;
|
|
151
|
+
/**
|
|
152
|
+
* @hidden
|
|
153
|
+
*/
|
|
154
|
+
shouldEmitFocus: boolean;
|
|
150
155
|
private defaultToolbar;
|
|
151
156
|
private defaultToolbarComponent;
|
|
152
157
|
private subs;
|
|
@@ -61,6 +61,7 @@ let EditorComponent = EditorComponent_1 = class EditorComponent {
|
|
|
61
61
|
/**
|
|
62
62
|
* If set to `false`, the Editor will run in style non-encapsulated mode. This means
|
|
63
63
|
* that the styles of the page will be persisted in the Editor and its content will be affected by them.
|
|
64
|
+
* @default true
|
|
64
65
|
*/
|
|
65
66
|
this.iframe = true;
|
|
66
67
|
/**
|
|
@@ -477,7 +478,6 @@ let EditorComponent = EditorComponent_1 = class EditorComponent {
|
|
|
477
478
|
* Manually focus the Editor.
|
|
478
479
|
*/
|
|
479
480
|
focus() {
|
|
480
|
-
// this.focusChangedProgrammatically = true;
|
|
481
481
|
this.focusChangedProgrammatically = true;
|
|
482
482
|
this._view.focus();
|
|
483
483
|
this.focusChangedProgrammatically = false;
|
|
@@ -648,8 +648,9 @@ let EditorComponent = EditorComponent_1 = class EditorComponent {
|
|
|
648
648
|
if (this.readonly) {
|
|
649
649
|
contentAreaClasslist.add('k-state-focused');
|
|
650
650
|
}
|
|
651
|
-
if (!this.focusChangedProgrammatically) {
|
|
651
|
+
if (!this.focusChangedProgrammatically || this.shouldEmitFocus) {
|
|
652
652
|
this.ngZone.run(() => this.onFocus.emit());
|
|
653
|
+
this.shouldEmitFocus = false;
|
|
653
654
|
}
|
|
654
655
|
}));
|
|
655
656
|
this.subs.add(fromEvent(containerElement, 'focusout')
|
|
@@ -964,8 +965,12 @@ EditorComponent = EditorComponent_1 = tslib_1.__decorate([
|
|
|
964
965
|
linkWebAddress="Web address"
|
|
965
966
|
i18n-outdent="kendo.editor.outdent|The title of the tool that outdents the content."
|
|
966
967
|
outdent="Outdent"
|
|
968
|
+
i18n-print="kendo.editor.print|The title of the print tool."
|
|
969
|
+
print="Print"
|
|
967
970
|
i18n-redo="kendo.editor.redo|The title of the tool that undos the last action."
|
|
968
971
|
redo="Redo"
|
|
972
|
+
i18n-selectAll="kendo.editor.selectAll|The title of the tool that selects all content."
|
|
973
|
+
selectAll="Select All"
|
|
969
974
|
i18n-strikethrough="kendo.editor.strikethrough|The title of the tool that strikes through text."
|
|
970
975
|
strikethrough="Strikethrough"
|
|
971
976
|
i18n-subscript="kendo.editor.subscript|The title of the tool that makes text subscript."
|
|
@@ -66,6 +66,8 @@ import { FontFamilyDropDownListComponent } from './tools/fontfamily/editor-fontf
|
|
|
66
66
|
import { FontSizeDropDownListComponent } from './tools/fontsize/editor-fontsize-dropdownlist.component';
|
|
67
67
|
import { FontSizeDialogComponent } from './dialogs/font-size-dialog.component';
|
|
68
68
|
import { DropDownToolDirective } from './tools/shared/dropdown-tool.directive';
|
|
69
|
+
import { EditorPrintDirective } from './tools/print/editor-print-button.directive';
|
|
70
|
+
import { EditorSelectAllButtonDirective } from './tools/select-all/select-all-button.directive';
|
|
69
71
|
const COMPONENT_DIRECTIVES = [
|
|
70
72
|
//alignment
|
|
71
73
|
EditorAlignLeftButtonDirective,
|
|
@@ -117,7 +119,11 @@ const COMPONENT_DIRECTIVES = [
|
|
|
117
119
|
CustomMessagesComponent,
|
|
118
120
|
LocalizedMessagesDirective,
|
|
119
121
|
// dropdown tools
|
|
120
|
-
DropDownToolDirective
|
|
122
|
+
DropDownToolDirective,
|
|
123
|
+
// print
|
|
124
|
+
EditorPrintDirective,
|
|
125
|
+
// select all
|
|
126
|
+
EditorSelectAllButtonDirective
|
|
121
127
|
];
|
|
122
128
|
const TOOLBAR_TOOLS = [
|
|
123
129
|
EditorFontSizeComponent,
|
package/dist/es2015/index.d.ts
CHANGED
|
@@ -43,6 +43,8 @@ export { EditorInsertFileButtonDirective } from './tools/link/editor-insert-file
|
|
|
43
43
|
export { EditorUnlinkButtonDirective } from './tools/link/editor-unlink-button.directive';
|
|
44
44
|
export { EditorInsertOrderedListButtonDirective } from './tools/list/editor-insert-ordered-list-button.directive';
|
|
45
45
|
export { EditorInsertUnorderedListButtonDirective } from './tools/list/editor-insert-unordered-list-button.directive';
|
|
46
|
+
export { EditorPrintDirective } from './tools/print/editor-print-button.directive';
|
|
47
|
+
export { EditorSelectAllButtonDirective } from './tools/select-all/select-all-button.directive';
|
|
46
48
|
export { DropDownToolDirective } from './tools/shared/dropdown-tool.directive';
|
|
47
49
|
export { EditorCommandBase } from './tools/shared/editor-command-base';
|
|
48
50
|
export { EditorCommandButton } from './tools/shared/editor-command-button';
|
package/dist/es2015/index.js
CHANGED
|
@@ -42,6 +42,8 @@ export { EditorInsertFileButtonDirective } from './tools/link/editor-insert-file
|
|
|
42
42
|
export { EditorUnlinkButtonDirective } from './tools/link/editor-unlink-button.directive';
|
|
43
43
|
export { EditorInsertOrderedListButtonDirective } from './tools/list/editor-insert-ordered-list-button.directive';
|
|
44
44
|
export { EditorInsertUnorderedListButtonDirective } from './tools/list/editor-insert-unordered-list-button.directive';
|
|
45
|
+
export { EditorPrintDirective } from './tools/print/editor-print-button.directive';
|
|
46
|
+
export { EditorSelectAllButtonDirective } from './tools/select-all/select-all-button.directive';
|
|
45
47
|
export { DropDownToolDirective } from './tools/shared/dropdown-tool.directive';
|
|
46
48
|
export { EditorCommandBase } from './tools/shared/editor-command-base';
|
|
47
49
|
export { EditorCommandButton } from './tools/shared/editor-command-button';
|