@syncfusion/ej2-vue-richtexteditor 33.2.12 → 34.1.29
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/README.md +45 -37
- package/dist/ej2-vue-richtexteditor.umd.min.js +1 -1
- package/package.json +4 -4
- package/styles/bds-lite.scss +1 -1
- package/styles/bootstrap-dark-lite.scss +1 -1
- package/styles/bootstrap-lite.scss +1 -1
- package/styles/bootstrap4-lite.scss +1 -1
- package/styles/bootstrap5-dark-lite.scss +1 -1
- package/styles/bootstrap5-lite.scss +1 -1
- package/styles/bootstrap5.3-lite.scss +1 -1
- package/styles/fabric-dark-lite.scss +1 -1
- package/styles/fabric-lite.scss +1 -1
- package/styles/fluent-dark-lite.scss +1 -1
- package/styles/fluent-lite.scss +1 -1
- package/styles/fluent2-lite.scss +1 -1
- package/styles/highcontrast-light-lite.scss +1 -1
- package/styles/highcontrast-lite.scss +1 -1
- package/styles/material-dark-lite.scss +1 -1
- package/styles/material-lite.scss +1 -1
- package/styles/material3-dark-lite.scss +1 -1
- package/styles/material3-lite.scss +1 -1
- package/styles/rich-text-editor/bds.scss +1 -1
- package/styles/rich-text-editor/bootstrap-dark.scss +1 -1
- package/styles/rich-text-editor/bootstrap.scss +1 -1
- package/styles/rich-text-editor/bootstrap4.scss +1 -1
- package/styles/rich-text-editor/bootstrap5-dark.scss +1 -1
- package/styles/rich-text-editor/bootstrap5.3.scss +1 -1
- package/styles/rich-text-editor/bootstrap5.scss +1 -1
- package/styles/rich-text-editor/fabric-dark.scss +1 -1
- package/styles/rich-text-editor/fabric.scss +1 -1
- package/styles/rich-text-editor/fluent-dark.scss +1 -1
- package/styles/rich-text-editor/fluent.scss +1 -1
- package/styles/rich-text-editor/fluent2.scss +1 -1
- package/styles/rich-text-editor/highcontrast-light.scss +1 -1
- package/styles/rich-text-editor/highcontrast.scss +1 -1
- package/styles/rich-text-editor/material-dark.scss +1 -1
- package/styles/rich-text-editor/material.scss +1 -1
- package/styles/rich-text-editor/material3-dark.scss +1 -1
- package/styles/rich-text-editor/material3.scss +1 -1
- package/styles/rich-text-editor/tailwind-dark.scss +1 -1
- package/styles/rich-text-editor/tailwind.scss +1 -1
- package/styles/rich-text-editor/tailwind3.scss +1 -1
- package/styles/tailwind-dark-lite.scss +1 -1
- package/styles/tailwind-lite.scss +1 -1
- package/styles/tailwind3-lite.scss +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ The [Vue Rich Text Editor](https://www.syncfusion.com/vue-ui-components/vue-wysi
|
|
|
5
5
|
<div align="center">
|
|
6
6
|
<h4>
|
|
7
7
|
<a href="https://ej2.syncfusion.com/react/documentation/rich-text-editor/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=react-richtexteditor-npm">📖Getting started</a> •
|
|
8
|
-
<a href="https://ej2.syncfusion.com/react/demos/?utm_source=npm&utm_medium=listing&utm_campaign=react-richtexteditor-npm#/
|
|
8
|
+
<a href="https://ej2.syncfusion.com/react/demos/?utm_source=npm&utm_medium=listing&utm_campaign=react-richtexteditor-npm#/tailwind3/rich-text-editor/tools">🚀Online demos</a> •
|
|
9
9
|
<a href="https://www.syncfusion.com/react-components/react-wysiwyg-rich-text-editor?utm_source=npm&utm_medium=listing&utm_campaign=react-richtexteditor-npm">🌐Learn more</a>
|
|
10
10
|
</h4>
|
|
11
11
|
</div>
|
|
@@ -58,14 +58,14 @@ Add CSS references needed for Rich Text Editor in **style** section of the **App
|
|
|
58
58
|
|
|
59
59
|
```html
|
|
60
60
|
<style>
|
|
61
|
-
@import "../node_modules/@syncfusion/ej2-base/styles/
|
|
62
|
-
@import "../node_modules/@syncfusion/ej2-inputs/styles/
|
|
63
|
-
@import "../node_modules/@syncfusion/ej2-lists/styles/
|
|
64
|
-
@import "../node_modules/@syncfusion/ej2-popups/styles/
|
|
65
|
-
@import "../node_modules/@syncfusion/ej2-buttons/styles/
|
|
66
|
-
@import "../node_modules/@syncfusion/ej2-navigations/styles/
|
|
67
|
-
@import "../node_modules/@syncfusion/ej2-splitbuttons/styles/
|
|
68
|
-
@import "../node_modules/@syncfusion/ej2-vue-richtexteditor/styles/
|
|
61
|
+
@import "../node_modules/@syncfusion/ej2-base/styles/tailwind3.css";
|
|
62
|
+
@import "../node_modules/@syncfusion/ej2-inputs/styles/tailwind3.css";
|
|
63
|
+
@import "../node_modules/@syncfusion/ej2-lists/styles/tailwind3.css";
|
|
64
|
+
@import "../node_modules/@syncfusion/ej2-popups/styles/tailwind3.css";
|
|
65
|
+
@import "../node_modules/@syncfusion/ej2-buttons/styles/tailwind3.css";
|
|
66
|
+
@import "../node_modules/@syncfusion/ej2-navigations/styles/tailwind3.css";
|
|
67
|
+
@import "../node_modules/@syncfusion/ej2-splitbuttons/styles/tailwind3.css";
|
|
68
|
+
@import "../node_modules/@syncfusion/ej2-vue-richtexteditor/styles/tailwind3.css";
|
|
69
69
|
</style>
|
|
70
70
|
```
|
|
71
71
|
|
|
@@ -108,14 +108,14 @@ Add the Vue Rich Text Editor by using **ejs-richtexteditor** selector in **templ
|
|
|
108
108
|
</script>
|
|
109
109
|
|
|
110
110
|
<style>
|
|
111
|
-
@import "../node_modules/@syncfusion/ej2-base/styles/
|
|
112
|
-
@import "../node_modules/@syncfusion/ej2-inputs/styles/
|
|
113
|
-
@import "../node_modules/@syncfusion/ej2-lists/styles/
|
|
114
|
-
@import "../node_modules/@syncfusion/ej2-popups/styles/
|
|
115
|
-
@import "../node_modules/@syncfusion/ej2-buttons/styles/
|
|
116
|
-
@import "../node_modules/@syncfusion/ej2-navigations/styles/
|
|
117
|
-
@import "../node_modules/@syncfusion/ej2-splitbuttons/styles/
|
|
118
|
-
@import "../node_modules/@syncfusion/ej2-vue-richtexteditor/styles/
|
|
111
|
+
@import "../node_modules/@syncfusion/ej2-base/styles/tailwind3.css";
|
|
112
|
+
@import "../node_modules/@syncfusion/ej2-inputs/styles/tailwind3.css";
|
|
113
|
+
@import "../node_modules/@syncfusion/ej2-lists/styles/tailwind3.css";
|
|
114
|
+
@import "../node_modules/@syncfusion/ej2-popups/styles/tailwind3.css";
|
|
115
|
+
@import "../node_modules/@syncfusion/ej2-buttons/styles/tailwind3.css";
|
|
116
|
+
@import "../node_modules/@syncfusion/ej2-navigations/styles/tailwind3.css";
|
|
117
|
+
@import "../node_modules/@syncfusion/ej2-splitbuttons/styles/tailwind3.css";
|
|
118
|
+
@import "../node_modules/@syncfusion/ej2-vue-richtexteditor/styles/tailwind3.css";
|
|
119
119
|
</style>
|
|
120
120
|
```
|
|
121
121
|
> Refer the [Getting Started with Vue3](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/get-started/#getting-started) for using Syncfusion<sup>®</sup> Vue components in Vue 3 applications.
|
|
@@ -129,44 +129,52 @@ Rich Text Editor component is also offered in the following frameworks.
|
|
|
129
129
|
|
|
130
130
|
## 🏗️ Showcase samples
|
|
131
131
|
|
|
132
|
-
* [Vue HTML editor demo](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm/#/
|
|
133
|
-
* [Blog posting using Vue rich text editor demo](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm/#/
|
|
134
|
-
* [Vue Markdown editor demo](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm/#/
|
|
135
|
-
* [Vue live Markdown editor demo](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm/#/
|
|
132
|
+
* [Vue HTML editor demo](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm/#/tailwind3/rich-text-editor/tools.html)
|
|
133
|
+
* [Blog posting using Vue rich text editor demo](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm/#/tailwind3/rich-text-editor/blog-posting.html)
|
|
134
|
+
* [Vue Markdown editor demo](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm/#/tailwind3/rich-text-editor/markdown-editor.html)
|
|
135
|
+
* [Vue live Markdown editor demo](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm/#/tailwind3/rich-text-editor/online-html-editor.html)
|
|
136
136
|
|
|
137
137
|
## ✨ Key features
|
|
138
138
|
|
|
139
|
-
* [
|
|
139
|
+
* [AI Assistant](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm/#/tailwind3/rich-text-editor/ai-assistant.html) - The AI Assistant helps generate, rewrite, summarize, and refine editor content. It is designed to speed up content creation and improve editing productivity.
|
|
140
140
|
|
|
141
|
-
* [
|
|
141
|
+
* [Paste from MS Word](https://ej2.syncfusion.com/vue/demos/#/tailwind3/rich-text-editor/paste-cleanup.html) - Paste from MS Word brings content into the editor with formatting cleanup and structure preservation. It helps users reuse Word content without carrying over unwanted styles.
|
|
142
142
|
|
|
143
|
-
* [
|
|
143
|
+
* [IFrame](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm/#/tailwind3/rich-text-editor/iframe.html) - IFrame mode renders the editor content inside an isolated document context. It helps improve style encapsulation and reduces interference from external page styles.
|
|
144
144
|
|
|
145
|
-
* [
|
|
145
|
+
* [@Mentions](https://ej2.syncfusion.com/vue/demos/#/tailwind3/rich-text-editor/mention-integration.html) - Mentions let users tag people, topics, or items with an autocomplete suggestion list. They make collaboration and inline referencing faster and more accurate.
|
|
146
146
|
|
|
147
|
-
* [
|
|
147
|
+
* [Slash Menu](https://ej2.syncfusion.com/vue/demos/#/tailwind3/rich-text-editor/smart-suggestion.html) - Slash menu support lets users trigger editor commands by typing a forward slash. It provides a quick way to insert content blocks and formatting actions.
|
|
148
148
|
|
|
149
|
-
* [
|
|
149
|
+
* [Checklist](https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-rich-text-editor-npm/#/tailwind3/rich-text-editor/tools.html) - Checklist support enables users to create interactive task lists in the editor. It is useful for organizing work items and tracking progress within content.
|
|
150
150
|
|
|
151
|
-
* [
|
|
151
|
+
* [Accessibility & WCAG 2.0 Compliance](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/accessibility) - Accessibility support helps the editor work with assistive technologies and keyboard navigation. It ensures the component can be used more effectively by a broader audience.
|
|
152
152
|
|
|
153
|
-
* [
|
|
153
|
+
* [Preventing Cross-Site Scripting (XSS)](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/validation-security/xhtml-validation#cross-site-scripting-xss) - XSS protection helps validate and sanitize editor content before it is used or rendered. It reduces security risks by blocking malicious scripts and unsafe markup.
|
|
154
154
|
|
|
155
|
-
* [
|
|
155
|
+
* [HTML code editing](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/editor-value#source-code-editing) - HTML code editing lets users view and edit the underlying markup directly. It is helpful when precise control over the document structure is required.
|
|
156
156
|
|
|
157
|
-
* [
|
|
157
|
+
* [Markdown editor](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/editor-types/editor-modes#markdown-editor) - Markdown editor mode lets users create and edit content using Markdown syntax. It is ideal for lightweight authoring and text-based workflows.
|
|
158
158
|
|
|
159
|
-
* [Toolbar
|
|
159
|
+
* [Custom Toolbar Items](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/tools/custom-tools) - Custom toolbar items allow additional actions to be added to the editor toolbar. They help tailor the editing experience to specific application needs.
|
|
160
160
|
|
|
161
|
-
* [
|
|
161
|
+
* [Quick Toolbar](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/toolbar/quick-toolbar) - Quick Toolbar shows contextual actions for selected content such as text, images, and tables. It helps users apply common operations without leaving the editing area.
|
|
162
162
|
|
|
163
|
-
* [
|
|
163
|
+
* [File Browser](https://ej2.syncfusion.com/vue/demos/#/tailwind3/rich-text-editor/file-browser.html) - File Browser integration allows users to browse and select files within editor workflows. It supports file-based content management in a more seamless way.
|
|
164
164
|
|
|
165
|
-
* [
|
|
165
|
+
* [Emoji Picker](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/smart-editing/emoji-picker) - Emoji picker support lets users insert emojis into the editor content. It helps make messages and content more expressive and engaging.
|
|
166
166
|
|
|
167
|
-
* [
|
|
167
|
+
* [Insert Media](https://ej2.syncfusion.com/vue/demos/#/tailwind3/rich-text-editor/insert-media.html) - Insert Media allows audio and video content to be embedded in the editor. It is useful for creating richer and more interactive documents.
|
|
168
168
|
|
|
169
|
-
* [
|
|
169
|
+
* [Toolbar](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/toolbar/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm#toolbar-items) - Toolbar support provides editing controls and customization options for the editor. It supports floating behavior, multiple layout types, and toolbar positioning for flexible UI setups.
|
|
170
|
+
|
|
171
|
+
* [Export and Import](https://ej2.syncfusion.com/vue/demos/#/tailwind3/rich-text-editor/export-document.html) - Export and Import support allows content to be moved between the editor and document formats such as PDF and Word. It simplifies content sharing, archiving, and document processing.
|
|
172
|
+
|
|
173
|
+
* [Undo and redo](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/undo-redo) - Undo and redo support lets users reverse or repeat recent editing actions. It improves editing confidence by making changes easier to correct.
|
|
174
|
+
|
|
175
|
+
* [Module injection](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm#module-injection) - Module injection lets the editor load only the features that are needed. It helps reduce bundle size and keeps the component more efficient.
|
|
176
|
+
|
|
177
|
+
* [Third-party integration](https://ej2.syncfusion.com/vue/documentation/rich-text-editor/third-party-integration/?utm_source=npm&utm_medium=listing&utm_campaign=vue-rich-text-editor-npm#third-party-integration) - Third-party integration lets the editor work with external libraries and services. It extends the editor with additional capabilities beyond the built-in feature set.
|
|
170
178
|
|
|
171
179
|
## 📚 Resources
|
|
172
180
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-vue-richtexteditor.umd.min.js
|
|
3
|
-
* version :
|
|
3
|
+
* version : 34.1.29
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2025. 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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-vue-richtexteditor",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "34.1.29",
|
|
4
4
|
"description": "Essential JS 2 RichTextEditor component for Vue",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"es2015": "dist/es6/ej2-vue-richtexteditor.es2015.js",
|
|
20
20
|
"readme": "ReadMe.md",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@syncfusion/ej2-base": "~
|
|
23
|
-
"@syncfusion/ej2-vue-base": "~
|
|
24
|
-
"@syncfusion/ej2-richtexteditor": "
|
|
22
|
+
"@syncfusion/ej2-base": "~34.1.29",
|
|
23
|
+
"@syncfusion/ej2-vue-base": "~34.1.29",
|
|
24
|
+
"@syncfusion/ej2-richtexteditor": "34.1.29"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {},
|
|
27
27
|
"scripts": {
|
package/styles/bds-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/bds-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/bds-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/bootstrap-dark-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/bootstrap-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/bootstrap-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/bootstrap-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/bootstrap4-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/bootstrap4-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/bootstrap5-dark-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/bootstrap5-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/bootstrap5-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/bootstrap5-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/bootstrap5.3-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/bootstrap5.3-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/fabric-dark-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/fabric-dark-lite' as *;
|
package/styles/fabric-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/fabric-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/fabric-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/fluent-dark-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/fluent-dark-lite' as *;
|
package/styles/fluent-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/fluent-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/fluent-lite' as *;
|
package/styles/fluent2-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/fluent2-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/fluent2-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/highcontrast-light-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/highcontrast-light-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/highcontrast-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/highcontrast-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/material-dark-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/material-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/material-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/material-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/material3-dark-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/material3-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/material3-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/material3-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/bds' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/bds' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/bootstrap-dark' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/bootstrap-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/bootstrap' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/bootstrap' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/bootstrap4' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/bootstrap4' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/bootstrap5-dark' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/bootstrap5-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/bootstrap5.3' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/bootstrap5.3' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/bootstrap5' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/bootstrap5' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/fabric-dark' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/fabric-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/fabric' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/fabric' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/fluent-dark' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/fluent-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/fluent' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/fluent' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/fluent2' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/fluent2' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/highcontrast-light' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/highcontrast-light' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/highcontrast' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/highcontrast' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/material-dark' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/material-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/material' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/material' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/material3-dark' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/material3-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/material3' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/material3' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/tailwind-dark' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/tailwind-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/tailwind' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/tailwind' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/styles/rich-text-editor/tailwind3' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/styles/rich-text-editor/tailwind3' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/tailwind-dark-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/tailwind-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/tailwind-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/tailwind-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'ej2-richtexteditor/tailwind3-lite' as *;
|
|
1
|
+
@use '@syncfusion/ej2-richtexteditor/tailwind3-lite' as *;
|