@skyux/text-editor 5.5.0 → 5.6.2
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/bundles/skyux-text-editor.umd.js +34 -33
- package/documentation.json +32 -76
- package/esm2015/lib/modules/rich-text-display/rich-text-display.component.js.map +1 -1
- package/esm2015/lib/modules/rich-text-display/rich-text-display.module.js.map +1 -1
- package/esm2015/lib/modules/shared/sky-text-editor-resources.module.js +1 -1
- package/esm2015/lib/modules/shared/sky-text-editor-resources.module.js.map +1 -1
- package/esm2015/lib/modules/text-editor/defaults/style-state-defaults.js.map +1 -1
- package/esm2015/lib/modules/text-editor/menubar/text-editor-menubar.component.js +4 -4
- package/esm2015/lib/modules/text-editor/menubar/text-editor-menubar.component.js.map +1 -1
- package/esm2015/lib/modules/text-editor/services/text-editor-adapter.service.js +6 -5
- package/esm2015/lib/modules/text-editor/services/text-editor-adapter.service.js.map +1 -1
- package/esm2015/lib/modules/text-editor/services/text-sanitization.service.js +1 -1
- package/esm2015/lib/modules/text-editor/services/text-sanitization.service.js.map +1 -1
- package/esm2015/lib/modules/text-editor/text-editor.component.js +8 -8
- package/esm2015/lib/modules/text-editor/text-editor.component.js.map +1 -1
- package/esm2015/lib/modules/text-editor/text-editor.module.js +3 -3
- package/esm2015/lib/modules/text-editor/text-editor.module.js.map +1 -1
- package/esm2015/lib/modules/text-editor/toolbar/text-editor-toolbar.component.js +4 -4
- package/esm2015/lib/modules/text-editor/toolbar/text-editor-toolbar.component.js.map +1 -1
- package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal.component.js.map +1 -1
- package/fesm2015/skyux-text-editor.js +105 -104
- package/fesm2015/skyux-text-editor.js.map +1 -1
- package/lib/modules/text-editor/services/text-editor-adapter.service.d.ts +1 -1
- package/lib/modules/text-editor/text-editor.component.d.ts +1 -1
- package/lib/modules/text-editor/toolbar/text-editor-toolbar.component.d.ts +2 -2
- package/package.json +22 -19
|
@@ -3,8 +3,8 @@ import { EditorCommand } from '../types/editor-command';
|
|
|
3
3
|
import { EditorSetting } from '../types/editor-setting';
|
|
4
4
|
import { SkyTextEditorStyleState } from '../types/style-state';
|
|
5
5
|
import { UrlModalResult } from '../url-modal/text-editor-url-modal-result';
|
|
6
|
-
import { SkyTextEditorService } from './text-editor.service';
|
|
7
6
|
import { SkyTextEditorSelectionService } from './text-editor-selection.service';
|
|
7
|
+
import { SkyTextEditorService } from './text-editor.service';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* @internal
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, NgZone, OnDestroy } from '@angular/core';
|
|
2
2
|
import { NgControl } from '@angular/forms';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
3
|
import { SkyCoreAdapterService } from '@skyux/core';
|
|
4
|
+
import { Subject } from 'rxjs';
|
|
5
5
|
import { SkyTextEditorAdapterService } from './services/text-editor-adapter.service';
|
|
6
6
|
import { SkyTextEditorService } from './services/text-editor.service';
|
|
7
7
|
import { SkyTextSanitizationService } from './services/text-sanitization.service';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import { SkyColorpickerOutput, SkyColorpickerMessage } from '@skyux/colorpicker';
|
|
2
|
+
import { SkyColorpickerMessage, SkyColorpickerOutput } from '@skyux/colorpicker';
|
|
4
3
|
import { SkyModalService } from '@skyux/modals';
|
|
5
4
|
import { SkyDropdownMessage } from '@skyux/popovers';
|
|
5
|
+
import { Subject } from 'rxjs';
|
|
6
6
|
import { SkyTextEditorAdapterService } from '../services/text-editor-adapter.service';
|
|
7
7
|
import { SkyTextEditorFont } from '../types/font-state';
|
|
8
8
|
import { SkyTextEditorStyleState } from '../types/style-state';
|
package/package.json
CHANGED
|
@@ -1,24 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/text-editor",
|
|
3
|
-
"version": "5.
|
|
4
|
-
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^12.2.16",
|
|
6
|
-
"@angular/core": "^12.2.16",
|
|
7
|
-
"@angular/forms": "^12.2.16",
|
|
8
|
-
"@angular/router": "^12.2.16",
|
|
9
|
-
"@skyux/colorpicker": "5.5.0",
|
|
10
|
-
"@skyux/core": "5.5.0",
|
|
11
|
-
"@skyux/i18n": "5.5.0",
|
|
12
|
-
"@skyux/indicators": "5.5.0",
|
|
13
|
-
"@skyux/modals": "5.5.0",
|
|
14
|
-
"@skyux/tabs": "5.5.0",
|
|
15
|
-
"@skyux/theme": "5.5.0",
|
|
16
|
-
"@skyux/validation": "5.5.0"
|
|
17
|
-
},
|
|
18
|
-
"dependencies": {
|
|
19
|
-
"dompurify": "2.3.2",
|
|
20
|
-
"tslib": "^2.3.1"
|
|
21
|
-
},
|
|
3
|
+
"version": "5.6.2",
|
|
22
4
|
"author": "Blackbaud, Inc.",
|
|
23
5
|
"keywords": [
|
|
24
6
|
"blackbaud",
|
|
@@ -33,6 +15,27 @@
|
|
|
33
15
|
"url": "https://github.com/blackbaud/skyux/issues"
|
|
34
16
|
},
|
|
35
17
|
"homepage": "https://github.com/blackbaud/skyux#readme",
|
|
18
|
+
"peerDependencies": {
|
|
19
|
+
"@angular/common": "^12.2.16",
|
|
20
|
+
"@angular/core": "^12.2.16",
|
|
21
|
+
"@angular/forms": "^12.2.16",
|
|
22
|
+
"@angular/platform-browser": "^12.2.16",
|
|
23
|
+
"@skyux/colorpicker": "5.6.2",
|
|
24
|
+
"@skyux/core": "5.6.2",
|
|
25
|
+
"@skyux/forms": "5.6.2",
|
|
26
|
+
"@skyux/i18n": "5.6.2",
|
|
27
|
+
"@skyux/indicators": "5.6.2",
|
|
28
|
+
"@skyux/layout": "5.6.2",
|
|
29
|
+
"@skyux/modals": "5.6.2",
|
|
30
|
+
"@skyux/popovers": "5.6.2",
|
|
31
|
+
"@skyux/tabs": "5.6.2",
|
|
32
|
+
"@skyux/theme": "5.6.2",
|
|
33
|
+
"@skyux/validation": "5.6.2"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"dompurify": "2.3.6",
|
|
37
|
+
"tslib": "^2.3.1"
|
|
38
|
+
},
|
|
36
39
|
"main": "bundles/skyux-text-editor.umd.js",
|
|
37
40
|
"module": "fesm2015/skyux-text-editor.js",
|
|
38
41
|
"es2015": "fesm2015/skyux-text-editor.js",
|