@nyaruka/temba-components 0.165.0 → 0.167.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 +13 -0
- package/dist/temba-components.js +674 -625
- package/dist/temba-components.js.map +1 -1
- package/package.json +1 -1
- package/src/display/Chat.ts +232 -18
- package/src/interfaces.ts +21 -0
- package/src/list/ContactList.ts +38 -7
- package/src/list/NotificationList.ts +131 -21
- package/src/list/TembaList.ts +11 -5
- package/src/list/TembaMenu.ts +42 -8
- package/src/live/ContactChat.ts +185 -19
- package/src/live/Realtime.ts +133 -0
- package/src/live/SocketService.ts +24 -0
- package/src/store/Store.ts +12 -0
- package/src/utils.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,21 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v0.167.0](https://github.com/nyaruka/temba-components/compare/v0.166.0...v0.167.0)
|
|
8
|
+
|
|
9
|
+
- Add urn-label attribute to contact list [`#1068`](https://github.com/nyaruka/temba-components/pull/1068)
|
|
10
|
+
|
|
11
|
+
#### [v0.166.0](https://github.com/nyaruka/temba-components/compare/v0.165.0...v0.166.0)
|
|
12
|
+
|
|
13
|
+
> 22 July 2026
|
|
14
|
+
|
|
15
|
+
- Add typing indicators to contact chat [`#1064`](https://github.com/nyaruka/temba-components/pull/1064)
|
|
16
|
+
- Consume realtime notifications from the socket instead of polling [`#1063`](https://github.com/nyaruka/temba-components/pull/1063)
|
|
17
|
+
|
|
7
18
|
#### [v0.165.0](https://github.com/nyaruka/temba-components/compare/v0.164.0...v0.165.0)
|
|
8
19
|
|
|
20
|
+
> 21 July 2026
|
|
21
|
+
|
|
9
22
|
- Add temba-field-list for the contact fields list page [`#1061`](https://github.com/nyaruka/temba-components/pull/1061)
|
|
10
23
|
- Initialize deep-linked search, reflect list state in URL, and sync content menu search [`#1060`](https://github.com/nyaruka/temba-components/pull/1060)
|
|
11
24
|
- Add temba-broadcast-list for the broadcast list pages [`#1059`](https://github.com/nyaruka/temba-components/pull/1059)
|