@elyx-code/project-logic-tree 0.0.6115 → 0.0.6117
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/dist/index.js +352 -343
- package/dist/index.umd.cjs +3 -3
- package/dist/tree/state/store.d.ts +1 -0
- package/dist/tree/utils/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ export interface IGetProjectOptions {
|
|
|
8
8
|
empty?: boolean;
|
|
9
9
|
}
|
|
10
10
|
export declare function initBaseProjectEntity(data: IProjectTransfer): ProjectState;
|
|
11
|
+
export declare function cloneProject(project: ProjectState): ProjectState;
|
|
11
12
|
export declare function initProject(data: IProjectTransfer): ProjectState;
|
|
12
13
|
export declare function getProject(where: {
|
|
13
14
|
id: string;
|
|
@@ -150,7 +150,7 @@ export declare function flattenVariableDeclaration(entity: IVariableDeclaration
|
|
|
150
150
|
export declare function flattenVariableInstance(entity: IVariableInstance | IVariableInstanceTransfer, seenEntities?: Set<EntityId>, options?: {
|
|
151
151
|
ignoreBuiltInBaseEntities?: boolean;
|
|
152
152
|
}): (Element | ElementTransfer)[];
|
|
153
|
-
export declare
|
|
153
|
+
export declare function getAllBuiltInEntityIds(): EntityId[];
|
|
154
154
|
export declare function flattenEntity(entity: Element | ElementTransfer | Reference, seenEntities?: Set<EntityId>, options?: {
|
|
155
155
|
ignoreBuiltInBaseEntities?: boolean;
|
|
156
156
|
}): (Element | ElementTransfer)[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6117",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|