@weavy/uikit-react 29.2.0 → 29.3.0
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 +16 -0
- package/dist/build/weavy.bundle.js +1215 -1219
- package/dist/build/weavy.cjs +889 -885
- package/dist/build/weavy.es5.esm.js +1 -1
- package/dist/build/weavy.es5.umd.js +1 -1
- package/dist/build/weavy.mjs +16334 -16549
- package/dist/build/weavy.umd.js +1215 -1219
- package/dist/types/hooks/useWeavyContext.d.ts +4 -5
- package/lib/client/WyContext.tsx +1 -1
- package/lib/hooks/useWeavyContext.ts +10 -9
- package/package.json +20 -20
package/changelog.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog for Weavy
|
|
2
2
|
|
|
3
|
+
## v29.3.0
|
|
4
|
+
|
|
5
|
+
<time>2025-11-05</time>
|
|
6
|
+
|
|
7
|
+
* Added `enterToSend` attribute setting for all Weavy components. Set to "never", "modifier", "auto" or "always".
|
|
8
|
+
* Added cleanup function that removes notifications older than 90 days.
|
|
9
|
+
* Added detection for missing client-side configuration. May be adjusted using the added `configurationTimeout` setting.
|
|
10
|
+
* Changed the `useWeavyContext()` context hook in UI Kit for React to accept arrow functions instead of React refs to comply with React guidelines. If you are using React refs with this hook, you should change the usage to `useWeavyContext(() => myRef.current)` to avoid linting errors.
|
|
11
|
+
* Optimized API requests for conversation features in UI kit.
|
|
12
|
+
|
|
13
|
+
## v29.2.1
|
|
14
|
+
|
|
15
|
+
<time>2025-08-20</time>
|
|
16
|
+
|
|
17
|
+
* Fixed an issue where files larger than the configured maximum size could be uploaded.
|
|
18
|
+
|
|
3
19
|
## v29.2.0
|
|
4
20
|
|
|
5
21
|
<time>2025-07-09</time>
|