@zyzgroup/core-vue 0.0.13 → 0.0.14

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 (34) hide show
  1. package/ce/style.css +1 -1
  2. package/ce/yz_custom_element.iife.js +53 -48
  3. package/ce/yz_custom_element.iife.js.map +1 -1
  4. package/ce/yz_custom_element.js +9345 -7834
  5. package/ce/yz_custom_element.js.map +1 -1
  6. package/ce/yz_custom_element.umd.cjs +53 -48
  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 +23 -23
  10. package/dist/zyzgroup_core_vue.iife.js.map +1 -1
  11. package/dist/zyzgroup_core_vue.js +8702 -7258
  12. package/dist/zyzgroup_core_vue.js.map +1 -1
  13. package/dist/zyzgroup_core_vue.umd.cjs +23 -23
  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 +78 -0
  17. package/types/components/Accordion.vue.d.ts +78 -0
  18. package/types/components/EaseGroupGraphDisplay.ce.vue.d.ts +2 -2
  19. package/types/components/EaseGroupGraphDisplay.vue.d.ts +2 -2
  20. package/types/components/Input.ce.vue.d.ts +103 -0
  21. package/types/components/Input.vue.d.ts +103 -0
  22. package/types/components/ProgressBar.ce.vue.d.ts +61 -0
  23. package/types/components/ProgressBar.vue.d.ts +61 -0
  24. package/types/components/SlideLeftItem.ce.vue.d.ts +5 -0
  25. package/types/components/SlideLeftItem.vue.d.ts +5 -0
  26. package/types/components/Video.ce.vue.d.ts +55 -0
  27. package/types/components/Video.vue.d.ts +55 -0
  28. package/types/components/bg/BGBar.ce.vue.d.ts +49 -0
  29. package/types/components/bg/BGBar.vue.d.ts +49 -0
  30. package/types/components/svg/SVGDown.ce.vue.d.ts +36 -0
  31. package/types/components/svg/SVGDown.vue.d.ts +36 -0
  32. package/types/components/svg/SVGLock.ce.vue.d.ts +36 -0
  33. package/types/components/svg/SVGLock.vue.d.ts +36 -0
  34. package/types/lib.d.ts +6 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zyzgroup/core-vue",
3
3
  "private": false,
4
- "version": "0.0.13",
4
+ "version": "0.0.14",
5
5
  "sideEffects": false,
6
6
  "type": "module",
7
7
  "main": "dist/zyzgroup_core_vue.umd.cjs",
@@ -0,0 +1,78 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
2
+ initOpen?: boolean | undefined;
3
+ height?: string | undefined;
4
+ bgColor?: string | undefined;
5
+ fontColor?: string | undefined;
6
+ borderColor?: string | undefined;
7
+ borderRadius?: string | undefined;
8
+ padding?: string | undefined;
9
+ duration?: number | undefined;
10
+ }>, {
11
+ initOpen: boolean;
12
+ height: string;
13
+ bgColor: string;
14
+ fontColor: string;
15
+ borderColor: string;
16
+ borderRadius: string;
17
+ padding: string;
18
+ duration: number;
19
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
+ open: () => void;
21
+ close: () => void;
22
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
23
+ initOpen?: boolean | undefined;
24
+ height?: string | undefined;
25
+ bgColor?: string | undefined;
26
+ fontColor?: string | undefined;
27
+ borderColor?: string | undefined;
28
+ borderRadius?: string | undefined;
29
+ padding?: string | undefined;
30
+ duration?: number | undefined;
31
+ }>, {
32
+ initOpen: boolean;
33
+ height: string;
34
+ bgColor: string;
35
+ fontColor: string;
36
+ borderColor: string;
37
+ borderRadius: string;
38
+ padding: string;
39
+ duration: number;
40
+ }>>> & {
41
+ onOpen?: (() => any) | undefined;
42
+ onClose?: (() => any) | undefined;
43
+ }, {
44
+ height: string;
45
+ padding: string;
46
+ borderRadius: string;
47
+ borderColor: string;
48
+ bgColor: string;
49
+ fontColor: string;
50
+ duration: number;
51
+ initOpen: boolean;
52
+ }, {}>, {
53
+ title?(_: {}): any;
54
+ content?(_: {}): 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
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
2
+ initOpen?: boolean | undefined;
3
+ height?: string | undefined;
4
+ bgColor?: string | undefined;
5
+ fontColor?: string | undefined;
6
+ borderColor?: string | undefined;
7
+ borderRadius?: string | undefined;
8
+ padding?: string | undefined;
9
+ duration?: number | undefined;
10
+ }>, {
11
+ initOpen: boolean;
12
+ height: string;
13
+ bgColor: string;
14
+ fontColor: string;
15
+ borderColor: string;
16
+ borderRadius: string;
17
+ padding: string;
18
+ duration: number;
19
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
+ open: () => void;
21
+ close: () => void;
22
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
23
+ initOpen?: boolean | undefined;
24
+ height?: string | undefined;
25
+ bgColor?: string | undefined;
26
+ fontColor?: string | undefined;
27
+ borderColor?: string | undefined;
28
+ borderRadius?: string | undefined;
29
+ padding?: string | undefined;
30
+ duration?: number | undefined;
31
+ }>, {
32
+ initOpen: boolean;
33
+ height: string;
34
+ bgColor: string;
35
+ fontColor: string;
36
+ borderColor: string;
37
+ borderRadius: string;
38
+ padding: string;
39
+ duration: number;
40
+ }>>> & {
41
+ onOpen?: (() => any) | undefined;
42
+ onClose?: (() => any) | undefined;
43
+ }, {
44
+ height: string;
45
+ padding: string;
46
+ borderRadius: string;
47
+ borderColor: string;
48
+ bgColor: string;
49
+ fontColor: string;
50
+ duration: number;
51
+ initOpen: boolean;
52
+ }, {}>, {
53
+ title?(_: {}): any;
54
+ content?(_: {}): 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
+ };
@@ -13,7 +13,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
13
13
  easeFunction?: undefined;
14
14
  })[];
15
15
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
16
- selectedEaseFunction: (easeFunction: EasingFunction) => void;
16
+ selectedEaseFunction: (easeName: string, easeFunction: EasingFunction) => void;
17
17
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
18
18
  easeList?: {
19
19
  easeName: string;
@@ -28,7 +28,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
28
28
  easeFunction?: undefined;
29
29
  })[];
30
30
  }>>> & {
31
- onSelectedEaseFunction?: ((easeFunction: EasingFunction) => any) | undefined;
31
+ onSelectedEaseFunction?: ((easeName: string, easeFunction: EasingFunction) => any) | undefined;
32
32
  }, {
33
33
  easeList: {
34
34
  easeName: string;
@@ -13,7 +13,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
13
13
  easeFunction?: undefined;
14
14
  })[];
15
15
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
16
- selectedEaseFunction: (easeFunction: EasingFunction) => void;
16
+ selectedEaseFunction: (easeName: string, easeFunction: EasingFunction) => void;
17
17
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
18
18
  easeList?: {
19
19
  easeName: string;
@@ -28,7 +28,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
28
28
  easeFunction?: undefined;
29
29
  })[];
30
30
  }>>> & {
31
- onSelectedEaseFunction?: ((easeFunction: EasingFunction) => any) | undefined;
31
+ onSelectedEaseFunction?: ((easeName: string, easeFunction: EasingFunction) => any) | undefined;
32
32
  }, {
33
33
  easeList: {
34
34
  easeName: string;
@@ -0,0 +1,103 @@
1
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
2
+ placeholder: string;
3
+ placeholderJump?: boolean | undefined;
4
+ height?: string | undefined;
5
+ type?: string | undefined;
6
+ required?: boolean | undefined;
7
+ focusColor?: string | undefined;
8
+ errorColor?: string | undefined;
9
+ bgColor?: string | undefined;
10
+ placeholderColor?: string | undefined;
11
+ fontColor?: string | undefined;
12
+ borderRadius?: string | undefined;
13
+ duration?: number | undefined;
14
+ validator?: ((text: string) => {
15
+ isValidated: boolean;
16
+ msg: string;
17
+ }) | undefined;
18
+ }>, {
19
+ placeholderJump: boolean;
20
+ height: string;
21
+ type: string;
22
+ required: boolean;
23
+ focusColor: string;
24
+ errorColor: string;
25
+ bgColor: string;
26
+ placeholderColor: string;
27
+ fontColor: string;
28
+ borderRadius: string;
29
+ duration: number;
30
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
31
+ focus: () => void;
32
+ ceFocus: () => void;
33
+ blur: () => void;
34
+ ceBlur: () => void;
35
+ input: (text: string) => void;
36
+ ceInput: (text: string) => void;
37
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
38
+ placeholder: string;
39
+ placeholderJump?: boolean | undefined;
40
+ height?: string | undefined;
41
+ type?: string | undefined;
42
+ required?: boolean | undefined;
43
+ focusColor?: string | undefined;
44
+ errorColor?: string | undefined;
45
+ bgColor?: string | undefined;
46
+ placeholderColor?: string | undefined;
47
+ fontColor?: string | undefined;
48
+ borderRadius?: string | undefined;
49
+ duration?: number | undefined;
50
+ validator?: ((text: string) => {
51
+ isValidated: boolean;
52
+ msg: string;
53
+ }) | undefined;
54
+ }>, {
55
+ placeholderJump: boolean;
56
+ height: string;
57
+ type: string;
58
+ required: boolean;
59
+ focusColor: string;
60
+ errorColor: string;
61
+ bgColor: string;
62
+ placeholderColor: string;
63
+ fontColor: string;
64
+ borderRadius: string;
65
+ duration: number;
66
+ }>>> & {
67
+ onFocus?: (() => any) | undefined;
68
+ onBlur?: (() => any) | undefined;
69
+ onInput?: ((text: string) => any) | undefined;
70
+ onCeFocus?: (() => any) | undefined;
71
+ onCeBlur?: (() => any) | undefined;
72
+ onCeInput?: ((text: string) => any) | undefined;
73
+ }, {
74
+ type: string;
75
+ height: string;
76
+ borderRadius: string;
77
+ bgColor: string;
78
+ fontColor: string;
79
+ required: boolean;
80
+ duration: number;
81
+ placeholderJump: boolean;
82
+ focusColor: string;
83
+ errorColor: string;
84
+ placeholderColor: string;
85
+ }, {}>;
86
+ export default _default;
87
+ type __VLS_WithDefaults<P, D> = {
88
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
89
+ default: D[K];
90
+ }> : P[K];
91
+ };
92
+ type __VLS_Prettify<T> = {
93
+ [K in keyof T]: T[K];
94
+ } & {};
95
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
96
+ type __VLS_TypePropsToOption<T> = {
97
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
98
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
99
+ } : {
100
+ type: import('vue').PropType<T[K]>;
101
+ required: true;
102
+ };
103
+ };
@@ -0,0 +1,103 @@
1
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
2
+ placeholder: string;
3
+ placeholderJump?: boolean | undefined;
4
+ height?: string | undefined;
5
+ type?: string | undefined;
6
+ required?: boolean | undefined;
7
+ focusColor?: string | undefined;
8
+ errorColor?: string | undefined;
9
+ bgColor?: string | undefined;
10
+ placeholderColor?: string | undefined;
11
+ fontColor?: string | undefined;
12
+ borderRadius?: string | undefined;
13
+ duration?: number | undefined;
14
+ validator?: ((text: string) => {
15
+ isValidated: boolean;
16
+ msg: string;
17
+ }) | undefined;
18
+ }>, {
19
+ placeholderJump: boolean;
20
+ height: string;
21
+ type: string;
22
+ required: boolean;
23
+ focusColor: string;
24
+ errorColor: string;
25
+ bgColor: string;
26
+ placeholderColor: string;
27
+ fontColor: string;
28
+ borderRadius: string;
29
+ duration: number;
30
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
31
+ focus: () => void;
32
+ ceFocus: () => void;
33
+ blur: () => void;
34
+ ceBlur: () => void;
35
+ input: (text: string) => void;
36
+ ceInput: (text: string) => void;
37
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
38
+ placeholder: string;
39
+ placeholderJump?: boolean | undefined;
40
+ height?: string | undefined;
41
+ type?: string | undefined;
42
+ required?: boolean | undefined;
43
+ focusColor?: string | undefined;
44
+ errorColor?: string | undefined;
45
+ bgColor?: string | undefined;
46
+ placeholderColor?: string | undefined;
47
+ fontColor?: string | undefined;
48
+ borderRadius?: string | undefined;
49
+ duration?: number | undefined;
50
+ validator?: ((text: string) => {
51
+ isValidated: boolean;
52
+ msg: string;
53
+ }) | undefined;
54
+ }>, {
55
+ placeholderJump: boolean;
56
+ height: string;
57
+ type: string;
58
+ required: boolean;
59
+ focusColor: string;
60
+ errorColor: string;
61
+ bgColor: string;
62
+ placeholderColor: string;
63
+ fontColor: string;
64
+ borderRadius: string;
65
+ duration: number;
66
+ }>>> & {
67
+ onFocus?: (() => any) | undefined;
68
+ onBlur?: (() => any) | undefined;
69
+ onInput?: ((text: string) => any) | undefined;
70
+ onCeFocus?: (() => any) | undefined;
71
+ onCeBlur?: (() => any) | undefined;
72
+ onCeInput?: ((text: string) => any) | undefined;
73
+ }, {
74
+ type: string;
75
+ height: string;
76
+ borderRadius: string;
77
+ bgColor: string;
78
+ fontColor: string;
79
+ required: boolean;
80
+ duration: number;
81
+ placeholderJump: boolean;
82
+ focusColor: string;
83
+ errorColor: string;
84
+ placeholderColor: string;
85
+ }, {}>;
86
+ export default _default;
87
+ type __VLS_WithDefaults<P, D> = {
88
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
89
+ default: D[K];
90
+ }> : P[K];
91
+ };
92
+ type __VLS_Prettify<T> = {
93
+ [K in keyof T]: T[K];
94
+ } & {};
95
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
96
+ type __VLS_TypePropsToOption<T> = {
97
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
98
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
99
+ } : {
100
+ type: import('vue').PropType<T[K]>;
101
+ required: true;
102
+ };
103
+ };
@@ -0,0 +1,61 @@
1
+ declare function goto(toValue: number): void;
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ bgColor?: string | undefined;
6
+ borderColor?: string | undefined;
7
+ duringTimeGap?: number | undefined;
8
+ showText?: boolean | undefined;
9
+ }>, {
10
+ width: string;
11
+ height: string;
12
+ bgColor: string;
13
+ borderColor: string;
14
+ duringTimeGap: number;
15
+ showText: boolean;
16
+ }>, {
17
+ goto: typeof goto;
18
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
+ complete: (currentPercent: number) => void;
20
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
21
+ width?: string | undefined;
22
+ height?: string | undefined;
23
+ bgColor?: string | undefined;
24
+ borderColor?: string | undefined;
25
+ duringTimeGap?: number | undefined;
26
+ showText?: boolean | undefined;
27
+ }>, {
28
+ width: string;
29
+ height: string;
30
+ bgColor: string;
31
+ borderColor: string;
32
+ duringTimeGap: number;
33
+ showText: boolean;
34
+ }>>> & {
35
+ onComplete?: ((currentPercent: number) => any) | undefined;
36
+ }, {
37
+ width: string;
38
+ height: string;
39
+ borderColor: string;
40
+ bgColor: string;
41
+ duringTimeGap: number;
42
+ showText: boolean;
43
+ }, {}>;
44
+ export default _default;
45
+ type __VLS_WithDefaults<P, D> = {
46
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
47
+ default: D[K];
48
+ }> : P[K];
49
+ };
50
+ type __VLS_Prettify<T> = {
51
+ [K in keyof T]: T[K];
52
+ } & {};
53
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
54
+ type __VLS_TypePropsToOption<T> = {
55
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
56
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
57
+ } : {
58
+ type: import('vue').PropType<T[K]>;
59
+ required: true;
60
+ };
61
+ };
@@ -0,0 +1,61 @@
1
+ declare function goto(toValue: number): void;
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
3
+ width?: string | undefined;
4
+ height?: string | undefined;
5
+ bgColor?: string | undefined;
6
+ borderColor?: string | undefined;
7
+ duringTimeGap?: number | undefined;
8
+ showText?: boolean | undefined;
9
+ }>, {
10
+ width: string;
11
+ height: string;
12
+ bgColor: string;
13
+ borderColor: string;
14
+ duringTimeGap: number;
15
+ showText: boolean;
16
+ }>, {
17
+ goto: typeof goto;
18
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
+ complete: (currentPercent: number) => void;
20
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
21
+ width?: string | undefined;
22
+ height?: string | undefined;
23
+ bgColor?: string | undefined;
24
+ borderColor?: string | undefined;
25
+ duringTimeGap?: number | undefined;
26
+ showText?: boolean | undefined;
27
+ }>, {
28
+ width: string;
29
+ height: string;
30
+ bgColor: string;
31
+ borderColor: string;
32
+ duringTimeGap: number;
33
+ showText: boolean;
34
+ }>>> & {
35
+ onComplete?: ((currentPercent: number) => any) | undefined;
36
+ }, {
37
+ width: string;
38
+ height: string;
39
+ borderColor: string;
40
+ bgColor: string;
41
+ duringTimeGap: number;
42
+ showText: boolean;
43
+ }, {}>;
44
+ export default _default;
45
+ type __VLS_WithDefaults<P, D> = {
46
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
47
+ default: D[K];
48
+ }> : P[K];
49
+ };
50
+ type __VLS_Prettify<T> = {
51
+ [K in keyof T]: T[K];
52
+ } & {};
53
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
54
+ type __VLS_TypePropsToOption<T> = {
55
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
56
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
57
+ } : {
58
+ type: import('vue').PropType<T[K]>;
59
+ required: true;
60
+ };
61
+ };
@@ -2,12 +2,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
2
2
  bgColor?: string | undefined;
3
3
  deleteColor?: string | undefined;
4
4
  fontColor?: string | undefined;
5
+ borderRadius?: string | undefined;
5
6
  deleteWidth?: string | undefined;
6
7
  transtionDuration?: string | undefined;
7
8
  }>, {
8
9
  bgColor: string;
9
10
  deleteColor: string;
10
11
  fontColor: string;
12
+ borderRadius: string;
11
13
  deleteWidth: string;
12
14
  transtionDuration: string;
13
15
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -16,17 +18,20 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
16
18
  bgColor?: string | undefined;
17
19
  deleteColor?: string | undefined;
18
20
  fontColor?: string | undefined;
21
+ borderRadius?: string | undefined;
19
22
  deleteWidth?: string | undefined;
20
23
  transtionDuration?: string | undefined;
21
24
  }>, {
22
25
  bgColor: string;
23
26
  deleteColor: string;
24
27
  fontColor: string;
28
+ borderRadius: string;
25
29
  deleteWidth: string;
26
30
  transtionDuration: string;
27
31
  }>>> & {
28
32
  onDelete?: (() => any) | undefined;
29
33
  }, {
34
+ borderRadius: string;
30
35
  bgColor: string;
31
36
  fontColor: string;
32
37
  deleteColor: string;
@@ -2,12 +2,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
2
2
  bgColor?: string | undefined;
3
3
  deleteColor?: string | undefined;
4
4
  fontColor?: string | undefined;
5
+ borderRadius?: string | undefined;
5
6
  deleteWidth?: string | undefined;
6
7
  transtionDuration?: string | undefined;
7
8
  }>, {
8
9
  bgColor: string;
9
10
  deleteColor: string;
10
11
  fontColor: string;
12
+ borderRadius: string;
11
13
  deleteWidth: string;
12
14
  transtionDuration: string;
13
15
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -16,17 +18,20 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
16
18
  bgColor?: string | undefined;
17
19
  deleteColor?: string | undefined;
18
20
  fontColor?: string | undefined;
21
+ borderRadius?: string | undefined;
19
22
  deleteWidth?: string | undefined;
20
23
  transtionDuration?: string | undefined;
21
24
  }>, {
22
25
  bgColor: string;
23
26
  deleteColor: string;
24
27
  fontColor: string;
28
+ borderRadius: string;
25
29
  deleteWidth: string;
26
30
  transtionDuration: string;
27
31
  }>>> & {
28
32
  onDelete?: (() => any) | undefined;
29
33
  }, {
34
+ borderRadius: string;
30
35
  bgColor: string;
31
36
  fontColor: string;
32
37
  deleteColor: string;
@@ -0,0 +1,55 @@
1
+ declare function play(): void;
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
3
+ src: string;
4
+ type?: string | undefined;
5
+ autoplay?: boolean | undefined;
6
+ width?: string | undefined;
7
+ height?: string | undefined;
8
+ }>, {
9
+ type: string;
10
+ autoplay: boolean;
11
+ width: string;
12
+ height: string;
13
+ }>, {
14
+ play: typeof play;
15
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
16
+ start: () => void;
17
+ complete: () => void;
18
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
19
+ src: string;
20
+ type?: string | undefined;
21
+ autoplay?: boolean | undefined;
22
+ width?: string | undefined;
23
+ height?: string | undefined;
24
+ }>, {
25
+ type: string;
26
+ autoplay: boolean;
27
+ width: string;
28
+ height: string;
29
+ }>>> & {
30
+ onComplete?: (() => any) | undefined;
31
+ onStart?: (() => any) | undefined;
32
+ }, {
33
+ type: string;
34
+ width: string;
35
+ height: string;
36
+ autoplay: boolean;
37
+ }, {}>;
38
+ export default _default;
39
+ type __VLS_WithDefaults<P, D> = {
40
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
41
+ default: D[K];
42
+ }> : P[K];
43
+ };
44
+ type __VLS_Prettify<T> = {
45
+ [K in keyof T]: T[K];
46
+ } & {};
47
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
48
+ type __VLS_TypePropsToOption<T> = {
49
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
50
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
51
+ } : {
52
+ type: import('vue').PropType<T[K]>;
53
+ required: true;
54
+ };
55
+ };