@coinbase/ui-mobile-playground 4.10.0 → 4.11.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 +6 -0
- package/dts/routes.d.ts.map +1 -1
- package/esm/routes.js +3 -0
- package/package.json +3 -3
- package/src/routes.ts +4 -0
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.11.0 (3/10/2026 PST)
|
|
12
|
+
|
|
13
|
+
#### 🚀 Updates
|
|
14
|
+
|
|
15
|
+
- Add new route for Fallback component. [[#388](https://github.com/coinbase/cds/pull/388)]
|
|
16
|
+
|
|
11
17
|
## 4.10.0 (3/9/2026 PST)
|
|
12
18
|
|
|
13
19
|
#### 🚀 Updates
|
package/dts/routes.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../src/routes.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,MAAM;;;
|
|
1
|
+
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../src/routes.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,MAAM;;;GAy2BlB,CAAC"}
|
package/esm/routes.js
CHANGED
|
@@ -164,6 +164,9 @@ export const routes = [{
|
|
|
164
164
|
}, {
|
|
165
165
|
key: 'DrawerTop',
|
|
166
166
|
getComponent: () => require('@coinbase/cds-mobile/overlays/__stories__/DrawerTop.stories').default
|
|
167
|
+
}, {
|
|
168
|
+
key: 'Fallback',
|
|
169
|
+
getComponent: () => require('@coinbase/cds-mobile/layout/__stories__/Fallback.stories').default
|
|
167
170
|
}, {
|
|
168
171
|
key: 'FloatingAssetCard',
|
|
169
172
|
getComponent: () => require('@coinbase/cds-mobile/cards/__stories__/FloatingAssetCard.stories').default
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coinbase/ui-mobile-playground",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.11.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.
|
|
38
|
-
"@coinbase/cds-mobile": "^8.
|
|
37
|
+
"@coinbase/cds-common": "^8.52.0",
|
|
38
|
+
"@coinbase/cds-mobile": "^8.52.0",
|
|
39
39
|
"@coinbase/cds-mobile-visualization": "^3.4.0-beta.22",
|
|
40
40
|
"@react-navigation/elements": "^1.3.17",
|
|
41
41
|
"@react-navigation/native": "^6.1.6",
|
package/src/routes.ts
CHANGED
|
@@ -267,6 +267,10 @@ export const routes = [
|
|
|
267
267
|
getComponent: () =>
|
|
268
268
|
require('@coinbase/cds-mobile/overlays/__stories__/DrawerTop.stories').default,
|
|
269
269
|
},
|
|
270
|
+
{
|
|
271
|
+
key: 'Fallback',
|
|
272
|
+
getComponent: () => require('@coinbase/cds-mobile/layout/__stories__/Fallback.stories').default,
|
|
273
|
+
},
|
|
270
274
|
{
|
|
271
275
|
key: 'FloatingAssetCard',
|
|
272
276
|
getComponent: () =>
|