@xyo-network/react-schema-plugin 2.41.12 → 2.41.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/dist/docs.json +3 -3
- package/package.json +11 -12
- package/src/Plugin.ts +1 -1
package/dist/docs.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"fileName": "index.ts",
|
|
18
18
|
"line": 6,
|
|
19
19
|
"character": 0,
|
|
20
|
-
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/blob/
|
|
20
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/blob/37ba54e48/packages/plugins/packages/schema/src/index.ts#L6"
|
|
21
21
|
}
|
|
22
22
|
],
|
|
23
23
|
"target": 1
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"fileName": "Plugin.ts",
|
|
36
36
|
"line": 7,
|
|
37
37
|
"character": 13,
|
|
38
|
-
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/blob/
|
|
38
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/blob/37ba54e48/packages/plugins/packages/schema/src/Plugin.ts#L7"
|
|
39
39
|
}
|
|
40
40
|
],
|
|
41
41
|
"type": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"fileName": "index.ts",
|
|
65
65
|
"line": 1,
|
|
66
66
|
"character": 0,
|
|
67
|
-
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/blob/
|
|
67
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/blob/37ba54e48/packages/plugins/packages/schema/src/index.ts#L1"
|
|
68
68
|
}
|
|
69
69
|
]
|
|
70
70
|
}
|
package/package.json
CHANGED
|
@@ -10,25 +10,24 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xylabs/react-flexbox": "^2.15.
|
|
14
|
-
"@xyo-network/
|
|
15
|
-
"@xyo-network/
|
|
16
|
-
"
|
|
13
|
+
"@xylabs/react-flexbox": "^2.15.6",
|
|
14
|
+
"@xyo-network/diviner": "^2.43.0",
|
|
15
|
+
"@xyo-network/module": "^2.43.0",
|
|
16
|
+
"@xyo-network/payload": "^2.43.0",
|
|
17
|
+
"@xyo-network/payload-plugin": "^2.43.0",
|
|
18
|
+
"@xyo-network/react-payload-details": "^2.41.14",
|
|
19
|
+
"@xyo-network/react-payload-plugin": "^2.41.14",
|
|
20
|
+
"@xyo-network/schema-payload-plugin": "^2.43.0",
|
|
21
|
+
"@xyo-network/utils": "^2.43.0"
|
|
17
22
|
},
|
|
18
23
|
"devDependencies": {
|
|
19
|
-
"@xylabs/ts-scripts-yarn3": "2.
|
|
24
|
+
"@xylabs/ts-scripts-yarn3": "2.11.16"
|
|
20
25
|
},
|
|
21
26
|
"peerDependencies": {
|
|
22
27
|
"@mui/icons-material": "^5.10.3",
|
|
23
28
|
"@mui/material": "^5.10.3",
|
|
24
29
|
"@mui/styles": "^5.10.3",
|
|
25
30
|
"@xylabs/sdk-js": "^2.6.9",
|
|
26
|
-
"@xyo-network/diviner": "*",
|
|
27
|
-
"@xyo-network/module": "*",
|
|
28
|
-
"@xyo-network/payload": "*",
|
|
29
|
-
"@xyo-network/payload-plugin": "*",
|
|
30
|
-
"@xyo-network/schema-payload-plugin": "*",
|
|
31
|
-
"@xyo-network/utils": "*",
|
|
32
31
|
"axios": "^1.1.3",
|
|
33
32
|
"lodash": "^4.17.21",
|
|
34
33
|
"pako": "^2.0.4",
|
|
@@ -79,5 +78,5 @@
|
|
|
79
78
|
},
|
|
80
79
|
"sideEffects": false,
|
|
81
80
|
"types": "dist/esm/index.d.ts",
|
|
82
|
-
"version": "2.41.
|
|
81
|
+
"version": "2.41.14"
|
|
83
82
|
}
|
package/src/Plugin.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { XyoPayload } from '@xyo-network/payload'
|
|
1
|
+
import { XyoPayload } from '@xyo-network/payload-model'
|
|
2
2
|
import { createPayloadRenderPlugin, XyoPayloadRenderPlugin } from '@xyo-network/react-payload-plugin'
|
|
3
3
|
import { XyoSchemaSchema } from '@xyo-network/schema-payload-plugin'
|
|
4
4
|
|