@zyzgroup/core-vue 0.0.17 → 0.0.19
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 +110 -89
- package/ce/yz_custom_element.iife.js.map +1 -1
- package/ce/yz_custom_element.js +12337 -10693
- package/ce/yz_custom_element.js.map +1 -1
- package/ce/yz_custom_element.umd.cjs +110 -89
- package/ce/yz_custom_element.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/dist/zyzgroup_core_vue.iife.js +50 -35
- package/dist/zyzgroup_core_vue.iife.js.map +1 -1
- package/dist/zyzgroup_core_vue.js +12490 -10977
- package/dist/zyzgroup_core_vue.js.map +1 -1
- package/dist/zyzgroup_core_vue.umd.cjs +50 -35
- package/dist/zyzgroup_core_vue.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/types/components/Button.ce.vue.d.ts +3 -1
- package/types/components/Button.vue.d.ts +3 -1
- package/types/components/Canvas.ce.vue.d.ts +1 -3
- package/types/components/Canvas.vue.d.ts +1 -3
- package/types/components/CheckboxGroup.ce.vue.d.ts +21 -6
- package/types/components/CheckboxGroup.vue.d.ts +21 -6
- package/types/components/InputRange.ce.vue.d.ts +58 -0
- package/types/components/InputRange.vue.d.ts +58 -0
- package/types/components/MouseOver.ce.vue.d.ts +3 -3
- package/types/components/MouseOver.vue.d.ts +3 -3
- package/types/components/RadioGroup.ce.vue.d.ts +24 -9
- package/types/components/RadioGroup.vue.d.ts +24 -9
- package/types/components/SVGAndCanvas.ce.vue.d.ts +34 -1
- package/types/components/SVGAndCanvas.vue.d.ts +34 -1
- package/types/components/loading/Loading11.ce.vue.d.ts +34 -0
- package/types/components/loading/Loading11.vue.d.ts +34 -0
- package/types/lib.d.ts +3 -4
package/package.json
CHANGED
|
@@ -11,6 +11,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
11
11
|
borderColor?: string | undefined;
|
|
12
12
|
bgColor?: string | undefined;
|
|
13
13
|
fontColor?: string | undefined;
|
|
14
|
+
asyncClick?: (() => Promise<void>) | undefined;
|
|
14
15
|
}>, {
|
|
15
16
|
iconPosition: string;
|
|
16
17
|
isDisabled: boolean;
|
|
@@ -20,7 +21,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
20
21
|
borderRadius: string;
|
|
21
22
|
stylePattern: string;
|
|
22
23
|
}>, {
|
|
23
|
-
|
|
24
|
+
el: import("vue").Ref<HTMLElement | undefined>;
|
|
24
25
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
26
|
ceClick: () => void;
|
|
26
27
|
click: () => void;
|
|
@@ -37,6 +38,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
37
38
|
borderColor?: string | undefined;
|
|
38
39
|
bgColor?: string | undefined;
|
|
39
40
|
fontColor?: string | undefined;
|
|
41
|
+
asyncClick?: (() => Promise<void>) | undefined;
|
|
40
42
|
}>, {
|
|
41
43
|
iconPosition: string;
|
|
42
44
|
isDisabled: boolean;
|
|
@@ -11,6 +11,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
11
11
|
borderColor?: string | undefined;
|
|
12
12
|
bgColor?: string | undefined;
|
|
13
13
|
fontColor?: string | undefined;
|
|
14
|
+
asyncClick?: (() => Promise<void>) | undefined;
|
|
14
15
|
}>, {
|
|
15
16
|
iconPosition: string;
|
|
16
17
|
isDisabled: boolean;
|
|
@@ -20,7 +21,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
20
21
|
borderRadius: string;
|
|
21
22
|
stylePattern: string;
|
|
22
23
|
}>, {
|
|
23
|
-
|
|
24
|
+
el: import("vue").Ref<HTMLElement | undefined>;
|
|
24
25
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
26
|
ceClick: () => void;
|
|
26
27
|
click: () => void;
|
|
@@ -37,6 +38,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
37
38
|
borderColor?: string | undefined;
|
|
38
39
|
bgColor?: string | undefined;
|
|
39
40
|
fontColor?: string | undefined;
|
|
41
|
+
asyncClick?: (() => Promise<void>) | undefined;
|
|
40
42
|
}>, {
|
|
41
43
|
iconPosition: string;
|
|
42
44
|
isDisabled: boolean;
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Canvas } from "@zyzgroup/core-web";
|
|
2
2
|
declare function getCanvas(): Promise<Canvas>;
|
|
3
|
-
declare function draw(cb: (app: DOMEventBus) => void): void;
|
|
4
3
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
5
4
|
bgColor?: string | undefined;
|
|
6
5
|
}>, {
|
|
7
6
|
bgColor: string;
|
|
8
7
|
}>, {
|
|
9
|
-
draw: typeof draw;
|
|
10
8
|
getCanvasElement: () => any;
|
|
11
9
|
getCanvas: typeof getCanvas;
|
|
12
10
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Canvas } from "@zyzgroup/core-web";
|
|
2
2
|
declare function getCanvas(): Promise<Canvas>;
|
|
3
|
-
declare function draw(cb: (app: DOMEventBus) => void): void;
|
|
4
3
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
5
4
|
bgColor?: string | undefined;
|
|
6
5
|
}>, {
|
|
7
6
|
bgColor: string;
|
|
8
7
|
}>, {
|
|
9
|
-
draw: typeof draw;
|
|
10
8
|
getCanvasElement: () => any;
|
|
11
9
|
getCanvas: typeof getCanvas;
|
|
12
10
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
declare const _default: <T extends string>(__VLS_props: {
|
|
2
2
|
onChange?: ((values: T[]) => any) | undefined;
|
|
3
3
|
options: T[];
|
|
4
|
+
disabledIndexs?: number[] | undefined;
|
|
4
5
|
initIndexs?: number[] | undefined;
|
|
5
6
|
isRounded?: boolean | undefined;
|
|
6
|
-
isFullfilled?: boolean | undefined;
|
|
7
|
-
colorPath?: string | undefined;
|
|
8
7
|
colorBg?: string | undefined;
|
|
8
|
+
colorBgSelected?: string | undefined;
|
|
9
|
+
colorBgDisabled?: string | undefined;
|
|
9
10
|
colorBorder?: string | undefined;
|
|
11
|
+
colorBorderSelected?: string | undefined;
|
|
12
|
+
colorBorderDisabled?: string | undefined;
|
|
13
|
+
colorPath?: string | undefined;
|
|
14
|
+
colorPathDisabled?: string | undefined;
|
|
10
15
|
fontSize?: string | undefined;
|
|
11
16
|
itemWidth?: string | undefined;
|
|
12
17
|
itemPadding?: string | undefined;
|
|
@@ -24,12 +29,17 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
24
29
|
props: {
|
|
25
30
|
onChange?: ((values: T[]) => any) | undefined;
|
|
26
31
|
options: T[];
|
|
32
|
+
disabledIndexs?: number[] | undefined;
|
|
27
33
|
initIndexs?: number[] | undefined;
|
|
28
34
|
isRounded?: boolean | undefined;
|
|
29
|
-
isFullfilled?: boolean | undefined;
|
|
30
|
-
colorPath?: string | undefined;
|
|
31
35
|
colorBg?: string | undefined;
|
|
36
|
+
colorBgSelected?: string | undefined;
|
|
37
|
+
colorBgDisabled?: string | undefined;
|
|
32
38
|
colorBorder?: string | undefined;
|
|
39
|
+
colorBorderSelected?: string | undefined;
|
|
40
|
+
colorBorderDisabled?: string | undefined;
|
|
41
|
+
colorPath?: string | undefined;
|
|
42
|
+
colorPathDisabled?: string | undefined;
|
|
33
43
|
fontSize?: string | undefined;
|
|
34
44
|
itemWidth?: string | undefined;
|
|
35
45
|
itemPadding?: string | undefined;
|
|
@@ -51,12 +61,17 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
51
61
|
props: {
|
|
52
62
|
onChange?: ((values: T[]) => any) | undefined;
|
|
53
63
|
options: T[];
|
|
64
|
+
disabledIndexs?: number[] | undefined;
|
|
54
65
|
initIndexs?: number[] | undefined;
|
|
55
66
|
isRounded?: boolean | undefined;
|
|
56
|
-
isFullfilled?: boolean | undefined;
|
|
57
|
-
colorPath?: string | undefined;
|
|
58
67
|
colorBg?: string | undefined;
|
|
68
|
+
colorBgSelected?: string | undefined;
|
|
69
|
+
colorBgDisabled?: string | undefined;
|
|
59
70
|
colorBorder?: string | undefined;
|
|
71
|
+
colorBorderSelected?: string | undefined;
|
|
72
|
+
colorBorderDisabled?: string | undefined;
|
|
73
|
+
colorPath?: string | undefined;
|
|
74
|
+
colorPathDisabled?: string | undefined;
|
|
60
75
|
fontSize?: string | undefined;
|
|
61
76
|
itemWidth?: string | undefined;
|
|
62
77
|
itemPadding?: string | undefined;
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
declare const _default: <T extends string>(__VLS_props: {
|
|
2
2
|
onChange?: ((values: T[]) => any) | undefined;
|
|
3
3
|
options: T[];
|
|
4
|
+
disabledIndexs?: number[] | undefined;
|
|
4
5
|
initIndexs?: number[] | undefined;
|
|
5
6
|
isRounded?: boolean | undefined;
|
|
6
|
-
isFullfilled?: boolean | undefined;
|
|
7
|
-
colorPath?: string | undefined;
|
|
8
7
|
colorBg?: string | undefined;
|
|
8
|
+
colorBgSelected?: string | undefined;
|
|
9
|
+
colorBgDisabled?: string | undefined;
|
|
9
10
|
colorBorder?: string | undefined;
|
|
11
|
+
colorBorderSelected?: string | undefined;
|
|
12
|
+
colorBorderDisabled?: string | undefined;
|
|
13
|
+
colorPath?: string | undefined;
|
|
14
|
+
colorPathDisabled?: string | undefined;
|
|
10
15
|
fontSize?: string | undefined;
|
|
11
16
|
itemWidth?: string | undefined;
|
|
12
17
|
itemPadding?: string | undefined;
|
|
@@ -24,12 +29,17 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
24
29
|
props: {
|
|
25
30
|
onChange?: ((values: T[]) => any) | undefined;
|
|
26
31
|
options: T[];
|
|
32
|
+
disabledIndexs?: number[] | undefined;
|
|
27
33
|
initIndexs?: number[] | undefined;
|
|
28
34
|
isRounded?: boolean | undefined;
|
|
29
|
-
isFullfilled?: boolean | undefined;
|
|
30
|
-
colorPath?: string | undefined;
|
|
31
35
|
colorBg?: string | undefined;
|
|
36
|
+
colorBgSelected?: string | undefined;
|
|
37
|
+
colorBgDisabled?: string | undefined;
|
|
32
38
|
colorBorder?: string | undefined;
|
|
39
|
+
colorBorderSelected?: string | undefined;
|
|
40
|
+
colorBorderDisabled?: string | undefined;
|
|
41
|
+
colorPath?: string | undefined;
|
|
42
|
+
colorPathDisabled?: string | undefined;
|
|
33
43
|
fontSize?: string | undefined;
|
|
34
44
|
itemWidth?: string | undefined;
|
|
35
45
|
itemPadding?: string | undefined;
|
|
@@ -51,12 +61,17 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
51
61
|
props: {
|
|
52
62
|
onChange?: ((values: T[]) => any) | undefined;
|
|
53
63
|
options: T[];
|
|
64
|
+
disabledIndexs?: number[] | undefined;
|
|
54
65
|
initIndexs?: number[] | undefined;
|
|
55
66
|
isRounded?: boolean | undefined;
|
|
56
|
-
isFullfilled?: boolean | undefined;
|
|
57
|
-
colorPath?: string | undefined;
|
|
58
67
|
colorBg?: string | undefined;
|
|
68
|
+
colorBgSelected?: string | undefined;
|
|
69
|
+
colorBgDisabled?: string | undefined;
|
|
59
70
|
colorBorder?: string | undefined;
|
|
71
|
+
colorBorderSelected?: string | undefined;
|
|
72
|
+
colorBorderDisabled?: string | undefined;
|
|
73
|
+
colorPath?: string | undefined;
|
|
74
|
+
colorPathDisabled?: string | undefined;
|
|
60
75
|
fontSize?: string | undefined;
|
|
61
76
|
itemWidth?: string | undefined;
|
|
62
77
|
itemPadding?: string | undefined;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
max?: number | undefined;
|
|
3
|
+
min?: number | undefined;
|
|
4
|
+
step?: number | undefined;
|
|
5
|
+
defaultValue?: number | undefined;
|
|
6
|
+
autofocus?: boolean | undefined;
|
|
7
|
+
color?: string | undefined;
|
|
8
|
+
}>, {
|
|
9
|
+
max: number;
|
|
10
|
+
min: number;
|
|
11
|
+
step: number;
|
|
12
|
+
defaultValue: number;
|
|
13
|
+
autofocus: boolean;
|
|
14
|
+
color: string;
|
|
15
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
|
+
change: (value: number) => void;
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
18
|
+
max?: number | undefined;
|
|
19
|
+
min?: number | undefined;
|
|
20
|
+
step?: number | undefined;
|
|
21
|
+
defaultValue?: number | undefined;
|
|
22
|
+
autofocus?: boolean | undefined;
|
|
23
|
+
color?: string | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
max: number;
|
|
26
|
+
min: number;
|
|
27
|
+
step: number;
|
|
28
|
+
defaultValue: number;
|
|
29
|
+
autofocus: boolean;
|
|
30
|
+
color: string;
|
|
31
|
+
}>>> & {
|
|
32
|
+
onChange?: ((value: number) => any) | undefined;
|
|
33
|
+
}, {
|
|
34
|
+
color: string;
|
|
35
|
+
step: number;
|
|
36
|
+
max: number;
|
|
37
|
+
min: number;
|
|
38
|
+
defaultValue: number;
|
|
39
|
+
autofocus: boolean;
|
|
40
|
+
}, {}>;
|
|
41
|
+
export default _default;
|
|
42
|
+
type __VLS_WithDefaults<P, D> = {
|
|
43
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
44
|
+
default: D[K];
|
|
45
|
+
}> : P[K];
|
|
46
|
+
};
|
|
47
|
+
type __VLS_Prettify<T> = {
|
|
48
|
+
[K in keyof T]: T[K];
|
|
49
|
+
} & {};
|
|
50
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
51
|
+
type __VLS_TypePropsToOption<T> = {
|
|
52
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
53
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
54
|
+
} : {
|
|
55
|
+
type: import('vue').PropType<T[K]>;
|
|
56
|
+
required: true;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
max?: number | undefined;
|
|
3
|
+
min?: number | undefined;
|
|
4
|
+
step?: number | undefined;
|
|
5
|
+
defaultValue?: number | undefined;
|
|
6
|
+
autofocus?: boolean | undefined;
|
|
7
|
+
color?: string | undefined;
|
|
8
|
+
}>, {
|
|
9
|
+
max: number;
|
|
10
|
+
min: number;
|
|
11
|
+
step: number;
|
|
12
|
+
defaultValue: number;
|
|
13
|
+
autofocus: boolean;
|
|
14
|
+
color: string;
|
|
15
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
|
+
change: (value: number) => void;
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
18
|
+
max?: number | undefined;
|
|
19
|
+
min?: number | undefined;
|
|
20
|
+
step?: number | undefined;
|
|
21
|
+
defaultValue?: number | undefined;
|
|
22
|
+
autofocus?: boolean | undefined;
|
|
23
|
+
color?: string | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
max: number;
|
|
26
|
+
min: number;
|
|
27
|
+
step: number;
|
|
28
|
+
defaultValue: number;
|
|
29
|
+
autofocus: boolean;
|
|
30
|
+
color: string;
|
|
31
|
+
}>>> & {
|
|
32
|
+
onChange?: ((value: number) => any) | undefined;
|
|
33
|
+
}, {
|
|
34
|
+
color: string;
|
|
35
|
+
step: number;
|
|
36
|
+
max: number;
|
|
37
|
+
min: number;
|
|
38
|
+
defaultValue: number;
|
|
39
|
+
autofocus: boolean;
|
|
40
|
+
}, {}>;
|
|
41
|
+
export default _default;
|
|
42
|
+
type __VLS_WithDefaults<P, D> = {
|
|
43
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
44
|
+
default: D[K];
|
|
45
|
+
}> : P[K];
|
|
46
|
+
};
|
|
47
|
+
type __VLS_Prettify<T> = {
|
|
48
|
+
[K in keyof T]: T[K];
|
|
49
|
+
} & {};
|
|
50
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
51
|
+
type __VLS_TypePropsToOption<T> = {
|
|
52
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
53
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
54
|
+
} : {
|
|
55
|
+
type: import('vue').PropType<T[K]>;
|
|
56
|
+
required: true;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
2
|
coverColor?: string | undefined;
|
|
3
3
|
timeGap?: number | undefined;
|
|
4
|
-
coverDirection?: "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3" | undefined;
|
|
4
|
+
coverDirection?: "circle" | "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3" | undefined;
|
|
5
5
|
}>, {
|
|
6
6
|
coverColor: string;
|
|
7
7
|
timeGap: number;
|
|
@@ -12,7 +12,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
13
13
|
coverColor?: string | undefined;
|
|
14
14
|
timeGap?: number | undefined;
|
|
15
|
-
coverDirection?: "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3" | undefined;
|
|
15
|
+
coverDirection?: "circle" | "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3" | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
coverColor: string;
|
|
18
18
|
timeGap: number;
|
|
@@ -23,7 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
23
23
|
}, {
|
|
24
24
|
coverColor: string;
|
|
25
25
|
timeGap: number;
|
|
26
|
-
coverDirection: "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3";
|
|
26
|
+
coverDirection: "circle" | "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3";
|
|
27
27
|
}, {}>, {
|
|
28
28
|
default?(_: {}): any;
|
|
29
29
|
}>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
2
|
coverColor?: string | undefined;
|
|
3
3
|
timeGap?: number | undefined;
|
|
4
|
-
coverDirection?: "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3" | undefined;
|
|
4
|
+
coverDirection?: "circle" | "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3" | undefined;
|
|
5
5
|
}>, {
|
|
6
6
|
coverColor: string;
|
|
7
7
|
timeGap: number;
|
|
@@ -12,7 +12,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
13
13
|
coverColor?: string | undefined;
|
|
14
14
|
timeGap?: number | undefined;
|
|
15
|
-
coverDirection?: "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3" | undefined;
|
|
15
|
+
coverDirection?: "circle" | "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3" | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
coverColor: string;
|
|
18
18
|
timeGap: number;
|
|
@@ -23,7 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
23
23
|
}, {
|
|
24
24
|
coverColor: string;
|
|
25
25
|
timeGap: number;
|
|
26
|
-
coverDirection: "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3";
|
|
26
|
+
coverDirection: "circle" | "center" | "slideDown" | "slideRight" | "slideLeft" | "slideUp" | "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | "animationJelly" | "floatUp" | "underlineRight" | "underlineRightInit" | "underlineCenter" | "lineThrough" | "overlineRight" | "overlineCenter" | "pillars1" | "pillars2" | "pillars3" | "bars1" | "bars2" | "bars3";
|
|
27
27
|
}, {}>, {
|
|
28
28
|
default?(_: {}): any;
|
|
29
29
|
}>;
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
declare const _default: <T extends string>(__VLS_props: {
|
|
2
2
|
onChange?: ((values: T) => any) | undefined;
|
|
3
3
|
options: T[];
|
|
4
|
-
|
|
4
|
+
disabledIndexs?: number[] | undefined;
|
|
5
|
+
initIndex?: number | undefined;
|
|
5
6
|
isRounded?: boolean | undefined;
|
|
6
|
-
isFullfilled?: boolean | undefined;
|
|
7
|
-
colorPath?: string | undefined;
|
|
8
7
|
colorBg?: string | undefined;
|
|
8
|
+
colorBgSelected?: string | undefined;
|
|
9
|
+
colorBgDisabled?: string | undefined;
|
|
9
10
|
colorBorder?: string | undefined;
|
|
11
|
+
colorBorderSelected?: string | undefined;
|
|
12
|
+
colorBorderDisabled?: string | undefined;
|
|
13
|
+
colorPath?: string | undefined;
|
|
14
|
+
colorPathDisabled?: string | undefined;
|
|
10
15
|
fontSize?: string | undefined;
|
|
11
16
|
itemWidth?: string | undefined;
|
|
12
17
|
itemPadding?: string | undefined;
|
|
@@ -24,12 +29,17 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
24
29
|
props: {
|
|
25
30
|
onChange?: ((values: T) => any) | undefined;
|
|
26
31
|
options: T[];
|
|
27
|
-
|
|
32
|
+
disabledIndexs?: number[] | undefined;
|
|
33
|
+
initIndex?: number | undefined;
|
|
28
34
|
isRounded?: boolean | undefined;
|
|
29
|
-
isFullfilled?: boolean | undefined;
|
|
30
|
-
colorPath?: string | undefined;
|
|
31
35
|
colorBg?: string | undefined;
|
|
36
|
+
colorBgSelected?: string | undefined;
|
|
37
|
+
colorBgDisabled?: string | undefined;
|
|
32
38
|
colorBorder?: string | undefined;
|
|
39
|
+
colorBorderSelected?: string | undefined;
|
|
40
|
+
colorBorderDisabled?: string | undefined;
|
|
41
|
+
colorPath?: string | undefined;
|
|
42
|
+
colorPathDisabled?: string | undefined;
|
|
33
43
|
fontSize?: string | undefined;
|
|
34
44
|
itemWidth?: string | undefined;
|
|
35
45
|
itemPadding?: string | undefined;
|
|
@@ -51,12 +61,17 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
51
61
|
props: {
|
|
52
62
|
onChange?: ((values: T) => any) | undefined;
|
|
53
63
|
options: T[];
|
|
54
|
-
|
|
64
|
+
disabledIndexs?: number[] | undefined;
|
|
65
|
+
initIndex?: number | undefined;
|
|
55
66
|
isRounded?: boolean | undefined;
|
|
56
|
-
isFullfilled?: boolean | undefined;
|
|
57
|
-
colorPath?: string | undefined;
|
|
58
67
|
colorBg?: string | undefined;
|
|
68
|
+
colorBgSelected?: string | undefined;
|
|
69
|
+
colorBgDisabled?: string | undefined;
|
|
59
70
|
colorBorder?: string | undefined;
|
|
71
|
+
colorBorderSelected?: string | undefined;
|
|
72
|
+
colorBorderDisabled?: string | undefined;
|
|
73
|
+
colorPath?: string | undefined;
|
|
74
|
+
colorPathDisabled?: string | undefined;
|
|
60
75
|
fontSize?: string | undefined;
|
|
61
76
|
itemWidth?: string | undefined;
|
|
62
77
|
itemPadding?: string | undefined;
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
declare const _default: <T extends string>(__VLS_props: {
|
|
2
2
|
onChange?: ((values: T) => any) | undefined;
|
|
3
3
|
options: T[];
|
|
4
|
-
|
|
4
|
+
disabledIndexs?: number[] | undefined;
|
|
5
|
+
initIndex?: number | undefined;
|
|
5
6
|
isRounded?: boolean | undefined;
|
|
6
|
-
isFullfilled?: boolean | undefined;
|
|
7
|
-
colorPath?: string | undefined;
|
|
8
7
|
colorBg?: string | undefined;
|
|
8
|
+
colorBgSelected?: string | undefined;
|
|
9
|
+
colorBgDisabled?: string | undefined;
|
|
9
10
|
colorBorder?: string | undefined;
|
|
11
|
+
colorBorderSelected?: string | undefined;
|
|
12
|
+
colorBorderDisabled?: string | undefined;
|
|
13
|
+
colorPath?: string | undefined;
|
|
14
|
+
colorPathDisabled?: string | undefined;
|
|
10
15
|
fontSize?: string | undefined;
|
|
11
16
|
itemWidth?: string | undefined;
|
|
12
17
|
itemPadding?: string | undefined;
|
|
@@ -24,12 +29,17 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
24
29
|
props: {
|
|
25
30
|
onChange?: ((values: T) => any) | undefined;
|
|
26
31
|
options: T[];
|
|
27
|
-
|
|
32
|
+
disabledIndexs?: number[] | undefined;
|
|
33
|
+
initIndex?: number | undefined;
|
|
28
34
|
isRounded?: boolean | undefined;
|
|
29
|
-
isFullfilled?: boolean | undefined;
|
|
30
|
-
colorPath?: string | undefined;
|
|
31
35
|
colorBg?: string | undefined;
|
|
36
|
+
colorBgSelected?: string | undefined;
|
|
37
|
+
colorBgDisabled?: string | undefined;
|
|
32
38
|
colorBorder?: string | undefined;
|
|
39
|
+
colorBorderSelected?: string | undefined;
|
|
40
|
+
colorBorderDisabled?: string | undefined;
|
|
41
|
+
colorPath?: string | undefined;
|
|
42
|
+
colorPathDisabled?: string | undefined;
|
|
33
43
|
fontSize?: string | undefined;
|
|
34
44
|
itemWidth?: string | undefined;
|
|
35
45
|
itemPadding?: string | undefined;
|
|
@@ -51,12 +61,17 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
51
61
|
props: {
|
|
52
62
|
onChange?: ((values: T) => any) | undefined;
|
|
53
63
|
options: T[];
|
|
54
|
-
|
|
64
|
+
disabledIndexs?: number[] | undefined;
|
|
65
|
+
initIndex?: number | undefined;
|
|
55
66
|
isRounded?: boolean | undefined;
|
|
56
|
-
isFullfilled?: boolean | undefined;
|
|
57
|
-
colorPath?: string | undefined;
|
|
58
67
|
colorBg?: string | undefined;
|
|
68
|
+
colorBgSelected?: string | undefined;
|
|
69
|
+
colorBgDisabled?: string | undefined;
|
|
59
70
|
colorBorder?: string | undefined;
|
|
71
|
+
colorBorderSelected?: string | undefined;
|
|
72
|
+
colorBorderDisabled?: string | undefined;
|
|
73
|
+
colorPath?: string | undefined;
|
|
74
|
+
colorPathDisabled?: string | undefined;
|
|
60
75
|
fontSize?: string | undefined;
|
|
61
76
|
itemWidth?: string | undefined;
|
|
62
77
|
itemPadding?: string | undefined;
|
|
@@ -1,2 +1,35 @@
|
|
|
1
|
-
|
|
1
|
+
import { type EasingFunction } from "@zyzgroup/core-web";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
|
+
easeName?: string | undefined;
|
|
4
|
+
easeFunction?: EasingFunction | undefined;
|
|
5
|
+
}>, {
|
|
6
|
+
easeName: string;
|
|
7
|
+
easeFunction: (amount: number) => number;
|
|
8
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
9
|
+
easeName?: string | undefined;
|
|
10
|
+
easeFunction?: EasingFunction | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
easeName: string;
|
|
13
|
+
easeFunction: (amount: number) => number;
|
|
14
|
+
}>>>, {
|
|
15
|
+
easeName: string;
|
|
16
|
+
easeFunction: EasingFunction;
|
|
17
|
+
}, {}>;
|
|
2
18
|
export default _default;
|
|
19
|
+
type __VLS_WithDefaults<P, D> = {
|
|
20
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
21
|
+
default: D[K];
|
|
22
|
+
}> : P[K];
|
|
23
|
+
};
|
|
24
|
+
type __VLS_Prettify<T> = {
|
|
25
|
+
[K in keyof T]: T[K];
|
|
26
|
+
} & {};
|
|
27
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
28
|
+
type __VLS_TypePropsToOption<T> = {
|
|
29
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
30
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
31
|
+
} : {
|
|
32
|
+
type: import('vue').PropType<T[K]>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -1,2 +1,35 @@
|
|
|
1
|
-
|
|
1
|
+
import { type EasingFunction } from "@zyzgroup/core-web";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
|
+
easeName?: string | undefined;
|
|
4
|
+
easeFunction?: EasingFunction | undefined;
|
|
5
|
+
}>, {
|
|
6
|
+
easeName: string;
|
|
7
|
+
easeFunction: (amount: number) => number;
|
|
8
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
9
|
+
easeName?: string | undefined;
|
|
10
|
+
easeFunction?: EasingFunction | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
easeName: string;
|
|
13
|
+
easeFunction: (amount: number) => number;
|
|
14
|
+
}>>>, {
|
|
15
|
+
easeName: string;
|
|
16
|
+
easeFunction: EasingFunction;
|
|
17
|
+
}, {}>;
|
|
2
18
|
export default _default;
|
|
19
|
+
type __VLS_WithDefaults<P, D> = {
|
|
20
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
21
|
+
default: D[K];
|
|
22
|
+
}> : P[K];
|
|
23
|
+
};
|
|
24
|
+
type __VLS_Prettify<T> = {
|
|
25
|
+
[K in keyof T]: T[K];
|
|
26
|
+
} & {};
|
|
27
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
28
|
+
type __VLS_TypePropsToOption<T> = {
|
|
29
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
30
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
31
|
+
} : {
|
|
32
|
+
type: import('vue').PropType<T[K]>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
color?: string | undefined;
|
|
3
|
+
width?: string | undefined;
|
|
4
|
+
}>, {
|
|
5
|
+
color: string;
|
|
6
|
+
width: string;
|
|
7
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
8
|
+
color?: string | undefined;
|
|
9
|
+
width?: string | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
color: string;
|
|
12
|
+
width: string;
|
|
13
|
+
}>>>, {
|
|
14
|
+
width: string;
|
|
15
|
+
color: 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
|
+
color?: string | undefined;
|
|
3
|
+
width?: string | undefined;
|
|
4
|
+
}>, {
|
|
5
|
+
color: string;
|
|
6
|
+
width: string;
|
|
7
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
8
|
+
color?: string | undefined;
|
|
9
|
+
width?: string | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
color: string;
|
|
12
|
+
width: string;
|
|
13
|
+
}>>>, {
|
|
14
|
+
width: string;
|
|
15
|
+
color: 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
|
+
};
|