@coinbase/cds-common 9.0.0-rc.2 → 9.0.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,15 +8,79 @@ All notable changes to this project will be documented in this file.
|
|
|
8
8
|
|
|
9
9
|
<!-- template-start -->
|
|
10
10
|
|
|
11
|
-
## 9.0.0
|
|
11
|
+
## 9.0.0 (5/20/2026 PST)
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
CDS 9 is here!!
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
For more details and to help upgrading from CDS 8 using our automated migration tool, see our official [upgrade guide](https://cds.coinbase.com/guides/v9-upgrade-guide)!
|
|
16
16
|
|
|
17
17
|
#### 💥 Breaking
|
|
18
18
|
|
|
19
|
-
-
|
|
19
|
+
- Dropped various deprecated variables and utilities.
|
|
20
|
+
- Read our upgrade guilde for more details!
|
|
21
|
+
-
|
|
22
|
+
|
|
23
|
+
## 8.75.2 ((5/19/2026, 01:13 PM PST))
|
|
24
|
+
|
|
25
|
+
This is an artificial version bump with no new change.
|
|
26
|
+
|
|
27
|
+
## 8.75.1 ((5/19/2026, 07:30 AM PST))
|
|
28
|
+
|
|
29
|
+
This is an artificial version bump with no new change.
|
|
30
|
+
|
|
31
|
+
## 8.75.0 ((5/15/2026, 01:46 PM PST))
|
|
32
|
+
|
|
33
|
+
This is an artificial version bump with no new change.
|
|
34
|
+
|
|
35
|
+
## 8.74.3 ((5/14/2026, 05:35 PM PST))
|
|
36
|
+
|
|
37
|
+
This is an artificial version bump with no new change.
|
|
38
|
+
|
|
39
|
+
## 8.74.2 ((5/14/2026, 10:50 AM PST))
|
|
40
|
+
|
|
41
|
+
This is an artificial version bump with no new change.
|
|
42
|
+
|
|
43
|
+
## 8.74.1 ((5/14/2026, 07:28 AM PST))
|
|
44
|
+
|
|
45
|
+
This is an artificial version bump with no new change.
|
|
46
|
+
|
|
47
|
+
## 8.74.0 ((5/13/2026, 01:19 PM PST))
|
|
48
|
+
|
|
49
|
+
This is an artificial version bump with no new change.
|
|
50
|
+
|
|
51
|
+
## 8.73.0 (5/13/2026 PST)
|
|
52
|
+
|
|
53
|
+
#### 🚀 Updates
|
|
54
|
+
|
|
55
|
+
- Feat: support more props on TextInputBaseProps. [[#679](https://github.com/coinbase/cds/pull/679)]
|
|
56
|
+
|
|
57
|
+
## 8.72.0 ((5/12/2026, 02:00 PM PST))
|
|
58
|
+
|
|
59
|
+
This is an artificial version bump with no new change.
|
|
60
|
+
|
|
61
|
+
## 8.71.0 ((5/12/2026, 11:37 AM PST))
|
|
62
|
+
|
|
63
|
+
This is an artificial version bump with no new change.
|
|
64
|
+
|
|
65
|
+
## 8.70.0 ((5/8/2026, 02:16 PM PST))
|
|
66
|
+
|
|
67
|
+
This is an artificial version bump with no new change.
|
|
68
|
+
|
|
69
|
+
## 8.69.1 ((5/6/2026, 10:08 AM PST))
|
|
70
|
+
|
|
71
|
+
This is an artificial version bump with no new change.
|
|
72
|
+
|
|
73
|
+
## 8.69.0 ((5/5/2026, 02:27 PM PST))
|
|
74
|
+
|
|
75
|
+
This is an artificial version bump with no new change.
|
|
76
|
+
|
|
77
|
+
## 8.68.0 ((5/1/2026, 02:11 PM PST))
|
|
78
|
+
|
|
79
|
+
This is an artificial version bump with no new change.
|
|
80
|
+
|
|
81
|
+
## 8.67.0 ((5/1/2026, 09:17 AM PST))
|
|
82
|
+
|
|
83
|
+
This is an artificial version bump with no new change.
|
|
20
84
|
|
|
21
85
|
## 8.66.2 (4/28/2026 PST)
|
|
22
86
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ThemeVars } from '../core/theme';
|
|
1
2
|
export type InputVariant =
|
|
2
3
|
| 'positive'
|
|
3
4
|
| 'negative'
|
|
@@ -13,6 +14,10 @@ export type SharedInputProps = {
|
|
|
13
14
|
compact?: boolean;
|
|
14
15
|
/** Short messageArea indicating purpose of input */
|
|
15
16
|
label?: string;
|
|
17
|
+
/** Typography token for the field label. */
|
|
18
|
+
labelFont?: ThemeVars.Font;
|
|
19
|
+
/** Color token for the field label. */
|
|
20
|
+
labelColor?: ThemeVars.Color;
|
|
16
21
|
/** Placeholder text displayed inside of the input. Will be replaced if there is a value. */
|
|
17
22
|
placeholder?: string;
|
|
18
23
|
/**
|
|
@@ -21,5 +26,9 @@ export type SharedInputProps = {
|
|
|
21
26
|
* showing positive/negative messages
|
|
22
27
|
*/
|
|
23
28
|
helperText?: string | React.ReactNode;
|
|
29
|
+
/**
|
|
30
|
+
* When true, the value cannot be edited but the control may remain focusable (unlike `disabled`).
|
|
31
|
+
*/
|
|
32
|
+
readOnly?: boolean;
|
|
24
33
|
};
|
|
25
34
|
//# sourceMappingURL=InputBaseProps.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InputBaseProps.d.ts","sourceRoot":"","sources":["../../src/types/InputBaseProps.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GACpB,UAAU,GACV,UAAU,GACV,YAAY,GACZ,SAAS,GACT,iBAAiB,GACjB,WAAW,CAAC;AAEhB,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,oDAAoD;IACpD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,4FAA4F;IAC5F,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"InputBaseProps.d.ts","sourceRoot":"","sources":["../../src/types/InputBaseProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAE/C,MAAM,MAAM,YAAY,GACpB,UAAU,GACV,UAAU,GACV,YAAY,GACZ,SAAS,GACT,iBAAiB,GACjB,WAAW,CAAC;AAEhB,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,oDAAoD;IACpD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,4CAA4C;IAC5C,SAAS,CAAC,EAAE,SAAS,CAAC,IAAI,CAAC;IAC3B,uCAAuC;IACvC,UAAU,CAAC,EAAE,SAAS,CAAC,KAAK,CAAC;IAC7B,4FAA4F;IAC5F,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IACtC;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coinbase/cds-common",
|
|
3
|
-
"version": "9.0.0
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "Coinbase Design System - Common",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@coinbase/cds-icons": "^5.16.0",
|
|
41
|
-
"@coinbase/cds-illustrations": "^4.
|
|
42
|
-
"@coinbase/cds-mcp-server": "^9.0.0
|
|
41
|
+
"@coinbase/cds-illustrations": "^4.40.1",
|
|
42
|
+
"@coinbase/cds-mcp-server": "^9.0.0",
|
|
43
43
|
"@coinbase/cds-utils": "^2.3.5",
|
|
44
44
|
"@modelcontextprotocol/sdk": "^1.13.1",
|
|
45
45
|
"d3-array": "^3.2.4",
|