@coinbase/cds-mcp-server 8.36.1 → 8.36.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.36.2 ((1/7/2026, 10:19 AM PST))
|
|
12
|
+
|
|
13
|
+
This is an artificial version bump with no new change.
|
|
14
|
+
|
|
11
15
|
## 8.36.1 ((1/6/2026, 01:32 PM PST))
|
|
12
16
|
|
|
13
17
|
This is an artificial version bump with no new change.
|
|
@@ -26,7 +26,7 @@ For React Native projects, ensure you have set up your environment for React Nat
|
|
|
26
26
|
Render a ThemeProvider at the root of your application, and pass the `theme` and `activeColorScheme`.
|
|
27
27
|
|
|
28
28
|
```tsx
|
|
29
|
-
import { ThemeProvider } from '@coinbase/cds-mobile';
|
|
29
|
+
import { ThemeProvider } from '@coinbase/cds-mobile/system';
|
|
30
30
|
import { defaultTheme } from '@coinbase/cds-mobile/themes/defaultTheme';
|
|
31
31
|
import App from './App';
|
|
32
32
|
|
|
@@ -66,22 +66,18 @@ CDS is designed to make your development workflow as smooth as possible.
|
|
|
66
66
|
- **Extensive documentation** - Every component includes Storybook stories, interactive examples, detailed prop tables, and usage guidelines.
|
|
67
67
|
|
|
68
68
|
```jsx
|
|
69
|
-
import { ThemeProvider } from '@coinbase/cds-web';
|
|
69
|
+
import { ThemeProvider } from '@coinbase/cds-web/system';
|
|
70
70
|
import { defaultTheme } from '@coinbase/cds-web/themes/defaultTheme';
|
|
71
|
-
import {
|
|
71
|
+
import { VStack } from '@coinbase/cds-web/layout';
|
|
72
72
|
import { Text } from '@coinbase/cds-web/typography';
|
|
73
73
|
import { Button } from '@coinbase/cds-web/buttons';
|
|
74
74
|
|
|
75
75
|
const App = () => (
|
|
76
76
|
<ThemeProvider theme={defaultTheme} activeColorScheme="light">
|
|
77
|
-
<
|
|
78
|
-
<Text font="title1"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
<Button variant="positive" marginTop={2}>
|
|
82
|
-
Get started
|
|
83
|
-
</Button>
|
|
84
|
-
</Box>
|
|
77
|
+
<VStack gap={2} padding={4} background="bgSecondary" borderRadius={200}>
|
|
78
|
+
<Text font="title1">Welcome to CDS</Text>
|
|
79
|
+
<Button variant="positive">Get started</Button>
|
|
80
|
+
</VStack>
|
|
85
81
|
</ThemeProvider>
|
|
86
82
|
);
|
|
87
83
|
```
|
|
@@ -66,22 +66,18 @@ CDS is designed to make your development workflow as smooth as possible.
|
|
|
66
66
|
- **Extensive documentation** - Every component includes Storybook stories, interactive examples, detailed prop tables, and usage guidelines.
|
|
67
67
|
|
|
68
68
|
```jsx
|
|
69
|
-
import { ThemeProvider } from '@coinbase/cds-web';
|
|
69
|
+
import { ThemeProvider } from '@coinbase/cds-web/system';
|
|
70
70
|
import { defaultTheme } from '@coinbase/cds-web/themes/defaultTheme';
|
|
71
|
-
import {
|
|
71
|
+
import { VStack } from '@coinbase/cds-web/layout';
|
|
72
72
|
import { Text } from '@coinbase/cds-web/typography';
|
|
73
73
|
import { Button } from '@coinbase/cds-web/buttons';
|
|
74
74
|
|
|
75
75
|
const App = () => (
|
|
76
76
|
<ThemeProvider theme={defaultTheme} activeColorScheme="light">
|
|
77
|
-
<
|
|
78
|
-
<Text font="title1"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
<Button variant="positive" marginTop={2}>
|
|
82
|
-
Get started
|
|
83
|
-
</Button>
|
|
84
|
-
</Box>
|
|
77
|
+
<VStack gap={2} padding={4} background="bgSecondary" borderRadius={200}>
|
|
78
|
+
<Text font="title1">Welcome to CDS</Text>
|
|
79
|
+
<Button variant="positive">Get started</Button>
|
|
80
|
+
</VStack>
|
|
85
81
|
</ThemeProvider>
|
|
86
82
|
);
|
|
87
83
|
```
|