@signaltree/ng-forms 8.0.0 → 8.0.1

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.
@@ -1,4 +1,4 @@
1
- import { getChanges } from '../get-changes.js';
1
+ import { getChanges } from '../shared/lib/get-changes.js';
2
2
 
3
3
  function createAuditTracker(tree, auditLog, config = {}) {
4
4
  const {
@@ -3,10 +3,10 @@ import { Input, Output, HostListener, Directive, forwardRef, EventEmitter, injec
3
3
  import { NG_VALUE_ACCESSOR, FormControl, FormArray, FormGroup } from '@angular/forms';
4
4
  import { signalTree } from '@signaltree/core';
5
5
  import { isObservable, firstValueFrom } from 'rxjs';
6
- import { deepClone } from '../deep-clone.js';
7
- import { mergeDeep } from '../merge-deep.js';
8
- import { parsePath } from '../parse-path.js';
9
- import { matchPath } from '../match-path.js';
6
+ import { deepClone } from '../shared/lib/deep-clone.js';
7
+ import { mergeDeep } from '../shared/lib/merge-deep.js';
8
+ import { parsePath } from '../shared/lib/parse-path.js';
9
+ import { matchPath } from '../shared/lib/match-path.js';
10
10
 
11
11
  function isDevEnvironment() {
12
12
  if (typeof __DEV__ !== 'undefined') return __DEV__;
@@ -1,6 +1,6 @@
1
1
  import { signal } from '@angular/core';
2
- import { deepClone } from '../deep-clone.js';
3
- import { snapshotsEqual } from '../snapshots-equal.js';
2
+ import { deepClone } from '../shared/lib/deep-clone.js';
3
+ import { snapshotsEqual } from '../shared/lib/snapshots-equal.js';
4
4
 
5
5
  function withFormHistory(formTree, options = {}) {
6
6
  const capacity = Math.max(1, options.capacity ?? 10);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signaltree/ng-forms",
3
- "version": "8.0.0",
3
+ "version": "8.0.1",
4
4
  "description": "Angular forms as reactive JSON. Seamless SignalTree integration with FormTree creation, validators, and form state tracking.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -1 +1 @@
1
- export { createAuditTracker, createAuditCallback, type AuditEntry, type AuditMetadata, type AuditTrackerConfig, } from './audit.js';
1
+ export { createAuditTracker, createAuditCallback, type AuditEntry, type AuditMetadata, type AuditTrackerConfig, } from './audit';
File without changes
File without changes