This repository was archived by the owner on Oct 16, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +23
-22
lines changed
examples/react/develop/functional-component-ts Expand file tree Collapse file tree 9 files changed +23
-22
lines changed Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 1- import { ProxyTree } from './proxytree ' ;
1+ import { ProxyTree } from './tree ' ;
22
3- export * from './proxytree' ;
4- export * from './branch' ;
3+ export * from './tree' ;
54export default ProxyTree ;
Original file line number Diff line number Diff line change 1- import { ProxyTree } from './index ' ;
2- import { isObject } from './utils' ;
1+ import { ProxyTree } from '.. ' ;
2+ import { isObject } from '.. /utils' ;
33
44export class Branch < T extends Object = DefaultProxyTreeObject > {
55 public proxy : T ; // Target object wrapped in proxy
Original file line number Diff line number Diff line change 11import { Branch , BranchKey , DefaultProxyTreeObject } from './branch' ;
2- import { isObject } from './utils' ;
2+ import { isObject } from '../utils' ;
3+
4+ export * from './branch' ;
35
46export class ProxyTree < T extends Object = DefaultProxyTreeObject > {
57 public rootBranch : Branch < T > ; // Root Branch of the proxy tree
File renamed without changes.
Original file line number Diff line number Diff 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 ' ;
1212import { logCodeManager } from '../../logCodeManager' ;
1313
1414/**
Original file line number Diff line number Diff line change 11import 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 ' ;
33import { eventPackage } from '../eventPackage' ;
44import { logCodeManager } from '../../logCodeManager' ;
55import { BaseAgileHookConfigInterface , useBaseAgile } from '../../core' ;
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments