@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.
- 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 +11342 -10452
- 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 +49 -40
- package/dist/zyzgroup_core_vue.iife.js.map +1 -1
- package/dist/zyzgroup_core_vue.js +5928 -5140
- package/dist/zyzgroup_core_vue.js.map +1 -1
- package/dist/zyzgroup_core_vue.umd.cjs +51 -42
- 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/RingIndicator.ce.vue.d.ts +2 -6
- package/types/components/chat/RingIndicator.vue.d.ts +2 -6
- 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
|
@@ -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
|
+
};
|
|
@@ -0,0 +1,67 @@
|
|
|
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
|
+
direction?: "left" | "right" | "down" | "up" | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
containerType: string;
|
|
12
|
+
supportCopyText: boolean;
|
|
13
|
+
effectInit: string;
|
|
14
|
+
effectTriggerTiming: string;
|
|
15
|
+
color: string;
|
|
16
|
+
dur: number;
|
|
17
|
+
direction: string;
|
|
18
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
19
|
+
containerType?: ContainerType | undefined;
|
|
20
|
+
supportCopyText?: boolean | undefined;
|
|
21
|
+
effectInit?: EffectInit | undefined;
|
|
22
|
+
effectTriggerTiming?: EffectTriggerTiming | undefined;
|
|
23
|
+
color?: string | undefined;
|
|
24
|
+
dur?: number | undefined;
|
|
25
|
+
direction?: "left" | "right" | "down" | "up" | undefined;
|
|
26
|
+
}>, {
|
|
27
|
+
containerType: string;
|
|
28
|
+
supportCopyText: boolean;
|
|
29
|
+
effectInit: string;
|
|
30
|
+
effectTriggerTiming: string;
|
|
31
|
+
color: string;
|
|
32
|
+
dur: number;
|
|
33
|
+
direction: string;
|
|
34
|
+
}>>>, {
|
|
35
|
+
color: string;
|
|
36
|
+
supportCopyText: boolean;
|
|
37
|
+
effectInit: EffectInit;
|
|
38
|
+
effectTriggerTiming: EffectTriggerTiming;
|
|
39
|
+
direction: "left" | "right" | "down" | "up";
|
|
40
|
+
dur: number;
|
|
41
|
+
containerType: ContainerType;
|
|
42
|
+
}, {}>, {
|
|
43
|
+
default?(_: {}): any;
|
|
44
|
+
}>;
|
|
45
|
+
export default _default;
|
|
46
|
+
type __VLS_WithDefaults<P, D> = {
|
|
47
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
48
|
+
default: D[K];
|
|
49
|
+
}> : P[K];
|
|
50
|
+
};
|
|
51
|
+
type __VLS_Prettify<T> = {
|
|
52
|
+
[K in keyof T]: T[K];
|
|
53
|
+
} & {};
|
|
54
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
55
|
+
new (): {
|
|
56
|
+
$slots: S;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
60
|
+
type __VLS_TypePropsToOption<T> = {
|
|
61
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
62
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
63
|
+
} : {
|
|
64
|
+
type: import('vue').PropType<T[K]>;
|
|
65
|
+
required: true;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
@@ -0,0 +1,67 @@
|
|
|
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
|
+
direction?: "left" | "right" | "down" | "up" | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
containerType: string;
|
|
12
|
+
supportCopyText: boolean;
|
|
13
|
+
effectInit: string;
|
|
14
|
+
effectTriggerTiming: string;
|
|
15
|
+
color: string;
|
|
16
|
+
dur: number;
|
|
17
|
+
direction: string;
|
|
18
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
19
|
+
containerType?: ContainerType | undefined;
|
|
20
|
+
supportCopyText?: boolean | undefined;
|
|
21
|
+
effectInit?: EffectInit | undefined;
|
|
22
|
+
effectTriggerTiming?: EffectTriggerTiming | undefined;
|
|
23
|
+
color?: string | undefined;
|
|
24
|
+
dur?: number | undefined;
|
|
25
|
+
direction?: "left" | "right" | "down" | "up" | undefined;
|
|
26
|
+
}>, {
|
|
27
|
+
containerType: string;
|
|
28
|
+
supportCopyText: boolean;
|
|
29
|
+
effectInit: string;
|
|
30
|
+
effectTriggerTiming: string;
|
|
31
|
+
color: string;
|
|
32
|
+
dur: number;
|
|
33
|
+
direction: string;
|
|
34
|
+
}>>>, {
|
|
35
|
+
color: string;
|
|
36
|
+
supportCopyText: boolean;
|
|
37
|
+
effectInit: EffectInit;
|
|
38
|
+
effectTriggerTiming: EffectTriggerTiming;
|
|
39
|
+
direction: "left" | "right" | "down" | "up";
|
|
40
|
+
dur: number;
|
|
41
|
+
containerType: ContainerType;
|
|
42
|
+
}, {}>, {
|
|
43
|
+
default?(_: {}): any;
|
|
44
|
+
}>;
|
|
45
|
+
export default _default;
|
|
46
|
+
type __VLS_WithDefaults<P, D> = {
|
|
47
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
48
|
+
default: D[K];
|
|
49
|
+
}> : P[K];
|
|
50
|
+
};
|
|
51
|
+
type __VLS_Prettify<T> = {
|
|
52
|
+
[K in keyof T]: T[K];
|
|
53
|
+
} & {};
|
|
54
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
55
|
+
new (): {
|
|
56
|
+
$slots: S;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
60
|
+
type __VLS_TypePropsToOption<T> = {
|
|
61
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
62
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
63
|
+
} : {
|
|
64
|
+
type: import('vue').PropType<T[K]>;
|
|
65
|
+
required: true;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
@@ -0,0 +1,67 @@
|
|
|
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
|
+
direction?: "fromBottomLeft" | "fromBottomRight" | "fromTopLeft" | "fromTopRight" | "fromCenter" | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
containerType: string;
|
|
12
|
+
supportCopyText: boolean;
|
|
13
|
+
effectInit: string;
|
|
14
|
+
effectTriggerTiming: string;
|
|
15
|
+
color: string;
|
|
16
|
+
timeGap: number;
|
|
17
|
+
direction: string;
|
|
18
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
19
|
+
containerType?: ContainerType | undefined;
|
|
20
|
+
supportCopyText?: boolean | undefined;
|
|
21
|
+
effectInit?: EffectInit | undefined;
|
|
22
|
+
effectTriggerTiming?: EffectTriggerTiming | undefined;
|
|
23
|
+
color?: string | undefined;
|
|
24
|
+
timeGap?: number | undefined;
|
|
25
|
+
direction?: "fromBottomLeft" | "fromBottomRight" | "fromTopLeft" | "fromTopRight" | "fromCenter" | undefined;
|
|
26
|
+
}>, {
|
|
27
|
+
containerType: string;
|
|
28
|
+
supportCopyText: boolean;
|
|
29
|
+
effectInit: string;
|
|
30
|
+
effectTriggerTiming: string;
|
|
31
|
+
color: string;
|
|
32
|
+
timeGap: number;
|
|
33
|
+
direction: string;
|
|
34
|
+
}>>>, {
|
|
35
|
+
color: string;
|
|
36
|
+
supportCopyText: boolean;
|
|
37
|
+
effectInit: EffectInit;
|
|
38
|
+
effectTriggerTiming: EffectTriggerTiming;
|
|
39
|
+
direction: "fromBottomLeft" | "fromBottomRight" | "fromTopLeft" | "fromTopRight" | "fromCenter";
|
|
40
|
+
containerType: ContainerType;
|
|
41
|
+
timeGap: number;
|
|
42
|
+
}, {}>, {
|
|
43
|
+
default?(_: {}): any;
|
|
44
|
+
}>;
|
|
45
|
+
export default _default;
|
|
46
|
+
type __VLS_WithDefaults<P, D> = {
|
|
47
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
48
|
+
default: D[K];
|
|
49
|
+
}> : P[K];
|
|
50
|
+
};
|
|
51
|
+
type __VLS_Prettify<T> = {
|
|
52
|
+
[K in keyof T]: T[K];
|
|
53
|
+
} & {};
|
|
54
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
55
|
+
new (): {
|
|
56
|
+
$slots: S;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
60
|
+
type __VLS_TypePropsToOption<T> = {
|
|
61
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
62
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
63
|
+
} : {
|
|
64
|
+
type: import('vue').PropType<T[K]>;
|
|
65
|
+
required: true;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
@@ -0,0 +1,67 @@
|
|
|
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
|
+
direction?: "fromBottomLeft" | "fromBottomRight" | "fromTopLeft" | "fromTopRight" | "fromCenter" | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
containerType: string;
|
|
12
|
+
supportCopyText: boolean;
|
|
13
|
+
effectInit: string;
|
|
14
|
+
effectTriggerTiming: string;
|
|
15
|
+
color: string;
|
|
16
|
+
timeGap: number;
|
|
17
|
+
direction: string;
|
|
18
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
19
|
+
containerType?: ContainerType | undefined;
|
|
20
|
+
supportCopyText?: boolean | undefined;
|
|
21
|
+
effectInit?: EffectInit | undefined;
|
|
22
|
+
effectTriggerTiming?: EffectTriggerTiming | undefined;
|
|
23
|
+
color?: string | undefined;
|
|
24
|
+
timeGap?: number | undefined;
|
|
25
|
+
direction?: "fromBottomLeft" | "fromBottomRight" | "fromTopLeft" | "fromTopRight" | "fromCenter" | undefined;
|
|
26
|
+
}>, {
|
|
27
|
+
containerType: string;
|
|
28
|
+
supportCopyText: boolean;
|
|
29
|
+
effectInit: string;
|
|
30
|
+
effectTriggerTiming: string;
|
|
31
|
+
color: string;
|
|
32
|
+
timeGap: number;
|
|
33
|
+
direction: string;
|
|
34
|
+
}>>>, {
|
|
35
|
+
color: string;
|
|
36
|
+
supportCopyText: boolean;
|
|
37
|
+
effectInit: EffectInit;
|
|
38
|
+
effectTriggerTiming: EffectTriggerTiming;
|
|
39
|
+
direction: "fromBottomLeft" | "fromBottomRight" | "fromTopLeft" | "fromTopRight" | "fromCenter";
|
|
40
|
+
containerType: ContainerType;
|
|
41
|
+
timeGap: number;
|
|
42
|
+
}, {}>, {
|
|
43
|
+
default?(_: {}): any;
|
|
44
|
+
}>;
|
|
45
|
+
export default _default;
|
|
46
|
+
type __VLS_WithDefaults<P, D> = {
|
|
47
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
48
|
+
default: D[K];
|
|
49
|
+
}> : P[K];
|
|
50
|
+
};
|
|
51
|
+
type __VLS_Prettify<T> = {
|
|
52
|
+
[K in keyof T]: T[K];
|
|
53
|
+
} & {};
|
|
54
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
55
|
+
new (): {
|
|
56
|
+
$slots: S;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
60
|
+
type __VLS_TypePropsToOption<T> = {
|
|
61
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
62
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
63
|
+
} : {
|
|
64
|
+
type: import('vue').PropType<T[K]>;
|
|
65
|
+
required: true;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
text?: string | undefined;
|
|
3
|
+
bgImageUrl?: string | undefined;
|
|
4
|
+
}>, {
|
|
5
|
+
text: string;
|
|
6
|
+
bgImageUrl: string;
|
|
7
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
8
|
+
text?: string | undefined;
|
|
9
|
+
bgImageUrl?: string | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
text: string;
|
|
12
|
+
bgImageUrl: string;
|
|
13
|
+
}>>>, {
|
|
14
|
+
text: string;
|
|
15
|
+
bgImageUrl: string;
|
|
16
|
+
}, {}>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithDefaults<P, D> = {
|
|
19
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
20
|
+
default: D[K];
|
|
21
|
+
}> : P[K];
|
|
22
|
+
};
|
|
23
|
+
type __VLS_Prettify<T> = {
|
|
24
|
+
[K in keyof T]: T[K];
|
|
25
|
+
} & {};
|
|
26
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
|
+
type __VLS_TypePropsToOption<T> = {
|
|
28
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
29
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
30
|
+
} : {
|
|
31
|
+
type: import('vue').PropType<T[K]>;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
text?: string | undefined;
|
|
3
|
+
bgImageUrl?: string | undefined;
|
|
4
|
+
}>, {
|
|
5
|
+
text: string;
|
|
6
|
+
bgImageUrl: string;
|
|
7
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
8
|
+
text?: string | undefined;
|
|
9
|
+
bgImageUrl?: string | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
text: string;
|
|
12
|
+
bgImageUrl: string;
|
|
13
|
+
}>>>, {
|
|
14
|
+
text: string;
|
|
15
|
+
bgImageUrl: string;
|
|
16
|
+
}, {}>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithDefaults<P, D> = {
|
|
19
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
20
|
+
default: D[K];
|
|
21
|
+
}> : P[K];
|
|
22
|
+
};
|
|
23
|
+
type __VLS_Prettify<T> = {
|
|
24
|
+
[K in keyof T]: T[K];
|
|
25
|
+
} & {};
|
|
26
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
|
+
type __VLS_TypePropsToOption<T> = {
|
|
28
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
29
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
30
|
+
} : {
|
|
31
|
+
type: import('vue').PropType<T[K]>;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
};
|
package/types/lib.d.ts
CHANGED
|
@@ -9,7 +9,6 @@ import Input from "./components/Input.vue";
|
|
|
9
9
|
import InputRange from "./components/InputRange.vue";
|
|
10
10
|
import InputRangeSvg from "./components/InputRangeSvg.vue";
|
|
11
11
|
import SlideLeftItem from "./components/SlideLeftItem.vue";
|
|
12
|
-
import MouseOver from "./components/MouseOver.vue";
|
|
13
12
|
import Accordion from "./components/Accordion.vue";
|
|
14
13
|
import Video from "./components/Video.vue";
|
|
15
14
|
import Image from "./components/Image.vue";
|
|
@@ -57,4 +56,14 @@ import Loading11 from "./components/loading/Loading11.vue";
|
|
|
57
56
|
import CardFlip from "./components/CardFlip.vue";
|
|
58
57
|
import Cube from "./components/Cube.vue";
|
|
59
58
|
import RingIndicator from "./components/chat/RingIndicator.vue";
|
|
60
|
-
|
|
59
|
+
import RingText from "./components/chat/RingText.vue";
|
|
60
|
+
import ClockFlipper from "./components/chat/ClockFlipper.vue";
|
|
61
|
+
import TextBackgroundClip from "./components/effect/TextBackgroundClip.vue";
|
|
62
|
+
import Slide from "./components/effect/Slide.vue";
|
|
63
|
+
import SlideCorner from "./components/effect/SlideCorner.vue";
|
|
64
|
+
import LineSingle from "./components/effect/LineSingle.vue";
|
|
65
|
+
import LineDouble from "./components/effect/LineDouble.vue";
|
|
66
|
+
import Float from "./components/effect/Float.vue";
|
|
67
|
+
import CSSAnimation from "./components/effect/CSSAnimation.vue";
|
|
68
|
+
import Circle from "./components/effect/Circle.vue";
|
|
69
|
+
export { Icon, Button, LayoutMobile, LayoutCenter, Loading1, Loading2, Loading3, Loading4, Loading5, Loading6, Loading7, Loading8, Loading9, Loading10, Loading11, Overlay, Pop, Dialog, DialogLoading, DialogToast, Select, SelectAbsolute, Switch, RadioGroup, CheckboxGroup, Popover, ColorPicker, ResizeObserver, MapTianditu, SVGCheck, PlateMobile, SVGCleanUp, PlateKeyboard, SVGDelete, SlideLeftItem, PlateDisplay, Tab, Tabs, FPSStats, EaseGraphDisplay, EaseGroupGraphDisplay, InterpolationGraphDisplay, InterpolationGroupGraphDisplay, HandWritePanel, ProgressBar, PageVerticalScrollProgressBar, Video, Input, InputRange, InputRangeSvg, Accordion, SVGAndCanvas, Image, ImageView, SVGDown, CardFlip, Cube, RingIndicator, RingText, ClockFlipper, TextBackgroundClip, Slide, SlideCorner, LineSingle, LineDouble, Float, CSSAnimation, Circle };
|
package/types/types.d.ts
ADDED