neo.mjs 4.0.81 → 4.0.82

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "4.0.81",
3
+ "version": "4.0.82",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -156,11 +156,11 @@ class Container extends BaseContainer {
156
156
  * Updates the invalid state for all fields, which have updateValidationIndicators() implemented.
157
157
  * This can be useful for create entity forms which show up "clean", when pressing a submit button.
158
158
  */
159
- updateValidationIndicators() {
159
+ validate() {
160
160
  let fields = this.getFields();
161
161
 
162
162
  fields.forEach(item => {
163
- item.updateValidationIndicators?.(false);
163
+ item.validate?.(false);
164
164
  });
165
165
  }
166
166
  }