@nyaruka/temba-components 0.158.0 → 0.158.1
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 +7 -0
- package/dist/temba-components.js +1032 -204
- package/dist/temba-components.js.map +1 -1
- package/package.json +1 -1
- package/src/display/Dropdown.ts +17 -5
- package/src/interfaces.ts +4 -1
- package/src/layout/TabPane.ts +3 -1
- package/src/list/ContactList.ts +225 -0
- package/src/list/ContentList.ts +1298 -0
- package/src/list/FlowList.ts +251 -0
- package/src/list/MsgList.ts +144 -0
- package/static/api/flow-labels.json +31 -0
- package/temba-modules.ts +8 -0
- package/web-dev-server.config.mjs +156 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,15 @@ 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.158.1](https://github.com/nyaruka/temba-components/compare/v0.158.0...v0.158.1)
|
|
8
|
+
|
|
9
|
+
- Add ContentList component for JSON-driven CRUDL list pages [`#1012`](https://github.com/nyaruka/temba-components/pull/1012)
|
|
10
|
+
- Only run Claude PR review once on PR creation, skip drafts [`#1015`](https://github.com/nyaruka/temba-components/pull/1015)
|
|
11
|
+
|
|
7
12
|
#### [v0.158.0](https://github.com/nyaruka/temba-components/compare/v0.157.1...v0.158.0)
|
|
8
13
|
|
|
14
|
+
> 14 May 2026
|
|
15
|
+
|
|
9
16
|
- Adopt design system across contact panel, tabs, and field editor [`#1011`](https://github.com/nyaruka/temba-components/pull/1011)
|
|
10
17
|
- Stop pill clicks inside CanvasNodes from also opening the action editor [`#1014`](https://github.com/nyaruka/temba-components/pull/1014)
|
|
11
18
|
- Add orca setup hook for worktree initialization [`#1013`](https://github.com/nyaruka/temba-components/pull/1013)
|