@rango-dev/ui 0.1.14-next.8 → 0.1.14
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 +11 -0
- package/dist/ui.cjs.development.js +3 -3
- package/dist/ui.cjs.development.js.map +1 -1
- package/dist/ui.cjs.production.min.js +1 -1
- package/dist/ui.cjs.production.min.js.map +1 -1
- package/dist/ui.esm.js +3 -3
- package/dist/ui.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/components/Modal/Modal.tsx +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
## [0.1.14](https://github.com/rango-exchange/rango-client/compare/ui@0.1.13...ui@0.1.14) (2023-05-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Fixed colorpicker ([d821340](https://github.com/rango-exchange/rango-client/commit/d821340fc3f5df07ccbfc3555ae4d7dba0cad49b))
|
|
7
|
+
* some polishment on playground ([cf17f9e](https://github.com/rango-exchange/rango-client/commit/cf17f9e2ac2efc9467c4f550e09eaf19170bbbf0))
|
|
8
|
+
* update rango-types and fix notification bugs ([993f185](https://github.com/rango-exchange/rango-client/commit/993f185e0b8c5e5e15a2c65ba2d85d1f9c8daa90))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
@@ -3457,7 +3457,8 @@ var BackDrop = /*#__PURE__*/styled('div', {
|
|
|
3457
3457
|
left: '0',
|
|
3458
3458
|
width: '100vw',
|
|
3459
3459
|
height: '100vh',
|
|
3460
|
-
backgroundColor: 'rgba(0,0,0,.1)'
|
|
3460
|
+
backgroundColor: 'rgba(0,0,0,.1)',
|
|
3461
|
+
zIndex: 10
|
|
3461
3462
|
});
|
|
3462
3463
|
var ModalContainer = /*#__PURE__*/styled('div', {
|
|
3463
3464
|
backgroundColor: '$background',
|
|
@@ -3465,8 +3466,7 @@ var ModalContainer = /*#__PURE__*/styled('div', {
|
|
|
3465
3466
|
padding: '$16 $16',
|
|
3466
3467
|
display: 'flex',
|
|
3467
3468
|
flexDirection: 'column',
|
|
3468
|
-
|
|
3469
|
-
zIndex: 10
|
|
3469
|
+
zIndex: 20
|
|
3470
3470
|
});
|
|
3471
3471
|
var Row = /*#__PURE__*/styled('div', {
|
|
3472
3472
|
display: 'flex',
|