@runtypelabs/react-flow 0.1.10 → 0.1.12
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/dist/index.mjs
CHANGED
|
@@ -370,7 +370,7 @@ function createDefaultStep(type, order = 0) {
|
|
|
370
370
|
return {
|
|
371
371
|
...baseStep,
|
|
372
372
|
config: {
|
|
373
|
-
from: "
|
|
373
|
+
from: "{{_flow.id}}@runtype.email",
|
|
374
374
|
to: "",
|
|
375
375
|
subject: "",
|
|
376
376
|
html: "",
|
|
@@ -2693,7 +2693,7 @@ var SendEmailNode = memo(function SendEmailNode2(props) {
|
|
|
2693
2693
|
style: styles6.input,
|
|
2694
2694
|
value: config.from || "",
|
|
2695
2695
|
onChange: (e) => handleChange("from", e.target.value),
|
|
2696
|
-
placeholder: "
|
|
2696
|
+
placeholder: "{{_flow.id}}@runtype.email",
|
|
2697
2697
|
onKeyDown: (e) => e.stopPropagation()
|
|
2698
2698
|
}
|
|
2699
2699
|
)
|