odaptos_design_system 1.4.87 → 1.4.88
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/odaptos_design_system.cjs.development.js +19 -13
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +19 -13
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Checkbox/Checkbox.tsx +4 -4
- package/src/Radio/Radio.tsx +15 -9
|
@@ -7219,12 +7219,12 @@ const BpIcon = /*#__PURE__*/styles$K.styled('span')(() => ({
|
|
|
7219
7219
|
backgroundColor: '#f5f8fa',
|
|
7220
7220
|
backgroundImage: 'linear-gradient(180deg,hsla(0,0%,100%,.8),hsla(0,0%,100%,0))',
|
|
7221
7221
|
'.Mui-focusVisible &': {
|
|
7222
|
-
outline: '2px auto #0077FF',
|
|
7222
|
+
outline: '2px auto #0077FF !important',
|
|
7223
7223
|
outlineOffset: 2
|
|
7224
7224
|
},
|
|
7225
7225
|
'input:disabled ~ &': {
|
|
7226
7226
|
border: `1px solid #E1E1E2`,
|
|
7227
|
-
background: '#
|
|
7227
|
+
background: '#FFFFFF',
|
|
7228
7228
|
cursor: 'not-allowed'
|
|
7229
7229
|
}
|
|
7230
7230
|
}));
|
|
@@ -7240,8 +7240,8 @@ const BpCheckedIcon = /*#__PURE__*/styles$K.styled(BpIcon)({
|
|
|
7240
7240
|
content: '""'
|
|
7241
7241
|
},
|
|
7242
7242
|
'input:disabled ~ &': {
|
|
7243
|
-
border: `1px solid #
|
|
7244
|
-
background: '#
|
|
7243
|
+
border: `1px solid #96989A`,
|
|
7244
|
+
background: '#96989A',
|
|
7245
7245
|
cursor: 'not-allowed'
|
|
7246
7246
|
}
|
|
7247
7247
|
});
|
|
@@ -8798,32 +8798,38 @@ styleInject(css_248z$r);
|
|
|
8798
8798
|
|
|
8799
8799
|
const BpIcon$1 = /*#__PURE__*/styles$K.styled('span')(() => ({
|
|
8800
8800
|
borderRadius: '50%',
|
|
8801
|
-
width:
|
|
8802
|
-
height:
|
|
8801
|
+
width: '1rem',
|
|
8802
|
+
height: '1rem',
|
|
8803
8803
|
border: '1px solid #A6A29E',
|
|
8804
8804
|
backgroundColor: '#f5f8fa',
|
|
8805
8805
|
backgroundImage: 'linear-gradient(180deg,hsla(0,0%,100%,.8),hsla(0,0%,100%,0))',
|
|
8806
8806
|
'.Mui-focusVisible &': {
|
|
8807
|
-
outline: '2px auto
|
|
8807
|
+
outline: '2px auto #0077FF !important',
|
|
8808
8808
|
outlineOffset: 2
|
|
8809
8809
|
},
|
|
8810
8810
|
'input:disabled ~ &': {
|
|
8811
|
-
|
|
8812
|
-
background: '
|
|
8811
|
+
border: `1px solid #E1E1E2`,
|
|
8812
|
+
background: '#FFFFFF',
|
|
8813
|
+
cursor: 'not-allowed'
|
|
8813
8814
|
}
|
|
8814
8815
|
}));
|
|
8815
8816
|
const BpCheckedIcon$1 = /*#__PURE__*/styles$K.styled(BpIcon$1)({
|
|
8816
8817
|
backgroundColor: '#0077FF',
|
|
8817
8818
|
border: 'none',
|
|
8818
|
-
width:
|
|
8819
|
-
height:
|
|
8819
|
+
width: '1.1rem',
|
|
8820
|
+
height: '1.1rem',
|
|
8820
8821
|
backgroundImage: 'linear-gradient(180deg,hsla(0,0%,100%,.1),hsla(0,0%,100%,0))',
|
|
8821
8822
|
'&:before': {
|
|
8822
8823
|
display: 'block',
|
|
8823
|
-
width:
|
|
8824
|
-
height:
|
|
8824
|
+
width: '1.1rem',
|
|
8825
|
+
height: '1.1rem',
|
|
8825
8826
|
backgroundImage: 'radial-gradient(#fff,#fff 28%,transparent 32%)',
|
|
8826
8827
|
content: '""'
|
|
8828
|
+
},
|
|
8829
|
+
'input:disabled ~ &': {
|
|
8830
|
+
border: `1px solid #96989A`,
|
|
8831
|
+
background: '#96989A',
|
|
8832
|
+
cursor: 'not-allowed'
|
|
8827
8833
|
}
|
|
8828
8834
|
});
|
|
8829
8835
|
const Radio = ({
|