cozy-ui 77.2.0 → 77.3.0

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
+ # [77.3.0](https://github.com/cozy/cozy-ui/compare/v77.2.0...v77.3.0) (2022-11-08)
2
+
3
+
4
+ ### Features
5
+
6
+ * Override `StepConnector`, `StepContent` and `StepLabel` ([49e1f3d](https://github.com/cozy/cozy-ui/commit/49e1f3d))
7
+
1
8
  # [77.2.0](https://github.com/cozy/cozy-ui/compare/v77.1.0...v77.2.0) (2022-11-07)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui",
3
- "version": "77.2.0",
3
+ "version": "77.3.0",
4
4
  "description": "Cozy apps UI SDK",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -449,7 +449,23 @@ const makeOverrides = theme => ({
449
449
  },
450
450
  MuiStepConnector: {
451
451
  line: {
452
- borderColor: theme.palette.grey[300]
452
+ borderColor: theme.palette.divider
453
+ }
454
+ },
455
+ MuiStepContent: {
456
+ root: {
457
+ borderColor: theme.palette.divider
458
+ }
459
+ },
460
+ MuiStepLabel: {
461
+ label: {
462
+ ...theme.typography.body1,
463
+ '&$active': {
464
+ ...theme.typography.h6
465
+ },
466
+ '&$completed': {
467
+ ...theme.typography.h6
468
+ }
453
469
  }
454
470
  },
455
471
  MuiListItemIcon: {
@@ -398,9 +398,20 @@ var makeOverrides = function makeOverrides(theme) {
398
398
  },
399
399
  MuiStepConnector: {
400
400
  line: {
401
- borderColor: theme.palette.grey[300]
401
+ borderColor: theme.palette.divider
402
402
  }
403
403
  },
404
+ MuiStepContent: {
405
+ root: {
406
+ borderColor: theme.palette.divider
407
+ }
408
+ },
409
+ MuiStepLabel: {
410
+ label: _objectSpread(_objectSpread({}, theme.typography.body1), {}, {
411
+ '&$active': _objectSpread({}, theme.typography.h6),
412
+ '&$completed': _objectSpread({}, theme.typography.h6)
413
+ })
414
+ },
404
415
  MuiListItemIcon: {
405
416
  root: {
406
417
  minWidth: 'auto',