@coinbase/ui-mobile-playground 4.13.0 → 4.14.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,12 @@ All notable changes to this project will be documented in this file.
8
8
 
9
9
  <!-- template-start -->
10
10
 
11
+ ## 4.14.0 (3/18/2026 PST)
12
+
13
+ #### 🚀 Updates
14
+
15
+ - Add a route for new Calendar component. [[#139](https://github.com/coinbase/cds/pull/139)]
16
+
11
17
  ## 4.13.0 (3/17/2026 PST)
12
18
 
13
19
  #### 🚀 Updates
@@ -1 +1 @@
1
- {"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../src/routes.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,MAAM;;;GA+2BlB,CAAC"}
1
+ {"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../src/routes.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,MAAM;;;GAm3BlB,CAAC"}
package/esm/routes.js CHANGED
@@ -74,6 +74,9 @@ export const routes = [{
74
74
  }, {
75
75
  key: 'ButtonGroup',
76
76
  getComponent: () => require('@coinbase/cds-mobile/buttons/__stories__/ButtonGroup.stories').default
77
+ }, {
78
+ key: 'Calendar',
79
+ getComponent: () => require('@coinbase/cds-mobile/dates/__stories__/Calendar.stories').default
77
80
  }, {
78
81
  key: 'Card',
79
82
  getComponent: () => require('@coinbase/cds-mobile/cards/__stories__/Card.stories').default
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coinbase/ui-mobile-playground",
3
- "version": "4.13.0",
3
+ "version": "4.14.0",
4
4
  "description": "Mobile UI Components in a Playground",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,8 +34,8 @@
34
34
  "CHANGELOG"
35
35
  ],
36
36
  "peerDependencies": {
37
- "@coinbase/cds-common": "^8.53.0",
38
- "@coinbase/cds-mobile": "^8.53.0",
37
+ "@coinbase/cds-common": "^8.54.0",
38
+ "@coinbase/cds-mobile": "^8.54.0",
39
39
  "@coinbase/cds-mobile-visualization": "^3.4.0-beta.24",
40
40
  "@react-navigation/elements": "^1.3.17",
41
41
  "@react-navigation/native": "^6.1.6",
package/src/routes.ts CHANGED
@@ -121,6 +121,10 @@ export const routes = [
121
121
  getComponent: () =>
122
122
  require('@coinbase/cds-mobile/buttons/__stories__/ButtonGroup.stories').default,
123
123
  },
124
+ {
125
+ key: 'Calendar',
126
+ getComponent: () => require('@coinbase/cds-mobile/dates/__stories__/Calendar.stories').default,
127
+ },
124
128
  {
125
129
  key: 'Card',
126
130
  getComponent: () => require('@coinbase/cds-mobile/cards/__stories__/Card.stories').default,