@razorpay/blade 5.1.3 → 5.1.4

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
+ ## 5.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 71f274e: fix(Checkbox): allow Checkbox to accept `childern` prop of type `React.ReactNode`
8
+
3
9
  ## 5.1.3
4
10
 
5
11
  ### Patch Changes
@@ -1153,9 +1153,9 @@ declare type CheckboxProps = {
1153
1153
  */
1154
1154
  onChange?: OnChange;
1155
1155
  /**
1156
- * Sets the label text of the checkbox
1156
+ * Sets the label of the checkbox
1157
1157
  */
1158
- children: string;
1158
+ children: React__default.ReactNode;
1159
1159
  /**
1160
1160
  * Help text for the checkbox
1161
1161
  */
@@ -1153,9 +1153,9 @@ declare type CheckboxProps = {
1153
1153
  */
1154
1154
  onChange?: OnChange;
1155
1155
  /**
1156
- * Sets the label text of the checkbox
1156
+ * Sets the label of the checkbox
1157
1157
  */
1158
- children: string;
1158
+ children: React__default.ReactNode;
1159
1159
  /**
1160
1160
  * Help text for the checkbox
1161
1161
  */