@xyo-network/react-payload-details 2.81.6 → 2.81.8
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,26 +10,26 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xylabs/forget": "^3.
|
|
14
|
-
"@xylabs/react-button": "^3.4.
|
|
15
|
-
"@xylabs/react-flexbox": "^3.4.
|
|
16
|
-
"@xylabs/react-promise": "^3.4.
|
|
17
|
-
"@xylabs/react-quick-tip-button": "^3.4.
|
|
18
|
-
"@xyo-network/hash": "^2.110.
|
|
19
|
-
"@xyo-network/payload-model": "^2.110.
|
|
20
|
-
"@xyo-network/payload-validator": "^2.110.
|
|
21
|
-
"@xyo-network/react-payload-raw-info": "^2.81.
|
|
22
|
-
"@xyo-network/react-property": "^2.81.
|
|
23
|
-
"@xyo-network/react-schema": "^2.81.
|
|
24
|
-
"@xyo-network/react-shared": "^2.81.
|
|
13
|
+
"@xylabs/forget": "^3.6.4",
|
|
14
|
+
"@xylabs/react-button": "^3.4.1",
|
|
15
|
+
"@xylabs/react-flexbox": "^3.4.1",
|
|
16
|
+
"@xylabs/react-promise": "^3.4.1",
|
|
17
|
+
"@xylabs/react-quick-tip-button": "^3.4.1",
|
|
18
|
+
"@xyo-network/hash": "^2.110.9",
|
|
19
|
+
"@xyo-network/payload-model": "^2.110.9",
|
|
20
|
+
"@xyo-network/payload-validator": "^2.110.9",
|
|
21
|
+
"@xyo-network/react-payload-raw-info": "^2.81.8",
|
|
22
|
+
"@xyo-network/react-property": "^2.81.8",
|
|
23
|
+
"@xyo-network/react-schema": "^2.81.8",
|
|
24
|
+
"@xyo-network/react-shared": "^2.81.8"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@storybook/react": "^7.6.20",
|
|
28
|
-
"@xylabs/ts-scripts-yarn3": "^3.12.
|
|
29
|
-
"@xylabs/tsconfig-react": "^3.12.
|
|
30
|
-
"@xyo-network/react-storybook": "^2.81.
|
|
31
|
-
"react-router-dom": "^6.
|
|
32
|
-
"typescript": "^5.5.
|
|
28
|
+
"@xylabs/ts-scripts-yarn3": "^3.12.4",
|
|
29
|
+
"@xylabs/tsconfig-react": "^3.12.4",
|
|
30
|
+
"@xyo-network/react-storybook": "^2.81.8",
|
|
31
|
+
"react-router-dom": "^6.25.1",
|
|
32
|
+
"typescript": "^5.5.4"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@emotion/react": "^11",
|
|
@@ -91,6 +91,6 @@
|
|
|
91
91
|
},
|
|
92
92
|
"sideEffects": false,
|
|
93
93
|
"types": "dist/browser/index.d.ts",
|
|
94
|
-
"version": "2.81.
|
|
94
|
+
"version": "2.81.8",
|
|
95
95
|
"type": "module"
|
|
96
96
|
}
|
|
@@ -2,7 +2,7 @@ import { Meta, StoryFn } from '@storybook/react'
|
|
|
2
2
|
import { sampleIdPayload, samplePayloadFromBuilder } from '@xyo-network/react-storybook'
|
|
3
3
|
import { BrowserRouter, Route, Routes } from 'react-router-dom'
|
|
4
4
|
|
|
5
|
-
import { PayloadDetails } from './Details'
|
|
5
|
+
import { PayloadDetails } from './Details.js'
|
|
6
6
|
|
|
7
7
|
const StorybookEntry = {
|
|
8
8
|
argTypes: {},
|
|
@@ -3,9 +3,9 @@ import { Payload } from '@xyo-network/payload-model'
|
|
|
3
3
|
import { sampleIdPayload } from '@xyo-network/react-storybook'
|
|
4
4
|
import { BrowserRouter } from 'react-router-dom'
|
|
5
5
|
|
|
6
|
-
import { PayloadDetails } from '../Details'
|
|
7
|
-
import { PayloadValidationDetails } from './ValidationDetails'
|
|
8
|
-
import { PayloadValidationDetailsProps } from './ValidationDetailsProps'
|
|
6
|
+
import { PayloadDetails } from '../Details.js'
|
|
7
|
+
import { PayloadValidationDetails } from './ValidationDetails.js'
|
|
8
|
+
import { PayloadValidationDetailsProps } from './ValidationDetailsProps.js'
|
|
9
9
|
|
|
10
10
|
const StorybookEntry: Meta = {
|
|
11
11
|
argTypes: {},
|