@coinbase/ui-mobile-playground 4.14.0 → 4.15.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 +5 -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.15.0 (3/23/2026 PST)
|
|
12
|
+
|
|
13
|
+
#### 🚀 Updates
|
|
14
|
+
|
|
15
|
+
- Add custom modal padding route. [[#534](https://github.com/coinbase/cds/pull/534)]
|
|
16
|
+
|
|
11
17
|
## 4.14.0 (3/18/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;;;GAw3BlB,CAAC"}
|
package/esm/routes.js
CHANGED
|
@@ -248,6 +248,9 @@ export const routes = [{
|
|
|
248
248
|
}, {
|
|
249
249
|
key: 'ModalBasic',
|
|
250
250
|
getComponent: () => require('@coinbase/cds-mobile/overlays/__stories__/ModalBasic.stories').default
|
|
251
|
+
}, {
|
|
252
|
+
key: 'ModalCustomPadding',
|
|
253
|
+
getComponent: () => require('@coinbase/cds-mobile/overlays/__stories__/ModalCustomPadding.stories').default
|
|
251
254
|
}, {
|
|
252
255
|
key: 'ModalLong',
|
|
253
256
|
getComponent: () => require('@coinbase/cds-mobile/overlays/__stories__/ModalLong.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.15.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.56.0",
|
|
38
|
+
"@coinbase/cds-mobile": "^8.56.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
|
@@ -399,6 +399,11 @@ export const routes = [
|
|
|
399
399
|
getComponent: () =>
|
|
400
400
|
require('@coinbase/cds-mobile/overlays/__stories__/ModalBasic.stories').default,
|
|
401
401
|
},
|
|
402
|
+
{
|
|
403
|
+
key: 'ModalCustomPadding',
|
|
404
|
+
getComponent: () =>
|
|
405
|
+
require('@coinbase/cds-mobile/overlays/__stories__/ModalCustomPadding.stories').default,
|
|
406
|
+
},
|
|
402
407
|
{
|
|
403
408
|
key: 'ModalLong',
|
|
404
409
|
getComponent: () =>
|