octane 0.2.1 → 0.2.2
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/cjs/runtime.cjs +1 -3
- package/dist/cjs/version.cjs +1 -1
- package/dist/runtime.js +1 -3
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/cjs/runtime.cjs
CHANGED
|
@@ -10320,9 +10320,7 @@ function finishCaptureDispatch(event) {
|
|
|
10320
10320
|
maybeFlushDiscrete(type);
|
|
10321
10321
|
}
|
|
10322
10322
|
};
|
|
10323
|
-
|
|
10324
|
-
const checkableChange = type === "change" && target?.localName === "input" && (target.type === "checkbox" || target.type === "radio");
|
|
10325
|
-
if (checkableChange) setTimeout(fallback, 0);
|
|
10323
|
+
if (event.isTrusted) setTimeout(fallback, 0);
|
|
10326
10324
|
else queueMicrotask(fallback);
|
|
10327
10325
|
}
|
|
10328
10326
|
function dispatchDelegated(event) {
|
package/dist/cjs/version.cjs
CHANGED
|
@@ -21,7 +21,7 @@ __export(version_exports, {
|
|
|
21
21
|
version: () => version
|
|
22
22
|
});
|
|
23
23
|
module.exports = __toCommonJS(version_exports);
|
|
24
|
-
const version = "0.2.
|
|
24
|
+
const version = "0.2.2";
|
|
25
25
|
// Annotate the CommonJS export names for ESM import in node:
|
|
26
26
|
0 && (module.exports = {
|
|
27
27
|
version
|
package/dist/runtime.js
CHANGED
|
@@ -10154,9 +10154,7 @@ function finishCaptureDispatch(event) {
|
|
|
10154
10154
|
maybeFlushDiscrete(type);
|
|
10155
10155
|
}
|
|
10156
10156
|
};
|
|
10157
|
-
|
|
10158
|
-
const checkableChange = type === "change" && target?.localName === "input" && (target.type === "checkbox" || target.type === "radio");
|
|
10159
|
-
if (checkableChange) setTimeout(fallback, 0);
|
|
10157
|
+
if (event.isTrusted) setTimeout(fallback, 0);
|
|
10160
10158
|
else queueMicrotask(fallback);
|
|
10161
10159
|
}
|
|
10162
10160
|
function dispatchDelegated(event) {
|
package/dist/version.js
CHANGED