@runtypelabs/react-flow 0.1.9 → 0.1.11
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +14 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/example/CHANGELOG.md +16 -0
- package/example/package.json +1 -1
- package/package.json +2 -2
- package/src/components/nodes/SendEmailNode.tsx +1 -1
- package/src/utils/adapter.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @runtypelabs/react-flow@0.1.
|
|
2
|
+
> @runtypelabs/react-flow@0.1.11 build /home/runner/_work/core/core/packages/react-flow
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
[34mCLI[39m Cleaning output folder
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
12
|
[34mESM[39m Build start
|
|
13
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m101.
|
|
14
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m224.
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
13
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m101.14 KB[39m
|
|
14
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m224.38 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 375ms
|
|
16
16
|
[32mCJS[39m [1mdist/index.js [22m[32m105.20 KB[39m
|
|
17
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m224.
|
|
18
|
-
[32mCJS[39m ⚡️ Build success in
|
|
17
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m224.70 KB[39m
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 375ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @runtypelabs/react-flow
|
|
2
2
|
|
|
3
|
+
## 0.1.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b0bada9]
|
|
8
|
+
- @runtypelabs/sdk@1.2.0
|
|
9
|
+
|
|
10
|
+
## 0.1.10
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [ebe3c6b]
|
|
15
|
+
- @runtypelabs/sdk@1.1.0
|
|
16
|
+
|
|
3
17
|
## 0.1.9
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -372,7 +372,7 @@ function createDefaultStep(type, order = 0) {
|
|
|
372
372
|
return {
|
|
373
373
|
...baseStep,
|
|
374
374
|
config: {
|
|
375
|
-
from: "
|
|
375
|
+
from: "{{_flow.id}}@runtype.email",
|
|
376
376
|
to: "",
|
|
377
377
|
subject: "",
|
|
378
378
|
html: "",
|
|
@@ -2695,7 +2695,7 @@ var SendEmailNode = react.memo(function SendEmailNode2(props) {
|
|
|
2695
2695
|
style: styles6.input,
|
|
2696
2696
|
value: config.from || "",
|
|
2697
2697
|
onChange: (e) => handleChange("from", e.target.value),
|
|
2698
|
-
placeholder: "
|
|
2698
|
+
placeholder: "{{_flow.id}}@runtype.email",
|
|
2699
2699
|
onKeyDown: (e) => e.stopPropagation()
|
|
2700
2700
|
}
|
|
2701
2701
|
)
|