cozy-sharing 26.0.1 → 26.1.1
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,19 @@
|
|
|
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
|
+
## [26.1.1](https://github.com/cozy/cozy-libs/compare/cozy-sharing@26.1.0...cozy-sharing@26.1.1) (2025-09-15)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- Remove black background in add recipient input :bug: ([07643c2](https://github.com/cozy/cozy-libs/commit/07643c27d4dcf8828c8dc4b2c4a75c8fcc431032))
|
|
11
|
+
|
|
12
|
+
# [26.1.0](https://github.com/cozy/cozy-libs/compare/cozy-sharing@26.0.1...cozy-sharing@26.1.0) (2025-09-09)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- Dedup classnames package ([6ac12d3](https://github.com/cozy/cozy-libs/commit/6ac12d3be9ec9ec1b8ceb90b2b6826ef650d48f9))
|
|
17
|
+
- Dedup lodash package ([93ebfd0](https://github.com/cozy/cozy-libs/commit/93ebfd010456639ec94552fc5bb7e6790811cf56))
|
|
18
|
+
|
|
6
19
|
## [26.0.1](https://github.com/cozy/cozy-libs/compare/cozy-sharing@26.0.0...cozy-sharing@26.0.1) (2025-09-05)
|
|
7
20
|
|
|
8
21
|
**Note:** Version bump only for package cozy-sharing
|
|
@@ -17,6 +17,7 @@ var styles = {
|
|
|
17
17
|
"input": "autosuggest__input___1Ea-3",
|
|
18
18
|
"suggestionsList": "autosuggest__suggestionsList___3uRpV",
|
|
19
19
|
"suggestionHighlighted": "autosuggest__suggestionHighlighted___1vpXJ",
|
|
20
|
+
"suggestionInput": "autosuggest__suggestionInput___3SK9w",
|
|
20
21
|
"recipientsContainer": "autosuggest__recipientsContainer___1JYxA",
|
|
21
22
|
"recipientChip": "autosuggest__recipientChip___d5I3R"
|
|
22
23
|
};
|
|
@@ -203,7 +204,8 @@ var ShareAutocomplete = function ShareAutocomplete(_ref) {
|
|
|
203
204
|
onBlur: onAutosuggestBlur,
|
|
204
205
|
value: inputValue,
|
|
205
206
|
type: 'email',
|
|
206
|
-
placeholder: placeholder
|
|
207
|
+
placeholder: placeholder,
|
|
208
|
+
className: styles['suggestionInput']
|
|
207
209
|
}
|
|
208
210
|
});
|
|
209
211
|
};
|
package/dist/stylesheet.css
CHANGED
|
@@ -405,6 +405,9 @@ input[type=text] {
|
|
|
405
405
|
.autosuggest__suggestionHighlighted___1vpXJ {
|
|
406
406
|
background: var(--actionColorSelected);
|
|
407
407
|
}
|
|
408
|
+
.autosuggest__suggestionInput___3SK9w {
|
|
409
|
+
background: unset;
|
|
410
|
+
}
|
|
408
411
|
.autosuggest__recipientsContainer___1JYxA {
|
|
409
412
|
display: flex;
|
|
410
413
|
flex-wrap: wrap;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cozy-sharing",
|
|
3
|
-
"version": "26.
|
|
3
|
+
"version": "26.1.1",
|
|
4
4
|
"description": "Provides sharing login for React applications.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"author": "Cozy",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@cozy/minilog": "^1.0.0",
|
|
32
|
-
"classnames": "^2.
|
|
32
|
+
"classnames": "^2.5.1",
|
|
33
33
|
"cozy-device-helper": "^4.0.0",
|
|
34
|
-
"cozy-doctypes": "^1.
|
|
34
|
+
"cozy-doctypes": "^1.98.0",
|
|
35
35
|
"date-fns": "2.30.0",
|
|
36
|
-
"lodash": "^4.17.
|
|
36
|
+
"lodash": "^4.17.21",
|
|
37
37
|
"react-autosuggest": "^10.1.0",
|
|
38
38
|
"react-tooltip": "^3.11.1",
|
|
39
39
|
"snarkdown": "^2.0.0"
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"sideEffects": [
|
|
80
80
|
"*.css"
|
|
81
81
|
],
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "4fb4b75570ed5a36823d085ce27151a98d8aec1e"
|
|
83
83
|
}
|