@vesium/plot 1.0.1-beta.37 → 1.0.1-beta.38
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/README.md +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.iife.js +2 -2
- package/dist/index.iife.js.map +1 -1
- package/dist/index.iife.min.js +1 -1
- package/dist/index.iife.min.js.map +1 -1
- package/dist/index.min.cjs +1 -1
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.mjs +1 -1
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -181,8 +181,6 @@ function useScenePick(windowPosition, options = {}) {
|
|
|
181
181
|
);
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
|
-
}, {
|
|
185
|
-
flush: "post"
|
|
186
184
|
});
|
|
187
185
|
return pick;
|
|
188
186
|
}
|
|
@@ -349,6 +347,8 @@ function usePositioned(type, listener) {
|
|
|
349
347
|
});
|
|
350
348
|
watch([position, pick], ([position2, pick2]) => {
|
|
351
349
|
pick2 && position2 && listener({ event: { position: position2 }, pick: pick2 });
|
|
350
|
+
}, {
|
|
351
|
+
flush: "post"
|
|
352
352
|
});
|
|
353
353
|
}
|
|
354
354
|
const GLOBAL_GRAPHIC_SYMBOL = Symbol("GLOBAL_GRAPHIC_SYMBOL");
|