@razorpay/blade 6.3.0 → 6.5.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 +27 -0
- package/build/components/index.d.ts +2043 -389
- package/build/components/index.native.d.ts +1874 -517
- package/build/components/index.native.js +351 -17538
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +4445 -18799
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +2 -2
- package/build/css/bankingThemeDarkMobile.css +2 -2
- package/build/css/bankingThemeLightDesktop.css +2 -2
- package/build/css/bankingThemeLightMobile.css +2 -2
- package/build/css/paymentThemeDarkDesktop.css +2 -2
- package/build/css/paymentThemeDarkMobile.css +2 -2
- package/build/css/paymentThemeLightDesktop.css +2 -2
- package/build/css/paymentThemeLightMobile.css +2 -2
- package/build/tokens/index.d.ts +135 -14
- package/build/tokens/index.native.d.ts +135 -14
- package/build/tokens/index.native.js +1 -1
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +7 -2
- package/build/tokens/index.web.js.map +1 -1
- package/build/utils/index.d.ts +74 -9
- package/build/utils/index.native.d.ts +74 -9
- package/build/utils/index.native.js +7 -5
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +29 -18
- package/build/utils/index.web.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @razorpay/blade
|
|
2
2
|
|
|
3
|
+
## 6.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a4be1b06: feat(Layout Primitives): Add `Box` Component and Styled Props to Blade Components
|
|
8
|
+
|
|
9
|
+
Documentation: https://blade.razorpay.com/?path=/docs/components-layout-primitives-box-layout-primitives-tutorial--page
|
|
10
|
+
|
|
11
|
+
**Breakpoint Token Changes**
|
|
12
|
+
|
|
13
|
+
`max` breakpoint is removed as it wasn't used and had same value as `xl`.
|
|
14
|
+
Through our audit, we didn't find any usage of this token. If you happen to use this somewhere, you can rename `breakpoints.max` to `breakpoints.xl`
|
|
15
|
+
|
|
16
|
+
- 2c7034b7: feat(Input): add onSubmit prop on BaseInput, TextInput, TextArea, & PasswordInput for react-native
|
|
17
|
+
|
|
18
|
+
## 6.4.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- 4145d553: feat: add `testID` prop to all components
|
|
23
|
+
- a7826b0b: feat(Input): add `autoCapitalize` support to `BaseInput`, `TextInput` & `PasswordInput`
|
|
24
|
+
- bdd74d7a: feat(Text): add `textAlign` prop
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- da4489b3: fix: lodash tree shaking to reduce effective bundle-size.
|
|
29
|
+
|
|
3
30
|
## 6.3.0
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|