@lumx/core 3.15.0 → 3.15.1-alpha.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/package.json
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"update-version-changelog": "yarn version-changelog ../../CHANGELOG.md"
|
|
41
41
|
},
|
|
42
42
|
"sideEffects": false,
|
|
43
|
-
"version": "3.15.
|
|
43
|
+
"version": "3.15.1-alpha.1",
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@babel/core": "^7.26.10",
|
|
46
46
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
@@ -117,6 +117,7 @@
|
|
|
117
117
|
// https://stackoverflow.com/a/77059936
|
|
118
118
|
// The following prevent this so the image is correctly downsized using blurring effect
|
|
119
119
|
overflow-clip-margin: unset;
|
|
120
|
+
overflow: clip;
|
|
120
121
|
|
|
121
122
|
@supports not (aspect-ratio: 1 / 1) {
|
|
122
123
|
position: absolute;
|
|
@@ -33,3 +33,8 @@
|
|
|
33
33
|
clip: rect(0 0 0 0) !important;
|
|
34
34
|
border: 0 !important;
|
|
35
35
|
}
|
|
36
|
+
|
|
37
|
+
/** Need to remove the margin style on popper elements or else we get warnings in the console */
|
|
38
|
+
.lumx-popover.visually-hidden, .lumx-tooltip.visually-hidden {
|
|
39
|
+
margin: revert !important;
|
|
40
|
+
}
|