cozy-ui-plus 2.1.1 → 3.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 CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.0.0](https://github.com/cozy/cozy-libs/compare/cozy-ui-plus@2.2.0...cozy-ui-plus@3.0.0) (2025-11-13)
7
+
8
+ ### Features
9
+
10
+ - Fake commit to create BC ([64dd66a](https://github.com/cozy/cozy-libs/commit/64dd66a098ca3ba61322f712fd6f14d5d772fcc1))
11
+
12
+ ### BREAKING CHANGES
13
+
14
+ - You must have `cozy-ui >= 134.0.0`
15
+
16
+ # [2.2.0](https://github.com/cozy/cozy-libs/compare/cozy-ui-plus@2.1.1...cozy-ui-plus@2.2.0) (2025-11-13)
17
+
18
+ ### Features
19
+
20
+ - **cozy-ui-plus:** Upgrade cozy-ui ([1bd1e3b](https://github.com/cozy/cozy-libs/commit/1bd1e3b431f33a974fef4c5242dfc3cbb317dce7))
21
+
6
22
  ## [2.1.1](https://github.com/cozy/cozy-libs/compare/cozy-ui-plus@2.1.0...cozy-ui-plus@2.1.1) (2025-11-05)
7
23
 
8
24
  ### Bug Fixes
@@ -33,7 +33,7 @@ var CozyThemeWithQuery = function CozyThemeWithQuery(props) {
33
33
  }
34
34
 
35
35
  return /*#__PURE__*/_react.default.createElement(_CozyTheme.default, (0, _extends2.default)({}, props, {
36
- settingsThemeType: instance === null || instance === void 0 ? void 0 : instance.colorScheme
36
+ type: instance === null || instance === void 0 ? void 0 : instance.colorScheme
37
37
  }));
38
38
  };
39
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui-plus",
3
- "version": "2.1.1",
3
+ "version": "3.0.0",
4
4
  "description": "Cozy-ui-plus is an extension of cozy-ui and provides components based on cozy-client",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
@@ -37,7 +37,7 @@
37
37
  "cozy-intent": "^2.30.1",
38
38
  "cozy-logger": "^1.17.0",
39
39
  "cozy-stack-client": "^60.1.0",
40
- "cozy-ui": "^132.0.0",
40
+ "cozy-ui": "^134.0.0",
41
41
  "jest": "26.6.3",
42
42
  "jest-canvas-mock": "2.3.1",
43
43
  "jest-environment-jsdom": "26.6.2",
@@ -68,9 +68,9 @@
68
68
  "cozy-device-helper": ">=2.0.0",
69
69
  "cozy-intent": ">=2.30.0",
70
70
  "cozy-logger": ">=1.17.0",
71
- "cozy-ui": ">=132.0.0",
71
+ "cozy-ui": ">=134.0.0",
72
72
  "react": "^16 || ^17 || ^18",
73
73
  "react-dom": "^16 || ^17 || ^18"
74
74
  },
75
- "gitHead": "c53696d649980df8a8780451c87c29bc005cea1e"
75
+ "gitHead": "54775dc73cffda8eb60232a381bdc699a3f0a189"
76
76
  }
@@ -27,6 +27,7 @@ if no application was found, we fallback on a default `CubeIcon`
27
27
  import AppIcon from 'cozy-ui/transpiled/react/AppIcon'
28
28
 
29
29
  ;
30
+
30
31
  <div>
31
32
  <div style={{ width: '100px' }}>
32
33
  <AppIcon app="test" />
@@ -19,7 +19,7 @@ const CozyThemeWithQuery = props => {
19
19
  return null
20
20
  }
21
21
 
22
- return <DumbCozyTheme {...props} settingsThemeType={instance?.colorScheme} />
22
+ return <DumbCozyTheme {...props} type={instance?.colorScheme} />
23
23
  }
24
24
 
25
25
  export default CozyThemeWithQuery