@tracktor/design-system 3.4.4 → 3.5.0
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/CHANGELOG.md +3 -2
- package/dist/main.cjs +12 -12
- package/dist/main.js +804 -772
- package/dist/src/config/theme.d.ts +6 -0
- package/package.json +2 -2
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { Theme as MuiTheme } from '@mui/material';
|
|
2
2
|
import { CSSProperties } from 'react';
|
|
3
|
+
declare module "@mui/material/Alert" {
|
|
4
|
+
interface AlertPropsColorOverrides {
|
|
5
|
+
primary: true;
|
|
6
|
+
secondary: true;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
3
9
|
declare module "@mui/material/Autocomplete" {
|
|
4
10
|
interface AutocompletePropsSizeOverrides {
|
|
5
11
|
xSmall: true;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@tracktor/design-system",
|
|
3
3
|
"description": "Tracktor Design System",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "3.
|
|
5
|
+
"version": "3.5.0",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"types": "./dist/src/main.d.ts",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"dependencies": {
|
|
91
91
|
"@emotion/react": "^11.13.3",
|
|
92
92
|
"@emotion/styled": "^11.13.0",
|
|
93
|
-
"@mui/material": "
|
|
93
|
+
"@mui/material": "~6.2.0"
|
|
94
94
|
},
|
|
95
95
|
"peerDependencies": {
|
|
96
96
|
"@emotion/react": ">=11.0.0",
|