@leafer/layouter 2.0.2 → 2.0.4
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 +3 -3
- package/src/Layouter.ts +1 -1
- package/types/index.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafer/layouter",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "@leafer/layouter",
|
|
5
5
|
"author": "Chao (Leafer) Wan",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"leaferjs"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@leafer/core": "2.0.
|
|
25
|
+
"@leafer/core": "2.0.4"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@leafer/interface": "2.0.
|
|
28
|
+
"@leafer/interface": "2.0.4"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/src/Layouter.ts
CHANGED
|
@@ -26,7 +26,7 @@ export class Layouter implements ILayouter {
|
|
|
26
26
|
|
|
27
27
|
public config: ILayouterConfig = { usePartLayout: true }
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
public __updatedList: ILeafList
|
|
30
30
|
protected __levelList: LeafLevelList = new LeafLevelList()
|
|
31
31
|
protected __eventIds: IEventListenerId[]
|
|
32
32
|
|
package/types/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ declare class Layouter implements ILayouter {
|
|
|
12
12
|
layouting: boolean;
|
|
13
13
|
waitAgain: boolean;
|
|
14
14
|
config: ILayouterConfig;
|
|
15
|
-
|
|
15
|
+
__updatedList: ILeafList;
|
|
16
16
|
protected __levelList: LeafLevelList;
|
|
17
17
|
protected __eventIds: IEventListenerId[];
|
|
18
18
|
constructor(target: ILeaf, userConfig?: ILayouterConfig);
|