@zyzgroup/core-vue 0.0.21 → 0.0.22
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/ce/style.css +1 -1
- package/ce/yz_custom_element.iife.js +134 -107
- package/ce/yz_custom_element.iife.js.map +1 -1
- package/ce/yz_custom_element.js +11414 -10519
- package/ce/yz_custom_element.js.map +1 -1
- package/ce/yz_custom_element.umd.cjs +134 -107
- package/ce/yz_custom_element.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/dist/zyzgroup_core_vue.iife.js +47 -38
- package/dist/zyzgroup_core_vue.iife.js.map +1 -1
- package/dist/zyzgroup_core_vue.js +5970 -5177
- package/dist/zyzgroup_core_vue.js.map +1 -1
- package/dist/zyzgroup_core_vue.umd.cjs +49 -40
- package/dist/zyzgroup_core_vue.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/types/components/Accordion.ce.vue.d.ts +5 -5
- package/types/components/Accordion.vue.d.ts +5 -5
- package/types/components/Container.ce.vue.d.ts +78 -0
- package/types/components/Container.vue.d.ts +78 -0
- package/types/components/chat/ClockFlipper.ce.vue.d.ts +69 -0
- package/types/components/chat/ClockFlipper.vue.d.ts +69 -0
- package/types/components/chat/RingText.ce.vue.d.ts +49 -0
- package/types/components/chat/RingText.vue.d.ts +49 -0
- package/types/components/effect/CSSAnimation.ce.vue.d.ts +92 -0
- package/types/components/effect/CSSAnimation.vue.d.ts +92 -0
- package/types/components/effect/Circle.ce.vue.d.ts +62 -0
- package/types/components/effect/Circle.vue.d.ts +62 -0
- package/types/components/effect/Float.ce.vue.d.ts +72 -0
- package/types/components/effect/Float.vue.d.ts +72 -0
- package/types/components/effect/LineDouble.ce.vue.d.ts +77 -0
- package/types/components/effect/LineDouble.vue.d.ts +77 -0
- package/types/components/effect/LineSingle.ce.vue.d.ts +77 -0
- package/types/components/effect/LineSingle.vue.d.ts +77 -0
- package/types/components/effect/Slide.ce.vue.d.ts +67 -0
- package/types/components/effect/Slide.vue.d.ts +67 -0
- package/types/components/effect/SlideCorner.ce.vue.d.ts +67 -0
- package/types/components/effect/SlideCorner.vue.d.ts +67 -0
- package/types/components/effect/TextBackgroundClip.ce.vue.d.ts +34 -0
- package/types/components/effect/TextBackgroundClip.vue.d.ts +34 -0
- package/types/lib.d.ts +11 -2
- package/types/types.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
2
|
initOpen?: boolean | undefined;
|
|
3
|
-
|
|
3
|
+
titleHeight?: string | undefined;
|
|
4
4
|
bgColor?: string | undefined;
|
|
5
5
|
fontColor?: string | undefined;
|
|
6
6
|
borderColor?: string | undefined;
|
|
@@ -9,7 +9,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
9
9
|
duration?: number | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
initOpen: boolean;
|
|
12
|
-
|
|
12
|
+
titleHeight: string;
|
|
13
13
|
bgColor: string;
|
|
14
14
|
fontColor: string;
|
|
15
15
|
borderColor: string;
|
|
@@ -22,7 +22,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
22
22
|
resize: (width: number, height: number) => void;
|
|
23
23
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
24
24
|
initOpen?: boolean | undefined;
|
|
25
|
-
|
|
25
|
+
titleHeight?: string | undefined;
|
|
26
26
|
bgColor?: string | undefined;
|
|
27
27
|
fontColor?: string | undefined;
|
|
28
28
|
borderColor?: string | undefined;
|
|
@@ -31,7 +31,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
31
31
|
duration?: number | undefined;
|
|
32
32
|
}>, {
|
|
33
33
|
initOpen: boolean;
|
|
34
|
-
|
|
34
|
+
titleHeight: string;
|
|
35
35
|
bgColor: string;
|
|
36
36
|
fontColor: string;
|
|
37
37
|
borderColor: string;
|
|
@@ -44,13 +44,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
44
44
|
onOpen?: (() => any) | undefined;
|
|
45
45
|
}, {
|
|
46
46
|
bgColor: string;
|
|
47
|
-
height: string;
|
|
48
47
|
padding: string;
|
|
49
48
|
borderRadius: string;
|
|
50
49
|
borderColor: string;
|
|
51
50
|
fontColor: string;
|
|
52
51
|
duration: number;
|
|
53
52
|
initOpen: boolean;
|
|
53
|
+
titleHeight: string;
|
|
54
54
|
}, {}>, {
|
|
55
55
|
title?(_: {}): any;
|
|
56
56
|
content?(_: {}): any;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
2
|
initOpen?: boolean | undefined;
|
|
3
|
-
|
|
3
|
+
titleHeight?: string | undefined;
|
|
4
4
|
bgColor?: string | undefined;
|
|
5
5
|
fontColor?: string | undefined;
|
|
6
6
|
borderColor?: string | undefined;
|
|
@@ -9,7 +9,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
9
9
|
duration?: number | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
initOpen: boolean;
|
|
12
|
-
|
|
12
|
+
titleHeight: string;
|
|
13
13
|
bgColor: string;
|
|
14
14
|
fontColor: string;
|
|
15
15
|
borderColor: string;
|
|
@@ -22,7 +22,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
22
22
|
resize: (width: number, height: number) => void;
|
|
23
23
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
24
24
|
initOpen?: boolean | undefined;
|
|
25
|
-
|
|
25
|
+
titleHeight?: string | undefined;
|
|
26
26
|
bgColor?: string | undefined;
|
|
27
27
|
fontColor?: string | undefined;
|
|
28
28
|
borderColor?: string | undefined;
|
|
@@ -31,7 +31,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
31
31
|
duration?: number | undefined;
|
|
32
32
|
}>, {
|
|
33
33
|
initOpen: boolean;
|
|
34
|
-
|
|
34
|
+
titleHeight: string;
|
|
35
35
|
bgColor: string;
|
|
36
36
|
fontColor: string;
|
|
37
37
|
borderColor: string;
|
|
@@ -44,13 +44,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
44
44
|
onOpen?: (() => any) | undefined;
|
|
45
45
|
}, {
|
|
46
46
|
bgColor: string;
|
|
47
|
-
height: string;
|
|
48
47
|
padding: string;
|
|
49
48
|
borderRadius: string;
|
|
50
49
|
borderColor: string;
|
|
51
50
|
fontColor: string;
|
|
52
51
|
duration: number;
|
|
53
52
|
initOpen: boolean;
|
|
53
|
+
titleHeight: string;
|
|
54
54
|
}, {}>, {
|
|
55
55
|
title?(_: {}): any;
|
|
56
56
|
content?(_: {}): any;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { DOMEventBus } from "@zyzgroup/core-web";
|
|
2
|
+
import { ContainerType, EffectInit, EffectTriggerTiming } from "../types";
|
|
3
|
+
declare function getApp(): Promise<DOMEventBus>;
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
5
|
+
overflow?: "visible" | "hidden" | undefined;
|
|
6
|
+
type?: ContainerType | undefined;
|
|
7
|
+
supportCopyText?: boolean | undefined;
|
|
8
|
+
effectInit?: EffectInit | undefined;
|
|
9
|
+
effectTriggerTiming?: EffectTriggerTiming | undefined;
|
|
10
|
+
enter?: (() => void) | undefined;
|
|
11
|
+
leave?: (() => void) | undefined;
|
|
12
|
+
styleSheets?: Record<string, string> | undefined;
|
|
13
|
+
}>, {
|
|
14
|
+
overflow: string;
|
|
15
|
+
type: string;
|
|
16
|
+
supportCopyText: boolean;
|
|
17
|
+
effectInit: string;
|
|
18
|
+
effectTriggerTiming: string;
|
|
19
|
+
}>, {
|
|
20
|
+
getApp: typeof getApp;
|
|
21
|
+
reEffect: () => void;
|
|
22
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
+
ready: (width: number, height: number) => void;
|
|
24
|
+
resize: (width: number, height: number) => void;
|
|
25
|
+
mouseOver: () => void;
|
|
26
|
+
mouseOut: () => void;
|
|
27
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
28
|
+
overflow?: "visible" | "hidden" | undefined;
|
|
29
|
+
type?: ContainerType | undefined;
|
|
30
|
+
supportCopyText?: boolean | undefined;
|
|
31
|
+
effectInit?: EffectInit | undefined;
|
|
32
|
+
effectTriggerTiming?: EffectTriggerTiming | undefined;
|
|
33
|
+
enter?: (() => void) | undefined;
|
|
34
|
+
leave?: (() => void) | undefined;
|
|
35
|
+
styleSheets?: Record<string, string> | undefined;
|
|
36
|
+
}>, {
|
|
37
|
+
overflow: string;
|
|
38
|
+
type: string;
|
|
39
|
+
supportCopyText: boolean;
|
|
40
|
+
effectInit: string;
|
|
41
|
+
effectTriggerTiming: string;
|
|
42
|
+
}>>> & {
|
|
43
|
+
onResize?: ((width: number, height: number) => any) | undefined;
|
|
44
|
+
onMouseOver?: (() => any) | undefined;
|
|
45
|
+
onMouseOut?: (() => any) | undefined;
|
|
46
|
+
onReady?: ((width: number, height: number) => any) | undefined;
|
|
47
|
+
}, {
|
|
48
|
+
type: ContainerType;
|
|
49
|
+
overflow: "visible" | "hidden";
|
|
50
|
+
supportCopyText: boolean;
|
|
51
|
+
effectInit: EffectInit;
|
|
52
|
+
effectTriggerTiming: EffectTriggerTiming;
|
|
53
|
+
}, {}>, {
|
|
54
|
+
default?(_: {}): any;
|
|
55
|
+
}>;
|
|
56
|
+
export default _default;
|
|
57
|
+
type __VLS_WithDefaults<P, D> = {
|
|
58
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
59
|
+
default: D[K];
|
|
60
|
+
}> : P[K];
|
|
61
|
+
};
|
|
62
|
+
type __VLS_Prettify<T> = {
|
|
63
|
+
[K in keyof T]: T[K];
|
|
64
|
+
} & {};
|
|
65
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
66
|
+
new (): {
|
|
67
|
+
$slots: S;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
71
|
+
type __VLS_TypePropsToOption<T> = {
|
|
72
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
73
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
74
|
+
} : {
|
|
75
|
+
type: import('vue').PropType<T[K]>;
|
|
76
|
+
required: true;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { DOMEventBus } from "@zyzgroup/core-web";
|
|
2
|
+
import { ContainerType, EffectInit, EffectTriggerTiming } from "../types";
|
|
3
|
+
declare function getApp(): Promise<DOMEventBus>;
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
5
|
+
overflow?: "visible" | "hidden" | undefined;
|
|
6
|
+
type?: ContainerType | undefined;
|
|
7
|
+
supportCopyText?: boolean | undefined;
|
|
8
|
+
effectInit?: EffectInit | undefined;
|
|
9
|
+
effectTriggerTiming?: EffectTriggerTiming | undefined;
|
|
10
|
+
enter?: (() => void) | undefined;
|
|
11
|
+
leave?: (() => void) | undefined;
|
|
12
|
+
styleSheets?: Record<string, string> | undefined;
|
|
13
|
+
}>, {
|
|
14
|
+
overflow: string;
|
|
15
|
+
type: string;
|
|
16
|
+
supportCopyText: boolean;
|
|
17
|
+
effectInit: string;
|
|
18
|
+
effectTriggerTiming: string;
|
|
19
|
+
}>, {
|
|
20
|
+
getApp: typeof getApp;
|
|
21
|
+
reEffect: () => void;
|
|
22
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
+
ready: (width: number, height: number) => void;
|
|
24
|
+
resize: (width: number, height: number) => void;
|
|
25
|
+
mouseOver: () => void;
|
|
26
|
+
mouseOut: () => void;
|
|
27
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
28
|
+
overflow?: "visible" | "hidden" | undefined;
|
|
29
|
+
type?: ContainerType | undefined;
|
|
30
|
+
supportCopyText?: boolean | undefined;
|
|
31
|
+
effectInit?: EffectInit | undefined;
|
|
32
|
+
effectTriggerTiming?: EffectTriggerTiming | undefined;
|
|
33
|
+
enter?: (() => void) | undefined;
|
|
34
|
+
leave?: (() => void) | undefined;
|
|
35
|
+
styleSheets?: Record<string, string> | undefined;
|
|
36
|
+
}>, {
|
|
37
|
+
overflow: string;
|
|
38
|
+
type: string;
|
|
39
|
+
supportCopyText: boolean;
|
|
40
|
+
effectInit: string;
|
|
41
|
+
effectTriggerTiming: string;
|
|
42
|
+
}>>> & {
|
|
43
|
+
onResize?: ((width: number, height: number) => any) | undefined;
|
|
44
|
+
onMouseOver?: (() => any) | undefined;
|
|
45
|
+
onMouseOut?: (() => any) | undefined;
|
|
46
|
+
onReady?: ((width: number, height: number) => any) | undefined;
|
|
47
|
+
}, {
|
|
48
|
+
type: ContainerType;
|
|
49
|
+
overflow: "visible" | "hidden";
|
|
50
|
+
supportCopyText: boolean;
|
|
51
|
+
effectInit: EffectInit;
|
|
52
|
+
effectTriggerTiming: EffectTriggerTiming;
|
|
53
|
+
}, {}>, {
|
|
54
|
+
default?(_: {}): any;
|
|
55
|
+
}>;
|
|
56
|
+
export default _default;
|
|
57
|
+
type __VLS_WithDefaults<P, D> = {
|
|
58
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
59
|
+
default: D[K];
|
|
60
|
+
}> : P[K];
|
|
61
|
+
};
|
|
62
|
+
type __VLS_Prettify<T> = {
|
|
63
|
+
[K in keyof T]: T[K];
|
|
64
|
+
} & {};
|
|
65
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
66
|
+
new (): {
|
|
67
|
+
$slots: S;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
71
|
+
type __VLS_TypePropsToOption<T> = {
|
|
72
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
73
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
74
|
+
} : {
|
|
75
|
+
type: import('vue').PropType<T[K]>;
|
|
76
|
+
required: true;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
startTime?: string | undefined;
|
|
3
|
+
type?: "increase" | "decrease" | undefined;
|
|
4
|
+
direction?: "down" | "up" | undefined;
|
|
5
|
+
dur?: number | undefined;
|
|
6
|
+
bgColor?: string | undefined;
|
|
7
|
+
textColor?: string | undefined;
|
|
8
|
+
borderRadius?: number | undefined;
|
|
9
|
+
gap?: number | undefined;
|
|
10
|
+
perspective?: number | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
startTime: string;
|
|
13
|
+
type: string;
|
|
14
|
+
direction: string;
|
|
15
|
+
dur: number;
|
|
16
|
+
bgColor: string;
|
|
17
|
+
textColor: string;
|
|
18
|
+
borderRadius: number;
|
|
19
|
+
gap: number;
|
|
20
|
+
perspective: number;
|
|
21
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
22
|
+
startTime?: string | undefined;
|
|
23
|
+
type?: "increase" | "decrease" | undefined;
|
|
24
|
+
direction?: "down" | "up" | undefined;
|
|
25
|
+
dur?: number | undefined;
|
|
26
|
+
bgColor?: string | undefined;
|
|
27
|
+
textColor?: string | undefined;
|
|
28
|
+
borderRadius?: number | undefined;
|
|
29
|
+
gap?: number | undefined;
|
|
30
|
+
perspective?: number | undefined;
|
|
31
|
+
}>, {
|
|
32
|
+
startTime: string;
|
|
33
|
+
type: string;
|
|
34
|
+
direction: string;
|
|
35
|
+
dur: number;
|
|
36
|
+
bgColor: string;
|
|
37
|
+
textColor: string;
|
|
38
|
+
borderRadius: number;
|
|
39
|
+
gap: number;
|
|
40
|
+
perspective: number;
|
|
41
|
+
}>>>, {
|
|
42
|
+
bgColor: string;
|
|
43
|
+
type: "increase" | "decrease";
|
|
44
|
+
borderRadius: number;
|
|
45
|
+
direction: "down" | "up";
|
|
46
|
+
gap: number;
|
|
47
|
+
perspective: number;
|
|
48
|
+
dur: number;
|
|
49
|
+
startTime: string;
|
|
50
|
+
textColor: string;
|
|
51
|
+
}, {}>;
|
|
52
|
+
export default _default;
|
|
53
|
+
type __VLS_WithDefaults<P, D> = {
|
|
54
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
55
|
+
default: D[K];
|
|
56
|
+
}> : P[K];
|
|
57
|
+
};
|
|
58
|
+
type __VLS_Prettify<T> = {
|
|
59
|
+
[K in keyof T]: T[K];
|
|
60
|
+
} & {};
|
|
61
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
62
|
+
type __VLS_TypePropsToOption<T> = {
|
|
63
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
64
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
65
|
+
} : {
|
|
66
|
+
type: import('vue').PropType<T[K]>;
|
|
67
|
+
required: true;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
startTime?: string | undefined;
|
|
3
|
+
type?: "increase" | "decrease" | undefined;
|
|
4
|
+
direction?: "down" | "up" | undefined;
|
|
5
|
+
dur?: number | undefined;
|
|
6
|
+
bgColor?: string | undefined;
|
|
7
|
+
textColor?: string | undefined;
|
|
8
|
+
borderRadius?: number | undefined;
|
|
9
|
+
gap?: number | undefined;
|
|
10
|
+
perspective?: number | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
startTime: string;
|
|
13
|
+
type: string;
|
|
14
|
+
direction: string;
|
|
15
|
+
dur: number;
|
|
16
|
+
bgColor: string;
|
|
17
|
+
textColor: string;
|
|
18
|
+
borderRadius: number;
|
|
19
|
+
gap: number;
|
|
20
|
+
perspective: number;
|
|
21
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
22
|
+
startTime?: string | undefined;
|
|
23
|
+
type?: "increase" | "decrease" | undefined;
|
|
24
|
+
direction?: "down" | "up" | undefined;
|
|
25
|
+
dur?: number | undefined;
|
|
26
|
+
bgColor?: string | undefined;
|
|
27
|
+
textColor?: string | undefined;
|
|
28
|
+
borderRadius?: number | undefined;
|
|
29
|
+
gap?: number | undefined;
|
|
30
|
+
perspective?: number | undefined;
|
|
31
|
+
}>, {
|
|
32
|
+
startTime: string;
|
|
33
|
+
type: string;
|
|
34
|
+
direction: string;
|
|
35
|
+
dur: number;
|
|
36
|
+
bgColor: string;
|
|
37
|
+
textColor: string;
|
|
38
|
+
borderRadius: number;
|
|
39
|
+
gap: number;
|
|
40
|
+
perspective: number;
|
|
41
|
+
}>>>, {
|
|
42
|
+
bgColor: string;
|
|
43
|
+
type: "increase" | "decrease";
|
|
44
|
+
borderRadius: number;
|
|
45
|
+
direction: "down" | "up";
|
|
46
|
+
gap: number;
|
|
47
|
+
perspective: number;
|
|
48
|
+
dur: number;
|
|
49
|
+
startTime: string;
|
|
50
|
+
textColor: string;
|
|
51
|
+
}, {}>;
|
|
52
|
+
export default _default;
|
|
53
|
+
type __VLS_WithDefaults<P, D> = {
|
|
54
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
55
|
+
default: D[K];
|
|
56
|
+
}> : P[K];
|
|
57
|
+
};
|
|
58
|
+
type __VLS_Prettify<T> = {
|
|
59
|
+
[K in keyof T]: T[K];
|
|
60
|
+
} & {};
|
|
61
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
62
|
+
type __VLS_TypePropsToOption<T> = {
|
|
63
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
64
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
65
|
+
} : {
|
|
66
|
+
type: import('vue').PropType<T[K]>;
|
|
67
|
+
required: true;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
text?: string | undefined;
|
|
3
|
+
secondText?: string | undefined;
|
|
4
|
+
startColor?: string | undefined;
|
|
5
|
+
endColor?: string | undefined;
|
|
6
|
+
dur?: number | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
text: string;
|
|
9
|
+
secondText: string;
|
|
10
|
+
startColor: string;
|
|
11
|
+
endColor: string;
|
|
12
|
+
dur: number;
|
|
13
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
14
|
+
text?: string | undefined;
|
|
15
|
+
secondText?: string | undefined;
|
|
16
|
+
startColor?: string | undefined;
|
|
17
|
+
endColor?: string | undefined;
|
|
18
|
+
dur?: number | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
text: string;
|
|
21
|
+
secondText: string;
|
|
22
|
+
startColor: string;
|
|
23
|
+
endColor: string;
|
|
24
|
+
dur: number;
|
|
25
|
+
}>>>, {
|
|
26
|
+
text: string;
|
|
27
|
+
dur: number;
|
|
28
|
+
startColor: string;
|
|
29
|
+
endColor: string;
|
|
30
|
+
secondText: string;
|
|
31
|
+
}, {}>;
|
|
32
|
+
export default _default;
|
|
33
|
+
type __VLS_WithDefaults<P, D> = {
|
|
34
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
35
|
+
default: D[K];
|
|
36
|
+
}> : P[K];
|
|
37
|
+
};
|
|
38
|
+
type __VLS_Prettify<T> = {
|
|
39
|
+
[K in keyof T]: T[K];
|
|
40
|
+
} & {};
|
|
41
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
|
+
type __VLS_TypePropsToOption<T> = {
|
|
43
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
44
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
45
|
+
} : {
|
|
46
|
+
type: import('vue').PropType<T[K]>;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
text?: string | undefined;
|
|
3
|
+
secondText?: string | undefined;
|
|
4
|
+
startColor?: string | undefined;
|
|
5
|
+
endColor?: string | undefined;
|
|
6
|
+
dur?: number | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
text: string;
|
|
9
|
+
secondText: string;
|
|
10
|
+
startColor: string;
|
|
11
|
+
endColor: string;
|
|
12
|
+
dur: number;
|
|
13
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
14
|
+
text?: string | undefined;
|
|
15
|
+
secondText?: string | undefined;
|
|
16
|
+
startColor?: string | undefined;
|
|
17
|
+
endColor?: string | undefined;
|
|
18
|
+
dur?: number | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
text: string;
|
|
21
|
+
secondText: string;
|
|
22
|
+
startColor: string;
|
|
23
|
+
endColor: string;
|
|
24
|
+
dur: number;
|
|
25
|
+
}>>>, {
|
|
26
|
+
text: string;
|
|
27
|
+
dur: number;
|
|
28
|
+
startColor: string;
|
|
29
|
+
endColor: string;
|
|
30
|
+
secondText: string;
|
|
31
|
+
}, {}>;
|
|
32
|
+
export default _default;
|
|
33
|
+
type __VLS_WithDefaults<P, D> = {
|
|
34
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
35
|
+
default: D[K];
|
|
36
|
+
}> : P[K];
|
|
37
|
+
};
|
|
38
|
+
type __VLS_Prettify<T> = {
|
|
39
|
+
[K in keyof T]: T[K];
|
|
40
|
+
} & {};
|
|
41
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
|
+
type __VLS_TypePropsToOption<T> = {
|
|
43
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
44
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
45
|
+
} : {
|
|
46
|
+
type: import('vue').PropType<T[K]>;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { ContainerType, EffectInit, EffectTriggerTiming } from "../../types";
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
|
+
containerType?: ContainerType | undefined;
|
|
4
|
+
supportCopyText?: boolean | undefined;
|
|
5
|
+
effectInit?: EffectInit | undefined;
|
|
6
|
+
effectTriggerTiming?: EffectTriggerTiming | undefined;
|
|
7
|
+
duration?: number | undefined;
|
|
8
|
+
delay?: number | undefined;
|
|
9
|
+
repeat?: number | "infinite" | undefined;
|
|
10
|
+
fillMode?: "none" | "backwards" | "both" | "forwards" | undefined;
|
|
11
|
+
timingFunction?: string | undefined;
|
|
12
|
+
direction?: "reverse" | "normal" | "alternate" | "alternate-reverse" | undefined;
|
|
13
|
+
playState?: "paused" | "running" | undefined;
|
|
14
|
+
name?: "flip" | "swing" | "jelly" | "bounce" | "flash" | "pulse" | "rubberBand" | "shakeX" | "shakeY" | "headShake" | "tada" | "wobble" | "jello" | "heartBeat" | "backInLeft" | "backInRight" | "backInUp" | "backInDown" | "backOutLeft" | "backOutRight" | "backOutUp" | "backOutDown" | "bounceIn" | "bounceInLeft" | "bounceInRight" | "bounceInUp" | "bounceInDown" | "bounceOut" | "bounceOutLeft" | "bounceOutRight" | "bounceOutUp" | "bounceOutDown" | "fadeIn" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeInUp" | "fadeInUpBig" | "fadeInDown" | "fadeInDownBig" | "fadeInTopLeft" | "fadeInTopRight" | "fadeInBottomLeft" | "fadeInBottomRight" | "fadeOut" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutTopLeft" | "fadeOutTopRight" | "fadeOutBottomRight" | "fadeOutBottomLeft" | "flipInX" | "flipInY" | "flipOutX" | "flipOutY" | "lightSpeedInLeft" | "lightSpeedInRight" | "lightSpeedOutLeft" | "lightSpeedOutRight" | "rotateIn" | "rotateInUpLeft" | "rotateInUpRight" | "rotateInDownLeft" | "rotateInDownRight" | "rotateOut" | "rotateOutUpLeft" | "rotateOutUpRight" | "rotateOutDownLeft" | "rotateOutDownRight" | "hinge" | "jackInTheBox" | "rollIn" | "rollOut" | "zoomIn" | "zoomInLeft" | "zoomInRight" | "zoomInUp" | "zoomInDown" | "zoomOut" | "zoomOutLeft" | "zoomOutRight" | "zoomOutUp" | "zoomOutDown" | "slideInLeft" | "slideInRight" | "slideInUp" | "slideInDown" | "slideOutLeft" | "slideOutRight" | "slideOutUp" | "slideOutDown" | undefined;
|
|
15
|
+
}>, {
|
|
16
|
+
containerType: string;
|
|
17
|
+
supportCopyText: boolean;
|
|
18
|
+
effectInit: string;
|
|
19
|
+
effectTriggerTiming: string;
|
|
20
|
+
duration: number;
|
|
21
|
+
delay: number;
|
|
22
|
+
repeat: number;
|
|
23
|
+
fillMode: string;
|
|
24
|
+
timingFunction: string;
|
|
25
|
+
direction: string;
|
|
26
|
+
playState: string;
|
|
27
|
+
name: string;
|
|
28
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
29
|
+
containerType?: ContainerType | undefined;
|
|
30
|
+
supportCopyText?: boolean | undefined;
|
|
31
|
+
effectInit?: EffectInit | undefined;
|
|
32
|
+
effectTriggerTiming?: EffectTriggerTiming | undefined;
|
|
33
|
+
duration?: number | undefined;
|
|
34
|
+
delay?: number | undefined;
|
|
35
|
+
repeat?: number | "infinite" | undefined;
|
|
36
|
+
fillMode?: "none" | "backwards" | "both" | "forwards" | undefined;
|
|
37
|
+
timingFunction?: string | undefined;
|
|
38
|
+
direction?: "reverse" | "normal" | "alternate" | "alternate-reverse" | undefined;
|
|
39
|
+
playState?: "paused" | "running" | undefined;
|
|
40
|
+
name?: "flip" | "swing" | "jelly" | "bounce" | "flash" | "pulse" | "rubberBand" | "shakeX" | "shakeY" | "headShake" | "tada" | "wobble" | "jello" | "heartBeat" | "backInLeft" | "backInRight" | "backInUp" | "backInDown" | "backOutLeft" | "backOutRight" | "backOutUp" | "backOutDown" | "bounceIn" | "bounceInLeft" | "bounceInRight" | "bounceInUp" | "bounceInDown" | "bounceOut" | "bounceOutLeft" | "bounceOutRight" | "bounceOutUp" | "bounceOutDown" | "fadeIn" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeInUp" | "fadeInUpBig" | "fadeInDown" | "fadeInDownBig" | "fadeInTopLeft" | "fadeInTopRight" | "fadeInBottomLeft" | "fadeInBottomRight" | "fadeOut" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutTopLeft" | "fadeOutTopRight" | "fadeOutBottomRight" | "fadeOutBottomLeft" | "flipInX" | "flipInY" | "flipOutX" | "flipOutY" | "lightSpeedInLeft" | "lightSpeedInRight" | "lightSpeedOutLeft" | "lightSpeedOutRight" | "rotateIn" | "rotateInUpLeft" | "rotateInUpRight" | "rotateInDownLeft" | "rotateInDownRight" | "rotateOut" | "rotateOutUpLeft" | "rotateOutUpRight" | "rotateOutDownLeft" | "rotateOutDownRight" | "hinge" | "jackInTheBox" | "rollIn" | "rollOut" | "zoomIn" | "zoomInLeft" | "zoomInRight" | "zoomInUp" | "zoomInDown" | "zoomOut" | "zoomOutLeft" | "zoomOutRight" | "zoomOutUp" | "zoomOutDown" | "slideInLeft" | "slideInRight" | "slideInUp" | "slideInDown" | "slideOutLeft" | "slideOutRight" | "slideOutUp" | "slideOutDown" | undefined;
|
|
41
|
+
}>, {
|
|
42
|
+
containerType: string;
|
|
43
|
+
supportCopyText: boolean;
|
|
44
|
+
effectInit: string;
|
|
45
|
+
effectTriggerTiming: string;
|
|
46
|
+
duration: number;
|
|
47
|
+
delay: number;
|
|
48
|
+
repeat: number;
|
|
49
|
+
fillMode: string;
|
|
50
|
+
timingFunction: string;
|
|
51
|
+
direction: string;
|
|
52
|
+
playState: string;
|
|
53
|
+
name: string;
|
|
54
|
+
}>>>, {
|
|
55
|
+
repeat: number | "infinite";
|
|
56
|
+
duration: number;
|
|
57
|
+
name: "flip" | "swing" | "jelly" | "bounce" | "flash" | "pulse" | "rubberBand" | "shakeX" | "shakeY" | "headShake" | "tada" | "wobble" | "jello" | "heartBeat" | "backInLeft" | "backInRight" | "backInUp" | "backInDown" | "backOutLeft" | "backOutRight" | "backOutUp" | "backOutDown" | "bounceIn" | "bounceInLeft" | "bounceInRight" | "bounceInUp" | "bounceInDown" | "bounceOut" | "bounceOutLeft" | "bounceOutRight" | "bounceOutUp" | "bounceOutDown" | "fadeIn" | "fadeInLeft" | "fadeInLeftBig" | "fadeInRight" | "fadeInRightBig" | "fadeInUp" | "fadeInUpBig" | "fadeInDown" | "fadeInDownBig" | "fadeInTopLeft" | "fadeInTopRight" | "fadeInBottomLeft" | "fadeInBottomRight" | "fadeOut" | "fadeOutLeft" | "fadeOutLeftBig" | "fadeOutRight" | "fadeOutRightBig" | "fadeOutUp" | "fadeOutUpBig" | "fadeOutDown" | "fadeOutDownBig" | "fadeOutTopLeft" | "fadeOutTopRight" | "fadeOutBottomRight" | "fadeOutBottomLeft" | "flipInX" | "flipInY" | "flipOutX" | "flipOutY" | "lightSpeedInLeft" | "lightSpeedInRight" | "lightSpeedOutLeft" | "lightSpeedOutRight" | "rotateIn" | "rotateInUpLeft" | "rotateInUpRight" | "rotateInDownLeft" | "rotateInDownRight" | "rotateOut" | "rotateOutUpLeft" | "rotateOutUpRight" | "rotateOutDownLeft" | "rotateOutDownRight" | "hinge" | "jackInTheBox" | "rollIn" | "rollOut" | "zoomIn" | "zoomInLeft" | "zoomInRight" | "zoomInUp" | "zoomInDown" | "zoomOut" | "zoomOutLeft" | "zoomOutRight" | "zoomOutUp" | "zoomOutDown" | "slideInLeft" | "slideInRight" | "slideInUp" | "slideInDown" | "slideOutLeft" | "slideOutRight" | "slideOutUp" | "slideOutDown";
|
|
58
|
+
supportCopyText: boolean;
|
|
59
|
+
effectInit: EffectInit;
|
|
60
|
+
effectTriggerTiming: EffectTriggerTiming;
|
|
61
|
+
direction: "reverse" | "normal" | "alternate" | "alternate-reverse";
|
|
62
|
+
delay: number;
|
|
63
|
+
containerType: ContainerType;
|
|
64
|
+
fillMode: "none" | "backwards" | "both" | "forwards";
|
|
65
|
+
timingFunction: string;
|
|
66
|
+
playState: "paused" | "running";
|
|
67
|
+
}, {}>, {
|
|
68
|
+
default?(_: {}): any;
|
|
69
|
+
}>;
|
|
70
|
+
export default _default;
|
|
71
|
+
type __VLS_WithDefaults<P, D> = {
|
|
72
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
73
|
+
default: D[K];
|
|
74
|
+
}> : P[K];
|
|
75
|
+
};
|
|
76
|
+
type __VLS_Prettify<T> = {
|
|
77
|
+
[K in keyof T]: T[K];
|
|
78
|
+
} & {};
|
|
79
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
80
|
+
new (): {
|
|
81
|
+
$slots: S;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
85
|
+
type __VLS_TypePropsToOption<T> = {
|
|
86
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
87
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
88
|
+
} : {
|
|
89
|
+
type: import('vue').PropType<T[K]>;
|
|
90
|
+
required: true;
|
|
91
|
+
};
|
|
92
|
+
};
|