@coinbase/cds-mcp-server 9.6.11 → 9.7.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
|
+
## 9.7.0 ((7/22/2026, 12:14 PM PST))
|
|
12
|
+
|
|
13
|
+
This is an artificial version bump with no new change.
|
|
14
|
+
|
|
11
15
|
## 9.6.11 ((7/22/2026, 10:11 AM PST))
|
|
12
16
|
|
|
13
17
|
This is an artificial version bump with no new change.
|
|
@@ -19,6 +19,8 @@ import ThemedImage from '@theme/ThemedImage';
|
|
|
19
19
|
|
|
20
20
|
Primary use case for this is when a user is inputing a PIN code. Notice it does not have any of the hallmarks of a transactional numpad (CTA, utility button, suggested amounts).
|
|
21
21
|
|
|
22
|
+
When the decimal separator isn't needed, pass `hideSeparator` to fully hide it. This visually removes the separator key and also removes it from the accessibility tree, so it is not focusable by screen readers such as VoiceOver and TalkBack.
|
|
23
|
+
|
|
22
24
|
<ThemedImage
|
|
23
25
|
sources={{
|
|
24
26
|
light: useBaseUrl('/img/docs/numpad/pin_numpad.png'),
|
|
@@ -82,7 +84,7 @@ const PinNumpadExample = () => {
|
|
|
82
84
|
</VStack>
|
|
83
85
|
</ModalBody>
|
|
84
86
|
<Box bottom={0} position="absolute" paddingBottom={safeBottomPadding}>
|
|
85
|
-
<Numpad onLongPress={onLongPress} onPress={onPress}
|
|
87
|
+
<Numpad hideSeparator onLongPress={onLongPress} onPress={onPress} />
|
|
86
88
|
</Box>
|
|
87
89
|
</Modal>
|
|
88
90
|
</VStack>
|
|
@@ -283,6 +285,7 @@ const TransactionalNumpadExample = () => {
|
|
|
283
285
|
| `fontWeight` | `inherit \| FontWeight` | No | `-` | - |
|
|
284
286
|
| `gap` | `0 \| 1 \| 2 \| 3 \| 4 \| 5 \| 6 \| 7 \| 8 \| 9 \| 10 \| 0.25 \| 0.5 \| 0.75 \| 1.5` | No | `-` | - |
|
|
285
287
|
| `height` | `null \| number \| AnimatedNode \| auto \| ${number}%` | No | `-` | - |
|
|
288
|
+
| `hideSeparator` | `boolean` | No | `-` | When true, hides the separator key and removes it from the accessibility tree. |
|
|
286
289
|
| `justifyContent` | `flex-start \| flex-end \| center \| space-between \| space-around \| space-evenly` | No | `-` | - |
|
|
287
290
|
| `left` | `null \| number \| AnimatedNode \| auto \| ${number}%` | No | `-` | - |
|
|
288
291
|
| `lineHeight` | `inherit \| LineHeight` | No | `-` | - |
|