@appquality/unguess-design-system 4.0.70 → 4.0.71
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/CHANGELOG.md +14 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +32650 -29916
- package/package.json +17 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# v4.0.71 (Wed Apr 22 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Add markdown to editor [#593](https://github.com/AppQuality/unguess-design-system/pull/593) ([@cannarocks](https://github.com/cannarocks) [@d-beezee](https://github.com/d-beezee))
|
|
6
|
+
- Update @tiptap dependencies and add Markdown support to Editor component [#590](https://github.com/AppQuality/unguess-design-system/pull/590) ([@cannarocks](https://github.com/cannarocks))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
11
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
1
15
|
# v4.0.70 (Thu Apr 02 2026)
|
|
2
16
|
|
|
3
17
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -1108,6 +1108,7 @@ declare interface EditorArgs extends Partial<EditorOptions> {
|
|
|
1108
1108
|
validation?: validationStatus;
|
|
1109
1109
|
onSave?: (editor: Editor_2) => void;
|
|
1110
1110
|
disableSaveShortcut?: boolean;
|
|
1111
|
+
contentType?: "json" | "markdown";
|
|
1111
1112
|
}
|
|
1112
1113
|
|
|
1113
1114
|
declare interface EditorChainedCommands {
|