Skip to content

Commit a63cb30

Browse files
Build
1 parent 36c2ef2 commit a63cb30

15 files changed

+1316
-0
lines changed

dist/plugin/VResizeDrawer.vue.d.ts

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
import { Props } from '../types';
2+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
3+
absolute?: boolean | undefined;
4+
expandOnHover?: boolean | undefined;
5+
floating?: boolean | undefined;
6+
handleBorderWidth?: string | number | undefined;
7+
handleColor?: string | undefined;
8+
handleIcon?: string | undefined;
9+
handleIconSize?: string | undefined;
10+
handlePosition?: import('../types').HandlePositions | undefined;
11+
height?: string | number | undefined;
12+
location?: import('../types').DrawerLocations;
13+
maxWidth?: string | number | undefined;
14+
minWidth?: string | number | undefined;
15+
modelValue?: boolean | null | undefined;
16+
name?: string | undefined;
17+
rail?: boolean | null | undefined;
18+
railWidth?: string | number | undefined;
19+
resizable?: boolean | undefined;
20+
saveWidth?: boolean | undefined;
21+
storageName?: string | undefined;
22+
storageType?: import('../types').StorageType | undefined;
23+
tag?: string | undefined;
24+
temporary?: boolean | undefined;
25+
touchless?: boolean | undefined;
26+
theme?: string | undefined;
27+
width?: string | number | undefined;
28+
widthSnapBack?: boolean | undefined;
29+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
30+
"handle:click": (...args: any[]) => void;
31+
"handle:dblclick": (...args: any[]) => void;
32+
"handle:drag": (...args: any[]) => void;
33+
"handle:mousedown": (...args: any[]) => void;
34+
"handle:mouseup": (...args: any[]) => void;
35+
"handle:touchend": (...args: any[]) => void;
36+
"handle:touchmove": (...args: any[]) => void;
37+
"handle:touchstart": (...args: any[]) => void;
38+
close: (...args: any[]) => void;
39+
"drawer:mouseenter": (...args: any[]) => void;
40+
"drawer:mouseleave": (...args: any[]) => void;
41+
"update:modelValue": (...args: any[]) => void;
42+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
43+
absolute?: boolean | undefined;
44+
expandOnHover?: boolean | undefined;
45+
floating?: boolean | undefined;
46+
handleBorderWidth?: string | number | undefined;
47+
handleColor?: string | undefined;
48+
handleIcon?: string | undefined;
49+
handleIconSize?: string | undefined;
50+
handlePosition?: import('../types').HandlePositions | undefined;
51+
height?: string | number | undefined;
52+
location?: import('../types').DrawerLocations;
53+
maxWidth?: string | number | undefined;
54+
minWidth?: string | number | undefined;
55+
modelValue?: boolean | null | undefined;
56+
name?: string | undefined;
57+
rail?: boolean | null | undefined;
58+
railWidth?: string | number | undefined;
59+
resizable?: boolean | undefined;
60+
saveWidth?: boolean | undefined;
61+
storageName?: string | undefined;
62+
storageType?: import('../types').StorageType | undefined;
63+
tag?: string | undefined;
64+
temporary?: boolean | undefined;
65+
touchless?: boolean | undefined;
66+
theme?: string | undefined;
67+
width?: string | number | undefined;
68+
widthSnapBack?: boolean | undefined;
69+
}>>> & {
70+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
71+
"onHandle:click"?: ((...args: any[]) => any) | undefined;
72+
"onHandle:dblclick"?: ((...args: any[]) => any) | undefined;
73+
"onHandle:drag"?: ((...args: any[]) => any) | undefined;
74+
"onHandle:mousedown"?: ((...args: any[]) => any) | undefined;
75+
"onHandle:mouseup"?: ((...args: any[]) => any) | undefined;
76+
"onHandle:touchend"?: ((...args: any[]) => any) | undefined;
77+
"onHandle:touchmove"?: ((...args: any[]) => any) | undefined;
78+
"onHandle:touchstart"?: ((...args: any[]) => any) | undefined;
79+
onClose?: ((...args: any[]) => any) | undefined;
80+
"onDrawer:mouseenter"?: ((...args: any[]) => any) | undefined;
81+
"onDrawer:mouseleave"?: ((...args: any[]) => any) | undefined;
82+
}, {
83+
theme: string;
84+
tag: string;
85+
name: string;
86+
absolute: boolean;
87+
expandOnHover: boolean;
88+
floating: boolean;
89+
modelValue: boolean | null;
90+
rail: boolean | null;
91+
railWidth: string | number;
92+
temporary: boolean;
93+
touchless: boolean;
94+
width: string | number;
95+
location: "end" | "start" | "left" | "right";
96+
storageName: string;
97+
saveWidth: boolean;
98+
handlePosition: import('../types').HandlePositions;
99+
maxWidth: string | number;
100+
minWidth: string | number;
101+
widthSnapBack: boolean;
102+
handleBorderWidth: string | number;
103+
handleColor: string;
104+
handleIconSize: string;
105+
storageType: import('../types').StorageType;
106+
height: string | number;
107+
handleIcon: string;
108+
resizable: boolean;
109+
}, {}>, {
110+
handle?(_: {}): any;
111+
prepend?(_: {}): any;
112+
default?(_: {}): any;
113+
append?(_: {}): any;
114+
}>;
115+
export default _default;
116+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
117+
type __VLS_TypePropsToRuntimeProps<T> = {
118+
[K in keyof T]-?: {} extends Pick<T, K> ? {
119+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
120+
} : {
121+
type: import('vue').PropType<T[K]>;
122+
required: true;
123+
};
124+
};
125+
type __VLS_WithDefaults<P, D> = {
126+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
127+
default: D[K];
128+
}> : P[K];
129+
};
130+
type __VLS_Prettify<T> = {
131+
[K in keyof T]: T[K];
132+
} & {};
133+
type __VLS_WithTemplateSlots<T, S> = T & {
134+
new (): {
135+
$slots: S;
136+
};
137+
};

dist/plugin/composables/classes.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { UseDrawerClasses, UseHandleContainerClasses, UseHandleIconClasses } from '../../types';
2+
export declare const useDrawerClasses: UseDrawerClasses;
3+
export declare const useHandleContainerClasses: UseHandleContainerClasses;
4+
export declare const useHandleIconClasses: UseHandleIconClasses;

dist/plugin/composables/colors.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { ThemeInstance } from 'vuetify';
2+
/**
3+
* Converts single color
4+
*/
5+
export declare const useGetColor: (color: string, theme: ThemeInstance) => string;

dist/plugin/composables/helpers.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { UseConvertToUnit } from '../../types';
2+
export declare const useConvertToUnit: UseConvertToUnit;
3+
export declare const useConvertToNumber: (val: string | number) => number;

dist/plugin/composables/icons.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import { UseGetIcon } from '../../types';
2+
export declare const useGetIcon: UseGetIcon;

dist/plugin/composables/storage.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { UseSetStorage } from '../../types';
2+
export declare function useGetStorage(storageType: string, storageName: string): string | null;
3+
export declare const useSetStorage: UseSetStorage;

dist/plugin/composables/styles.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { UseDrawerStyles, UseHandleContainerStyles, UseHandleIconStyles } from '../../types';
2+
export declare const useDrawerStyles: UseDrawerStyles;
3+
export declare const useHandleContainerStyles: UseHandleContainerStyles;
4+
export declare const useHandleIconStyles: UseHandleIconStyles;

dist/plugin/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as VResizeDrawer } from '../plugin/VResizeDrawer.vue';

dist/plugin/utils/globals.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
declare const defaultWidth = 256;
2+
declare const componentName = "v-resize-drawer";
3+
export { defaultWidth, componentName };

dist/plugin/utils/props.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import { Props } from '../../types';
2+
export declare const AllProps: Props;

0 commit comments

Comments
 (0)