@coinbase/cds-mcp-server 9.1.2 → 9.1.3
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.1.3 ((5/28/2026, 09:35 AM PST))
|
|
12
|
+
|
|
13
|
+
This is an artificial version bump with no new change.
|
|
14
|
+
|
|
11
15
|
## 9.1.2 ((5/28/2026, 06:59 AM PST))
|
|
12
16
|
|
|
13
17
|
This is an artificial version bump with no new change.
|
|
@@ -31,7 +31,7 @@ function BasicTray() {
|
|
|
31
31
|
onCloseComplete={setIsTrayVisibleOff}
|
|
32
32
|
title="Example title"
|
|
33
33
|
footer={({ handleClose }) => (
|
|
34
|
-
<StickyFooter background="bgElevation2"
|
|
34
|
+
<StickyFooter background="bgElevation2">
|
|
35
35
|
<Button block onPress={handleClose}>
|
|
36
36
|
Close
|
|
37
37
|
</Button>
|
|
@@ -246,7 +246,7 @@ function FullBleedHeaderScrollableTray() {
|
|
|
246
246
|
<Tray
|
|
247
247
|
accessibilityLabel="Section header"
|
|
248
248
|
footer={({ handleClose }) => (
|
|
249
|
-
<StickyFooter background="bgElevation2" elevation={isScrolled ? 2 : 0}
|
|
249
|
+
<StickyFooter background="bgElevation2" elevation={isScrolled ? 2 : 0}>
|
|
250
250
|
<Button block onPress={handleClose}>
|
|
251
251
|
Close
|
|
252
252
|
</Button>
|
|
@@ -362,7 +362,7 @@ function PreventDismissTray() {
|
|
|
362
362
|
onCloseComplete={setIsTrayVisibleOff}
|
|
363
363
|
title="Example title"
|
|
364
364
|
footer={({ handleClose }) => (
|
|
365
|
-
<StickyFooter background="bgElevation2"
|
|
365
|
+
<StickyFooter background="bgElevation2">
|
|
366
366
|
<Button block onPress={handleClose}>
|
|
367
367
|
Close
|
|
368
368
|
</Button>
|
|
@@ -771,7 +771,7 @@ function ResponsiveTray({
|
|
|
771
771
|
footer ??
|
|
772
772
|
(footerLabel
|
|
773
773
|
? ({ handleClose }: { handleClose: () => void }) => (
|
|
774
|
-
<StickyFooter background="bgElevation2"
|
|
774
|
+
<StickyFooter background="bgElevation2">
|
|
775
775
|
<Button block onPress={handleClose}>
|
|
776
776
|
{footerLabel}
|
|
777
777
|
</Button>
|