@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.
- package/build/components/index.d.ts +2 -5
- package/build/components/index.development.web.js +4 -6
- package/build/components/index.development.web.js.map +1 -1
- package/build/components/index.native.d.ts +2 -5
- package/build/components/index.native.js +2 -2
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.production.web.js +4 -6
- package/build/components/index.production.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
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
36791
|
+
width: isReactNative$4() ? '100%' : undefined,
|
|
36794
36792
|
children: collapsibleBodyContent
|
|
36795
36793
|
})]
|
|
36796
36794
|
}), /*#__PURE__*/jsx$1(Divider, {})]
|