chore: regenerate package-lock.json

This commit is contained in:
Fabio Di Stasio 2023-10-28 18:47:06 +02:00
parent 581ec6a25d
commit 3c2e2be40f
2 changed files with 12125 additions and 112 deletions

12047
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -4,109 +4,109 @@ declare module '@/App.vue';
declare module 'v-mask'; declare module 'v-mask';
declare module 'json2php'; declare module 'json2php';
declare module 'vuedraggable' {// <- to export as default declare module 'vuedraggable' {// <- to export as default
const draggableComponent: import('vue').DefineComponent<{ const draggableComponent: import('vue').DefineComponent<{
list: { list: {
type: ArrayConstructor; type: ArrayConstructor;
required: boolean; required: boolean;
default: any; default: any;
}; };
modelValue: { modelValue: {
type: ArrayConstructor; type: ArrayConstructor;
required: boolean; required: boolean;
default: any; default: any;
}; };
itemKey: { itemKey: {
type: (FunctionConstructor | StringConstructor)[]; type: (FunctionConstructor | StringConstructor)[];
required: boolean; required: boolean;
}; };
clone: { clone: {
type: FunctionConstructor; type: FunctionConstructor;
default: (original: any) => any; default: (original: any) => any;
}; };
tag: { tag: {
type: StringConstructor; type: StringConstructor;
default: string; default: string;
}; };
move: { move: {
type: FunctionConstructor; type: FunctionConstructor;
default: any; default: any;
}; };
componentData: { componentData: {
type: ObjectConstructor; type: ObjectConstructor;
required: boolean; required: boolean;
default: any; default: any;
}; };
}, unknown, { }, unknown, {
error: boolean; error: boolean;
}, { }, {
realList(): any; realList(): any;
getKey(): any; getKey(): any;
}, { }, {
getUnderlyingVm(domElement: any): any; getUnderlyingVm(domElement: any): any;
getUnderlyingPotencialDraggableComponent(htmElement: any): any; getUnderlyingPotencialDraggableComponent(htmElement: any): any;
emitChanges(evt: any): void; emitChanges(evt: any): void;
alterList(onList: any): void; alterList(onList: any): void;
spliceList(): void; spliceList(): void;
updatePosition(oldIndex: any, newIndex: any): void; updatePosition(oldIndex: any, newIndex: any): void;
getRelatedContextFromMoveEvent({ to, related }: { getRelatedContextFromMoveEvent({ to, related }: {
to: any; to: any;
related: any; related: any;
}): any; }): any;
getVmIndexFromDomIndex(domIndex: any): any; getVmIndexFromDomIndex(domIndex: any): any;
onDragStart(evt: any): void; onDragStart(evt: any): void;
onDragAdd(evt: any): void; onDragAdd(evt: any): void;
onDragRemove(evt: any): void; onDragRemove(evt: any): void;
onDragUpdate(evt: any): void; onDragUpdate(evt: any): void;
computeFutureIndex(relatedContext: any, evt: any): any; computeFutureIndex(relatedContext: any, evt: any): any;
onDragMove(evt: any, originalEvent: any): any; onDragMove(evt: any, originalEvent: any): any;
onDragEnd(): void; onDragEnd(): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any[], any, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<{ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any[], any, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<{
move: Function; move: Function;
tag: string; tag: string;
clone: Function; clone: Function;
list: unknown[]; list: unknown[];
modelValue: unknown[]; modelValue: unknown[];
componentData: Record<string, any>; componentData: Record<string, any>;
} & { } & {
itemKey?: string | Function; itemKey?: string | Function;
}>, { }>, {
move: Function; move: Function;
tag: string; tag: string;
clone: Function; clone: Function;
list: unknown[]; list: unknown[];
modelValue: unknown[]; modelValue: unknown[];
componentData: Record<string, any>; componentData: Record<string, any>;
}>; }>;
export = draggableComponent; export = draggableComponent;
} }
declare const SvgIcon: import('vue').DefineComponent<{ declare const SvgIcon: import('vue').DefineComponent<{
type: { type: {
type: StringConstructor; type: StringConstructor;
default: string; default: string;
}; };
path: { path: {
type: StringConstructor; type: StringConstructor;
default: string; default: string;
}; };
size: { size: {
type: NumberConstructor; type: NumberConstructor;
optional: boolean; optional: boolean;
}; };
viewbox: { viewbox: {
type: StringConstructor; type: StringConstructor;
optional: boolean; optional: boolean;
}; };
flip: { flip: {
type: StringConstructor; type: StringConstructor;
optional: boolean; optional: boolean;
}; };
rotate: { rotate: {
type: NumberConstructor; type: NumberConstructor;
optional: boolean; optional: boolean;
}; };
}>; }>;
declare module '@jamescoyle/vue-icon' { declare module '@jamescoyle/vue-icon' {
export default SvgIcon; export default SvgIcon;
} }