@piying/view-angular-core 2.6.4 → 2.7.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.
@@ -367,8 +367,8 @@ class AbstractControl {
367
367
  get valuePath() {
368
368
  return this.#getPath(() => this.parent.valuePath, () => !!this.parent.skipValuePath);
369
369
  }
370
- get formPath() {
371
- return this.#getPath(() => this.parent.formPath, () => false);
370
+ get fieldPath() {
371
+ return this.#getPath(() => this.parent.fieldPath, () => false);
372
372
  }
373
373
  get value() {
374
374
  return this.value$$();