@skyux/text-editor 10.32.0 → 11.0.0-alpha.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 +243 -279
- package/esm2022/lib/modules/rich-text-display/rich-text-display.component.mjs +3 -3
- package/esm2022/lib/modules/rich-text-display/rich-text-display.module.mjs +4 -4
- package/esm2022/lib/modules/shared/sky-text-editor-resources.module.mjs +4 -4
- package/esm2022/lib/modules/text-editor/menubar/text-editor-menubar.component.mjs +3 -3
- package/esm2022/lib/modules/text-editor/services/text-editor-adapter.service.mjs +3 -3
- package/esm2022/lib/modules/text-editor/services/text-editor-selection.service.mjs +3 -3
- package/esm2022/lib/modules/text-editor/services/text-editor.service.mjs +3 -3
- package/esm2022/lib/modules/text-editor/services/text-sanitization.service.mjs +3 -3
- package/esm2022/lib/modules/text-editor/text-editor.component.mjs +5 -7
- package/esm2022/lib/modules/text-editor/text-editor.module.mjs +4 -4
- package/esm2022/lib/modules/text-editor/toolbar/text-editor-toolbar.component.mjs +3 -3
- package/esm2022/lib/modules/text-editor/url-modal/text-editor-url-modal.component.mjs +3 -3
- package/fesm2022/skyux-text-editor.mjs +40 -42
- package/fesm2022/skyux-text-editor.mjs.map +1 -1
- package/lib/modules/text-editor/text-editor.component.d.ts +0 -6
- package/package.json +18 -18
|
@@ -42,19 +42,16 @@ export declare class SkyTextEditorComponent implements AfterViewInit, OnInit, On
|
|
|
42
42
|
* The content of the help popover. When specified along with `labelText`, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
|
|
43
43
|
* button is added to the text editor. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
|
|
44
44
|
* when clicked using the specified content and optional title.
|
|
45
|
-
* @preview
|
|
46
45
|
*/
|
|
47
46
|
helpPopoverContent: string | TemplateRef<unknown> | undefined;
|
|
48
47
|
/**
|
|
49
48
|
* The title of the help popover. This property only applies when `helpPopoverContent` is
|
|
50
49
|
* also specified.
|
|
51
|
-
* @preview
|
|
52
50
|
*/
|
|
53
51
|
helpPopoverTitle: string | undefined;
|
|
54
52
|
/**
|
|
55
53
|
* [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
|
|
56
54
|
* additional context to the user.
|
|
57
|
-
* @preview
|
|
58
55
|
*/
|
|
59
56
|
hintText: string | undefined;
|
|
60
57
|
/**
|
|
@@ -70,7 +67,6 @@ export declare class SkyTextEditorComponent implements AfterViewInit, OnInit, On
|
|
|
70
67
|
get initialStyleState(): SkyTextEditorStyleState;
|
|
71
68
|
/**
|
|
72
69
|
* The text to display as the text editor's label.
|
|
73
|
-
* @preview
|
|
74
70
|
*/
|
|
75
71
|
set labelText(value: string | undefined);
|
|
76
72
|
get labelText(): string | undefined;
|
|
@@ -93,7 +89,6 @@ export declare class SkyTextEditorComponent implements AfterViewInit, OnInit, On
|
|
|
93
89
|
/**
|
|
94
90
|
* Whether the text editor is stacked on another form component. When specified,
|
|
95
91
|
* the appropriate vertical spacing is automatically added to the text editor.
|
|
96
|
-
* @preview
|
|
97
92
|
*/
|
|
98
93
|
stacked: boolean;
|
|
99
94
|
/**
|
|
@@ -112,7 +107,6 @@ export declare class SkyTextEditorComponent implements AfterViewInit, OnInit, On
|
|
|
112
107
|
* A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
|
|
113
108
|
* button is placed beside the text editor label. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help)
|
|
114
109
|
* as configured by the application.
|
|
115
|
-
* @preview
|
|
116
110
|
*/
|
|
117
111
|
helpKey: string | undefined;
|
|
118
112
|
iframeRef: ElementRef | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/text-editor",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.0-alpha.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -30,27 +30,27 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@angular/common": "^
|
|
34
|
-
"@angular/core": "^
|
|
35
|
-
"@angular/forms": "^
|
|
36
|
-
"@angular/platform-browser": "^
|
|
37
|
-
"@skyux/colorpicker": "
|
|
38
|
-
"@skyux/core": "
|
|
39
|
-
"@skyux/forms": "
|
|
40
|
-
"@skyux/help-inline": "
|
|
41
|
-
"@skyux/i18n": "
|
|
42
|
-
"@skyux/layout": "
|
|
43
|
-
"@skyux/modals": "
|
|
44
|
-
"@skyux/popovers": "
|
|
45
|
-
"@skyux/tabs": "
|
|
46
|
-
"@skyux/theme": "
|
|
47
|
-
"@skyux/validation": "
|
|
33
|
+
"@angular/common": "^18.0.5",
|
|
34
|
+
"@angular/core": "^18.0.5",
|
|
35
|
+
"@angular/forms": "^18.0.5",
|
|
36
|
+
"@angular/platform-browser": "^18.0.5",
|
|
37
|
+
"@skyux/colorpicker": "11.0.0-alpha.0",
|
|
38
|
+
"@skyux/core": "11.0.0-alpha.0",
|
|
39
|
+
"@skyux/forms": "11.0.0-alpha.0",
|
|
40
|
+
"@skyux/help-inline": "11.0.0-alpha.0",
|
|
41
|
+
"@skyux/i18n": "11.0.0-alpha.0",
|
|
42
|
+
"@skyux/layout": "11.0.0-alpha.0",
|
|
43
|
+
"@skyux/modals": "11.0.0-alpha.0",
|
|
44
|
+
"@skyux/popovers": "11.0.0-alpha.0",
|
|
45
|
+
"@skyux/tabs": "11.0.0-alpha.0",
|
|
46
|
+
"@skyux/theme": "11.0.0-alpha.0",
|
|
47
|
+
"@skyux/validation": "11.0.0-alpha.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@skyux/icon": "
|
|
50
|
+
"@skyux/icon": "11.0.0-alpha.0",
|
|
51
51
|
"dompurify": "3.0.11",
|
|
52
52
|
"he": "1.2.0",
|
|
53
|
-
"tslib": "^2.6.
|
|
53
|
+
"tslib": "^2.6.3"
|
|
54
54
|
},
|
|
55
55
|
"module": "fesm2022/skyux-text-editor.mjs",
|
|
56
56
|
"typings": "index.d.ts",
|