@movable/ui 1.15.2 → 1.15.3
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/lib/components/InkToggleIcon/InkToggleIcon.d.ts +1 -1
- package/lib/components/InkToggleIconGroup/InkToggleIconGroup.d.ts +1 -3
- package/lib/components/InkToggleText/InkToggleText.d.ts +1 -1
- package/lib/components/InkToggleTextGroup/InkToggleTextGroup.d.ts +1 -3
- package/lib/index.mjs +247 -238
- package/lib/index.mjs.map +1 -1
- package/lib/theme.d.ts +5 -0
- package/package.json +1 -1
package/lib/theme.d.ts
CHANGED
|
@@ -213,6 +213,11 @@ declare module '@mui/material/ToggleButton' {
|
|
|
213
213
|
'x-small': true;
|
|
214
214
|
}
|
|
215
215
|
}
|
|
216
|
+
declare module '@mui/material/ToggleButtonGroup' {
|
|
217
|
+
interface ToggleButtonGroupPropsSizeOverrides {
|
|
218
|
+
'x-small': true;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
216
221
|
declare module '@mui/material/Icon' {
|
|
217
222
|
interface IconPropsSizeOverrides {
|
|
218
223
|
'x-small': true;
|