@flogeez/angular-tiptap-editor 0.2.0 → 0.2.1
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/README.md +4 -4
- package/package.json +2 -1
- package/src/lib/styles/index.css +1 -0
- package/src/lib/styles/material-symbols.css +16 -0
package/README.md
CHANGED
|
@@ -265,16 +265,16 @@ Contributions are welcome! Please feel free to submit a Pull Request.
|
|
|
265
265
|
|
|
266
266
|
## 📞 Support
|
|
267
267
|
|
|
268
|
-
- 🐛 [Report Issues](https://github.com/flogeez/
|
|
269
|
-
- 💡 [Feature Requests](https://github.com/flogeez/
|
|
270
|
-
- 📖 [Documentation](https://github.com/flogeez/
|
|
268
|
+
- 🐛 [Report Issues](https://github.com/flogeez/angular-tiptap-editor/issues)
|
|
269
|
+
- 💡 [Feature Requests](https://github.com/flogeez/angular-tiptap-editor/issues)
|
|
270
|
+
- 📖 [Documentation](https://github.com/flogeez/angular-tiptap-editor#readme)
|
|
271
271
|
|
|
272
272
|
## 🔗 Links
|
|
273
273
|
|
|
274
274
|
- 🎮 [Live Demo](https://flogeez.github.io/angular-tiptap-editor/)
|
|
275
275
|
- 📖 [Tiptap Documentation](https://tiptap.dev/)
|
|
276
276
|
- 🅰️ [Angular Documentation](https://angular.dev/)
|
|
277
|
-
- 📦 [NPM Package](https://www.npmjs.com/package/angular-tiptap-editor)
|
|
277
|
+
- 📦 [NPM Package](https://www.npmjs.com/package/@flogeez/angular-tiptap-editor)
|
|
278
278
|
|
|
279
279
|
---
|
|
280
280
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flogeez/angular-tiptap-editor",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "A modern, customizable rich-text editor for Angular (19+), built with Tiptap and featuring complete internationalization support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"@angular/common": ">=19.0.0",
|
|
27
27
|
"@angular/core": ">=19.0.0",
|
|
28
28
|
"@angular/forms": ">=19.0.0",
|
|
29
|
+
"@fontsource/material-symbols-outlined": "^5.0.0",
|
|
29
30
|
"@tiptap/core": "^2.0.0",
|
|
30
31
|
"@tiptap/starter-kit": "^2.0.0",
|
|
31
32
|
"@tiptap/extension-placeholder": "^2.0.0",
|
package/src/lib/styles/index.css
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.material-symbols-outlined {
|
|
2
|
+
font-family: "Material Symbols Outlined";
|
|
3
|
+
font-weight: normal;
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-size: 24px;
|
|
6
|
+
line-height: 1;
|
|
7
|
+
letter-spacing: normal;
|
|
8
|
+
text-transform: none;
|
|
9
|
+
display: inline-block;
|
|
10
|
+
white-space: nowrap;
|
|
11
|
+
word-wrap: normal;
|
|
12
|
+
direction: ltr;
|
|
13
|
+
-webkit-font-feature-settings: "liga";
|
|
14
|
+
-webkit-font-smoothing: antialiased;
|
|
15
|
+
font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
|
|
16
|
+
}
|