cozy-ui 139.1.0 → 139.2.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,15 @@
1
+ # [139.2.0](https://github.com/cozy/cozy-ui/compare/v139.1.0...v139.2.0) (2026-06-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Remove override for table that fixed table layout ([a898f1d](https://github.com/cozy/cozy-ui/commit/a898f1d))
7
+
8
+
9
+ ### Features
10
+
11
+ * Remove useless overrides for checkboxes in tables ([5fd8270](https://github.com/cozy/cozy-ui/commit/5fd8270))
12
+
1
13
  # [139.1.0](https://github.com/cozy/cozy-ui/compare/v139.0.2...v139.1.0) (2026-06-03)
2
14
 
3
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui",
3
- "version": "139.1.0",
3
+ "version": "139.2.0",
4
4
  "description": "Cozy apps UI SDK",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -514,32 +514,9 @@ export const makeLightOverrides = theme => ({
514
514
  paddingRight: 16
515
515
  }
516
516
  },
517
- MuiTable: {
518
- root: {
519
- tableLayout: 'fixed',
520
- width: '100%',
521
- minWidth: 'max-content'
522
- }
523
- },
524
517
  MuiTableHead: {
525
518
  root: {
526
- backgroundColor: theme.palette.background.paper,
527
- '&.virtualized': {
528
- '& .virtualizedCheckbox': {
529
- opacity: 0,
530
- '&.checked': {
531
- opacity: 1
532
- },
533
- '&:hover': {
534
- opacity: 1
535
- }
536
- },
537
- '&:hover': {
538
- '& .virtualizedCheckbox': {
539
- opacity: 0.5
540
- }
541
- }
542
- }
519
+ backgroundColor: theme.palette.background.paper
543
520
  }
544
521
  },
545
522
  MuiTableRow: {
@@ -551,25 +528,6 @@ export const makeLightOverrides = theme => ({
551
528
  cursor: 'pointer',
552
529
  pointerEvents: 'none',
553
530
  opacity: 0.5
554
- },
555
- '&.virtualized': {
556
- '& .virtualizedCheckbox': {
557
- opacity: 0,
558
- '&.visible': {
559
- opacity: 0.5
560
- },
561
- '&.checked': {
562
- opacity: 1
563
- },
564
- '&:hover': {
565
- opacity: 1
566
- }
567
- },
568
- '&:hover': {
569
- '& .virtualizedCheckbox': {
570
- opacity: 0.5
571
- }
572
- }
573
531
  }
574
532
  }
575
533
  },
@@ -42,7 +42,9 @@ const columns = [
42
42
  id: 'name',
43
43
  disablePadding: false,
44
44
  label: 'Dessert',
45
- noWrap: false
45
+ width: 300,
46
+ maxWidth: 300,
47
+ noWrap: true
46
48
  },
47
49
  {
48
50
  id: 'calories',
@@ -586,32 +586,9 @@ export function makeDarkOverrides(theme: any): {
586
586
  paddingRight: number;
587
587
  };
588
588
  };
589
- MuiTable: {
590
- root: {
591
- tableLayout: string;
592
- width: string;
593
- minWidth: string;
594
- };
595
- };
596
589
  MuiTableHead: {
597
590
  root: {
598
591
  backgroundColor: any;
599
- '&.virtualized': {
600
- '& .virtualizedCheckbox': {
601
- opacity: number;
602
- '&.checked': {
603
- opacity: number;
604
- };
605
- '&:hover': {
606
- opacity: number;
607
- };
608
- };
609
- '&:hover': {
610
- '& .virtualizedCheckbox': {
611
- opacity: number;
612
- };
613
- };
614
- };
615
592
  };
616
593
  };
617
594
  MuiTableRow: {
@@ -624,25 +601,6 @@ export function makeDarkOverrides(theme: any): {
624
601
  pointerEvents: string;
625
602
  opacity: number;
626
603
  };
627
- '&.virtualized': {
628
- '& .virtualizedCheckbox': {
629
- opacity: number;
630
- '&.visible': {
631
- opacity: number;
632
- };
633
- '&.checked': {
634
- opacity: number;
635
- };
636
- '&:hover': {
637
- opacity: number;
638
- };
639
- };
640
- '&:hover': {
641
- '& .virtualizedCheckbox': {
642
- opacity: number;
643
- };
644
- };
645
- };
646
604
  };
647
605
  };
648
606
  MuiTableCell: {
@@ -586,32 +586,9 @@ export function makeLightOverrides(theme: any): {
586
586
  paddingRight: number;
587
587
  };
588
588
  };
589
- MuiTable: {
590
- root: {
591
- tableLayout: string;
592
- width: string;
593
- minWidth: string;
594
- };
595
- };
596
589
  MuiTableHead: {
597
590
  root: {
598
591
  backgroundColor: any;
599
- '&.virtualized': {
600
- '& .virtualizedCheckbox': {
601
- opacity: number;
602
- '&.checked': {
603
- opacity: number;
604
- };
605
- '&:hover': {
606
- opacity: number;
607
- };
608
- };
609
- '&:hover': {
610
- '& .virtualizedCheckbox': {
611
- opacity: number;
612
- };
613
- };
614
- };
615
592
  };
616
593
  };
617
594
  MuiTableRow: {
@@ -624,25 +601,6 @@ export function makeLightOverrides(theme: any): {
624
601
  pointerEvents: string;
625
602
  opacity: number;
626
603
  };
627
- '&.virtualized': {
628
- '& .virtualizedCheckbox': {
629
- opacity: number;
630
- '&.visible': {
631
- opacity: number;
632
- };
633
- '&.checked': {
634
- opacity: number;
635
- };
636
- '&:hover': {
637
- opacity: number;
638
- };
639
- };
640
- '&:hover': {
641
- '& .virtualizedCheckbox': {
642
- opacity: number;
643
- };
644
- };
645
- };
646
604
  };
647
605
  };
648
606
  MuiTableCell: {
@@ -488,32 +488,9 @@ export var makeLightOverrides = function makeLightOverrides(theme) {
488
488
  paddingRight: 16
489
489
  }
490
490
  },
491
- MuiTable: {
492
- root: {
493
- tableLayout: 'fixed',
494
- width: '100%',
495
- minWidth: 'max-content'
496
- }
497
- },
498
491
  MuiTableHead: {
499
492
  root: {
500
- backgroundColor: theme.palette.background.paper,
501
- '&.virtualized': {
502
- '& .virtualizedCheckbox': {
503
- opacity: 0,
504
- '&.checked': {
505
- opacity: 1
506
- },
507
- '&:hover': {
508
- opacity: 1
509
- }
510
- },
511
- '&:hover': {
512
- '& .virtualizedCheckbox': {
513
- opacity: 0.5
514
- }
515
- }
516
- }
493
+ backgroundColor: theme.palette.background.paper
517
494
  }
518
495
  },
519
496
  MuiTableRow: {
@@ -525,25 +502,6 @@ export var makeLightOverrides = function makeLightOverrides(theme) {
525
502
  cursor: 'pointer',
526
503
  pointerEvents: 'none',
527
504
  opacity: 0.5
528
- },
529
- '&.virtualized': {
530
- '& .virtualizedCheckbox': {
531
- opacity: 0,
532
- '&.visible': {
533
- opacity: 0.5
534
- },
535
- '&.checked': {
536
- opacity: 1
537
- },
538
- '&:hover': {
539
- opacity: 1
540
- }
541
- },
542
- '&:hover': {
543
- '& .virtualizedCheckbox': {
544
- opacity: 0.5
545
- }
546
- }
547
505
  }
548
506
  }
549
507
  },