@vectojs/core 1.35.2 → 1.35.3
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 +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5723,6 +5723,8 @@ var Scene = (_class15 = class _Scene {
|
|
|
5723
5723
|
el.style.padding = "0";
|
|
5724
5724
|
el.style.outline = "none";
|
|
5725
5725
|
el.style.cursor = node.a11yFullViewport ? "default" : "pointer";
|
|
5726
|
+
el.style.userSelect = "none";
|
|
5727
|
+
el.style.webkitUserSelect = "none";
|
|
5726
5728
|
if (this.debugA11y) {
|
|
5727
5729
|
el.style.backgroundColor = "rgba(56, 189, 248, 0.05)";
|
|
5728
5730
|
el.style.border = "1px dashed rgba(56, 189, 248, 0.4)";
|
package/dist/index.mjs
CHANGED
|
@@ -5722,6 +5722,8 @@ var Scene = class _Scene {
|
|
|
5722
5722
|
el.style.padding = "0";
|
|
5723
5723
|
el.style.outline = "none";
|
|
5724
5724
|
el.style.cursor = node.a11yFullViewport ? "default" : "pointer";
|
|
5725
|
+
el.style.userSelect = "none";
|
|
5726
|
+
el.style.webkitUserSelect = "none";
|
|
5725
5727
|
if (this.debugA11y) {
|
|
5726
5728
|
el.style.backgroundColor = "rgba(56, 189, 248, 0.05)";
|
|
5727
5729
|
el.style.border = "1px dashed rgba(56, 189, 248, 0.4)";
|