@nyaruka/temba-components 0.156.5 → 0.156.7
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 +17 -0
- package/dist/temba-components.js +1315 -1391
- package/dist/temba-components.js.map +1 -1
- package/package.json +1 -1
- package/src/flow/CanvasNode.ts +1 -0
- package/src/flow/DragManager.ts +1239 -0
- package/src/flow/Editor.ts +467 -3329
- package/src/flow/IssuesWindow.ts +73 -0
- package/src/flow/RevisionsWindow.ts +274 -0
- package/src/flow/ZoomManager.ts +544 -0
- package/src/form/select/Select.ts +27 -0
- package/src/interfaces.ts +8 -1
- package/temba-modules.ts +4 -0
- package/run.sh +0 -19
- package/setup-worktree.sh +0 -53
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,25 @@ 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.156.7](https://github.com/nyaruka/temba-components/compare/v0.156.6...v0.156.7)
|
|
8
|
+
|
|
9
|
+
- Add tests for TembaUser and Resizer [`#976`](https://github.com/nyaruka/temba-components/pull/976)
|
|
10
|
+
- Extract floating windows (issues, revisions) from Editor [`#975`](https://github.com/nyaruka/temba-components/pull/975)
|
|
11
|
+
- Move setup-worktree.sh and run.sh to shared utils [`#974`](https://github.com/nyaruka/temba-components/pull/974)
|
|
12
|
+
- Break up Editor.ts into focused modules [`#973`](https://github.com/nyaruka/temba-components/pull/973)
|
|
13
|
+
- Reduce auto-scroll sensitivity on touch devices [`#971`](https://github.com/nyaruka/temba-components/pull/971)
|
|
14
|
+
- Fix Enter key not working for quick replies on Android tablets [`#972`](https://github.com/nyaruka/temba-components/pull/972)
|
|
15
|
+
|
|
16
|
+
#### [v0.156.6](https://github.com/nyaruka/temba-components/compare/v0.156.5...v0.156.6)
|
|
17
|
+
|
|
18
|
+
> 9 April 2026
|
|
19
|
+
|
|
20
|
+
- Use warm border color for localizable categories [`#970`](https://github.com/nyaruka/temba-components/pull/970)
|
|
21
|
+
|
|
7
22
|
#### [v0.156.5](https://github.com/nyaruka/temba-components/compare/v0.156.4...v0.156.5)
|
|
8
23
|
|
|
24
|
+
> 9 April 2026
|
|
25
|
+
|
|
9
26
|
- Fix search input not visible in temba-select [`#969`](https://github.com/nyaruka/temba-components/pull/969)
|
|
10
27
|
- Improve auto-scroll during drag operations [`#968`](https://github.com/nyaruka/temba-components/pull/968)
|
|
11
28
|
- Add shift+drag copy support for action drags [`#967`](https://github.com/nyaruka/temba-components/pull/967)
|