@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.
|
|
@@ -1474,7 +1474,9 @@ var InPlaceEditor = /** @__PURE__ @class */ (function (_super) {
|
|
|
1474
1474
|
*/
|
|
1475
1475
|
InPlaceEditor.prototype.requiredModules = function () {
|
|
1476
1476
|
var modules = [];
|
|
1477
|
-
|
|
1477
|
+
if (Array.prototype.indexOf.call(this.moduleList, this.type) > -1) {
|
|
1478
|
+
modules.push({ member: modulesList[this.type], args: [this] });
|
|
1479
|
+
}
|
|
1478
1480
|
return modules;
|
|
1479
1481
|
};
|
|
1480
1482
|
/**
|
|
@@ -2012,7 +2014,7 @@ var MultiSelect$1 = /** @__PURE__ @class */ (function () {
|
|
|
2012
2014
|
var Rte = /** @__PURE__ @class */ (function () {
|
|
2013
2015
|
function Rte(parent) {
|
|
2014
2016
|
this.compObj = undefined;
|
|
2015
|
-
RichTextEditor.Inject(HtmlEditor, MarkdownEditor, Toolbar, Link, Image, QuickToolbar, Table, FileManager);
|
|
2017
|
+
RichTextEditor.Inject(HtmlEditor, MarkdownEditor, Toolbar, Link, Image, QuickToolbar, Table, FileManager, PasteCleanup, EmojiPicker, Audio, Video, FormatPainter, Count);
|
|
2016
2018
|
this.parent = parent;
|
|
2017
2019
|
this.parent.rteModule = this;
|
|
2018
2020
|
this.base = new Base(this.parent, this);
|