@connectycube/chat-widget 0.25.0 → 0.26.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/index.es.js +5483 -5516
- package/dist/index.umd.js +38 -30
- package/dist/react19/index.es.js +5842 -5875
- package/dist/react19/types/App.d.ts +2 -0
- package/dist/react19/types/components/widget/widget-overlay.d.ts +7 -0
- package/dist/react19/types/components/widget/widget-portal.d.ts +1 -0
- package/dist/react19/types/components/widget/widget-shadow-root.d.ts +0 -1
- package/dist/react19/types/helpers/widget.d.ts +5 -0
- package/dist/react19/types/hooks/index.d.ts +0 -1
- package/dist/react19/types/hooks/store/useAppInterfaceStore.d.ts +0 -3
- package/dist/react19/types/hooks/useAppPresets.d.ts +1 -1
- package/dist/types/App.d.ts +2 -0
- package/dist/types/components/widget/widget-overlay.d.ts +7 -0
- package/dist/types/components/widget/widget-portal.d.ts +1 -0
- package/dist/types/components/widget/widget-shadow-root.d.ts +0 -1
- package/dist/types/helpers/widget.d.ts +5 -0
- package/dist/types/hooks/index.d.ts +0 -1
- package/dist/types/hooks/store/useAppInterfaceStore.d.ts +0 -3
- package/dist/types/hooks/useAppPresets.d.ts +1 -1
- package/package.json +28 -28
- package/dist/react19/types/hooks/useDetectClickOutside.d.ts +0 -10
- package/dist/types/hooks/useDetectClickOutside.d.ts +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 0.26.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- Shows overlay while the chat widget is open
|
|
8
|
+
- new prop `disableEscKeyPress` to disable closing the chat widget by pressing "esc" button. Default is **false**
|
|
9
|
+
- new prop `overlayStyle` to customize the overlay
|
|
10
|
+
|
|
11
|
+
### Bug fixes
|
|
12
|
+
|
|
13
|
+
- `defaultChat`: error happens if open chat widget quickly after page refresh
|
|
14
|
+
- Fixed embedded mode
|
|
15
|
+
- Prevent click-outside and lock-scroll in embedded mode
|
|
16
|
+
- The attachment button "cursor-pointer" style is broken
|
|
17
|
+
- The `window.ConnectyCubeChatWidget.toggle()` function was fixed for UMD build (Vanilla JS)
|
|
18
|
+
|
|
3
19
|
## 0.25.0
|
|
4
20
|
|
|
5
21
|
### Features
|