@syncfusion/ej2-inplace-editor 24.2.4 → 25.1.35
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/ej2-inplace-editor.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js +5 -3
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +5 -3
- package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
- package/dist/global/ej2-inplace-editor.min.js +2 -2
- package/dist/global/ej2-inplace-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/dist/ts/inplace-editor/base/classes.ts +63 -0
- package/dist/ts/inplace-editor/base/events.ts +18 -0
- package/dist/ts/inplace-editor/base/inplace-editor.ts +1759 -0
- package/dist/ts/inplace-editor/base/interface.ts +127 -0
- package/dist/ts/inplace-editor/base/models.ts +47 -0
- package/dist/ts/inplace-editor/base/util.ts +104 -0
- package/dist/ts/inplace-editor/modules/auto-complete.ts +65 -0
- package/dist/ts/inplace-editor/modules/base-module.ts +74 -0
- package/dist/ts/inplace-editor/modules/color-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/combo-box.ts +63 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/multi-select.ts +88 -0
- package/dist/ts/inplace-editor/modules/rte.ts +72 -0
- package/dist/ts/inplace-editor/modules/slider.ts +59 -0
- package/dist/ts/inplace-editor/modules/time-picker.ts +54 -0
- package/package.json +18 -18
- package/src/inplace-editor/base/inplace-editor.d.ts +1 -1
- package/src/inplace-editor/base/inplace-editor.js +3 -1
- package/src/inplace-editor/modules/rte.js +2 -2
- package/styles/bootstrap.css +3 -3
- package/styles/inplace-editor/_bds-definition.scss +70 -0
- package/styles/inplace-editor/bootstrap.css +3 -3
- package/styles/inplace-editor/icons/_bds.scss +19 -0
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -41
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +0 -27
|
@@ -5,7 +5,7 @@ import { DatePicker, DateRangePicker, DateTimePicker, TimePicker } from '@syncfu
|
|
|
5
5
|
import { Tooltip, createSpinner, hideSpinner, showSpinner } from '@syncfusion/ej2-popups';
|
|
6
6
|
import { ColorPicker, FormValidator, MaskedTextBox, NumericTextBox, Slider, TextBox } from '@syncfusion/ej2-inputs';
|
|
7
7
|
import { AutoComplete, ComboBox, DropDownList, MultiSelect } from '@syncfusion/ej2-dropdowns';
|
|
8
|
-
import { FileManager, HtmlEditor, Image, Link, MarkdownEditor, QuickToolbar, RichTextEditor, Table, Toolbar } from '@syncfusion/ej2-richtexteditor';
|
|
8
|
+
import { Audio, Count, EmojiPicker, FileManager, FormatPainter, HtmlEditor, Image, Link, MarkdownEditor, PasteCleanup, QuickToolbar, RichTextEditor, Table, Toolbar, Video } from '@syncfusion/ej2-richtexteditor';
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* Exports util methods used by In-place editor.
|
|
@@ -1430,7 +1430,9 @@ let InPlaceEditor = class InPlaceEditor extends Component {
|
|
|
1430
1430
|
*/
|
|
1431
1431
|
requiredModules() {
|
|
1432
1432
|
const modules = [];
|
|
1433
|
-
|
|
1433
|
+
if (Array.prototype.indexOf.call(this.moduleList, this.type) > -1) {
|
|
1434
|
+
modules.push({ member: modulesList[this.type], args: [this] });
|
|
1435
|
+
}
|
|
1434
1436
|
return modules;
|
|
1435
1437
|
}
|
|
1436
1438
|
/**
|
|
@@ -1949,7 +1951,7 @@ class MultiSelect$1 {
|
|
|
1949
1951
|
class Rte {
|
|
1950
1952
|
constructor(parent) {
|
|
1951
1953
|
this.compObj = undefined;
|
|
1952
|
-
RichTextEditor.Inject(HtmlEditor, MarkdownEditor, Toolbar, Link, Image, QuickToolbar, Table, FileManager);
|
|
1954
|
+
RichTextEditor.Inject(HtmlEditor, MarkdownEditor, Toolbar, Link, Image, QuickToolbar, Table, FileManager, PasteCleanup, EmojiPicker, Audio, Video, FormatPainter, Count);
|
|
1953
1955
|
this.parent = parent;
|
|
1954
1956
|
this.parent.rteModule = this;
|
|
1955
1957
|
this.base = new Base(this.parent, this);
|