@zyzgroup/core-vue 0.0.12 → 0.0.13
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 +53 -37
- package/ce/yz_custom_element.iife.js.map +1 -1
- package/ce/yz_custom_element.js +15468 -7392
- package/ce/yz_custom_element.js.map +1 -1
- package/ce/yz_custom_element.umd.cjs +53 -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 +13014 -5148
- 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/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/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/lib.d.ts +7 -1
|
@@ -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
|
}, {}>, {
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
2
|
gap?: number | undefined;
|
|
3
|
+
isGlobal?: boolean | undefined;
|
|
3
4
|
}>, {
|
|
4
5
|
gap: number;
|
|
6
|
+
isGlobal: boolean;
|
|
5
7
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
6
8
|
gap?: number | undefined;
|
|
9
|
+
isGlobal?: boolean | undefined;
|
|
7
10
|
}>, {
|
|
8
11
|
gap: number;
|
|
12
|
+
isGlobal: boolean;
|
|
9
13
|
}>>>, {
|
|
14
|
+
isGlobal: boolean;
|
|
10
15
|
gap: number;
|
|
11
16
|
}, {}>, {
|
|
12
17
|
button?(_: {}): any;
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
2
|
gap?: number | undefined;
|
|
3
|
+
isGlobal?: boolean | undefined;
|
|
3
4
|
}>, {
|
|
4
5
|
gap: number;
|
|
6
|
+
isGlobal: boolean;
|
|
5
7
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
6
8
|
gap?: number | undefined;
|
|
9
|
+
isGlobal?: boolean | undefined;
|
|
7
10
|
}>, {
|
|
8
11
|
gap: number;
|
|
12
|
+
isGlobal: boolean;
|
|
9
13
|
}>>>, {
|
|
14
|
+
isGlobal: boolean;
|
|
10
15
|
gap: number;
|
|
11
16
|
}, {}>, {
|
|
12
17
|
button?(_: {}): any;
|
package/types/lib.d.ts
CHANGED
|
@@ -22,4 +22,10 @@ import SlideLeftItem from "./components/SlideLeftItem.vue";
|
|
|
22
22
|
import PlateDisplay from "./components/PlateDisplay.vue";
|
|
23
23
|
import Tab from "./components/Tab.vue";
|
|
24
24
|
import Tabs from "./components/Tabs.vue";
|
|
25
|
-
|
|
25
|
+
import FPSStats from "./components/FPSStats.vue";
|
|
26
|
+
import EaseGraphDisplay from "./components/EaseGraphDisplay.vue";
|
|
27
|
+
import EaseGroupGraphDisplay from "./components/EaseGroupGraphDisplay.vue";
|
|
28
|
+
import InterpolationGraphDisplay from "./components/InterpolationGraphDisplay.vue";
|
|
29
|
+
import InterpolationGroupGraphDisplay from "./components/InterpolationGroupGraphDisplay.vue";
|
|
30
|
+
import HandWritePanel from "./components/HandWritePanel.vue";
|
|
31
|
+
export { Icon, Button, MobileLayout, Overlay, Pop, Dialog, DialogLoading, Select, Switch, RadioGroup, CheckboxGroup, Popover, ColorPicker, ResizeObserver, MapTianditu, SVGCheck, PlateMobile, SVGCleanUp, PlateKeyboard, SVGDelete, SlideLeftItem, PlateDisplay, Tab, Tabs, FPSStats, EaseGraphDisplay, EaseGroupGraphDisplay, InterpolationGraphDisplay, InterpolationGroupGraphDisplay, HandWritePanel };
|