@coinbase/cds-mobile 9.6.10 → 9.6.11

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
@@ -8,6 +8,12 @@ All notable changes to this project will be documented in this file.
8
8
 
9
9
  <!-- template-start -->
10
10
 
11
+ ## 9.6.11 (7/22/2026 PST)
12
+
13
+ #### 🐞 Fixes
14
+
15
+ - Fix: Reduce top padding of mobile Tray content when handle bar is positioned inside. [[#802](https://github.com/coinbase/cds/pull/802)]
16
+
11
17
  ## 9.6.10 ((7/22/2026, 08:37 AM PST))
12
18
 
13
19
  This is an artificial version bump with no new change.
@@ -80,7 +80,7 @@ export const Tray = /*#__PURE__*/memo(function Tray(_ref) {
80
80
  flexShrink: 1,
81
81
  minHeight: 0,
82
82
  overflow: "hidden",
83
- paddingTop: title ? 0 : 2,
83
+ paddingTop: title || isInsideHandleBar ? 0 : 2,
84
84
  style: contentStyle,
85
85
  children: [(title || headerContent) && /*#__PURE__*/_jsxs(Box, {
86
86
  elevation: headerElevation,
@@ -88,7 +88,7 @@ export const Tray = /*#__PURE__*/memo(function Tray(_ref) {
88
88
  children: [title && /*#__PURE__*/_jsx(Box, {
89
89
  justifyContent: "center",
90
90
  onLayout: onTitleLayout,
91
- paddingBottom: isInsideHandleBar ? 0.75 : isTitleString ? 2 : 0,
91
+ paddingBottom: isInsideHandleBar || isTitleString ? 0.75 : 0,
92
92
  paddingTop: isInsideHandleBar ? 0 : isTitleString ? 3 : 0,
93
93
  paddingX: isInsideHandleBar || isTitleString ? 3 : 0,
94
94
  children: isTitleString ? /*#__PURE__*/_jsx(Text, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coinbase/cds-mobile",
3
- "version": "9.6.10",
3
+ "version": "9.6.11",
4
4
  "description": "Coinbase Design System - Mobile",
5
5
  "repository": {
6
6
  "type": "git",
@@ -218,7 +218,7 @@
218
218
  "react-native-worklets": "0.5.2"
219
219
  },
220
220
  "dependencies": {
221
- "@coinbase/cds-common": "^9.6.10",
221
+ "@coinbase/cds-common": "^9.6.11",
222
222
  "@coinbase/cds-icons": "^5.21.0",
223
223
  "@coinbase/cds-illustrations": "^4.44.0",
224
224
  "@coinbase/cds-lottie-files": "^3.3.4",