@zyzgroup/core-vue 0.0.12 → 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.
- package/README.md +0 -17
- package/ce/style.css +1 -1
- package/ce/yz_custom_element.iife.js +58 -37
- package/ce/yz_custom_element.iife.js.map +1 -1
- package/ce/yz_custom_element.js +18390 -8803
- package/ce/yz_custom_element.js.map +1 -1
- package/ce/yz_custom_element.umd.cjs +58 -37
- package/ce/yz_custom_element.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/dist/zyzgroup_core_vue.iife.js +27 -15
- package/dist/zyzgroup_core_vue.iife.js.map +1 -1
- package/dist/zyzgroup_core_vue.js +15301 -5991
- package/dist/zyzgroup_core_vue.js.map +1 -1
- package/dist/zyzgroup_core_vue.umd.cjs +27 -15
- package/dist/zyzgroup_core_vue.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/types/components/Accordion.ce.vue.d.ts +78 -0
- package/types/components/Accordion.vue.d.ts +78 -0
- package/types/components/AnimatePanel.ce.vue.d.ts +34 -0
- package/types/components/AnimatePanel.vue.d.ts +34 -0
- package/types/components/Dialog.ce.vue.d.ts +1 -1
- package/types/components/Dialog.vue.d.ts +1 -1
- package/types/components/DialogLoading.ce.vue.d.ts +1 -1
- package/types/components/DialogLoading.vue.d.ts +1 -1
- package/types/components/EaseGraphDisplay.ce.vue.d.ts +71 -0
- package/types/components/EaseGraphDisplay.vue.d.ts +71 -0
- package/types/components/EaseGroupGraphDisplay.ce.vue.d.ts +55 -0
- package/types/components/EaseGroupGraphDisplay.vue.d.ts +55 -0
- package/types/components/FPSStats.ce.vue.d.ts +2 -0
- package/types/components/FPSStats.vue.d.ts +2 -0
- package/types/components/HandWritePanel.ce.vue.d.ts +61 -0
- package/types/components/HandWritePanel.vue.d.ts +61 -0
- package/types/components/Input.ce.vue.d.ts +103 -0
- package/types/components/Input.vue.d.ts +103 -0
- package/types/components/InterpolationGraphDisplay.ce.vue.d.ts +54 -0
- package/types/components/InterpolationGraphDisplay.vue.d.ts +54 -0
- package/types/components/InterpolationGroupGraphDisplay.ce.vue.d.ts +45 -0
- package/types/components/InterpolationGroupGraphDisplay.vue.d.ts +45 -0
- package/types/components/MobileLayout.ce.vue.d.ts +6 -36
- package/types/components/MobileLayout.vue.d.ts +6 -36
- package/types/components/Overlay.ce.vue.d.ts +5 -0
- package/types/components/Overlay.vue.d.ts +5 -0
- package/types/components/PlateKeyboard.ce.vue.d.ts +1 -1
- package/types/components/PlateKeyboard.vue.d.ts +1 -1
- package/types/components/Pop.ce.vue.d.ts +9 -4
- package/types/components/Pop.vue.d.ts +9 -4
- package/types/components/Popover.ce.vue.d.ts +5 -0
- package/types/components/Popover.vue.d.ts +5 -0
- package/types/components/ProgressBar.ce.vue.d.ts +61 -0
- package/types/components/ProgressBar.vue.d.ts +61 -0
- package/types/components/SlideLeftItem.ce.vue.d.ts +5 -0
- package/types/components/SlideLeftItem.vue.d.ts +5 -0
- package/types/components/Video.ce.vue.d.ts +55 -0
- package/types/components/Video.vue.d.ts +55 -0
- package/types/components/bg/BGBar.ce.vue.d.ts +49 -0
- package/types/components/bg/BGBar.vue.d.ts +49 -0
- package/types/components/svg/SVGDown.ce.vue.d.ts +36 -0
- package/types/components/svg/SVGDown.vue.d.ts +36 -0
- package/types/components/svg/SVGLock.ce.vue.d.ts +36 -0
- package/types/components/svg/SVGLock.vue.d.ts +36 -0
- package/types/lib.d.ts +12 -1
|
@@ -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,54 @@
|
|
|
1
|
+
import { type InterpolationFunction } from "@zyzgroup/core-web";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
|
+
interpolationName: string;
|
|
4
|
+
interpolationFunction: InterpolationFunction;
|
|
5
|
+
canvasWidth?: number | undefined;
|
|
6
|
+
canvasHeight?: number | undefined;
|
|
7
|
+
easeDuration?: number | undefined;
|
|
8
|
+
}>, {
|
|
9
|
+
canvasWidth: number;
|
|
10
|
+
canvasHeight: number;
|
|
11
|
+
easeDuration: number;
|
|
12
|
+
}>, {
|
|
13
|
+
start: () => void;
|
|
14
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
onMounted: (easeName: string) => void;
|
|
16
|
+
onStart: (easeName: string) => void;
|
|
17
|
+
onCompleted: (easeName: string) => void;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
19
|
+
interpolationName: string;
|
|
20
|
+
interpolationFunction: InterpolationFunction;
|
|
21
|
+
canvasWidth?: number | undefined;
|
|
22
|
+
canvasHeight?: number | undefined;
|
|
23
|
+
easeDuration?: number | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
canvasWidth: number;
|
|
26
|
+
canvasHeight: number;
|
|
27
|
+
easeDuration: number;
|
|
28
|
+
}>>> & {
|
|
29
|
+
onOnMounted?: ((easeName: string) => any) | undefined;
|
|
30
|
+
onOnStart?: ((easeName: string) => any) | undefined;
|
|
31
|
+
onOnCompleted?: ((easeName: string) => any) | undefined;
|
|
32
|
+
}, {
|
|
33
|
+
canvasWidth: number;
|
|
34
|
+
canvasHeight: number;
|
|
35
|
+
easeDuration: number;
|
|
36
|
+
}, {}>;
|
|
37
|
+
export default _default;
|
|
38
|
+
type __VLS_WithDefaults<P, D> = {
|
|
39
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
40
|
+
default: D[K];
|
|
41
|
+
}> : P[K];
|
|
42
|
+
};
|
|
43
|
+
type __VLS_Prettify<T> = {
|
|
44
|
+
[K in keyof T]: T[K];
|
|
45
|
+
} & {};
|
|
46
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
47
|
+
type __VLS_TypePropsToOption<T> = {
|
|
48
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
49
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
50
|
+
} : {
|
|
51
|
+
type: import('vue').PropType<T[K]>;
|
|
52
|
+
required: true;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { type InterpolationFunction } from "@zyzgroup/core-web";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
|
+
interpolationName: string;
|
|
4
|
+
interpolationFunction: InterpolationFunction;
|
|
5
|
+
canvasWidth?: number | undefined;
|
|
6
|
+
canvasHeight?: number | undefined;
|
|
7
|
+
easeDuration?: number | undefined;
|
|
8
|
+
}>, {
|
|
9
|
+
canvasWidth: number;
|
|
10
|
+
canvasHeight: number;
|
|
11
|
+
easeDuration: number;
|
|
12
|
+
}>, {
|
|
13
|
+
start: () => void;
|
|
14
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
onMounted: (easeName: string) => void;
|
|
16
|
+
onStart: (easeName: string) => void;
|
|
17
|
+
onCompleted: (easeName: string) => void;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
19
|
+
interpolationName: string;
|
|
20
|
+
interpolationFunction: InterpolationFunction;
|
|
21
|
+
canvasWidth?: number | undefined;
|
|
22
|
+
canvasHeight?: number | undefined;
|
|
23
|
+
easeDuration?: number | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
canvasWidth: number;
|
|
26
|
+
canvasHeight: number;
|
|
27
|
+
easeDuration: number;
|
|
28
|
+
}>>> & {
|
|
29
|
+
onOnMounted?: ((easeName: string) => any) | undefined;
|
|
30
|
+
onOnStart?: ((easeName: string) => any) | undefined;
|
|
31
|
+
onOnCompleted?: ((easeName: string) => any) | undefined;
|
|
32
|
+
}, {
|
|
33
|
+
canvasWidth: number;
|
|
34
|
+
canvasHeight: number;
|
|
35
|
+
easeDuration: number;
|
|
36
|
+
}, {}>;
|
|
37
|
+
export default _default;
|
|
38
|
+
type __VLS_WithDefaults<P, D> = {
|
|
39
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
40
|
+
default: D[K];
|
|
41
|
+
}> : P[K];
|
|
42
|
+
};
|
|
43
|
+
type __VLS_Prettify<T> = {
|
|
44
|
+
[K in keyof T]: T[K];
|
|
45
|
+
} & {};
|
|
46
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
47
|
+
type __VLS_TypePropsToOption<T> = {
|
|
48
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
49
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
50
|
+
} : {
|
|
51
|
+
type: import('vue').PropType<T[K]>;
|
|
52
|
+
required: true;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { type InterpolationFunction } from "@zyzgroup/core-web";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
|
+
interpolationList?: {
|
|
4
|
+
interpolationName: string;
|
|
5
|
+
interpolationFunction: InterpolationFunction;
|
|
6
|
+
}[] | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
interpolationList: () => {
|
|
9
|
+
interpolationName: string;
|
|
10
|
+
interpolationFunction: (v: number[], k: number) => number;
|
|
11
|
+
}[];
|
|
12
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
13
|
+
interpolationList?: {
|
|
14
|
+
interpolationName: string;
|
|
15
|
+
interpolationFunction: InterpolationFunction;
|
|
16
|
+
}[] | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
interpolationList: () => {
|
|
19
|
+
interpolationName: string;
|
|
20
|
+
interpolationFunction: (v: number[], k: number) => number;
|
|
21
|
+
}[];
|
|
22
|
+
}>>>, {
|
|
23
|
+
interpolationList: {
|
|
24
|
+
interpolationName: string;
|
|
25
|
+
interpolationFunction: InterpolationFunction;
|
|
26
|
+
}[];
|
|
27
|
+
}, {}>;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_WithDefaults<P, D> = {
|
|
30
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
31
|
+
default: D[K];
|
|
32
|
+
}> : P[K];
|
|
33
|
+
};
|
|
34
|
+
type __VLS_Prettify<T> = {
|
|
35
|
+
[K in keyof T]: T[K];
|
|
36
|
+
} & {};
|
|
37
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
38
|
+
type __VLS_TypePropsToOption<T> = {
|
|
39
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
40
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
41
|
+
} : {
|
|
42
|
+
type: import('vue').PropType<T[K]>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { type InterpolationFunction } from "@zyzgroup/core-web";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
|
+
interpolationList?: {
|
|
4
|
+
interpolationName: string;
|
|
5
|
+
interpolationFunction: InterpolationFunction;
|
|
6
|
+
}[] | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
interpolationList: () => {
|
|
9
|
+
interpolationName: string;
|
|
10
|
+
interpolationFunction: (v: number[], k: number) => number;
|
|
11
|
+
}[];
|
|
12
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
13
|
+
interpolationList?: {
|
|
14
|
+
interpolationName: string;
|
|
15
|
+
interpolationFunction: InterpolationFunction;
|
|
16
|
+
}[] | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
interpolationList: () => {
|
|
19
|
+
interpolationName: string;
|
|
20
|
+
interpolationFunction: (v: number[], k: number) => number;
|
|
21
|
+
}[];
|
|
22
|
+
}>>>, {
|
|
23
|
+
interpolationList: {
|
|
24
|
+
interpolationName: string;
|
|
25
|
+
interpolationFunction: InterpolationFunction;
|
|
26
|
+
}[];
|
|
27
|
+
}, {}>;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_WithDefaults<P, D> = {
|
|
30
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
31
|
+
default: D[K];
|
|
32
|
+
}> : P[K];
|
|
33
|
+
};
|
|
34
|
+
type __VLS_Prettify<T> = {
|
|
35
|
+
[K in keyof T]: T[K];
|
|
36
|
+
} & {};
|
|
37
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
38
|
+
type __VLS_TypePropsToOption<T> = {
|
|
39
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
40
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
41
|
+
} : {
|
|
42
|
+
type: import('vue').PropType<T[K]>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -1,48 +1,18 @@
|
|
|
1
1
|
import "@zyzgroup/core-web/dist/rem_750.css";
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
|
-
header?: boolean | undefined;
|
|
4
|
-
footer?: boolean | undefined;
|
|
5
|
-
left?: boolean | undefined;
|
|
6
|
-
right?: boolean | undefined;
|
|
7
3
|
designWidth?: number | undefined;
|
|
8
4
|
}>, {
|
|
9
|
-
header: boolean;
|
|
10
|
-
footer: boolean;
|
|
11
|
-
left: boolean;
|
|
12
|
-
right: boolean;
|
|
13
5
|
designWidth: number;
|
|
14
6
|
}>, {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
-
triggerHeader: (value: boolean) => void;
|
|
21
|
-
triggerFooter: (value: boolean) => void;
|
|
22
|
-
triggerLeft: (value: boolean) => void;
|
|
23
|
-
triggerRight: (value: boolean) => void;
|
|
24
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
25
|
-
header?: boolean | undefined;
|
|
26
|
-
footer?: boolean | undefined;
|
|
27
|
-
left?: boolean | undefined;
|
|
28
|
-
right?: boolean | undefined;
|
|
7
|
+
openLeft: () => void;
|
|
8
|
+
closeLeft: () => void;
|
|
9
|
+
openRight: () => void;
|
|
10
|
+
closeRight: () => void;
|
|
11
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
29
12
|
designWidth?: number | undefined;
|
|
30
13
|
}>, {
|
|
31
|
-
header: boolean;
|
|
32
|
-
footer: boolean;
|
|
33
|
-
left: boolean;
|
|
34
|
-
right: boolean;
|
|
35
14
|
designWidth: number;
|
|
36
|
-
}
|
|
37
|
-
onTriggerHeader?: ((value: boolean) => any) | undefined;
|
|
38
|
-
onTriggerFooter?: ((value: boolean) => any) | undefined;
|
|
39
|
-
onTriggerLeft?: ((value: boolean) => any) | undefined;
|
|
40
|
-
onTriggerRight?: ((value: boolean) => any) | undefined;
|
|
41
|
-
}, {
|
|
42
|
-
footer: boolean;
|
|
43
|
-
header: boolean;
|
|
44
|
-
left: boolean;
|
|
45
|
-
right: boolean;
|
|
15
|
+
}>>>, {
|
|
46
16
|
designWidth: number;
|
|
47
17
|
}, {}>, {
|
|
48
18
|
header?(_: {}): any;
|
|
@@ -1,48 +1,18 @@
|
|
|
1
1
|
import "@zyzgroup/core-web/dist/rem_750.css";
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
|
-
header?: boolean | undefined;
|
|
4
|
-
footer?: boolean | undefined;
|
|
5
|
-
left?: boolean | undefined;
|
|
6
|
-
right?: boolean | undefined;
|
|
7
3
|
designWidth?: number | undefined;
|
|
8
4
|
}>, {
|
|
9
|
-
header: boolean;
|
|
10
|
-
footer: boolean;
|
|
11
|
-
left: boolean;
|
|
12
|
-
right: boolean;
|
|
13
5
|
designWidth: number;
|
|
14
6
|
}>, {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
-
triggerHeader: (value: boolean) => void;
|
|
21
|
-
triggerFooter: (value: boolean) => void;
|
|
22
|
-
triggerLeft: (value: boolean) => void;
|
|
23
|
-
triggerRight: (value: boolean) => void;
|
|
24
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
25
|
-
header?: boolean | undefined;
|
|
26
|
-
footer?: boolean | undefined;
|
|
27
|
-
left?: boolean | undefined;
|
|
28
|
-
right?: boolean | undefined;
|
|
7
|
+
openLeft: () => void;
|
|
8
|
+
closeLeft: () => void;
|
|
9
|
+
openRight: () => void;
|
|
10
|
+
closeRight: () => void;
|
|
11
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
29
12
|
designWidth?: number | undefined;
|
|
30
13
|
}>, {
|
|
31
|
-
header: boolean;
|
|
32
|
-
footer: boolean;
|
|
33
|
-
left: boolean;
|
|
34
|
-
right: boolean;
|
|
35
14
|
designWidth: number;
|
|
36
|
-
}
|
|
37
|
-
onTriggerHeader?: ((value: boolean) => any) | undefined;
|
|
38
|
-
onTriggerFooter?: ((value: boolean) => any) | undefined;
|
|
39
|
-
onTriggerLeft?: ((value: boolean) => any) | undefined;
|
|
40
|
-
onTriggerRight?: ((value: boolean) => any) | undefined;
|
|
41
|
-
}, {
|
|
42
|
-
footer: boolean;
|
|
43
|
-
header: boolean;
|
|
44
|
-
left: boolean;
|
|
45
|
-
right: boolean;
|
|
15
|
+
}>>>, {
|
|
46
16
|
designWidth: number;
|
|
47
17
|
}, {}>, {
|
|
48
18
|
header?(_: {}): any;
|
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
2
|
visible?: boolean | undefined;
|
|
3
3
|
bgColor?: string | undefined;
|
|
4
|
+
isGlobal?: boolean | undefined;
|
|
4
5
|
}>, {
|
|
5
6
|
open: boolean;
|
|
6
7
|
bgColor: string;
|
|
8
|
+
isGlobal: boolean;
|
|
7
9
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
8
10
|
visible?: boolean | undefined;
|
|
9
11
|
bgColor?: string | undefined;
|
|
12
|
+
isGlobal?: boolean | undefined;
|
|
10
13
|
}>, {
|
|
11
14
|
open: boolean;
|
|
12
15
|
bgColor: string;
|
|
16
|
+
isGlobal: boolean;
|
|
13
17
|
}>>>, {
|
|
14
18
|
bgColor: string;
|
|
19
|
+
isGlobal: boolean;
|
|
15
20
|
}, {}>, {
|
|
16
21
|
default?(_: {}): any;
|
|
17
22
|
}>;
|
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
2
|
visible?: boolean | undefined;
|
|
3
3
|
bgColor?: string | undefined;
|
|
4
|
+
isGlobal?: boolean | undefined;
|
|
4
5
|
}>, {
|
|
5
6
|
open: boolean;
|
|
6
7
|
bgColor: string;
|
|
8
|
+
isGlobal: boolean;
|
|
7
9
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
8
10
|
visible?: boolean | undefined;
|
|
9
11
|
bgColor?: string | undefined;
|
|
12
|
+
isGlobal?: boolean | undefined;
|
|
10
13
|
}>, {
|
|
11
14
|
open: boolean;
|
|
12
15
|
bgColor: string;
|
|
16
|
+
isGlobal: boolean;
|
|
13
17
|
}>>>, {
|
|
14
18
|
bgColor: string;
|
|
19
|
+
isGlobal: boolean;
|
|
15
20
|
}, {}>, {
|
|
16
21
|
default?(_: {}): any;
|
|
17
22
|
}>;
|
|
@@ -18,8 +18,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
18
18
|
initPlates: () => never[];
|
|
19
19
|
completePlateLength: number;
|
|
20
20
|
}>>> & {
|
|
21
|
-
onClose?: (() => any) | undefined;
|
|
22
21
|
onOpen?: (() => any) | undefined;
|
|
22
|
+
onClose?: (() => any) | undefined;
|
|
23
23
|
onPlates?: ((plates: string[]) => any) | undefined;
|
|
24
24
|
}, {
|
|
25
25
|
initPlates: string[];
|
|
@@ -18,8 +18,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
18
18
|
initPlates: () => never[];
|
|
19
19
|
completePlateLength: number;
|
|
20
20
|
}>>> & {
|
|
21
|
-
onClose?: (() => any) | undefined;
|
|
22
21
|
onOpen?: (() => any) | undefined;
|
|
22
|
+
onClose?: (() => any) | undefined;
|
|
23
23
|
onPlates?: ((plates: string[]) => any) | undefined;
|
|
24
24
|
}, {
|
|
25
25
|
initPlates: string[];
|
|
@@ -2,14 +2,16 @@ declare function open(): void;
|
|
|
2
2
|
declare function close(): void;
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
4
4
|
closeWhenClickOverlay?: boolean | undefined;
|
|
5
|
-
directionFrom?: "left" | "right" | "
|
|
5
|
+
directionFrom?: "left" | "right" | "absolute" | "bottom" | "top" | "center" | undefined;
|
|
6
6
|
openDurTime?: number | undefined;
|
|
7
7
|
closeDurTime?: number | undefined;
|
|
8
|
+
isGlobal?: boolean | undefined;
|
|
8
9
|
}>, {
|
|
9
10
|
closeWhenClickOverlay: boolean;
|
|
10
11
|
directionFrom: string;
|
|
11
12
|
openDurTime: number;
|
|
12
13
|
closeDurTime: number;
|
|
14
|
+
isGlobal: boolean;
|
|
13
15
|
}>, {
|
|
14
16
|
open: typeof open;
|
|
15
17
|
close: typeof close;
|
|
@@ -18,20 +20,23 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
18
20
|
close: () => void;
|
|
19
21
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
20
22
|
closeWhenClickOverlay?: boolean | undefined;
|
|
21
|
-
directionFrom?: "left" | "right" | "
|
|
23
|
+
directionFrom?: "left" | "right" | "absolute" | "bottom" | "top" | "center" | undefined;
|
|
22
24
|
openDurTime?: number | undefined;
|
|
23
25
|
closeDurTime?: number | undefined;
|
|
26
|
+
isGlobal?: boolean | undefined;
|
|
24
27
|
}>, {
|
|
25
28
|
closeWhenClickOverlay: boolean;
|
|
26
29
|
directionFrom: string;
|
|
27
30
|
openDurTime: number;
|
|
28
31
|
closeDurTime: number;
|
|
32
|
+
isGlobal: boolean;
|
|
29
33
|
}>>> & {
|
|
30
|
-
onClose?: (() => any) | undefined;
|
|
31
34
|
onOpen?: (() => any) | undefined;
|
|
35
|
+
onClose?: (() => any) | undefined;
|
|
32
36
|
}, {
|
|
37
|
+
isGlobal: boolean;
|
|
33
38
|
closeWhenClickOverlay: boolean;
|
|
34
|
-
directionFrom: "left" | "right" | "
|
|
39
|
+
directionFrom: "left" | "right" | "absolute" | "bottom" | "top" | "center";
|
|
35
40
|
openDurTime: number;
|
|
36
41
|
closeDurTime: number;
|
|
37
42
|
}, {}>, {
|
|
@@ -2,14 +2,16 @@ declare function open(): void;
|
|
|
2
2
|
declare function close(): void;
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
4
4
|
closeWhenClickOverlay?: boolean | undefined;
|
|
5
|
-
directionFrom?: "left" | "right" | "
|
|
5
|
+
directionFrom?: "left" | "right" | "absolute" | "bottom" | "top" | "center" | undefined;
|
|
6
6
|
openDurTime?: number | undefined;
|
|
7
7
|
closeDurTime?: number | undefined;
|
|
8
|
+
isGlobal?: boolean | undefined;
|
|
8
9
|
}>, {
|
|
9
10
|
closeWhenClickOverlay: boolean;
|
|
10
11
|
directionFrom: string;
|
|
11
12
|
openDurTime: number;
|
|
12
13
|
closeDurTime: number;
|
|
14
|
+
isGlobal: boolean;
|
|
13
15
|
}>, {
|
|
14
16
|
open: typeof open;
|
|
15
17
|
close: typeof close;
|
|
@@ -18,20 +20,23 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
18
20
|
close: () => void;
|
|
19
21
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
20
22
|
closeWhenClickOverlay?: boolean | undefined;
|
|
21
|
-
directionFrom?: "left" | "right" | "
|
|
23
|
+
directionFrom?: "left" | "right" | "absolute" | "bottom" | "top" | "center" | undefined;
|
|
22
24
|
openDurTime?: number | undefined;
|
|
23
25
|
closeDurTime?: number | undefined;
|
|
26
|
+
isGlobal?: boolean | undefined;
|
|
24
27
|
}>, {
|
|
25
28
|
closeWhenClickOverlay: boolean;
|
|
26
29
|
directionFrom: string;
|
|
27
30
|
openDurTime: number;
|
|
28
31
|
closeDurTime: number;
|
|
32
|
+
isGlobal: boolean;
|
|
29
33
|
}>>> & {
|
|
30
|
-
onClose?: (() => any) | undefined;
|
|
31
34
|
onOpen?: (() => any) | undefined;
|
|
35
|
+
onClose?: (() => any) | undefined;
|
|
32
36
|
}, {
|
|
37
|
+
isGlobal: boolean;
|
|
33
38
|
closeWhenClickOverlay: boolean;
|
|
34
|
-
directionFrom: "left" | "right" | "
|
|
39
|
+
directionFrom: "left" | "right" | "absolute" | "bottom" | "top" | "center";
|
|
35
40
|
openDurTime: number;
|
|
36
41
|
closeDurTime: number;
|
|
37
42
|
}, {}>, {
|