@skyux/text-editor 8.2.6 → 8.2.7
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 +22 -22
- package/esm2020/lib/modules/text-editor/text-editor.component.mjs +3 -2
- package/fesm2015/skyux-text-editor.mjs +2 -1
- package/fesm2015/skyux-text-editor.mjs.map +1 -1
- package/fesm2020/skyux-text-editor.mjs +2 -1
- package/fesm2020/skyux-text-editor.mjs.map +1 -1
- package/lib/modules/text-editor/text-editor.component.d.ts +2 -1
- package/package.json +12 -12
|
@@ -21,7 +21,8 @@ export declare class SkyTextEditorComponent implements AfterViewInit, OnDestroy
|
|
|
21
21
|
*/
|
|
22
22
|
autofocus: boolean | undefined;
|
|
23
23
|
/**
|
|
24
|
-
* Whether to disable the text editor.
|
|
24
|
+
* Whether to disable the text editor on template-driven forms. Don't use this input on reactive forms because they may overwrite the input or leave the control out of sync.
|
|
25
|
+
* To set the disabled state on reactive forms, use the `FormControl` instead.
|
|
25
26
|
* @default false
|
|
26
27
|
*/
|
|
27
28
|
set disabled(value: boolean | undefined);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/text-editor",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.7",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"@angular/core": "^15.2.9",
|
|
37
37
|
"@angular/forms": "^15.2.9",
|
|
38
38
|
"@angular/platform-browser": "^15.2.9",
|
|
39
|
-
"@skyux/colorpicker": "8.2.
|
|
40
|
-
"@skyux/core": "8.2.
|
|
41
|
-
"@skyux/forms": "8.2.
|
|
42
|
-
"@skyux/i18n": "8.2.
|
|
43
|
-
"@skyux/indicators": "8.2.
|
|
44
|
-
"@skyux/layout": "8.2.
|
|
45
|
-
"@skyux/modals": "8.2.
|
|
46
|
-
"@skyux/popovers": "8.2.
|
|
47
|
-
"@skyux/tabs": "8.2.
|
|
48
|
-
"@skyux/theme": "8.2.
|
|
49
|
-
"@skyux/validation": "8.2.
|
|
39
|
+
"@skyux/colorpicker": "8.2.7",
|
|
40
|
+
"@skyux/core": "8.2.7",
|
|
41
|
+
"@skyux/forms": "8.2.7",
|
|
42
|
+
"@skyux/i18n": "8.2.7",
|
|
43
|
+
"@skyux/indicators": "8.2.7",
|
|
44
|
+
"@skyux/layout": "8.2.7",
|
|
45
|
+
"@skyux/modals": "8.2.7",
|
|
46
|
+
"@skyux/popovers": "8.2.7",
|
|
47
|
+
"@skyux/tabs": "8.2.7",
|
|
48
|
+
"@skyux/theme": "8.2.7",
|
|
49
|
+
"@skyux/validation": "8.2.7"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"dompurify": "3.0.1",
|