🔧 npm update

This commit is contained in:
2025-04-15 20:50:11 +02:00
parent ce5b9ac0c8
commit 94a90edabd
828 changed files with 256807 additions and 197099 deletions

0
node_modules/@inertiajs/vue3/LICENSE generated vendored Normal file → Executable file
View File

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
node_modules/@inertiajs/vue3/package.json generated vendored Normal file → Executable file
View File

@@ -1,6 +1,6 @@
{
"name": "@inertiajs/vue3",
"version": "1.0.14",
"version": "1.3.0",
"license": "MIT",
"description": "The Vue 3 adapter for Inertia.js",
"contributors": [
@@ -56,7 +56,7 @@
"vue": "^3.0.0"
},
"dependencies": {
"@inertiajs/core": "1.0.14",
"@inertiajs/core": "1.3.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0"
}

0
node_modules/@inertiajs/vue3/readme.md generated vendored Normal file → Executable file
View File

View File

@@ -1,5 +1,5 @@
import { Page } from '@inertiajs/core';
import { App as VueApp, DefineComponent, Plugin } from 'vue';
import { DefineComponent, Plugin, App as VueApp } from 'vue';
import { InertiaApp, InertiaAppProps } from './app';
interface CreateInertiaAppProps {
id?: string;

View File

@@ -2,7 +2,7 @@ export { router } from '@inertiajs/core';
export { usePage } from './app';
export { default as createInertiaApp } from './createInertiaApp';
export { default as Head } from './head';
export { default as Link, InertiaLinkProps } from './link';
export { InertiaLinkProps, default as Link } from './link';
export * from './types';
export { default as useForm, InertiaForm } from './useForm';
export { InertiaForm, InertiaFormProps, default as useForm } from './useForm';
export { default as useRemember } from './useRemember';

View File

@@ -11,6 +11,7 @@ export interface InertiaLinkProps {
preserveState?: boolean | ((props: PageProps) => boolean) | null;
replace?: boolean;
only?: string[];
except?: string[];
onCancelToken?: (cancelToken: import('axios').CancelTokenSource) => void;
onBefore?: () => void;
onStart?: () => void;

View File

@@ -9,7 +9,7 @@ declare module '@inertiajs/core' {
form: typeof useForm;
}
}
declare module '@vue/runtime-core' {
declare module 'vue' {
interface ComponentCustomProperties {
$inertia: typeof router;
$page: Page;

View File

@@ -1,6 +1,6 @@
import { FormDataConvertible, Method, Progress, VisitOptions } from '@inertiajs/core';
type FormDataType = object;
interface InertiaFormProps<TForm extends FormDataType> {
export interface InertiaFormProps<TForm extends FormDataType> {
isDirty: boolean;
errors: Partial<Record<keyof TForm, string>>;
hasErrors: boolean;