@nyaruka/temba-components 0.157.0 → 0.158.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 +16 -0
- package/dist/temba-components.js +1617 -1590
- package/dist/temba-components.js.map +1 -1
- package/orca/setup.sh +81 -0
- package/orca.yaml +3 -0
- package/package.json +1 -1
- package/src/display/Button.ts +102 -121
- package/src/display/Chat.ts +60 -9
- package/src/display/Dropdown.ts +11 -0
- package/src/display/Label.ts +1 -3
- package/src/display/LeafletMap.ts +4 -3
- package/src/display/TembaUser.ts +9 -3
- package/src/events/eventRenderers.ts +151 -71
- package/src/flow/AutoTranslate.ts +2 -2
- package/src/flow/CanvasNode.ts +14 -6
- package/src/flow/DragManager.ts +4 -2
- package/src/flow/Editor.ts +4 -4
- package/src/flow/NodeEditor.ts +2 -2
- package/src/flow/NodeTypeSelector.ts +0 -5
- package/src/flow/actions/set_contact_language.ts +5 -4
- package/src/flow/nodes/split_by_llm_categorize.ts +1 -6
- package/src/flow/utils.ts +2 -20
- package/src/form/ColorPicker.ts +5 -3
- package/src/form/DatePicker.ts +2 -1
- package/src/form/select/Omnibox.ts +1 -3
- package/src/form/select/Select.ts +5 -4
- package/src/interfaces.ts +1 -0
- package/src/languages.ts +56 -0
- package/src/layout/Dialog.ts +1 -3
- package/src/layout/Tab.ts +0 -15
- package/src/layout/TabPane.ts +73 -163
- package/src/list/ContentMenu.ts +1 -2
- package/src/list/SortableList.ts +1 -4
- package/src/list/TembaMenu.ts +159 -113
- package/src/live/ContactBadges.ts +2 -1
- package/src/live/ContactChat.ts +22 -3
- package/src/live/ContactDetails.ts +42 -36
- package/src/live/ContactFieldEditor.ts +35 -57
- package/src/live/ContactFields.ts +1 -2
- package/src/live/ContactNotepad.ts +9 -1
- package/src/live/ContactPending.ts +1 -0
- package/src/store/AppState.ts +3 -21
- package/src/store/Store.ts +0 -29
- package/src/styles/designTokens.ts +33 -18
- package/src/styles/pillVariants.ts +24 -13
- package/static/css/temba-components.css +84 -55
- package/web-dev-server.config.mjs +0 -1
- package/web-test-runner.config.mjs +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,24 @@ 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.0](https://github.com/nyaruka/temba-components/compare/v0.157.1...v0.158.0)
|
|
8
|
+
|
|
9
|
+
- Adopt design system across contact panel, tabs, and field editor [`#1011`](https://github.com/nyaruka/temba-components/pull/1011)
|
|
10
|
+
- Stop pill clicks inside CanvasNodes from also opening the action editor [`#1014`](https://github.com/nyaruka/temba-components/pull/1014)
|
|
11
|
+
- Add orca setup hook for worktree initialization [`#1013`](https://github.com/nyaruka/temba-components/pull/1013)
|
|
12
|
+
- Show language names instead of codes in chat history events [`#1010`](https://github.com/nyaruka/temba-components/pull/1010)
|
|
13
|
+
|
|
14
|
+
#### [v0.157.1](https://github.com/nyaruka/temba-components/compare/v0.157.0...v0.157.1)
|
|
15
|
+
|
|
16
|
+
> 13 May 2026
|
|
17
|
+
|
|
18
|
+
- Add language name utility and replace store-based lookups [`#1009`](https://github.com/nyaruka/temba-components/pull/1009)
|
|
19
|
+
- Adopt nav design system across menu, buttons, pills, and accent ramp [`#1008`](https://github.com/nyaruka/temba-components/pull/1008)
|
|
20
|
+
|
|
7
21
|
#### [v0.157.0](https://github.com/nyaruka/temba-components/compare/v0.156.18...v0.157.0)
|
|
8
22
|
|
|
23
|
+
> 11 May 2026
|
|
24
|
+
|
|
9
25
|
- Use full name for chat avatar initials to match user select and ticket lists [`#1006`](https://github.com/nyaruka/temba-components/pull/1006)
|
|
10
26
|
- Adopt TextIt design system across form widgets and chat history [`#1005`](https://github.com/nyaruka/temba-components/pull/1005)
|
|
11
27
|
- Re-enable split_by_llm_categorize with result name and category localization [`#1004`](https://github.com/nyaruka/temba-components/pull/1004)
|