@inertiajs/vue3 2.3.0 → 2.3.2
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/dist/index.esm.js +13 -11
- package/dist/index.esm.js.map +2 -2
- package/dist/index.js +13 -11
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
- package/types/index.d.ts +1 -1
- package/types/whenVisible.d.ts +7 -2
package/types/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export { default as Head } from './head';
|
|
|
7
7
|
export { default as InfiniteScroll } from './infiniteScroll';
|
|
8
8
|
export { InertiaLinkProps, default as Link } from './link';
|
|
9
9
|
export * from './types';
|
|
10
|
-
export { InertiaForm, InertiaFormProps, default as useForm } from './useForm';
|
|
10
|
+
export { InertiaForm, InertiaFormProps, InertiaPrecognitiveForm, default as useForm } from './useForm';
|
|
11
11
|
export { default as usePoll } from './usePoll';
|
|
12
12
|
export { default as usePrefetch } from './usePrefetch';
|
|
13
13
|
export { default as useRemember } from './useRemember';
|
package/types/whenVisible.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReloadOptions } from '@inertiajs/core';
|
|
2
|
-
import { PropType } from 'vue';
|
|
2
|
+
import { PropType, SlotsType } from 'vue';
|
|
3
3
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
4
|
data: {
|
|
5
5
|
type: (StringConstructor | {
|
|
@@ -77,5 +77,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
77
77
|
buffer: number;
|
|
78
78
|
as: string;
|
|
79
79
|
always: boolean;
|
|
80
|
-
}, {
|
|
80
|
+
}, SlotsType<{
|
|
81
|
+
default: {
|
|
82
|
+
fetching: boolean;
|
|
83
|
+
};
|
|
84
|
+
fallback: {};
|
|
85
|
+
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
81
86
|
export default _default;
|