@sepveneto/free-dom 0.14.0 → 0.14.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/dist/index.css +1 -1
- package/dist/index.js +3 -2
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -57921,7 +57921,7 @@ var freeDomCore = (0, import_vue_demi15.defineComponent)({
|
|
|
57921
57921
|
{
|
|
57922
57922
|
onMousedown: (evt) => {
|
|
57923
57923
|
evt.stopPropagation();
|
|
57924
|
-
this.mousedownFn(evt);
|
|
57924
|
+
evt.button === 0 && this.mousedownFn(evt);
|
|
57925
57925
|
},
|
|
57926
57926
|
onMouseup: this.mouseupFn
|
|
57927
57927
|
}
|
|
@@ -58444,7 +58444,8 @@ var freeDom = (0, import_vue_demi17.defineComponent)({
|
|
|
58444
58444
|
{
|
|
58445
58445
|
nativeOnMousedown: this.handleSelect,
|
|
58446
58446
|
nativeOnKeydown: this.handleKeyboard,
|
|
58447
|
-
nativeOnKeyup: this.reset
|
|
58447
|
+
nativeOnKeyup: this.reset,
|
|
58448
|
+
onBlur: this.reset
|
|
58448
58449
|
}
|
|
58449
58450
|
)?.(slots);
|
|
58450
58451
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -57921,7 +57921,7 @@ var freeDomCore = defineComponent3({
|
|
|
57921
57921
|
{
|
|
57922
57922
|
onMousedown: (evt) => {
|
|
57923
57923
|
evt.stopPropagation();
|
|
57924
|
-
this.mousedownFn(evt);
|
|
57924
|
+
evt.button === 0 && this.mousedownFn(evt);
|
|
57925
57925
|
},
|
|
57926
57926
|
onMouseup: this.mouseupFn
|
|
57927
57927
|
}
|
|
@@ -58444,7 +58444,8 @@ var freeDom = defineComponent5({
|
|
|
58444
58444
|
{
|
|
58445
58445
|
nativeOnMousedown: this.handleSelect,
|
|
58446
58446
|
nativeOnKeydown: this.handleKeyboard,
|
|
58447
|
-
nativeOnKeyup: this.reset
|
|
58447
|
+
nativeOnKeyup: this.reset,
|
|
58448
|
+
onBlur: this.reset
|
|
58448
58449
|
}
|
|
58449
58450
|
)?.(slots);
|
|
58450
58451
|
}
|