Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-richtexteditor

Package Overview
Dependencies
Maintainers
2
Versions
267
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-richtexteditor - npm Package Compare versions

Comparing version 16.2.44 to 16.2.45

8

CHANGELOG.md

@@ -9,2 +9,10 @@ # Changelog

- Provided `getText` public method from RichTextEditor.
## 16.2.44 (2018-07-10)
### RichTextEditor
#### Bug Fixes
- RichTextEditor `actionBegin` event missing arguments included.

@@ -11,0 +19,0 @@

9

dist/global/index.d.ts

@@ -1,10 +0,1 @@

/*!
* filename: index.d.ts
* version : 16.2.44
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved.
* Use of this code is subject to the terms of our license.
* A copy of the current license can be obtained at any time by e-mailing
* licensing@syncfusion.com. Any infringement will be prosecuted under
* applicable laws.
*/
import * as _richtexteditor from '@syncfusion/ej2-richtexteditor';

@@ -11,0 +2,0 @@ import * as _base from '@syncfusion/ej2-base';

10

package.json
{
"name": "@syncfusion/ej2-richtexteditor",
"version": "16.2.44",
"version": "16.2.45",
"description": "Essential JS 2 RichTextEditor component",

@@ -11,6 +11,6 @@ "author": "Syncfusion Inc.",

"dependencies": {
"@syncfusion/ej2-base": "~16.2.41",
"@syncfusion/ej2-navigations": "~16.2.44",
"@syncfusion/ej2-popups": "~16.2.41",
"@syncfusion/ej2-splitbuttons": "~16.2.44"
"@syncfusion/ej2-base": "~16.2.45",
"@syncfusion/ej2-navigations": "~16.2.45",
"@syncfusion/ej2-popups": "~16.2.45",
"@syncfusion/ej2-splitbuttons": "~16.2.45"
},

@@ -17,0 +17,0 @@ "devDependencies": {

@@ -120,2 +120,3 @@ import { Component, Observer, L10n } from '@syncfusion/ej2-base';

getEditPanel?(): Element;
getText?(): string;
getDocument?(): Document;

@@ -122,0 +123,0 @@ addEventListener?(): void;

@@ -539,2 +539,7 @@ import { Component, ModuleDeclaration, EmitType } from '@syncfusion/ej2-base';

/**
* Returns the text content as string.
* @return {string}
*/
getText(): string;
/**
* Sets the new HTML or text inside the RichTextEditor.

@@ -541,0 +546,0 @@ * @param {Element} element - Specifies the RichTextEditor content.

@@ -273,2 +273,5 @@ var __extends = (this && this.__extends) || (function () {

};
RichTextEditor.prototype.getText = function () {
return this.contentModule.getText();
};
RichTextEditor.prototype.setContent = function (element) {

@@ -275,0 +278,0 @@ this.contentModule.setPanel(element);

@@ -31,2 +31,7 @@ import { IRenderer, IRichTextEditor } from '../base/interface';

/**
* Returns the text content as string.
* @return {string}
*/
getText(): string;
/**
* Set the content div element of RichTextEditor

@@ -33,0 +38,0 @@ * @param {Element} panel

@@ -31,2 +31,5 @@ define(["require", "exports", "@syncfusion/ej2-base"], function (require, exports, ej2_base_1) {

};
ContentRender.prototype.getText = function () {
return this.getEditPanel().textContent;
};
ContentRender.prototype.setPanel = function (panel) {

@@ -33,0 +36,0 @@ this.contentPanel = panel;

@@ -30,2 +30,7 @@ import { IRenderer, IRichTextEditor } from '../base/interface';

/**
* Returns the text content as string.
* @return {string}
*/
getText(): string;
/**
* Set the content div element of RichTextEditor

@@ -32,0 +37,0 @@ * @param {Element} panel

@@ -26,2 +26,5 @@ define(["require", "exports", "@syncfusion/ej2-base"], function (require, exports, ej2_base_1) {

};
MarkdownRender.prototype.getText = function () {
return this.getEditPanel().value;
};
MarkdownRender.prototype.setPanel = function (panel) {

@@ -28,0 +31,0 @@ this.contentPanel = panel;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc