@timescope/vue 0.0.0-alpha.6 → 0.0.0-alpha.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/index.d.ts +8 -8
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1813,14 +1813,14 @@ declare const __VLS_export: <Source extends Record<string, TimescopeSourceInput>
|
|
|
1813
1813
|
__VLS_PROPS_FALLBACK: infer P;
|
|
1814
1814
|
} ? P : {});
|
|
1815
1815
|
expose: (exposed: ShallowUnwrapRef<{
|
|
1816
|
-
time: Ref<
|
|
1817
|
-
timeChanging: Ref<
|
|
1818
|
-
timeAnimating: Ref<
|
|
1819
|
-
zoom: Ref<number
|
|
1820
|
-
zoomChanging: Ref<number
|
|
1821
|
-
zoomAnimating: Ref<number
|
|
1822
|
-
animating: Ref<
|
|
1823
|
-
editing: Ref<
|
|
1816
|
+
time: Ref<Decimal | null, Decimal | null>;
|
|
1817
|
+
timeChanging: Ref<Decimal | null, Decimal | null>;
|
|
1818
|
+
timeAnimating: Ref<Decimal | null, Decimal | null>;
|
|
1819
|
+
zoom: Ref<number, number>;
|
|
1820
|
+
zoomChanging: Ref<number, number>;
|
|
1821
|
+
zoomAnimating: Ref<number, number>;
|
|
1822
|
+
animating: Ref<boolean, boolean>;
|
|
1823
|
+
editing: Ref<boolean, boolean>;
|
|
1824
1824
|
setTime: (v: TimeLike | null, animation?: TimescopeAnimationInput) => boolean;
|
|
1825
1825
|
setZoom: (v: NumberLike, animation?: TimescopeAnimationInput) => boolean;
|
|
1826
1826
|
fitTo: (range: TimescopeRange<TimeLike<never>>, opts?: TimescopeFitOptions) => boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@timescope/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-alpha.
|
|
4
|
+
"version": "0.0.0-alpha.7",
|
|
5
5
|
"description": "",
|
|
6
6
|
"author": "Xenodrive, Inc.",
|
|
7
7
|
"license": "MIT",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"timescope": "^0.0.0-alpha.
|
|
31
|
+
"timescope": "^0.0.0-alpha.7",
|
|
32
32
|
"vue": "^3.5.26"
|
|
33
33
|
},
|
|
34
34
|
"types": "./index.d.ts"
|