@zyzgroup/core-vue 0.0.20 → 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.
Files changed (43) hide show
  1. package/ce/style.css +1 -1
  2. package/ce/yz_custom_element.iife.js +134 -107
  3. package/ce/yz_custom_element.iife.js.map +1 -1
  4. package/ce/yz_custom_element.js +11342 -10452
  5. package/ce/yz_custom_element.js.map +1 -1
  6. package/ce/yz_custom_element.umd.cjs +134 -107
  7. package/ce/yz_custom_element.umd.cjs.map +1 -1
  8. package/dist/style.css +1 -1
  9. package/dist/zyzgroup_core_vue.iife.js +49 -40
  10. package/dist/zyzgroup_core_vue.iife.js.map +1 -1
  11. package/dist/zyzgroup_core_vue.js +5928 -5140
  12. package/dist/zyzgroup_core_vue.js.map +1 -1
  13. package/dist/zyzgroup_core_vue.umd.cjs +51 -42
  14. package/dist/zyzgroup_core_vue.umd.cjs.map +1 -1
  15. package/package.json +1 -1
  16. package/types/components/Accordion.ce.vue.d.ts +5 -5
  17. package/types/components/Accordion.vue.d.ts +5 -5
  18. package/types/components/Container.ce.vue.d.ts +78 -0
  19. package/types/components/Container.vue.d.ts +78 -0
  20. package/types/components/chat/ClockFlipper.ce.vue.d.ts +69 -0
  21. package/types/components/chat/ClockFlipper.vue.d.ts +69 -0
  22. package/types/components/chat/RingIndicator.ce.vue.d.ts +2 -6
  23. package/types/components/chat/RingIndicator.vue.d.ts +2 -6
  24. package/types/components/chat/RingText.ce.vue.d.ts +49 -0
  25. package/types/components/chat/RingText.vue.d.ts +49 -0
  26. package/types/components/effect/CSSAnimation.ce.vue.d.ts +92 -0
  27. package/types/components/effect/CSSAnimation.vue.d.ts +92 -0
  28. package/types/components/effect/Circle.ce.vue.d.ts +62 -0
  29. package/types/components/effect/Circle.vue.d.ts +62 -0
  30. package/types/components/effect/Float.ce.vue.d.ts +72 -0
  31. package/types/components/effect/Float.vue.d.ts +72 -0
  32. package/types/components/effect/LineDouble.ce.vue.d.ts +77 -0
  33. package/types/components/effect/LineDouble.vue.d.ts +77 -0
  34. package/types/components/effect/LineSingle.ce.vue.d.ts +77 -0
  35. package/types/components/effect/LineSingle.vue.d.ts +77 -0
  36. package/types/components/effect/Slide.ce.vue.d.ts +67 -0
  37. package/types/components/effect/Slide.vue.d.ts +67 -0
  38. package/types/components/effect/SlideCorner.ce.vue.d.ts +67 -0
  39. package/types/components/effect/SlideCorner.vue.d.ts +67 -0
  40. package/types/components/effect/TextBackgroundClip.ce.vue.d.ts +34 -0
  41. package/types/components/effect/TextBackgroundClip.vue.d.ts +34 -0
  42. package/types/lib.d.ts +11 -2
  43. package/types/types.d.ts +3 -0
@@ -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
+ };
@@ -0,0 +1,62 @@
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
+ color?: string | undefined;
8
+ dur?: number | undefined;
9
+ }>, {
10
+ containerType: string;
11
+ supportCopyText: boolean;
12
+ effectInit: string;
13
+ effectTriggerTiming: string;
14
+ color: string;
15
+ dur: number;
16
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
17
+ containerType?: ContainerType | undefined;
18
+ supportCopyText?: boolean | undefined;
19
+ effectInit?: EffectInit | undefined;
20
+ effectTriggerTiming?: EffectTriggerTiming | undefined;
21
+ color?: string | undefined;
22
+ dur?: number | undefined;
23
+ }>, {
24
+ containerType: string;
25
+ supportCopyText: boolean;
26
+ effectInit: string;
27
+ effectTriggerTiming: string;
28
+ color: string;
29
+ dur: number;
30
+ }>>>, {
31
+ color: string;
32
+ supportCopyText: boolean;
33
+ effectInit: EffectInit;
34
+ effectTriggerTiming: EffectTriggerTiming;
35
+ dur: number;
36
+ containerType: ContainerType;
37
+ }, {}>, {
38
+ default?(_: {}): any;
39
+ }>;
40
+ export default _default;
41
+ type __VLS_WithDefaults<P, D> = {
42
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
43
+ default: D[K];
44
+ }> : P[K];
45
+ };
46
+ type __VLS_Prettify<T> = {
47
+ [K in keyof T]: T[K];
48
+ } & {};
49
+ type __VLS_WithTemplateSlots<T, S> = T & {
50
+ new (): {
51
+ $slots: S;
52
+ };
53
+ };
54
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
55
+ type __VLS_TypePropsToOption<T> = {
56
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
57
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
58
+ } : {
59
+ type: import('vue').PropType<T[K]>;
60
+ required: true;
61
+ };
62
+ };
@@ -0,0 +1,62 @@
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
+ color?: string | undefined;
8
+ dur?: number | undefined;
9
+ }>, {
10
+ containerType: string;
11
+ supportCopyText: boolean;
12
+ effectInit: string;
13
+ effectTriggerTiming: string;
14
+ color: string;
15
+ dur: number;
16
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
17
+ containerType?: ContainerType | undefined;
18
+ supportCopyText?: boolean | undefined;
19
+ effectInit?: EffectInit | undefined;
20
+ effectTriggerTiming?: EffectTriggerTiming | undefined;
21
+ color?: string | undefined;
22
+ dur?: number | undefined;
23
+ }>, {
24
+ containerType: string;
25
+ supportCopyText: boolean;
26
+ effectInit: string;
27
+ effectTriggerTiming: string;
28
+ color: string;
29
+ dur: number;
30
+ }>>>, {
31
+ color: string;
32
+ supportCopyText: boolean;
33
+ effectInit: EffectInit;
34
+ effectTriggerTiming: EffectTriggerTiming;
35
+ dur: number;
36
+ containerType: ContainerType;
37
+ }, {}>, {
38
+ default?(_: {}): any;
39
+ }>;
40
+ export default _default;
41
+ type __VLS_WithDefaults<P, D> = {
42
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
43
+ default: D[K];
44
+ }> : P[K];
45
+ };
46
+ type __VLS_Prettify<T> = {
47
+ [K in keyof T]: T[K];
48
+ } & {};
49
+ type __VLS_WithTemplateSlots<T, S> = T & {
50
+ new (): {
51
+ $slots: S;
52
+ };
53
+ };
54
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
55
+ type __VLS_TypePropsToOption<T> = {
56
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
57
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
58
+ } : {
59
+ type: import('vue').PropType<T[K]>;
60
+ required: true;
61
+ };
62
+ };
@@ -0,0 +1,72 @@
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
+ dur?: number | undefined;
8
+ distance?: number | undefined;
9
+ boxShadow?: string | undefined;
10
+ direction?: "left" | "right" | "down" | "up" | undefined;
11
+ }>, {
12
+ containerType: string;
13
+ supportCopyText: boolean;
14
+ effectInit: string;
15
+ effectTriggerTiming: string;
16
+ dur: number;
17
+ distance: number;
18
+ boxShadow: string;
19
+ direction: string;
20
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
21
+ containerType?: ContainerType | undefined;
22
+ supportCopyText?: boolean | undefined;
23
+ effectInit?: EffectInit | undefined;
24
+ effectTriggerTiming?: EffectTriggerTiming | undefined;
25
+ dur?: number | undefined;
26
+ distance?: number | undefined;
27
+ boxShadow?: string | undefined;
28
+ direction?: "left" | "right" | "down" | "up" | undefined;
29
+ }>, {
30
+ containerType: string;
31
+ supportCopyText: boolean;
32
+ effectInit: string;
33
+ effectTriggerTiming: string;
34
+ dur: number;
35
+ distance: number;
36
+ boxShadow: string;
37
+ direction: string;
38
+ }>>>, {
39
+ supportCopyText: boolean;
40
+ effectInit: EffectInit;
41
+ effectTriggerTiming: EffectTriggerTiming;
42
+ direction: "left" | "right" | "down" | "up";
43
+ dur: number;
44
+ containerType: ContainerType;
45
+ distance: number;
46
+ boxShadow: string;
47
+ }, {}>, {
48
+ default?(_: {}): any;
49
+ }>;
50
+ export default _default;
51
+ type __VLS_WithDefaults<P, D> = {
52
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
53
+ default: D[K];
54
+ }> : P[K];
55
+ };
56
+ type __VLS_Prettify<T> = {
57
+ [K in keyof T]: T[K];
58
+ } & {};
59
+ type __VLS_WithTemplateSlots<T, S> = T & {
60
+ new (): {
61
+ $slots: S;
62
+ };
63
+ };
64
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
65
+ type __VLS_TypePropsToOption<T> = {
66
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
67
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
68
+ } : {
69
+ type: import('vue').PropType<T[K]>;
70
+ required: true;
71
+ };
72
+ };
@@ -0,0 +1,72 @@
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
+ dur?: number | undefined;
8
+ distance?: number | undefined;
9
+ boxShadow?: string | undefined;
10
+ direction?: "left" | "right" | "down" | "up" | undefined;
11
+ }>, {
12
+ containerType: string;
13
+ supportCopyText: boolean;
14
+ effectInit: string;
15
+ effectTriggerTiming: string;
16
+ dur: number;
17
+ distance: number;
18
+ boxShadow: string;
19
+ direction: string;
20
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
21
+ containerType?: ContainerType | undefined;
22
+ supportCopyText?: boolean | undefined;
23
+ effectInit?: EffectInit | undefined;
24
+ effectTriggerTiming?: EffectTriggerTiming | undefined;
25
+ dur?: number | undefined;
26
+ distance?: number | undefined;
27
+ boxShadow?: string | undefined;
28
+ direction?: "left" | "right" | "down" | "up" | undefined;
29
+ }>, {
30
+ containerType: string;
31
+ supportCopyText: boolean;
32
+ effectInit: string;
33
+ effectTriggerTiming: string;
34
+ dur: number;
35
+ distance: number;
36
+ boxShadow: string;
37
+ direction: string;
38
+ }>>>, {
39
+ supportCopyText: boolean;
40
+ effectInit: EffectInit;
41
+ effectTriggerTiming: EffectTriggerTiming;
42
+ direction: "left" | "right" | "down" | "up";
43
+ dur: number;
44
+ containerType: ContainerType;
45
+ distance: number;
46
+ boxShadow: string;
47
+ }, {}>, {
48
+ default?(_: {}): any;
49
+ }>;
50
+ export default _default;
51
+ type __VLS_WithDefaults<P, D> = {
52
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
53
+ default: D[K];
54
+ }> : P[K];
55
+ };
56
+ type __VLS_Prettify<T> = {
57
+ [K in keyof T]: T[K];
58
+ } & {};
59
+ type __VLS_WithTemplateSlots<T, S> = T & {
60
+ new (): {
61
+ $slots: S;
62
+ };
63
+ };
64
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
65
+ type __VLS_TypePropsToOption<T> = {
66
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
67
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
68
+ } : {
69
+ type: import('vue').PropType<T[K]>;
70
+ required: true;
71
+ };
72
+ };
@@ -0,0 +1,77 @@
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
+ color?: string | undefined;
8
+ timeGap?: number | undefined;
9
+ lineHeight?: number | undefined;
10
+ location?: "horizontal" | "vertical" | undefined;
11
+ direction?: "fromCenter" | "toEnd" | "toStart" | "towards" | undefined;
12
+ }>, {
13
+ containerType: string;
14
+ supportCopyText: boolean;
15
+ effectInit: string;
16
+ effectTriggerTiming: string;
17
+ color: string;
18
+ timeGap: number;
19
+ lineHeight: number;
20
+ location: string;
21
+ direction: string;
22
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
23
+ containerType?: ContainerType | undefined;
24
+ supportCopyText?: boolean | undefined;
25
+ effectInit?: EffectInit | undefined;
26
+ effectTriggerTiming?: EffectTriggerTiming | undefined;
27
+ color?: string | undefined;
28
+ timeGap?: number | undefined;
29
+ lineHeight?: number | undefined;
30
+ location?: "horizontal" | "vertical" | undefined;
31
+ direction?: "fromCenter" | "toEnd" | "toStart" | "towards" | undefined;
32
+ }>, {
33
+ containerType: string;
34
+ supportCopyText: boolean;
35
+ effectInit: string;
36
+ effectTriggerTiming: string;
37
+ color: string;
38
+ timeGap: number;
39
+ lineHeight: number;
40
+ location: string;
41
+ direction: string;
42
+ }>>>, {
43
+ color: string;
44
+ lineHeight: number;
45
+ supportCopyText: boolean;
46
+ effectInit: EffectInit;
47
+ effectTriggerTiming: EffectTriggerTiming;
48
+ direction: "fromCenter" | "toEnd" | "toStart" | "towards";
49
+ containerType: ContainerType;
50
+ timeGap: number;
51
+ location: "horizontal" | "vertical";
52
+ }, {}>, {
53
+ default?(_: {}): any;
54
+ }>;
55
+ export default _default;
56
+ type __VLS_WithDefaults<P, D> = {
57
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
58
+ default: D[K];
59
+ }> : P[K];
60
+ };
61
+ type __VLS_Prettify<T> = {
62
+ [K in keyof T]: T[K];
63
+ } & {};
64
+ type __VLS_WithTemplateSlots<T, S> = T & {
65
+ new (): {
66
+ $slots: S;
67
+ };
68
+ };
69
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
70
+ type __VLS_TypePropsToOption<T> = {
71
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
72
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
73
+ } : {
74
+ type: import('vue').PropType<T[K]>;
75
+ required: true;
76
+ };
77
+ };
@@ -0,0 +1,77 @@
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
+ color?: string | undefined;
8
+ timeGap?: number | undefined;
9
+ lineHeight?: number | undefined;
10
+ location?: "horizontal" | "vertical" | undefined;
11
+ direction?: "fromCenter" | "toEnd" | "toStart" | "towards" | undefined;
12
+ }>, {
13
+ containerType: string;
14
+ supportCopyText: boolean;
15
+ effectInit: string;
16
+ effectTriggerTiming: string;
17
+ color: string;
18
+ timeGap: number;
19
+ lineHeight: number;
20
+ location: string;
21
+ direction: string;
22
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
23
+ containerType?: ContainerType | undefined;
24
+ supportCopyText?: boolean | undefined;
25
+ effectInit?: EffectInit | undefined;
26
+ effectTriggerTiming?: EffectTriggerTiming | undefined;
27
+ color?: string | undefined;
28
+ timeGap?: number | undefined;
29
+ lineHeight?: number | undefined;
30
+ location?: "horizontal" | "vertical" | undefined;
31
+ direction?: "fromCenter" | "toEnd" | "toStart" | "towards" | undefined;
32
+ }>, {
33
+ containerType: string;
34
+ supportCopyText: boolean;
35
+ effectInit: string;
36
+ effectTriggerTiming: string;
37
+ color: string;
38
+ timeGap: number;
39
+ lineHeight: number;
40
+ location: string;
41
+ direction: string;
42
+ }>>>, {
43
+ color: string;
44
+ lineHeight: number;
45
+ supportCopyText: boolean;
46
+ effectInit: EffectInit;
47
+ effectTriggerTiming: EffectTriggerTiming;
48
+ direction: "fromCenter" | "toEnd" | "toStart" | "towards";
49
+ containerType: ContainerType;
50
+ timeGap: number;
51
+ location: "horizontal" | "vertical";
52
+ }, {}>, {
53
+ default?(_: {}): any;
54
+ }>;
55
+ export default _default;
56
+ type __VLS_WithDefaults<P, D> = {
57
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
58
+ default: D[K];
59
+ }> : P[K];
60
+ };
61
+ type __VLS_Prettify<T> = {
62
+ [K in keyof T]: T[K];
63
+ } & {};
64
+ type __VLS_WithTemplateSlots<T, S> = T & {
65
+ new (): {
66
+ $slots: S;
67
+ };
68
+ };
69
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
70
+ type __VLS_TypePropsToOption<T> = {
71
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
72
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
73
+ } : {
74
+ type: import('vue').PropType<T[K]>;
75
+ required: true;
76
+ };
77
+ };
@@ -0,0 +1,77 @@
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
+ color?: string | undefined;
8
+ timeGap?: number | undefined;
9
+ lineHeight?: number | undefined;
10
+ location?: "underline" | "overline" | "through" | undefined;
11
+ direction?: "left" | "right" | "fromCenter" | undefined;
12
+ }>, {
13
+ containerType: string;
14
+ supportCopyText: boolean;
15
+ effectInit: string;
16
+ effectTriggerTiming: string;
17
+ color: string;
18
+ timeGap: number;
19
+ lineHeight: number;
20
+ location: string;
21
+ direction: string;
22
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
23
+ containerType?: ContainerType | undefined;
24
+ supportCopyText?: boolean | undefined;
25
+ effectInit?: EffectInit | undefined;
26
+ effectTriggerTiming?: EffectTriggerTiming | undefined;
27
+ color?: string | undefined;
28
+ timeGap?: number | undefined;
29
+ lineHeight?: number | undefined;
30
+ location?: "underline" | "overline" | "through" | undefined;
31
+ direction?: "left" | "right" | "fromCenter" | undefined;
32
+ }>, {
33
+ containerType: string;
34
+ supportCopyText: boolean;
35
+ effectInit: string;
36
+ effectTriggerTiming: string;
37
+ color: string;
38
+ timeGap: number;
39
+ lineHeight: number;
40
+ location: string;
41
+ direction: string;
42
+ }>>>, {
43
+ color: string;
44
+ lineHeight: number;
45
+ supportCopyText: boolean;
46
+ effectInit: EffectInit;
47
+ effectTriggerTiming: EffectTriggerTiming;
48
+ direction: "left" | "right" | "fromCenter";
49
+ containerType: ContainerType;
50
+ timeGap: number;
51
+ location: "underline" | "overline" | "through";
52
+ }, {}>, {
53
+ default?(_: {}): any;
54
+ }>;
55
+ export default _default;
56
+ type __VLS_WithDefaults<P, D> = {
57
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
58
+ default: D[K];
59
+ }> : P[K];
60
+ };
61
+ type __VLS_Prettify<T> = {
62
+ [K in keyof T]: T[K];
63
+ } & {};
64
+ type __VLS_WithTemplateSlots<T, S> = T & {
65
+ new (): {
66
+ $slots: S;
67
+ };
68
+ };
69
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
70
+ type __VLS_TypePropsToOption<T> = {
71
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
72
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
73
+ } : {
74
+ type: import('vue').PropType<T[K]>;
75
+ required: true;
76
+ };
77
+ };