@baron1996/klinecharts-adapter 0.2.2 → 0.2.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/adapter.js CHANGED
@@ -392,7 +392,7 @@ export class KLineChartsSceneAdapter {
392
392
  measurement.start = point;
393
393
  return;
394
394
  }
395
- event.preventDefault();
395
+ // 保留该次点击的兼容 mousedown/mouseup,让引擎自然闭合并复位点击仲裁状态。
396
396
  event.stopImmediatePropagation();
397
397
  this.#completeInteractivePriceMeasurement(measurement, point);
398
398
  return;
package/dist/version.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /** Adapter 包版本。 */
2
- export declare const ADAPTER_PACKAGE_VERSION: "0.2.2";
2
+ export declare const ADAPTER_PACKAGE_VERSION: "0.2.3";
3
3
  /** 唯一允许加载的 KLineCharts 引擎版本。 */
4
4
  export declare const KLINECHARTS_ENGINE_VERSION: "10.0.0";
5
5
  /** 与 ChartScene 绑定的 Runtime 协议版本。 */
package/dist/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /** Adapter 包版本。 */
2
- export const ADAPTER_PACKAGE_VERSION = '0.2.2';
2
+ export const ADAPTER_PACKAGE_VERSION = '0.2.3';
3
3
  /** 唯一允许加载的 KLineCharts 引擎版本。 */
4
4
  export const KLINECHARTS_ENGINE_VERSION = '10.0.0';
5
5
  /** 与 ChartScene 绑定的 Runtime 协议版本。 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baron1996/klinecharts-adapter",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Controlled ChartScene adapter for KLineCharts.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -38,7 +38,7 @@
38
38
  "typecheck": "tsc -p tsconfig.json --noEmit"
39
39
  },
40
40
  "dependencies": {
41
- "@baron1996/kline-scene-schema": "0.2.2",
41
+ "@baron1996/kline-scene-schema": "0.2.3",
42
42
  "klinecharts": "10.0.0"
43
43
  }
44
44
  }