@coinbase/cds-mobile 9.0.1 → 9.0.2

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,10 @@ All notable changes to this project will be documented in this file.
8
8
 
9
9
  <!-- template-start -->
10
10
 
11
+ ## 9.0.2 ((5/22/2026, 09:54 AM PST))
12
+
13
+ This is an artificial version bump with no new change.
14
+
11
15
  ## 9.0.1 (5/22/2026 PST)
12
16
 
13
17
  #### 🐞 Fixes
@@ -5,20 +5,22 @@ export const customComponentConfig = {
5
5
  Banner: {
6
6
  borderRadius: 0
7
7
  },
8
- Button: props => ({
8
+ Button: props => _extends({
9
9
  borderRadius: 200,
10
- height: props.compact ? 24 : 32,
11
- font: props.compact ? 'label1' : 'headline',
12
- progressCircleSize: props.compact ? 12 : 16,
13
- paddingY: 0
14
- }),
10
+ paddingX: props.compact ? 2 : 4,
11
+ paddingY: props.compact ? 1 : 2,
12
+ font: props.compact ? 'label1' : 'headline'
13
+ }, props.variant === 'tertiary' ? {
14
+ background: 'bgAlternate',
15
+ color: 'fg',
16
+ borderColor: 'bgAlternate'
17
+ } : {}),
15
18
  IconButton: props => {
16
19
  var _props$compact;
17
20
  const isCompact = (_props$compact = props.compact) != null ? _props$compact : true;
18
21
  return _extends({
19
22
  borderRadius: 200,
20
- height: isCompact ? 24 : 32,
21
- width: isCompact ? 24 : 32
23
+ padding: isCompact ? 1.5 : 2
22
24
  }, props.variant === 'tertiary' ? {
23
25
  background: 'bgAlternate',
24
26
  color: 'fg',
@@ -49,7 +51,7 @@ export const customComponentConfig = {
49
51
  },
50
52
  Radio: props => ({
51
53
  background: 'bg',
52
- borderWidth: props.checked ? 200 : 100,
54
+ borderWidth: 200,
53
55
  borderColor: props.checked ? 'bgPrimary' : 'bgLinePrimarySubtle',
54
56
  controlColor: 'bgPrimary',
55
57
  dotSize: 20 / 3
@@ -512,7 +512,7 @@ export const customTheme = _extends({}, defaultTheme, {
512
512
  title4: 20,
513
513
  headline: 16,
514
514
  body: 16,
515
- label1: 12,
515
+ label1: 16,
516
516
  label2: 16,
517
517
  caption: 12,
518
518
  legal: 12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coinbase/cds-mobile",
3
- "version": "9.0.1",
3
+ "version": "9.0.2",
4
4
  "description": "Coinbase Design System - Mobile",
5
5
  "repository": {
6
6
  "type": "git",
@@ -202,7 +202,7 @@
202
202
  "react-native-worklets": "0.5.2"
203
203
  },
204
204
  "dependencies": {
205
- "@coinbase/cds-common": "^9.0.1",
205
+ "@coinbase/cds-common": "^9.0.2",
206
206
  "@coinbase/cds-icons": "^5.17.0",
207
207
  "@coinbase/cds-illustrations": "^4.40.1",
208
208
  "@coinbase/cds-lottie-files": "^3.3.4",