@appquality/unguess-design-system 4.0.13 → 4.0.14
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 +5 -0
- package/build/index.js +10551 -10510
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# v4.0.14 (Mon Dec 02 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Add chat shortcuts [#454](https://github.com/AppQuality/unguess-design-system/pull/454) ([@Kariamos](https://github.com/Kariamos) [@d-beezee](https://github.com/d-beezee))
|
|
6
|
+
- feat: add ChatShortCut component with keyboard shortcuts [#453](https://github.com/AppQuality/unguess-design-system/pull/453) ([@Kariamos](https://github.com/Kariamos))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
11
|
+
- Marco ([@Kariamos](https://github.com/Kariamos))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
1
15
|
# v4.0.13 (Fri Nov 29 2024)
|
|
2
16
|
|
|
3
17
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -1104,6 +1104,11 @@ export declare const Chat: {
|
|
|
1104
1104
|
saveText?: string | undefined;
|
|
1105
1105
|
showShortcut?: boolean | undefined;
|
|
1106
1106
|
}>) => JSX_2.Element;
|
|
1107
|
+
Shortcut: ({ icon, type, children, }: {
|
|
1108
|
+
icon?: ReactNode;
|
|
1109
|
+
type: "bold" | "send" | "italic" | "mention";
|
|
1110
|
+
children: ReactNode;
|
|
1111
|
+
}) => JSX_2.Element;
|
|
1107
1112
|
};
|
|
1108
1113
|
|
|
1109
1114
|
declare interface ChatArgs {
|