@nyaruka/temba-components 0.118.3 → 0.118.5
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 +13 -0
- package/demo/index.html +1 -1
- package/dist/static/img/schemes/webchat.svg +21 -0
- package/dist/temba-components.js +71 -40
- package/dist/temba-components.js.map +1 -1
- package/out-tsc/src/lightbox/Lightbox.js +21 -9
- package/out-tsc/src/lightbox/Lightbox.js.map +1 -1
- package/out-tsc/src/list/RunList.js +1 -0
- package/out-tsc/src/list/RunList.js.map +1 -1
- package/out-tsc/src/mediapicker/MediaPicker.js +1 -0
- package/out-tsc/src/mediapicker/MediaPicker.js.map +1 -1
- package/out-tsc/src/thumbnail/Thumbnail.js +62 -20
- package/out-tsc/src/thumbnail/Thumbnail.js.map +1 -1
- package/package.json +1 -1
- package/screenshots/truth/compose/attachments-with-files-focused.png +0 -0
- package/screenshots/truth/lightbox/img-zoomed.png +0 -0
- package/src/lightbox/Lightbox.ts +21 -9
- package/src/list/RunList.ts +1 -0
- package/src/mediapicker/MediaPicker.ts +1 -0
- package/src/thumbnail/Thumbnail.ts +64 -20
- package/static/img/schemes/webchat.svg +21 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,21 @@ 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.118.5](https://github.com/nyaruka/temba-components/compare/v0.118.4...v0.118.5)
|
|
8
|
+
|
|
9
|
+
- Add valuekey for run result fields [`10c2df1`](https://github.com/nyaruka/temba-components/commit/10c2df1bac1a9bfcb2aef4150d012210332bff48)
|
|
10
|
+
|
|
11
|
+
#### [v0.118.4](https://github.com/nyaruka/temba-components/compare/v0.118.3...v0.118.4)
|
|
12
|
+
|
|
13
|
+
> 12 February 2025
|
|
14
|
+
|
|
15
|
+
- Respect aspect ratio on thumbnails [`#477`](https://github.com/nyaruka/temba-components/pull/477)
|
|
16
|
+
- Remove cruft [`6d54f7e`](https://github.com/nyaruka/temba-components/commit/6d54f7e9484b00ad1f25304f667112ad36a758d2)
|
|
17
|
+
|
|
7
18
|
#### [v0.118.3](https://github.com/nyaruka/temba-components/compare/v0.118.2...v0.118.3)
|
|
8
19
|
|
|
20
|
+
> 11 February 2025
|
|
21
|
+
|
|
9
22
|
- Don't show time across date boundaries [`#476`](https://github.com/nyaruka/temba-components/pull/476)
|
|
10
23
|
|
|
11
24
|
#### [v0.118.2](https://github.com/nyaruka/temba-components/compare/v0.118.1...v0.118.2)
|
package/demo/index.html
CHANGED
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
</head>
|
|
128
128
|
|
|
129
129
|
<body>
|
|
130
|
-
<temba-webchat channel="
|
|
130
|
+
<temba-webchat channel="967cd415-8616-4b11-b38f-60f70e0999f4"></temba-webchat>
|
|
131
131
|
<temba-store completion="/static/api/completion.json" functions="/static/api/functions.json"
|
|
132
132
|
fields="/static/api/fields.json" globals="/static/api/globals.json" groups="/static/api/groups.json"></temba-store>
|
|
133
133
|
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="200"
|
|
4
|
+
height="200"
|
|
5
|
+
viewBox="0 0 24 24"
|
|
6
|
+
fill="white"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
8
|
+
<circle cx="12" cy="12" r="10" fill="#4A90E2"/>
|
|
9
|
+
<path
|
|
10
|
+
d="M7 9H17"
|
|
11
|
+
stroke="white"
|
|
12
|
+
stroke-width="2"
|
|
13
|
+
stroke-linecap="round"
|
|
14
|
+
stroke-linejoin="round"/>
|
|
15
|
+
<path
|
|
16
|
+
d="M7 13H13"
|
|
17
|
+
stroke="white"
|
|
18
|
+
stroke-width="2"
|
|
19
|
+
stroke-linecap="round"
|
|
20
|
+
stroke-linejoin="round"/>
|
|
21
|
+
</svg>
|