cozy-ui 109.0.1 → 109.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
@@ -1,3 +1,10 @@
1
+ ## [109.0.2](https://github.com/cozy/cozy-ui/compare/v109.0.1...v109.0.2) (2024-06-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **InfosBadge:** Color wasn't theme responsive ([c3cf75e](https://github.com/cozy/cozy-ui/commit/c3cf75e))
7
+
1
8
  ## [109.0.1](https://github.com/cozy/cozy-ui/compare/v109.0.0...v109.0.1) (2024-06-06)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui",
3
- "version": "109.0.1",
3
+ "version": "109.0.2",
4
4
  "description": "Cozy apps UI SDK",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -8,9 +8,9 @@ const customStyles = () => ({
8
8
  qualifier: {
9
9
  height: '1.125rem', // compensation of the specific border size
10
10
  minWidth: '1.125rem',
11
- backgroundColor: 'white',
12
- color: 'var(--slateGrey)',
13
- border: '1px solid var(--silver)'
11
+ backgroundColor: 'var(--paperBackgroundColor)',
12
+ color: 'var(--iconTextColor)',
13
+ border: '1px solid var(--borderMainColor)'
14
14
  }
15
15
  })
16
16
 
@@ -13,9 +13,9 @@ var customStyles = function customStyles() {
13
13
  height: '1.125rem',
14
14
  // compensation of the specific border size
15
15
  minWidth: '1.125rem',
16
- backgroundColor: 'white',
17
- color: 'var(--slateGrey)',
18
- border: '1px solid var(--silver)'
16
+ backgroundColor: 'var(--paperBackgroundColor)',
17
+ color: 'var(--iconTextColor)',
18
+ border: '1px solid var(--borderMainColor)'
19
19
  }
20
20
  };
21
21
  };