@coinbase/cds-mcp-server 8.36.3 → 8.37.0
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.37.0 ((1/12/2026, 02:16 PM PST))
|
|
12
|
+
|
|
13
|
+
This is an artificial version bump with no new change.
|
|
14
|
+
|
|
11
15
|
## 8.36.3 ((1/9/2026, 01:51 PM PST))
|
|
12
16
|
|
|
13
17
|
This is an artificial version bump with no new change.
|
|
@@ -176,6 +176,18 @@ function MultipleLinksA11yExample() {
|
|
|
176
176
|
}
|
|
177
177
|
```
|
|
178
178
|
|
|
179
|
+
### With padding
|
|
180
|
+
|
|
181
|
+
When applying padding to a `Text` component that contains instances of `Link`, wrap in a `Box` to prevent the hitbox from being misaligned.
|
|
182
|
+
|
|
183
|
+
```jsx
|
|
184
|
+
<Box paddingTop={2}>
|
|
185
|
+
<Text font="legal" color="fgMuted">
|
|
186
|
+
By continuing, you agree to the <Link to="/terms">Terms of Service</Link>.
|
|
187
|
+
</Text>
|
|
188
|
+
</Box>
|
|
189
|
+
```
|
|
190
|
+
|
|
179
191
|
## Props
|
|
180
192
|
|
|
181
193
|
| Prop | Type | Required | Default | Description |
|
|
@@ -98,6 +98,18 @@ In a nutshell, you can reference the following for the most common text semantic
|
|
|
98
98
|
- `pre` and `code` for preformatted code blocks.
|
|
99
99
|
- `span` when no semantics are required (within buttons for example) and it also has default inline display.
|
|
100
100
|
|
|
101
|
+
### With Links
|
|
102
|
+
|
|
103
|
+
When applying padding to a `Text` component that contains instances of `Link`, wrap in a `Box` to prevent the hitbox from being misaligned.
|
|
104
|
+
|
|
105
|
+
```jsx
|
|
106
|
+
<Box paddingTop={2}>
|
|
107
|
+
<Text font="legal" color="fgMuted">
|
|
108
|
+
By continuing, you agree to the <Link to="/terms">Terms of Service</Link>.
|
|
109
|
+
</Text>
|
|
110
|
+
</Box>
|
|
111
|
+
```
|
|
112
|
+
|
|
101
113
|
## Props
|
|
102
114
|
|
|
103
115
|
| Prop | Type | Required | Default | Description |
|