labsense-ui-kit 1.3.5 → 1.3.6
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/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3 -0
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9352,7 +9352,10 @@ var Sidebar = function Sidebar(_ref17) {
|
|
|
9352
9352
|
if (!container) {
|
|
9353
9353
|
container = document.createElement('div');
|
|
9354
9354
|
container.id = 'badge-portal-container';
|
|
9355
|
+
container.style.pointerEvents = 'none';
|
|
9355
9356
|
document.body.appendChild(container);
|
|
9357
|
+
} else {
|
|
9358
|
+
container.style.pointerEvents = 'none';
|
|
9356
9359
|
}
|
|
9357
9360
|
return container;
|
|
9358
9361
|
}),
|