@razorpay/blade 6.2.0 → 6.2.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/CHANGELOG.md +6 -0
- package/build/components/index.d.ts +2 -2
- package/build/components/index.native.d.ts +2 -2
- package/build/components/index.native.js +39 -39
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +136 -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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3074,11 +3074,11 @@ declare type CodeProps = {
|
|
|
3074
3074
|
* In React Native, you would have to align it using flex to make sure the Code and the surrounding text is correctly aligned
|
|
3075
3075
|
*
|
|
3076
3076
|
* ```tsx
|
|
3077
|
-
* <
|
|
3077
|
+
* <BaseBox flexWrap="wrap" flexDirection="row" alignItems="flex-start">
|
|
3078
3078
|
* <Text>Lorem ipsum </Text>
|
|
3079
3079
|
* <Code>SENTRY_TOKEN</Code>
|
|
3080
3080
|
* <Text> normal text</Text>
|
|
3081
|
-
* </
|
|
3081
|
+
* </BaseBox>
|
|
3082
3082
|
* ```
|
|
3083
3083
|
*/
|
|
3084
3084
|
declare const Code: ({ children, size }: CodeProps) => JSX.Element;
|
|
@@ -3080,11 +3080,11 @@ declare type CodeProps = {
|
|
|
3080
3080
|
* In React Native, you would have to align it using flex to make sure the Code and the surrounding text is correctly aligned
|
|
3081
3081
|
*
|
|
3082
3082
|
* ```tsx
|
|
3083
|
-
* <
|
|
3083
|
+
* <BaseBox flexWrap="wrap" flexDirection="row" alignItems="flex-start">
|
|
3084
3084
|
* <Text>Lorem ipsum </Text>
|
|
3085
3085
|
* <Code>SENTRY_TOKEN</Code>
|
|
3086
3086
|
* <Text> normal text</Text>
|
|
3087
|
-
* </
|
|
3087
|
+
* </BaseBox>
|
|
3088
3088
|
* ```
|
|
3089
3089
|
*/
|
|
3090
3090
|
declare const Code: ({ children, size }: CodeProps) => JSX.Element;
|