@trintel/zooy 1.9.2 → 1.10.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trintel/zooy",
3
- "version": "1.9.2",
3
+ "version": "1.10.0",
4
4
  "description": "UI Building Blocks",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -38,10 +38,10 @@
38
38
  "prepare": "vp config"
39
39
  },
40
40
  "dependencies": {
41
- "@carbon/icons": "^11.79.0",
42
- "@carbon/web-components": "^2.53.0",
43
- "@ibm/plex": "^6.4.1",
44
- "badu": "^8.6.0",
41
+ "@carbon/icons": "latest",
42
+ "@carbon/web-components": "latest",
43
+ "@ibm/plex": "latest",
44
+ "badu": "latest",
45
45
  "material-components-web": "^14.0.0"
46
46
  },
47
47
  "devDependencies": {
@@ -98,3 +98,12 @@ cds-popover {
98
98
  }
99
99
  }
100
100
  }
101
+
102
+ // For Carbon modals where a drop-down menu may need to
103
+ // overflow the modal body. Add the `overflow_allowed` attribute
104
+ // to the modal element to allow this.
105
+ cds-modal[open][allow_overflow] {
106
+ cds-modal-body {
107
+ overflow: visible;
108
+ }
109
+ }