cozy-sharing 33.3.3 → 33.3.4
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,12 @@
|
|
|
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
|
+
## [33.3.4](https://github.com/cozy/cozy-libs/compare/cozy-sharing@33.3.3...cozy-sharing@33.3.4) (2026-06-11)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- Remove strange custom color on share by me button ([712a261](https://github.com/cozy/cozy-libs/commit/712a2610eb572e00c9934745a978fd562154140a))
|
|
11
|
+
|
|
6
12
|
## [33.3.3](https://github.com/cozy/cozy-libs/compare/cozy-sharing@33.3.2...cozy-sharing@33.3.3) (2026-06-11)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
|
@@ -39,7 +39,7 @@ export var SharedByMeButton = function SharedByMeButton(_ref2) {
|
|
|
39
39
|
|
|
40
40
|
return /*#__PURE__*/React.createElement(Button, _extends({
|
|
41
41
|
"data-test-id": "share-by-me-button",
|
|
42
|
-
className:
|
|
42
|
+
className: className,
|
|
43
43
|
onClick: function onClick() {
|
|
44
44
|
return _onClick2();
|
|
45
45
|
},
|
package/dist/styles/button.styl
CHANGED
|
@@ -4,11 +4,6 @@
|
|
|
4
4
|
color: var(--primaryContrastTextColor)
|
|
5
5
|
transition all .2s ease-out
|
|
6
6
|
|
|
7
|
-
&:focus
|
|
8
|
-
&:not([disabled]):not([aria-disabled=true]):hover
|
|
9
|
-
border-color: var(--malachite)
|
|
10
|
-
background-color: var(--malachite)
|
|
11
|
-
|
|
12
7
|
.coz-btn-sharedWithMe
|
|
13
8
|
border-color: #B449E7
|
|
14
9
|
background-color: #B449E7
|
package/dist/stylesheet.css
CHANGED
|
@@ -453,11 +453,6 @@ input[type=text] {
|
|
|
453
453
|
color: var(--primaryContrastTextColor);
|
|
454
454
|
transition: all 0.2s ease-out;
|
|
455
455
|
}
|
|
456
|
-
.button__coz-btn-shared___9MFbY:focus,
|
|
457
|
-
.button__coz-btn-shared___9MFbY:not([disabled]):not([aria-disabled=true]):hover {
|
|
458
|
-
border-color: var(--malachite);
|
|
459
|
-
background-color: var(--malachite);
|
|
460
|
-
}
|
|
461
456
|
.button__coz-btn-sharedWithMe___25PBh {
|
|
462
457
|
border-color: #b449e7;
|
|
463
458
|
background-color: #b449e7;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cozy-sharing",
|
|
3
|
-
"version": "33.3.
|
|
3
|
+
"version": "33.3.4",
|
|
4
4
|
"description": "Provides sharing login for React applications.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"author": "Cozy",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"sideEffects": [
|
|
84
84
|
"*.css"
|
|
85
85
|
],
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "05ad9ddb799d8a239d336c0a31c3a87552394d48"
|
|
87
87
|
}
|
|
@@ -22,7 +22,7 @@ export const ShareButton = ({ label, onClick, className, ...props }) => (
|
|
|
22
22
|
export const SharedByMeButton = ({ label, onClick, className, ...props }) => (
|
|
23
23
|
<Button
|
|
24
24
|
data-test-id="share-by-me-button"
|
|
25
|
-
className={
|
|
25
|
+
className={className}
|
|
26
26
|
onClick={() => onClick()}
|
|
27
27
|
icon={<Icon icon={ShareIcon} />}
|
|
28
28
|
label={label}
|
package/src/styles/button.styl
CHANGED
|
@@ -4,11 +4,6 @@
|
|
|
4
4
|
color: var(--primaryContrastTextColor)
|
|
5
5
|
transition all .2s ease-out
|
|
6
6
|
|
|
7
|
-
&:focus
|
|
8
|
-
&:not([disabled]):not([aria-disabled=true]):hover
|
|
9
|
-
border-color: var(--malachite)
|
|
10
|
-
background-color: var(--malachite)
|
|
11
|
-
|
|
12
7
|
.coz-btn-sharedWithMe
|
|
13
8
|
border-color: #B449E7
|
|
14
9
|
background-color: #B449E7
|