@razorpay/blade 10.20.1 → 10.21.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.
@@ -36687,15 +36687,13 @@ function _objectSpread$d(target) { for (var i = 1; i < arguments.length; i++) {
36687
36687
  var _CollapsibleBody = function _CollapsibleBody(_ref) {
36688
36688
  var children = _ref.children,
36689
36689
  testID = _ref.testID,
36690
- _width = _ref._width;
36690
+ width = _ref.width;
36691
36691
  var _useCollapsible = useCollapsible(),
36692
36692
  collapsibleBodyId = _useCollapsible.collapsibleBodyId,
36693
36693
  isExpanded = _useCollapsible.isExpanded;
36694
36694
  return /*#__PURE__*/jsx$1(BaseBox, _objectSpread$d(_objectSpread$d(_objectSpread$d({
36695
- id: collapsibleBodyId
36696
- // Just React Native things, need this 100% so collapsed content flows correctly inside Accordion
36697
- ,
36698
- width: _width
36695
+ id: collapsibleBodyId,
36696
+ width: width
36699
36697
  }, makeAccessible({
36700
36698
  role: 'region',
36701
36699
  hidden: !isExpanded
@@ -36790,7 +36788,7 @@ var AccordionItem = function AccordionItem(_ref) {
36790
36788
  }), /*#__PURE__*/jsx$1(CollapsibleBody
36791
36789
  // Just React Native things, need this 100% so collapsed content flows correctly inside Accordion
36792
36790
  , {
36793
- _width: isReactNative$4() ? '100%' : undefined,
36791
+ width: isReactNative$4() ? '100%' : undefined,
36794
36792
  children: collapsibleBodyContent
36795
36793
  })]
36796
36794
  }), /*#__PURE__*/jsx$1(Divider, {})]