@trycourier/courier-react 8.0.6-beta → 8.0.8-beta

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.
@@ -0,0 +1,4 @@
1
+ import { ReactNode } from 'react';
2
+ export default class LegacyRenderer {
3
+ static render(node: ReactNode, container: HTMLElement): void;
4
+ }
@@ -0,0 +1,4 @@
1
+ import { ReactNode } from 'react';
2
+ export default class ModernRenderer {
3
+ static render(node: ReactNode, container: HTMLElement): void;
4
+ }
@@ -0,0 +1,5 @@
1
+ import { ReactNode } from 'react';
2
+ export default class Renderer {
3
+ private static reactVersion;
4
+ static render(node: ReactNode, container: HTMLElement): Promise<void>;
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trycourier/courier-react",
3
- "version": "8.0.6-beta",
3
+ "version": "8.0.8-beta",
4
4
  "description": "The React components for the Courier web UI",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -31,15 +31,20 @@
31
31
  "@trycourier/courier-ui-inbox": "1.0.6-beta"
32
32
  },
33
33
  "peerDependencies": {
34
- "react": ">=17.0.0",
35
- "react-dom": ">=17.0.0"
34
+ "react": ">=17.0.2",
35
+ "react-dom": ">=17.0.2"
36
+ },
37
+ "peerDependenciesMeta": {
38
+ "object-assign": {
39
+ "optional": true
40
+ }
36
41
  },
37
42
  "devDependencies": {
38
43
  "@trycourier/courier-ui-inbox": "file:../@trycourier/courier-ui-inbox",
39
44
  "@types/react": "19.1.0",
40
45
  "@types/react-dom": "19.1.0",
41
46
  "@vitejs/plugin-react": "4.4.1",
42
- "react": ">=17.0.0",
43
- "react-dom": ">=17.0.0"
47
+ "react": ">=17.0.2",
48
+ "react-dom": ">=17.0.2"
44
49
  }
45
50
  }