@zyzgroup/core-vue 0.0.18 → 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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zyzgroup/core-vue",
3
3
  "private": false,
4
- "version": "0.0.18",
4
+ "version": "0.0.19",
5
5
  "sideEffects": false,
6
6
  "type": "module",
7
7
  "main": "dist/zyzgroup_core_vue.umd.cjs",
@@ -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;
@@ -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;
@@ -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;
@@ -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
  }>;
@@ -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
+ };
package/types/lib.d.ts CHANGED
@@ -6,6 +6,7 @@ import Switch from "./components/Switch.vue";
6
6
  import RadioGroup from "./components/RadioGroup.vue";
7
7
  import CheckboxGroup from "./components/CheckboxGroup.vue";
8
8
  import Input from "./components/Input.vue";
9
+ import InputRange from "./components/InputRange.vue";
9
10
  import SlideLeftItem from "./components/SlideLeftItem.vue";
10
11
  import MouseOver from "./components/MouseOver.vue";
11
12
  import Accordion from "./components/Accordion.vue";
@@ -51,4 +52,5 @@ import Loading7 from "./components/loading/Loading7.vue";
51
52
  import Loading8 from "./components/loading/Loading8.vue";
52
53
  import Loading9 from "./components/loading/Loading9.vue";
53
54
  import Loading10 from "./components/loading/Loading10.vue";
54
- export { Icon, Button, LayoutMobile, LayoutCenter, Loading1, Loading2, Loading3, Loading4, Loading5, Loading6, Loading7, Loading8, Loading9, Loading10, Overlay, Pop, Dialog, DialogLoading, DialogToast, Select, SelectAbsolute, Switch, RadioGroup, CheckboxGroup, Popover, ColorPicker, ResizeObserver, MapTianditu, SVGCheck, PlateMobile, SVGCleanUp, PlateKeyboard, SVGDelete, SlideLeftItem, PlateDisplay, Tab, Tabs, FPSStats, EaseGraphDisplay, EaseGroupGraphDisplay, InterpolationGraphDisplay, InterpolationGroupGraphDisplay, HandWritePanel, ProgressBar, PageVerticalScrollProgressBar, Video, Input, Accordion, SVGAndCanvas, Image, ImageView, MouseOver, SVGDown };
55
+ import Loading11 from "./components/loading/Loading11.vue";
56
+ export { Icon, Button, LayoutMobile, LayoutCenter, Loading1, Loading2, Loading3, Loading4, Loading5, Loading6, Loading7, Loading8, Loading9, Loading10, Loading11, Overlay, Pop, Dialog, DialogLoading, DialogToast, Select, SelectAbsolute, Switch, RadioGroup, CheckboxGroup, Popover, ColorPicker, ResizeObserver, MapTianditu, SVGCheck, PlateMobile, SVGCleanUp, PlateKeyboard, SVGDelete, SlideLeftItem, PlateDisplay, Tab, Tabs, FPSStats, EaseGraphDisplay, EaseGroupGraphDisplay, InterpolationGraphDisplay, InterpolationGroupGraphDisplay, HandWritePanel, ProgressBar, PageVerticalScrollProgressBar, Video, Input, InputRange, Accordion, SVGAndCanvas, Image, ImageView, MouseOver, SVGDown };