Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Commit f0cdf44

Browse files
committed
Merge remote-tracking branch 'origin/develop' into develop
2 parents 7889cab + a3fa5f7 commit f0cdf44

File tree

9 files changed

+23
-22
lines changed

9 files changed

+23
-22
lines changed

examples/react/develop/functional-component-ts/yarn.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,36 @@
33

44

55
"@agile-ts/api@file:.yalc/@agile-ts/api":
6-
version "0.0.24"
6+
version "0.0.25"
77
dependencies:
8-
"@agile-ts/utils" "^0.0.10"
8+
"@agile-ts/utils" "^0.0.11"
99

1010
"@agile-ts/core@file:.yalc/@agile-ts/core":
11-
version "0.2.6"
11+
version "0.2.7"
1212
dependencies:
13-
"@agile-ts/utils" "^0.0.10"
13+
"@agile-ts/utils" "^0.0.11"
1414

1515
"@agile-ts/event@file:.yalc/@agile-ts/event":
16-
version "0.0.13"
16+
version "0.0.14"
1717

1818
"@agile-ts/logger@file:.yalc/@agile-ts/logger":
19-
version "0.0.10"
19+
version "0.0.11"
2020
dependencies:
21-
"@agile-ts/utils" "^0.0.10"
21+
"@agile-ts/utils" "^0.0.11"
2222

2323
"@agile-ts/multieditor@file:.yalc/@agile-ts/multieditor":
24-
version "0.0.23"
24+
version "0.0.24"
2525

2626
"@agile-ts/proxytree@file:.yalc/@agile-ts/proxytree":
27-
version "0.0.8"
27+
version "0.0.9"
2828

2929
"@agile-ts/react@file:.yalc/@agile-ts/react":
30-
version "0.2.2"
30+
version "0.2.3"
3131

32-
"@agile-ts/utils@^0.0.10":
33-
version "0.0.10"
34-
resolved "https://registry.yarnpkg.com/@agile-ts/utils/-/utils-0.0.10.tgz#5eb2d7b7faefc00c416165ad93c79237e8448bbd"
35-
integrity sha512-eVJZS60H8HaD8atTfswObihdDxjcxNlaoHk8Crmz85KOrdIMBMdrGx41p+Zf15s+dSfal1gbgM2In3bw4zjSww==
32+
"@agile-ts/utils@^0.0.11":
33+
version "0.0.11"
34+
resolved "https://registry.yarnpkg.com/@agile-ts/utils/-/utils-0.0.11.tgz#3680407e92528f0e372af28983872c20b80b395c"
35+
integrity sha512-tbrlXbo3ukoODodl4Og99BG/glhk9NUO09LJ7qdQ25/coL13lNzQQix9Z5IFohEIeJ71Y4ZIGzJmmui29FxTKA==
3636

3737
"@babel/code-frame@7.8.3":
3838
version "7.8.3"

packages/proxytree/src/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { ProxyTree } from './proxytree';
1+
import { ProxyTree } from './tree';
22

3-
export * from './proxytree';
4-
export * from './branch';
3+
export * from './tree';
54
export default ProxyTree;

packages/proxytree/src/branch.ts renamed to packages/proxytree/src/tree/branch.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ProxyTree } from './index';
2-
import { isObject } from './utils';
1+
import { ProxyTree } from '..';
2+
import { isObject } from '../utils';
33

44
export class Branch<T extends Object = DefaultProxyTreeObject> {
55
public proxy: T; // Target object wrapped in proxy

packages/proxytree/src/proxytree.ts renamed to packages/proxytree/src/tree/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import { Branch, BranchKey, DefaultProxyTreeObject } from './branch';
2-
import { isObject } from './utils';
2+
import { isObject } from '../utils';
3+
4+
export * from './branch';
35

46
export class ProxyTree<T extends Object = DefaultProxyTreeObject> {
57
public rootBranch: Branch<T>; // Root Branch of the proxy tree

packages/react/src/core/hooks/useBaseAgile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Agile, {
88
SubscriptionContainerKeyType,
99
RegisterSubscriptionConfigInterface,
1010
} from '@agile-ts/core';
11-
import { useIsomorphicLayoutEffect } from '../../general';
11+
import { useIsomorphicLayoutEffect } from '../../util';
1212
import { logCodeManager } from '../../logCodeManager';
1313

1414
/**

packages/react/src/event/hooks/useEvent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Event, EventCallbackFunction } from '@agile-ts/event'; // When only importing the types the "Can't resolve '@agile-ts/event'" error doesn't occur
2-
import { useIsomorphicLayoutEffect } from '../../general';
2+
import { useIsomorphicLayoutEffect } from '../../util';
33
import { eventPackage } from '../eventPackage';
44
import { logCodeManager } from '../../logCodeManager';
55
import { BaseAgileHookConfigInterface, useBaseAgile } from '../../core';
File renamed without changes.

0 commit comments

Comments
 (0)