@animini/core
Advanced tools
Comparing version 0.2.5 to 0.2.6
# @animini/core | ||
## 0.2.6 | ||
### Patch Changes | ||
- c838bf8: Support for scrollTop / scrollLeft | ||
## 0.2.5 | ||
@@ -4,0 +10,0 @@ |
@@ -9,3 +9,3 @@ import type { FrameLoop } from '../FrameLoop'; | ||
value: any; | ||
key?: string | number | symbol; | ||
key?: string; | ||
adapter?: Adapter<ElementType>; | ||
@@ -20,3 +20,3 @@ el?: ElementType; | ||
time: Time; | ||
key?: string | number | symbol; | ||
key?: string; | ||
el?: ElementType; | ||
@@ -23,0 +23,0 @@ private adapter?; |
{ | ||
"name": "@animini/core", | ||
"version": "0.2.5", | ||
"version": "0.2.6", | ||
"description": "Core of animini", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
@@ -17,3 +17,3 @@ import type { FrameLoop } from '../FrameLoop' | ||
value: any | ||
key?: string | number | symbol | ||
key?: string | ||
adapter?: Adapter<ElementType> | ||
@@ -28,3 +28,3 @@ el?: ElementType | ||
public time = {} as Time | ||
public key?: string | number | symbol | ||
public key?: string | ||
public el?: ElementType | ||
@@ -31,0 +31,0 @@ private adapter?: Adapter<ElementType> |
79150