@xyo-network/react-error 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-error",
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",
@@ -44,28 +44,28 @@
44
44
  ],
45
45
  "dependencies": {
46
46
  "@rollbar/react": "~1.0.0",
47
- "@xylabs/react-button": "~7.1.15",
48
- "@xylabs/react-error": "~7.1.15",
49
- "@xylabs/react-flexbox": "~7.1.15",
50
- "@xyo-network/payload-model": "~5.3.5"
47
+ "@xylabs/react-button": "~7.1.17",
48
+ "@xylabs/react-error": "~7.1.17",
49
+ "@xylabs/react-flexbox": "~7.1.17",
50
+ "@xyo-network/payload-model": "~5.3.17"
51
51
  },
52
52
  "devDependencies": {
53
- "@mui/icons-material": "~7.3.8",
54
- "@mui/material": "~7.3.8",
55
- "@storybook/react-vite": "~10.2.9",
53
+ "@mui/icons-material": "~7.3.9",
54
+ "@mui/material": "~7.3.9",
55
+ "@storybook/react-vite": "~10.3.3",
56
56
  "@types/react": "^19.2.14",
57
- "@xylabs/ts-scripts-yarn3": "~7.3.2",
58
- "@xylabs/tsconfig": "~7.3.2",
59
- "@xylabs/tsconfig-dom": "~7.3.2",
60
- "@xylabs/tsconfig-react": "~7.3.2",
57
+ "@xylabs/ts-scripts-yarn3": "~7.5.6",
58
+ "@xylabs/tsconfig": "~7.5.6",
59
+ "@xylabs/tsconfig-dom": "~7.5.6",
60
+ "@xylabs/tsconfig-react": "~7.5.6",
61
61
  "prop-types": "~15.8.1",
62
62
  "react": "^19.2.4",
63
63
  "react-dom": "^19.2.4",
64
- "react-router-dom": "^7.13.0",
64
+ "react-router-dom": "^7.13.2",
65
65
  "rollbar": "~2.26.5",
66
- "storybook": "~10.2.9",
66
+ "storybook": "~10.3.3",
67
67
  "typescript": "^5.9.3",
68
- "vite": "~7.3.1",
68
+ "vite": "~8.0.3",
69
69
  "zod": "^4.3.6"
70
70
  },
71
71
  "peerDependencies": {
@@ -71,6 +71,7 @@ export function ThrownErrorBoundaryBase<T = void>({ rollbar, ...props }: Readonl
71
71
  let rollbarFromHook: Rollbar | undefined
72
72
  // safely call the hook
73
73
  try {
74
+ // eslint-disable-next-line react-x/rules-of-hooks, react-hooks/rules-of-hooks
74
75
  rollbarFromHook = useRollbar()
75
76
  } catch {}
76
77
  return <ThrownErrorBoundaryInner<T> rollbar={rollbar ?? rollbarErrorReporter ?? rollbarFromHook} {...props} />
@@ -14,6 +14,7 @@ export const ErrorReporterProvider: React.FC<PropsWithChildren<ErrorReporterProv
14
14
  let rollbarFromHook: Rollbar | undefined
15
15
  // safely call the hook
16
16
  try {
17
+ // eslint-disable-next-line react-x/rules-of-hooks, react-hooks/rules-of-hooks
17
18
  rollbarFromHook = useRollbar()
18
19
  } catch {}
19
20