@coinbase/cds-mcp-server 8.49.1 → 8.49.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
|
+
## 8.49.2 ((3/6/2026, 09:04 AM PST))
|
|
12
|
+
|
|
13
|
+
This is an artificial version bump with no new change.
|
|
14
|
+
|
|
11
15
|
## 8.49.1 ((3/5/2026, 03:13 PM PST))
|
|
12
16
|
|
|
13
17
|
This is an artificial version bump with no new change.
|
|
@@ -31,7 +31,7 @@ A ListCell row is divided into the following 5 columns:
|
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
:::tip
|
|
34
|
-
Prefer `spacingVariant="condensed"` for the new ListCell design.
|
|
34
|
+
Prefer `spacingVariant="condensed"` for the new ListCell design. Both `normal` and `compact` are deprecated and may be removed in a future major release.
|
|
35
35
|
:::
|
|
36
36
|
|
|
37
37
|
#### Spacing Variant
|
|
@@ -66,7 +66,7 @@ Prefer `spacingVariant="condensed"` for the new ListCell design. The `compact` m
|
|
|
66
66
|
spacingVariant="normal"
|
|
67
67
|
media={<Avatar src={assets.eth.imageUrl} size="m" />}
|
|
68
68
|
onPress={console.log}
|
|
69
|
-
title="Normal"
|
|
69
|
+
title="Normal (deprecated)"
|
|
70
70
|
variant="positive"
|
|
71
71
|
/>
|
|
72
72
|
</VStack>
|
|
@@ -753,7 +753,7 @@ Mapping to `styles` keys:
|
|
|
753
753
|
| `right` | `string \| number` | No | `-` | - |
|
|
754
754
|
| `rowGap` | `0 \| 1 \| 2 \| 0.25 \| 0.5 \| 0.75 \| 1.5 \| 3 \| 4 \| 5 \| 6 \| 7 \| 8 \| 9 \| 10` | No | `-` | - |
|
|
755
755
|
| `selected` | `boolean` | No | `-` | Is the cell selected? Will apply a background and selected accessory. |
|
|
756
|
-
| `spacingVariant` | `compact \| normal \| condensed` | No | `'normal'` | Spacing variant configuration. Deprecated
|
|
756
|
+
| `spacingVariant` | `compact \| normal \| condensed` | No | `'normal'` | Spacing variant configuration. Deprecated values: normal and compact. Prefer condensed. When spacingVariant=normal: 1. min-height is 80px 2. padding is var(--space-2) var(--space-3) 3. border-radius is var(--borderRadius-200) 4. when there is a description, titles numberOfLines={1} otherwise titles numberOfLines={2} 5. description and subdetail have font body When spacingVariant=compact: 1. same as spacingVariant=normal, except min-height is 40px When spacingVariant=condensed: 1. min-height is undefined 2. padding is var(--space-1) var(--space-2) 3. border-radius is --borderRadius-0 4. titles numberOfLines={2} 5. description and subdetail have font label2 |
|
|
757
757
|
| `style` | `false \| RegisteredStyle<ViewStyle> \| Value \| AnimatedInterpolation<string \| number> \| WithAnimatedObject<ViewStyle> \| WithAnimatedArray<Falsy \| ViewStyle \| RegisteredStyle<ViewStyle> \| RecursiveArray<Falsy \| ViewStyle \| RegisteredStyle<ViewStyle>> \| readonly (Falsy \| ViewStyle \| RegisteredStyle<ViewStyle>)[]> \| null` | No | `-` | - |
|
|
758
758
|
| `styles` | `({ root?: StyleProp<ViewStyle>; contentContainer?: StyleProp<ViewStyle>; topContent?: StyleProp<ViewStyle>; bottomContent?: StyleProp<ViewStyle>; pressable?: StyleProp<ViewStyle>; media?: StyleProp<ViewStyle>; childrenContainer?: StyleProp<ViewStyle>; intermediary?: StyleProp<ViewStyle>; end?: StyleProp<ViewStyle>; accessory?: StyleProp<ViewStyle>; } & { root?: StyleProp<ViewStyle>; media?: StyleProp<ViewStyle>; intermediary?: StyleProp<ViewStyle>; end?: StyleProp<ViewStyle>; accessory?: StyleProp<ViewStyle>; contentContainer?: StyleProp<ViewStyle>; pressable?: StyleProp<ViewStyle>; mainContent?: StyleProp<ViewStyle>; titleStack?: StyleProp<ViewStyle>; titleStackContainer?: StyleProp<ViewStyle>; helperText?: StyleProp<ViewStyle>; title?: StyleProp<TextStyle>; subtitle?: StyleProp<TextStyle>; description?: StyleProp<TextStyle>; })` | No | `-` | Custom styles for individual elements of the Cell component Styles for subcomponents, ignored when the corresponding xxNode prop is used |
|
|
759
759
|
| `subdetail` | `null \| string \| number \| false \| true \| ReactElement<any, string \| JSXElementConstructor<any>> \| Iterable<ReactNode> \| ReactPortal` | No | `-` | Subdetail providing more information. This prop is only intended to accept a string or Text component; other use cases, while allowed, are not supported and may result in unexpected behavior. For arbitrary content, use subdetailNode. |
|
|
@@ -31,7 +31,7 @@ A ListCell row is divided into the following 5 columns:
|
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
:::tip
|
|
34
|
-
Prefer `spacingVariant="condensed"` for the new ListCell design.
|
|
34
|
+
Prefer `spacingVariant="condensed"` for the new ListCell design. Both `normal` and `compact` are deprecated and may be removed in a future major release.
|
|
35
35
|
:::
|
|
36
36
|
|
|
37
37
|
#### Spacing Variant
|
|
@@ -66,7 +66,7 @@ Prefer `spacingVariant="condensed"` for the new ListCell design. The `compact` m
|
|
|
66
66
|
spacingVariant="normal"
|
|
67
67
|
media={<Avatar src={assets.eth.imageUrl} size="m" />}
|
|
68
68
|
onClick={console.log}
|
|
69
|
-
title="Normal"
|
|
69
|
+
title="Normal (deprecated)"
|
|
70
70
|
variant="positive"
|
|
71
71
|
/>
|
|
72
72
|
</VStack>
|
|
@@ -1011,7 +1011,7 @@ Mapping to `styles` / `classNames` keys:
|
|
|
1011
1011
|
| `shouldOverflow` | `boolean` | No | `-` | - |
|
|
1012
1012
|
| `shouldTruncate` | `boolean` | No | `true` | Controls whether the main content should truncate with an ellipsis. Defaults to true (truncates) when not provided. |
|
|
1013
1013
|
| `slot` | `string \| undefined` | No | `-` | - |
|
|
1014
|
-
| `spacingVariant` | `normal \| compact \| condensed` | No | `'normal'` | Spacing variant configuration. Deprecated
|
|
1014
|
+
| `spacingVariant` | `normal \| compact \| condensed` | No | `'normal'` | Spacing variant configuration. Deprecated values: normal and compact. Prefer condensed. When spacingVariant=normal: 1. min-height is 80px 2. padding is var(--space-2) var(--space-3) 3. border-radius is var(--borderRadius-200) 4. when there is a description, titles numberOfLines={1} otherwise titles numberOfLines={2} 5. description and subdetail have font body When spacingVariant=compact: 1. same as spacingVariant=normal, except min-height is 40px When spacingVariant=condensed: 1. min-height is undefined 2. padding is var(--space-1) var(--space-2) 3. border-radius is --borderRadius-0 4. titles numberOfLines={2} 5. description and subdetail have font label2 |
|
|
1015
1015
|
| `spellCheck` | `Booleanish \| undefined` | No | `-` | - |
|
|
1016
1016
|
| `style` | `CSSProperties` | No | `-` | - |
|
|
1017
1017
|
| `styles` | `{ root?: CSSProperties; media?: CSSProperties \| undefined; intermediary?: CSSProperties \| undefined; end?: CSSProperties \| undefined; accessory?: CSSProperties \| undefined; contentContainer?: CSSProperties \| undefined; pressable?: CSSProperties \| undefined; titleStack?: CSSProperties \| undefined; titleStackContainer?: CSSProperties \| undefined; mainContent?: CSSProperties \| undefined; helperText?: CSSProperties \| undefined; title?: CSSProperties \| undefined; subtitle?: CSSProperties \| undefined; description?: CSSProperties \| undefined; } \| undefined` | No | `-` | Styles for subcomponents, ignored when the corresponding xxNode prop is used |
|