@skyux/text-editor 10.0.0 → 10.2.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 +271 -271
- package/esm2022/lib/modules/shared/sky-text-editor-resources.module.mjs +2 -1
- package/esm2022/lib/modules/text-editor/text-editor.component.mjs +17 -10
- package/esm2022/lib/modules/text-editor/text-editor.module.mjs +5 -4
- package/fesm2022/skyux-text-editor.mjs +103 -98
- package/fesm2022/skyux-text-editor.mjs.map +1 -1
- package/lib/modules/text-editor/text-editor.component.d.ts +4 -2
- package/lib/modules/text-editor/text-editor.module.d.ts +2 -1
- package/package.json +12 -12
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, OnDestroy, TemplateRef } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
3
|
import { Subject } from 'rxjs';
|
|
4
4
|
import { SkyTextEditorFont } from './types/font-state';
|
|
5
5
|
import { SkyTextEditorLinkWindowOptionsType } from './types/link-window-options-type';
|
|
@@ -90,6 +90,8 @@ export declare class SkyTextEditorComponent implements AfterViewInit, OnDestroy,
|
|
|
90
90
|
editorFocusStream: Subject<void>;
|
|
91
91
|
formControlClass: boolean;
|
|
92
92
|
protected editorFocused: boolean;
|
|
93
|
+
protected readonly errorId: string;
|
|
94
|
+
protected readonly ngControl: NgControl;
|
|
93
95
|
constructor();
|
|
94
96
|
ngAfterViewInit(): void;
|
|
95
97
|
ngOnDestroy(): void;
|
|
@@ -111,5 +113,5 @@ export declare class SkyTextEditorComponent implements AfterViewInit, OnDestroy,
|
|
|
111
113
|
*/
|
|
112
114
|
setDisabledState(isDisabled: boolean): void;
|
|
113
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyTextEditorComponent, never>;
|
|
114
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyTextEditorComponent, "sky-text-editor", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fontList": { "alias": "fontList"; "required": false; }; "fontSizeList": { "alias": "fontSizeList"; "required": false; }; "id": { "alias": "id"; "required": false; }; "initialStyleState": { "alias": "initialStyleState"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "menus": { "alias": "menus"; "required": false; }; "mergeFields": { "alias": "mergeFields"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "toolbarActions": { "alias": "toolbarActions"; "required": false; }; "linkWindowOptions": { "alias": "linkWindowOptions"; "required": false; }; }, {}, never,
|
|
116
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyTextEditorComponent, "sky-text-editor", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fontList": { "alias": "fontList"; "required": false; }; "fontSizeList": { "alias": "fontSizeList"; "required": false; }; "id": { "alias": "id"; "required": false; }; "initialStyleState": { "alias": "initialStyleState"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "menus": { "alias": "menus"; "required": false; }; "mergeFields": { "alias": "mergeFields"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "toolbarActions": { "alias": "toolbarActions"; "required": false; }; "linkWindowOptions": { "alias": "linkWindowOptions"; "required": false; }; }, {}, never, ["sky-form-error"], true, never>;
|
|
115
117
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./text-editor.component";
|
|
3
|
+
import * as i2 from "@skyux/forms";
|
|
3
4
|
export declare class SkyTextEditorModule {
|
|
4
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyTextEditorModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyTextEditorModule, never, [typeof i1.SkyTextEditorComponent], [typeof i1.SkyTextEditorComponent]>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyTextEditorModule, never, [typeof i1.SkyTextEditorComponent], [typeof i1.SkyTextEditorComponent, typeof i2.SkyFormErrorModule]>;
|
|
6
7
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkyTextEditorModule>;
|
|
7
8
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/text-editor",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.2.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -34,17 +34,17 @@
|
|
|
34
34
|
"@angular/core": "^17.3.1",
|
|
35
35
|
"@angular/forms": "^17.3.1",
|
|
36
36
|
"@angular/platform-browser": "^17.3.1",
|
|
37
|
-
"@skyux/colorpicker": "10.
|
|
38
|
-
"@skyux/core": "10.
|
|
39
|
-
"@skyux/forms": "10.
|
|
40
|
-
"@skyux/i18n": "10.
|
|
41
|
-
"@skyux/indicators": "10.
|
|
42
|
-
"@skyux/layout": "10.
|
|
43
|
-
"@skyux/modals": "10.
|
|
44
|
-
"@skyux/popovers": "10.
|
|
45
|
-
"@skyux/tabs": "10.
|
|
46
|
-
"@skyux/theme": "10.
|
|
47
|
-
"@skyux/validation": "10.
|
|
37
|
+
"@skyux/colorpicker": "10.2.0",
|
|
38
|
+
"@skyux/core": "10.2.0",
|
|
39
|
+
"@skyux/forms": "10.2.0",
|
|
40
|
+
"@skyux/i18n": "10.2.0",
|
|
41
|
+
"@skyux/indicators": "10.2.0",
|
|
42
|
+
"@skyux/layout": "10.2.0",
|
|
43
|
+
"@skyux/modals": "10.2.0",
|
|
44
|
+
"@skyux/popovers": "10.2.0",
|
|
45
|
+
"@skyux/tabs": "10.2.0",
|
|
46
|
+
"@skyux/theme": "10.2.0",
|
|
47
|
+
"@skyux/validation": "10.2.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"dompurify": "3.0.11",
|