@plurid/plurid-react-server 0.0.0-5 → 0.0.0-6
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.
|
@@ -2,12 +2,10 @@ import React from 'react';
|
|
|
2
2
|
declare const wrapping: (WrappedComponent: any, WrappeeComponent: any, properties: any) => {
|
|
3
3
|
new (props: any): {
|
|
4
4
|
render(): JSX.Element;
|
|
5
|
-
context:
|
|
5
|
+
context: unknown;
|
|
6
6
|
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<{}>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
7
7
|
forceUpdate(callback?: (() => void) | undefined): void;
|
|
8
|
-
readonly props: Readonly<{}
|
|
9
|
-
children?: React.ReactNode;
|
|
10
|
-
}>;
|
|
8
|
+
readonly props: Readonly<{}>;
|
|
11
9
|
state: Readonly<{}>;
|
|
12
10
|
refs: {
|
|
13
11
|
[key: string]: React.ReactInstance;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plurid/plurid-react-server",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-6",
|
|
4
4
|
"description": "React implementation of Plurid to view and explore the web in three dimensions with server-side rendering",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plurid",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"clean": "rm -rf ./distribution",
|
|
40
40
|
"test": "jest ./source --config ./configurations/jest.config.js --rootDir ./",
|
|
41
41
|
"lint": "eslint -c ./configurations/.eslintrc.js ./source --ext .ts,.tsx",
|
|
42
|
-
"start": "
|
|
43
|
-
"build.development": "
|
|
44
|
-
"build.production": "
|
|
45
|
-
"build": "
|
|
42
|
+
"start": "pnpm clean && rollup -c ./scripts/rollup.development.js -w --environment ENV_MODE:local",
|
|
43
|
+
"build.development": "pnpm clean && rollup -c ./scripts/rollup.config.js --environment ENV_MODE:development",
|
|
44
|
+
"build.production": "pnpm clean && rollup -c ./scripts/rollup.config.js --environment ENV_MODE:production",
|
|
45
|
+
"build": "pnpm clean && pnpm lint && pnpm test && pnpm build.production",
|
|
46
46
|
"esbuild": "esbuild source/index.ts --bundle --platform=node --outfile=distribution/index.js --external:react",
|
|
47
|
-
"prepublishOnly": "
|
|
47
|
+
"prepublishOnly": "pnpm build"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@plurid/elementql": "*",
|
|
@@ -68,65 +68,66 @@
|
|
|
68
68
|
"styled-components": ">=5"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"body-parser": "^1.
|
|
71
|
+
"body-parser": "^1.20.0",
|
|
72
72
|
"compression": "^1.7.4",
|
|
73
73
|
"detect-port": "^1.3.0",
|
|
74
74
|
"express": "^4.17.3",
|
|
75
75
|
"open": "^8.4.0"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@apollo/client": "^3.5.
|
|
79
|
-
"@babel/core": "^7.17.
|
|
78
|
+
"@apollo/client": "^3.5.10",
|
|
79
|
+
"@babel/core": "^7.17.9",
|
|
80
80
|
"@plurid/elementql": "^0.0.0-1",
|
|
81
81
|
"@plurid/elementql-client-react": "^0.0.0-1",
|
|
82
|
-
"@plurid/plurid-data": "0.0.0-
|
|
83
|
-
"@plurid/plurid-engine": "0.0.0-
|
|
84
|
-
"@plurid/plurid-functions": "0.0.0-
|
|
85
|
-
"@plurid/plurid-functions-react": "0.0.0-
|
|
82
|
+
"@plurid/plurid-data": "0.0.0-12",
|
|
83
|
+
"@plurid/plurid-engine": "0.0.0-10",
|
|
84
|
+
"@plurid/plurid-functions": "0.0.0-22",
|
|
85
|
+
"@plurid/plurid-functions-react": "0.0.0-5",
|
|
86
86
|
"@plurid/plurid-icons-react": "0.0.0-3",
|
|
87
|
-
"@plurid/plurid-pubsub": "0.0.0-
|
|
88
|
-
"@plurid/plurid-react": "0.0.0-
|
|
87
|
+
"@plurid/plurid-pubsub": "0.0.0-6",
|
|
88
|
+
"@plurid/plurid-react": "0.0.0-18",
|
|
89
89
|
"@plurid/plurid-themes": "0.0.0-2",
|
|
90
90
|
"@plurid/plurid-ui-components-react": "0.0.0-11",
|
|
91
91
|
"@plurid/plurid-ui-state-react": "0.0.0-2",
|
|
92
|
-
"@
|
|
92
|
+
"@redux-devtools/extension": "^3.2.2",
|
|
93
|
+
"@rollup/plugin-node-resolve": "^13.2.1",
|
|
93
94
|
"@types/body-parser": "^1.19.2",
|
|
94
95
|
"@types/compression": "^1.7.2",
|
|
95
96
|
"@types/detect-port": "^1.3.2",
|
|
96
97
|
"@types/express": "^4.17.13",
|
|
97
98
|
"@types/hammerjs": "^2.0.41",
|
|
98
99
|
"@types/jest": "^27.4.1",
|
|
99
|
-
"@types/node": "^17.0.
|
|
100
|
-
"@types/react": "^
|
|
101
|
-
"@types/react-dom": "^
|
|
102
|
-
"@types/react-redux": "^7.1.
|
|
100
|
+
"@types/node": "^17.0.24",
|
|
101
|
+
"@types/react": "^18.0.5",
|
|
102
|
+
"@types/react-dom": "^18.0.1",
|
|
103
|
+
"@types/react-redux": "^7.1.24",
|
|
103
104
|
"@types/react-stripe-elements": "^6.0.6",
|
|
104
|
-
"@types/styled-components": "^5.1.
|
|
105
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
106
|
-
"@typescript-eslint/parser": "^5.
|
|
105
|
+
"@types/styled-components": "^5.1.25",
|
|
106
|
+
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
|
107
|
+
"@typescript-eslint/parser": "^5.19.0",
|
|
107
108
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
108
109
|
"cross-fetch": "^3.1.5",
|
|
109
|
-
"eslint": "^8.
|
|
110
|
+
"eslint": "^8.13.0",
|
|
110
111
|
"graphql": "^16.3.0",
|
|
111
112
|
"hammerjs": "^2.0.8",
|
|
112
113
|
"jest": "^27.5.1",
|
|
113
114
|
"jest-config": "^27.5.1",
|
|
114
|
-
"react": "^
|
|
115
|
-
"react-dom": "^
|
|
116
|
-
"react-helmet-async": "^1.
|
|
117
|
-
"react-redux": "^7.2.
|
|
115
|
+
"react": "^18.0.0",
|
|
116
|
+
"react-dom": "^18.0.0",
|
|
117
|
+
"react-helmet-async": "^1.3.0",
|
|
118
|
+
"react-redux": "^7.2.8",
|
|
118
119
|
"redux": "^4.1.2",
|
|
119
|
-
"redux-devtools-extension": "^2.13.9",
|
|
120
120
|
"redux-thunk": "^2.4.1",
|
|
121
|
-
"rollup": "^2.
|
|
121
|
+
"rollup": "^2.70.2",
|
|
122
122
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
123
123
|
"rollup-plugin-terser": "^7.0.2",
|
|
124
124
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
125
|
-
"styled-components": "^5.3.
|
|
126
|
-
"ts-jest": "^27.1.
|
|
127
|
-
"ts-node": "^10.
|
|
125
|
+
"styled-components": "^5.3.5",
|
|
126
|
+
"ts-jest": "^27.1.4",
|
|
127
|
+
"ts-node": "^10.7.0",
|
|
128
|
+
"tslib": "^2.3.1",
|
|
128
129
|
"ttypescript": "^1.5.13",
|
|
129
|
-
"typescript": "^4.6.
|
|
130
|
+
"typescript": "^4.6.3",
|
|
130
131
|
"typescript-transform-paths": "^3.3.1"
|
|
131
132
|
}
|
|
132
133
|
}
|