@constela/core 0.15.1 → 0.15.2

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.
Files changed (2) hide show
  1. package/dist/index.js +0 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1184,9 +1184,6 @@ function validateActionStep(step, path) {
1184
1184
  const pathError = validateExpression(step["path"], path + "/path");
1185
1185
  if (pathError) return pathError;
1186
1186
  }
1187
- if (!("field" in step) || typeof step["field"] !== "string") {
1188
- return { path: path + "/field", message: "field is required" };
1189
- }
1190
1187
  if (!("value" in step)) {
1191
1188
  return { path: path + "/value", message: "value is required" };
1192
1189
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constela/core",
3
- "version": "0.15.1",
3
+ "version": "0.15.2",
4
4
  "description": "Core types, schema, and validator for Constela UI framework",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",