@rango-dev/ui 0.1.14-next.7 → 0.1.14-next.9
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/dist/ui.cjs.development.js +7 -5
- 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 +7 -5
- package/dist/ui.esm.js.map +1 -1
- package/package.json +3 -3
- package/src/components/Checkbox/Checkbox.tsx +2 -0
- package/src/components/Modal/Modal.tsx +3 -2
|
@@ -3384,12 +3384,14 @@ var CheckboxRoot = /*#__PURE__*/styled(RadixCheckbox.Root, {
|
|
|
3384
3384
|
alignItems: 'center',
|
|
3385
3385
|
justifyContent: 'center',
|
|
3386
3386
|
marginRight: '$2',
|
|
3387
|
-
backgroundColor: '$neutral-100'
|
|
3387
|
+
backgroundColor: '$neutral-100',
|
|
3388
|
+
cursor: 'pointer'
|
|
3388
3389
|
});
|
|
3389
3390
|
var Label$1 = /*#__PURE__*/styled('label', {
|
|
3390
3391
|
color: '$foreground',
|
|
3391
3392
|
fontSize: '$m',
|
|
3392
|
-
marginLeft: '$8'
|
|
3393
|
+
marginLeft: '$8',
|
|
3394
|
+
cursor: 'pointer'
|
|
3393
3395
|
});
|
|
3394
3396
|
function Checkbox(_ref) {
|
|
3395
3397
|
var label = _ref.label,
|
|
@@ -3455,7 +3457,8 @@ var BackDrop = /*#__PURE__*/styled('div', {
|
|
|
3455
3457
|
left: '0',
|
|
3456
3458
|
width: '100vw',
|
|
3457
3459
|
height: '100vh',
|
|
3458
|
-
backgroundColor: 'rgba(0,0,0,.1)'
|
|
3460
|
+
backgroundColor: 'rgba(0,0,0,.1)',
|
|
3461
|
+
zIndex: 10
|
|
3459
3462
|
});
|
|
3460
3463
|
var ModalContainer = /*#__PURE__*/styled('div', {
|
|
3461
3464
|
backgroundColor: '$background',
|
|
@@ -3463,8 +3466,7 @@ var ModalContainer = /*#__PURE__*/styled('div', {
|
|
|
3463
3466
|
padding: '$16 $16',
|
|
3464
3467
|
display: 'flex',
|
|
3465
3468
|
flexDirection: 'column',
|
|
3466
|
-
|
|
3467
|
-
zIndex: 10
|
|
3469
|
+
zIndex: 20
|
|
3468
3470
|
});
|
|
3469
3471
|
var Row = /*#__PURE__*/styled('div', {
|
|
3470
3472
|
display: 'flex',
|