gl-draw 0.18.6 → 0.18.7
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.d.ts +3 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2677,7 +2677,7 @@ declare class Pick_2 {
|
|
|
2677
2677
|
|
|
2678
2678
|
export declare type PickFunctionsItem = {
|
|
2679
2679
|
objArr: BaseObject[] | (() => BaseObject[]);
|
|
2680
|
-
type: 'move' | 'enter' | 'leave' | 'down' | 'click' | 'downOutside' | 'enterOnStop';
|
|
2680
|
+
type: 'move' | 'enter' | 'leave' | 'down' | 'click' | 'downOutside' | 'clickOutside' | 'enterOnStop';
|
|
2681
2681
|
cb: (data: {
|
|
2682
2682
|
baseObject: BaseObject;
|
|
2683
2683
|
realBaseObject?: BaseObject;
|
|
@@ -2710,6 +2710,8 @@ declare class PointerEvent_2 {
|
|
|
2710
2710
|
onPointerLeave(cb: PickFunctionsItem['cb']): void;
|
|
2711
2711
|
onPointerMove(cb: PickFunctionsItem['cb']): void;
|
|
2712
2712
|
onPointerDown(cb: PickFunctionsItem['cb']): void;
|
|
2713
|
+
onPointerDownOutside(cb: PickFunctionsItem['cb']): void;
|
|
2714
|
+
onClickOutside(cb: PickFunctionsItem['cb']): void;
|
|
2713
2715
|
dispose(): void;
|
|
2714
2716
|
}
|
|
2715
2717
|
|