@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/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");