@plurid/plurid-engine 0.0.0-11 → 0.0.0-14
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/distribution/index.es.js +1308 -1229
- package/distribution/index.es.js.map +1 -1
- package/distribution/index.js +1308 -1229
- package/distribution/index.js.map +1 -1
- package/distribution/modules/general/configuration/index.d.ts +2 -2
- package/distribution/modules/general/tree/index.d.ts +1 -2
- package/distribution/modules/interaction/mathematics/quaternion/index.d.ts +3 -4
- package/distribution/modules/interaction/mathematics/transform/general/index.d.ts +28 -0
- package/distribution/modules/interaction/mathematics/transform/matrix3d/index.d.ts +3 -4
- package/distribution/modules/planes/logic/index.d.ts +2 -4
- package/distribution/modules/planes/registrar/object.d.ts +1 -1
- package/distribution/modules/planes/registrar/utilities.d.ts +1 -1
- package/distribution/modules/routing/Parser/logic.d.ts +1 -1
- package/distribution/modules/routing/logic/general/index.d.ts +1 -1
- package/distribution/modules/routing/logic/utilities/index.d.ts +2 -2
- package/distribution/modules/routing/logic/validity/index.d.ts +1 -1
- package/distribution/modules/space/layout/column.d.ts +1 -1
- package/distribution/modules/space/layout/row.d.ts +1 -1
- package/distribution/modules/space/tree/logic.d.ts +14 -7
- package/distribution/modules/space/tree/object.d.ts +3 -3
- package/distribution/modules/state/compute/index.d.ts +1 -1
- package/distribution/modules/state/compute/space/index.d.ts +1 -1
- package/package.json +18 -17
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const merge: (configuration?:
|
|
1
|
+
import { PluridPartialConfiguration, PluridConfiguration } from '@plurid/plurid-data';
|
|
2
|
+
export declare const merge: (configuration?: PluridPartialConfiguration, target?: PluridConfiguration) => PluridConfiguration;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
2
|
/** interfaces */
|
|
3
|
-
|
|
4
|
-
export declare const createTreePlane: <C>(contextPlane: PluridInternalContextPlane<C>, documentPlane: PluridInternalStatePlane) => TreePlane;
|
|
3
|
+
TreePlane, LinkCoordinates } from '@plurid/plurid-data';
|
|
5
4
|
export declare const updateTreePlane: (tree: TreePlane[], page: TreePlane) => TreePlane[];
|
|
6
5
|
export declare const updateTreeByPlaneIDWithLinkCoordinates: (tree: TreePlane[], planeID: string, linkCoordinates: LinkCoordinates) => TreePlane[];
|
|
@@ -12,7 +12,7 @@ export declare const degToRad: (deg: number) => number;
|
|
|
12
12
|
* @returns degrees
|
|
13
13
|
*/
|
|
14
14
|
export declare const radToDeg: (rad: number) => number;
|
|
15
|
-
interface Quaternion {
|
|
15
|
+
export interface Quaternion {
|
|
16
16
|
x: number;
|
|
17
17
|
y: number;
|
|
18
18
|
z: number;
|
|
@@ -51,7 +51,7 @@ export declare function conjugateQuaternion(quaternion: Quaternion): Quaternion;
|
|
|
51
51
|
* @param gamma around Y axis
|
|
52
52
|
* @returns {Quaternion}
|
|
53
53
|
*/
|
|
54
|
-
export declare function computeQuaternionFromEulers(alpha: number, beta: number, gamma: number): Quaternion;
|
|
54
|
+
export declare function computeQuaternionFromEulers(alpha: number, beta: number, gamma: number, radians?: boolean): Quaternion;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
57
|
* @param x
|
|
@@ -70,10 +70,9 @@ export declare function quaternionMultiply(quaternionArray: Quaternion[]): Quate
|
|
|
70
70
|
* @param pointRotate
|
|
71
71
|
* @param quaternion
|
|
72
72
|
*/
|
|
73
|
-
export declare function rotatePointViaQuaternion(pointRotate:
|
|
73
|
+
export declare function rotatePointViaQuaternion(pointRotate: [number, number, number], quaternion: Quaternion): Quaternion;
|
|
74
74
|
/**
|
|
75
75
|
*
|
|
76
76
|
* @param quaternion
|
|
77
77
|
*/
|
|
78
78
|
export declare function makeRotationMatrixFromQuaternion(quaternion: Quaternion): number[];
|
|
79
|
-
export {};
|
|
@@ -1,9 +1,37 @@
|
|
|
1
|
+
import { Quaternion } from '../../quaternion';
|
|
1
2
|
export declare type Matrix = number[][];
|
|
3
|
+
export declare const getInitialMatrix: () => Matrix;
|
|
2
4
|
export declare const multiplyMatrices: (m1: Matrix, m2: Matrix) => Matrix;
|
|
5
|
+
/**
|
|
6
|
+
* Multiplies multiple `matrices`, must contain at least 2.
|
|
7
|
+
*
|
|
8
|
+
* @param matrices
|
|
9
|
+
* @returns
|
|
10
|
+
*/
|
|
11
|
+
export declare const multiplyMatricesArray: (matrices: Matrix[]) => Matrix;
|
|
3
12
|
export declare const arrayToMatrix: (array: number[]) => Matrix;
|
|
4
13
|
export declare const matrixToArray: (matrix: Matrix) => number[];
|
|
14
|
+
/**
|
|
15
|
+
* Parse a `matrix3d` string into a `Matrix`.
|
|
16
|
+
*
|
|
17
|
+
* @param value
|
|
18
|
+
* @returns
|
|
19
|
+
*/
|
|
20
|
+
export declare const matrix3DToMatrix: (value: string) => Matrix;
|
|
5
21
|
export declare const printMatrix: (matrix: Matrix, name: string) => void;
|
|
6
22
|
export declare const rotateXMatrix: (angle: number) => Matrix;
|
|
7
23
|
export declare const rotateYMatrix: (angle: number) => Matrix;
|
|
8
24
|
export declare const rotateZMatrix: (angle: number) => Matrix;
|
|
9
25
|
export declare const translateMatrix: (x?: number, y?: number, z?: number) => Matrix;
|
|
26
|
+
export declare const scaleMatrix: (s: number) => Matrix;
|
|
27
|
+
export declare function rotationMatrixFromQuaternion(quaternion: Quaternion): Matrix;
|
|
28
|
+
export declare const matrixToCSSMatrix: (matrix: Matrix) => string;
|
|
29
|
+
export declare const identityMatrix: () => Matrix;
|
|
30
|
+
/**
|
|
31
|
+
* Inverse a matrix based on
|
|
32
|
+
* https://github.com/josdejong/mathjs/blob/develop/src/function/matrix/inv.js
|
|
33
|
+
*
|
|
34
|
+
* @param matrix
|
|
35
|
+
* @returns
|
|
36
|
+
*/
|
|
37
|
+
export declare const inverseMatrix: (matrix: Matrix) => Matrix;
|
|
@@ -47,23 +47,22 @@ export declare function getScalationValue(matrix3d: string): number;
|
|
|
47
47
|
* @returns matrix3d CSS string.
|
|
48
48
|
*/
|
|
49
49
|
export declare function setTransform(rotationMatrix: number[], translationMatrix: number[], scalationMatrix: number[]): string;
|
|
50
|
-
interface RotationValues {
|
|
50
|
+
export interface RotationValues {
|
|
51
51
|
rotateX: number;
|
|
52
52
|
rotateY: number;
|
|
53
53
|
rotateZ: number;
|
|
54
54
|
}
|
|
55
55
|
export declare function getTransformRotate(matrix3d: string): RotationValues;
|
|
56
|
-
interface TranslationValues {
|
|
56
|
+
export interface TranslationValues {
|
|
57
57
|
translateX: number;
|
|
58
58
|
translateY: number;
|
|
59
59
|
translateZ: number;
|
|
60
60
|
}
|
|
61
61
|
export declare function getTransformTranslate(matrix3d: string): TranslationValues;
|
|
62
|
-
interface ScalationValue {
|
|
62
|
+
export interface ScalationValue {
|
|
63
63
|
scale: number;
|
|
64
64
|
}
|
|
65
65
|
export declare function getTransformScale(matrix3d: string): ScalationValue;
|
|
66
66
|
export declare function rotatePlurid(matrix3d: string, direction?: string, angleIncrement?: number): string;
|
|
67
67
|
export declare function translatePlurid(matrix3d: string, direction?: string, linearIncrement?: number): string;
|
|
68
68
|
export declare function scalePlurid(matrix3d: string, direction?: string, scaleIncrement?: number): string;
|
|
69
|
-
export {};
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import { PluridPlane, PluridPlaneObject, PluridRoutePlane, PluridRoutePlaneObject
|
|
1
|
+
import { PluridPlane, PluridPlaneObject, PluridRoutePlane, PluridRoutePlaneObject } from '@plurid/plurid-data';
|
|
2
2
|
export declare const resolvePluridPlaneData: <C>(plane: PluridPlane<C>) => PluridPlaneObject<C>;
|
|
3
3
|
export declare const resolvePluridRoutePlaneData: <C>(plane: PluridRoutePlane<C>) => PluridRoutePlaneObject<C>;
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const createInternalContextPlane: <C>(plane: PluridPlane<C>) => PluridInternalContextPlane<C>;
|
|
6
|
-
export declare const getPluridPlaneIDByData: (element: HTMLElement | null) => any;
|
|
4
|
+
export declare const getPluridPlaneIDByData: (element: HTMLElement | null) => string;
|
|
@@ -5,7 +5,7 @@ import { PluridPlane, RegisteredPluridPlane, PluridPlanesRegistrar as IPluridPla
|
|
|
5
5
|
*/
|
|
6
6
|
declare class PluridPlanesRegistrar<C> implements IPluridPlanesRegistrar<C> {
|
|
7
7
|
private isoMatcher;
|
|
8
|
-
constructor(planes?: PluridPlane<C>[]);
|
|
8
|
+
constructor(planes?: PluridPlane<C>[], origin?: string);
|
|
9
9
|
register(planes: PluridPlane<C>[]): void;
|
|
10
10
|
identify(): string[];
|
|
11
11
|
get(route: string): RegisteredPluridPlane<C> | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PluridPlane, PluridPlanesRegistrar as IPluridPlanesRegistrar } from '@plurid/plurid-data';
|
|
2
|
-
declare const registerPlanes: <C>(planes?: PluridPlane<C>[] | undefined, planesRegistrar?: IPluridPlanesRegistrar<C> | undefined) => void;
|
|
2
|
+
declare const registerPlanes: <C>(planes?: PluridPlane<C>[] | undefined, planesRegistrar?: IPluridPlanesRegistrar<C> | undefined, origin?: string) => void;
|
|
3
3
|
declare const getPlanesRegistrar: <C>(planesRegistrar: IPluridPlanesRegistrar<C> | undefined) => IPluridPlanesRegistrar<C> | undefined;
|
|
4
4
|
declare const getRegisteredPlanes: <C>(planesRegistrar: IPluridPlanesRegistrar<C> | undefined) => Map<any, any>;
|
|
5
5
|
declare const getRegisteredPlane: <C>(route: string, planesRegistrar: IPluridPlanesRegistrar<C> | undefined) => import("@plurid/plurid-data").RegisteredPluridPlane<C> | undefined;
|
|
@@ -63,6 +63,6 @@ export declare const splitPath: (path: string) => string[];
|
|
|
63
63
|
* @param path
|
|
64
64
|
*/
|
|
65
65
|
export declare const extractQuery: (path: string) => Indexed<string>;
|
|
66
|
-
export declare const extractFragments: (location?: string
|
|
66
|
+
export declare const extractFragments: (location?: string) => PluridRouteFragments;
|
|
67
67
|
export declare const parseFragment: (fragment: string) => PluridRouteFragmentText | PluridRouteFragmentElement | undefined;
|
|
68
68
|
export declare const extractOccurence: (occurence: string | undefined) => number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const stringInsertInitial: (value: string, insert: string) => string;
|
|
2
2
|
export declare const stringRemoveTrailing: (value: string, trail: string) => string;
|
|
3
3
|
export declare const cleanupPath: (value: string) => string;
|
|
4
|
-
export declare const computePlaneAddress: (plane: string, route?: string
|
|
4
|
+
export declare const computePlaneAddress: (plane: string, route?: string, origin?: string) => string;
|
|
5
5
|
export declare const isAbsolutePlane: (value: string) => boolean;
|
|
6
6
|
export declare const checkPlaneAddressType: (value: string) => "pttp" | "https" | "http" | "relative";
|
|
7
7
|
export declare const removeTrailingSlash: (value: string) => string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Indexed, PluridRoute, RouteDivisions } from '@plurid/plurid-data';
|
|
2
|
-
export declare const mapPathsToRoutes: <C, V>(paths: Indexed<string>, view: V) => PluridRoute<C>[];
|
|
2
|
+
export declare const mapPathsToRoutes: <C, V>(paths: Indexed<string>, view: V) => PluridRoute<C, any>[];
|
|
3
3
|
export declare const pluridLinkPathDivider: (route: string) => RouteDivisions;
|
|
4
4
|
/**
|
|
5
5
|
* Given a partial `route`, e.g. `/route`, or `://cluster://route`,
|
|
@@ -8,7 +8,7 @@ export declare const pluridLinkPathDivider: (route: string) => RouteDivisions;
|
|
|
8
8
|
*
|
|
9
9
|
* @param path
|
|
10
10
|
*/
|
|
11
|
-
export declare const resolveRoute: (route: string, protocol?: string
|
|
11
|
+
export declare const resolveRoute: (route: string, protocol?: string, host?: string) => {
|
|
12
12
|
protocol: string;
|
|
13
13
|
host: import("@plurid/plurid-data").RouteHostDivision;
|
|
14
14
|
path: import("@plurid/plurid-data").RoutePathDivision;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { CompareType, Indexed, PluridRouteParameter } from '@plurid/plurid-data';
|
|
2
|
-
export declare const checkParameterLength: (parameter: string, length: number, compareType?: CompareType
|
|
2
|
+
export declare const checkParameterLength: (parameter: string, length: number, compareType?: CompareType) => boolean;
|
|
3
3
|
export declare const checkValidPath: <C>(validationParameters: Record<string, PluridRouteParameter> | undefined, parameters: Indexed<string>) => boolean;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { PluridConfiguration, TreePlane } from '@plurid/plurid-data';
|
|
2
|
-
declare const computeColumnLayout: (roots: TreePlane[], columns?: number, columnLength?: number
|
|
2
|
+
declare const computeColumnLayout: (roots: TreePlane[], columns?: number, columnLength?: number, gap?: number, configuration?: PluridConfiguration) => TreePlane[];
|
|
3
3
|
export default computeColumnLayout;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { PluridConfiguration, TreePlane } from '@plurid/plurid-data';
|
|
2
|
-
declare const computeRowLayout: (roots: TreePlane[], rows?: number, rowLength?: number
|
|
2
|
+
declare const computeRowLayout: (roots: TreePlane[], rows?: number, rowLength?: number, gap?: number, configuration?: PluridConfiguration) => TreePlane[];
|
|
3
3
|
export default computeRowLayout;
|
|
@@ -8,7 +8,7 @@ PluridView, PluridApplicationView, PluridConfiguration, RegisteredPluridPlane, T
|
|
|
8
8
|
*
|
|
9
9
|
* @param view
|
|
10
10
|
*/
|
|
11
|
-
export declare const resolveViewItem: <C>(planes: Map<string, RegisteredPluridPlane<C>>, view: string | PluridView, configuration: PluridConfiguration) => TreePlane | undefined;
|
|
11
|
+
export declare const resolveViewItem: <C>(planes: Map<string, RegisteredPluridPlane<C>>, view: string | PluridView, configuration: PluridConfiguration, origin?: string) => TreePlane | undefined;
|
|
12
12
|
/**
|
|
13
13
|
* Compute the space based on the layout.
|
|
14
14
|
* If there is no configuration.space.layout, it uses the default '2 COLUMNS' layout.
|
|
@@ -16,22 +16,29 @@ export declare const resolveViewItem: <C>(planes: Map<string, RegisteredPluridPl
|
|
|
16
16
|
* @param planes
|
|
17
17
|
* @param configuration
|
|
18
18
|
*/
|
|
19
|
-
export declare const computeSpaceTree: <C>(planes: Map<string, RegisteredPluridPlane<C>>, view: PluridApplicationView, configuration: PluridConfiguration) => TreePlane[];
|
|
19
|
+
export declare const computeSpaceTree: <C>(planes: Map<string, RegisteredPluridPlane<C>>, view: PluridApplicationView, configuration: PluridConfiguration, origin?: string) => TreePlane[];
|
|
20
20
|
export declare const isParametric: (viewRoute: string, planeRoute: string) => boolean;
|
|
21
21
|
export declare const matchForParameters: (viewRoute: string, planeRoute: string) => void;
|
|
22
|
-
export declare const assignPagesFromView: (planes: TreePlane[], view?: PluridApplicationView
|
|
23
|
-
export declare const updateTreePlane: (tree: TreePlane[],
|
|
22
|
+
export declare const assignPagesFromView: (planes: TreePlane[], view?: PluridApplicationView) => TreePlane[];
|
|
23
|
+
export declare const updateTreePlane: (tree: TreePlane[], updatedPlane: TreePlane) => TreePlane[];
|
|
24
24
|
export interface UpdatedTreeWithNewPlane {
|
|
25
25
|
pluridPlaneID: string;
|
|
26
26
|
updatedTree: TreePlane[];
|
|
27
27
|
updatedTreePlane?: TreePlane;
|
|
28
28
|
}
|
|
29
|
-
export declare const updateTreeWithNewPlane: <C>(planeRoute: string, parentPlaneID: string, linkCoordinates: LinkCoordinates, tree: TreePlane[], planesRegistry: Map<string, RegisteredPluridPlane<C>>, configuration: PluridConfiguration) => UpdatedTreeWithNewPlane;
|
|
30
|
-
export declare const
|
|
29
|
+
export declare const updateTreeWithNewPlane: <C>(planeRoute: string, parentPlaneID: string, linkCoordinates: LinkCoordinates, tree: TreePlane[], planesRegistry: Map<string, RegisteredPluridPlane<C>>, configuration: PluridConfiguration, hostname?: string) => UpdatedTreeWithNewPlane;
|
|
30
|
+
export declare const updatePlaneLocation: (tree: TreePlane[], parentPlaneID: string, planeID: string, linkCoordinates: LinkCoordinates) => TreePlane[];
|
|
31
|
+
export declare const updateTreeWithNewPage: (tree: TreePlane[], treePageParentPlaneID: string, pagePath: string, pageID: string, linkCoordinates: LinkCoordinates, parameters?: PathParameters) => UpdatedTreeWithNewPlane;
|
|
31
32
|
export declare const removePageFromTree: (tree: TreePlane[], pluridPlaneID: string) => TreePlane[];
|
|
32
33
|
export declare const toggleChildren: (children: TreePlane[]) => TreePlane[];
|
|
34
|
+
export declare const toggleAllChildren: (tree: TreePlane[], show: boolean) => TreePlane[];
|
|
33
35
|
export interface TogglePlaneFromTree {
|
|
34
36
|
updatedTree: TreePlane[];
|
|
35
37
|
updatedPlane: TreePlane | undefined;
|
|
36
38
|
}
|
|
37
|
-
export declare const togglePlaneFromTree: (tree: TreePlane[], pluridPlaneID: string) => TogglePlaneFromTree;
|
|
39
|
+
export declare const togglePlaneFromTree: (tree: TreePlane[], pluridPlaneID: string, forceShow?: boolean) => TogglePlaneFromTree;
|
|
40
|
+
export declare const getTreePlaneByID: (stateTree: TreePlane[], id: string | undefined) => TreePlane | undefined;
|
|
41
|
+
export declare const removeRootFromTree: (tree: TreePlane[], pluridPlaneID: string) => {
|
|
42
|
+
updatedTree: TreePlane[];
|
|
43
|
+
};
|
|
44
|
+
export declare const removePlaneFromTree: (tree: TreePlane[], pluridPlaneID: string) => TreePlane[];
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { TreePlane, RegisteredPluridPlane, PluridConfiguration, PluridApplicationView
|
|
1
|
+
import { TreePlane, RegisteredPluridPlane, PluridConfiguration, PluridApplicationView } from '@plurid/plurid-data';
|
|
2
2
|
export interface TreeData<C> {
|
|
3
3
|
planes: Map<string, RegisteredPluridPlane<C>>;
|
|
4
4
|
view: PluridApplicationView;
|
|
5
5
|
configuration: PluridConfiguration;
|
|
6
|
-
clusters?: PluridCluster<C>[];
|
|
7
6
|
previousTree?: TreePlane[];
|
|
8
7
|
}
|
|
9
8
|
export default class Tree<C> {
|
|
10
9
|
private data;
|
|
11
|
-
|
|
10
|
+
private origin;
|
|
11
|
+
constructor(data: TreeData<C>, origin?: string);
|
|
12
12
|
compute(): TreePlane[];
|
|
13
13
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { PluridApplicationView, PluridConfiguration, PluridPlanesRegistrar as IPluridPlanesRegistrar, PluridState, PluridMetastateState, RecursivePartial } from '@plurid/plurid-data';
|
|
2
|
-
declare const compute: <C>(view: PluridApplicationView, configuration: RecursivePartial<PluridConfiguration> | undefined, planesRegistrar: IPluridPlanesRegistrar<C> | undefined, currentState: PluridState | undefined, localState: PluridState | undefined, precomputedState: Partial<PluridState> | undefined, contextState: PluridMetastateState | undefined) => PluridState;
|
|
2
|
+
declare const compute: <C>(view: PluridApplicationView, configuration: RecursivePartial<PluridConfiguration> | undefined, planesRegistrar: IPluridPlanesRegistrar<C> | undefined, currentState: PluridState | undefined, localState: PluridState | undefined, precomputedState: Partial<PluridState> | undefined, contextState: PluridMetastateState | undefined, hostname?: string) => PluridState;
|
|
3
3
|
export default compute;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { PluridApplicationView, PluridConfiguration, PluridPlanesRegistrar as IPluridPlanesRegistrar, PluridState, PluridMetastateState, PluridStateSpace } from '@plurid/plurid-data';
|
|
2
|
-
declare const resolveSpace: <C>(view: PluridApplicationView, configuration: PluridConfiguration, planesRegistrar: IPluridPlanesRegistrar<C> | undefined, currentState: PluridState | undefined, localState: PluridState | undefined, precomputedState: Partial<PluridState> | undefined, contextState: PluridMetastateState | undefined) => PluridStateSpace;
|
|
2
|
+
declare const resolveSpace: <C>(view: PluridApplicationView, configuration: PluridConfiguration, planesRegistrar: IPluridPlanesRegistrar<C> | undefined, currentState: PluridState | undefined, localState: PluridState | undefined, precomputedState: Partial<PluridState> | undefined, contextState: PluridMetastateState | undefined, hostname?: string) => PluridStateSpace;
|
|
3
3
|
export { resolveSpace, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plurid/plurid-engine",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-14",
|
|
4
4
|
"description": "Plurid Engine and Utility Functions",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plurid",
|
|
@@ -51,29 +51,30 @@
|
|
|
51
51
|
"@plurid/plurid-themes": "*"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@plurid/plurid-data": "0.0.0-
|
|
55
|
-
"@plurid/plurid-functions": "0.0.0-
|
|
56
|
-
"@plurid/plurid-pubsub": "0.0.0-
|
|
54
|
+
"@plurid/plurid-data": "0.0.0-15",
|
|
55
|
+
"@plurid/plurid-functions": "0.0.0-28",
|
|
56
|
+
"@plurid/plurid-pubsub": "0.0.0-7",
|
|
57
57
|
"@plurid/plurid-themes": "0.0.0-2",
|
|
58
|
-
"@rollup/plugin-commonjs": "^
|
|
59
|
-
"@types/jest": "^
|
|
60
|
-
"@types/node": "^
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
62
|
-
"@typescript-eslint/parser": "^5.
|
|
58
|
+
"@rollup/plugin-commonjs": "^22.0.2",
|
|
59
|
+
"@types/jest": "^28.1.6",
|
|
60
|
+
"@types/node": "^18.7.4",
|
|
61
|
+
"@typescript-eslint/eslint-plugin": "^5.33.0",
|
|
62
|
+
"@typescript-eslint/parser": "^5.33.0",
|
|
63
63
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
64
64
|
"coveralls": "^3.1.1",
|
|
65
|
-
"eslint": "^8.
|
|
66
|
-
"jest": "^
|
|
67
|
-
"jest-config": "^
|
|
65
|
+
"eslint": "^8.22.0",
|
|
66
|
+
"jest": "^28.1.3",
|
|
67
|
+
"jest-config": "^28.1.3",
|
|
68
|
+
"jest-environment-jsdom": "^28.1.3",
|
|
68
69
|
"rimraf": "^3.0.2",
|
|
69
|
-
"rollup": "^2.
|
|
70
|
+
"rollup": "^2.78.0",
|
|
70
71
|
"rollup-plugin-sourcemaps": "^0.6.3",
|
|
71
72
|
"rollup-plugin-terser": "^7.0.2",
|
|
72
|
-
"rollup-plugin-typescript2": "^0.
|
|
73
|
-
"ts-jest": "^
|
|
74
|
-
"ts-node": "^10.
|
|
73
|
+
"rollup-plugin-typescript2": "^0.32.1",
|
|
74
|
+
"ts-jest": "^28.0.8",
|
|
75
|
+
"ts-node": "^10.9.1",
|
|
75
76
|
"ttypescript": "^1.5.13",
|
|
76
|
-
"typescript": "^4.
|
|
77
|
+
"typescript": "^4.7.4",
|
|
77
78
|
"typescript-transform-paths": "^3.3.1"
|
|
78
79
|
}
|
|
79
80
|
}
|