@stytch/react 8.0.0 → 10.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @stytch/react
2
2
 
3
+ ## 10.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [5dd9d24]
8
+ - @stytch/vanilla-js@3.0.0
9
+
10
+ ## 9.0.0
11
+
12
+ ### Patch Changes
13
+
14
+ - 47eb388: Add Device Fingerprinting to the React Native SDK
15
+ - Updated dependencies [47eb388]
16
+ - Updated dependencies [d008ef5]
17
+ - Updated dependencies [47eb388]
18
+ - Updated dependencies [7c1940e]
19
+ - @stytch/vanilla-js@2.2.0
20
+
3
21
  ## 8.0.0
4
22
 
5
23
  ### Patch Changes
@@ -1,7 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  import React from "react";
3
3
  import { ReactNode } from "react";
4
- import { Member, MemberSession, StytchB2BHeadlessClient, StytchB2BUIClient } from "@stytch/vanilla-js/b2b";
4
+ import { Member, MemberSession, StytchB2BUIClient } from "@stytch/vanilla-js/b2b";
5
+ import { StytchB2BHeadlessClient } from "@stytch/vanilla-js/b2b/headless";
5
6
  import { Callbacks, StyleConfig, StytchB2BUIConfig } from "@stytch/vanilla-js";
6
7
  /**
7
8
  * The Stytch Client object passed in to <StytchProvider /> in your application root.
@@ -1,7 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  import React from "react";
3
3
  import { ReactNode } from "react";
4
- import { Member, MemberSession, StytchB2BHeadlessClient, StytchB2BUIClient } from "@stytch/vanilla-js/b2b";
4
+ import { Member, MemberSession, StytchB2BUIClient } from "@stytch/vanilla-js/b2b";
5
+ import { StytchB2BHeadlessClient } from "@stytch/vanilla-js/b2b/headless";
5
6
  import { Callbacks, StyleConfig, StytchB2BUIConfig } from "@stytch/vanilla-js";
6
7
  /**
7
8
  * The Stytch Client object passed in to <StytchProvider /> in your application root.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stytch/react",
3
- "version": "8.0.0",
3
+ "version": "10.0.0",
4
4
  "description": "Stytch's official React Library",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
@@ -33,7 +33,7 @@
33
33
  ],
34
34
  "devDependencies": {
35
35
  "@babel/runtime": "7.18.6",
36
- "@stytch/vanilla-js": "2.1.0",
36
+ "@stytch/vanilla-js": "3.0.0",
37
37
  "@testing-library/react": "14.0.0",
38
38
  "eslint-config-custom": "0.0.1",
39
39
  "react-test-renderer": "18.0.0",
@@ -41,7 +41,7 @@
41
41
  "typescript": "4.7.4"
42
42
  },
43
43
  "peerDependencies": {
44
- "@stytch/vanilla-js": "^2.1.0",
44
+ "@stytch/vanilla-js": "^3.0.0",
45
45
  "react": ">= 17.0.2",
46
46
  "react-dom": ">= 17.0.2"
47
47
  }