@skyux/text-editor 8.0.0-alpha.6 → 8.0.0-alpha.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 +58 -58
- package/esm2020/lib/modules/rich-text-display/rich-text-display.component.mjs +12 -12
- package/esm2020/lib/modules/rich-text-display/rich-text-display.module.mjs +4 -4
- package/esm2020/lib/modules/shared/sky-text-editor-resources.module.mjs +4 -4
- package/esm2020/lib/modules/text-editor/menubar/text-editor-menubar.component.mjs +14 -14
- package/esm2020/lib/modules/text-editor/services/text-editor-adapter.service.mjs +3 -3
- package/esm2020/lib/modules/text-editor/services/text-editor-selection.service.mjs +3 -3
- package/esm2020/lib/modules/text-editor/services/text-editor.service.mjs +3 -3
- package/esm2020/lib/modules/text-editor/services/text-sanitization.service.mjs +3 -3
- package/esm2020/lib/modules/text-editor/text-editor.component.mjs +50 -50
- package/esm2020/lib/modules/text-editor/text-editor.module.mjs +4 -4
- package/esm2020/lib/modules/text-editor/toolbar/text-editor-toolbar.component.mjs +25 -25
- package/esm2020/lib/modules/text-editor/url-modal/text-editor-url-modal.component.mjs +25 -25
- package/fesm2015/skyux-text-editor.mjs +145 -145
- package/fesm2015/skyux-text-editor.mjs.map +1 -1
- package/fesm2020/skyux-text-editor.mjs +145 -145
- package/fesm2020/skyux-text-editor.mjs.map +1 -1
- package/lib/modules/text-editor/types/menu-type.d.ts +1 -1
- package/lib/modules/text-editor/types/toolbar-action-type.d.ts +1 -1
- package/package.json +17 -17
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type SkyTextEditorMenuType = 'edit' | 'format' | 'merge-field';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type SkyTextEditorToolbarActionType = 'font-family' | 'font-size' | 'font-style' | 'color' | 'list' | 'alignment' | 'indentation' | 'undo-redo' | 'link';
|
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.7",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -32,26 +32,26 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@angular/common": "^15.1
|
|
36
|
-
"@angular/core": "^15.1
|
|
37
|
-
"@angular/forms": "^15.1
|
|
38
|
-
"@angular/platform-browser": "^15.1
|
|
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.
|
|
35
|
+
"@angular/common": "^15.2.1",
|
|
36
|
+
"@angular/core": "^15.2.1",
|
|
37
|
+
"@angular/forms": "^15.2.1",
|
|
38
|
+
"@angular/platform-browser": "^15.2.1",
|
|
39
|
+
"@skyux/colorpicker": "8.0.0-alpha.7",
|
|
40
|
+
"@skyux/core": "8.0.0-alpha.7",
|
|
41
|
+
"@skyux/forms": "8.0.0-alpha.7",
|
|
42
|
+
"@skyux/i18n": "8.0.0-alpha.7",
|
|
43
|
+
"@skyux/indicators": "8.0.0-alpha.7",
|
|
44
|
+
"@skyux/layout": "8.0.0-alpha.7",
|
|
45
|
+
"@skyux/modals": "8.0.0-alpha.7",
|
|
46
|
+
"@skyux/popovers": "8.0.0-alpha.7",
|
|
47
|
+
"@skyux/tabs": "8.0.0-alpha.7",
|
|
48
|
+
"@skyux/theme": "8.0.0-alpha.7",
|
|
49
|
+
"@skyux/validation": "8.0.0-alpha.7"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"dompurify": "2.4.1",
|
|
53
53
|
"he": "1.2.0",
|
|
54
|
-
"tslib": "^2.
|
|
54
|
+
"tslib": "^2.5.0"
|
|
55
55
|
},
|
|
56
56
|
"module": "fesm2015/skyux-text-editor.mjs",
|
|
57
57
|
"es2020": "fesm2020/skyux-text-editor.mjs",
|