cozy-ui 112.1.0 → 112.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/CHANGELOG.md +14 -0
- package/jest.config.js +0 -1
- package/package.json +1 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [112.3.0](https://github.com/cozy/cozy-ui/compare/v112.2.0...v112.3.0) (2024-10-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Remove unused react-pdf dep ([ae84e89](https://github.com/cozy/cozy-ui/commit/ae84e89))
|
|
7
|
+
|
|
8
|
+
# [112.2.0](https://github.com/cozy/cozy-ui/compare/v112.1.0...v112.2.0) (2024-10-30)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Remove useless cozy-sharing from peer deps ([5ac6a96](https://github.com/cozy/cozy-ui/commit/5ac6a96))
|
|
14
|
+
|
|
1
15
|
# [112.1.0](https://github.com/cozy/cozy-ui/compare/v112.0.0...v112.1.0) (2024-10-30)
|
|
2
16
|
|
|
3
17
|
|
package/jest.config.js
CHANGED
|
@@ -11,7 +11,6 @@ module.exports = {
|
|
|
11
11
|
'react-styleguidist.+\\.jsx?$': 'babel-jest',
|
|
12
12
|
'^rsg-components(.*)$':
|
|
13
13
|
'<rootDir>/node_modules/react-styleguidist/lib/client/rsg-components$1',
|
|
14
|
-
'react-pdf/dist/esm/entry.webpack': 'react-pdf',
|
|
15
14
|
'^cozy-client$': 'cozy-client/dist/index'
|
|
16
15
|
},
|
|
17
16
|
transformIgnorePatterns: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cozy-ui",
|
|
3
|
-
"version": "112.
|
|
3
|
+
"version": "112.3.0",
|
|
4
4
|
"description": "Cozy apps UI SDK",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"bin": {
|
|
@@ -100,7 +100,6 @@
|
|
|
100
100
|
"cozy-harvest-lib": "^6.7.3",
|
|
101
101
|
"cozy-intent": "1.16.1",
|
|
102
102
|
"cozy-logger": "^1.9.0",
|
|
103
|
-
"cozy-sharing": "^14.1.0",
|
|
104
103
|
"cozy-stack-client": "^47.4.0",
|
|
105
104
|
"css-loader": "0.28.11",
|
|
106
105
|
"cssnano": "4.1.11",
|
|
@@ -182,7 +181,6 @@
|
|
|
182
181
|
"piwik-react-router": "0.12.1",
|
|
183
182
|
"react-chartjs-2": "4.1.0",
|
|
184
183
|
"react-markdown": "^4.0.8",
|
|
185
|
-
"react-pdf": "^5.7.2",
|
|
186
184
|
"react-popper": "^2.2.3",
|
|
187
185
|
"react-remove-scroll": "^2.4.0",
|
|
188
186
|
"react-select": "^4.3.0",
|
|
@@ -194,7 +192,6 @@
|
|
|
194
192
|
"cozy-device-helper": "^2.0.0",
|
|
195
193
|
"cozy-harvest-lib": "^6.7.3",
|
|
196
194
|
"cozy-intent": ">=1.3.0",
|
|
197
|
-
"cozy-sharing": ">=14.1.0",
|
|
198
195
|
"react": "^16.8.6",
|
|
199
196
|
"react-dom": "^16.8.6"
|
|
200
197
|
},
|