@nyaruka/temba-components 0.39.0 → 0.40.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 +17 -0
- package/dist/{9ac0723e.js → b885f7d6.js} +7 -34
- package/dist/index.js +7 -34
- package/dist/sw.js +1 -1
- package/dist/sw.js.map +1 -1
- package/dist/templates/components-body.html +1 -1
- package/dist/templates/components-head.html +1 -1
- package/out-tsc/src/contacts/ContactBadges.js +5 -5
- package/out-tsc/src/contacts/ContactBadges.js.map +1 -1
- package/out-tsc/src/list/TembaMenu.js +77 -168
- package/out-tsc/src/list/TembaMenu.js.map +1 -1
- package/out-tsc/src/utils/index.js +2 -0
- package/out-tsc/src/utils/index.js.map +1 -1
- package/out-tsc/src/vectoricon/index.js +2 -0
- package/out-tsc/src/vectoricon/index.js.map +1 -1
- package/out-tsc/test/temba-label.test.js +4 -4
- package/out-tsc/test/temba-label.test.js.map +1 -1
- package/out-tsc/test/temba-menu.test.js +58 -7
- package/out-tsc/test/temba-menu.test.js.map +1 -1
- package/package.json +1 -1
- package/screenshots/truth/label/custom.png +0 -0
- package/screenshots/truth/label/danger.png +0 -0
- package/screenshots/truth/label/default-icon.png +0 -0
- package/screenshots/truth/label/shadow.png +0 -0
- package/screenshots/truth/menu/menu-focus.png +0 -0
- package/screenshots/truth/menu/menu-focused-with items.png +0 -0
- package/screenshots/truth/menu/menu-refresh-1.png +0 -0
- package/screenshots/truth/menu/menu-refresh-2.png +0 -0
- package/screenshots/truth/menu/menu-root.png +0 -0
- package/screenshots/truth/menu/menu-submenu.png +0 -0
- package/screenshots/truth/menu/menu-tasks-nextup.png +0 -0
- package/screenshots/truth/menu/menu-tasks.png +0 -0
- package/src/contacts/ContactBadges.ts +5 -5
- package/src/list/TembaMenu.ts +89 -181
- package/src/utils/index.ts +3 -0
- package/src/vectoricon/index.ts +2 -0
- package/test/temba-label.test.ts +4 -4
- package/test/temba-menu.test.ts +73 -7
- package/test-assets/menu/menu-root.json +33 -0
- package/test-assets/menu/menu-schedule.json +21 -0
- package/test-assets/{list → menu}/menu-tasks.json +0 -0
- package/screenshots/truth/list/menu-root.png +0 -0
- package/screenshots/truth/list/menu-submenu.png +0 -0
- package/test-assets/list/menu-root.json +0 -17
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.40.0](https://github.com/nyaruka/temba-components/compare/v0.39.1...v0.40.0)
|
|
8
|
+
|
|
9
|
+
- Simplify temba-menu interaction model [`#259`](https://github.com/nyaruka/temba-components/pull/259)
|
|
10
|
+
- Remove multi path selection in favor of focus-only [`42bddb8`](https://github.com/nyaruka/temba-components/commit/42bddb895a669b79460787b1a95f03996cc2c3e7)
|
|
11
|
+
- honor value property for temba-menu after root change [`3578e80`](https://github.com/nyaruka/temba-components/commit/3578e8075ee3cbad7e7c3a7510b7fd4257b5fadd)
|
|
12
|
+
- Remove bogus test [`e551af6`](https://github.com/nyaruka/temba-components/commit/e551af665340f7c5c7adbcbee683437936fa026f)
|
|
13
|
+
|
|
14
|
+
#### [v0.39.1](https://github.com/nyaruka/temba-components/compare/v0.39.0...v0.39.1)
|
|
15
|
+
|
|
16
|
+
> 1 February 2023
|
|
17
|
+
|
|
18
|
+
- Include redirection flag on WebResponse [`#258`](https://github.com/nyaruka/temba-components/pull/258)
|
|
19
|
+
- Update label icons [`630ea4f`](https://github.com/nyaruka/temba-components/commit/630ea4f3c2c42cf4639d6b226f3b0ac7e9ed7919)
|
|
20
|
+
- Add home icon [`d1318fd`](https://github.com/nyaruka/temba-components/commit/d1318fd19d45c126f9716699f35b27bcd6179b09)
|
|
21
|
+
|
|
7
22
|
#### [v0.39.0](https://github.com/nyaruka/temba-components/compare/v0.38.0...v0.39.0)
|
|
8
23
|
|
|
24
|
+
> 31 January 2023
|
|
25
|
+
|
|
9
26
|
- Don't fire menu change events until pending selection is complete [`#257`](https://github.com/nyaruka/temba-components/pull/257)
|
|
10
27
|
|
|
11
28
|
#### [v0.38.0](https://github.com/nyaruka/temba-components/compare/v0.37.1...v0.38.0)
|