@nyaruka/temba-components 0.106.0 → 0.107.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 +14 -0
- package/demo/index.html +1 -2
- package/dist/temba-components.js +489 -368
- package/dist/temba-components.js.map +1 -1
- package/out-tsc/src/date/TembaDate.js +4 -0
- package/out-tsc/src/date/TembaDate.js.map +1 -1
- package/out-tsc/src/progress/FlowStartProgress.js +69 -0
- package/out-tsc/src/progress/FlowStartProgress.js.map +1 -0
- package/out-tsc/src/progress/ProgressBar.js +184 -0
- package/out-tsc/src/progress/ProgressBar.js.map +1 -0
- package/out-tsc/src/store/Store.js +23 -0
- package/out-tsc/src/store/Store.js.map +1 -1
- package/out-tsc/temba-modules.js +4 -0
- package/out-tsc/temba-modules.js.map +1 -1
- package/package.json +2 -2
- package/src/date/TembaDate.ts +3 -0
- package/src/progress/FlowStartProgress.ts +76 -0
- package/src/progress/ProgressBar.ts +179 -0
- package/src/store/Store.ts +28 -0
- package/temba-modules.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,22 @@ 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.107.1](https://github.com/nyaruka/temba-components/compare/v0.107.0...v0.107.1)
|
|
8
|
+
|
|
9
|
+
- Fix widths for large pcts on progress bar [`#454`](https://github.com/nyaruka/temba-components/pull/454)
|
|
10
|
+
- Better handling for empty case [`25bcf3b`](https://github.com/nyaruka/temba-components/commit/25bcf3bdf76cc616f22d9bfc0f66dd6e18d91e5f)
|
|
11
|
+
|
|
12
|
+
#### [v0.107.0](https://github.com/nyaruka/temba-components/compare/v0.106.0...v0.107.0)
|
|
13
|
+
|
|
14
|
+
> 14 September 2024
|
|
15
|
+
|
|
16
|
+
- Add flow start progress [`#453`](https://github.com/nyaruka/temba-components/pull/453)
|
|
17
|
+
- Calculate a naiive eta [`fc2d480`](https://github.com/nyaruka/temba-components/commit/fc2d480aba07bf5267844a0d370423893d03d009)
|
|
18
|
+
|
|
7
19
|
#### [v0.106.0](https://github.com/nyaruka/temba-components/compare/v0.105.1...v0.106.0)
|
|
8
20
|
|
|
21
|
+
> 11 September 2024
|
|
22
|
+
|
|
9
23
|
- Handle empty contact searches more elegantly [`#451`](https://github.com/nyaruka/temba-components/pull/451)
|
|
10
24
|
|
|
11
25
|
#### [v0.105.1](https://github.com/nyaruka/temba-components/compare/v0.105.0...v0.105.1)
|
package/demo/index.html
CHANGED
|
@@ -144,8 +144,6 @@
|
|
|
144
144
|
</temba-dropdown>
|
|
145
145
|
|
|
146
146
|
<div class="header">temba-components</div>
|
|
147
|
-
|
|
148
|
-
|
|
149
147
|
<!--temba-image-picker name="avatar" label="Profile Picture" shape="circle"></temba-image-picker-->
|
|
150
148
|
<!--temba-webchat channel="9e6b37a8-c649-48b3-92d1-dfa7c00b85dc"></temba-webchat-->
|
|
151
149
|
<!-- temba-template-editor url="/static/api/templates.json" lang="eng" template="580b124f-32cb-4003-b9e5-9eb783e29101"
|
|
@@ -154,6 +152,7 @@
|
|
|
154
152
|
|
|
155
153
|
<temba-tabs collapses index="0">
|
|
156
154
|
<temba-tab name="Overview" icon="default">
|
|
155
|
+
<temba-progress style="margin-bottom:8px" total="100" current="25" eta="2030-09-17T07:00:00.000Z"></temba-progress>
|
|
157
156
|
<div style="display:flex;flex-wrap: wrap;">
|
|
158
157
|
<temba-checkbox label="Check this out" checked></temba-checkbox>
|
|
159
158
|
<temba-select placeholder="Select a color" clearable>
|