@nyaruka/temba-components 0.156.13 → 0.156.15
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 +18 -0
- package/dist/temba-components.js +159 -161
- package/dist/temba-components.js.map +1 -1
- package/package.json +1 -1
- package/src/display/Options.ts +13 -0
- package/src/flow/AutoTranslate.ts +200 -36
- package/src/flow/Editor.ts +4 -2
- package/src/flow/flow-translations.ts +24 -1
- package/src/flow/flow-utils.ts +17 -0
- package/src/flow/nodes/split_by_llm.ts +3 -1
- package/src/flow/nodes/split_by_llm_categorize.ts +3 -1
- package/src/form/RichEditor.ts +4 -1
- package/src/layout/Dialog.ts +1 -4
- package/src/store/AppState.ts +2 -0
- package/src/store/Store.ts +4 -0
- package/static/api/llms.json +11 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,26 @@ 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.15](https://github.com/nyaruka/temba-components/compare/v0.156.14...v0.156.15)
|
|
8
|
+
|
|
9
|
+
- Add update-existing option to auto translate dialog [`#997`](https://github.com/nyaruka/temba-components/pull/997)
|
|
10
|
+
- Simplify auto translate dialog and expose brand via store [`#994`](https://github.com/nyaruka/temba-components/pull/994)
|
|
11
|
+
- Trigger Claude review on PR events with inline comments [`#996`](https://github.com/nyaruka/temba-components/pull/996)
|
|
12
|
+
- Use built-in PR review mode for Claude Code Review [`#995`](https://github.com/nyaruka/temba-components/pull/995)
|
|
13
|
+
- Add Claude Code review workflow for PRs [`#993`](https://github.com/nyaruka/temba-components/pull/993)
|
|
14
|
+
|
|
15
|
+
#### [v0.156.14](https://github.com/nyaruka/temba-components/compare/v0.156.13...v0.156.14)
|
|
16
|
+
|
|
17
|
+
> 28 April 2026
|
|
18
|
+
|
|
19
|
+
- Fix arrow keys and Ctrl+Y yank in rich editor [`#992`](https://github.com/nyaruka/temba-components/pull/992)
|
|
20
|
+
- Filter LLMs by role for flow editing vs auto-translate [`#991`](https://github.com/nyaruka/temba-components/pull/991)
|
|
21
|
+
- Dedupe auto-translate payloads and reuse existing translations [`#990`](https://github.com/nyaruka/temba-components/pull/990)
|
|
22
|
+
|
|
7
23
|
#### [v0.156.13](https://github.com/nyaruka/temba-components/compare/v0.156.12...v0.156.13)
|
|
8
24
|
|
|
25
|
+
> 23 April 2026
|
|
26
|
+
|
|
9
27
|
- Re-enable auto translate using new bulk LLM endpoint [`#989`](https://github.com/nyaruka/temba-components/pull/989)
|
|
10
28
|
|
|
11
29
|
#### [v0.156.12](https://github.com/nyaruka/temba-components/compare/v0.156.11...v0.156.12)
|