pne-ui 1.1.1 → 2.0.2
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 +20 -3
- package/package.json +14 -11
package/README.md
CHANGED
|
@@ -5,16 +5,33 @@
|
|
|
5
5
|
|
|
6
6
|
Our wrapper over mui
|
|
7
7
|
|
|
8
|
-
## Installation
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
Install `pne-ui` together with its peer dependencies to avoid missing-package warnings:
|
|
9
11
|
|
|
10
12
|
```bash
|
|
11
|
-
yarn add pne-ui
|
|
13
|
+
yarn add pne-ui @emotion/react@^11 @emotion/styled@^11 @mui/material@^5 @mui/system@^5 @mui/x-date-pickers-pro@^6 @mui/icons-material@^5 i18next@^23 react@^18 react-dom@^18 react-i18next@^11
|
|
12
14
|
```
|
|
13
15
|
|
|
16
|
+
Adjust the React and React DOM versions to `^18` or `^19` depending on your application.
|
|
17
|
+
|
|
18
|
+
Required peer packages and minimum versions:
|
|
19
|
+
|
|
20
|
+
- `@emotion/react@^11`
|
|
21
|
+
- `@emotion/styled@^11`
|
|
22
|
+
- `@mui/material@^5`
|
|
23
|
+
- `@mui/system@^5`
|
|
24
|
+
- `@mui/x-date-pickers-pro@^6`
|
|
25
|
+
- `@mui/icons-material@^5`
|
|
26
|
+
- `i18next@^23`
|
|
27
|
+
- `react@^18 || ^19`
|
|
28
|
+
- `react-dom@^18 || ^19`
|
|
29
|
+
- `react-i18next@^11`
|
|
30
|
+
|
|
14
31
|
[npm-url]: https://www.npmjs.com/package/pne-ui
|
|
15
32
|
|
|
16
33
|
[npm-image]: https://img.shields.io/npm/v/pne-ui
|
|
17
34
|
|
|
18
35
|
[github-build]: https://github.com/alcovp/pne-ui/actions/workflows/publish.yml/badge.svg
|
|
19
36
|
|
|
20
|
-
[github-build-url]: https://github.com/alcovp/pne-ui/actions/workflows/publish.yml
|
|
37
|
+
[github-build-url]: https://github.com/alcovp/pne-ui/actions/workflows/publish.yml
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pne-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"build-storybook": "storybook build",
|
|
34
34
|
"chromatic": "npx chromatic"
|
|
35
35
|
},
|
|
36
|
+
"sideEffects": false,
|
|
36
37
|
"keywords": [
|
|
37
38
|
"react",
|
|
38
39
|
"typescript",
|
|
@@ -51,15 +52,16 @@
|
|
|
51
52
|
},
|
|
52
53
|
"license": "MIT",
|
|
53
54
|
"peerDependencies": {
|
|
54
|
-
"@emotion/react": "^11
|
|
55
|
-
"@emotion/styled": "^11
|
|
56
|
-
"@mui/material": "^5
|
|
57
|
-
"@mui/
|
|
58
|
-
"@mui/
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"react
|
|
62
|
-
"react-
|
|
55
|
+
"@emotion/react": "^11",
|
|
56
|
+
"@emotion/styled": "^11",
|
|
57
|
+
"@mui/icons-material": "^5",
|
|
58
|
+
"@mui/material": "^5",
|
|
59
|
+
"@mui/system": "^5",
|
|
60
|
+
"@mui/x-date-pickers-pro": "^6",
|
|
61
|
+
"i18next": "^23",
|
|
62
|
+
"react": "^18 || ^19",
|
|
63
|
+
"react-dom": "^18 || ^19",
|
|
64
|
+
"react-i18next": "^11"
|
|
63
65
|
},
|
|
64
66
|
"devDependencies": {
|
|
65
67
|
"@babel/core": "7.26.0",
|
|
@@ -83,6 +85,7 @@
|
|
|
83
85
|
"@storybook/blocks": "8.0.9",
|
|
84
86
|
"@storybook/react": "8.0.9",
|
|
85
87
|
"@storybook/react-webpack5": "8.0.9",
|
|
88
|
+
"@storybook/test": "8.0.9",
|
|
86
89
|
"@testing-library/react": "14.0.0",
|
|
87
90
|
"@types/babel__core": "^7",
|
|
88
91
|
"@types/jest": "29.5.2",
|
|
@@ -112,9 +115,9 @@
|
|
|
112
115
|
},
|
|
113
116
|
"dependencies": {
|
|
114
117
|
"@hello-pangea/dnd": "16.6.0",
|
|
115
|
-
"@storybook/test": "8.0.9",
|
|
116
118
|
"dayjs": "1.11.5",
|
|
117
119
|
"immer": "10.0.3",
|
|
120
|
+
"lodash": "^4.17.21",
|
|
118
121
|
"react-beautiful-dnd": "11.0.5",
|
|
119
122
|
"react-imask": "^7.6.1",
|
|
120
123
|
"react-is": "18.2.0",
|