@chat21/chat21-web-widget 5.1.33-rc11 → 5.1.33-rc9
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 +0 -7
- package/package.json +1 -1
- package/playwright-report/index.html +90 -0
- package/src/app/component/conversation-detail/conversation/conversation.component.ts +1 -3
- package/src/app/component/conversation-detail/conversation-content/conversation-content.component.spec.ts +7 -0
- package/src/app/component/conversation-detail/conversation-content/conversation-content.component.ts +5 -7
- package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.html +3 -4
- package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.scss +18 -9
- package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.ts +0 -6
- package/src/app/component/conversation-detail/stream-audio-spectrum/stream-audio-spectrum.component.html +5 -8
- package/src/app/component/conversation-detail/stream-audio-spectrum/stream-audio-spectrum.component.scss +1 -5
- package/src/app/component/form/inputs/form-text/form-text.component.ts +3 -9
- package/src/app/component/message/bubble-message/bubble-message.component.scss +0 -5
- package/src/app/component/message/bubble-message/bubble-message.component.ts +0 -14
- package/src/app/component/message/json-sources/json-sources.component.scss +8 -12
- package/src/app/pipe/marked.pipe.ts +41 -51
- package/src/app/providers/global-settings.service.ts +0 -29
- package/src/app/providers/json-sources-parser.service.ts +32 -25
- package/src/app/providers/voice/voice-streaming.service.ts +19 -11
- package/src/app/providers/voice/voice-streaming.types.ts +1 -0
- package/src/app/providers/voice/voice.service.spec.ts +45 -12
- package/src/app/providers/voice/voice.service.ts +45 -215
- package/src/app/utils/globals.ts +0 -10
- package/src/assets/i18n/en.json +125 -106
- package/src/assets/i18n/es.json +0 -1
- package/src/assets/i18n/fr.json +0 -1
- package/src/assets/i18n/it.json +0 -1
- package/test-results/.last-run.json +4 -0
- package/src/assets/sounds/keyboard.mp3 +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,13 +6,6 @@
|
|
|
6
6
|
### **Copyrigth**:
|
|
7
7
|
*Tiledesk SRL*
|
|
8
8
|
|
|
9
|
-
# 5.1.33-rc11
|
|
10
|
-
- **changed**: **Stream audio** — updated the streaming/voice-mode footer icon.
|
|
11
|
-
- **added**: **Stream audio** — tooltip on the stream button (i18n key `STREAM_AUDIO`, e.g. “Use voice mode”) via SVG `<title>` and `aria-label`.
|
|
12
|
-
|
|
13
|
-
# 5.1.33-rc10
|
|
14
|
-
- **bug-fixed**: fixed bug with knowledge base json sources without URLs
|
|
15
|
-
|
|
16
9
|
# 5.1.33-rc9
|
|
17
10
|
- **changed**: **Conversation footer** — accessibility-focused markup (ARIA roles/labels, live regions, semantic send control), stream-audio layout (wrapper + voice mode: hide attach/emoji while streaming, inline status, stream button + spectrum), optional **Close chat** action when `closeChatInConversation` is enabled; emoji restriction alert uses assertive live region semantics.
|
|
18
11
|
- **bug-fixed**: **`getConversationDetail` Tiledesk fallback** — when `getMyRequests()` rejects, the conversation is treated as archived (`isConversationArchived = true`) and the handler returns immediately instead of resetting state from an empty fallback payload.
|