@nimbus-ds/chat-input 1.0.0 → 1.0.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/CHANGELOG.md +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
ChatInput allows the user to build chat inputs for apps. It features internal components meant to build chat inputs with popovers, actions, and fields.
|
|
4
4
|
|
|
5
|
+
## 2026-01-15 `1.0.1`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Fixes types to adapt with React 18. ([#137](https://github.com/TiendaNube/nimbus-patterns/pull/137) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
|
|
5
11
|
## 2025-09-24 `1.0.0`
|
|
6
12
|
|
|
7
13
|
#### 🎉 New features
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
ChatInput allows the user to build chat inputs for apps. It features internal components meant to build chat inputs with popovers, actions, and fields.
|
|
4
4
|
|
|
5
|
+
## 2026-01-15 `1.0.1`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Fixes types to adapt with React 18. ([#137](https://github.com/TiendaNube/nimbus-patterns/pull/137) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
|
|
5
11
|
## 2025-09-24 `1.0.0`
|
|
6
12
|
|
|
7
13
|
#### 🎉 New features
|
package/dist/index.d.ts
CHANGED
|
@@ -58,7 +58,7 @@ export interface ChatInputComponents {
|
|
|
58
58
|
/**
|
|
59
59
|
* ChatInput Field textarea component.
|
|
60
60
|
*/
|
|
61
|
-
Field: React.ForwardRefExoticComponent<ChatInputFieldBaseProps & React.RefAttributes<HTMLTextAreaElement>>;
|
|
61
|
+
Field: React.ForwardRefExoticComponent<Omit<ChatInputFieldBaseProps, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
|
|
62
62
|
/**
|
|
63
63
|
* ChatInput Popover provides pre-configured popover settings for upload actions.
|
|
64
64
|
*/
|