Skip to content

Commit 8ebb971

Browse files
committed
chore(dist): build
1 parent e11597c commit 8ebb971

File tree

5 files changed

+36
-36
lines changed

5 files changed

+36
-36
lines changed

dist/he-tree-vue.cjs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* he-tree-vue v2.0.7-beta.1
2+
* he-tree-vue v2.0.7
33
* (c) phphe <phphe@outlook.com> (https://github.com/phphe)
44
* Homepage: https://he-tree-vue.phphe.com
55
* Released under the MIT License.

dist/he-tree-vue.esm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* he-tree-vue v2.0.7-beta.1
2+
* he-tree-vue v2.0.7
33
* (c) phphe <phphe@outlook.com> (https://github.com/phphe)
44
* Homepage: https://he-tree-vue.phphe.com
55
* Released under the MIT License.

dist/he-tree-vue.js

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* he-tree-vue v2.0.7-beta.1
2+
* he-tree-vue v2.0.7
33
* (c) phphe <phphe@outlook.com> (https://github.com/phphe)
44
* Homepage: https://he-tree-vue.phphe.com
55
* Released under the MIT License.
@@ -1864,16 +1864,16 @@
18641864
return parents;
18651865
}
18661866
}
1867-
/* scroll to a positon with duration
1868-
from https://gist.github.com/andjosh/6764939
1869-
interface options{
1870-
x: number // nullable. don't scroll horizontally when null
1871-
y: number // nullable. don't scroll vertically when null
1872-
duration: number // default 0
1873-
element: Element // default is the top scrollable element.
1874-
beforeEveryFrame: (count: number) => boolean|void // call before requestAnimationFrame execution. return false to stop
1875-
}
1876-
return stop
1867+
/* scroll to a positon with duration
1868+
from https://gist.github.com/andjosh/6764939
1869+
interface options{
1870+
x: number // nullable. don't scroll horizontally when null
1871+
y: number // nullable. don't scroll vertically when null
1872+
duration: number // default 0
1873+
element: Element // default is the top scrollable element.
1874+
beforeEveryFrame: (count: number) => boolean|void // call before requestAnimationFrame execution. return false to stop
1875+
}
1876+
return stop
18771877
*/
18781878

18791879

@@ -2088,7 +2088,7 @@
20882088
} // for animation
20892089

20902090
/*!
2091-
* vue-functions v2.0.7-beta.1
2091+
* vue-functions v2.0.6
20922092
* (c) phphe <phphe@outlook.com> (https://github.com/phphe)
20932093
* Homepage: undefined
20942094
* Released under the MIT License.
@@ -2950,24 +2950,24 @@
29502950

29512951
return arr2;
29522952
}
2953-
/* Default export, a function.
2954-
```js
2955-
import draggableHelper from 'draggable-helper'
2956-
draggableHelper(listenerElement, options)
2957-
```
2958-
Arguments:
2959-
listenerElement: HTMLElement. The element to bind mouse and touch event listener.
2960-
options: Options. Optional.
2953+
/* Default export, a function.
2954+
```js
2955+
import draggableHelper from 'draggable-helper'
2956+
draggableHelper(listenerElement, options)
2957+
```
2958+
Arguments:
2959+
listenerElement: HTMLElement. The element to bind mouse and touch event listener.
2960+
options: Options. Optional.
29612961
*/
29622962

2963-
/* 默认导出, 一个方法.
2964-
```js
2965-
import draggableHelper from 'draggable-helper'
2966-
draggableHelper(listenerElement, options)
2967-
```
2968-
参数:
2969-
listenerElement: HTMLElement. 绑定鼠标和触摸事件监听器的HTML元素.
2970-
options: Options. 可选.
2963+
/* 默认导出, 一个方法.
2964+
```js
2965+
import draggableHelper from 'draggable-helper'
2966+
draggableHelper(listenerElement, options)
2967+
```
2968+
参数:
2969+
listenerElement: HTMLElement. 绑定鼠标和触摸事件监听器的HTML元素.
2970+
options: Options. 可选.
29712971
*/
29722972

29732973

@@ -3214,9 +3214,9 @@
32143214

32153215
backupAttr(movedElement, 'class');
32163216
addClass(movedElement, opt.draggingClassName);
3217-
/*
3218-
check if the changed position is expected and correct it. about stacking context.
3219-
当某父元素使用了transform属性时, fixed不再以窗口左上角为坐标. 以下功能是在第一次移动后, 检查元素实际位置和期望位置是否相同, 不同则说明坐标系不是期望的. 则把初始位置减去偏移, 无论任何父元素导致了层叠上下文问题, 都能正确显示.
3217+
/*
3218+
check if the changed position is expected and correct it. about stacking context.
3219+
当某父元素使用了transform属性时, fixed不再以窗口左上角为坐标. 以下功能是在第一次移动后, 检查元素实际位置和期望位置是否相同, 不同则说明坐标系不是期望的. 则把初始位置减去偏移, 无论任何父元素导致了层叠上下文问题, 都能正确显示.
32203220
*/
32213221

32223222
var nowPosition = getViewportPosition(movedElement);

0 commit comments

Comments
 (0)