@stytch/react 1.0.0 → 1.0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @stytch/react
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 79ca7ba: Add locale argument to B2B email magic link methods
8
+ - Updated dependencies [79ca7ba]
9
+ - @stytch/vanilla-js@0.11.3
10
+
11
+ ## 1.0.1
12
+
13
+ ### Patch Changes
14
+
15
+ - c924765: Include the b2b directory in package.json for the B2B SDK entrypoint
16
+ - Updated dependencies [c924765]
17
+ - @stytch/vanilla-js@0.11.2
18
+
3
19
  ## 1.0.0
4
20
 
5
21
  ### Minor Changes
@@ -0,0 +1,6 @@
1
+ {
2
+ "internal": true,
3
+ "main": "../dist/b2b/index.js",
4
+ "module": "../dist/b2b/index.esm.js",
5
+ "types": "../dist/b2b/index.d.ts"
6
+ }
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@stytch/react",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Stytch's official React Library",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "files": [
9
+ "b2b",
9
10
  "dist"
10
11
  ],
11
12
  "scripts": {
@@ -31,14 +32,15 @@
31
32
  ],
32
33
  "devDependencies": {
33
34
  "@babel/runtime": "7.18.6",
34
- "@stytch/vanilla-js": "0.11.0",
35
- "@testing-library/react": "12.1.3",
35
+ "@stytch/vanilla-js": "0.11.3",
36
+ "@testing-library/react": "14.0.0",
36
37
  "eslint-config-custom": "0.0.1",
38
+ "react-test-renderer": "18.0.0",
37
39
  "rollup": "2.56.3",
38
40
  "typescript": "4.7.4"
39
41
  },
40
42
  "peerDependencies": {
41
- "@stytch/vanilla-js": "^0.11.0",
43
+ "@stytch/vanilla-js": "^0.11.3",
42
44
  "react": ">= 17.0.2",
43
45
  "react-dom": ">= 17.0.2"
44
46
  }