@razorpay/blade 8.9.1 → 8.10.1
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 +110 -3
- package/build/components/index.native.d.ts +110 -3
- package/build/components/index.native.js +341 -317
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +2486 -1771
- 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 +8 -0
- package/build/tokens/index.native.d.ts +8 -0
- package/build/tokens/index.native.js +1 -1
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +13 -1
- package/build/tokens/index.web.js.map +1 -1
- package/build/utils/index.d.ts +7 -0
- package/build/utils/index.native.d.ts +7 -0
- package/build/utils/index.native.js +1 -1
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +7 -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.10.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=18.12.1"
|
|
@@ -103,7 +103,8 @@
|
|
|
103
103
|
"watch:test:react-native": "yarn test:react-native --watch --onlyChanged",
|
|
104
104
|
"chromatic": "npx chromatic",
|
|
105
105
|
"publish-npm": "node ./scripts/publishToNpm.js",
|
|
106
|
-
"generate-github-npmrc": "node ./scripts/generateGitHubRegistryNpmrc.js"
|
|
106
|
+
"generate-github-npmrc": "node ./scripts/generateGitHubRegistryNpmrc.js",
|
|
107
|
+
"postinstall": "patch-package"
|
|
107
108
|
},
|
|
108
109
|
"dependencies": {
|
|
109
110
|
"@babel/runtime": "7.16.5",
|
|
@@ -112,7 +113,8 @@
|
|
|
112
113
|
"body-scroll-lock": "4.0.0-beta.0",
|
|
113
114
|
"use-presence": "1.1.0",
|
|
114
115
|
"@floating-ui/react": "0.24.2",
|
|
115
|
-
"@floating-ui/react-native": "0.10.0"
|
|
116
|
+
"@floating-ui/react-native": "0.10.0",
|
|
117
|
+
"patch-package": "7.0.0"
|
|
116
118
|
},
|
|
117
119
|
"devDependencies": {
|
|
118
120
|
"@babel/core": "7.16.5",
|
|
@@ -207,7 +209,8 @@
|
|
|
207
209
|
"style-dictionary": "3.7.1",
|
|
208
210
|
"styled-components": "5.3.5",
|
|
209
211
|
"tsconfig-paths-webpack-plugin": "3.5.2",
|
|
210
|
-
"jsdom-testing-mocks": "1.9.0"
|
|
212
|
+
"jsdom-testing-mocks": "1.9.0",
|
|
213
|
+
"postinstall-postinstall": "2.1.0"
|
|
211
214
|
},
|
|
212
215
|
"peerDependencies": {
|
|
213
216
|
"@gorhom/bottom-sheet": "^4",
|