@nyaruka/temba-components 0.163.0 → 0.164.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 +14 -0
- package/dist/temba-components.js +1842 -678
- package/dist/temba-components.js.map +1 -1
- package/package.json +1 -1
- package/src/display/Chat.ts +3 -2
- package/src/display/Lightbox.ts +57 -109
- package/src/display/Thumbnail.ts +34 -7
- package/src/interfaces.ts +79 -2
- package/src/layout/Card.ts +311 -0
- package/src/layout/CardLayout.ts +425 -0
- package/src/layout/CardStack.ts +131 -0
- package/src/layout/Dialog.ts +33 -24
- package/src/layout/HeaderBar.ts +38 -0
- package/src/layout/PageHeader.ts +5 -6
- package/src/layout/Resizer.ts +20 -0
- package/src/list/CampaignList.ts +144 -0
- package/src/list/ContactList.ts +3 -1
- package/src/list/FlowList.ts +31 -7
- package/src/list/MsgList.ts +18 -12
- package/src/list/SortableList.ts +45 -6
- package/src/list/TriggerList.ts +538 -0
- package/src/live/CampaignEvents.ts +1094 -0
- package/src/live/ContactDetails.ts +3 -4
- package/src/live/ContactFields.ts +1 -1
- package/src/live/ContactNameFetch.ts +5 -2
- package/src/live/ContactNotepad.ts +88 -2
- package/src/live/ContactStoreElement.ts +12 -2
- package/src/utils.ts +19 -0
- package/temba-modules.ts +14 -0
- package/web-dev-server.config.mjs +54 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,13 +4,27 @@ 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.164.0](https://github.com/nyaruka/temba-components/compare/v0.163.0...v0.164.0)
|
|
8
|
+
|
|
9
|
+
- Add temba-campaign-events for the campaign read page [`#1048`](https://github.com/nyaruka/temba-components/pull/1048)
|
|
10
|
+
- Add chat-first card layout for contact pages [`#1049`](https://github.com/nyaruka/temba-components/pull/1049)
|
|
11
|
+
- Add temba-campaign-list content list component [`#1045`](https://github.com/nyaruka/temba-components/pull/1045)
|
|
12
|
+
- Add temba-trigger-list component [`#1046`](https://github.com/nyaruka/temba-components/pull/1046)
|
|
13
|
+
- Fetch contacts with expand_urns so URNs are resolved against channels [`#1047`](https://github.com/nyaruka/temba-components/pull/1047)
|
|
14
|
+
- Render attachments in the message list and fix the lightbox [`#1039`](https://github.com/nyaruka/temba-components/pull/1039)
|
|
15
|
+
- Don't clip long flow names or label chips in the flow list [`#1044`](https://github.com/nyaruka/temba-components/pull/1044)
|
|
16
|
+
|
|
7
17
|
#### [v0.163.0](https://github.com/nyaruka/temba-components/compare/v0.162.0...v0.163.0)
|
|
8
18
|
|
|
19
|
+
> 9 July 2026
|
|
20
|
+
|
|
9
21
|
- Warn before dismissing dialogs with unsaved changes via escape [`#1042`](https://github.com/nyaruka/temba-components/pull/1042)
|
|
10
22
|
- Render placeholder for messages with no content [`#1043`](https://github.com/nyaruka/temba-components/pull/1043)
|
|
11
23
|
- Syntax highlight expressions in Next Up message events [`#1041`](https://github.com/nyaruka/temba-components/pull/1041)
|
|
12
24
|
- Match action and node type names in flow search [`#1040`](https://github.com/nyaruka/temba-components/pull/1040)
|
|
13
25
|
- Cleanup .gitignore [`ec95a73`](https://github.com/nyaruka/temba-components/commit/ec95a7337891fc688e22e51b918b6d1fa30e0ab3)
|
|
26
|
+
- Pin npm to v11 in publish workflow (npm 12.0.0 breaks provenance publish) [`d0ab0e6`](https://github.com/nyaruka/temba-components/commit/d0ab0e6e650fce5aa186fa5c9b1a2e53cb1917b4)
|
|
27
|
+
- Use Node 22 in publish workflow (npm@latest now requires Node 22+) [`943a8dc`](https://github.com/nyaruka/temba-components/commit/943a8dcada85459f9e47ec18717e08161336a189)
|
|
14
28
|
|
|
15
29
|
#### [v0.162.0](https://github.com/nyaruka/temba-components/compare/v0.161.0...v0.162.0)
|
|
16
30
|
|