inertiax-svelte 10.0.0 → 10.2.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/dist/components/Deferred.svelte +1 -1
- package/dist/components/Deferred.svelte.d.ts +19 -29
- package/dist/components/Frame.svelte +4 -3
- package/dist/components/Frame.svelte.d.ts +25 -34
- package/dist/components/Link.svelte +1 -1
- package/dist/components/Link.svelte.d.ts +53 -62
- package/dist/components/Render.svelte +2 -2
- package/dist/components/Render.svelte.d.ts +19 -21
- package/dist/components/WhenVisible.svelte +1 -1
- package/dist/components/WhenVisible.svelte.d.ts +23 -33
- package/package.json +13 -13
|
@@ -1,31 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
(internal: unknown, props: Props & {
|
|
6
|
-
$$events?: Events;
|
|
7
|
-
$$slots?: Slots;
|
|
8
|
-
}): Exports & {
|
|
9
|
-
$set?: any;
|
|
10
|
-
$on?: any;
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
data: string | string[];
|
|
11
5
|
};
|
|
12
|
-
|
|
6
|
+
events: {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
};
|
|
9
|
+
slots: {
|
|
10
|
+
default: {};
|
|
11
|
+
fallback: {};
|
|
12
|
+
};
|
|
13
|
+
exports?: {} | undefined;
|
|
14
|
+
bindings?: string | undefined;
|
|
15
|
+
};
|
|
16
|
+
export type DeferredProps = typeof __propDef.props;
|
|
17
|
+
export type DeferredEvents = typeof __propDef.events;
|
|
18
|
+
export type DeferredSlots = typeof __propDef.slots;
|
|
19
|
+
export default class Deferred extends SvelteComponent<DeferredProps, DeferredEvents, DeferredSlots> {
|
|
13
20
|
}
|
|
14
|
-
|
|
15
|
-
default: any;
|
|
16
|
-
} ? Props extends Record<string, never> ? any : {
|
|
17
|
-
children?: any;
|
|
18
|
-
} : {});
|
|
19
|
-
declare const Deferred: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
20
|
-
data: string | string[];
|
|
21
|
-
}, {
|
|
22
|
-
default: {};
|
|
23
|
-
fallback: {};
|
|
24
|
-
}>, {
|
|
25
|
-
[evt: string]: CustomEvent<any>;
|
|
26
|
-
}, {
|
|
27
|
-
default: {};
|
|
28
|
-
fallback: {};
|
|
29
|
-
}, {}, string>;
|
|
30
|
-
type Deferred = InstanceType<typeof Deferred>;
|
|
31
|
-
export default Deferred;
|
|
21
|
+
export {};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<script context="module"
|
|
1
|
+
<script context="module">import { shouldIntercept } from "inertiax-core";
|
|
2
2
|
import { BROWSER } from "esm-env";
|
|
3
3
|
let topResolveComponent = null;
|
|
4
4
|
</script>
|
|
5
5
|
|
|
6
|
-
<script
|
|
6
|
+
<script>import { Router } from "inertiax-core";
|
|
7
7
|
import Render, { h } from "./Render.svelte";
|
|
8
8
|
import { onDestroy, setContext } from "svelte";
|
|
9
9
|
import { writable } from "svelte/store";
|
|
@@ -21,9 +21,10 @@ function handleClick(event) {
|
|
|
21
21
|
if (!shouldIntercept(event)) return;
|
|
22
22
|
const href = event.target.closest("[href]")?.getAttribute("href");
|
|
23
23
|
const method = event.target.closest("[data-method]")?.getAttribute("data-method") || "get";
|
|
24
|
+
const frame = event.target.closest("[data-target]")?.getAttribute("data-target");
|
|
24
25
|
if (!href) return;
|
|
25
26
|
event.preventDefault();
|
|
26
|
-
router.visit(href, { method });
|
|
27
|
+
router.visit(href, { method, frame });
|
|
27
28
|
}
|
|
28
29
|
if (name == "_top") topResolveComponent = resolveComponent;
|
|
29
30
|
const { set, subscribe } = writable();
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
1
2
|
import type { ComponentResolver, ResolvedComponent } from '../types';
|
|
2
3
|
import { type Page } from 'inertiax-core';
|
|
3
4
|
export interface InertiaFrameProps {
|
|
@@ -6,39 +7,29 @@ export interface InertiaFrameProps {
|
|
|
6
7
|
resolveComponent: ComponentResolver;
|
|
7
8
|
name?: string;
|
|
8
9
|
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
10
|
+
declare const __propDef: {
|
|
11
|
+
props: {
|
|
12
|
+
[x: string]: any;
|
|
13
|
+
initialComponent: InertiaFrameProps["initialComponent"];
|
|
14
|
+
initialPage: InertiaFrameProps["initialPage"];
|
|
15
|
+
resolveComponent?: InertiaFrameProps["resolveComponent"] | undefined;
|
|
16
|
+
name?: string | undefined;
|
|
17
|
+
renderLayout?: boolean | undefined;
|
|
18
|
+
src: any;
|
|
19
|
+
onclick?: (() => void) | undefined;
|
|
19
20
|
};
|
|
20
|
-
|
|
21
|
+
events: {
|
|
22
|
+
[evt: string]: CustomEvent<any>;
|
|
23
|
+
};
|
|
24
|
+
slots: {
|
|
25
|
+
default: {};
|
|
26
|
+
};
|
|
27
|
+
exports?: undefined;
|
|
28
|
+
bindings?: undefined;
|
|
29
|
+
};
|
|
30
|
+
export type FrameProps = typeof __propDef.props;
|
|
31
|
+
export type FrameEvents = typeof __propDef.events;
|
|
32
|
+
export type FrameSlots = typeof __propDef.slots;
|
|
33
|
+
export default class Frame extends SvelteComponent<FrameProps, FrameEvents, FrameSlots> {
|
|
21
34
|
}
|
|
22
|
-
|
|
23
|
-
default: any;
|
|
24
|
-
} ? Props extends Record<string, never> ? any : {
|
|
25
|
-
children?: any;
|
|
26
|
-
} : {});
|
|
27
|
-
declare const Frame: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
28
|
-
[x: string]: any;
|
|
29
|
-
initialComponent: InertiaFrameProps["initialComponent"];
|
|
30
|
-
initialPage: InertiaFrameProps["initialPage"];
|
|
31
|
-
resolveComponent?: InertiaFrameProps["resolveComponent"] | undefined;
|
|
32
|
-
name?: string | undefined;
|
|
33
|
-
renderLayout?: boolean | undefined;
|
|
34
|
-
src: any;
|
|
35
|
-
onclick?: (() => void) | undefined;
|
|
36
|
-
}, {
|
|
37
|
-
default: {};
|
|
38
|
-
}>, {
|
|
39
|
-
[evt: string]: CustomEvent<any>;
|
|
40
|
-
}, {
|
|
41
|
-
default: {};
|
|
42
|
-
}, {}, string>;
|
|
43
|
-
type Frame = InstanceType<typeof Frame>;
|
|
44
|
-
export default Frame;
|
|
35
|
+
export {};
|
|
@@ -1,65 +1,56 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
1
2
|
import type { CacheForOption, FormDataConvertible, LinkPrefetchOption, Method, PreserveStateOption } from 'inertiax-core';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
href?: string | {
|
|
7
|
+
url: string;
|
|
8
|
+
method: Method;
|
|
9
|
+
} | undefined;
|
|
10
|
+
as?: keyof HTMLElementTagNameMap | undefined;
|
|
11
|
+
data?: Record<string, FormDataConvertible> | undefined;
|
|
12
|
+
method?: Method | undefined;
|
|
13
|
+
replace?: boolean | undefined;
|
|
14
|
+
preserveScroll?: PreserveStateOption | undefined;
|
|
15
|
+
preserveState?: (PreserveStateOption | null) | undefined;
|
|
16
|
+
only?: string[] | undefined;
|
|
17
|
+
except?: string[] | undefined;
|
|
18
|
+
headers?: Record<string, string> | undefined;
|
|
19
|
+
queryStringArrayFormat?: "brackets" | "indices" | undefined;
|
|
20
|
+
async?: boolean | undefined;
|
|
21
|
+
prefetch?: (boolean | LinkPrefetchOption | LinkPrefetchOption[]) | undefined;
|
|
22
|
+
cacheFor?: (CacheForOption | CacheForOption[]) | undefined;
|
|
12
23
|
};
|
|
13
|
-
|
|
24
|
+
events: {
|
|
25
|
+
focus: FocusEvent;
|
|
26
|
+
blur: FocusEvent;
|
|
27
|
+
click: MouseEvent;
|
|
28
|
+
dblclick: MouseEvent;
|
|
29
|
+
mousedown: MouseEvent;
|
|
30
|
+
mousemove: MouseEvent;
|
|
31
|
+
mouseout: MouseEvent;
|
|
32
|
+
mouseover: MouseEvent;
|
|
33
|
+
mouseup: MouseEvent;
|
|
34
|
+
'cancel-token': MouseEvent | UIEvent | Event | FocusEvent | ProgressEvent<EventTarget> | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
|
|
35
|
+
before: MouseEvent | UIEvent | Event | FocusEvent | ProgressEvent<EventTarget> | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
|
|
36
|
+
start: MouseEvent | UIEvent | Event | FocusEvent | ProgressEvent<EventTarget> | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
|
|
37
|
+
progress: ProgressEvent<EventTarget>;
|
|
38
|
+
finish: MouseEvent | UIEvent | Event | FocusEvent | ProgressEvent<EventTarget> | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
|
|
39
|
+
cancel: Event;
|
|
40
|
+
success: MouseEvent | UIEvent | Event | FocusEvent | ProgressEvent<EventTarget> | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
|
|
41
|
+
error: ErrorEvent;
|
|
42
|
+
} & {
|
|
43
|
+
[evt: string]: CustomEvent<any>;
|
|
44
|
+
};
|
|
45
|
+
slots: {
|
|
46
|
+
default: {};
|
|
47
|
+
};
|
|
48
|
+
exports?: undefined;
|
|
49
|
+
bindings?: undefined;
|
|
50
|
+
};
|
|
51
|
+
export type LinkProps = typeof __propDef.props;
|
|
52
|
+
export type LinkEvents = typeof __propDef.events;
|
|
53
|
+
export type LinkSlots = typeof __propDef.slots;
|
|
54
|
+
export default class Link extends SvelteComponent<LinkProps, LinkEvents, LinkSlots> {
|
|
14
55
|
}
|
|
15
|
-
|
|
16
|
-
default: any;
|
|
17
|
-
} ? Props extends Record<string, never> ? any : {
|
|
18
|
-
children?: any;
|
|
19
|
-
} : {});
|
|
20
|
-
declare const Link: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
21
|
-
[x: string]: any;
|
|
22
|
-
href?: string | {
|
|
23
|
-
url: string;
|
|
24
|
-
method: Method;
|
|
25
|
-
} | undefined;
|
|
26
|
-
as?: keyof HTMLElementTagNameMap | undefined;
|
|
27
|
-
data?: Record<string, FormDataConvertible> | undefined;
|
|
28
|
-
method?: Method | undefined;
|
|
29
|
-
replace?: boolean | undefined;
|
|
30
|
-
preserveScroll?: PreserveStateOption | undefined;
|
|
31
|
-
preserveState?: (PreserveStateOption | null) | undefined;
|
|
32
|
-
only?: string[] | undefined;
|
|
33
|
-
except?: string[] | undefined;
|
|
34
|
-
headers?: Record<string, string> | undefined;
|
|
35
|
-
queryStringArrayFormat?: "brackets" | "indices" | undefined;
|
|
36
|
-
async?: boolean | undefined;
|
|
37
|
-
prefetch?: (boolean | LinkPrefetchOption | LinkPrefetchOption[]) | undefined;
|
|
38
|
-
cacheFor?: (CacheForOption | CacheForOption[]) | undefined;
|
|
39
|
-
}, {
|
|
40
|
-
default: {};
|
|
41
|
-
}>, {
|
|
42
|
-
focus: FocusEvent;
|
|
43
|
-
blur: FocusEvent;
|
|
44
|
-
click: MouseEvent;
|
|
45
|
-
dblclick: MouseEvent;
|
|
46
|
-
mousedown: MouseEvent;
|
|
47
|
-
mousemove: MouseEvent;
|
|
48
|
-
mouseout: MouseEvent;
|
|
49
|
-
mouseover: MouseEvent;
|
|
50
|
-
mouseup: MouseEvent;
|
|
51
|
-
'cancel-token': MouseEvent | UIEvent | Event | FocusEvent | ProgressEvent<EventTarget> | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
|
|
52
|
-
before: MouseEvent | UIEvent | Event | FocusEvent | ProgressEvent<EventTarget> | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
|
|
53
|
-
start: MouseEvent | UIEvent | Event | FocusEvent | ProgressEvent<EventTarget> | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
|
|
54
|
-
progress: ProgressEvent<EventTarget>;
|
|
55
|
-
finish: MouseEvent | UIEvent | Event | FocusEvent | ProgressEvent<EventTarget> | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
|
|
56
|
-
cancel: Event;
|
|
57
|
-
success: MouseEvent | UIEvent | Event | FocusEvent | ProgressEvent<EventTarget> | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | KeyboardEvent | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
|
|
58
|
-
error: ErrorEvent;
|
|
59
|
-
} & {
|
|
60
|
-
[evt: string]: CustomEvent<any>;
|
|
61
|
-
}, {
|
|
62
|
-
default: {};
|
|
63
|
-
}, {}, string>;
|
|
64
|
-
type Link = InstanceType<typeof Link>;
|
|
65
|
-
export default Link;
|
|
56
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<script context="module"
|
|
1
|
+
<script context="module">export const h = (component, propsOrChildren, childrenOrKey, key = null) => {
|
|
2
2
|
const hasProps = typeof propsOrChildren === "object" && propsOrChildren !== null && !Array.isArray(propsOrChildren);
|
|
3
3
|
return {
|
|
4
4
|
component,
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
};
|
|
10
10
|
</script>
|
|
11
11
|
|
|
12
|
-
<script
|
|
12
|
+
<script>export let component;
|
|
13
13
|
export let props = {};
|
|
14
14
|
export let children = [];
|
|
15
15
|
export let key = null;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
1
2
|
import type { PageProps } from 'inertiax-core';
|
|
2
3
|
import type { ComponentType } from 'svelte';
|
|
3
4
|
export type RenderProps = {
|
|
@@ -11,26 +12,23 @@ export type RenderFunction = {
|
|
|
11
12
|
(component: ComponentType, children?: RenderProps[], key?: number | null): RenderProps;
|
|
12
13
|
};
|
|
13
14
|
export declare const h: RenderFunction;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
$$slots?: Slots;
|
|
21
|
-
}): Exports & {
|
|
22
|
-
$set?: any;
|
|
23
|
-
$on?: any;
|
|
15
|
+
declare const __propDef: {
|
|
16
|
+
props: {
|
|
17
|
+
component: ComponentType;
|
|
18
|
+
props?: PageProps;
|
|
19
|
+
children?: RenderProps[];
|
|
20
|
+
key?: number | null;
|
|
24
21
|
};
|
|
25
|
-
|
|
22
|
+
events: {
|
|
23
|
+
[evt: string]: CustomEvent<any>;
|
|
24
|
+
};
|
|
25
|
+
slots: {};
|
|
26
|
+
exports?: {} | undefined;
|
|
27
|
+
bindings?: string | undefined;
|
|
28
|
+
};
|
|
29
|
+
type RenderProps_ = typeof __propDef.props;
|
|
30
|
+
export type RenderEvents = typeof __propDef.events;
|
|
31
|
+
export type RenderSlots = typeof __propDef.slots;
|
|
32
|
+
export default class Render extends SvelteComponent<RenderProps_, RenderEvents, RenderSlots> {
|
|
26
33
|
}
|
|
27
|
-
|
|
28
|
-
component: ComponentType;
|
|
29
|
-
props?: PageProps;
|
|
30
|
-
children?: RenderProps[];
|
|
31
|
-
key?: number | null;
|
|
32
|
-
}, {
|
|
33
|
-
[evt: string]: CustomEvent<any>;
|
|
34
|
-
}, {}, {}, string>;
|
|
35
|
-
type Render = InstanceType<typeof Render>;
|
|
36
|
-
export default Render;
|
|
34
|
+
export {};
|
|
@@ -1,36 +1,26 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
1
2
|
import { type ReloadOptions } from 'inertiax-core';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}): Exports & {
|
|
10
|
-
$set?: any;
|
|
11
|
-
$on?: any;
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
data?: string | string[];
|
|
6
|
+
params?: ReloadOptions;
|
|
7
|
+
buffer?: number;
|
|
8
|
+
as?: keyof HTMLElementTagNameMap;
|
|
9
|
+
always?: boolean;
|
|
12
10
|
};
|
|
13
|
-
|
|
11
|
+
events: {
|
|
12
|
+
[evt: string]: CustomEvent<any>;
|
|
13
|
+
};
|
|
14
|
+
slots: {
|
|
15
|
+
default: {};
|
|
16
|
+
fallback: {};
|
|
17
|
+
};
|
|
18
|
+
exports?: {} | undefined;
|
|
19
|
+
bindings?: string | undefined;
|
|
20
|
+
};
|
|
21
|
+
export type WhenVisibleProps = typeof __propDef.props;
|
|
22
|
+
export type WhenVisibleEvents = typeof __propDef.events;
|
|
23
|
+
export type WhenVisibleSlots = typeof __propDef.slots;
|
|
24
|
+
export default class WhenVisible extends SvelteComponent<WhenVisibleProps, WhenVisibleEvents, WhenVisibleSlots> {
|
|
14
25
|
}
|
|
15
|
-
|
|
16
|
-
default: any;
|
|
17
|
-
} ? Props extends Record<string, never> ? any : {
|
|
18
|
-
children?: any;
|
|
19
|
-
} : {});
|
|
20
|
-
declare const WhenVisible: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
21
|
-
data?: string | string[];
|
|
22
|
-
params?: ReloadOptions;
|
|
23
|
-
buffer?: number;
|
|
24
|
-
as?: keyof HTMLElementTagNameMap;
|
|
25
|
-
always?: boolean;
|
|
26
|
-
}, {
|
|
27
|
-
default: {};
|
|
28
|
-
fallback: {};
|
|
29
|
-
}>, {
|
|
30
|
-
[evt: string]: CustomEvent<any>;
|
|
31
|
-
}, {
|
|
32
|
-
default: {};
|
|
33
|
-
fallback: {};
|
|
34
|
-
}, {}, string>;
|
|
35
|
-
type WhenVisible = InstanceType<typeof WhenVisible>;
|
|
36
|
-
export default WhenVisible;
|
|
26
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inertiax-svelte",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "The Svelte adapter for Inertia X",
|
|
6
6
|
"contributors": [
|
|
@@ -44,23 +44,23 @@
|
|
|
44
44
|
"svelte": "^5.0.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"inertiax-core": "^10.
|
|
48
|
-
"es-toolkit": "^1.
|
|
47
|
+
"inertiax-core": "^10.2.0",
|
|
48
|
+
"es-toolkit": "^1.39.5",
|
|
49
49
|
"html-escape": "^2.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@sveltejs/adapter-auto": "^3.
|
|
53
|
-
"@sveltejs/kit": "^2.
|
|
54
|
-
"@sveltejs/package": "^2.3.
|
|
52
|
+
"@sveltejs/adapter-auto": "^3.3.1",
|
|
53
|
+
"@sveltejs/kit": "^2.22.2",
|
|
54
|
+
"@sveltejs/package": "^2.3.12",
|
|
55
55
|
"@sveltejs/vite-plugin-svelte": "^3.1.2",
|
|
56
56
|
"@types/html-escape": "^2.0.2",
|
|
57
|
-
"axios": "^1.
|
|
58
|
-
"publint": "^0.2.
|
|
59
|
-
"svelte": "^5.
|
|
60
|
-
"svelte-check": "^4.
|
|
61
|
-
"tslib": "^2.
|
|
62
|
-
"typescript": "^5.
|
|
63
|
-
"vite": "^5.4.
|
|
57
|
+
"axios": "^1.10.0",
|
|
58
|
+
"publint": "^0.2.12",
|
|
59
|
+
"svelte": "^5.34.9",
|
|
60
|
+
"svelte-check": "^4.2.2",
|
|
61
|
+
"tslib": "^2.8.1",
|
|
62
|
+
"typescript": "^5.8.3",
|
|
63
|
+
"vite": "^5.4.19"
|
|
64
64
|
},
|
|
65
65
|
"svelte": "./dist/index.js",
|
|
66
66
|
"types": "./dist/index.d.ts",
|