cozy-sharing 26.1.0 → 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,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
+ ## [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
+
6
12
  # [26.1.0](https://github.com/cozy/cozy-libs/compare/cozy-sharing@26.0.1...cozy-sharing@26.1.0) (2025-09-09)
7
13
 
8
14
  ### Features
@@ -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
  };
@@ -30,6 +30,9 @@
30
30
  .suggestionHighlighted
31
31
  background var(--actionColorSelected)
32
32
 
33
+ .suggestionInput
34
+ background unset
35
+
33
36
  .recipientsContainer
34
37
  display flex
35
38
  flex-wrap wrap
@@ -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.1.0",
3
+ "version": "26.1.1",
4
4
  "description": "Provides sharing login for React applications.",
5
5
  "main": "dist/index.js",
6
6
  "author": "Cozy",
@@ -79,5 +79,5 @@
79
79
  "sideEffects": [
80
80
  "*.css"
81
81
  ],
82
- "gitHead": "05e31c76e8d895aae3317c87137820cf9d3eb4f3"
82
+ "gitHead": "4fb4b75570ed5a36823d085ce27151a98d8aec1e"
83
83
  }
@@ -191,7 +191,8 @@ const ShareAutocomplete = ({
191
191
  onBlur: onAutosuggestBlur,
192
192
  value: inputValue,
193
193
  type: 'email',
194
- placeholder
194
+ placeholder,
195
+ className: styles['suggestionInput']
195
196
  }}
196
197
  />
197
198
  )
@@ -30,6 +30,9 @@
30
30
  .suggestionHighlighted
31
31
  background var(--actionColorSelected)
32
32
 
33
+ .suggestionInput
34
+ background unset
35
+
33
36
  .recipientsContainer
34
37
  display flex
35
38
  flex-wrap wrap