@aarsteinmedia/dotlottie-player 2.1.6 → 2.1.8
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/cjs/index.js +1030 -2
- package/dist/custom-elements.json +18 -0
- package/dist/esm/index.js +1028 -2
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -3
- package/package.json +9 -8
package/dist/index.d.ts
CHANGED
|
@@ -132,6 +132,7 @@ declare class DotLottiePlayer extends LitElement {
|
|
|
132
132
|
private _playerState;
|
|
133
133
|
private _getOptions;
|
|
134
134
|
load(src: string | LottieJSON): Promise<void>;
|
|
135
|
+
getManifest(): LottieManifest;
|
|
135
136
|
private _addEventListeners;
|
|
136
137
|
private _onVisibilityChange;
|
|
137
138
|
private _handleSeekChange;
|
|
@@ -154,6 +155,8 @@ declare class DotLottiePlayer extends LitElement {
|
|
|
154
155
|
toggleLooping(): void;
|
|
155
156
|
toggleBoomerang(): void;
|
|
156
157
|
private _toggleSettings;
|
|
158
|
+
private _handleSettingsClick;
|
|
159
|
+
private _handleBlur;
|
|
157
160
|
private _switchInstance;
|
|
158
161
|
next(): void;
|
|
159
162
|
prev(): void;
|