@astroapps/forms-core 1.2.1 → 1.2.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.
package/lib/index.cjs CHANGED
@@ -1646,7 +1646,7 @@ function createFormState(schemaInterface, evaluators) {
1646
1646
  return !!cf.readonly.value || isControlReadonly(definition);
1647
1647
  });
1648
1648
  controls.updateComputedValue(disabled, function () {
1649
- return !!cf.disabled.value || isControlDisabled(definition);
1649
+ return !!cf.disabled.value || of.disabled.value;
1650
1650
  });
1651
1651
  controls.updateComputedValue(variables, function () {
1652
1652
  var _controlImpl$fields$v2;