update 0.12.3
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
## 0.12.3
|
||||||
|
|
||||||
|
修复双击定位问题
|
||||||
|
|
||||||
## 0.12.2
|
## 0.12.2
|
||||||
|
|
||||||
新增双击定位帧。
|
新增双击定位帧。
|
||||||
|
@@ -5,6 +5,8 @@ nav:
|
|||||||
title: change log
|
title: change log
|
||||||
order: 6
|
order: 6
|
||||||
---
|
---
|
||||||
|
## 0.12.3
|
||||||
|
Fix double click positioning problem
|
||||||
## 0.12.2
|
## 0.12.2
|
||||||
Add double click positioning frame.
|
Add double click positioning frame.
|
||||||
Fixed drag frame reset pointer behavior after pause.
|
Fixed drag frame reset pointer behavior after pause.
|
||||||
|
@@ -5,6 +5,10 @@ nav:
|
|||||||
title: 变更日志
|
title: 变更日志
|
||||||
order: 6
|
order: 6
|
||||||
---
|
---
|
||||||
|
## 0.12.3
|
||||||
|
|
||||||
|
修复双击定位问题
|
||||||
|
|
||||||
## 0.12.2
|
## 0.12.2
|
||||||
|
|
||||||
新增双击定位帧。
|
新增双击定位帧。
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "0.12.2",
|
"version": "0.12.3",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"module": "dist/dooringx-lib.esm.js",
|
"module": "dist/dooringx-lib.esm.js",
|
||||||
|
@@ -258,8 +258,8 @@ const needleDoubleClick = (config: UserConfig) => {
|
|||||||
const dom = config.timelineConfig.scrollDom;
|
const dom = config.timelineConfig.scrollDom;
|
||||||
if (dom) {
|
if (dom) {
|
||||||
const setNeedle = config.timelineNeedleConfig.setNeedle;
|
const setNeedle = config.timelineNeedleConfig.setNeedle;
|
||||||
const left = dom.getBoundingClientRect().left + dom.scrollLeft;
|
const left = dom.getBoundingClientRect().left;
|
||||||
const mouseLeft = e.clientX;
|
const mouseLeft = e.clientX + dom.scrollLeft;
|
||||||
e.persist();
|
e.persist();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
await config.timelineNeedleConfig.resetFunc();
|
await config.timelineNeedleConfig.resetFunc();
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dooringx-plugin-template",
|
"name": "dooringx-plugin-template",
|
||||||
"version": "0.12.2",
|
"version": "0.12.3",
|
||||||
"description": "> TODO: description",
|
"description": "> TODO: description",
|
||||||
"author": "yehuozhili <673632758@qq.com>",
|
"author": "yehuozhili <673632758@qq.com>",
|
||||||
"homepage": "https://github.com/H5-Dooring/dooringx#readme",
|
"homepage": "https://github.com/H5-Dooring/dooringx#readme",
|
||||||
|
@@ -40,7 +40,7 @@
|
|||||||
"@rollup/plugin-node-resolve": "^13.0.4",
|
"@rollup/plugin-node-resolve": "^13.0.4",
|
||||||
"@rollup/plugin-url": "^6.1.0",
|
"@rollup/plugin-url": "^6.1.0",
|
||||||
"@svgr/rollup": "^5.5.0",
|
"@svgr/rollup": "^5.5.0",
|
||||||
"dooringx-lib": "^0.12.2",
|
"dooringx-lib": "^0.12.3",
|
||||||
"postcss": "^8.3.6",
|
"postcss": "^8.3.6",
|
||||||
"rollup-plugin-peer-deps-external": "^2.2.4",
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
||||||
"rollup-plugin-postcss": "^4.0.1",
|
"rollup-plugin-postcss": "^4.0.1",
|
||||||
|
Reference in New Issue
Block a user