cozy-ui 112.2.0 → 113.0.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 +19 -0
- package/jest.config.js +1 -4
- package/package.json +1 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# [113.0.0](https://github.com/cozy/cozy-ui/compare/v112.3.0...v113.0.0) (2024-11-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Remove cozy-harvest-lib ([df104df](https://github.com/cozy/cozy-ui/commit/df104df))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* you do not need anymore cozy-harvest-lib. Please check if you added it in your app only for cozy-ui.
|
|
12
|
+
|
|
13
|
+
# [112.3.0](https://github.com/cozy/cozy-ui/compare/v112.2.0...v112.3.0) (2024-10-31)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* Remove unused react-pdf dep ([ae84e89](https://github.com/cozy/cozy-ui/commit/ae84e89))
|
|
19
|
+
|
|
1
20
|
# [112.2.0](https://github.com/cozy/cozy-ui/compare/v112.1.0...v112.2.0) (2024-10-30)
|
|
2
21
|
|
|
3
22
|
|
package/jest.config.js
CHANGED
|
@@ -11,12 +11,9 @@ 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
|
-
transformIgnorePatterns: [
|
|
18
|
-
'node_modules/(?!(react-styleguidist|cozy-harvest-lib)/)'
|
|
19
|
-
],
|
|
16
|
+
transformIgnorePatterns: ['node_modules/(?!(react-styleguidist)/)'],
|
|
20
17
|
testPathIgnorePatterns: ['/node_modules/', '/transpiled/', '/dist/'],
|
|
21
18
|
transform: {
|
|
22
19
|
'^.+\\.(ts|tsx|js|jsx)?$': 'babel-jest'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cozy-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "113.0.0",
|
|
4
4
|
"description": "Cozy apps UI SDK",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"bin": {
|
|
@@ -97,7 +97,6 @@
|
|
|
97
97
|
"cozy-client": "^48.8.0",
|
|
98
98
|
"cozy-device-helper": "2.0.0",
|
|
99
99
|
"cozy-flags": "^2.10.1",
|
|
100
|
-
"cozy-harvest-lib": "^6.7.3",
|
|
101
100
|
"cozy-intent": "1.16.1",
|
|
102
101
|
"cozy-logger": "^1.9.0",
|
|
103
102
|
"cozy-stack-client": "^47.4.0",
|
|
@@ -181,7 +180,6 @@
|
|
|
181
180
|
"piwik-react-router": "0.12.1",
|
|
182
181
|
"react-chartjs-2": "4.1.0",
|
|
183
182
|
"react-markdown": "^4.0.8",
|
|
184
|
-
"react-pdf": "^5.7.2",
|
|
185
183
|
"react-popper": "^2.2.3",
|
|
186
184
|
"react-remove-scroll": "^2.4.0",
|
|
187
185
|
"react-select": "^4.3.0",
|
|
@@ -191,7 +189,6 @@
|
|
|
191
189
|
"peerDependencies": {
|
|
192
190
|
"cozy-client": ">=48.8.0",
|
|
193
191
|
"cozy-device-helper": "^2.0.0",
|
|
194
|
-
"cozy-harvest-lib": "^6.7.3",
|
|
195
192
|
"cozy-intent": ">=1.3.0",
|
|
196
193
|
"react": "^16.8.6",
|
|
197
194
|
"react-dom": "^16.8.6"
|