@rabex-kit/rabex-ui 0.0.6 → 0.0.7
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/Theme/Accordion/index.d.ts +2 -1
- package/dist/Theme/Input/index.d.ts +1 -1
- package/dist/rabex-ui.cjs.development.js +8 -7
- 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 +8 -7
- package/dist/rabex-ui.esm.js.map +1 -1
- package/package.json +1 -1
@@ -1279,7 +1279,7 @@ function _handleHelperColor(props, key) {
|
|
1279
1279
|
* You can read Material-UI Input Documentation [here](https://mui.com/material-ui/api/input/).
|
1280
1280
|
*
|
1281
1281
|
* ```typescript
|
1282
|
-
* import { Input } from '@rabex-kit/
|
1282
|
+
* import { Input } from '@rabex-kit/rabex-ui';
|
1283
1283
|
* ```
|
1284
1284
|
*
|
1285
1285
|
*
|
@@ -4044,18 +4044,19 @@ var RabexAccordion = {
|
|
4044
4044
|
components: {
|
4045
4045
|
styleOverrides: {
|
4046
4046
|
root: {
|
4047
|
-
borderRadius:
|
4048
|
-
|
4047
|
+
borderRadius: 12,
|
4048
|
+
paddingX: 16,
|
4049
|
+
paddingY: 12,
|
4049
4050
|
'&::before': {
|
4050
4051
|
display: 'none'
|
4051
4052
|
},
|
4052
4053
|
'&:first-of-type': {
|
4053
|
-
borderTopRightRadius:
|
4054
|
-
borderTopLeftRadius:
|
4054
|
+
borderTopRightRadius: 12,
|
4055
|
+
borderTopLeftRadius: 12
|
4055
4056
|
},
|
4056
4057
|
'&:last-of-type': {
|
4057
|
-
borderBottomRightRadius:
|
4058
|
-
borderBottomLeftRadius:
|
4058
|
+
borderBottomRightRadius: 12,
|
4059
|
+
borderBottomLeftRadius: 12
|
4059
4060
|
}
|
4060
4061
|
}
|
4061
4062
|
}
|