@razorpay/blade 6.0.3 → 6.0.4

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,11 @@
1
1
  # @razorpay/blade
2
2
 
3
+ ## 6.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 26ffc564: fix: add types field to package exports for ESM TypeScript projects
8
+
3
9
  ## 6.0.3
4
10
 
5
11
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 02 Feb 2023 11:02:29 GMT
3
+ * Generated on Mon, 06 Feb 2023 07:01:09 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 02 Feb 2023 11:02:29 GMT
3
+ * Generated on Mon, 06 Feb 2023 07:01:09 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 02 Feb 2023 11:02:29 GMT
3
+ * Generated on Mon, 06 Feb 2023 07:01:09 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 02 Feb 2023 11:02:29 GMT
3
+ * Generated on Mon, 06 Feb 2023 07:01:09 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 02 Feb 2023 11:02:29 GMT
3
+ * Generated on Mon, 06 Feb 2023 07:01:09 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 02 Feb 2023 11:02:29 GMT
3
+ * Generated on Mon, 06 Feb 2023 07:01:09 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 02 Feb 2023 11:02:29 GMT
3
+ * Generated on Mon, 06 Feb 2023 07:01:09 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 02 Feb 2023 11:02:29 GMT
3
+ * Generated on Mon, 06 Feb 2023 07:01:09 GMT
4
4
  */
5
5
 
6
6
  :root {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@razorpay/blade",
3
3
  "description": "The Design System that powers Razorpay",
4
- "version": "6.0.3",
4
+ "version": "6.0.4",
5
5
  "license": "MIT",
6
6
  "engines": {
7
7
  "node": ">=14.18.0"
@@ -28,16 +28,34 @@
28
28
  ],
29
29
  "exports": {
30
30
  "./components": {
31
- "react-native": "./build/components/index.native.js",
32
- "default": "./build/components/index.web.js"
31
+ "react-native": {
32
+ "import": "./build/components/index.native.js",
33
+ "types": "./build/components/index.native.d.ts"
34
+ },
35
+ "default": {
36
+ "import": "./build/components/index.web.js",
37
+ "types": "./build/components/index.d.ts"
38
+ }
33
39
  },
34
40
  "./tokens": {
35
- "react-native": "./build/tokens/index.native.js",
36
- "default": "./build/tokens/index.web.js"
41
+ "react-native": {
42
+ "import": "./build/tokens/index.native.js",
43
+ "types": "./build/tokens/index.native.d.ts"
44
+ },
45
+ "default": {
46
+ "import": "./build/tokens/index.web.js",
47
+ "types": "./build/tokens/index.d.ts"
48
+ }
37
49
  },
38
50
  "./utils": {
39
- "react-native": "./build/utils/index.native.js",
40
- "default": "./build/utils/index.web.js"
51
+ "react-native": {
52
+ "import": "./build/utils/index.native.js",
53
+ "types": "./build/utils/index.native.d.ts"
54
+ },
55
+ "default": {
56
+ "import": "./build/utils/index.web.js",
57
+ "types": "./build/utils/index.d.ts"
58
+ }
41
59
  }
42
60
  },
43
61
  "scripts": {