@razorpay/blade 8.8.4 → 8.9.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/build/components/index.d.ts +839 -55
- package/build/components/index.native.d.ts +115 -14
- package/build/components/index.native.js +341 -322
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +1629 -3677
- 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/build/tokens/index.d.ts +6 -0
- package/build/tokens/index.native.d.ts +6 -0
- package/build/tokens/index.native.js +1 -1
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +9 -0
- package/build/tokens/index.web.js.map +1 -1
- package/build/utils/index.d.ts +2 -0
- package/build/utils/index.native.d.ts +2 -0
- package/build/utils/index.native.js +1 -1
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +2 -0
- package/build/utils/index.web.js.map +1 -1
- package/package.json +7 -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": "8.
|
|
4
|
+
"version": "8.9.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=18.12.1"
|
|
@@ -108,10 +108,11 @@
|
|
|
108
108
|
"dependencies": {
|
|
109
109
|
"@babel/runtime": "7.16.5",
|
|
110
110
|
"@types/body-scroll-lock": "3.1.0",
|
|
111
|
-
"@floating-ui/react": "0.24.2",
|
|
112
111
|
"@use-gesture/react": "10.2.24",
|
|
113
112
|
"body-scroll-lock": "4.0.0-beta.0",
|
|
114
|
-
"use-presence": "1.1.0"
|
|
113
|
+
"use-presence": "1.1.0",
|
|
114
|
+
"@floating-ui/react": "0.24.2",
|
|
115
|
+
"@floating-ui/react-native": "0.10.0"
|
|
115
116
|
},
|
|
116
117
|
"devDependencies": {
|
|
117
118
|
"@babel/core": "7.16.5",
|
|
@@ -151,7 +152,7 @@
|
|
|
151
152
|
"@testing-library/react": "12.1.5",
|
|
152
153
|
"@testing-library/react-hooks": "5.1.2",
|
|
153
154
|
"@testing-library/react-native": "9.1.0",
|
|
154
|
-
"@testing-library/user-event": "14.4.
|
|
155
|
+
"@testing-library/user-event": "14.4.3",
|
|
155
156
|
"@types/body-scroll-lock": "3.1.0",
|
|
156
157
|
"@types/dedent": "0.7.0",
|
|
157
158
|
"@types/jest": "26.0.23",
|
|
@@ -211,6 +212,8 @@
|
|
|
211
212
|
"peerDependencies": {
|
|
212
213
|
"@gorhom/bottom-sheet": "^4",
|
|
213
214
|
"@gorhom/portal": "1.0.14",
|
|
215
|
+
"@floating-ui/react": "0.24.2",
|
|
216
|
+
"@floating-ui/react-native": "0.10.0",
|
|
214
217
|
"react": ">=17",
|
|
215
218
|
"react-dom": ">=17",
|
|
216
219
|
"react-native": "^0.66.5",
|