cozy-ui 110.8.0 → 110.8.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
+ ## [110.8.1](https://github.com/cozy/cozy-ui/compare/v110.8.0...v110.8.1) (2024-07-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **PermissionDialog:** Show overflow icon on iOS ([f9f6073](https://github.com/cozy/cozy-ui/commit/f9f6073))
7
+
1
8
  # [110.8.0](https://github.com/cozy/cozy-ui/compare/v110.7.1...v110.8.0) (2024-07-09)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui",
3
- "version": "110.8.0",
3
+ "version": "110.8.1",
4
4
  "description": "Cozy apps UI SDK",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -456,7 +456,10 @@ export const makeLightNormalOverrides = theme => ({
456
456
  }
457
457
  },
458
458
  '&.overflow': {
459
- overflowY: 'visible !important' // Allow the icon to overflow the dialog, otherwise it will be cut off
459
+ overflowY: 'visible !important', // Allow the icon to overflow the dialog, otherwise it will be cut off,
460
+ '& .cozyDialogContent': {
461
+ overflowY: 'visible !important' // This allow the overflow to work also on iOS
462
+ }
460
463
  }
461
464
  },
462
465
  scrollPaper: {
@@ -529,6 +529,9 @@ export function makeDarkInvertedOverrides(theme: any): {
529
529
  };
530
530
  '&.overflow': {
531
531
  overflowY: string;
532
+ '& .cozyDialogContent': {
533
+ overflowY: string;
534
+ };
532
535
  };
533
536
  };
534
537
  scrollPaper: {
@@ -529,6 +529,9 @@ export function makeDarkNormalOverrides(theme: any): {
529
529
  };
530
530
  '&.overflow': {
531
531
  overflowY: string;
532
+ '& .cozyDialogContent': {
533
+ overflowY: string;
534
+ };
532
535
  };
533
536
  };
534
537
  scrollPaper: {
@@ -529,6 +529,9 @@ export function makeLightInvertedOverrides(theme: any): {
529
529
  };
530
530
  '&.overflow': {
531
531
  overflowY: string;
532
+ '& .cozyDialogContent': {
533
+ overflowY: string;
534
+ };
532
535
  };
533
536
  };
534
537
  scrollPaper: {
@@ -529,6 +529,9 @@ export function makeLightNormalOverrides(theme: any): {
529
529
  };
530
530
  '&.overflow': {
531
531
  overflowY: string;
532
+ '& .cozyDialogContent': {
533
+ overflowY: string;
534
+ };
532
535
  };
533
536
  };
534
537
  scrollPaper: {
@@ -426,8 +426,12 @@ export var makeLightNormalOverrides = function makeLightNormalOverrides(theme) {
426
426
  maxWidth: '800px'
427
427
  }),
428
428
  '&.overflow': {
429
- overflowY: 'visible !important' // Allow the icon to overflow the dialog, otherwise it will be cut off
429
+ overflowY: 'visible !important',
430
+ // Allow the icon to overflow the dialog, otherwise it will be cut off,
431
+ '& .cozyDialogContent': {
432
+ overflowY: 'visible !important' // This allow the overflow to work also on iOS
430
433
 
434
+ }
431
435
  }
432
436
  },
433
437
  scrollPaper: {