@functionalcms/svelte-components 2.1.24 → 2.1.25
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.
|
@@ -17,16 +17,6 @@
|
|
|
17
17
|
}
|
|
18
18
|
</style>
|
|
19
19
|
|
|
20
|
-
<svelte:head>
|
|
21
|
-
<script data-goatcounter="https://tracking.functional-cms.com/count" async src="//gc.zgo.at/count.js"></script>
|
|
22
|
-
<noscript>
|
|
23
|
-
<img src="https://tracking.functional-cms.com/count?p=/{$page.url.pathname}}">
|
|
24
|
-
</noscript>
|
|
25
|
-
</svelte:head>
|
|
26
|
-
|
|
27
|
-
<script>import { page } from "$app/navigation";
|
|
28
|
-
</script>
|
|
29
|
-
|
|
30
20
|
<div>
|
|
31
21
|
{#if $$slots.header}
|
|
32
22
|
<header>
|
|
@@ -1,6 +1,25 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} LayoutProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} LayoutEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} LayoutSlots */
|
|
4
|
+
export default class Layout extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {
|
|
9
|
+
header: {};
|
|
10
|
+
default: {};
|
|
11
|
+
footer: {};
|
|
12
|
+
sticky_footer: {};
|
|
13
|
+
}> {
|
|
14
|
+
}
|
|
15
|
+
export type LayoutProps = typeof __propDef.props;
|
|
16
|
+
export type LayoutEvents = typeof __propDef.events;
|
|
17
|
+
export type LayoutSlots = typeof __propDef.slots;
|
|
1
18
|
import { SvelteComponent } from "svelte";
|
|
2
19
|
declare const __propDef: {
|
|
3
|
-
props:
|
|
20
|
+
props: {
|
|
21
|
+
[x: string]: never;
|
|
22
|
+
};
|
|
4
23
|
events: {
|
|
5
24
|
[evt: string]: CustomEvent<any>;
|
|
6
25
|
};
|
|
@@ -11,9 +30,4 @@ declare const __propDef: {
|
|
|
11
30
|
sticky_footer: {};
|
|
12
31
|
};
|
|
13
32
|
};
|
|
14
|
-
export type LayoutProps = typeof __propDef.props;
|
|
15
|
-
export type LayoutEvents = typeof __propDef.events;
|
|
16
|
-
export type LayoutSlots = typeof __propDef.slots;
|
|
17
|
-
export default class Layout extends SvelteComponent<LayoutProps, LayoutEvents, LayoutSlots> {
|
|
18
|
-
}
|
|
19
33
|
export {};
|