@skyux/text-editor 11.26.0 → 11.28.0
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 +279 -279
- package/esm2022/lib/modules/rich-text-display/rich-text-display.component.mjs +4 -4
- package/esm2022/lib/modules/rich-text-display/rich-text-display.module.mjs +5 -5
- package/esm2022/lib/modules/shared/sky-text-editor-resources.module.mjs +5 -5
- package/esm2022/lib/modules/text-editor/menubar/text-editor-menubar.component.mjs +5 -5
- package/esm2022/lib/modules/text-editor/services/text-editor-adapter.service.mjs +12 -9
- package/esm2022/lib/modules/text-editor/services/text-editor-selection.service.mjs +4 -4
- package/esm2022/lib/modules/text-editor/services/text-editor.service.mjs +4 -4
- package/esm2022/lib/modules/text-editor/services/text-sanitization.service.mjs +4 -4
- package/esm2022/lib/modules/text-editor/text-editor.component.mjs +12 -9
- package/esm2022/lib/modules/text-editor/text-editor.module.mjs +5 -5
- package/esm2022/lib/modules/text-editor/toolbar/text-editor-toolbar.component.mjs +7 -7
- package/esm2022/lib/modules/text-editor/url-modal/text-editor-url-modal.component.mjs +4 -4
- package/fesm2022/skyux-text-editor.mjs +61 -57
- package/fesm2022/skyux-text-editor.mjs.map +1 -1
- package/lib/modules/text-editor/services/text-editor-adapter.service.d.ts +2 -2
- package/package.json +17 -17
|
@@ -22,7 +22,7 @@ export declare class SkyTextEditorAdapterService {
|
|
|
22
22
|
/**
|
|
23
23
|
* Executes a command on the text editor with the corresponding id.
|
|
24
24
|
*/
|
|
25
|
-
execCommand(editorCommand: EditorCommand): void
|
|
25
|
+
execCommand(editorCommand: EditorCommand): Promise<void>;
|
|
26
26
|
getCurrentSelection(): Selection | null;
|
|
27
27
|
/**
|
|
28
28
|
* Returns a data URI using the provided text string.
|
|
@@ -41,7 +41,7 @@ export declare class SkyTextEditorAdapterService {
|
|
|
41
41
|
setLabelAttribute(label: string | undefined): void;
|
|
42
42
|
setPlaceholder(placeholder?: string): void;
|
|
43
43
|
setRequiredAttribute(required: boolean): void;
|
|
44
|
-
setFontSize(fontSize: number): void
|
|
44
|
+
setFontSize(fontSize: number): Promise<void>;
|
|
45
45
|
removeObservers(setting: EditorSetting): void;
|
|
46
46
|
editorSelected(): boolean;
|
|
47
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyTextEditorAdapterService, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/text-editor",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.28.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -30,22 +30,22 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@angular/common": "^18.2.
|
|
34
|
-
"@angular/core": "^18.2.
|
|
35
|
-
"@angular/forms": "^18.2.
|
|
36
|
-
"@angular/platform-browser": "^18.2.
|
|
37
|
-
"@skyux/colorpicker": "11.
|
|
38
|
-
"@skyux/core": "11.
|
|
39
|
-
"@skyux/forms": "11.
|
|
40
|
-
"@skyux/help-inline": "11.
|
|
41
|
-
"@skyux/i18n": "11.
|
|
42
|
-
"@skyux/icon": "11.
|
|
43
|
-
"@skyux/layout": "11.
|
|
44
|
-
"@skyux/modals": "11.
|
|
45
|
-
"@skyux/popovers": "11.
|
|
46
|
-
"@skyux/tabs": "11.
|
|
47
|
-
"@skyux/theme": "11.
|
|
48
|
-
"@skyux/validation": "11.
|
|
33
|
+
"@angular/common": "^18.2.13",
|
|
34
|
+
"@angular/core": "^18.2.13",
|
|
35
|
+
"@angular/forms": "^18.2.13",
|
|
36
|
+
"@angular/platform-browser": "^18.2.13",
|
|
37
|
+
"@skyux/colorpicker": "11.28.0",
|
|
38
|
+
"@skyux/core": "11.28.0",
|
|
39
|
+
"@skyux/forms": "11.28.0",
|
|
40
|
+
"@skyux/help-inline": "11.28.0",
|
|
41
|
+
"@skyux/i18n": "11.28.0",
|
|
42
|
+
"@skyux/icon": "11.28.0",
|
|
43
|
+
"@skyux/layout": "11.28.0",
|
|
44
|
+
"@skyux/modals": "11.28.0",
|
|
45
|
+
"@skyux/popovers": "11.28.0",
|
|
46
|
+
"@skyux/tabs": "11.28.0",
|
|
47
|
+
"@skyux/theme": "11.28.0",
|
|
48
|
+
"@skyux/validation": "11.28.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"dompurify": "3.1.6",
|