@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 +5 -5
- package/src/sass/carbon.scss +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trintel/zooy",
|
|
3
|
-
"version": "1.
|
|
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": "
|
|
42
|
-
"@carbon/web-components": "
|
|
43
|
-
"@ibm/plex": "
|
|
44
|
-
"badu": "
|
|
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": {
|
package/src/sass/carbon.scss
CHANGED
|
@@ -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
|
+
}
|