@skyux/text-editor 10.0.0-alpha.0 → 10.0.0-alpha.2
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 +208 -151
- 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 +5 -5
- 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 +3 -3
- package/esm2022/lib/modules/text-editor/text-editor.module.mjs +4 -4
- 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 +3 -3
- package/fesm2022/skyux-text-editor.mjs +42 -42
- package/fesm2022/skyux-text-editor.mjs.map +1 -1
- package/package.json +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/text-editor",
|
|
3
|
-
"version": "10.0.0-alpha.
|
|
3
|
+
"version": "10.0.0-alpha.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -30,24 +30,24 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@angular/common": "^17.1.
|
|
34
|
-
"@angular/core": "^17.1.
|
|
35
|
-
"@angular/forms": "^17.1.
|
|
36
|
-
"@angular/platform-browser": "^17.1.
|
|
37
|
-
"@skyux/colorpicker": "10.0.0-alpha.
|
|
38
|
-
"@skyux/core": "10.0.0-alpha.
|
|
39
|
-
"@skyux/forms": "10.0.0-alpha.
|
|
40
|
-
"@skyux/i18n": "10.0.0-alpha.
|
|
41
|
-
"@skyux/indicators": "10.0.0-alpha.
|
|
42
|
-
"@skyux/layout": "10.0.0-alpha.
|
|
43
|
-
"@skyux/modals": "10.0.0-alpha.
|
|
44
|
-
"@skyux/popovers": "10.0.0-alpha.
|
|
45
|
-
"@skyux/tabs": "10.0.0-alpha.
|
|
46
|
-
"@skyux/theme": "10.0.0-alpha.
|
|
47
|
-
"@skyux/validation": "10.0.0-alpha.
|
|
33
|
+
"@angular/common": "^17.1.1",
|
|
34
|
+
"@angular/core": "^17.1.1",
|
|
35
|
+
"@angular/forms": "^17.1.1",
|
|
36
|
+
"@angular/platform-browser": "^17.1.1",
|
|
37
|
+
"@skyux/colorpicker": "10.0.0-alpha.2",
|
|
38
|
+
"@skyux/core": "10.0.0-alpha.2",
|
|
39
|
+
"@skyux/forms": "10.0.0-alpha.2",
|
|
40
|
+
"@skyux/i18n": "10.0.0-alpha.2",
|
|
41
|
+
"@skyux/indicators": "10.0.0-alpha.2",
|
|
42
|
+
"@skyux/layout": "10.0.0-alpha.2",
|
|
43
|
+
"@skyux/modals": "10.0.0-alpha.2",
|
|
44
|
+
"@skyux/popovers": "10.0.0-alpha.2",
|
|
45
|
+
"@skyux/tabs": "10.0.0-alpha.2",
|
|
46
|
+
"@skyux/theme": "10.0.0-alpha.2",
|
|
47
|
+
"@skyux/validation": "10.0.0-alpha.2"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"dompurify": "3.0.
|
|
50
|
+
"dompurify": "3.0.8",
|
|
51
51
|
"he": "1.2.0",
|
|
52
52
|
"tslib": "^2.6.2"
|
|
53
53
|
},
|