@runtypelabs/react-flow 0.2.22 → 0.3.0
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 +4 -4
- package/CHANGELOG.md +14 -0
- package/example/CHANGELOG.md +8 -0
- package/example/package.json +1 -1
- package/package.json +2 -2
- package/src/types/index.ts +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @runtypelabs/react-flow@0.
|
|
2
|
+
> @runtypelabs/react-flow@0.3.0 build /home/runner/_work/core/core/packages/react-flow
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[34mCLI[39m Cleaning output folder
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
12
|
[34mESM[39m Build start
|
|
13
|
-
[32mCJS[39m [1mdist/index.js [22m[32m105.43 KB[39m
|
|
14
|
-
[32mCJS[39m ⚡️ Build success in 268ms
|
|
15
13
|
[32mESM[39m [1mdist/index.mjs [22m[32m101.38 KB[39m
|
|
16
|
-
[32mESM[39m ⚡️ Build success in
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 241ms
|
|
15
|
+
[32mCJS[39m [1mdist/index.js [22m[32m105.43 KB[39m
|
|
16
|
+
[32mCJS[39m ⚡️ Build success in 242ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @runtypelabs/react-flow
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e6d59df: Add per-step `when` predicate for conditional step execution. Any step can carry
|
|
8
|
+
a JS expression evaluated at runtime; if falsy the step is skipped with its
|
|
9
|
+
outputVariable set to null and a `step_skip` SSE event emitted. Default-skip-on-
|
|
10
|
+
throw; opt into fail-loud via `errorHandling.onError: 'fail'`.
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [e6d59df]
|
|
15
|
+
- @runtypelabs/sdk@1.19.0
|
|
16
|
+
|
|
3
17
|
## 0.2.22
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/example/CHANGELOG.md
CHANGED
package/example/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runtypelabs/react-flow",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "React Flow adapter for building visual flow editors with Runtype",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"*.css"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@runtypelabs/sdk": "1.
|
|
19
|
+
"@runtypelabs/sdk": "1.19.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@xyflow/react": "^12.0.0",
|