@razorpay/blade 3.6.1 → 3.7.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 +13 -0
- package/build/components/index.d.ts +67 -1
- package/build/components/index.native.d.ts +67 -1
- package/build/components/index.native.js +6 -4
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +217 -132
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +1 -1
- package/build/css/bankingThemeDarkMobile.css +1 -1
- package/build/css/bankingThemeLightDesktop.css +1 -1
- package/build/css/bankingThemeLightMobile.css +1 -1
- package/build/css/paymentThemeDarkDesktop.css +1 -1
- package/build/css/paymentThemeDarkMobile.css +1 -1
- package/build/css/paymentThemeLightDesktop.css +1 -1
- package/build/css/paymentThemeLightMobile.css +1 -1
- package/package.json +5 -4
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": "3.
|
|
4
|
+
"version": "3.7.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=14.18.0"
|
|
@@ -41,7 +41,8 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
|
-
"typecheck": "run-
|
|
44
|
+
"typecheck": "run-p types:typecheck:*",
|
|
45
|
+
"test": "run-p test:*",
|
|
45
46
|
"prepublish": "yarn build",
|
|
46
47
|
"build": "run-s build:*",
|
|
47
48
|
"clearCache": "jest --clearCache",
|
|
@@ -152,7 +153,7 @@
|
|
|
152
153
|
"outdent": "0.8.0",
|
|
153
154
|
"react": "17.0.2",
|
|
154
155
|
"react-dom": "17.0.2",
|
|
155
|
-
"react-native": "0.66.
|
|
156
|
+
"react-native": "0.66.5",
|
|
156
157
|
"react-native-reanimated": "2.6.0",
|
|
157
158
|
"react-native-svg": "12.3.0",
|
|
158
159
|
"react-scripts": "4.0.3",
|
|
@@ -167,7 +168,7 @@
|
|
|
167
168
|
"peerDependencies": {
|
|
168
169
|
"react": "^17.0.2",
|
|
169
170
|
"react-dom": "^17.0.2",
|
|
170
|
-
"react-native": "^0.66.
|
|
171
|
+
"react-native": "^0.66.5",
|
|
171
172
|
"react-native-reanimated": "^2.6.0",
|
|
172
173
|
"react-native-svg": "^12.3.0",
|
|
173
174
|
"styled-components": "^5"
|