@xyo-network/react-typedoc 7.5.4 → 7.5.6

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/react-typedoc",
3
- "version": "7.5.4",
3
+ "version": "7.5.6",
4
4
  "description": "Common React library for all XYO projects that use React",
5
5
  "keywords": [
6
6
  "xyo",
@@ -43,31 +43,31 @@
43
43
  "src"
44
44
  ],
45
45
  "dependencies": {
46
- "@mui/x-tree-view": "~8.27.1",
47
- "@xylabs/react-button": "~7.1.15",
48
- "@xylabs/react-flexbox": "~7.1.15",
49
- "@xylabs/sdk-js": "~5.0.79",
50
- "@xyo-network/react-payload-raw-info": "7.5.4",
51
- "react-router-dom": "^7.13.0",
52
- "typedoc": "~0.28.17"
46
+ "@mui/x-tree-view": "~8.27.2",
47
+ "@xylabs/react-button": "~7.1.17",
48
+ "@xylabs/react-flexbox": "~7.1.17",
49
+ "@xylabs/sdk-js": "~5.0.90",
50
+ "@xyo-network/react-payload-raw-info": "7.5.6",
51
+ "react-router-dom": "^7.13.2",
52
+ "typedoc": "~0.28.18"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@emotion/react": "~11.14.0",
56
56
  "@emotion/styled": "~11.14.1",
57
- "@mui/icons-material": "~7.3.8",
58
- "@mui/material": "~7.3.8",
59
- "@mui/system": "~7.3.8",
60
- "@storybook/react-vite": "~10.2.9",
57
+ "@mui/icons-material": "~7.3.9",
58
+ "@mui/material": "~7.3.9",
59
+ "@mui/system": "~7.3.9",
60
+ "@storybook/react-vite": "~10.3.3",
61
61
  "@types/react": "^19.2.14",
62
- "@xylabs/ts-scripts-yarn3": "~7.3.2",
63
- "@xylabs/tsconfig": "~7.3.2",
64
- "@xylabs/tsconfig-dom": "~7.3.2",
65
- "@xylabs/tsconfig-react": "~7.3.2",
62
+ "@xylabs/ts-scripts-yarn3": "~7.5.6",
63
+ "@xylabs/tsconfig": "~7.5.6",
64
+ "@xylabs/tsconfig-dom": "~7.5.6",
65
+ "@xylabs/tsconfig-react": "~7.5.6",
66
66
  "react": "^19.2.4",
67
67
  "react-dom": "^19.2.4",
68
- "storybook": "~10.2.9",
68
+ "storybook": "~10.3.3",
69
69
  "typescript": "^5.9.3",
70
- "vite": "~7.3.1",
70
+ "vite": "~8.0.3",
71
71
  "zod": "^4.3.6"
72
72
  },
73
73
  "peerDependencies": {
@@ -1,6 +1,5 @@
1
1
  import { Search } from '@mui/icons-material'
2
2
  import { TextField, useTheme } from '@mui/material'
3
- import type { FlexBoxProps } from '@xylabs/react-flexbox'
4
3
  import {
5
4
  FlexCol, FlexGrowCol, FlexRow,
6
5
  } from '@xylabs/react-flexbox'
@@ -43,10 +42,9 @@ export const TwoPanelReflectionViewer: React.FC<ContainerReflectionViewerProps>
43
42
  })
44
43
  }, [itemRenderer, lookup, reflection, hiddenFlags])
45
44
 
46
- // eslint-disable-next-line react-x/no-nested-component-definitions
47
- const NavigationCol: React.FC<FlexBoxProps> = (props) => {
48
- return (
49
- <FlexCol {...props}>
45
+ return (
46
+ <FlexRow alignItems="stretch" justifyContent="start" sx={{ overflowY: 'scroll' }} {...props}>
47
+ <FlexCol minWidth={320} alignItems="stretch" justifyContent="flex-start" overflow="hidden">
50
48
  <TextField
51
49
  fullWidth
52
50
  onChange={onSearchTermChange}
@@ -71,13 +69,7 @@ export const TwoPanelReflectionViewer: React.FC<ContainerReflectionViewerProps>
71
69
  />
72
70
  </FlexGrowCol>
73
71
  </FlexCol>
74
- )
75
- }
76
-
77
- // eslint-disable-next-line react-x/no-nested-component-definitions
78
- const DetailsCol: React.FC<FlexBoxProps> = (props) => {
79
- return (
80
- <FlexGrowCol {...props}>
72
+ <FlexGrowCol marginLeft={1} alignItems="stretch" justifyContent="flex-start" overflow="hidden">
81
73
  <FlexGrowCol alignItems="stretch">
82
74
  <FlexCol
83
75
  alignItems="stretch"
@@ -96,13 +88,6 @@ export const TwoPanelReflectionViewer: React.FC<ContainerReflectionViewerProps>
96
88
  </FlexCol>
97
89
  </FlexGrowCol>
98
90
  </FlexGrowCol>
99
- )
100
- }
101
-
102
- return (
103
- <FlexRow alignItems="stretch" justifyContent="start" sx={{ overflowY: 'scroll' }} {...props}>
104
- <NavigationCol minWidth={320} alignItems="stretch" justifyContent="flex-start" overflow="hidden" />
105
- <DetailsCol marginLeft={1} alignItems="stretch" justifyContent="flex-start" overflow="hidden" />
106
91
  </FlexRow>
107
92
  )
108
93
  }