cozy-ui 127.0.0 → 127.0.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 +7 -0
- package/package.json +1 -1
- package/react/MuiCozyTheme/overrides/makeLightNormalOverrides.js +6 -3
- package/transpiled/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.d.ts +1 -1
- package/transpiled/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.d.ts +1 -1
- package/transpiled/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.d.ts +1 -1
- package/transpiled/react/MuiCozyTheme/overrides/makeLightNormalOverrides.d.ts +1 -1
- package/transpiled/react/MuiCozyTheme/overrides/makeLightNormalOverrides.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [127.0.1](https://github.com/cozy/cozy-ui/compare/v127.0.0...v127.0.1) (2025-06-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **Button:** Use primary light background for ghost variant ([bbe5c2e](https://github.com/cozy/cozy-ui/commit/bbe5c2e)), closes [#D2E9](https://github.com/cozy/cozy-ui/issues/D2E9)
|
|
7
|
+
|
|
1
8
|
# [127.0.0](https://github.com/cozy/cozy-ui/compare/v126.6.0...v127.0.0) (2025-06-26)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -221,11 +221,14 @@ export const makeLightNormalOverrides = theme => ({
|
|
|
221
221
|
outlined: {
|
|
222
222
|
'&:not($disabled)': {
|
|
223
223
|
'&.ghost': {
|
|
224
|
-
backgroundColor: theme.palette.
|
|
224
|
+
backgroundColor: alpha(theme.palette.primary.main, 0.25),
|
|
225
225
|
'&:hover': {
|
|
226
|
-
backgroundColor: darken(
|
|
226
|
+
backgroundColor: darken(
|
|
227
|
+
alpha(theme.palette.primary.main, 0.25),
|
|
228
|
+
0.1
|
|
229
|
+
),
|
|
227
230
|
'@media (hover: none)': {
|
|
228
|
-
backgroundColor:
|
|
231
|
+
backgroundColor: alpha(theme.palette.primary.main, 0.25)
|
|
229
232
|
}
|
|
230
233
|
}
|
|
231
234
|
},
|
|
@@ -212,11 +212,11 @@ export var makeLightNormalOverrides = function makeLightNormalOverrides(theme) {
|
|
|
212
212
|
outlined: {
|
|
213
213
|
'&:not($disabled)': {
|
|
214
214
|
'&.ghost': {
|
|
215
|
-
backgroundColor: theme.palette.
|
|
215
|
+
backgroundColor: alpha(theme.palette.primary.main, 0.25),
|
|
216
216
|
'&:hover': {
|
|
217
|
-
backgroundColor: darken(theme.palette.
|
|
217
|
+
backgroundColor: darken(alpha(theme.palette.primary.main, 0.25), 0.1),
|
|
218
218
|
'@media (hover: none)': {
|
|
219
|
-
backgroundColor:
|
|
219
|
+
backgroundColor: alpha(theme.palette.primary.main, 0.25)
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
},
|