remoraid 2.43.2 → 2.44.2

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.
@@ -51,9 +51,9 @@ interface EnvironmentShellProps {
51
51
  alertContainer: Partial<PageContainerProps>
52
52
  };
53
53
  }
54
- import { PropsWithChildren as PropsWithChildren26, ReactNode as ReactNode42 } from "react";
54
+ import { PropsWithChildren as PropsWithChildren27, ReactNode as ReactNode43 } from "react";
55
55
  interface ServerEnvironmentShellProps extends EnvironmentShellProps {}
56
- declare function EnvironmentShell2({ children, environment, message }: PropsWithChildren26<ServerEnvironmentShellProps>): ReactNode42;
56
+ declare function EnvironmentShell2({ children, environment, message }: PropsWithChildren27<ServerEnvironmentShellProps>): ReactNode43;
57
57
  import { createTheme } from "@mantine/core";
58
58
  declare const createMantineTheme: typeof createTheme;
59
59
  export { createMantineTheme, ServerEnvironmentShellProps, EnvironmentShell2 as EnvironmentShell };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remoraid",
3
- "version": "2.43.2",
3
+ "version": "2.44.2",
4
4
  "author": "Konrad Goldammer",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,13 +17,15 @@
17
17
  "bun-dts": "^0.1.22",
18
18
  "next": "16.0.3",
19
19
  "react": "^19.1.0",
20
- "react-cookie": "^8.0.1"
20
+ "react-cookie": "^8.0.1",
21
+ "react-router-dom": "^7.12.0"
21
22
  },
22
23
  "peerDependencies": {
23
24
  "react": "^19.1.0",
24
25
  "react-dom": "^19.1.0",
25
26
  "react-cookie": "^8.0.1",
26
27
  "next": "16.0.3",
28
+ "react-router-dom": "^7.12.0",
27
29
  "@mantine/core": "^7.17.4",
28
30
  "@mantine/hooks": "^7.17.4",
29
31
  "@mantine/dates": "7.17.4",
@@ -33,6 +35,14 @@
33
35
  "@jsonforms/react": "^3.5.1",
34
36
  "@jsonforms/vanilla-renderers": "^3.5.1"
35
37
  },
38
+ "peerDependenciesMeta": {
39
+ "next": {
40
+ "optional": true
41
+ },
42
+ "react-router-dom": {
43
+ "optional": true
44
+ }
45
+ },
36
46
  "exports": {
37
47
  "./core": {
38
48
  "types": "./dist/core/index.d.ts",
@@ -56,6 +66,16 @@
56
66
  "types": "./dist/modals/index.d.ts",
57
67
  "import": "./dist/modals/index.js",
58
68
  "require": "./dist/modals/index.cjs"
69
+ },
70
+ "./adapters/next": {
71
+ "types": "./dist/adapters/next/index.d.ts",
72
+ "import": "./dist/adapters/next/index.js",
73
+ "require": "./dist/adapters/next/index.cjs"
74
+ },
75
+ "./adapters/react-router": {
76
+ "types": "./dist/adapters/react-router/index.d.ts",
77
+ "import": "./dist/adapters/react-router/index.js",
78
+ "require": "./dist/adapters/react-router/index.cjs"
59
79
  }
60
80
  },
61
81
  "bugs": "https://github.com/konradag/remoraid/issues",