@noction/vue-bezier 1.10.0 → 1.12.0
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/LICENSE +21 -0
- package/dist/style.css +1 -1
- package/dist/types/components/Collapse/CollapseTransition.vue.d.ts +17 -14
- package/dist/types/components/Fade/FadeTransition.vue.d.ts +16 -14
- package/dist/types/components/Scale/ScaleTransition.vue.d.ts +16 -14
- package/dist/types/components/Slide/SlideXLeftTransition.vue.d.ts +16 -14
- package/dist/types/components/Slide/SlideXRightTransition.vue.d.ts +16 -14
- package/dist/types/components/Slide/SlideYDownTransition.vue.d.ts +16 -14
- package/dist/types/components/Slide/SlideYUpTransition.vue.d.ts +16 -14
- package/dist/types/components/Zoom/ZoomCenterTransition.vue.d.ts +16 -14
- package/dist/types/components/Zoom/ZoomUpTransition.vue.d.ts +16 -14
- package/dist/types/components/Zoom/ZoomXTransition.vue.d.ts +16 -14
- package/dist/types/components/Zoom/ZoomYTransition.vue.d.ts +16 -14
- package/dist/vue-bezier.js +184 -198
- package/dist/web-types.json +8 -8
- package/package.json +24 -22
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019-PRESENT Noction<sales@noction.com>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.collapse-move{transition:transform .3s ease-in-out}@keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.fade-
|
|
1
|
+
.noc-collapse-move{transition:transform .3s ease-in-out}@keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.noc-fade-enter-active{animation-name:fade-in}.noc-fade-leave-active{animation-name:fade-out}.noc-fade-move{transition:transform .35s ease-out}@keyframes scale-in{0%{opacity:0;transform:scale(0)}to{opacity:1}}@keyframes scale-out{0%{opacity:1}to{opacity:0;transform:scale(0)}}.noc-scale-enter-active{animation-name:scale-in}.noc-scale-leave-active{animation-name:scale-out}.noc-scale-move{transition:transform .3s cubic-bezier(.25,.8,.5,1)}@keyframes slide-x-left-in{0%{opacity:0;transform:translate(-15px)}to{opacity:1}}@keyframes slide-x-left-out{0%{opacity:1}to{opacity:0;transform:translate(-15px)}}.noc-slide-left-enter-active{animation-name:slide-x-left-in}.noc-slide-left-leave-active{animation-name:slide-x-left-out}.noc-slide-left-move{transition:transform .3s ease-out}@keyframes slide-x-right-in{0%{opacity:0;transform:translate(15px)}to{opacity:1}}@keyframes slide-x-right-out{0%{opacity:1}to{opacity:0;transform:translate(15px)}}.noc-slide-right-enter-active{animation-name:slide-x-right-in}.noc-slide-right-leave-active{animation-name:slide-x-right-out}.noc-slide-right-move{transition:transform .3s ease-out}@keyframes slide-y-down-in{0%{opacity:0;transform:translateY(15px)}to{opacity:1}}@keyframes slide-y-down-out{0%{opacity:1}to{opacity:0;transform:translateY(15px)}}.noc-slide-down-enter-active{animation-name:slide-y-down-in}.noc-slide-down-leave-active{animation-name:slide-y-down-out}.noc-slide-down-move{transition:transform .3s ease-out}@keyframes slide-y-in{0%{opacity:0;transform:translateY(-15px)}to{opacity:1}}@keyframes slide-y-out{0%{opacity:1}to{opacity:0;transform:translateY(-15px)}}.noc-slide-up-enter-active{animation-name:slide-y-in}.noc-slide-up-leave-active{animation-name:slide-y-out}.noc-slide-up-move{transition:transform .3s ease-out}@keyframes zoom-in{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoom-out{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.noc-zoom-enter-active{animation-name:zoom-in}.noc-zoom-leave-active{animation-name:zoom-out}.noc-zoom-move{transition:transform .3s ease-out}@keyframes zoom-in-up{0%{opacity:0;transform:scaleY(0);transform-origin:top center}50%{opacity:1}to{transform:scaleY(1)}}@keyframes zoom-out-up{0%{opacity:1}50%{transform:scaleY(0)}to{opacity:0}}.noc-zoom-up-enter-active{animation-name:zoom-in-up}.noc-zoom-up-leave-active{animation-name:zoom-out-up}.noc-zoom-up-move{transition:transform .3s ease-out}@keyframes zoom-in-x{0%{opacity:0;transform:scaleX(0)}50%{opacity:1}}@keyframes zoom-out-x{0%{opacity:1}50%{opacity:0;transform:scaleX(0)}to{opacity:0}}.noc-zoom-x-enter-active{animation-name:zoom-in-x}.noc-zoom-x-leave-active{animation-name:zoom-out-x}.noc-zoom-x-move{transition:transform .3s ease-out}@keyframes zoom-in-y{0%{opacity:0;transform:scaleY(0)}50%{opacity:1;transform:scaleY(1)}}@keyframes zoom-out-y{0%{opacity:1}50%{opacity:0;transform:scaleY(0)}to{opacity:0}}.noc-zoom-y-enter-active{animation-name:zoom-in-y}.noc-zoom-y-leave-active{animation-name:zoom-out-y}.noc-zoom-y-move{transition:transform .3s ease-out}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { ComponentProps } from '@/types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
3
6
|
delay: number;
|
|
4
7
|
duration: number;
|
|
5
8
|
group: boolean;
|
|
@@ -15,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
"after-leave": (el: import("vue").RendererElement) => void;
|
|
16
19
|
"before-enter": (el: import("vue").RendererElement) => void;
|
|
17
20
|
"before-leave": (el: import("vue").RendererElement) => void;
|
|
18
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
19
22
|
delay: number;
|
|
20
23
|
duration: number;
|
|
21
24
|
group: boolean;
|
|
@@ -38,19 +41,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
origin: string;
|
|
39
42
|
styles: Partial<CSSStyleDeclaration>;
|
|
40
43
|
tag: string;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
|
-
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
47
|
+
|
|
54
48
|
type __VLS_WithDefaults<P, D> = {
|
|
55
49
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
50
|
default: D[K];
|
|
@@ -64,3 +58,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
58
|
$slots: S;
|
|
65
59
|
};
|
|
66
60
|
};
|
|
61
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
62
|
+
type __VLS_TypePropsToOption<T> = {
|
|
63
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
64
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
65
|
+
} : {
|
|
66
|
+
type: import('vue').PropType<T[K]>;
|
|
67
|
+
required: true;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { ComponentProps } from '@/types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
3
6
|
delay: number;
|
|
4
7
|
duration: number;
|
|
5
8
|
group: boolean;
|
|
@@ -15,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
"after-leave": (el: import("vue").RendererElement) => void;
|
|
16
19
|
"before-enter": (el: import("vue").RendererElement) => void;
|
|
17
20
|
"before-leave": (el: import("vue").RendererElement) => void;
|
|
18
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
19
22
|
delay: number;
|
|
20
23
|
duration: number;
|
|
21
24
|
group: boolean;
|
|
@@ -38,19 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
origin: string;
|
|
39
42
|
styles: Partial<CSSStyleDeclaration>;
|
|
40
43
|
tag: string;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
47
|
type __VLS_WithDefaults<P, D> = {
|
|
55
48
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
49
|
default: D[K];
|
|
@@ -64,3 +57,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
57
|
$slots: S;
|
|
65
58
|
};
|
|
66
59
|
};
|
|
60
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
61
|
+
type __VLS_TypePropsToOption<T> = {
|
|
62
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
63
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
64
|
+
} : {
|
|
65
|
+
type: import('vue').PropType<T[K]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { ComponentProps } from '@/types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
3
6
|
delay: number;
|
|
4
7
|
duration: number;
|
|
5
8
|
group: boolean;
|
|
@@ -15,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
"after-leave": (el: import("vue").RendererElement) => void;
|
|
16
19
|
"before-enter": (el: import("vue").RendererElement) => void;
|
|
17
20
|
"before-leave": (el: import("vue").RendererElement) => void;
|
|
18
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
19
22
|
delay: number;
|
|
20
23
|
duration: number;
|
|
21
24
|
group: boolean;
|
|
@@ -38,19 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
origin: string;
|
|
39
42
|
styles: Partial<CSSStyleDeclaration>;
|
|
40
43
|
tag: string;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
47
|
type __VLS_WithDefaults<P, D> = {
|
|
55
48
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
49
|
default: D[K];
|
|
@@ -64,3 +57,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
57
|
$slots: S;
|
|
65
58
|
};
|
|
66
59
|
};
|
|
60
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
61
|
+
type __VLS_TypePropsToOption<T> = {
|
|
62
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
63
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
64
|
+
} : {
|
|
65
|
+
type: import('vue').PropType<T[K]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { ComponentProps } from '@/types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
3
6
|
delay: number;
|
|
4
7
|
duration: number;
|
|
5
8
|
group: boolean;
|
|
@@ -15,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
"after-leave": (el: import("vue").RendererElement) => void;
|
|
16
19
|
"before-enter": (el: import("vue").RendererElement) => void;
|
|
17
20
|
"before-leave": (el: import("vue").RendererElement) => void;
|
|
18
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
19
22
|
delay: number;
|
|
20
23
|
duration: number;
|
|
21
24
|
group: boolean;
|
|
@@ -38,19 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
origin: string;
|
|
39
42
|
styles: Partial<CSSStyleDeclaration>;
|
|
40
43
|
tag: string;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
47
|
type __VLS_WithDefaults<P, D> = {
|
|
55
48
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
49
|
default: D[K];
|
|
@@ -64,3 +57,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
57
|
$slots: S;
|
|
65
58
|
};
|
|
66
59
|
};
|
|
60
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
61
|
+
type __VLS_TypePropsToOption<T> = {
|
|
62
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
63
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
64
|
+
} : {
|
|
65
|
+
type: import('vue').PropType<T[K]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { ComponentProps } from '@/types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
3
6
|
delay: number;
|
|
4
7
|
duration: number;
|
|
5
8
|
group: boolean;
|
|
@@ -15,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
"after-leave": (el: import("vue").RendererElement) => void;
|
|
16
19
|
"before-enter": (el: import("vue").RendererElement) => void;
|
|
17
20
|
"before-leave": (el: import("vue").RendererElement) => void;
|
|
18
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
19
22
|
delay: number;
|
|
20
23
|
duration: number;
|
|
21
24
|
group: boolean;
|
|
@@ -38,19 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
origin: string;
|
|
39
42
|
styles: Partial<CSSStyleDeclaration>;
|
|
40
43
|
tag: string;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
47
|
type __VLS_WithDefaults<P, D> = {
|
|
55
48
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
49
|
default: D[K];
|
|
@@ -64,3 +57,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
57
|
$slots: S;
|
|
65
58
|
};
|
|
66
59
|
};
|
|
60
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
61
|
+
type __VLS_TypePropsToOption<T> = {
|
|
62
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
63
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
64
|
+
} : {
|
|
65
|
+
type: import('vue').PropType<T[K]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { ComponentProps } from '@/types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
3
6
|
delay: number;
|
|
4
7
|
duration: number;
|
|
5
8
|
group: boolean;
|
|
@@ -15,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
"after-leave": (el: import("vue").RendererElement) => void;
|
|
16
19
|
"before-enter": (el: import("vue").RendererElement) => void;
|
|
17
20
|
"before-leave": (el: import("vue").RendererElement) => void;
|
|
18
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
19
22
|
delay: number;
|
|
20
23
|
duration: number;
|
|
21
24
|
group: boolean;
|
|
@@ -38,19 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
origin: string;
|
|
39
42
|
styles: Partial<CSSStyleDeclaration>;
|
|
40
43
|
tag: string;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
47
|
type __VLS_WithDefaults<P, D> = {
|
|
55
48
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
49
|
default: D[K];
|
|
@@ -64,3 +57,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
57
|
$slots: S;
|
|
65
58
|
};
|
|
66
59
|
};
|
|
60
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
61
|
+
type __VLS_TypePropsToOption<T> = {
|
|
62
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
63
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
64
|
+
} : {
|
|
65
|
+
type: import('vue').PropType<T[K]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { ComponentProps } from '@/types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
3
6
|
delay: number;
|
|
4
7
|
duration: number;
|
|
5
8
|
group: boolean;
|
|
@@ -15,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
"after-leave": (el: import("vue").RendererElement) => void;
|
|
16
19
|
"before-enter": (el: import("vue").RendererElement) => void;
|
|
17
20
|
"before-leave": (el: import("vue").RendererElement) => void;
|
|
18
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
19
22
|
delay: number;
|
|
20
23
|
duration: number;
|
|
21
24
|
group: boolean;
|
|
@@ -38,19 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
origin: string;
|
|
39
42
|
styles: Partial<CSSStyleDeclaration>;
|
|
40
43
|
tag: string;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
47
|
type __VLS_WithDefaults<P, D> = {
|
|
55
48
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
49
|
default: D[K];
|
|
@@ -64,3 +57,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
57
|
$slots: S;
|
|
65
58
|
};
|
|
66
59
|
};
|
|
60
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
61
|
+
type __VLS_TypePropsToOption<T> = {
|
|
62
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
63
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
64
|
+
} : {
|
|
65
|
+
type: import('vue').PropType<T[K]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { ComponentProps } from '@/types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
3
6
|
delay: number;
|
|
4
7
|
duration: number;
|
|
5
8
|
group: boolean;
|
|
@@ -15,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
"after-leave": (el: import("vue").RendererElement) => void;
|
|
16
19
|
"before-enter": (el: import("vue").RendererElement) => void;
|
|
17
20
|
"before-leave": (el: import("vue").RendererElement) => void;
|
|
18
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
19
22
|
delay: number;
|
|
20
23
|
duration: number;
|
|
21
24
|
group: boolean;
|
|
@@ -38,19 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
origin: string;
|
|
39
42
|
styles: Partial<CSSStyleDeclaration>;
|
|
40
43
|
tag: string;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
47
|
type __VLS_WithDefaults<P, D> = {
|
|
55
48
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
49
|
default: D[K];
|
|
@@ -64,3 +57,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
57
|
$slots: S;
|
|
65
58
|
};
|
|
66
59
|
};
|
|
60
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
61
|
+
type __VLS_TypePropsToOption<T> = {
|
|
62
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
63
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
64
|
+
} : {
|
|
65
|
+
type: import('vue').PropType<T[K]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { ComponentProps } from '@/types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
3
6
|
delay: number;
|
|
4
7
|
duration: number;
|
|
5
8
|
group: boolean;
|
|
@@ -15,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
"after-leave": (el: import("vue").RendererElement) => void;
|
|
16
19
|
"before-enter": (el: import("vue").RendererElement) => void;
|
|
17
20
|
"before-leave": (el: import("vue").RendererElement) => void;
|
|
18
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
19
22
|
delay: number;
|
|
20
23
|
duration: number;
|
|
21
24
|
group: boolean;
|
|
@@ -38,19 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
origin: string;
|
|
39
42
|
styles: Partial<CSSStyleDeclaration>;
|
|
40
43
|
tag: string;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
47
|
type __VLS_WithDefaults<P, D> = {
|
|
55
48
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
49
|
default: D[K];
|
|
@@ -64,3 +57,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
57
|
$slots: S;
|
|
65
58
|
};
|
|
66
59
|
};
|
|
60
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
61
|
+
type __VLS_TypePropsToOption<T> = {
|
|
62
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
63
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
64
|
+
} : {
|
|
65
|
+
type: import('vue').PropType<T[K]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { ComponentProps } from '@/types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
3
6
|
delay: number;
|
|
4
7
|
duration: number;
|
|
5
8
|
group: boolean;
|
|
@@ -15,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
"after-leave": (el: import("vue").RendererElement) => void;
|
|
16
19
|
"before-enter": (el: import("vue").RendererElement) => void;
|
|
17
20
|
"before-leave": (el: import("vue").RendererElement) => void;
|
|
18
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
19
22
|
delay: number;
|
|
20
23
|
duration: number;
|
|
21
24
|
group: boolean;
|
|
@@ -38,19 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
origin: string;
|
|
39
42
|
styles: Partial<CSSStyleDeclaration>;
|
|
40
43
|
tag: string;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
47
|
type __VLS_WithDefaults<P, D> = {
|
|
55
48
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
49
|
default: D[K];
|
|
@@ -64,3 +57,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
57
|
$slots: S;
|
|
65
58
|
};
|
|
66
59
|
};
|
|
60
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
61
|
+
type __VLS_TypePropsToOption<T> = {
|
|
62
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
63
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
64
|
+
} : {
|
|
65
|
+
type: import('vue').PropType<T[K]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import type { ComponentProps } from '@/types';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
3
6
|
delay: number;
|
|
4
7
|
duration: number;
|
|
5
8
|
group: boolean;
|
|
@@ -15,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
"after-leave": (el: import("vue").RendererElement) => void;
|
|
16
19
|
"before-enter": (el: import("vue").RendererElement) => void;
|
|
17
20
|
"before-leave": (el: import("vue").RendererElement) => void;
|
|
18
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<ComponentProps>, {
|
|
19
22
|
delay: number;
|
|
20
23
|
duration: number;
|
|
21
24
|
group: boolean;
|
|
@@ -38,19 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
origin: string;
|
|
39
42
|
styles: Partial<CSSStyleDeclaration>;
|
|
40
43
|
tag: string;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
47
|
type __VLS_WithDefaults<P, D> = {
|
|
55
48
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
49
|
default: D[K];
|
|
@@ -64,3 +57,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
57
|
$slots: S;
|
|
65
58
|
};
|
|
66
59
|
};
|
|
60
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
61
|
+
type __VLS_TypePropsToOption<T> = {
|
|
62
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
63
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
64
|
+
} : {
|
|
65
|
+
type: import('vue').PropType<T[K]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
};
|