@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @razorpay/blade
2
2
 
3
+ ## 6.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 7016c215: fix(Dropdown): infinite render onChange, positioning in flex container
8
+
3
9
  ## 6.2.0
4
10
 
5
11
  ### Minor Changes
@@ -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
- * <Box flexWrap="wrap" flexDirection="row" alignItems="flex-start">
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
- * </Box>
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
- * <Box flexWrap="wrap" flexDirection="row" alignItems="flex-start">
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
- * </Box>
3087
+ * </BaseBox>
3088
3088
  * ```
3089
3089
  */
3090
3090
  declare const Code: ({ children, size }: CodeProps) => JSX.Element;