@mui-toolpad-extended-tuni/main 3.2.0 → 3.3.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/README.md +17 -8
- package/dist/index.cjs +51 -32
- package/dist/index.es.js +4726 -3998
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -5,28 +5,37 @@ Main package for MUI Toolpad Extended TUNI - provides ToolpadProvider, LMS compo
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @mui-toolpad-extended-tuni/main
|
|
8
|
+
npm install @mui-toolpad-extended-tuni/main @mui-toolpad-extended-tuni/core
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
**Important**: You must also install `@mui-toolpad-extended-tuni/core` as it is a required peer dependency.
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
## Required Peer Dependencies
|
|
14
14
|
|
|
15
|
+
This package requires the following peer dependencies to be installed:
|
|
16
|
+
|
|
17
|
+
### Required Package
|
|
18
|
+
- **`@mui-toolpad-extended-tuni/core`**: ^3.1.0 - **MUST be installed separately**
|
|
19
|
+
|
|
20
|
+
### React & UI Framework
|
|
15
21
|
- `@emotion/react`: ^11.0.0
|
|
16
22
|
- `@emotion/styled`: ^11.0.0
|
|
17
23
|
- `@mui/icons-material`: ^7.0.0
|
|
18
24
|
- `@mui/material`: ^7.0.0
|
|
19
25
|
- `@mui/x-date-pickers`: ^7.0.0
|
|
20
|
-
- `@toolpad/core`: ^0.16.0
|
|
21
26
|
- `react`: ^19.0.0
|
|
22
27
|
- `react-dom`: ^19.0.0
|
|
23
28
|
- `react-router-dom`: ^7.0.0
|
|
24
29
|
- `zustand`: ^4.5.0
|
|
25
30
|
|
|
26
|
-
|
|
31
|
+
### Installation Example
|
|
27
32
|
|
|
28
|
-
|
|
29
|
-
-
|
|
33
|
+
```bash
|
|
34
|
+
npm install @mui-toolpad-extended-tuni/main @mui-toolpad-extended-tuni/core \
|
|
35
|
+
@emotion/react @emotion/styled \
|
|
36
|
+
@mui/icons-material @mui/material @mui/x-date-pickers \
|
|
37
|
+
react react-dom react-router-dom zustand
|
|
38
|
+
```
|
|
30
39
|
|
|
31
40
|
## Optional Extension Packages
|
|
32
41
|
|
|
@@ -112,7 +121,7 @@ If you're migrating from the deprecated `mui-toolpad-extended-tuni` package:
|
|
|
112
121
|
```json
|
|
113
122
|
{
|
|
114
123
|
"dependencies": {
|
|
115
|
-
"@mui-toolpad-extended-tuni/main": "^3.
|
|
124
|
+
"@mui-toolpad-extended-tuni/main": "^3.3.0"
|
|
116
125
|
}
|
|
117
126
|
}
|
|
118
127
|
```
|