@coinbase/cds-mobile 9.6.6 → 9.6.7
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 +6 -0
- package/esm/controls/InputStack.js +1 -0
- package/esm/controls/TextInput.js +1 -1
- package/package.json +3 -3
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.7 (7/20/2026 PST)
|
|
12
|
+
|
|
13
|
+
#### 🐞 Fixes
|
|
14
|
+
|
|
15
|
+
- Fix: TextInput inside labelVariant padding. [[#797](https://github.com/coinbase/cds/pull/797)]
|
|
16
|
+
|
|
11
17
|
## 9.6.6 (7/14/2026 PST)
|
|
12
18
|
|
|
13
19
|
#### 🐞 Fixes
|
|
@@ -125,6 +125,7 @@ export const InputStack = /*#__PURE__*/memo(function InputStack(_props) {
|
|
|
125
125
|
children: startNode
|
|
126
126
|
}), !!labelNode && labelVariant === 'inside' ? /*#__PURE__*/_jsxs(VStack, {
|
|
127
127
|
flexGrow: 1,
|
|
128
|
+
paddingY: 1,
|
|
128
129
|
children: [labelNode, inputNode]
|
|
129
130
|
}) : inputNode, !!endNode && /*#__PURE__*/_jsx(_Fragment, {
|
|
130
131
|
children: endNode
|
|
@@ -91,7 +91,7 @@ export const TextInput = /*#__PURE__*/memo(_ref => {
|
|
|
91
91
|
const containerSpacing = useMemo(() => _extends({}, !!start && {
|
|
92
92
|
paddingStart: theme.space[0.5]
|
|
93
93
|
}, labelVariant === 'inside' && hasLabel && !compact && {
|
|
94
|
-
paddingBottom:
|
|
94
|
+
paddingBottom: 0,
|
|
95
95
|
paddingTop: 0
|
|
96
96
|
}), [start, theme.space, labelVariant, hasLabel, compact]);
|
|
97
97
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coinbase/cds-mobile",
|
|
3
|
-
"version": "9.6.
|
|
3
|
+
"version": "9.6.7",
|
|
4
4
|
"description": "Coinbase Design System - Mobile",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -206,8 +206,8 @@
|
|
|
206
206
|
"react-native-worklets": "0.5.2"
|
|
207
207
|
},
|
|
208
208
|
"dependencies": {
|
|
209
|
-
"@coinbase/cds-common": "^9.6.
|
|
210
|
-
"@coinbase/cds-icons": "^5.
|
|
209
|
+
"@coinbase/cds-common": "^9.6.7",
|
|
210
|
+
"@coinbase/cds-icons": "^5.21.0",
|
|
211
211
|
"@coinbase/cds-illustrations": "^4.44.0",
|
|
212
212
|
"@coinbase/cds-lottie-files": "^3.3.4",
|
|
213
213
|
"@coinbase/cds-utils": "^2.3.5",
|