@razorpay/blade 8.1.0 → 8.2.3
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 +61 -41
- package/build/components/index.native.d.ts +61 -41
- package/build/components/index.native.js +33 -35
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +226 -233
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +5 -26
- package/build/css/bankingThemeDarkMobile.css +5 -26
- package/build/css/bankingThemeLightDesktop.css +5 -26
- package/build/css/bankingThemeLightMobile.css +5 -26
- package/build/css/paymentThemeDarkDesktop.css +5 -26
- package/build/css/paymentThemeDarkMobile.css +5 -26
- package/build/css/paymentThemeLightDesktop.css +5 -26
- package/build/css/paymentThemeLightMobile.css +5 -26
- package/build/tokens/index.d.ts +180 -150
- package/build/tokens/index.native.d.ts +180 -150
- package/build/tokens/index.native.js +12 -10
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +382 -409
- package/build/tokens/index.web.js.map +1 -1
- package/build/utils/index.native.js +0 -6
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +16 -98
- package/build/utils/index.web.js.map +1 -1
- package/package.json +5 -5
- package/CHANGELOG.md +0 -1648
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@razorpay/blade",
|
|
3
3
|
"description": "The Design System that powers Razorpay",
|
|
4
|
-
"version": "8.
|
|
4
|
+
"version": "8.2.3",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
7
|
-
"node": ">=
|
|
7
|
+
"node": ">=18.12.1"
|
|
8
8
|
},
|
|
9
9
|
"bin": {
|
|
10
10
|
"migrate-typography": "./codemods/migrate-typography/cli.js"
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"scripts": {
|
|
67
67
|
"typecheck": "run-p types:typecheck:*",
|
|
68
68
|
"test": "run-p test:*",
|
|
69
|
-
"
|
|
69
|
+
"prepare": "yarn build",
|
|
70
70
|
"build": "run-s build:*",
|
|
71
71
|
"clearCache": "jest --clearCache",
|
|
72
72
|
"build:clean": "rm -rf build",
|
|
@@ -89,8 +89,8 @@
|
|
|
89
89
|
"react-native:storybook:ios": "yarn react-native:get-stories && FRAMEWORK=REACT_NATIVE react-native run-ios",
|
|
90
90
|
"react-native:storybook:start": "yarn react-native:get-stories && FRAMEWORK=REACT_NATIVE react-native start --reset-cache",
|
|
91
91
|
"react": "yarn run react:storybook",
|
|
92
|
-
"react:storybook": "FRAMEWORK=REACT start-storybook -c ./.storybook/react -p 9009",
|
|
93
|
-
"react:storybook:build": "FRAMEWORK=REACT build-storybook -c ./.storybook/react -o storybook-site",
|
|
92
|
+
"react:storybook": "NODE_OPTIONS=--openssl-legacy-provider FRAMEWORK=REACT start-storybook -c ./.storybook/react -p 9009",
|
|
93
|
+
"react:storybook:build": "NODE_OPTIONS=--openssl-legacy-provider FRAMEWORK=REACT build-storybook -c ./.storybook/react -o storybook-site",
|
|
94
94
|
"test:react": "FRAMEWORK=REACT jest -c ./jest.web.config.js",
|
|
95
95
|
"test:react-native": "FRAMEWORK=REACT_NATIVE jest -c ./jest.native.config.js",
|
|
96
96
|
"start:ios": "run-p react-native:storybook:start react-native:storybook:ios",
|