@nyaruka/temba-components 0.121.4 → 0.121.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
CHANGED
|
@@ -4,8 +4,14 @@ 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.121.5](https://github.com/nyaruka/temba-components/compare/v0.121.4...v0.121.5)
|
|
8
|
+
|
|
9
|
+
- Add min width for editor [`92c970e`](https://github.com/nyaruka/temba-components/commit/92c970edf1569bb80cc7ff6b8ffc9f9209293002)
|
|
10
|
+
|
|
7
11
|
#### [v0.121.4](https://github.com/nyaruka/temba-components/compare/v0.121.2...v0.121.4)
|
|
8
12
|
|
|
13
|
+
> 7 May 2025
|
|
14
|
+
|
|
9
15
|
- Start of component based flow editor [`#497`](https://github.com/nyaruka/temba-components/pull/497)
|
|
10
16
|
- Add decorator for zustand based properties [`495832c`](https://github.com/nyaruka/temba-components/commit/495832c88635b979970e772fe840e1d744cc32d0)
|
|
11
17
|
- Add in jsplumb [`0b3e7c3`](https://github.com/nyaruka/temba-components/commit/0b3e7c36280d9d92e2c71f0c635f512e54df651e)
|
package/dist/temba-components.js
CHANGED
|
@@ -8059,6 +8059,7 @@ const{I:cu}=at,hu=()=>document.createComment(""),uu=(t,e,i)=>{const n=t._$AA.par
|
|
|
8059
8059
|
box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.05);
|
|
8060
8060
|
border-top: 1px solid #e0e0e0;
|
|
8061
8061
|
display: inline-block;
|
|
8062
|
+
width: 100%;
|
|
8062
8063
|
}
|
|
8063
8064
|
|
|
8064
8065
|
#canvas {
|
|
@@ -8134,7 +8135,7 @@ const{I:cu}=at,hu=()=>document.createComment(""),uu=(t,e,i)=>{const n=t._$AA.par
|
|
|
8134
8135
|
<div id="editor">
|
|
8135
8136
|
<div
|
|
8136
8137
|
id="grid"
|
|
8137
|
-
style="width:${this.canvasSize.width}px; height:${this.canvasSize.height}px"
|
|
8138
|
+
style="min-width:100%;width:${this.canvasSize.width}px; height:${this.canvasSize.height}px"
|
|
8138
8139
|
>
|
|
8139
8140
|
<div id="canvas">
|
|
8140
8141
|
${this.definition?this.definition.nodes.map((t=>G`<temba-flow-node
|