@coinbase/ui-mobile-playground 4.6.0 → 4.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,12 @@ All notable changes to this project will be documented in this file.
8
8
 
9
9
  <!-- template-start -->
10
10
 
11
+ ## 4.7.0 (2/4/2026 PST)
12
+
13
+ #### 🚀 Updates
14
+
15
+ - Added routes for MediaCard, MessagingCard, and alpha DataCard. [[#329](https://github.com/coinbase/cds/pull/329)]
16
+
11
17
  ## 4.6.0 (2/4/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;;;GAu0BlB,CAAC"}
1
+ {"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../src/routes.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,MAAM;;;GAq1BlB,CAAC"}
package/esm/routes.js CHANGED
@@ -122,6 +122,9 @@ export const routes = [{
122
122
  }, {
123
123
  key: 'ControlGroup',
124
124
  getComponent: () => require('@coinbase/cds-mobile/controls/__stories__/ControlGroup.stories').default
125
+ }, {
126
+ key: 'DataCard',
127
+ getComponent: () => require('@coinbase/cds-mobile/alpha/data-card/__stories__/DataCard.stories').default
125
128
  }, {
126
129
  key: 'DateInput',
127
130
  getComponent: () => require('@coinbase/cds-mobile/dates/__stories__/DateInput.stories').default
@@ -218,9 +221,15 @@ export const routes = [{
218
221
  }, {
219
222
  key: 'LottieStatusAnimation',
220
223
  getComponent: () => require('@coinbase/cds-mobile/animation/__stories__/LottieStatusAnimation.stories').default
224
+ }, {
225
+ key: 'MediaCard',
226
+ getComponent: () => require('@coinbase/cds-mobile/cards/__stories__/MediaCard.stories').default
221
227
  }, {
222
228
  key: 'MediaChip',
223
229
  getComponent: () => require('@coinbase/cds-mobile/chips/__stories__/MediaChip.stories').default
230
+ }, {
231
+ key: 'MessagingCard',
232
+ getComponent: () => require('@coinbase/cds-mobile/cards/__stories__/MessagingCard.stories').default
224
233
  }, {
225
234
  key: 'ModalBackButton',
226
235
  getComponent: () => require('@coinbase/cds-mobile/overlays/__stories__/ModalBackButton.stories').default
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coinbase/ui-mobile-playground",
3
- "version": "4.6.0",
3
+ "version": "4.7.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.41.0",
38
- "@coinbase/cds-mobile": "^8.41.0",
37
+ "@coinbase/cds-common": "^8.42.0",
38
+ "@coinbase/cds-mobile": "^8.42.0",
39
39
  "@coinbase/cds-mobile-visualization": "^3.4.0-beta.17",
40
40
  "@react-navigation/elements": "^1.3.17",
41
41
  "@react-navigation/native": "^6.1.6",
package/src/routes.ts CHANGED
@@ -200,6 +200,11 @@ export const routes = [
200
200
  getComponent: () =>
201
201
  require('@coinbase/cds-mobile/controls/__stories__/ControlGroup.stories').default,
202
202
  },
203
+ {
204
+ key: 'DataCard',
205
+ getComponent: () =>
206
+ require('@coinbase/cds-mobile/alpha/data-card/__stories__/DataCard.stories').default,
207
+ },
203
208
  {
204
209
  key: 'DateInput',
205
210
  getComponent: () => require('@coinbase/cds-mobile/dates/__stories__/DateInput.stories').default,
@@ -351,10 +356,19 @@ export const routes = [
351
356
  getComponent: () =>
352
357
  require('@coinbase/cds-mobile/animation/__stories__/LottieStatusAnimation.stories').default,
353
358
  },
359
+ {
360
+ key: 'MediaCard',
361
+ getComponent: () => require('@coinbase/cds-mobile/cards/__stories__/MediaCard.stories').default,
362
+ },
354
363
  {
355
364
  key: 'MediaChip',
356
365
  getComponent: () => require('@coinbase/cds-mobile/chips/__stories__/MediaChip.stories').default,
357
366
  },
367
+ {
368
+ key: 'MessagingCard',
369
+ getComponent: () =>
370
+ require('@coinbase/cds-mobile/cards/__stories__/MessagingCard.stories').default,
371
+ },
358
372
  {
359
373
  key: 'ModalBackButton',
360
374
  getComponent: () =>