@nyaruka/temba-components 0.43.0 → 0.43.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 +12 -0
- package/dist/{96498fd6.js → 481989ca.js} +389 -393
- package/dist/index.js +389 -393
- 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/compose/Compose.js +21 -19
- package/out-tsc/src/compose/Compose.js.map +1 -1
- package/out-tsc/src/contacts/ContactChat.js +2 -2
- package/out-tsc/src/contacts/ContactChat.js.map +1 -1
- package/out-tsc/src/lightbox/Lightbox.js +10 -7
- package/out-tsc/src/lightbox/Lightbox.js.map +1 -1
- package/out-tsc/src/list/ContentMenu.js +0 -4
- package/out-tsc/src/list/ContentMenu.js.map +1 -1
- package/out-tsc/src/utils/index.js +10 -1
- package/out-tsc/src/utils/index.js.map +1 -1
- package/out-tsc/test/temba-compose.test.js +5 -6
- package/out-tsc/test/temba-compose.test.js.map +1 -1
- package/out-tsc/test/temba-contact-chat.test.js +12 -12
- package/out-tsc/test/temba-contact-chat.test.js.map +1 -1
- package/package.json +1 -1
- package/src/compose/Compose.ts +25 -23
- package/src/contacts/ContactChat.ts +2 -2
- package/src/lightbox/Lightbox.ts +13 -9
- package/src/list/ContentMenu.ts +0 -4
- package/src/utils/index.ts +8 -1
- package/test/temba-compose.test.ts +5 -7
- package/test/temba-contact-chat.test.ts +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,20 @@ 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.43.1](https://github.com/nyaruka/temba-components/compare/v0.43.0...v0.43.1)
|
|
8
|
+
|
|
9
|
+
- Remove unnecessary zindex [`#280`](https://github.com/nyaruka/temba-components/pull/280)
|
|
10
|
+
- Fix landscape zoom on wide browsers [`#279`](https://github.com/nyaruka/temba-components/pull/279)
|
|
11
|
+
- compose - switch to media api for attachment upload [`#276`](https://github.com/nyaruka/temba-components/pull/276)
|
|
12
|
+
- compose - switch to messages api for message send [`#278`](https://github.com/nyaruka/temba-components/pull/278)
|
|
13
|
+
- - added upload_endpoint to compose component [`fba6b0d`](https://github.com/nyaruka/temba-components/commit/fba6b0d2a56165dcfb914c8505f47d5de2cd2709)
|
|
14
|
+
- - updated name to filename in Attachment interface [`0760809`](https://github.com/nyaruka/temba-components/commit/076080941ae28dec3c8290ef56a68242fdcd9d59)
|
|
15
|
+
- - switched api from broadcasts.json to messages.json and updated tests [`140b0c8`](https://github.com/nyaruka/temba-components/commit/140b0c82fb823c4b60d5169fe8c9d91602023aba)
|
|
16
|
+
|
|
7
17
|
#### [v0.43.0](https://github.com/nyaruka/temba-components/compare/v0.42.1...v0.43.0)
|
|
8
18
|
|
|
19
|
+
> 7 March 2023
|
|
20
|
+
|
|
9
21
|
- Shared avatar rendering. Add lightbox. [`#277`](https://github.com/nyaruka/temba-components/pull/277)
|
|
10
22
|
- Improve lightbox test [`8ca71fc`](https://github.com/nyaruka/temba-components/commit/8ca71fc1d3641b4ced1c3d0d1da3d686c18eb000)
|
|
11
23
|
- Make zoom pct an attribute [`ee108bf`](https://github.com/nyaruka/temba-components/commit/ee108bf417c560b07c45579f9c265f0773064e37)
|