@zyzgroup/core-vue 0.0.19 → 0.0.21
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 +118 -99
- package/ce/yz_custom_element.iife.js.map +1 -1
- package/ce/yz_custom_element.js +13075 -11202
- package/ce/yz_custom_element.js.map +1 -1
- package/ce/yz_custom_element.umd.cjs +118 -99
- package/ce/yz_custom_element.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/dist/zyzgroup_core_vue.iife.js +52 -41
- package/dist/zyzgroup_core_vue.iife.js.map +1 -1
- package/dist/zyzgroup_core_vue.js +11519 -9845
- package/dist/zyzgroup_core_vue.js.map +1 -1
- package/dist/zyzgroup_core_vue.umd.cjs +52 -41
- package/dist/zyzgroup_core_vue.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/types/components/Canvas.ce.vue.d.ts +2 -2
- package/types/components/Canvas.vue.d.ts +2 -2
- package/types/components/CardFlip.ce.vue.d.ts +51 -0
- package/types/components/CardFlip.vue.d.ts +51 -0
- package/types/components/Cube.ce.vue.d.ts +56 -0
- package/types/components/Cube.vue.d.ts +56 -0
- package/types/components/Demo.ce.vue.d.ts +2 -0
- package/types/components/Demo.vue.d.ts +2 -0
- package/types/components/InputRange.ce.vue.d.ts +30 -5
- package/types/components/InputRange.vue.d.ts +30 -5
- package/types/components/InputRangeSvg.ce.vue.d.ts +78 -0
- package/types/components/InputRangeSvg.vue.d.ts +78 -0
- package/types/components/SVG.ce.vue.d.ts +2 -2
- package/types/components/SVG.vue.d.ts +2 -2
- package/types/components/chat/RingIndicator.ce.vue.d.ts +49 -0
- package/types/components/chat/RingIndicator.vue.d.ts +49 -0
- package/types/lib.d.ts +5 -1
- package/types/main.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare function getCanvas(): Promise<
|
|
1
|
+
import { YZCanvas } from "@zyzgroup/core-web";
|
|
2
|
+
declare function getCanvas(): Promise<YZCanvas>;
|
|
3
3
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
4
4
|
bgColor?: string | undefined;
|
|
5
5
|
}>, {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare function getCanvas(): Promise<
|
|
1
|
+
import { YZCanvas } from "@zyzgroup/core-web";
|
|
2
|
+
declare function getCanvas(): Promise<YZCanvas>;
|
|
3
3
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
4
4
|
bgColor?: string | undefined;
|
|
5
5
|
}>, {
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
type?: "" | "slide" | undefined;
|
|
3
|
+
dur?: number | undefined;
|
|
4
|
+
perspective?: string | undefined;
|
|
5
|
+
}>, {
|
|
6
|
+
type: string;
|
|
7
|
+
dur: number;
|
|
8
|
+
perspective: string;
|
|
9
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
click: (isFlipped: boolean) => void;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
12
|
+
type?: "" | "slide" | undefined;
|
|
13
|
+
dur?: number | undefined;
|
|
14
|
+
perspective?: string | undefined;
|
|
15
|
+
}>, {
|
|
16
|
+
type: string;
|
|
17
|
+
dur: number;
|
|
18
|
+
perspective: string;
|
|
19
|
+
}>>> & {
|
|
20
|
+
onClick?: ((isFlipped: boolean) => any) | undefined;
|
|
21
|
+
}, {
|
|
22
|
+
type: "" | "slide";
|
|
23
|
+
perspective: string;
|
|
24
|
+
dur: number;
|
|
25
|
+
}, {}>, {
|
|
26
|
+
front?(_: {}): any;
|
|
27
|
+
back?(_: {}): any;
|
|
28
|
+
}>;
|
|
29
|
+
export default _default;
|
|
30
|
+
type __VLS_WithDefaults<P, D> = {
|
|
31
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
32
|
+
default: D[K];
|
|
33
|
+
}> : P[K];
|
|
34
|
+
};
|
|
35
|
+
type __VLS_Prettify<T> = {
|
|
36
|
+
[K in keyof T]: T[K];
|
|
37
|
+
} & {};
|
|
38
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
|
+
new (): {
|
|
40
|
+
$slots: S;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
44
|
+
type __VLS_TypePropsToOption<T> = {
|
|
45
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
46
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
47
|
+
} : {
|
|
48
|
+
type: import('vue').PropType<T[K]>;
|
|
49
|
+
required: true;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
type?: "" | "slide" | undefined;
|
|
3
|
+
dur?: number | undefined;
|
|
4
|
+
perspective?: string | undefined;
|
|
5
|
+
}>, {
|
|
6
|
+
type: string;
|
|
7
|
+
dur: number;
|
|
8
|
+
perspective: string;
|
|
9
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
click: (isFlipped: boolean) => void;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
12
|
+
type?: "" | "slide" | undefined;
|
|
13
|
+
dur?: number | undefined;
|
|
14
|
+
perspective?: string | undefined;
|
|
15
|
+
}>, {
|
|
16
|
+
type: string;
|
|
17
|
+
dur: number;
|
|
18
|
+
perspective: string;
|
|
19
|
+
}>>> & {
|
|
20
|
+
onClick?: ((isFlipped: boolean) => any) | undefined;
|
|
21
|
+
}, {
|
|
22
|
+
type: "" | "slide";
|
|
23
|
+
perspective: string;
|
|
24
|
+
dur: number;
|
|
25
|
+
}, {}>, {
|
|
26
|
+
front?(_: {}): any;
|
|
27
|
+
back?(_: {}): any;
|
|
28
|
+
}>;
|
|
29
|
+
export default _default;
|
|
30
|
+
type __VLS_WithDefaults<P, D> = {
|
|
31
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
32
|
+
default: D[K];
|
|
33
|
+
}> : P[K];
|
|
34
|
+
};
|
|
35
|
+
type __VLS_Prettify<T> = {
|
|
36
|
+
[K in keyof T]: T[K];
|
|
37
|
+
} & {};
|
|
38
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
|
+
new (): {
|
|
40
|
+
$slots: S;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
44
|
+
type __VLS_TypePropsToOption<T> = {
|
|
45
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
46
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
47
|
+
} : {
|
|
48
|
+
type: import('vue').PropType<T[K]>;
|
|
49
|
+
required: true;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
width?: number | undefined;
|
|
3
|
+
height?: number | undefined;
|
|
4
|
+
dur?: number | undefined;
|
|
5
|
+
perspective?: number | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
width: number;
|
|
8
|
+
height: number;
|
|
9
|
+
dur: number;
|
|
10
|
+
perspective: number;
|
|
11
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
12
|
+
width?: number | undefined;
|
|
13
|
+
height?: number | undefined;
|
|
14
|
+
dur?: number | undefined;
|
|
15
|
+
perspective?: number | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
width: number;
|
|
18
|
+
height: number;
|
|
19
|
+
dur: number;
|
|
20
|
+
perspective: number;
|
|
21
|
+
}>>>, {
|
|
22
|
+
width: number;
|
|
23
|
+
height: number;
|
|
24
|
+
perspective: number;
|
|
25
|
+
dur: number;
|
|
26
|
+
}, {}>, {
|
|
27
|
+
front?(_: {}): any;
|
|
28
|
+
back?(_: {}): any;
|
|
29
|
+
right?(_: {}): any;
|
|
30
|
+
left?(_: {}): any;
|
|
31
|
+
top?(_: {}): any;
|
|
32
|
+
bottom?(_: {}): any;
|
|
33
|
+
}>;
|
|
34
|
+
export default _default;
|
|
35
|
+
type __VLS_WithDefaults<P, D> = {
|
|
36
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
37
|
+
default: D[K];
|
|
38
|
+
}> : P[K];
|
|
39
|
+
};
|
|
40
|
+
type __VLS_Prettify<T> = {
|
|
41
|
+
[K in keyof T]: T[K];
|
|
42
|
+
} & {};
|
|
43
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
44
|
+
new (): {
|
|
45
|
+
$slots: S;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
49
|
+
type __VLS_TypePropsToOption<T> = {
|
|
50
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
51
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
52
|
+
} : {
|
|
53
|
+
type: import('vue').PropType<T[K]>;
|
|
54
|
+
required: true;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
width?: number | undefined;
|
|
3
|
+
height?: number | undefined;
|
|
4
|
+
dur?: number | undefined;
|
|
5
|
+
perspective?: number | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
width: number;
|
|
8
|
+
height: number;
|
|
9
|
+
dur: number;
|
|
10
|
+
perspective: number;
|
|
11
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
12
|
+
width?: number | undefined;
|
|
13
|
+
height?: number | undefined;
|
|
14
|
+
dur?: number | undefined;
|
|
15
|
+
perspective?: number | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
width: number;
|
|
18
|
+
height: number;
|
|
19
|
+
dur: number;
|
|
20
|
+
perspective: number;
|
|
21
|
+
}>>>, {
|
|
22
|
+
width: number;
|
|
23
|
+
height: number;
|
|
24
|
+
perspective: number;
|
|
25
|
+
dur: number;
|
|
26
|
+
}, {}>, {
|
|
27
|
+
front?(_: {}): any;
|
|
28
|
+
back?(_: {}): any;
|
|
29
|
+
right?(_: {}): any;
|
|
30
|
+
left?(_: {}): any;
|
|
31
|
+
top?(_: {}): any;
|
|
32
|
+
bottom?(_: {}): any;
|
|
33
|
+
}>;
|
|
34
|
+
export default _default;
|
|
35
|
+
type __VLS_WithDefaults<P, D> = {
|
|
36
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
37
|
+
default: D[K];
|
|
38
|
+
}> : P[K];
|
|
39
|
+
};
|
|
40
|
+
type __VLS_Prettify<T> = {
|
|
41
|
+
[K in keyof T]: T[K];
|
|
42
|
+
} & {};
|
|
43
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
44
|
+
new (): {
|
|
45
|
+
$slots: S;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
49
|
+
type __VLS_TypePropsToOption<T> = {
|
|
50
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
51
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
52
|
+
} : {
|
|
53
|
+
type: import('vue').PropType<T[K]>;
|
|
54
|
+
required: true;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
@@ -1,42 +1,67 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
-
max?: number | undefined;
|
|
3
2
|
min?: number | undefined;
|
|
3
|
+
max?: number | undefined;
|
|
4
4
|
step?: number | undefined;
|
|
5
5
|
defaultValue?: number | undefined;
|
|
6
|
+
unit?: string | undefined;
|
|
7
|
+
showValue?: boolean | undefined;
|
|
6
8
|
autofocus?: boolean | undefined;
|
|
7
9
|
color?: string | undefined;
|
|
10
|
+
barColor?: string | undefined;
|
|
11
|
+
handleSize?: string | undefined;
|
|
12
|
+
barHeight?: string | undefined;
|
|
8
13
|
}>, {
|
|
9
|
-
max: number;
|
|
10
14
|
min: number;
|
|
15
|
+
max: number;
|
|
11
16
|
step: number;
|
|
12
17
|
defaultValue: number;
|
|
18
|
+
unit: string;
|
|
19
|
+
showValue: boolean;
|
|
13
20
|
autofocus: boolean;
|
|
14
21
|
color: string;
|
|
22
|
+
barColor: string;
|
|
23
|
+
handleSize: string;
|
|
24
|
+
barHeight: string;
|
|
15
25
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
26
|
change: (value: number) => void;
|
|
17
27
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
18
|
-
max?: number | undefined;
|
|
19
28
|
min?: number | undefined;
|
|
29
|
+
max?: number | undefined;
|
|
20
30
|
step?: number | undefined;
|
|
21
31
|
defaultValue?: number | undefined;
|
|
32
|
+
unit?: string | undefined;
|
|
33
|
+
showValue?: boolean | undefined;
|
|
22
34
|
autofocus?: boolean | undefined;
|
|
23
35
|
color?: string | undefined;
|
|
36
|
+
barColor?: string | undefined;
|
|
37
|
+
handleSize?: string | undefined;
|
|
38
|
+
barHeight?: string | undefined;
|
|
24
39
|
}>, {
|
|
25
|
-
max: number;
|
|
26
40
|
min: number;
|
|
41
|
+
max: number;
|
|
27
42
|
step: number;
|
|
28
43
|
defaultValue: number;
|
|
44
|
+
unit: string;
|
|
45
|
+
showValue: boolean;
|
|
29
46
|
autofocus: boolean;
|
|
30
47
|
color: string;
|
|
48
|
+
barColor: string;
|
|
49
|
+
handleSize: string;
|
|
50
|
+
barHeight: string;
|
|
31
51
|
}>>> & {
|
|
32
52
|
onChange?: ((value: number) => any) | undefined;
|
|
33
53
|
}, {
|
|
34
54
|
color: string;
|
|
35
55
|
step: number;
|
|
36
|
-
max: number;
|
|
37
56
|
min: number;
|
|
57
|
+
max: number;
|
|
38
58
|
defaultValue: number;
|
|
59
|
+
unit: string;
|
|
60
|
+
showValue: boolean;
|
|
39
61
|
autofocus: boolean;
|
|
62
|
+
barColor: string;
|
|
63
|
+
handleSize: string;
|
|
64
|
+
barHeight: string;
|
|
40
65
|
}, {}>;
|
|
41
66
|
export default _default;
|
|
42
67
|
type __VLS_WithDefaults<P, D> = {
|
|
@@ -1,42 +1,67 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
-
max?: number | undefined;
|
|
3
2
|
min?: number | undefined;
|
|
3
|
+
max?: number | undefined;
|
|
4
4
|
step?: number | undefined;
|
|
5
5
|
defaultValue?: number | undefined;
|
|
6
|
+
unit?: string | undefined;
|
|
7
|
+
showValue?: boolean | undefined;
|
|
6
8
|
autofocus?: boolean | undefined;
|
|
7
9
|
color?: string | undefined;
|
|
10
|
+
barColor?: string | undefined;
|
|
11
|
+
handleSize?: string | undefined;
|
|
12
|
+
barHeight?: string | undefined;
|
|
8
13
|
}>, {
|
|
9
|
-
max: number;
|
|
10
14
|
min: number;
|
|
15
|
+
max: number;
|
|
11
16
|
step: number;
|
|
12
17
|
defaultValue: number;
|
|
18
|
+
unit: string;
|
|
19
|
+
showValue: boolean;
|
|
13
20
|
autofocus: boolean;
|
|
14
21
|
color: string;
|
|
22
|
+
barColor: string;
|
|
23
|
+
handleSize: string;
|
|
24
|
+
barHeight: string;
|
|
15
25
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
26
|
change: (value: number) => void;
|
|
17
27
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
18
|
-
max?: number | undefined;
|
|
19
28
|
min?: number | undefined;
|
|
29
|
+
max?: number | undefined;
|
|
20
30
|
step?: number | undefined;
|
|
21
31
|
defaultValue?: number | undefined;
|
|
32
|
+
unit?: string | undefined;
|
|
33
|
+
showValue?: boolean | undefined;
|
|
22
34
|
autofocus?: boolean | undefined;
|
|
23
35
|
color?: string | undefined;
|
|
36
|
+
barColor?: string | undefined;
|
|
37
|
+
handleSize?: string | undefined;
|
|
38
|
+
barHeight?: string | undefined;
|
|
24
39
|
}>, {
|
|
25
|
-
max: number;
|
|
26
40
|
min: number;
|
|
41
|
+
max: number;
|
|
27
42
|
step: number;
|
|
28
43
|
defaultValue: number;
|
|
44
|
+
unit: string;
|
|
45
|
+
showValue: boolean;
|
|
29
46
|
autofocus: boolean;
|
|
30
47
|
color: string;
|
|
48
|
+
barColor: string;
|
|
49
|
+
handleSize: string;
|
|
50
|
+
barHeight: string;
|
|
31
51
|
}>>> & {
|
|
32
52
|
onChange?: ((value: number) => any) | undefined;
|
|
33
53
|
}, {
|
|
34
54
|
color: string;
|
|
35
55
|
step: number;
|
|
36
|
-
max: number;
|
|
37
56
|
min: number;
|
|
57
|
+
max: number;
|
|
38
58
|
defaultValue: number;
|
|
59
|
+
unit: string;
|
|
60
|
+
showValue: boolean;
|
|
39
61
|
autofocus: boolean;
|
|
62
|
+
barColor: string;
|
|
63
|
+
handleSize: string;
|
|
64
|
+
barHeight: string;
|
|
40
65
|
}, {}>;
|
|
41
66
|
export default _default;
|
|
42
67
|
type __VLS_WithDefaults<P, D> = {
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
min?: number | undefined;
|
|
3
|
+
max?: number | undefined;
|
|
4
|
+
step?: number | undefined;
|
|
5
|
+
defaultValue?: number | undefined;
|
|
6
|
+
unit?: string | undefined;
|
|
7
|
+
showValue?: boolean | undefined;
|
|
8
|
+
color?: string | undefined;
|
|
9
|
+
barColor?: string | undefined;
|
|
10
|
+
handleSize?: string | undefined;
|
|
11
|
+
barHeight?: string | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
min: number;
|
|
14
|
+
max: number;
|
|
15
|
+
step: number;
|
|
16
|
+
defaultValue: number;
|
|
17
|
+
unit: string;
|
|
18
|
+
showValue: boolean;
|
|
19
|
+
color: string;
|
|
20
|
+
barColor: string;
|
|
21
|
+
handleSize: string;
|
|
22
|
+
barHeight: string;
|
|
23
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
+
change: (value: number) => void;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
26
|
+
min?: number | undefined;
|
|
27
|
+
max?: number | undefined;
|
|
28
|
+
step?: number | undefined;
|
|
29
|
+
defaultValue?: number | undefined;
|
|
30
|
+
unit?: string | undefined;
|
|
31
|
+
showValue?: boolean | undefined;
|
|
32
|
+
color?: string | undefined;
|
|
33
|
+
barColor?: string | undefined;
|
|
34
|
+
handleSize?: string | undefined;
|
|
35
|
+
barHeight?: string | undefined;
|
|
36
|
+
}>, {
|
|
37
|
+
min: number;
|
|
38
|
+
max: number;
|
|
39
|
+
step: number;
|
|
40
|
+
defaultValue: number;
|
|
41
|
+
unit: string;
|
|
42
|
+
showValue: boolean;
|
|
43
|
+
color: string;
|
|
44
|
+
barColor: string;
|
|
45
|
+
handleSize: string;
|
|
46
|
+
barHeight: string;
|
|
47
|
+
}>>> & {
|
|
48
|
+
onChange?: ((value: number) => any) | undefined;
|
|
49
|
+
}, {
|
|
50
|
+
color: string;
|
|
51
|
+
step: number;
|
|
52
|
+
min: number;
|
|
53
|
+
max: number;
|
|
54
|
+
defaultValue: number;
|
|
55
|
+
unit: string;
|
|
56
|
+
showValue: boolean;
|
|
57
|
+
barColor: string;
|
|
58
|
+
handleSize: string;
|
|
59
|
+
barHeight: string;
|
|
60
|
+
}, {}>;
|
|
61
|
+
export default _default;
|
|
62
|
+
type __VLS_WithDefaults<P, D> = {
|
|
63
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
64
|
+
default: D[K];
|
|
65
|
+
}> : P[K];
|
|
66
|
+
};
|
|
67
|
+
type __VLS_Prettify<T> = {
|
|
68
|
+
[K in keyof T]: T[K];
|
|
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: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
min?: number | undefined;
|
|
3
|
+
max?: number | undefined;
|
|
4
|
+
step?: number | undefined;
|
|
5
|
+
defaultValue?: number | undefined;
|
|
6
|
+
unit?: string | undefined;
|
|
7
|
+
showValue?: boolean | undefined;
|
|
8
|
+
color?: string | undefined;
|
|
9
|
+
barColor?: string | undefined;
|
|
10
|
+
handleSize?: string | undefined;
|
|
11
|
+
barHeight?: string | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
min: number;
|
|
14
|
+
max: number;
|
|
15
|
+
step: number;
|
|
16
|
+
defaultValue: number;
|
|
17
|
+
unit: string;
|
|
18
|
+
showValue: boolean;
|
|
19
|
+
color: string;
|
|
20
|
+
barColor: string;
|
|
21
|
+
handleSize: string;
|
|
22
|
+
barHeight: string;
|
|
23
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
+
change: (value: number) => void;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
26
|
+
min?: number | undefined;
|
|
27
|
+
max?: number | undefined;
|
|
28
|
+
step?: number | undefined;
|
|
29
|
+
defaultValue?: number | undefined;
|
|
30
|
+
unit?: string | undefined;
|
|
31
|
+
showValue?: boolean | undefined;
|
|
32
|
+
color?: string | undefined;
|
|
33
|
+
barColor?: string | undefined;
|
|
34
|
+
handleSize?: string | undefined;
|
|
35
|
+
barHeight?: string | undefined;
|
|
36
|
+
}>, {
|
|
37
|
+
min: number;
|
|
38
|
+
max: number;
|
|
39
|
+
step: number;
|
|
40
|
+
defaultValue: number;
|
|
41
|
+
unit: string;
|
|
42
|
+
showValue: boolean;
|
|
43
|
+
color: string;
|
|
44
|
+
barColor: string;
|
|
45
|
+
handleSize: string;
|
|
46
|
+
barHeight: string;
|
|
47
|
+
}>>> & {
|
|
48
|
+
onChange?: ((value: number) => any) | undefined;
|
|
49
|
+
}, {
|
|
50
|
+
color: string;
|
|
51
|
+
step: number;
|
|
52
|
+
min: number;
|
|
53
|
+
max: number;
|
|
54
|
+
defaultValue: number;
|
|
55
|
+
unit: string;
|
|
56
|
+
showValue: boolean;
|
|
57
|
+
barColor: string;
|
|
58
|
+
handleSize: string;
|
|
59
|
+
barHeight: string;
|
|
60
|
+
}, {}>;
|
|
61
|
+
export default _default;
|
|
62
|
+
type __VLS_WithDefaults<P, D> = {
|
|
63
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
64
|
+
default: D[K];
|
|
65
|
+
}> : P[K];
|
|
66
|
+
};
|
|
67
|
+
type __VLS_Prettify<T> = {
|
|
68
|
+
[K in keyof T]: T[K];
|
|
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
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare function getSVG(): Promise<
|
|
1
|
+
import { YZSVG } from "@zyzgroup/core-web";
|
|
2
|
+
declare function getSVG(): Promise<YZSVG>;
|
|
3
3
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
4
4
|
bgColor?: string | undefined;
|
|
5
5
|
}>, {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare function getSVG(): Promise<
|
|
1
|
+
import { YZSVG } from "@zyzgroup/core-web";
|
|
2
|
+
declare function getSVG(): Promise<YZSVG>;
|
|
3
3
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
4
4
|
bgColor?: string | undefined;
|
|
5
5
|
}>, {
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
percent?: number | undefined;
|
|
3
|
+
lineWidth?: number | undefined;
|
|
4
|
+
bgColor?: string | undefined;
|
|
5
|
+
startColor?: string | undefined;
|
|
6
|
+
endColor?: string | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
percent: number;
|
|
9
|
+
lineWidth: number;
|
|
10
|
+
bgColor: string;
|
|
11
|
+
startColor: string;
|
|
12
|
+
endColor: string;
|
|
13
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
14
|
+
percent?: number | undefined;
|
|
15
|
+
lineWidth?: number | undefined;
|
|
16
|
+
bgColor?: string | undefined;
|
|
17
|
+
startColor?: string | undefined;
|
|
18
|
+
endColor?: string | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
percent: number;
|
|
21
|
+
lineWidth: number;
|
|
22
|
+
bgColor: string;
|
|
23
|
+
startColor: string;
|
|
24
|
+
endColor: string;
|
|
25
|
+
}>>>, {
|
|
26
|
+
bgColor: string;
|
|
27
|
+
percent: number;
|
|
28
|
+
lineWidth: number;
|
|
29
|
+
startColor: string;
|
|
30
|
+
endColor: string;
|
|
31
|
+
}, {}>;
|
|
32
|
+
export default _default;
|
|
33
|
+
type __VLS_WithDefaults<P, D> = {
|
|
34
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
35
|
+
default: D[K];
|
|
36
|
+
}> : P[K];
|
|
37
|
+
};
|
|
38
|
+
type __VLS_Prettify<T> = {
|
|
39
|
+
[K in keyof T]: T[K];
|
|
40
|
+
} & {};
|
|
41
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
|
+
type __VLS_TypePropsToOption<T> = {
|
|
43
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
44
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
45
|
+
} : {
|
|
46
|
+
type: import('vue').PropType<T[K]>;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
percent?: number | undefined;
|
|
3
|
+
lineWidth?: number | undefined;
|
|
4
|
+
bgColor?: string | undefined;
|
|
5
|
+
startColor?: string | undefined;
|
|
6
|
+
endColor?: string | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
percent: number;
|
|
9
|
+
lineWidth: number;
|
|
10
|
+
bgColor: string;
|
|
11
|
+
startColor: string;
|
|
12
|
+
endColor: string;
|
|
13
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
14
|
+
percent?: number | undefined;
|
|
15
|
+
lineWidth?: number | undefined;
|
|
16
|
+
bgColor?: string | undefined;
|
|
17
|
+
startColor?: string | undefined;
|
|
18
|
+
endColor?: string | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
percent: number;
|
|
21
|
+
lineWidth: number;
|
|
22
|
+
bgColor: string;
|
|
23
|
+
startColor: string;
|
|
24
|
+
endColor: string;
|
|
25
|
+
}>>>, {
|
|
26
|
+
bgColor: string;
|
|
27
|
+
percent: number;
|
|
28
|
+
lineWidth: number;
|
|
29
|
+
startColor: string;
|
|
30
|
+
endColor: string;
|
|
31
|
+
}, {}>;
|
|
32
|
+
export default _default;
|
|
33
|
+
type __VLS_WithDefaults<P, D> = {
|
|
34
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
35
|
+
default: D[K];
|
|
36
|
+
}> : P[K];
|
|
37
|
+
};
|
|
38
|
+
type __VLS_Prettify<T> = {
|
|
39
|
+
[K in keyof T]: T[K];
|
|
40
|
+
} & {};
|
|
41
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
|
+
type __VLS_TypePropsToOption<T> = {
|
|
43
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
44
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
45
|
+
} : {
|
|
46
|
+
type: import('vue').PropType<T[K]>;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
};
|