cozy-sharing 34.0.0 → 34.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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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
+ ## [34.0.2](https://github.com/cozy/cozy-libs/compare/cozy-sharing@34.0.1...cozy-sharing@34.0.2) (2026-06-24)
7
+
8
+ **Note:** Version bump only for package cozy-sharing
9
+
10
+ ## [34.0.1](https://github.com/cozy/cozy-libs/compare/cozy-sharing@34.0.0...cozy-sharing@34.0.1) (2026-06-24)
11
+
12
+ **Note:** Version bump only for package cozy-sharing
13
+
6
14
  # [34.0.0](https://github.com/cozy/cozy-libs/compare/cozy-sharing@33.6.1...cozy-sharing@34.0.0) (2026-06-24)
7
15
 
8
16
  ### Features
@@ -1,7 +1,7 @@
1
1
  const React = require('react')
2
2
 
3
- const Icon = ({ icon, ...props }) =>
4
- React.createElement('span', { 'data-icon': true, ...props })
3
+ const Icon = ({ icon, iconRef, ...props }) =>
4
+ React.createElement('svg', { 'data-icon': true, ...props })
5
5
 
6
6
  const Sprite = () => null
7
7
 
@@ -14,7 +14,7 @@ const proxyHandler = {
14
14
  get: function (target, prop) {
15
15
  if (prop in target) return target[prop]
16
16
  if (prop === 'default') return target.Icon
17
- return function IconMock(props) {
17
+ return function IconMock({ iconRef, ...props }) {
18
18
  return React.createElement('svg', { 'data-mock-icon': prop, ...props })
19
19
  }
20
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-sharing",
3
- "version": "34.0.0",
3
+ "version": "34.0.2",
4
4
  "description": "Provides sharing login for React applications.",
5
5
  "main": "dist/index.js",
6
6
  "author": "Cozy",
@@ -59,7 +59,7 @@
59
59
  "cozy-intent": "^2.31.1",
60
60
  "cozy-minilog": "^3.10.1",
61
61
  "cozy-ui": "^139.0.2",
62
- "cozy-ui-plus": "^8.0.1",
62
+ "cozy-ui-plus": "^9.0.0",
63
63
  "jest": "30.3.0",
64
64
  "jest-environment-jsdom": "30.3.0",
65
65
  "react": "16.12.0",
@@ -85,5 +85,5 @@
85
85
  "sideEffects": [
86
86
  "*.css"
87
87
  ],
88
- "gitHead": "99a6d19a4f3f61c99cc785c87126e3e2f0bfa646"
88
+ "gitHead": "1526f0d72beb8a728568c4bccdf7e658b5c9e389"
89
89
  }