@xyo-network/react-typedoc 2.56.16 → 2.57.0

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,7 +10,7 @@
10
10
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@mui/lab": "^5.0.0-alpha.135",
13
+ "@mui/lab": "^5.0.0-alpha.136",
14
14
  "@xylabs/assert": "^2.9.3",
15
15
  "@xylabs/react-button": "^2.17.6",
16
16
  "@xylabs/react-flexbox": "^2.17.6",
@@ -19,10 +19,9 @@
19
19
  "typescript": "^5.1.6"
20
20
  },
21
21
  "devDependencies": {
22
- "@storybook/react": "^7.0.26",
22
+ "@storybook/react": "^7.0.27",
23
23
  "@xylabs/ts-scripts-yarn3": "^2.18.10",
24
24
  "@xylabs/tsconfig-react": "^2.18.10",
25
- "@xyo-network/core": "^2.64.10",
26
25
  "typescript": "^5.1.6"
27
26
  },
28
27
  "peerDependencies": {
@@ -76,5 +75,5 @@
76
75
  },
77
76
  "sideEffects": false,
78
77
  "types": "dist/types/index.d.ts",
79
- "version": "2.56.16"
78
+ "version": "2.57.0"
80
79
  }
@@ -1,9 +1,9 @@
1
1
  import { Meta, StoryFn } from '@storybook/react'
2
2
  // eslint-disable-next-line import/no-internal-modules
3
- import clientDocs from '@xyo-network/core/dist/docs.json'
3
+ //import clientDocs from '@xyo-network/core/dist/docs.json'
4
4
  import { BrowserRouter } from 'react-router-dom'
5
- import type { ProjectReflection } from 'typedoc'
6
5
 
6
+ //import type { ProjectReflection } from 'typedoc'
7
7
  import { ProjectTwoPanelReflectionViewer } from './ProjectTwoPanelReflectionViewer'
8
8
 
9
9
  const StorybookEntry = {
@@ -26,10 +26,10 @@ const Template: StoryFn<typeof ProjectTwoPanelReflectionViewer> = ({ reflection,
26
26
  }
27
27
 
28
28
  const Client = Template.bind({})
29
- const clientDocsWithProject = { ...clientDocs }
29
+ /*const clientDocsWithProject = { ...clientDocs }
30
30
  Client.args = {
31
31
  reflection: clientDocsWithProject as unknown as ProjectReflection,
32
- }
32
+ }*/
33
33
 
34
34
  export { Client }
35
35