@mobileaction/action-kit 1.1.1 → 1.1.11
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.
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import type { PropType as __PropType } from 'vue';
|
|
2
2
|
import { type AnimationName } from "./types";
|
|
3
|
-
import {
|
|
3
|
+
import { SVGRendererConfig } from 'lottie-web/build/player/lottie_light';
|
|
4
4
|
export interface MaAnimationProps {
|
|
5
5
|
name: AnimationName;
|
|
6
|
-
renderer?: RendererType;
|
|
7
6
|
loop?: boolean;
|
|
8
7
|
autoplay?: boolean;
|
|
9
8
|
width?: number;
|
|
@@ -15,11 +14,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
15
14
|
type: __PropType<string>;
|
|
16
15
|
required: true;
|
|
17
16
|
};
|
|
18
|
-
renderer: {
|
|
19
|
-
type: __PropType<RendererType>;
|
|
20
|
-
required: false;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
17
|
loop: {
|
|
24
18
|
type: __PropType<boolean>;
|
|
25
19
|
required: false;
|
|
@@ -49,11 +43,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
49
43
|
type: __PropType<string>;
|
|
50
44
|
required: true;
|
|
51
45
|
};
|
|
52
|
-
renderer: {
|
|
53
|
-
type: __PropType<RendererType>;
|
|
54
|
-
required: false;
|
|
55
|
-
default: string;
|
|
56
|
-
};
|
|
57
46
|
loop: {
|
|
58
47
|
type: __PropType<boolean>;
|
|
59
48
|
required: false;
|
|
@@ -81,7 +70,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
81
70
|
onOnComplete?: (...args: any[]) => any;
|
|
82
71
|
onOnError?: (...args: any[]) => any;
|
|
83
72
|
}, {
|
|
84
|
-
renderer: RendererType;
|
|
85
73
|
loop: boolean;
|
|
86
74
|
autoplay: boolean;
|
|
87
75
|
}>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { type AnimationName } from "./types";
|
|
2
|
-
import {
|
|
2
|
+
import { SVGRendererConfig } from 'lottie-web/build/player/lottie_light';
|
|
3
3
|
export interface MaAnimationProps {
|
|
4
4
|
name: AnimationName;
|
|
5
|
-
renderer?: RendererType;
|
|
6
5
|
loop?: boolean;
|
|
7
6
|
autoplay?: boolean;
|
|
8
7
|
width?: number;
|
|
@@ -10,13 +9,11 @@ export interface MaAnimationProps {
|
|
|
10
9
|
rendererSettings?: SVGRendererConfig;
|
|
11
10
|
}
|
|
12
11
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaAnimationProps>, {
|
|
13
|
-
renderer: string;
|
|
14
12
|
loop: boolean;
|
|
15
13
|
autoplay: boolean;
|
|
16
14
|
}>, {
|
|
17
15
|
animation: any;
|
|
18
16
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onLoaded" | "onComplete" | "onError")[], "onError" | "onLoaded" | "onComplete", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaAnimationProps>, {
|
|
19
|
-
renderer: string;
|
|
20
17
|
loop: boolean;
|
|
21
18
|
autoplay: boolean;
|
|
22
19
|
}>>> & {
|
|
@@ -24,7 +21,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
24
21
|
onOnComplete?: (...args: any[]) => any;
|
|
25
22
|
onOnError?: (...args: any[]) => any;
|
|
26
23
|
}, {
|
|
27
|
-
renderer: RendererType;
|
|
28
24
|
loop: boolean;
|
|
29
25
|
autoplay: boolean;
|
|
30
26
|
}>;
|