@xyo-network/react-payload 2.25.25 → 2.25.26

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
@@ -15,18 +15,18 @@
15
15
  "@mui/icons-material": "^5.8.0",
16
16
  "@mui/material": "^5.8.1",
17
17
  "@xylabs/sdk-react": "^2.12.10",
18
- "@xyo-network/api": "^2.20.33",
19
- "@xyo-network/core": "^2.20.33",
20
- "@xyo-network/network": "^2.20.33",
21
- "@xyo-network/react-archive": "^2.25.25",
22
- "@xyo-network/react-archivist-api": "^2.25.25",
23
- "@xyo-network/react-auth-service": "^2.25.25",
24
- "@xyo-network/react-network": "^2.25.25",
25
- "@xyo-network/react-property": "^2.25.25",
26
- "@xyo-network/react-schema": "^2.25.25",
27
- "@xyo-network/react-shared": "^2.25.25",
28
- "@xyo-network/react-theme": "^2.25.25",
29
- "@xyo-network/utils": "^2.20.33",
18
+ "@xyo-network/api": "^2.20.38",
19
+ "@xyo-network/core": "^2.20.38",
20
+ "@xyo-network/network": "^2.20.38",
21
+ "@xyo-network/react-archive": "^2.25.26",
22
+ "@xyo-network/react-archivist-api": "^2.25.26",
23
+ "@xyo-network/react-auth-service": "^2.25.26",
24
+ "@xyo-network/react-network": "^2.25.26",
25
+ "@xyo-network/react-property": "^2.25.26",
26
+ "@xyo-network/react-schema": "^2.25.26",
27
+ "@xyo-network/react-shared": "^2.25.26",
28
+ "@xyo-network/react-theme": "^2.25.26",
29
+ "@xyo-network/utils": "^2.20.38",
30
30
  "lodash": "^4.17.21",
31
31
  "luxon": "^2.4.0",
32
32
  "react": "^18.1.0",
@@ -41,12 +41,12 @@
41
41
  "devDependencies": {
42
42
  "@babel/core": "^7.18.2",
43
43
  "@babel/preset-env": "^7.18.2",
44
- "@storybook/addons": "^6.5.5",
45
- "@storybook/api": "^6.5.5",
46
- "@storybook/components": "^6.5.5",
47
- "@storybook/core-events": "^6.5.5",
48
- "@storybook/react": "^6.5.5",
49
- "@storybook/theming": "^6.5.5",
44
+ "@storybook/addons": "^6.5.6",
45
+ "@storybook/api": "^6.5.6",
46
+ "@storybook/components": "^6.5.6",
47
+ "@storybook/core-events": "^6.5.6",
48
+ "@storybook/react": "^6.5.6",
49
+ "@storybook/theming": "^6.5.6",
50
50
  "@types/lodash": "^4.14.182",
51
51
  "@types/luxon": "^2.3.2",
52
52
  "@xylabs/sdk-react": "^2.12.10",
@@ -114,6 +114,6 @@
114
114
  },
115
115
  "sideEffects": false,
116
116
  "types": "dist/esm/index.d.ts",
117
- "version": "2.25.25",
117
+ "version": "2.25.26",
118
118
  "packageManager": "yarn@3.1.1"
119
119
  }
@@ -1,7 +1,7 @@
1
1
  import { ComponentMeta, ComponentStory } from '@storybook/react'
2
2
  import { BrowserRouter, Route, Routes } from 'react-router-dom'
3
3
 
4
- import { appThemeDecorator, samplePayload, samplePayloadFromBuilder } from '../../.storybook'
4
+ import { appThemeDecorator, samplePayload, samplePayloadFromBuilder } from '../../../../../.storybook'
5
5
  import { PayloadDetails } from './Details'
6
6
 
7
7
  const StorybookEntry = {
@@ -12,7 +12,7 @@ const StorybookEntry = {
12
12
  page: null,
13
13
  },
14
14
  },
15
- title: 'Payload/Details',
15
+ title: 'payload/Details',
16
16
  } as ComponentMeta<typeof PayloadDetails>
17
17
 
18
18
  const Template: ComponentStory<typeof PayloadDetails> = (args) => (
@@ -1,7 +1,7 @@
1
1
  import { ComponentStory, Meta } from '@storybook/react'
2
2
  import { BrowserRouter } from 'react-router-dom'
3
3
 
4
- import { appThemeDecorator, samplePayload } from '../../../.storybook'
4
+ import { appThemeDecorator, samplePayload } from '../../../../../../.storybook'
5
5
  import { PayloadDetails } from '../Details'
6
6
  import { PayloadValidationDetails } from './ValidationDetails'
7
7
 
@@ -19,7 +19,7 @@ const StorybookEntry: Meta = {
19
19
  page: null,
20
20
  },
21
21
  },
22
- title: 'Payload/ValidationDetails',
22
+ title: 'payload/ValidationDetails',
23
23
  }
24
24
 
25
25
  const Template: ComponentStory<typeof PayloadValidationDetails> = (args) => (
@@ -1,7 +1,7 @@
1
1
  import { ComponentMeta, ComponentStory } from '@storybook/react'
2
2
  import { BrowserRouter } from 'react-router-dom'
3
3
 
4
- import { appThemeDecorator, samplePayload } from '../../.storybook'
4
+ import { appThemeDecorator, samplePayload } from '../../../../../.storybook'
5
5
  import { PayloadTable } from './Table'
6
6
 
7
7
  const StorybookEntry = {
@@ -12,7 +12,7 @@ const StorybookEntry = {
12
12
  page: null,
13
13
  },
14
14
  },
15
- title: 'Payload/Table',
15
+ title: 'payload/Table',
16
16
  } as ComponentMeta<typeof PayloadTable>
17
17
 
18
18
  const Template: ComponentStory<typeof PayloadTable> = (args) => (
@@ -51,7 +51,7 @@ const StorybookEntry: Meta = {
51
51
  page: null,
52
52
  },
53
53
  },
54
- title: 'hooks/useGetSchema',
54
+ title: 'payload/useGetSchema',
55
55
  }
56
56
 
57
57
  const Template: ComponentStory<typeof UseGetSchemaComponent> = ({ schema }) => {
@@ -1,11 +1,12 @@
1
+ /* eslint-disable import/no-internal-modules */
1
2
  import { Typography } from '@mui/material'
2
3
  import { ComponentStory, Meta } from '@storybook/react'
3
4
  import { FlexCol } from '@xylabs/sdk-react'
4
5
  import { Huri } from '@xyo-network/core'
5
- import { ArchivistApiProvider } from '@xyo-network/react-archivist-api'
6
6
  import { XyoSchemaCache } from '@xyo-network/utils'
7
7
  import { lazy, Suspense } from 'react'
8
8
 
9
+ import { ArchivistApiProvider } from '../../../archivist-api/src'
9
10
  import { useHuriHash } from './useHuriHash'
10
11
 
11
12
  const JsonView = lazy(() => import(/* webpackChunkName: "jsonView" */ 'react-json-view'))
@@ -49,7 +50,7 @@ const StorybookEntry: Meta = {
49
50
  page: null,
50
51
  },
51
52
  },
52
- title: 'hooks/useHuriHash',
53
+ title: 'payload/useHuriHash',
53
54
  }
54
55
 
55
56
  const Template: ComponentStory<typeof UseHuriHashComponent> = ({ huriOrHash }) => {