@syncfusion/ej2-angular-richtexteditor 34.2.6-ngcc → 34.2.6
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 +2965 -0
- package/README.md +124 -62
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/index.mjs +5 -0
- package/esm2020/src/rich-text-editor/richtexteditor-all.module.mjs +89 -0
- package/esm2020/src/rich-text-editor/richtexteditor.component.mjs +245 -0
- package/esm2020/src/rich-text-editor/richtexteditor.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-richtexteditor.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs +357 -0
- package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs +357 -0
- package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
- package/package.json +20 -7
- package/public_api.d.ts +1 -1
- package/src/index.d.ts +4 -4
- package/src/rich-text-editor/richtexteditor-all.module.d.ts +33 -27
- package/src/rich-text-editor/richtexteditor.component.d.ts +99 -96
- package/src/rich-text-editor/richtexteditor.module.d.ts +11 -5
- package/syncfusion-ej2-angular-richtexteditor.d.ts +5 -0
- package/@syncfusion/ej2-angular-richtexteditor.es5.js +0 -402
- package/@syncfusion/ej2-angular-richtexteditor.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-richtexteditor.js +0 -383
- package/@syncfusion/ej2-angular-richtexteditor.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-richtexteditor.umd.js +0 -1042
- package/dist/ej2-angular-richtexteditor.umd.js.map +0 -1
- package/dist/ej2-angular-richtexteditor.umd.min.js +0 -11
- package/dist/ej2-angular-richtexteditor.umd.min.js.map +0 -1
- package/ej2-angular-richtexteditor.d.ts +0 -5
- package/ej2-angular-richtexteditor.metadata.json +0 -1
package/README.md
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
# Angular Rich Text Editor | Angular Markdown Editor
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> **Using this package with an AI coding agent**
|
|
4
|
+
>
|
|
5
|
+
> Before generating Syncfusion® code, ask your AI coding agent to run the Syncfusion® setup using the following prompt:
|
|
6
|
+
>
|
|
7
|
+
> ```text
|
|
8
|
+
> Set up this project for Syncfusion® before generating code. Fetch and follow the official instructions at https://ai.syncfusion.com/agent-setup/prompt.md, then report the detected platform, installed skill pack, MCP status, and any required licensing action.
|
|
9
|
+
> ```
|
|
10
|
+
> The setup detects your project’s platform and loads the appropriate Syncfusion® skill pack. No Syncfusion® account or MCP key is required to install or read Syncfusion® agent skills.
|
|
11
|
+
>
|
|
12
|
+
> **Platform reference:** [https://ai.syncfusion.com/angular/llms.txt](https://ai.syncfusion.com/angular/llms.txt)
|
|
13
|
+
|
|
14
|
+
The [Angular RichTextEditor](https://www.syncfusion.com/rich-text-editor-sdk/angular-rich-text-editor?utm_source=npm&utm_medium=listing&utm_campaign=angular-rich-text-editor-npm) is a feature-rich WYSIWYG HTML editor and Markdown editor. The Rich Text Editor is widely used to create blogs, forum posts, notes sections, comment sections, messaging applications, and more. The component provides an efficient user interface for a better editing experience with mobile support. It has a variety of tools to edit and format rich content, and it return a valid HTML markup or Markdown (MD) content. It allows users to insert images, links, tables, media files and lists with modular architectures.
|
|
4
15
|
|
|
5
16
|
<div align="center">
|
|
6
17
|
<h4>
|
|
7
|
-
<a href="https://
|
|
18
|
+
<a href="https://help.syncfusion.com/rich-text-editor-sdk/angular/rich-text-editor/getting-started">📖Getting started</a> •
|
|
8
19
|
<a href="https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-rich-text-editor-npm#/tailwind3/rich-text-editor/tools">🚀Online demos</a> •
|
|
9
|
-
<a href="https://www.syncfusion.com/
|
|
20
|
+
<a href="https://www.syncfusion.com/rich-text-editor-sdk/angular-rich-text-editor?utm_source=npm&utm_medium=listing&utm_campaign=angular-rich-text-editor-npm">🌐Learn more</a>
|
|
10
21
|
</h4>
|
|
11
22
|
</div>
|
|
12
23
|
|
|
@@ -23,76 +34,86 @@ Trusted by the world's leading companies
|
|
|
23
34
|
|
|
24
35
|
## ⚡️ Quick Start
|
|
25
36
|
|
|
26
|
-
|
|
37
|
+
This guide uses the Angular CLI as the development environment for the Angular Rich Text Editor. Install [Node.js](https://nodejs.org/), and the [Angular CLI](https://github.com/angular/angular-cli), before proceeding.
|
|
27
38
|
|
|
28
|
-
###
|
|
39
|
+
### Create an Angular application
|
|
29
40
|
|
|
30
|
-
|
|
41
|
+
To set up the Angular CLI globally, run the following command.
|
|
31
42
|
|
|
32
|
-
```
|
|
33
|
-
npm install @
|
|
43
|
+
```sh
|
|
44
|
+
npm install -g @angular/cli
|
|
34
45
|
```
|
|
35
46
|
|
|
36
|
-
|
|
47
|
+
Then create a new application:
|
|
37
48
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
### ⚙️ Setup
|
|
49
|
+
```sh
|
|
50
|
+
ng new my-app
|
|
51
|
+
```
|
|
42
52
|
|
|
43
|
-
|
|
53
|
+
This command prompts you to configure the stylesheet format, Server-Side Rendering (SSR/SSG), and AI tooling options. Select the options that best fit the project.
|
|
44
54
|
|
|
45
|
-
|
|
55
|
+
Navigate to the project folder:
|
|
46
56
|
|
|
47
|
-
```
|
|
48
|
-
npm install -g @angular/cli
|
|
49
|
-
ng new my-app
|
|
57
|
+
```sh
|
|
50
58
|
cd my-app
|
|
51
59
|
```
|
|
52
60
|
|
|
53
|
-
|
|
61
|
+
### Install the Rich Text Editor package
|
|
54
62
|
|
|
55
|
-
|
|
63
|
+
The `@syncfusion/ej2-angular-richtexteditor` package supports Angular 14 and later.
|
|
56
64
|
|
|
57
|
-
```
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
import { RichTextEditorAllModule } from '@syncfusion/ej2-angular-richtexteditor';
|
|
61
|
-
import { AppComponent } from './app.component';
|
|
62
|
-
|
|
63
|
-
@NgModule({
|
|
64
|
-
declarations: [AppComponent],
|
|
65
|
-
imports: [BrowserModule, RichTextEditorAllModule],
|
|
66
|
-
bootstrap: [AppComponent]
|
|
67
|
-
})
|
|
68
|
-
export class AppModule { }
|
|
65
|
+
```sh
|
|
66
|
+
npm install @syncfusion/ej2-angular-richtexteditor --save
|
|
67
|
+
```
|
|
69
68
|
|
|
69
|
+
### Add the CSS reference
|
|
70
|
+
|
|
71
|
+
Install the Syncfusion<sup>®</sup> [Tailwind 3](https://www.npmjs.com/package/@syncfusion/ej2-tailwind3-theme) theme package:
|
|
72
|
+
|
|
73
|
+
```sh
|
|
74
|
+
npm install @syncfusion/ej2-tailwind3-theme --save
|
|
70
75
|
```
|
|
71
76
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
77
|
+
Then add the following CSS reference to the `src/styles.css` file:
|
|
78
|
+
|
|
79
|
+
```css
|
|
80
|
+
@import '../node_modules/@syncfusion/ej2-tailwind3-theme/styles/rich-text-editor/index.css';
|
|
81
|
+
```
|
|
76
82
|
|
|
77
|
-
###
|
|
83
|
+
### Add the Rich Text Editor component with required modules
|
|
78
84
|
|
|
79
|
-
|
|
85
|
+
Add the Rich Text Editor component to the `src/app/app.ts` file with the basic required modules, `Toolbar`, `Image`, `Link`, `HtmlEditor`, and `QuickToolbar`, provided using the `providers` array, and add the control's HTML elements to the component `template`:
|
|
80
86
|
|
|
81
87
|
```typescript
|
|
82
88
|
import { Component } from '@angular/core';
|
|
83
|
-
import { ToolbarService, LinkService, ImageService, HtmlEditorService } from '@syncfusion/ej2-angular-richtexteditor';
|
|
89
|
+
import { RichTextEditorModule, ToolbarService, LinkService, ImageService, HtmlEditorService, QuickToolbarService } from '@syncfusion/ej2-angular-richtexteditor';
|
|
90
|
+
|
|
84
91
|
@Component({
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
+
selector: 'app-root',
|
|
93
|
+
imports: [RichTextEditorModule],
|
|
94
|
+
providers: [ToolbarService, LinkService, ImageService, HtmlEditorService, QuickToolbarService],
|
|
95
|
+
template: `<ejs-richtexteditor id="editor" height="300px">
|
|
96
|
+
<ng-template #valueTemplate>
|
|
97
|
+
<p>Start editing your content here.</p>
|
|
98
|
+
</ng-template>
|
|
99
|
+
</ejs-richtexteditor>`
|
|
92
100
|
})
|
|
93
|
-
export class
|
|
101
|
+
export class App {}
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
<blockquote>
|
|
105
|
+
<p>ℹ️ <b>Note:</b></p>
|
|
106
|
+
<span>The example above imports only the required services (<code>ToolbarService</code>, <code>LinkService</code>, <code>ImageService</code>, <code>HtmlEditorService</code>, <code>QuickToolbarService</code>) to keep the bundle size small. For detailed information on module injection, refer to the Syncfusion<sup>®</sup> Rich Text Editor Module <a href="https://help.syncfusion.com/rich-text-editor-sdk/angular/rich-text-editor/module">Documentation</a>.</span>
|
|
107
|
+
</blockquote>
|
|
108
|
+
|
|
109
|
+
### Run the application
|
|
110
|
+
|
|
111
|
+
```sh
|
|
112
|
+
ng serve --open
|
|
94
113
|
```
|
|
95
114
|
|
|
115
|
+
Now, open your project in a browser, and the Rich Text Editor will be displayed! 🚀
|
|
116
|
+
|
|
96
117
|
## 🛠️ Supported frameworks
|
|
97
118
|
|
|
98
119
|
Rich Text Editor component is also offered in following list of frameworks.
|
|
@@ -121,40 +142,40 @@ Rich Text Editor component is also offered in following list of frameworks.
|
|
|
121
142
|
|
|
122
143
|
* [Checklist](https://ej2.syncfusion.com/angular/demos/#/tailwind3/rich-text-editor/tools) - Checklist support enables users to create interactive task lists in the editor. It is useful for organizing work items and tracking progress within content.
|
|
123
144
|
|
|
124
|
-
* [Accessibility & WCAG 2.0 Compliance](https://
|
|
145
|
+
* [Accessibility & WCAG 2.0 Compliance](https://help.syncfusion.com/rich-text-editor-sdk/angular/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.
|
|
125
146
|
|
|
126
|
-
* [Preventing Cross-Site Scripting (XSS)](https://
|
|
147
|
+
* [Preventing Cross-Site Scripting (XSS)](https://help.syncfusion.com/rich-text-editor-sdk/angular/rich-text-editor/validation-security/xhtml-validation#cross-site-scripting-xss-prevention) - 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.
|
|
127
148
|
|
|
128
|
-
* [HTML code editing](https://
|
|
149
|
+
* [HTML code editing](https://help.syncfusion.com/rich-text-editor-sdk/angular/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.
|
|
129
150
|
|
|
130
|
-
* [Markdown editor](https://
|
|
151
|
+
* [Markdown editor](https://help.syncfusion.com/rich-text-editor-sdk/angular/rich-text-editor/editor-types/editor-mode#markdown-editor) - Markdown editor mode lets users create and edit content using Markdown syntax. It is ideal for lightweight authoring and text-based workflows.
|
|
131
152
|
|
|
132
|
-
* [Custom Toolbar Items](https://
|
|
153
|
+
* [Custom Toolbar Items](https://help.syncfusion.com/rich-text-editor-sdk/angular/rich-text-editor/toolbar/?utm_source=npm&utm_medium=listing&utm_campaign=angular-rich-text-editor-npm#toolbar-items) - Custom toolbar items allow additional actions to be added to the editor toolbar. They help tailor the editing experience to specific application needs.
|
|
133
154
|
|
|
134
|
-
* [Quick Toolbar](https://
|
|
155
|
+
* [Quick Toolbar](https://help.syncfusion.com/rich-text-editor-sdk/angular/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.
|
|
135
156
|
|
|
136
157
|
* [File Browser](https://ej2.syncfusion.com/angular/demos/#/tailwind3/rich-text-editor/file-browser) - File Browser integration allows users to browse and select files within editor workflows. It supports file-based content management in a more seamless way.
|
|
137
158
|
|
|
138
|
-
* [Emoji Picker](https://
|
|
159
|
+
* [Emoji Picker](https://help.syncfusion.com/rich-text-editor-sdk/angular/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.
|
|
139
160
|
|
|
140
161
|
* [Insert Media](https://ej2.syncfusion.com/angular/demos/#/tailwind3/rich-text-editor/insert-media) - Insert Media allows audio and video content to be embedded in the editor. It is useful for creating richer and more interactive documents.
|
|
141
162
|
|
|
142
|
-
* [Toolbar](https://
|
|
163
|
+
* [Toolbar](https://help.syncfusion.com/rich-text-editor-sdk/angular/rich-text-editor/toolbar/?utm_source=npm&utm_medium=listing&utm_campaign=angular-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.
|
|
143
164
|
|
|
144
165
|
* [Export and Import](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-rich-text-editor-npm/#/tailwind3/rich-text-editor/export-document) - 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.
|
|
145
166
|
|
|
146
|
-
* [Undo and redo](https://
|
|
167
|
+
* [Undo and redo](https://help.syncfusion.com/rich-text-editor-sdk/angular/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.
|
|
147
168
|
|
|
148
|
-
* [Module injection](https://
|
|
169
|
+
* [Module injection](https://help.syncfusion.com/rich-text-editor-sdk/angular/rich-text-editor/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-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.
|
|
149
170
|
|
|
150
|
-
* [Third-party integration](https://
|
|
171
|
+
* [Third-party integration](https://help.syncfusion.com/rich-text-editor-sdk/angular/rich-text-editor/third-party-integration/?utm_source=npm&utm_medium=listing&utm_campaign=angular-rich-text-editor-npm) - 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.
|
|
151
172
|
|
|
152
173
|
## 📚 Resources
|
|
153
174
|
|
|
154
|
-
* [Documentation](https://
|
|
175
|
+
* [Documentation](https://help.syncfusion.com/rich-text-editor-sdk/angular/rich-text-editor/getting-started)
|
|
155
176
|
* [Theme Studio](https://ej2.syncfusion.com/themestudio/)
|
|
156
|
-
* [What's New](https://www.syncfusion.com/products/whatsnew/
|
|
157
|
-
* [Road Map](https://www.syncfusion.com/products/roadmap/
|
|
177
|
+
* [What's New](https://www.syncfusion.com/products/whatsnew/rich-text-editor-sdk)
|
|
178
|
+
* [Road Map](https://www.syncfusion.com/products/roadmap/rich-text-editor-sdk)
|
|
158
179
|
* [E-Books](https://www.syncfusion.com/succinctly-free-ebooks?searchkey=angular&type=all)
|
|
159
180
|
|
|
160
181
|
## 🤝 Support
|
|
@@ -162,11 +183,52 @@ Rich Text Editor component is also offered in following list of frameworks.
|
|
|
162
183
|
Product support is available through the following mediums.
|
|
163
184
|
|
|
164
185
|
* [Support ticket](https://support.syncfusion.com/support/tickets/create) - Guaranteed Response in 24 hours | Unlimited tickets | Holiday support
|
|
165
|
-
* [Community forum](https://www.syncfusion.com/forums/
|
|
186
|
+
* [Community forum](https://www.syncfusion.com/forums/rich-text-editor-sdk)
|
|
166
187
|
* [GitHub issues](https://github.com/syncfusion/ej2-angular-ui-components/issues/new)
|
|
167
188
|
* [Request feature or report bug](https://www.syncfusion.com/feedback/angular?utm_source=npm&utm_medium=listing&utm_campaign=angular-rich-text-editor-npm)
|
|
168
189
|
* Live chat
|
|
169
190
|
|
|
191
|
+
## Other Popular Angular Components
|
|
192
|
+
|
|
193
|
+
Explore other popular Syncfusion<sup>®</sup> Angular components curated from UI components, standalone SDKs, and document solution suites.
|
|
194
|
+
|
|
195
|
+
<table>
|
|
196
|
+
<tr>
|
|
197
|
+
<td align="center">
|
|
198
|
+
<a href="https://www.syncfusion.com/angular-components/angular-data-grid">Angular DataGrid</a>
|
|
199
|
+
</td>
|
|
200
|
+
<td align="center">
|
|
201
|
+
<a href="https://www.syncfusion.com/angular-components/angular-charts">Angular Charts</a>
|
|
202
|
+
</td>
|
|
203
|
+
<td align="center">
|
|
204
|
+
<a href="https://www.syncfusion.com/angular-components/angular-file-manager">Angular File Manager</a>
|
|
205
|
+
</td>
|
|
206
|
+
<td align="center">
|
|
207
|
+
<a href="https://www.syncfusion.com/gantt-sdk/angular-gantt-chart">Angular Gantt Chart</a>
|
|
208
|
+
</td>
|
|
209
|
+
<td align="center">
|
|
210
|
+
<a href="https://www.syncfusion.com/diagram-sdk/angular-diagram">Angular Diagram</a>
|
|
211
|
+
</td>
|
|
212
|
+
</tr>
|
|
213
|
+
<tr>
|
|
214
|
+
<td align="center">
|
|
215
|
+
<a href="https://www.syncfusion.com/scheduler-sdk/angular-scheduler">Angular Scheduler</a>
|
|
216
|
+
</td>
|
|
217
|
+
<td align="center">
|
|
218
|
+
<a href="https://www.syncfusion.com/docx-editor-sdk/angular-docx-editor">Angular DOCX Editor</a>
|
|
219
|
+
</td>
|
|
220
|
+
<td align="center">
|
|
221
|
+
<a href="https://www.syncfusion.com/pdf-viewer-sdk/angular-pdf-viewer">Angular PDF Viewer</a>
|
|
222
|
+
</td>
|
|
223
|
+
<td align="center">
|
|
224
|
+
<a href="https://www.syncfusion.com/spreadsheet-editor-sdk/angular-spreadsheet-editor">Angular Spreadsheet Editor</a>
|
|
225
|
+
</td>
|
|
226
|
+
<td align="center">
|
|
227
|
+
<a href="https://www.syncfusion.com/angular-components/angular-maps-library">Angular Maps</a>
|
|
228
|
+
</td>
|
|
229
|
+
</tr>
|
|
230
|
+
</table>
|
|
231
|
+
|
|
170
232
|
## 🔄 Change log
|
|
171
233
|
|
|
172
234
|
Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/components/richtexteditor/CHANGELOG.md?utm_source=npm&utm_medium=listing&utm_campaign=angular-rich-text-editor-npm). Get minor improvements and bug fixes every week to stay up to date with frequent updates.
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './src/index';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NyYy9pbmRleCc7Il19
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { RichTextEditorComponent } from './rich-text-editor/richtexteditor.component';
|
|
2
|
+
export { RichTextEditorModule } from './rich-text-editor/richtexteditor.module';
|
|
3
|
+
export { RichTextEditorAllModule, ToolbarService, LinkService, ImageService, ImportExportService, AudioService, VideoService, CountService, QuickToolbarService, HtmlEditorService, MarkdownEditorService, TableService, PasteCleanupService, ResizeService, FileManagerService, FormatPainterService, EmojiPickerService, SlashMenuService, CodeBlockService, ClipBoardCleanupService, AutoFormatService, AIAssistantService } from './rich-text-editor/richtexteditor-all.module';
|
|
4
|
+
export * from '@syncfusion/ej2-richtexteditor';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFDLE1BQU0sNkNBQTZDLENBQUM7QUFDckYsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sMENBQTBDLENBQUM7QUFDaEYsT0FBTyxFQUFFLHVCQUF1QixFQUFFLGNBQWMsRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLG1CQUFtQixFQUFFLFlBQVksRUFBRSxZQUFZLEVBQUUsWUFBWSxFQUFFLG1CQUFtQixFQUFFLGlCQUFpQixFQUFFLHFCQUFxQixFQUFFLFlBQVksRUFBRSxtQkFBbUIsRUFBRSxhQUFhLEVBQUUsa0JBQWtCLEVBQUUsb0JBQW9CLEVBQUUsa0JBQWtCLEVBQUUsZ0JBQWdCLEVBQUUsZ0JBQWdCLEVBQUUsdUJBQXVCLEVBQUUsaUJBQWlCLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSw4Q0FBOEMsQ0FBQztBQUNwZCxjQUFjLGdDQUFnQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgUmljaFRleHRFZGl0b3JDb21wb25lbnR9IGZyb20gJy4vcmljaC10ZXh0LWVkaXRvci9yaWNodGV4dGVkaXRvci5jb21wb25lbnQnO1xuZXhwb3J0IHsgUmljaFRleHRFZGl0b3JNb2R1bGUgfSBmcm9tICcuL3JpY2gtdGV4dC1lZGl0b3IvcmljaHRleHRlZGl0b3IubW9kdWxlJztcbmV4cG9ydCB7IFJpY2hUZXh0RWRpdG9yQWxsTW9kdWxlLCBUb29sYmFyU2VydmljZSwgTGlua1NlcnZpY2UsIEltYWdlU2VydmljZSwgSW1wb3J0RXhwb3J0U2VydmljZSwgQXVkaW9TZXJ2aWNlLCBWaWRlb1NlcnZpY2UsIENvdW50U2VydmljZSwgUXVpY2tUb29sYmFyU2VydmljZSwgSHRtbEVkaXRvclNlcnZpY2UsIE1hcmtkb3duRWRpdG9yU2VydmljZSwgVGFibGVTZXJ2aWNlLCBQYXN0ZUNsZWFudXBTZXJ2aWNlLCBSZXNpemVTZXJ2aWNlLCBGaWxlTWFuYWdlclNlcnZpY2UsIEZvcm1hdFBhaW50ZXJTZXJ2aWNlLCBFbW9qaVBpY2tlclNlcnZpY2UsIFNsYXNoTWVudVNlcnZpY2UsIENvZGVCbG9ja1NlcnZpY2UsIENsaXBCb2FyZENsZWFudXBTZXJ2aWNlLCBBdXRvRm9ybWF0U2VydmljZSwgQUlBc3Npc3RhbnRTZXJ2aWNlIH0gZnJvbSAnLi9yaWNoLXRleHQtZWRpdG9yL3JpY2h0ZXh0ZWRpdG9yLWFsbC5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnQHN5bmNmdXNpb24vZWoyLXJpY2h0ZXh0ZWRpdG9yJzsiXX0=
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { RichTextEditorModule } from './richtexteditor.module';
|
|
4
|
+
import { Toolbar, Link, Image, ImportExport, Audio, Video, Count, QuickToolbar, HtmlEditor, MarkdownEditor, Table, PasteCleanup, Resize, FileManager, FormatPainter, EmojiPicker, SlashMenu, CodeBlock, ClipBoardCleanup, AutoFormat, AIAssistant } from '@syncfusion/ej2-richtexteditor';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export const ToolbarService = { provide: 'RichTextEditorToolbar', useValue: Toolbar };
|
|
7
|
+
export const LinkService = { provide: 'RichTextEditorLink', useValue: Link };
|
|
8
|
+
export const ImageService = { provide: 'RichTextEditorImage', useValue: Image };
|
|
9
|
+
export const ImportExportService = { provide: 'RichTextEditorImportExport', useValue: ImportExport };
|
|
10
|
+
export const AudioService = { provide: 'RichTextEditorAudio', useValue: Audio };
|
|
11
|
+
export const VideoService = { provide: 'RichTextEditorVideo', useValue: Video };
|
|
12
|
+
export const CountService = { provide: 'RichTextEditorCount', useValue: Count };
|
|
13
|
+
export const QuickToolbarService = { provide: 'RichTextEditorQuickToolbar', useValue: QuickToolbar };
|
|
14
|
+
export const HtmlEditorService = { provide: 'RichTextEditorHtmlEditor', useValue: HtmlEditor };
|
|
15
|
+
export const MarkdownEditorService = { provide: 'RichTextEditorMarkdownEditor', useValue: MarkdownEditor };
|
|
16
|
+
export const TableService = { provide: 'RichTextEditorTable', useValue: Table };
|
|
17
|
+
export const PasteCleanupService = { provide: 'RichTextEditorPasteCleanup', useValue: PasteCleanup };
|
|
18
|
+
export const ResizeService = { provide: 'RichTextEditorResize', useValue: Resize };
|
|
19
|
+
export const FileManagerService = { provide: 'RichTextEditorFileManager', useValue: FileManager };
|
|
20
|
+
export const FormatPainterService = { provide: 'RichTextEditorFormatPainter', useValue: FormatPainter };
|
|
21
|
+
export const EmojiPickerService = { provide: 'RichTextEditorEmojiPicker', useValue: EmojiPicker };
|
|
22
|
+
export const SlashMenuService = { provide: 'RichTextEditorSlashMenu', useValue: SlashMenu };
|
|
23
|
+
export const CodeBlockService = { provide: 'RichTextEditorCodeBlock', useValue: CodeBlock };
|
|
24
|
+
export const ClipBoardCleanupService = { provide: 'RichTextEditorClipBoardCleanup', useValue: ClipBoardCleanup };
|
|
25
|
+
export const AutoFormatService = { provide: 'RichTextEditorAutoFormat', useValue: AutoFormat };
|
|
26
|
+
export const AIAssistantService = { provide: 'RichTextEditorAIAssistant', useValue: AIAssistant };
|
|
27
|
+
/**
|
|
28
|
+
* NgModule definition for the RichTextEditor component with providers.
|
|
29
|
+
*/
|
|
30
|
+
export class RichTextEditorAllModule {
|
|
31
|
+
}
|
|
32
|
+
RichTextEditorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RichTextEditorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
33
|
+
RichTextEditorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RichTextEditorAllModule, imports: [CommonModule, RichTextEditorModule], exports: [RichTextEditorModule] });
|
|
34
|
+
RichTextEditorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RichTextEditorAllModule, providers: [
|
|
35
|
+
ToolbarService,
|
|
36
|
+
LinkService,
|
|
37
|
+
ImageService,
|
|
38
|
+
ImportExportService,
|
|
39
|
+
AudioService,
|
|
40
|
+
VideoService,
|
|
41
|
+
CountService,
|
|
42
|
+
QuickToolbarService,
|
|
43
|
+
HtmlEditorService,
|
|
44
|
+
MarkdownEditorService,
|
|
45
|
+
TableService,
|
|
46
|
+
PasteCleanupService,
|
|
47
|
+
ResizeService,
|
|
48
|
+
FileManagerService,
|
|
49
|
+
FormatPainterService,
|
|
50
|
+
EmojiPickerService,
|
|
51
|
+
SlashMenuService,
|
|
52
|
+
CodeBlockService,
|
|
53
|
+
ClipBoardCleanupService,
|
|
54
|
+
AutoFormatService,
|
|
55
|
+
AIAssistantService
|
|
56
|
+
], imports: [[CommonModule, RichTextEditorModule], RichTextEditorModule] });
|
|
57
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RichTextEditorAllModule, decorators: [{
|
|
58
|
+
type: NgModule,
|
|
59
|
+
args: [{
|
|
60
|
+
imports: [CommonModule, RichTextEditorModule],
|
|
61
|
+
exports: [
|
|
62
|
+
RichTextEditorModule
|
|
63
|
+
],
|
|
64
|
+
providers: [
|
|
65
|
+
ToolbarService,
|
|
66
|
+
LinkService,
|
|
67
|
+
ImageService,
|
|
68
|
+
ImportExportService,
|
|
69
|
+
AudioService,
|
|
70
|
+
VideoService,
|
|
71
|
+
CountService,
|
|
72
|
+
QuickToolbarService,
|
|
73
|
+
HtmlEditorService,
|
|
74
|
+
MarkdownEditorService,
|
|
75
|
+
TableService,
|
|
76
|
+
PasteCleanupService,
|
|
77
|
+
ResizeService,
|
|
78
|
+
FileManagerService,
|
|
79
|
+
FormatPainterService,
|
|
80
|
+
EmojiPickerService,
|
|
81
|
+
SlashMenuService,
|
|
82
|
+
CodeBlockService,
|
|
83
|
+
ClipBoardCleanupService,
|
|
84
|
+
AutoFormatService,
|
|
85
|
+
AIAssistantService
|
|
86
|
+
]
|
|
87
|
+
}]
|
|
88
|
+
}] });
|
|
89
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmljaHRleHRlZGl0b3ItYWxsLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9yaWNoLXRleHQtZWRpdG9yL3JpY2h0ZXh0ZWRpdG9yLWFsbC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBaUIsTUFBTSxlQUFlLENBQUM7QUFDeEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBRS9DLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQy9ELE9BQU8sRUFBQyxPQUFPLEVBQUUsSUFBSSxFQUFFLEtBQUssRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsWUFBWSxFQUFFLFVBQVUsRUFBRSxjQUFjLEVBQUUsS0FBSyxFQUFFLFlBQVksRUFBRSxNQUFNLEVBQUUsV0FBVyxFQUFFLGFBQWEsRUFBRSxXQUFXLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxnQkFBZ0IsRUFBRSxVQUFVLEVBQUUsV0FBVyxFQUFDLE1BQU0sZ0NBQWdDLENBQUE7O0FBR3ZSLE1BQU0sQ0FBQyxNQUFNLGNBQWMsR0FBa0IsRUFBRSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsUUFBUSxFQUFFLE9BQU8sRUFBQyxDQUFDO0FBQ3BHLE1BQU0sQ0FBQyxNQUFNLFdBQVcsR0FBa0IsRUFBRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBQyxDQUFDO0FBQzNGLE1BQU0sQ0FBQyxNQUFNLFlBQVksR0FBa0IsRUFBRSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsUUFBUSxFQUFFLEtBQUssRUFBQyxDQUFDO0FBQzlGLE1BQU0sQ0FBQyxNQUFNLG1CQUFtQixHQUFrQixFQUFFLE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxRQUFRLEVBQUUsWUFBWSxFQUFDLENBQUM7QUFDbkgsTUFBTSxDQUFDLE1BQU0s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a0I7S0FDckIsWUExQlEsQ0FBQyxZQUFZLEVBQUUsb0JBQW9CLENBQUMsRUFFekMsb0JBQW9COzJGQTBCZix1QkFBdUI7a0JBN0JuQyxRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxvQkFBb0IsQ0FBQztvQkFDN0MsT0FBTyxFQUFFO3dCQUNMLG9CQUFvQjtxQkFDdkI7b0JBQ0QsU0FBUyxFQUFDO3dCQUNOLGNBQWM7d0JBQ2QsV0FBVzt3QkFDWCxZQUFZO3dCQUNaLG1CQUFtQjt3QkFDbkIsWUFBWTt3QkFDWixZQUFZO3dCQUNaLFlBQVk7d0JBQ1osbUJBQW1CO3dCQUNuQixpQkFBaUI7d0JBQ2pCLHFCQUFxQjt3QkFDckIsWUFBWTt3QkFDWixtQkFBbUI7d0JBQ25CLGFBQWE7d0JBQ2Isa0JBQWtCO3dCQUNsQixvQkFBb0I7d0JBQ3BCLGtCQUFrQjt3QkFDbEIsZ0JBQWdCO3dCQUNoQixnQkFBZ0I7d0JBQ2hCLHVCQUF1Qjt3QkFDdkIsaUJBQWlCO3dCQUNqQixrQkFBa0I7cUJBQ3JCO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUsIFZhbHVlUHJvdmlkZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBSaWNoVGV4dEVkaXRvckNvbXBvbmVudCB9IGZyb20gJy4vcmljaHRleHRlZGl0b3IuY29tcG9uZW50JztcbmltcG9ydCB7IFJpY2hUZXh0RWRpdG9yTW9kdWxlIH0gZnJvbSAnLi9yaWNodGV4dGVkaXRvci5tb2R1bGUnO1xuaW1wb3J0IHtUb29sYmFyLCBMaW5rLCBJbWFnZSwgSW1wb3J0RXhwb3J0LCBBdWRpbywgVmlkZW8sIENvdW50LCBRdWlja1Rvb2xiYXIsIEh0bWxFZGl0b3IsIE1hcmtkb3duRWRpdG9yLCBUYWJsZSwgUGFzdGVDbGVhbnVwLCBSZXNpemUsIEZpbGVNYW5hZ2VyLCBGb3JtYXRQYWludGVyLCBFbW9qaVBpY2tlciwgU2xhc2hNZW51LCBDb2RlQmxvY2ssIENsaXBCb2FyZENsZWFudXAsIEF1dG9Gb3JtYXQsIEFJQXNzaXN0YW50fSBmcm9tICdAc3luY2Z1c2lvbi9lajItcmljaHRleHRlZGl0b3InXG5cblxuZXhwb3J0IGNvbnN0IFRvb2xiYXJTZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnUmljaFRleHRFZGl0b3JUb29sYmFyJywgdXNlVmFsdWU6IFRvb2xiYXJ9O1xuZXhwb3J0IGNvbnN0IExpbmtTZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnUmljaFRleHRFZGl0b3JMaW5rJywgdXNlVmFsdWU6IExpbmt9O1xuZXhwb3J0IGNvbnN0IEltYWdlU2VydmljZTogVmFsdWVQcm92aWRlciA9IHsgcHJvdmlkZTogJ1JpY2hUZXh0RWRpdG9ySW1hZ2UnLCB1c2VWYWx1ZTogSW1hZ2V9O1xuZXhwb3J0IGNvbnN0IEltcG9ydEV4cG9ydFNlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdSaWNoVGV4dEVkaXRvckltcG9ydEV4cG9ydCcsIHVzZVZhbHVlOiBJbXBvcnRFeHBvcnR9O1xuZXhwb3J0IGNvbnN0IEF1ZGlvU2VydmljZTogVmFsdWVQcm92aWRlciA9IHsgcHJvdmlkZTogJ1JpY2hUZXh0RWRpdG9yQXVkaW8nLCB1c2VWYWx1ZTogQXVkaW99O1xuZXhwb3J0IGNvbnN0IFZpZGVvU2VydmljZTogVmFsdWVQcm92aWRlciA9IHsgcHJvdmlkZTogJ1JpY2hUZXh0RWRpdG9yVmlkZW8nLCB1c2VWYWx1ZTogVmlkZW99O1xuZXhwb3J0IGNvbnN0IENvdW50U2VydmljZTogVmFsdWVQcm92aWRlciA9IHsgcHJvdmlkZTogJ1JpY2hUZXh0RWRpdG9yQ291bnQnLCB1c2VWYWx1ZTogQ291bnR9O1xuZXhwb3J0IGNvbnN0IFF1aWNrVG9vbGJhclNlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdSaWNoVGV4dEVkaXRvclF1aWNrVG9vbGJhcicsIHVzZVZhbHVlOiBRdWlja1Rvb2xiYXJ9O1xuZXhwb3J0IGNvbnN0IEh0bWxFZGl0b3JTZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnUmljaFRleHRFZGl0b3JIdG1sRWRpdG9yJywgdXNlVmFsdWU6IEh0bWxFZGl0b3J9O1xuZXhwb3J0IGNvbnN0IE1hcmtkb3duRWRpdG9yU2VydmljZTogVmFsdWVQcm92aWRlciA9IHsgcHJvdmlkZTogJ1JpY2hUZXh0RWRpdG9yTWFya2Rvd25FZGl0b3InLCB1c2VWYWx1ZTogTWFya2Rvd25FZGl0b3J9O1xuZXhwb3J0IGNvbnN0IFRhYmxlU2VydmljZTogVmFsdWVQcm92aWRlciA9IHsgcHJvdmlkZTogJ1JpY2hUZXh0RWRpdG9yVGFibGUnLCB1c2VWYWx1ZTogVGFibGV9O1xuZXhwb3J0IGNvbnN0IFBhc3RlQ2xlYW51cFNlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdSaWNoVGV4dEVkaXRvclBhc3RlQ2xlYW51cCcsIHVzZVZhbHVlOiBQYXN0ZUNsZWFudXB9O1xuZXhwb3J0IGNvbnN0IFJlc2l6ZVNlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdSaWNoVGV4dEVkaXRvclJlc2l6ZScsIHVzZVZhbHVlOiBSZXNpemV9O1xuZXhwb3J0IGNvbnN0IEZpbGVNYW5hZ2VyU2VydmljZTogVmFsdWVQcm92aWRlciA9IHsgcHJvdmlkZTogJ1JpY2hUZXh0RWRpdG9yRmlsZU1hbmFnZXInLCB1c2VWYWx1ZTogRmlsZU1hbmFnZXJ9O1xuZXhwb3J0IGNvbnN0IEZvcm1hdFBhaW50ZXJTZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnUmljaFRleHRFZGl0b3JGb3JtYXRQYWludGVyJywgdXNlVmFsdWU6IEZvcm1hdFBhaW50ZXJ9O1xuZXhwb3J0IGNvbnN0IEVtb2ppUGlja2VyU2VydmljZTogVmFsdWVQcm92aWRlciA9IHsgcHJvdmlkZTogJ1JpY2hUZXh0RWRpdG9yRW1vamlQaWNrZXInLCB1c2VWYWx1ZTogRW1vamlQaWNrZXJ9O1xuZXhwb3J0IGNvbnN0IFNsYXNoTWVudVNlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdSaWNoVGV4dEVkaXRvclNsYXNoTWVudScsIHVzZVZhbHVlOiBTbGFzaE1lbnV9O1xuZXhwb3J0IGNvbnN0IENvZGVCbG9ja1NlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdSaWNoVGV4dEVkaXRvckNvZGVCbG9jaycsIHVzZVZhbHVlOiBDb2RlQmxvY2t9O1xuZXhwb3J0IGNvbnN0IENsaXBCb2FyZENsZWFudXBTZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnUmljaFRleHRFZGl0b3JDbGlwQm9hcmRDbGVhbnVwJywgdXNlVmFsdWU6IENsaXBCb2FyZENsZWFudXB9O1xuZXhwb3J0IGNvbnN0IEF1dG9Gb3JtYXRTZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnUmljaFRleHRFZGl0b3JBdXRvRm9ybWF0JywgdXNlVmFsdWU6IEF1dG9Gb3JtYXR9O1xuZXhwb3J0IGNvbnN0IEFJQXNzaXN0YW50U2VydmljZTogVmFsdWVQcm92aWRlciA9IHsgcHJvdmlkZTogJ1JpY2hUZXh0RWRpdG9yQUlBc3Npc3RhbnQnLCB1c2VWYWx1ZTogQUlBc3Npc3RhbnR9O1xuXG4vKipcbiAqIE5nTW9kdWxlIGRlZmluaXRpb24gZm9yIHRoZSBSaWNoVGV4dEVkaXRvciBjb21wb25lbnQgd2l0aCBwcm92aWRlcnMuXG4gKi9cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgUmljaFRleHRFZGl0b3JNb2R1bGVdLFxuICAgIGV4cG9ydHM6IFtcbiAgICAgICAgUmljaFRleHRFZGl0b3JNb2R1bGVcbiAgICBdLFxuICAgIHByb3ZpZGVyczpbXG4gICAgICAgIFRvb2xiYXJTZXJ2aWNlLFxuICAgICAgICBMaW5rU2VydmljZSxcbiAgICAgICAgSW1hZ2VTZXJ2aWNlLFxuICAgICAgICBJbXBvcnRFeHBvcnRTZXJ2aWNlLFxuICAgICAgICBBdWRpb1NlcnZpY2UsXG4gICAgICAgIFZpZGVvU2VydmljZSxcbiAgICAgICAgQ291bnRTZXJ2aWNlLFxuICAgICAgICBRdWlja1Rvb2xiYXJTZXJ2aWNlLFxuICAgICAgICBIdG1sRWRpdG9yU2VydmljZSxcbiAgICAgICAgTWFya2Rvd25FZGl0b3JTZXJ2aWNlLFxuICAgICAgICBUYWJsZVNlcnZpY2UsXG4gICAgICAgIFBhc3RlQ2xlYW51cFNlcnZpY2UsXG4gICAgICAgIFJlc2l6ZVNlcnZpY2UsXG4gICAgICAgIEZpbGVNYW5hZ2VyU2VydmljZSxcbiAgICAgICAgRm9ybWF0UGFpbnRlclNlcnZpY2UsXG4gICAgICAgIEVtb2ppUGlja2VyU2VydmljZSxcbiAgICAgICAgU2xhc2hNZW51U2VydmljZSxcbiAgICAgICAgQ29kZUJsb2NrU2VydmljZSxcbiAgICAgICAgQ2xpcEJvYXJkQ2xlYW51cFNlcnZpY2UsXG4gICAgICAgIEF1dG9Gb3JtYXRTZXJ2aWNlLFxuICAgICAgICBBSUFzc2lzdGFudFNlcnZpY2VcbiAgICBdXG59KVxuZXhwb3J0IGNsYXNzIFJpY2hUZXh0RWRpdG9yQWxsTW9kdWxlIHsgfSJdfQ==
|