@syncfusion/ej2-react-richtexteditor 20.4.53 → 21.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/CHANGELOG.md +13 -1
- package/diConfig.json +6 -1
- package/dist/ej2-react-richtexteditor.min.js +2 -2
- package/dist/ej2-react-richtexteditor.umd.min.js +2 -2
- package/dist/ej2-react-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-react-richtexteditor.es2015.js +1 -0
- package/dist/es6/ej2-react-richtexteditor.es2015.js.map +1 -1
- package/package.json +9 -9
- package/src/rich-text-editor/richtexteditor.component.d.ts +1 -0
- package/src/rich-text-editor/richtexteditor.component.js +1 -0
- package/styles/bootstrap-dark.css +31 -1
- package/styles/bootstrap.css +31 -1
- package/styles/bootstrap4.css +31 -1
- package/styles/bootstrap5-dark.css +32 -2
- package/styles/bootstrap5.css +32 -2
- package/styles/fabric-dark.css +31 -1
- package/styles/fabric.css +31 -1
- package/styles/fluent-dark.css +34 -4
- package/styles/fluent.css +34 -4
- package/styles/highcontrast-light.css +31 -1
- package/styles/highcontrast.css +31 -1
- package/styles/material-dark.css +31 -1
- package/styles/material.css +31 -1
- package/styles/rich-text-editor/bootstrap-dark.css +31 -1
- package/styles/rich-text-editor/bootstrap.css +31 -1
- package/styles/rich-text-editor/bootstrap4.css +31 -1
- package/styles/rich-text-editor/bootstrap5-dark.css +32 -2
- package/styles/rich-text-editor/bootstrap5.css +32 -2
- package/styles/rich-text-editor/fabric-dark.css +31 -1
- package/styles/rich-text-editor/fabric.css +31 -1
- package/styles/rich-text-editor/fluent-dark.css +34 -4
- package/styles/rich-text-editor/fluent.css +34 -4
- package/styles/rich-text-editor/highcontrast-light.css +31 -1
- package/styles/rich-text-editor/highcontrast.css +31 -1
- package/styles/rich-text-editor/material-dark.css +31 -1
- package/styles/rich-text-editor/material.css +31 -1
- package/styles/rich-text-editor/tailwind-dark.css +31 -1
- package/styles/rich-text-editor/tailwind.css +31 -1
- package/styles/tailwind-dark.css +31 -1
- package/styles/tailwind.css +31 -1
package/CHANGELOG.md
CHANGED
@@ -6,6 +6,19 @@
|
|
6
6
|
|
7
7
|
#### Bug Fixes
|
8
8
|
|
9
|
+
- `#I442919` - Now, when focusing out of the Rich Text Editor, the embed YouTube video will not be removed.
|
10
|
+
|
11
|
+
#### New Features
|
12
|
+
|
13
|
+
- **Tooltip Integration**: The Rich Text Editor tooltip has been redesigned to more clearly display the keyboard shortcut information, making it easier for users to understand the functions of each toolbar item.
|
14
|
+
|
15
|
+
## 20.4.53 (2023-03-07)
|
16
|
+
|
17
|
+
### RichTextEditor
|
18
|
+
|
19
|
+
#### Bug Fixes
|
20
|
+
|
21
|
+
- `#F180013` - Resolved issue where pasting from Word with `enterKey` configuration set to `BR` did not work properly in the RichTextEditor.
|
9
22
|
- `#I440490` - Now, the inline toolbar will be shown while selecting text in the Rich Text Editor using the keyboard.
|
10
23
|
- `#I440456` - Now, expanding the toolbar will work properly when the width of the Rich Text Editor is half the screen size.
|
11
24
|
- `#I436678` - Now, the image is not duplicated when it is pasted into the Rich Text Editor and performing `shift+enter` key action.
|
@@ -31,7 +44,6 @@
|
|
31
44
|
|
32
45
|
#### Bug Fixes
|
33
46
|
|
34
|
-
- `#F180013` - Resolved issue where pasting from Word with `enterKey` configuration set to `BR` did not work properly in the RichTextEditor.
|
35
47
|
- `#I431289` - Fixed issue where pasting text from MS Word into the Rich Text Editor and pressing enter caused bullet point text to be removed.
|
36
48
|
|
37
49
|
## 20.4.50 (2023-02-14)
|
package/diConfig.json
CHANGED
@@ -24,6 +24,7 @@
|
|
24
24
|
"twoWays": [
|
25
25
|
"value"
|
26
26
|
],
|
27
|
+
"statelessTemplateProps": ["valueTemplate"],
|
27
28
|
"blazorPlaceholder": "richtexteditor",
|
28
29
|
"blazorType": "native",
|
29
30
|
"blazorDependency": [
|
@@ -48,7 +49,8 @@
|
|
48
49
|
"Table",
|
49
50
|
"PasteCleanup",
|
50
51
|
"Resize",
|
51
|
-
"FileManager"
|
52
|
+
"FileManager",
|
53
|
+
"FormatPainter"
|
52
54
|
],
|
53
55
|
"diModuleFiles": [
|
54
56
|
{
|
@@ -89,6 +91,9 @@
|
|
89
91
|
},
|
90
92
|
{
|
91
93
|
"fileName": "file-manager"
|
94
|
+
},
|
95
|
+
{
|
96
|
+
"fileName": "format-painter"
|
92
97
|
}
|
93
98
|
],
|
94
99
|
"comment": [
|
@@ -1,10 +1,10 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: ej2-react-richtexteditor.min.js
|
3
|
-
* version :
|
3
|
+
* version : 21.1.35
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
5
5
|
* Use of this code is subject to the terms of our license.
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
7
7
|
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
8
8
|
* applicable laws.
|
9
9
|
*/
|
10
|
-
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("SyncfusionReactBase"),require("SyncfusionRichtexteditor"),require("React")):"function"==typeof define&&define.amd?define(["SyncfusionReactBase","SyncfusionRichtexteditor","React"],e):"object"==typeof exports?exports.SyncfusionReactRichtexteditor=e(require("SyncfusionReactBase"),require("SyncfusionRichtexteditor"),require("React")):t.SyncfusionReactRichtexteditor=e(t.SyncfusionReactBase,t.SyncfusionRichtexteditor,t.React)}(this,function(t,e,n){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=3)}([function(e,n){e.exports=t},function(t,n){t.exports=e},function(t,e,n){"use strict";var r=n(4);n.d(e,"a",function(){return r.a})},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(2);n.d(e,"RichTextEditorComponent",function(){return r.a});var o=n(0);n.n(o);n.o(o,"Inject")&&n.d(e,"Inject",function(){return o.Inject});var i=n(1);n.n(i);for(var c in i)["RichTextEditorComponent","Inject","default"].indexOf(c)<0&&function(t){n.d(e,t,function(){return i[t]})}(c)},function(t,e,n){"use strict";n.d(e,"a",function(){return u});var r=n(5),o=(n.n(r),n(1)),i=(n.n(o),n(0)),c=(n.n(i),this&&this.__extends||function(){var t=function(e,n){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(e,n)};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}()),u=function(t){function e(e){var n=t.call(this,e)||this;return n.initRenderCalled=!1,n.checkInjectedModules=!0,n.immediateRender=!1,n.portals=[],n}return c(e,t),e.prototype.render=function(){if(!(this.element&&!this.initRenderCalled||this.refreshing)||this.isReactForeceUpdate)return r.createElement("div",this.getDefaultAttributes(),[].concat(this.props.children,this.portals));t.prototype.render.call(this),this.initRenderCalled=!0},e}(o.RichTextEditor);n.i(i.applyMixins)(u,[i.ComponentBase,r.Component])},function(t,e){t.exports=n}])});
|
10
|
+
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("SyncfusionReactBase"),require("SyncfusionRichtexteditor"),require("React")):"function"==typeof define&&define.amd?define(["SyncfusionReactBase","SyncfusionRichtexteditor","React"],e):"object"==typeof exports?exports.SyncfusionReactRichtexteditor=e(require("SyncfusionReactBase"),require("SyncfusionRichtexteditor"),require("React")):t.SyncfusionReactRichtexteditor=e(t.SyncfusionReactBase,t.SyncfusionRichtexteditor,t.React)}(this,function(t,e,n){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=3)}([function(e,n){e.exports=t},function(t,n){t.exports=e},function(t,e,n){"use strict";var r=n(4);n.d(e,"a",function(){return r.a})},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(2);n.d(e,"RichTextEditorComponent",function(){return r.a});var o=n(0);n.n(o);n.o(o,"Inject")&&n.d(e,"Inject",function(){return o.Inject});var i=n(1);n.n(i);for(var c in i)["RichTextEditorComponent","Inject","default"].indexOf(c)<0&&function(t){n.d(e,t,function(){return i[t]})}(c)},function(t,e,n){"use strict";n.d(e,"a",function(){return u});var r=n(5),o=(n.n(r),n(1)),i=(n.n(o),n(0)),c=(n.n(i),this&&this.__extends||function(){var t=function(e,n){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(e,n)};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}()),u=function(t){function e(e){var n=t.call(this,e)||this;return n.initRenderCalled=!1,n.checkInjectedModules=!0,n.statelessTemplateProps=["valueTemplate"],n.immediateRender=!1,n.portals=[],n}return c(e,t),e.prototype.render=function(){if(!(this.element&&!this.initRenderCalled||this.refreshing)||this.isReactForeceUpdate)return r.createElement("div",this.getDefaultAttributes(),[].concat(this.props.children,this.portals));t.prototype.render.call(this),this.initRenderCalled=!0},e}(o.RichTextEditor);n.i(i.applyMixins)(u,[i.ComponentBase,r.Component])},function(t,e){t.exports=n}])});
|
@@ -1,11 +1,11 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: ej2-react-richtexteditor.umd.min.js
|
3
|
-
* version :
|
3
|
+
* version : 21.1.35
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
5
5
|
* Use of this code is subject to the terms of our license.
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
7
7
|
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
8
8
|
* applicable laws.
|
9
9
|
*/
|
10
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("react"),require("@syncfusion/ej2-richtexteditor"),require("@syncfusion/ej2-react-base")):"function"==typeof define&&define.amd?define(["exports","react","@syncfusion/ej2-richtexteditor","@syncfusion/ej2-react-base"],t):t(e.ej={},e.React,e.ej2Richtexteditor,e.ej2ReactBase)}(this,function(e,t,n,r){"use strict";var i=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),o=function(e){function n(t){var n=e.call(this,t)||this;return n.initRenderCalled=!1,n.checkInjectedModules=!0,n.immediateRender=!1,n.portals=[],n}return i(n,e),n.prototype.render=function(){if(!(this.element&&!this.initRenderCalled||this.refreshing)||this.isReactForeceUpdate)return t.createElement("div",this.getDefaultAttributes(),[].concat(this.props.children,this.portals));e.prototype.render.call(this),this.initRenderCalled=!0},n}(n.RichTextEditor);r.applyMixins(o,[r.ComponentBase,t.Component]),e.Inject=r.Inject,e.RichTextEditorComponent=o,Object.keys(n).forEach(function(t){e[t]=n[t]}),Object.defineProperty(e,"__esModule",{value:!0})});
|
10
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("react"),require("@syncfusion/ej2-richtexteditor"),require("@syncfusion/ej2-react-base")):"function"==typeof define&&define.amd?define(["exports","react","@syncfusion/ej2-richtexteditor","@syncfusion/ej2-react-base"],t):t(e.ej={},e.React,e.ej2Richtexteditor,e.ej2ReactBase)}(this,function(e,t,n,r){"use strict";var i=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),o=function(e){function n(t){var n=e.call(this,t)||this;return n.initRenderCalled=!1,n.checkInjectedModules=!0,n.statelessTemplateProps=["valueTemplate"],n.immediateRender=!1,n.portals=[],n}return i(n,e),n.prototype.render=function(){if(!(this.element&&!this.initRenderCalled||this.refreshing)||this.isReactForeceUpdate)return t.createElement("div",this.getDefaultAttributes(),[].concat(this.props.children,this.portals));e.prototype.render.call(this),this.initRenderCalled=!0},n}(n.RichTextEditor);r.applyMixins(o,[r.ComponentBase,t.Component]),e.Inject=r.Inject,e.RichTextEditorComponent=o,Object.keys(n).forEach(function(t){e[t]=n[t]}),Object.defineProperty(e,"__esModule",{value:!0})});
|
11
11
|
//# sourceMappingURL=ej2-react-richtexteditor.umd.min.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ej2-react-richtexteditor.umd.min.js","sources":["../src/rich-text-editor/richtexteditor.component.js"],"sourcesContent":["var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport * as React from 'react';\nimport { RichTextEditor } from '@syncfusion/ej2-richtexteditor';\nimport { ComponentBase, applyMixins } from '@syncfusion/ej2-react-base';\n/**\n * `RichTextEditor` represents the react RichTextEditor.\n * ```tsx\n * <RichTextEditor/>\n * ```\n */\nvar RichTextEditorComponent = /** @class */ (function (_super) {\n __extends(RichTextEditorComponent, _super);\n function RichTextEditorComponent(props) {\n var _this = _super.call(this, props) || this;\n _this.initRenderCalled = false;\n _this.checkInjectedModules = true;\n _this.immediateRender = false;\n _this.portals = [];\n return _this;\n }\n RichTextEditorComponent.prototype.render = function () {\n if (((this.element && !this.initRenderCalled) || this.refreshing) && !this.isReactForeceUpdate) {\n _super.prototype.render.call(this);\n this.initRenderCalled = true;\n }\n else {\n return React.createElement('div', this.getDefaultAttributes(), [].concat(this.props.children, this.portals));\n }\n };\n return RichTextEditorComponent;\n}(RichTextEditor));\nexport { RichTextEditorComponent };\napplyMixins(RichTextEditorComponent, [ComponentBase, React.Component]);\n"],"names":["__extends","extendStatics","d","b","Object","setPrototypeOf","__proto__","Array","p","hasOwnProperty","__","this","constructor","prototype","create","RichTextEditorComponent","_super","props","_this","call","initRenderCalled","checkInjectedModules","immediateRender","portals","render","element","refreshing","isReactForeceUpdate","React.createElement","getDefaultAttributes","concat","children","RichTextEditor","ej2ReactBase","ComponentBase","React.Component"],"mappings":"6YAAA,IAAIA,EAAwC,WACxC,IAAIC,EAAgB,SAAUC,EAAGC,GAI7B,OAHAF,EAAgBG,OAAOC,iBAChBC,wBAA2BC,OAAS,SAAUL,EAAGC,GAAKD,EAAEI,UAAYH,IACvE,SAAUD,EAAGC,GAAK,IAAK,IAAIK,KAAKL,EAAOA,EAAEM,eAAeD,KAAIN,EAAEM,GAAKL,EAAEK,MACpDN,EAAGC,IAE5B,OAAO,SAAUD,EAAGC,GAEhB,SAASO,IAAOC,KAAKC,YAAcV,EADnCD,EAAcC,EAAGC,GAEjBD,EAAEW,UAAkB,OAANV,EAAaC,OAAOU,OAAOX,IAAMO,EAAGG,UAAYV,EAAEU,UAAW,IAAIH,IAV3C,GAsBxCK,EAAyC,SAAUC,GAEnD,SAASD,EAAwBE,GAC7B,IAAIC,EAAQF,EAAOG,KAAKR,KAAMM,IAAUN,
|
1
|
+
{"version":3,"file":"ej2-react-richtexteditor.umd.min.js","sources":["../src/rich-text-editor/richtexteditor.component.js"],"sourcesContent":["var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport * as React from 'react';\nimport { RichTextEditor } from '@syncfusion/ej2-richtexteditor';\nimport { ComponentBase, applyMixins } from '@syncfusion/ej2-react-base';\n/**\n * `RichTextEditor` represents the react RichTextEditor.\n * ```tsx\n * <RichTextEditor/>\n * ```\n */\nvar RichTextEditorComponent = /** @class */ (function (_super) {\n __extends(RichTextEditorComponent, _super);\n function RichTextEditorComponent(props) {\n var _this = _super.call(this, props) || this;\n _this.initRenderCalled = false;\n _this.checkInjectedModules = true;\n _this.statelessTemplateProps = [\"valueTemplate\"];\n _this.immediateRender = false;\n _this.portals = [];\n return _this;\n }\n RichTextEditorComponent.prototype.render = function () {\n if (((this.element && !this.initRenderCalled) || this.refreshing) && !this.isReactForeceUpdate) {\n _super.prototype.render.call(this);\n this.initRenderCalled = true;\n }\n else {\n return React.createElement('div', this.getDefaultAttributes(), [].concat(this.props.children, this.portals));\n }\n };\n return RichTextEditorComponent;\n}(RichTextEditor));\nexport { RichTextEditorComponent };\napplyMixins(RichTextEditorComponent, [ComponentBase, React.Component]);\n"],"names":["__extends","extendStatics","d","b","Object","setPrototypeOf","__proto__","Array","p","hasOwnProperty","__","this","constructor","prototype","create","RichTextEditorComponent","_super","props","_this","call","initRenderCalled","checkInjectedModules","statelessTemplateProps","immediateRender","portals","render","element","refreshing","isReactForeceUpdate","React.createElement","getDefaultAttributes","concat","children","RichTextEditor","ej2ReactBase","ComponentBase","React.Component"],"mappings":"6YAAA,IAAIA,EAAwC,WACxC,IAAIC,EAAgB,SAAUC,EAAGC,GAI7B,OAHAF,EAAgBG,OAAOC,iBAChBC,wBAA2BC,OAAS,SAAUL,EAAGC,GAAKD,EAAEI,UAAYH,IACvE,SAAUD,EAAGC,GAAK,IAAK,IAAIK,KAAKL,EAAOA,EAAEM,eAAeD,KAAIN,EAAEM,GAAKL,EAAEK,MACpDN,EAAGC,IAE5B,OAAO,SAAUD,EAAGC,GAEhB,SAASO,IAAOC,KAAKC,YAAcV,EADnCD,EAAcC,EAAGC,GAEjBD,EAAEW,UAAkB,OAANV,EAAaC,OAAOU,OAAOX,IAAMO,EAAGG,UAAYV,EAAEU,UAAW,IAAIH,IAV3C,GAsBxCK,EAAyC,SAAUC,GAEnD,SAASD,EAAwBE,GAC7B,IAAIC,EAAQF,EAAOG,KAAKR,KAAMM,IAAUN,KAMxC,OALAO,EAAME,kBAAmB,EACzBF,EAAMG,sBAAuB,EAC7BH,EAAMI,wBAA0B,iBAChCJ,EAAMK,iBAAkB,EACxBL,EAAMM,WACCN,EAWX,OAnBAlB,EAAUe,EAAyBC,GAUnCD,EAAwBF,UAAUY,OAAS,WACvC,KAAMd,KAAKe,UAAYf,KAAKS,kBAAqBT,KAAKgB,aAAgBhB,KAAKiB,oBAKvE,OAAOC,gBAAoB,MAAOlB,KAAKmB,0BAA2BC,OAAOpB,KAAKM,MAAMe,SAAUrB,KAAKa,UAJnGR,EAAOH,UAAUY,OAAON,KAAKR,MAC7BA,KAAKS,kBAAmB,GAMzBL,GACTkB,kBACFC,cACYnB,GAA0BoB,gBAAeC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ej2-react-richtexteditor.es2015.js","sources":["../src/es6/rich-text-editor/richtexteditor.component.js"],"sourcesContent":["import * as React from 'react';\nimport { RichTextEditor } from '@syncfusion/ej2-richtexteditor';\nimport { ComponentBase, applyMixins } from '@syncfusion/ej2-react-base';\n/**\n * `RichTextEditor` represents the react RichTextEditor.\n * ```tsx\n * <RichTextEditor/>\n * ```\n */\nexport class RichTextEditorComponent extends RichTextEditor {\n constructor(props) {\n super(props);\n this.initRenderCalled = false;\n this.checkInjectedModules = true;\n this.immediateRender = false;\n this.portals = [];\n }\n render() {\n if (((this.element && !this.initRenderCalled) || this.refreshing) && !this.isReactForeceUpdate) {\n super.render();\n this.initRenderCalled = true;\n }\n else {\n return React.createElement('div', this.getDefaultAttributes(), [].concat(this.props.children, this.portals));\n }\n }\n}\napplyMixins(RichTextEditorComponent, [ComponentBase, React.Component]);\n"],"names":["React.createElement","React.Component"],"mappings":";;;;AAGA;;;;;;AAMA,AAAO,MAAM,uBAAuB,SAAS,cAAc,CAAC;IACxD,WAAW,CAAC,KAAK,EAAE;QACf,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,gBAAgB,GAAG,KAAK,CAAC;QAC9B,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC;QACjC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;KACrB;IACD,MAAM,GAAG;QACL,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,IAAI,CAAC,gBAAgB,KAAK,IAAI,CAAC,UAAU,KAAK,CAAC,IAAI,CAAC,mBAAmB,EAAE;YAC5F,KAAK,CAAC,MAAM,EAAE,CAAC;YACf,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;SAChC;aACI;YACD,OAAOA,aAAmB,CAAC,KAAK,EAAE,IAAI,CAAC,oBAAoB,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;SAChH;KACJ;CACJ;AACD,WAAW,CAAC,uBAAuB,EAAE,CAAC,aAAa,EAAEC,SAAe,CAAC,CAAC,CAAC;;;;;;"}
|
1
|
+
{"version":3,"file":"ej2-react-richtexteditor.es2015.js","sources":["../src/es6/rich-text-editor/richtexteditor.component.js"],"sourcesContent":["import * as React from 'react';\nimport { RichTextEditor } from '@syncfusion/ej2-richtexteditor';\nimport { ComponentBase, applyMixins } from '@syncfusion/ej2-react-base';\n/**\n * `RichTextEditor` represents the react RichTextEditor.\n * ```tsx\n * <RichTextEditor/>\n * ```\n */\nexport class RichTextEditorComponent extends RichTextEditor {\n constructor(props) {\n super(props);\n this.initRenderCalled = false;\n this.checkInjectedModules = true;\n this.statelessTemplateProps = [\"valueTemplate\"];\n this.immediateRender = false;\n this.portals = [];\n }\n render() {\n if (((this.element && !this.initRenderCalled) || this.refreshing) && !this.isReactForeceUpdate) {\n super.render();\n this.initRenderCalled = true;\n }\n else {\n return React.createElement('div', this.getDefaultAttributes(), [].concat(this.props.children, this.portals));\n }\n }\n}\napplyMixins(RichTextEditorComponent, [ComponentBase, React.Component]);\n"],"names":["React.createElement","React.Component"],"mappings":";;;;AAGA;;;;;;AAMA,AAAO,MAAM,uBAAuB,SAAS,cAAc,CAAC;IACxD,WAAW,CAAC,KAAK,EAAE;QACf,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,gBAAgB,GAAG,KAAK,CAAC;QAC9B,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC;QACjC,IAAI,CAAC,sBAAsB,GAAG,CAAC,eAAe,CAAC,CAAC;QAChD,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;KACrB;IACD,MAAM,GAAG;QACL,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,IAAI,CAAC,gBAAgB,KAAK,IAAI,CAAC,UAAU,KAAK,CAAC,IAAI,CAAC,mBAAmB,EAAE;YAC5F,KAAK,CAAC,MAAM,EAAE,CAAC;YACf,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;SAChC;aACI;YACD,OAAOA,aAAmB,CAAC,KAAK,EAAE,IAAI,CAAC,oBAAoB,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;SAChH;KACJ;CACJ;AACD,WAAW,CAAC,uBAAuB,EAAE,CAAC,aAAa,EAAEC,SAAe,CAAC,CAAC,CAAC;;;;;;"}
|
package/package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"_from": "@syncfusion/ej2-react-richtexteditor@*",
|
3
|
-
"_id": "@syncfusion/ej2-react-richtexteditor@20.
|
3
|
+
"_id": "@syncfusion/ej2-react-richtexteditor@20.13.3",
|
4
4
|
"_inBundle": false,
|
5
|
-
"_integrity": "sha512
|
5
|
+
"_integrity": "sha512-/M9f6MfG1C5evb/SntPmtuiasq3pM5g6rixkVA8qPkyHWEmv10peLzdCpt+Z3iMRYk6oaAWRedt/LHqoHut95w==",
|
6
6
|
"_location": "/@syncfusion/ej2-react-richtexteditor",
|
7
7
|
"_phantomChildren": {},
|
8
8
|
"_requested": {
|
@@ -19,10 +19,10 @@
|
|
19
19
|
"_requiredBy": [
|
20
20
|
"/"
|
21
21
|
],
|
22
|
-
"_resolved": "https://nexus.syncfusion.com/repository/ej2-
|
23
|
-
"_shasum": "
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-react-richtexteditor/-/ej2-react-richtexteditor-20.13.3.tgz",
|
23
|
+
"_shasum": "202dbcee39583140047c64dd5e15f8b9863a6cb2",
|
24
24
|
"_spec": "@syncfusion/ej2-react-richtexteditor@*",
|
25
|
-
"_where": "/jenkins/workspace/
|
25
|
+
"_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
|
26
26
|
"author": {
|
27
27
|
"name": "Syncfusion Inc."
|
28
28
|
},
|
@@ -31,9 +31,9 @@
|
|
31
31
|
},
|
32
32
|
"bundleDependencies": false,
|
33
33
|
"dependencies": {
|
34
|
-
"@syncfusion/ej2-base": "~
|
35
|
-
"@syncfusion/ej2-react-base": "~
|
36
|
-
"@syncfusion/ej2-richtexteditor": "
|
34
|
+
"@syncfusion/ej2-base": "~21.1.35",
|
35
|
+
"@syncfusion/ej2-react-base": "~21.1.35",
|
36
|
+
"@syncfusion/ej2-richtexteditor": "21.1.35"
|
37
37
|
},
|
38
38
|
"deprecated": false,
|
39
39
|
"description": "Essential JS 2 RichTextEditor component for React",
|
@@ -54,6 +54,6 @@
|
|
54
54
|
"type": "git",
|
55
55
|
"url": "git+https://github.com/syncfusion/ej2-react-ui-components.git"
|
56
56
|
},
|
57
|
-
"version": "
|
57
|
+
"version": "21.1.35",
|
58
58
|
"sideEffects": false
|
59
59
|
}
|
@@ -18,6 +18,7 @@ export declare class RichTextEditorComponent extends RichTextEditor {
|
|
18
18
|
private getDefaultAttributes;
|
19
19
|
initRenderCalled: boolean;
|
20
20
|
private checkInjectedModules;
|
21
|
+
private statelessTemplateProps;
|
21
22
|
private immediateRender;
|
22
23
|
props: Readonly<{
|
23
24
|
children?: React.ReactNode | React.ReactNode[];
|
@@ -26,6 +26,7 @@ var RichTextEditorComponent = /** @class */ (function (_super) {
|
|
26
26
|
var _this = _super.call(this, props) || this;
|
27
27
|
_this.initRenderCalled = false;
|
28
28
|
_this.checkInjectedModules = true;
|
29
|
+
_this.statelessTemplateProps = ["valueTemplate"];
|
29
30
|
_this.immediateRender = false;
|
30
31
|
_this.portals = [];
|
31
32
|
return _this;
|
@@ -305,6 +305,10 @@
|
|
305
305
|
.e-rte-dropdown-popup .e-rte-file-manager::before {
|
306
306
|
content: "\e42b";
|
307
307
|
}
|
308
|
+
.e-rte-toolbar .e-rte-format-painter::before,
|
309
|
+
.e-rte-dropdown-popup .e-rte-format-painter::before {
|
310
|
+
content: "\e98b";
|
311
|
+
}
|
308
312
|
|
309
313
|
.e-richtexteditor .e-south-east::before,
|
310
314
|
.e-richtexteditor .e-south-west::before {
|
@@ -327,6 +331,10 @@
|
|
327
331
|
content: "\e89c";
|
328
332
|
}
|
329
333
|
|
334
|
+
.e-rte-cursor-brush {
|
335
|
+
cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.0194 8H18.0175C19.6583 8 21 9.35001 21 11L20.9903 23H4L5.0932 10.91C5.0932 9.35001 6.42524 8 8.07573 8H10.0544V1H16.0194V8ZM8.06602 10C7.51845 10 7.07184 10.45 7.07184 11L6.89126 13H19.0019V11C19.0019 10.45 18.5553 10 18.0078 10H8.06602ZM14.0311 8V3H12.0427V8H14.0311ZM19.0019 15H6.71068L6.16699 21H7.83689L19.0019 15.6291V15ZM19.0019 17.8463L12.4466 21H19.0019V17.8463Z" fill="black"/><path d="M6.71068 15H19.0019V15.6291L7.83689 21H6.16699L6.71068 15Z" fill="white"/><path d="M8.06602 10C7.51845 10 7.07184 10.45 7.07184 11L6.89126 13H19.0019V11C19.0019 10.45 18.5553 10 18.0078 10H8.06602Z" fill="white"/><path d="M14.0311 8V3H12.0427V8H14.0311Z" fill="white"/><path d="M19.0019 17.8463L12.4466 21H19.0019V17.8463Z" fill="white"/></svg>'), text;
|
336
|
+
}
|
337
|
+
|
330
338
|
/*! tab layout */
|
331
339
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
332
340
|
.e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
@@ -555,6 +563,7 @@
|
|
555
563
|
margin-right: 0;
|
556
564
|
}
|
557
565
|
.e-richtexteditor .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
|
566
|
+
display: inline-block;
|
558
567
|
margin-left: 0;
|
559
568
|
margin-right: 0;
|
560
569
|
overflow-x: auto;
|
@@ -1417,6 +1426,7 @@
|
|
1417
1426
|
}
|
1418
1427
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
|
1419
1428
|
white-space: nowrap;
|
1429
|
+
display: inline-block;
|
1420
1430
|
}
|
1421
1431
|
.e-rte-quick-popup .e-rte-quick-toolbar.e-remove-white-space .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
|
1422
1432
|
white-space: nowrap;
|
@@ -2297,6 +2307,11 @@
|
|
2297
2307
|
margin: 1px;
|
2298
2308
|
}
|
2299
2309
|
|
2310
|
+
.e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
|
2311
|
+
.e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
|
2312
|
+
visibility: hidden;
|
2313
|
+
}
|
2314
|
+
|
2300
2315
|
/*! tab layout */
|
2301
2316
|
.e-richtexteditor .e-rte-toolbar {
|
2302
2317
|
border: 1px solid #505050;
|
@@ -2389,6 +2404,9 @@
|
|
2389
2404
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons {
|
2390
2405
|
color: #f0f0f0;
|
2391
2406
|
}
|
2407
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
2408
|
+
color: #f0f0f0;
|
2409
|
+
}
|
2392
2410
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
2393
2411
|
color: #f0f0f0;
|
2394
2412
|
}
|
@@ -2407,6 +2425,9 @@
|
|
2407
2425
|
.e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
|
2408
2426
|
border: 0;
|
2409
2427
|
}
|
2428
|
+
.e-richtexteditor .e-toolbar-wrapper {
|
2429
|
+
background: #131313;
|
2430
|
+
}
|
2410
2431
|
.e-richtexteditor img.e-img-focus::selection,
|
2411
2432
|
.e-richtexteditor audio.e-audio-focus::selection,
|
2412
2433
|
.e-richtexteditor .e-video-focus::selection {
|
@@ -2605,7 +2626,8 @@
|
|
2605
2626
|
|
2606
2627
|
.e-dialog .e-img-uploadwrap .e-droptext,
|
2607
2628
|
.e-dialog .e-aud-uploadwrap .e-droptext,
|
2608
|
-
.e-dialog .e-vid-uploadwrap .e-droptext
|
2629
|
+
.e-dialog .e-vid-uploadwrap .e-droptext,
|
2630
|
+
.e-dialog.e-device .e-vid-uploadwrap .e-droptext {
|
2609
2631
|
border: dashed 2px #505050;
|
2610
2632
|
border-radius: 4px;
|
2611
2633
|
color: #676767;
|
@@ -2618,6 +2640,10 @@
|
|
2618
2640
|
width: 300px;
|
2619
2641
|
}
|
2620
2642
|
|
2643
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
2644
|
+
height: 108px;
|
2645
|
+
}
|
2646
|
+
|
2621
2647
|
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
|
2622
2648
|
.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
|
2623
2649
|
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
@@ -2770,6 +2796,10 @@ span.e-table-box.e-rbox-select {
|
|
2770
2796
|
color: #f0f0f0;
|
2771
2797
|
}
|
2772
2798
|
|
2799
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
|
2800
|
+
color: #f0f0f0;
|
2801
|
+
}
|
2802
|
+
|
2773
2803
|
.e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
|
2774
2804
|
border-bottom: 0;
|
2775
2805
|
}
|
package/styles/bootstrap.css
CHANGED
@@ -446,6 +446,10 @@
|
|
446
446
|
.e-rte-dropdown-popup .e-rte-file-manager::before {
|
447
447
|
content: "\e42b";
|
448
448
|
}
|
449
|
+
.e-rte-toolbar .e-rte-format-painter::before,
|
450
|
+
.e-rte-dropdown-popup .e-rte-format-painter::before {
|
451
|
+
content: "\e98b";
|
452
|
+
}
|
449
453
|
|
450
454
|
.e-richtexteditor .e-south-east::before,
|
451
455
|
.e-richtexteditor .e-south-west::before {
|
@@ -468,6 +472,10 @@
|
|
468
472
|
content: "\e89c";
|
469
473
|
}
|
470
474
|
|
475
|
+
.e-rte-cursor-brush {
|
476
|
+
cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.0194 8H18.0175C19.6583 8 21 9.35001 21 11L20.9903 23H4L5.0932 10.91C5.0932 9.35001 6.42524 8 8.07573 8H10.0544V1H16.0194V8ZM8.06602 10C7.51845 10 7.07184 10.45 7.07184 11L6.89126 13H19.0019V11C19.0019 10.45 18.5553 10 18.0078 10H8.06602ZM14.0311 8V3H12.0427V8H14.0311ZM19.0019 15H6.71068L6.16699 21H7.83689L19.0019 15.6291V15ZM19.0019 17.8463L12.4466 21H19.0019V17.8463Z" fill="black"/><path d="M6.71068 15H19.0019V15.6291L7.83689 21H6.16699L6.71068 15Z" fill="white"/><path d="M8.06602 10C7.51845 10 7.07184 10.45 7.07184 11L6.89126 13H19.0019V11C19.0019 10.45 18.5553 10 18.0078 10H8.06602Z" fill="white"/><path d="M14.0311 8V3H12.0427V8H14.0311Z" fill="white"/><path d="M19.0019 17.8463L12.4466 21H19.0019V17.8463Z" fill="white"/></svg>'), text;
|
477
|
+
}
|
478
|
+
|
471
479
|
/*! tab layout */
|
472
480
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
473
481
|
.e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
@@ -696,6 +704,7 @@
|
|
696
704
|
margin-right: 0;
|
697
705
|
}
|
698
706
|
.e-richtexteditor .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
|
707
|
+
display: inline-block;
|
699
708
|
margin-left: 0;
|
700
709
|
margin-right: 0;
|
701
710
|
overflow-x: auto;
|
@@ -1558,6 +1567,7 @@
|
|
1558
1567
|
}
|
1559
1568
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
|
1560
1569
|
white-space: nowrap;
|
1570
|
+
display: inline-block;
|
1561
1571
|
}
|
1562
1572
|
.e-rte-quick-popup .e-rte-quick-toolbar.e-remove-white-space .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
|
1563
1573
|
white-space: nowrap;
|
@@ -2438,6 +2448,11 @@
|
|
2438
2448
|
margin: 1px;
|
2439
2449
|
}
|
2440
2450
|
|
2451
|
+
.e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
|
2452
|
+
.e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
|
2453
|
+
visibility: hidden;
|
2454
|
+
}
|
2455
|
+
|
2441
2456
|
/*! tab layout */
|
2442
2457
|
.e-richtexteditor .e-rte-toolbar {
|
2443
2458
|
border: 1px solid #ddd;
|
@@ -2530,6 +2545,9 @@
|
|
2530
2545
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons {
|
2531
2546
|
color: #000;
|
2532
2547
|
}
|
2548
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
2549
|
+
color: #000;
|
2550
|
+
}
|
2533
2551
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
2534
2552
|
color: #000;
|
2535
2553
|
}
|
@@ -2548,6 +2566,9 @@
|
|
2548
2566
|
.e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
|
2549
2567
|
border: 0;
|
2550
2568
|
}
|
2569
|
+
.e-richtexteditor .e-toolbar-wrapper {
|
2570
|
+
background: #f8f8f8;
|
2571
|
+
}
|
2551
2572
|
.e-richtexteditor img.e-img-focus::selection,
|
2552
2573
|
.e-richtexteditor audio.e-audio-focus::selection,
|
2553
2574
|
.e-richtexteditor .e-video-focus::selection {
|
@@ -2746,7 +2767,8 @@
|
|
2746
2767
|
|
2747
2768
|
.e-dialog .e-img-uploadwrap .e-droptext,
|
2748
2769
|
.e-dialog .e-aud-uploadwrap .e-droptext,
|
2749
|
-
.e-dialog .e-vid-uploadwrap .e-droptext
|
2770
|
+
.e-dialog .e-vid-uploadwrap .e-droptext,
|
2771
|
+
.e-dialog.e-device .e-vid-uploadwrap .e-droptext {
|
2750
2772
|
border: dashed 2px #d4d4d4;
|
2751
2773
|
border-radius: 4px;
|
2752
2774
|
color: #adadad;
|
@@ -2759,6 +2781,10 @@
|
|
2759
2781
|
width: 300px;
|
2760
2782
|
}
|
2761
2783
|
|
2784
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
2785
|
+
height: 108px;
|
2786
|
+
}
|
2787
|
+
|
2762
2788
|
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
|
2763
2789
|
.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
|
2764
2790
|
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
@@ -2911,6 +2937,10 @@ span.e-table-box.e-rbox-select {
|
|
2911
2937
|
color: #000;
|
2912
2938
|
}
|
2913
2939
|
|
2940
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
|
2941
|
+
color: #000;
|
2942
|
+
}
|
2943
|
+
|
2914
2944
|
.e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
|
2915
2945
|
border-bottom: 0;
|
2916
2946
|
}
|
package/styles/bootstrap4.css
CHANGED
@@ -541,6 +541,10 @@
|
|
541
541
|
.e-rte-dropdown-popup .e-rte-file-manager::before {
|
542
542
|
content: "\e70f";
|
543
543
|
}
|
544
|
+
.e-rte-toolbar .e-rte-format-painter::before,
|
545
|
+
.e-rte-dropdown-popup .e-rte-format-painter::before {
|
546
|
+
content: "\e979";
|
547
|
+
}
|
544
548
|
|
545
549
|
.e-richtexteditor .e-south-east::before,
|
546
550
|
.e-richtexteditor .e-south-west::before {
|
@@ -563,6 +567,10 @@
|
|
563
567
|
content: "\e89c";
|
564
568
|
}
|
565
569
|
|
570
|
+
.e-rte-cursor-brush {
|
571
|
+
cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.0194 8H18.0175C19.6583 8 21 9.35001 21 11L20.9903 23H4L5.0932 10.91C5.0932 9.35001 6.42524 8 8.07573 8H10.0544V1H16.0194V8ZM8.06602 10C7.51845 10 7.07184 10.45 7.07184 11L6.89126 13H19.0019V11C19.0019 10.45 18.5553 10 18.0078 10H8.06602ZM14.0311 8V3H12.0427V8H14.0311ZM19.0019 15H6.71068L6.16699 21H7.83689L19.0019 15.6291V15ZM19.0019 17.8463L12.4466 21H19.0019V17.8463Z" fill="black"/><path d="M6.71068 15H19.0019V15.6291L7.83689 21H6.16699L6.71068 15Z" fill="white"/><path d="M8.06602 10C7.51845 10 7.07184 10.45 7.07184 11L6.89126 13H19.0019V11C19.0019 10.45 18.5553 10 18.0078 10H8.06602Z" fill="white"/><path d="M14.0311 8V3H12.0427V8H14.0311Z" fill="white"/><path d="M19.0019 17.8463L12.4466 21H19.0019V17.8463Z" fill="white"/></svg>'), text;
|
572
|
+
}
|
573
|
+
|
566
574
|
/*! tab layout */
|
567
575
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
568
576
|
.e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
@@ -791,6 +799,7 @@
|
|
791
799
|
margin-right: 0;
|
792
800
|
}
|
793
801
|
.e-richtexteditor .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
|
802
|
+
display: inline-block;
|
794
803
|
margin-left: 0;
|
795
804
|
margin-right: 0;
|
796
805
|
overflow-x: auto;
|
@@ -1653,6 +1662,7 @@
|
|
1653
1662
|
}
|
1654
1663
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
|
1655
1664
|
white-space: nowrap;
|
1665
|
+
display: inline-block;
|
1656
1666
|
}
|
1657
1667
|
.e-rte-quick-popup .e-rte-quick-toolbar.e-remove-white-space .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
|
1658
1668
|
white-space: nowrap;
|
@@ -2525,6 +2535,11 @@
|
|
2525
2535
|
margin: 1px;
|
2526
2536
|
}
|
2527
2537
|
|
2538
|
+
.e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
|
2539
|
+
.e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
|
2540
|
+
visibility: hidden;
|
2541
|
+
}
|
2542
|
+
|
2528
2543
|
/*! tab layout */
|
2529
2544
|
.e-richtexteditor .e-rte-toolbar {
|
2530
2545
|
border: 1px solid #dee2e6;
|
@@ -2617,6 +2632,9 @@
|
|
2617
2632
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons {
|
2618
2633
|
color: #212529;
|
2619
2634
|
}
|
2635
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
2636
|
+
color: #212529;
|
2637
|
+
}
|
2620
2638
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
2621
2639
|
color: #212529;
|
2622
2640
|
}
|
@@ -2635,6 +2653,9 @@
|
|
2635
2653
|
.e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
|
2636
2654
|
border: 0;
|
2637
2655
|
}
|
2656
|
+
.e-richtexteditor .e-toolbar-wrapper {
|
2657
|
+
background: #f8f9fa;
|
2658
|
+
}
|
2638
2659
|
.e-richtexteditor img.e-img-focus::selection,
|
2639
2660
|
.e-richtexteditor audio.e-audio-focus::selection,
|
2640
2661
|
.e-richtexteditor .e-video-focus::selection {
|
@@ -2833,7 +2854,8 @@
|
|
2833
2854
|
|
2834
2855
|
.e-dialog .e-img-uploadwrap .e-droptext,
|
2835
2856
|
.e-dialog .e-aud-uploadwrap .e-droptext,
|
2836
|
-
.e-dialog .e-vid-uploadwrap .e-droptext
|
2857
|
+
.e-dialog .e-vid-uploadwrap .e-droptext,
|
2858
|
+
.e-dialog.e-device .e-vid-uploadwrap .e-droptext {
|
2837
2859
|
border: dashed 2px #adb5bd;
|
2838
2860
|
border-radius: 4px;
|
2839
2861
|
color: #212529;
|
@@ -2846,6 +2868,10 @@
|
|
2846
2868
|
width: 300px;
|
2847
2869
|
}
|
2848
2870
|
|
2871
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
2872
|
+
height: 108px;
|
2873
|
+
}
|
2874
|
+
|
2849
2875
|
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
|
2850
2876
|
.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
|
2851
2877
|
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
@@ -2998,6 +3024,10 @@ span.e-table-box.e-rbox-select {
|
|
2998
3024
|
color: #fff;
|
2999
3025
|
}
|
3000
3026
|
|
3027
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
|
3028
|
+
color: #212529;
|
3029
|
+
}
|
3030
|
+
|
3001
3031
|
.e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
|
3002
3032
|
border-bottom: 0;
|
3003
3033
|
}
|
@@ -294,6 +294,10 @@
|
|
294
294
|
.e-rte-dropdown-popup .e-rte-file-manager::before {
|
295
295
|
content: "\e83c";
|
296
296
|
}
|
297
|
+
.e-rte-toolbar .e-rte-format-painter::before,
|
298
|
+
.e-rte-dropdown-popup .e-rte-format-painter::before {
|
299
|
+
content: "\e8bd";
|
300
|
+
}
|
297
301
|
|
298
302
|
.e-richtexteditor .e-south-east::before,
|
299
303
|
.e-richtexteditor .e-south-west::before {
|
@@ -316,6 +320,10 @@
|
|
316
320
|
content: "\e7c2";
|
317
321
|
}
|
318
322
|
|
323
|
+
.e-rte-cursor-brush {
|
324
|
+
cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.9995 3C8.9995 1.34315 10.3426 0 11.9995 0C13.6564 0 14.9995 1.34315 14.9995 3V8H17.9995C19.6564 8 20.9995 9.34315 20.9995 11V21C20.9995 22.6569 19.6564 24 17.9995 24H5.39593C3.51419 24 2.13195 22.3035 2.40063 20.4885C2.70116 18.4583 2.85091 16.8264 2.92551 15.7066C2.9628 15.1467 2.9813 14.7151 2.99048 14.4258C2.99507 14.2812 2.99732 14.1723 2.99843 14.1007C2.99899 14.0649 2.99925 14.0385 2.99938 14.0216L2.99949 14.0035L2.9995 14V11C2.9995 9.34315 4.34265 8 5.9995 8H8.9995V3ZM10.9995 8H12.9995V3C12.9995 2.44772 12.5518 2 11.9995 2C11.4472 2 10.9995 2.44772 10.9995 3V8ZM4.9995 13H18.9995V11C18.9995 10.4477 18.5518 10 17.9995 10H5.9995C5.44722 10 4.9995 10.4477 4.9995 11V13ZM18.9995 15H4.96914C4.95785 15.2397 4.94235 15.5203 4.92108 15.8395C4.84327 17.0075 4.6882 18.6931 4.37907 20.7813C4.28231 21.435 4.78205 22 5.39593 22H6.77987L18.9995 16.3602V15ZM18.9995 18.5629L11.5525 22H17.9995C18.5518 22 18.9995 21.5523 18.9995 21V18.5629Z" fill="black"/><path d="M4.96914 15H18.9995V16.3602L6.77987 22H5.39593C4.78205 22 4.28231 21.435 4.37907 20.7813C4.6882 18.6931 4.84327 17.0075 4.92108 15.8395C4.94235 15.5203 4.95785 15.2397 4.96914 15Z" fill="white"/><path d="M18.9995 13H4.9995V11C4.9995 10.4477 5.44722 10 5.9995 10H17.9995C18.5518 10 18.9995 10.4477 18.9995 11V13Z" fill="white"/><path d="M11.5525 22L18.9995 18.5629V21C18.9995 21.5523 18.5518 22 17.9995 22H11.5525Z" fill="white"/><path d="M12.9995 8H10.9995V3C10.9995 2.44772 11.4472 2 11.9995 2C12.5518 2 12.9995 2.44772 12.9995 3V8Z" fill="white"/></svg>'), text;
|
325
|
+
}
|
326
|
+
|
319
327
|
/*! tab layout */
|
320
328
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
321
329
|
.e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
@@ -557,6 +565,7 @@
|
|
557
565
|
margin-right: 0;
|
558
566
|
}
|
559
567
|
.e-richtexteditor .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
|
568
|
+
display: inline-block;
|
560
569
|
margin-left: 0;
|
561
570
|
margin-right: 0;
|
562
571
|
overflow-x: auto;
|
@@ -1425,6 +1434,7 @@
|
|
1425
1434
|
}
|
1426
1435
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
|
1427
1436
|
white-space: nowrap;
|
1437
|
+
display: inline-block;
|
1428
1438
|
}
|
1429
1439
|
.e-rte-quick-popup .e-rte-quick-toolbar.e-remove-white-space .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
|
1430
1440
|
white-space: nowrap;
|
@@ -2364,6 +2374,11 @@
|
|
2364
2374
|
margin: 1px;
|
2365
2375
|
}
|
2366
2376
|
|
2377
|
+
.e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
|
2378
|
+
.e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
|
2379
|
+
visibility: hidden;
|
2380
|
+
}
|
2381
|
+
|
2367
2382
|
/*! tab layout */
|
2368
2383
|
.e-richtexteditor .e-rte-toolbar {
|
2369
2384
|
border: 1px solid #444c54;
|
@@ -2472,6 +2487,9 @@
|
|
2472
2487
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons {
|
2473
2488
|
color: #adb5bd;
|
2474
2489
|
}
|
2490
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
2491
|
+
color: #fff;
|
2492
|
+
}
|
2475
2493
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
2476
2494
|
color: #fff;
|
2477
2495
|
}
|
@@ -2494,6 +2512,9 @@
|
|
2494
2512
|
.e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
|
2495
2513
|
border: 0;
|
2496
2514
|
}
|
2515
|
+
.e-richtexteditor .e-toolbar-wrapper {
|
2516
|
+
background: #282d31;
|
2517
|
+
}
|
2497
2518
|
.e-richtexteditor img.e-img-focus::selection,
|
2498
2519
|
.e-richtexteditor audio.e-audio-focus::selection,
|
2499
2520
|
.e-richtexteditor .e-video-focus::selection {
|
@@ -2514,7 +2535,7 @@
|
|
2514
2535
|
.e-richtexteditor .e-rte-content .e-content .e-video-focus:not(.e-resize),
|
2515
2536
|
.e-richtexteditor .e-source-content .e-content .e-img-focus:not(.e-resize),
|
2516
2537
|
.e-richtexteditor .e-source-content .e-content .e-video-focus:not(.e-resize) {
|
2517
|
-
border:
|
2538
|
+
border: solid 2px #0d6efd;
|
2518
2539
|
}
|
2519
2540
|
.e-richtexteditor .e-rte-content .e-content a,
|
2520
2541
|
.e-richtexteditor .e-source-content .e-content a {
|
@@ -2698,7 +2719,8 @@
|
|
2698
2719
|
|
2699
2720
|
.e-dialog .e-img-uploadwrap .e-droptext,
|
2700
2721
|
.e-dialog .e-aud-uploadwrap .e-droptext,
|
2701
|
-
.e-dialog .e-vid-uploadwrap .e-droptext
|
2722
|
+
.e-dialog .e-vid-uploadwrap .e-droptext,
|
2723
|
+
.e-dialog.e-device .e-vid-uploadwrap .e-droptext {
|
2702
2724
|
border: dashed 2px #adb5bd;
|
2703
2725
|
border-radius: 4px;
|
2704
2726
|
color: #ced4da;
|
@@ -2711,6 +2733,10 @@
|
|
2711
2733
|
width: 300px;
|
2712
2734
|
}
|
2713
2735
|
|
2736
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
2737
|
+
height: 108px;
|
2738
|
+
}
|
2739
|
+
|
2714
2740
|
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
|
2715
2741
|
.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
|
2716
2742
|
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
@@ -2867,6 +2893,10 @@ span.e-table-box.e-rbox-select {
|
|
2867
2893
|
color: #fff;
|
2868
2894
|
}
|
2869
2895
|
|
2896
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
|
2897
|
+
color: #fff;
|
2898
|
+
}
|
2899
|
+
|
2870
2900
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
|
2871
2901
|
background: #565e64;
|
2872
2902
|
border-radius: 4px;
|