cozy-ui 113.7.0 → 113.7.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
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [113.7.1](https://github.com/cozy/cozy-ui/compare/v113.7.0...v113.7.1) (2024-11-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **Theme:** Shadow 25 wasn't in Mui theme ([cc5486e](https://github.com/cozy/cozy-ui/commit/cc5486e))
|
|
7
|
+
|
|
1
8
|
# [113.7.0](https://github.com/cozy/cozy-ui/compare/v113.6.0...v113.7.0) (2024-11-27)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -211,6 +211,6 @@ export const getFlagshipCssVar = position =>
|
|
|
211
211
|
* @returns {array} Array of Mui shadows
|
|
212
212
|
*/
|
|
213
213
|
export const makeShadows = (type, variant) =>
|
|
214
|
-
[...Array(
|
|
214
|
+
[...Array(26)].map((_, index) =>
|
|
215
215
|
getCssVariableValue(`shadow${index}`, type, variant)
|
|
216
216
|
)
|
|
@@ -173,7 +173,7 @@ export var getFlagshipCssVar = function getFlagshipCssVar(position) {
|
|
|
173
173
|
*/
|
|
174
174
|
|
|
175
175
|
export var makeShadows = function makeShadows(type, variant) {
|
|
176
|
-
return _toConsumableArray(Array(
|
|
176
|
+
return _toConsumableArray(Array(26)).map(function (_, index) {
|
|
177
177
|
return getCssVariableValue("shadow".concat(index), type, variant);
|
|
178
178
|
});
|
|
179
179
|
};
|