@rabex-kit/rabex-ui 0.1.30 → 0.1.32
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/Skeleton/index.d.ts +1 -1
- package/dist/rabex-ui.cjs.development.js +18 -4
- package/dist/rabex-ui.cjs.development.js.map +1 -1
- package/dist/rabex-ui.cjs.production.min.js +1 -1
- package/dist/rabex-ui.cjs.production.min.js.map +1 -1
- package/dist/rabex-ui.esm.js +18 -4
- package/dist/rabex-ui.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/rabex-ui.esm.js
CHANGED
@@ -1768,7 +1768,7 @@ var SelectItem = function SelectItem(props) {
|
|
1768
1768
|
* You can read Material-UI Button Documentation [here](https://mui.com/material-ui/api/skeleton/).
|
1769
1769
|
*
|
1770
1770
|
* ```typescript
|
1771
|
-
* import { Skeleton } from '@rabex-kit/
|
1771
|
+
* import { Skeleton } from '@rabex-kit/rabex-ui';
|
1772
1772
|
* ```
|
1773
1773
|
*
|
1774
1774
|
*
|
@@ -3897,6 +3897,7 @@ var components$3 = {
|
|
3897
3897
|
style: function style(_ref3) {
|
3898
3898
|
var theme = _ref3.theme;
|
3899
3899
|
return {
|
3900
|
+
height: '32px',
|
3900
3901
|
fontSize: '14px',
|
3901
3902
|
lineHeight: '24px',
|
3902
3903
|
padding: theme.spacing(1, 3)
|
@@ -3909,6 +3910,7 @@ var components$3 = {
|
|
3909
3910
|
style: function style(_ref4) {
|
3910
3911
|
var theme = _ref4.theme;
|
3911
3912
|
return {
|
3913
|
+
height: '40px',
|
3912
3914
|
fontSize: '14px',
|
3913
3915
|
lineHeight: '24px',
|
3914
3916
|
padding: theme.spacing(2, 3)
|
@@ -3921,6 +3923,7 @@ var components$3 = {
|
|
3921
3923
|
style: function style(_ref5) {
|
3922
3924
|
var theme = _ref5.theme;
|
3923
3925
|
return {
|
3926
|
+
height: '48px',
|
3924
3927
|
fontSize: '14px',
|
3925
3928
|
lineHeight: '24px',
|
3926
3929
|
padding: theme.spacing(3)
|
@@ -3933,6 +3936,7 @@ var components$3 = {
|
|
3933
3936
|
style: function style(_ref6) {
|
3934
3937
|
var theme = _ref6.theme;
|
3935
3938
|
return {
|
3939
|
+
height: '48px',
|
3936
3940
|
fontSize: '16px',
|
3937
3941
|
lineHeight: '24px',
|
3938
3942
|
padding: theme.spacing(3)
|
@@ -5783,6 +5787,13 @@ var SegmentedControl = /*#__PURE__*/styled(MuiTabs, {
|
|
5783
5787
|
minHeight: 'unset',
|
5784
5788
|
display: 'flex',
|
5785
5789
|
backgroundColor: theme.palette.backgroundColor[200],
|
5790
|
+
// padding: theme.spacing(1),
|
5791
|
+
// '& .MuiTabs-root': {
|
5792
|
+
// padding: theme.spacing(1),
|
5793
|
+
// },
|
5794
|
+
'& .MuiTabs-fixed': {
|
5795
|
+
padding: theme.spacing(1)
|
5796
|
+
},
|
5786
5797
|
'& .MuiTabs-flexContainer': {
|
5787
5798
|
gap: theme.spacing(1)
|
5788
5799
|
}
|
@@ -5796,7 +5807,8 @@ var SegmentedControl = /*#__PURE__*/styled(MuiTabs, {
|
|
5796
5807
|
},
|
5797
5808
|
'&.MuiTab-root.Mui-selected': {
|
5798
5809
|
color: 'inherit',
|
5799
|
-
borderRadius: theme.spacing(1)
|
5810
|
+
borderRadius: theme.spacing(1),
|
5811
|
+
height: theme.spacing(6)
|
5800
5812
|
}
|
5801
5813
|
}, ownerState.size === 'md' && {
|
5802
5814
|
height: theme.spacing(12),
|
@@ -5808,7 +5820,8 @@ var SegmentedControl = /*#__PURE__*/styled(MuiTabs, {
|
|
5808
5820
|
},
|
5809
5821
|
'& .MuiTab-root.Mui-selected': {
|
5810
5822
|
color: 'inherit',
|
5811
|
-
borderRadius: theme.spacing(2)
|
5823
|
+
borderRadius: theme.spacing(2),
|
5824
|
+
height: theme.spacing(10)
|
5812
5825
|
}
|
5813
5826
|
}, ownerState.size === 'lg' && {
|
5814
5827
|
height: theme.spacing(14),
|
@@ -5820,7 +5833,8 @@ var SegmentedControl = /*#__PURE__*/styled(MuiTabs, {
|
|
5820
5833
|
},
|
5821
5834
|
'& .MuiTab-root.Mui-selected': {
|
5822
5835
|
color: 'inherit',
|
5823
|
-
borderRadius: theme.spacing(2)
|
5836
|
+
borderRadius: theme.spacing(2),
|
5837
|
+
height: theme.spacing(12)
|
5824
5838
|
}
|
5825
5839
|
}, ownerState.variant === 'fullWidth' && {
|
5826
5840
|
width: '100%'
|