@skyux/text-editor 8.0.0-alpha.0 → 8.0.0-alpha.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/documentation.json +182 -218
- package/esm2020/lib/modules/text-editor/text-editor.component.mjs +55 -58
- package/fesm2015/skyux-text-editor.mjs +55 -57
- package/fesm2015/skyux-text-editor.mjs.map +1 -1
- package/fesm2020/skyux-text-editor.mjs +54 -57
- package/fesm2020/skyux-text-editor.mjs.map +1 -1
- package/lib/modules/text-editor/text-editor.component.d.ts +4 -5
- package/package.json +12 -12
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ChangeDetectorRef, NgZone, OnDestroy } from '@angular/core';
|
|
2
2
|
import { NgControl } from '@angular/forms';
|
|
3
3
|
import { SkyCoreAdapterService, SkyIdService } from '@skyux/core';
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
@@ -14,7 +14,7 @@ import * as i0 from "@angular/core";
|
|
|
14
14
|
/**
|
|
15
15
|
* The text editor component lets users format and manipulate text.
|
|
16
16
|
*/
|
|
17
|
-
export declare class SkyTextEditorComponent implements
|
|
17
|
+
export declare class SkyTextEditorComponent implements OnDestroy {
|
|
18
18
|
#private;
|
|
19
19
|
/**
|
|
20
20
|
* Whether to put focus on the editor after it renders.
|
|
@@ -71,7 +71,7 @@ export declare class SkyTextEditorComponent implements AfterViewInit, OnDestroy
|
|
|
71
71
|
*/
|
|
72
72
|
set toolbarActions(value: SkyTextEditorToolbarActionType[] | undefined);
|
|
73
73
|
get toolbarActions(): SkyTextEditorToolbarActionType[];
|
|
74
|
-
iframeRef:
|
|
74
|
+
iframeRef: HTMLIFrameElement | undefined;
|
|
75
75
|
/**
|
|
76
76
|
* The internal value of the control.
|
|
77
77
|
*/
|
|
@@ -79,9 +79,8 @@ export declare class SkyTextEditorComponent implements AfterViewInit, OnDestroy
|
|
|
79
79
|
get value(): string;
|
|
80
80
|
editorFocusStream: Subject<void>;
|
|
81
81
|
constructor(changeDetector: ChangeDetectorRef, coreAdapterService: SkyCoreAdapterService, adapterService: SkyTextEditorAdapterService, editorService: SkyTextEditorService, sanitizationService: SkyTextSanitizationService, ngControl: NgControl, zone: NgZone, idSvc: SkyIdService);
|
|
82
|
-
ngAfterViewInit(): void;
|
|
83
82
|
ngOnDestroy(): void;
|
|
84
|
-
onIframeLoad(): void;
|
|
83
|
+
onIframeLoad(event: Event): void;
|
|
85
84
|
/**
|
|
86
85
|
* Implemented as part of ControlValueAccessor.
|
|
87
86
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/text-editor",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"@angular/core": "^15.1.4",
|
|
37
37
|
"@angular/forms": "^15.1.4",
|
|
38
38
|
"@angular/platform-browser": "^15.1.4",
|
|
39
|
-
"@skyux/colorpicker": "8.0.0-alpha.
|
|
40
|
-
"@skyux/core": "8.0.0-alpha.
|
|
41
|
-
"@skyux/forms": "8.0.0-alpha.
|
|
42
|
-
"@skyux/i18n": "8.0.0-alpha.
|
|
43
|
-
"@skyux/indicators": "8.0.0-alpha.
|
|
44
|
-
"@skyux/layout": "8.0.0-alpha.
|
|
45
|
-
"@skyux/modals": "8.0.0-alpha.
|
|
46
|
-
"@skyux/popovers": "8.0.0-alpha.
|
|
47
|
-
"@skyux/tabs": "8.0.0-alpha.
|
|
48
|
-
"@skyux/theme": "8.0.0-alpha.
|
|
49
|
-
"@skyux/validation": "8.0.0-alpha.
|
|
39
|
+
"@skyux/colorpicker": "8.0.0-alpha.2",
|
|
40
|
+
"@skyux/core": "8.0.0-alpha.2",
|
|
41
|
+
"@skyux/forms": "8.0.0-alpha.2",
|
|
42
|
+
"@skyux/i18n": "8.0.0-alpha.2",
|
|
43
|
+
"@skyux/indicators": "8.0.0-alpha.2",
|
|
44
|
+
"@skyux/layout": "8.0.0-alpha.2",
|
|
45
|
+
"@skyux/modals": "8.0.0-alpha.2",
|
|
46
|
+
"@skyux/popovers": "8.0.0-alpha.2",
|
|
47
|
+
"@skyux/tabs": "8.0.0-alpha.2",
|
|
48
|
+
"@skyux/theme": "8.0.0-alpha.2",
|
|
49
|
+
"@skyux/validation": "8.0.0-alpha.2"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"dompurify": "2.4.1",
|