@lottiefiles/dotlottie-web 0.30.0 → 0.30.2
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/dotlottie-player.wasm +0 -0
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -170,6 +170,12 @@ declare class DotLottie {
|
|
|
170
170
|
private _renderConfig;
|
|
171
171
|
private _isFrozen;
|
|
172
172
|
private _backgroundColor;
|
|
173
|
+
private readonly _pointerUpMethod;
|
|
174
|
+
private readonly _pointerDownMethod;
|
|
175
|
+
private readonly _pointerMoveMethod;
|
|
176
|
+
private readonly _pointerEnterMethod;
|
|
177
|
+
private readonly _pointerExitMethod;
|
|
178
|
+
private readonly _onCompleteMethod;
|
|
173
179
|
constructor(config: Config);
|
|
174
180
|
private _dispatchError;
|
|
175
181
|
private _fetchData;
|
|
@@ -292,6 +298,12 @@ declare class DotLottieWorker {
|
|
|
292
298
|
private _dotLottieInstanceState;
|
|
293
299
|
private static _wasmUrl;
|
|
294
300
|
private _created;
|
|
301
|
+
private readonly _pointerUpMethod;
|
|
302
|
+
private readonly _pointerDownMethod;
|
|
303
|
+
private readonly _pointerMoveMethod;
|
|
304
|
+
private readonly _pointerEnterMethod;
|
|
305
|
+
private readonly _pointerExitMethod;
|
|
306
|
+
private readonly _onCompleteMethod;
|
|
295
307
|
constructor(config: Config & {
|
|
296
308
|
workerId?: string;
|
|
297
309
|
});
|
package/dist/index.d.ts
CHANGED
|
@@ -170,6 +170,12 @@ declare class DotLottie {
|
|
|
170
170
|
private _renderConfig;
|
|
171
171
|
private _isFrozen;
|
|
172
172
|
private _backgroundColor;
|
|
173
|
+
private readonly _pointerUpMethod;
|
|
174
|
+
private readonly _pointerDownMethod;
|
|
175
|
+
private readonly _pointerMoveMethod;
|
|
176
|
+
private readonly _pointerEnterMethod;
|
|
177
|
+
private readonly _pointerExitMethod;
|
|
178
|
+
private readonly _onCompleteMethod;
|
|
173
179
|
constructor(config: Config);
|
|
174
180
|
private _dispatchError;
|
|
175
181
|
private _fetchData;
|
|
@@ -292,6 +298,12 @@ declare class DotLottieWorker {
|
|
|
292
298
|
private _dotLottieInstanceState;
|
|
293
299
|
private static _wasmUrl;
|
|
294
300
|
private _created;
|
|
301
|
+
private readonly _pointerUpMethod;
|
|
302
|
+
private readonly _pointerDownMethod;
|
|
303
|
+
private readonly _pointerMoveMethod;
|
|
304
|
+
private readonly _pointerEnterMethod;
|
|
305
|
+
private readonly _pointerExitMethod;
|
|
306
|
+
private readonly _onCompleteMethod;
|
|
295
307
|
constructor(config: Config & {
|
|
296
308
|
workerId?: string;
|
|
297
309
|
});
|