@coinbase/cds-mobile 8.47.2 → 8.47.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
@@ -8,6 +8,16 @@ All notable changes to this project will be documented in this file.
8
8
 
9
9
  <!-- template-start -->
10
10
 
11
+ ## 8.47.4 (2/23/2026 PST)
12
+
13
+ #### 🐞 Fixes
14
+
15
+ - Fix: set paddingStart on Input for compact label. [[#423](https://github.com/coinbase/cds/pull/423)]
16
+
17
+ ## 8.47.3 ((2/20/2026, 09:16 AM PST))
18
+
19
+ This is an artificial version bump with no new change.
20
+
11
21
  ## 8.47.2 (2/19/2026 PST)
12
22
 
13
23
  #### 🐞 Fixes
@@ -193,7 +193,7 @@ export const TextInput = /*#__PURE__*/memo(/*#__PURE__*/forwardRef((_ref, ref) =
193
193
  importantForAccessibility: startIconA11yLabel ? 'auto' : 'no',
194
194
  onPress: handleNodePress,
195
195
  children: /*#__PURE__*/_jsxs(HStack, {
196
- paddingStart: compact ? 2 : undefined,
196
+ paddingStart: compact && hasLabel ? 2 : undefined,
197
197
  children: [compact && (labelNode ? labelNode : !!label && /*#__PURE__*/_jsx(InputLabel, {
198
198
  children: label
199
199
  })), !!start && /*#__PURE__*/_jsx(TextInputFocusVariantContext.Provider, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coinbase/cds-mobile",
3
- "version": "8.47.2",
3
+ "version": "8.47.4",
4
4
  "description": "Coinbase Design System - Mobile",
5
5
  "repository": {
6
6
  "type": "git",
@@ -198,7 +198,7 @@
198
198
  "react-native-svg": "^14.1.0"
199
199
  },
200
200
  "dependencies": {
201
- "@coinbase/cds-common": "^8.47.2",
201
+ "@coinbase/cds-common": "^8.47.4",
202
202
  "@coinbase/cds-icons": "^5.11.0",
203
203
  "@coinbase/cds-illustrations": "^4.31.0",
204
204
  "@coinbase/cds-lottie-files": "^3.3.4",