@xyo-network/react-module 3.0.18 → 3.0.20

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/react-module",
3
- "version": "3.0.18",
3
+ "version": "3.0.20",
4
4
  "description": "Common React library for all XYO projects that use React",
5
5
  "keywords": [
6
6
  "xyo",
@@ -44,29 +44,29 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@xylabs/eth-address": "^4.0.10",
47
- "@xylabs/react-button": "^4.2.12",
48
- "@xylabs/react-crypto": "^4.2.12",
49
- "@xylabs/react-flexbox": "^4.2.12",
50
- "@xylabs/react-promise": "^4.2.12",
47
+ "@xylabs/react-button": "^4.2.13",
48
+ "@xylabs/react-crypto": "^4.2.13",
49
+ "@xylabs/react-flexbox": "^4.2.13",
50
+ "@xylabs/react-promise": "^4.2.13",
51
51
  "@xyo-network/diviner-model": "^3.1.9",
52
52
  "@xyo-network/module-model": "^3.1.9",
53
- "@xyo-network/react-shared": "^3.0.18"
53
+ "@xyo-network/react-shared": "^3.0.20"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@mui/icons-material": "^5.16.7",
57
57
  "@mui/material": "^5.16.7",
58
58
  "@mui/styles": "^5.16.7",
59
- "@storybook/react": "^8.2.9",
60
- "@xylabs/react-async-effect": "^4.2.12",
59
+ "@storybook/react": "^8.3.0",
60
+ "@xylabs/react-async-effect": "^4.2.13",
61
61
  "@xylabs/ts-scripts-yarn3": "^4.0.7",
62
62
  "@xylabs/tsconfig-react": "^4.0.7",
63
63
  "@xyo-network/archivist": "^3.1.9",
64
- "@xyo-network/crypto-asset-plugin": "^3.0.17",
64
+ "@xyo-network/crypto-asset-plugin": "^3.0.19",
65
65
  "@xyo-network/diviner-address-history": "^3.1.9",
66
66
  "@xyo-network/node-memory": "^3.1.9",
67
67
  "react": "^18.3.1",
68
68
  "react-dom": "^18.3.1",
69
- "storybook": "^8.2.9",
69
+ "storybook": "^8.3.0",
70
70
  "typescript": "^5.6.2"
71
71
  },
72
72
  "peerDependencies": {
@@ -25,7 +25,7 @@ const Template: StoryFn<typeof ModuleCard> = () => {
25
25
 
26
26
  async (mounted) => {
27
27
  if (!mod) {
28
- const newModule = await MemoryArchivist.create()
28
+ const newModule = await MemoryArchivist.create({})
29
29
  if (mounted()) {
30
30
  setModule(newModule)
31
31
  }
@@ -21,7 +21,7 @@ const NodeTemplate: StoryFn<typeof ModuleDetailsBox> = (args) => {
21
21
  useAsyncEffect(
22
22
 
23
23
  async (mounted) => {
24
- const node = await MemoryNode.create()
24
+ const node = await MemoryNode.create({})
25
25
  if (mounted()) {
26
26
  setNode(node)
27
27
  }
@@ -43,7 +43,7 @@ const ArchivistTemplate: StoryFn<typeof ModuleDetailsBox> = (args) => {
43
43
  useAsyncEffect(
44
44
 
45
45
  async (mounted) => {
46
- const archivist = await MemoryArchivist.create()
46
+ const archivist = await MemoryArchivist.create({})
47
47
  if (mounted()) {
48
48
  setArchivist(archivist)
49
49
  }
@@ -65,7 +65,7 @@ const DivinerTemplate: StoryFn<typeof ModuleDetailsBox> = (args) => {
65
65
  useAsyncEffect(
66
66
 
67
67
  async (mounted) => {
68
- const diviner = (await CryptoMarketAssetDiviner.create()) as DivinerInstance
68
+ const diviner = (await CryptoMarketAssetDiviner.create({})) as DivinerInstance
69
69
  if (mounted()) {
70
70
  setDiviner(diviner)
71
71
  }