@xyo-network/react-schema 2.81.6 → 2.81.7

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
@@ -10,37 +10,37 @@
10
10
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@xylabs/hex": "^3.5.9",
14
- "@xylabs/lodash": "^3.5.9",
15
- "@xylabs/react-async-effect": "^3.4.0",
16
- "@xylabs/react-link": "^3.4.0",
17
- "@xylabs/react-select": "^3.4.0",
18
- "@xylabs/react-shared": "^3.4.0",
19
- "@xyo-network/diviner-schema-list-model": "^2.110.5",
20
- "@xyo-network/diviner-schema-stats-model": "^2.110.5",
21
- "@xyo-network/node-core-types": "^2.88.9",
22
- "@xyo-network/payload-builder": "^2.110.5",
23
- "@xyo-network/payload-model": "^2.110.5",
24
- "@xyo-network/react-diviner": "^2.81.6",
25
- "@xyo-network/react-event": "^2.81.6",
26
- "@xyo-network/react-property": "^2.81.6",
27
- "@xyo-network/react-shared": "^2.81.6",
28
- "@xyo-network/schema-cache": "^2.110.5",
29
- "@xyo-network/schema-payload-plugin": "^2.110.5",
30
- "react-router-dom": "^6.24.1"
13
+ "@xylabs/hex": "^3.6.4",
14
+ "@xylabs/lodash": "^3.6.4",
15
+ "@xylabs/react-async-effect": "^3.4.1",
16
+ "@xylabs/react-link": "^3.4.1",
17
+ "@xylabs/react-select": "^3.4.1",
18
+ "@xylabs/react-shared": "^3.4.1",
19
+ "@xyo-network/diviner-schema-list-model": "^2.110.7",
20
+ "@xyo-network/diviner-schema-stats-model": "^2.110.7",
21
+ "@xyo-network/node-core-types": "^2.89.1",
22
+ "@xyo-network/payload-builder": "^2.110.7",
23
+ "@xyo-network/payload-model": "^2.110.7",
24
+ "@xyo-network/react-diviner": "^2.81.7",
25
+ "@xyo-network/react-event": "^2.81.7",
26
+ "@xyo-network/react-property": "^2.81.7",
27
+ "@xyo-network/react-shared": "^2.81.7",
28
+ "@xyo-network/schema-cache": "^2.110.7",
29
+ "@xyo-network/schema-payload-plugin": "^2.110.7",
30
+ "react-router-dom": "^6.25.1"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@storybook/react": "^7.6.20",
34
- "@xylabs/react-flexbox": "^3.4.0",
35
- "@xylabs/ts-scripts-yarn3": "^3.12.1",
36
- "@xylabs/tsconfig-react": "^3.12.1",
37
- "@xyo-network/bridge-http": "^2.110.5",
38
- "@xyo-network/node-memory": "^2.110.5",
39
- "@xyo-network/node-model": "^2.110.5",
40
- "@xyo-network/react-node": "^2.81.6",
41
- "@xyo-network/react-payload-raw-info": "^2.81.6",
42
- "@xyo-network/react-storybook": "^2.81.6",
43
- "@xyo-network/react-wallet": "^2.81.6",
34
+ "@xylabs/react-flexbox": "^3.4.1",
35
+ "@xylabs/ts-scripts-yarn3": "^3.12.4",
36
+ "@xylabs/tsconfig-react": "^3.12.4",
37
+ "@xyo-network/bridge-http": "^2.110.7",
38
+ "@xyo-network/node-memory": "^2.110.7",
39
+ "@xyo-network/node-model": "^2.110.7",
40
+ "@xyo-network/react-node": "^2.81.7",
41
+ "@xyo-network/react-payload-raw-info": "^2.81.7",
42
+ "@xyo-network/react-storybook": "^2.81.7",
43
+ "@xyo-network/react-wallet": "^2.81.7",
44
44
  "typescript": "^5.5.3"
45
45
  },
46
46
  "peerDependencies": {
@@ -103,6 +103,6 @@
103
103
  },
104
104
  "sideEffects": false,
105
105
  "types": "dist/browser/index.d.ts",
106
- "version": "2.81.6",
106
+ "version": "2.81.7",
107
107
  "type": "module"
108
108
  }
@@ -1,7 +1,7 @@
1
1
  import { Meta, StoryFn } from '@storybook/react'
2
2
  import { useEvent } from '@xyo-network/react-event'
3
3
 
4
- import { SchemaProperty, SchemaPropertyProps } from './SchemaProperty'
4
+ import { SchemaProperty, SchemaPropertyProps } from './SchemaProperty.js'
5
5
 
6
6
  const StorybookEntry: Meta = {
7
7
  component: SchemaProperty,
@@ -12,9 +12,9 @@ import { useWallet, WalletProvider } from '@xyo-network/react-wallet'
12
12
  import { SchemaCache } from '@xyo-network/schema-cache'
13
13
  import { useState } from 'react'
14
14
 
15
- import { useSchemaDefinitions } from '../useSchemaDefinitions'
16
- import { useSchemaList } from '../useSchemaList'
17
- import { useSchemaStats } from '../useSchemaStats'
15
+ import { useSchemaDefinitions } from '../useSchemaDefinitions.js'
16
+ import { useSchemaList } from '../useSchemaList.js'
17
+ import { useSchemaStats } from '../useSchemaStats.js'
18
18
 
19
19
  const apiConfig = { apiDomain: 'https://api.archivist.xyo.network' }
20
20
  const nodeUrl = 'http://localhost:8080/node'
@@ -5,7 +5,7 @@ import { JsonViewerEx } from '@xyo-network/react-payload-raw-info'
5
5
  import { SchemaCache } from '@xyo-network/schema-cache'
6
6
  import { useEffect, useState } from 'react'
7
7
 
8
- import { useGetSchemaPayload } from './useGetSchema'
8
+ import { useGetSchemaPayload } from './useGetSchema.js'
9
9
 
10
10
  SchemaCache.instance.proxy = 'https://beta.api.archivist.xyo.network/domain'
11
11