@xyo-network/react-manifest 2.76.3 → 2.76.4

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
@@ -12,11 +12,11 @@
12
12
  "dependencies": {
13
13
  "@scure/bip39": "^1.3.0",
14
14
  "@xylabs/react-promise": "^3.1.7",
15
- "@xyo-network/account": "^2.101.16",
16
- "@xyo-network/manifest": "^2.101.16",
17
- "@xyo-network/module-factory-locator": "^2.101.16",
18
- "@xyo-network/react-node-provider": "~2.76.3",
19
- "@xyo-network/wallet-model": "^2.101.16"
15
+ "@xyo-network/account": "^2.102.5",
16
+ "@xyo-network/manifest": "^2.102.5",
17
+ "@xyo-network/module-factory-locator": "^2.102.5",
18
+ "@xyo-network/react-node-provider": "~2.76.4",
19
+ "@xyo-network/wallet-model": "^2.102.5"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "@mui/icons-material": "^5",
@@ -29,11 +29,11 @@
29
29
  "@storybook/react": "^7.6.19",
30
30
  "@xylabs/ts-scripts-yarn3": "^3.10.4",
31
31
  "@xylabs/tsconfig-react": "^3.10.4",
32
- "@xyo-network/diviner-abstract": "^2.101.16",
33
- "@xyo-network/diviner-model": "^2.101.16",
34
- "@xyo-network/diviner-payload-memory": "^2.101.16",
35
- "@xyo-network/payload-model": "^2.101.16",
36
- "@xyo-network/witness-timestamp": "^2.101.16",
32
+ "@xyo-network/diviner-abstract": "^2.102.5",
33
+ "@xyo-network/diviner-model": "^2.102.5",
34
+ "@xyo-network/diviner-payload-memory": "^2.102.5",
35
+ "@xyo-network/payload-model": "^2.102.5",
36
+ "@xyo-network/witness-timestamp": "^2.102.5",
37
37
  "typescript": "^5.4.5"
38
38
  },
39
39
  "description": "Common React library for all XYO projects that use React",
@@ -87,6 +87,6 @@
87
87
  },
88
88
  "sideEffects": false,
89
89
  "types": "dist/browser/index.d.ts",
90
- "version": "2.76.3",
90
+ "version": "2.76.4",
91
91
  "type": "module"
92
92
  }
@@ -1,14 +1,15 @@
1
1
  import { Meta, StoryFn } from '@storybook/react'
2
+
2
3
  import { ArchivistManifestNode, SentinelManifestNode } from '../stories'
3
4
  import { ManifestNodeProvider } from './ManifestNodeProvider'
4
5
 
5
6
  // eslint-disable-next-line import/no-default-export
6
7
  export default {
8
+ component: ManifestNodeProvider,
7
9
  title: 'modules/manifest-node/provider',
8
- component: ManifestNodeProvider
9
10
  } as Meta
10
11
 
11
- const Template: StoryFn<typeof ManifestNodeProvider> = (args) => {
12
+ const Template: StoryFn<typeof ManifestNodeProvider> = (args) => {
12
13
  return <ManifestNodeProvider {...args} />
13
14
  }
14
15
 
@@ -16,18 +17,17 @@ const Default = Template.bind({})
16
17
 
17
18
  const WithArchivist = Template.bind({})
18
19
  WithArchivist.args = {
19
- manifestNodes: [ArchivistManifestNode]
20
+ manifestNodes: [ArchivistManifestNode],
20
21
  }
21
22
 
22
23
  const WithSentinel = Template.bind({})
23
24
  WithSentinel.args = {
24
- manifestNodes: [SentinelManifestNode]
25
+ manifestNodes: [SentinelManifestNode],
25
26
  }
26
27
 
27
28
  const WithArchivistAndSentinel = Template.bind({})
28
29
  WithArchivistAndSentinel.args = {
29
- manifestNodes: [ArchivistManifestNode, SentinelManifestNode]
30
+ manifestNodes: [ArchivistManifestNode, SentinelManifestNode],
30
31
  }
31
32
 
32
33
  export { Default, WithArchivist, WithArchivistAndSentinel, WithSentinel }
33
-