@functionalcms/svelte-components 2.41.8 → 3.0.1
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/Banner.svelte.d.ts +2 -4
- package/dist/components/Link.svelte.d.ts +2 -4
- package/dist/components/Logo.svelte.d.ts +2 -4
- package/dist/components/SimpleFooter.svelte.d.ts +2 -4
- package/dist/components/Spacer.svelte.d.ts +2 -4
- package/dist/components/Well.svelte.d.ts +2 -4
- package/dist/components/agnostic/Alert/Alert.svelte.d.ts +2 -4
- package/dist/components/agnostic/Avatar/Avatar.svelte.d.ts +2 -4
- package/dist/components/agnostic/Avatar/AvatarGroup.svelte.d.ts +2 -4
- package/dist/components/agnostic/Breadcrumb/Breadcrumb.svelte.d.ts +2 -4
- package/dist/components/agnostic/Button/Button.svelte.d.ts +2 -4
- package/dist/components/agnostic/Button/ButtonGroup.svelte.d.ts +2 -4
- package/dist/components/agnostic/Card/Card.svelte.d.ts +2 -4
- package/dist/components/agnostic/ChoiceInput/ChoiceInput.svelte.d.ts +2 -4
- package/dist/components/agnostic/Close/Close.svelte.d.ts +2 -4
- package/dist/components/agnostic/Dialog/Dialog.svelte.d.ts +2 -4
- package/dist/components/agnostic/Dialog/SvelteA11yDialog.svelte.d.ts +2 -4
- package/dist/components/agnostic/Disclose/Disclose.svelte.d.ts +2 -4
- package/dist/components/agnostic/Divider/Divider.svelte.d.ts +2 -4
- package/dist/components/agnostic/Drawer/Drawer.svelte.d.ts +2 -4
- package/dist/components/agnostic/EmptyState/EmptyState.svelte.d.ts +2 -4
- package/dist/components/agnostic/Header/Header.svelte.d.ts +2 -4
- package/dist/components/agnostic/Header/HeaderNav.svelte.d.ts +2 -4
- package/dist/components/agnostic/Header/HeaderNavItem.svelte.d.ts +2 -4
- package/dist/components/agnostic/Icon/Icon.svelte.d.ts +2 -4
- package/dist/components/agnostic/Loader/Loader.svelte.d.ts +2 -4
- package/dist/components/agnostic/Progress/Progress.svelte.d.ts +2 -4
- package/dist/components/agnostic/Spinner/Spinner.svelte.d.ts +2 -4
- package/dist/components/agnostic/Switch/Switch.svelte.d.ts +4 -6
- package/dist/components/agnostic/Table/Table.svelte.d.ts +2 -4
- package/dist/components/agnostic/Table/TableCustomRenderComponent.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tabs/TabButtonCustom.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tabs/Tabs.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tag/Tag.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tag/TagSlots.svelte.d.ts +2 -4
- package/dist/components/agnostic/Toasts/Toasts.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tooltip/Tooltip.svelte.d.ts +2 -4
- package/dist/components/agnostic/Tooltip/TooltipSlots.svelte.d.ts +2 -4
- package/dist/components/blog/BlogDescription.svelte.d.ts +2 -4
- package/dist/components/blog/BlogTitle.svelte.d.ts +2 -4
- package/dist/components/form/DateTimePicker.svelte.d.ts +2 -4
- package/dist/components/form/Input.svelte.d.ts +2 -4
- package/dist/components/form/InputAddonItem.svelte.d.ts +2 -4
- package/dist/components/form/Select.svelte.d.ts +2 -4
- package/dist/components/layouts/DefaultLayout.svelte +1 -17
- package/dist/components/layouts/DefaultLayout.svelte.d.ts +2 -5
- package/dist/components/layouts/Meta.svelte +16 -0
- package/dist/components/layouts/Meta.svelte.d.ts +21 -0
- package/dist/components/layouts/Tracker.svelte +17 -0
- package/dist/components/layouts/Tracker.svelte.d.ts +16 -0
- package/dist/components/layouts/TwoColumnsLayout.svelte.d.ts +2 -4
- package/dist/components/menu/CollapsibleMenu.svelte.d.ts +2 -4
- package/dist/components/menu/DynamicMenu.svelte.d.ts +2 -4
- package/dist/components/menu/HamburgerMenu.svelte.d.ts +2 -4
- package/dist/components/menu/Menu.svelte.d.ts +2 -4
- package/dist/components/menu/MenuItem.svelte.d.ts +2 -4
- package/dist/components/menu/NavigationItems.svelte.d.ts +2 -4
- package/dist/components/presentation/Carusel.svelte.d.ts +2 -4
- package/dist/components/presentation/Gallery.svelte.d.ts +2 -4
- package/dist/components/presentation/ImageCompare.svelte.d.ts +2 -4
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2 -3
- package/package.json +8 -11
- package/dist/stores/meta.d.ts +0 -3
- package/dist/stores/meta.js +0 -3
- package/dist/stores/pages.d.ts +0 -2
- package/dist/stores/pages.js +0 -7
- package/dist/stores/title.d.ts +0 -2
- package/dist/stores/title.js +0 -11
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} TableCustomRenderComponentProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} TableCustomRenderComponentEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} TableCustomRenderComponentSlots */
|
|
4
|
-
export default class TableCustomRenderComponent extends
|
|
4
|
+
export default class TableCustomRenderComponent extends SvelteComponentTyped<{
|
|
5
5
|
cellValue: any;
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
@@ -10,7 +10,7 @@ export default class TableCustomRenderComponent extends SvelteComponent<{
|
|
|
10
10
|
export type TableCustomRenderComponentProps = typeof __propDef.props;
|
|
11
11
|
export type TableCustomRenderComponentEvents = typeof __propDef.events;
|
|
12
12
|
export type TableCustomRenderComponentSlots = typeof __propDef.slots;
|
|
13
|
-
import {
|
|
13
|
+
import { SvelteComponentTyped } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
16
|
cellValue: any;
|
|
@@ -19,7 +19,5 @@ declare const __propDef: {
|
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
20
20
|
};
|
|
21
21
|
slots: {};
|
|
22
|
-
exports?: undefined;
|
|
23
|
-
bindings?: undefined;
|
|
24
22
|
};
|
|
25
23
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
/**
|
|
@@ -22,13 +22,11 @@ declare const __propDef: {
|
|
|
22
22
|
slots: {
|
|
23
23
|
default: {};
|
|
24
24
|
};
|
|
25
|
-
exports?: {} | undefined;
|
|
26
|
-
bindings?: string | undefined;
|
|
27
25
|
};
|
|
28
26
|
export type TabButtonCustomProps = typeof __propDef.props;
|
|
29
27
|
export type TabButtonCustomEvents = typeof __propDef.events;
|
|
30
28
|
export type TabButtonCustomSlots = typeof __propDef.slots;
|
|
31
|
-
export default class TabButtonCustom extends
|
|
29
|
+
export default class TabButtonCustom extends SvelteComponentTyped<TabButtonCustomProps, TabButtonCustomEvents, TabButtonCustomSlots> {
|
|
32
30
|
get focus(): () => any;
|
|
33
31
|
get isDisabled(): () => any;
|
|
34
32
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { Tab, TabSizes } from './api';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -23,12 +23,10 @@ declare const __propDef: {
|
|
|
23
23
|
[evt: string]: CustomEvent<any>;
|
|
24
24
|
};
|
|
25
25
|
slots: {};
|
|
26
|
-
exports?: {} | undefined;
|
|
27
|
-
bindings?: string | undefined;
|
|
28
26
|
};
|
|
29
27
|
export type TabsProps = typeof __propDef.props;
|
|
30
28
|
export type TabsEvents = typeof __propDef.events;
|
|
31
29
|
export type TabsSlots = typeof __propDef.slots;
|
|
32
|
-
export default class Tabs extends
|
|
30
|
+
export default class Tabs extends SvelteComponentTyped<TabsProps, TabsEvents, TabsSlots> {
|
|
33
31
|
}
|
|
34
32
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
isUppercase?: boolean;
|
|
@@ -12,12 +12,10 @@ declare const __propDef: {
|
|
|
12
12
|
slots: {
|
|
13
13
|
default: {};
|
|
14
14
|
};
|
|
15
|
-
exports?: {} | undefined;
|
|
16
|
-
bindings?: string | undefined;
|
|
17
15
|
};
|
|
18
16
|
export type TagProps = typeof __propDef.props;
|
|
19
17
|
export type TagEvents = typeof __propDef.events;
|
|
20
18
|
export type TagSlots = typeof __propDef.slots;
|
|
21
|
-
export default class Tag extends
|
|
19
|
+
export default class Tag extends SvelteComponentTyped<TagProps, TagEvents, TagSlots> {
|
|
22
20
|
}
|
|
23
21
|
export {};
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: Record<string, never>;
|
|
4
4
|
events: {
|
|
5
5
|
[evt: string]: CustomEvent<any>;
|
|
6
6
|
};
|
|
7
7
|
slots: {};
|
|
8
|
-
exports?: {} | undefined;
|
|
9
|
-
bindings?: string | undefined;
|
|
10
8
|
};
|
|
11
9
|
export type TagSlotsProps = typeof __propDef.props;
|
|
12
10
|
export type TagSlotsEvents = typeof __propDef.events;
|
|
13
11
|
export type TagSlotsSlots = typeof __propDef.slots;
|
|
14
|
-
export default class TagSlots extends
|
|
12
|
+
export default class TagSlots extends SvelteComponentTyped<TagSlotsProps, TagSlotsEvents, TagSlotsSlots> {
|
|
15
13
|
}
|
|
16
14
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
portalRootSelector?: string;
|
|
@@ -11,12 +11,10 @@ declare const __propDef: {
|
|
|
11
11
|
slots: {
|
|
12
12
|
default: {};
|
|
13
13
|
};
|
|
14
|
-
exports?: {} | undefined;
|
|
15
|
-
bindings?: string | undefined;
|
|
16
14
|
};
|
|
17
15
|
export type ToastsProps = typeof __propDef.props;
|
|
18
16
|
export type ToastsEvents = typeof __propDef.events;
|
|
19
17
|
export type ToastsSlots = typeof __propDef.slots;
|
|
20
|
-
export default class Toasts extends
|
|
18
|
+
export default class Toasts extends SvelteComponentTyped<ToastsProps, ToastsEvents, ToastsSlots> {
|
|
21
19
|
}
|
|
22
20
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { TooltipPlacement } from './api';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -12,12 +12,10 @@ declare const __propDef: {
|
|
|
12
12
|
default: {};
|
|
13
13
|
content: {};
|
|
14
14
|
};
|
|
15
|
-
exports?: {} | undefined;
|
|
16
|
-
bindings?: string | undefined;
|
|
17
15
|
};
|
|
18
16
|
export type TooltipProps = typeof __propDef.props;
|
|
19
17
|
export type TooltipEvents = typeof __propDef.events;
|
|
20
18
|
export type TooltipSlots = typeof __propDef.slots;
|
|
21
|
-
export default class Tooltip extends
|
|
19
|
+
export default class Tooltip extends SvelteComponentTyped<TooltipProps, TooltipEvents, TooltipSlots> {
|
|
22
20
|
}
|
|
23
21
|
export {};
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: Record<string, never>;
|
|
4
4
|
events: {
|
|
5
5
|
[evt: string]: CustomEvent<any>;
|
|
6
6
|
};
|
|
7
7
|
slots: {};
|
|
8
|
-
exports?: {} | undefined;
|
|
9
|
-
bindings?: string | undefined;
|
|
10
8
|
};
|
|
11
9
|
export type TooltipSlotsProps = typeof __propDef.props;
|
|
12
10
|
export type TooltipSlotsEvents = typeof __propDef.events;
|
|
13
11
|
export type TooltipSlotsSlots = typeof __propDef.slots;
|
|
14
|
-
export default class TooltipSlots extends
|
|
12
|
+
export default class TooltipSlots extends SvelteComponentTyped<TooltipSlotsProps, TooltipSlotsEvents, TooltipSlotsSlots> {
|
|
15
13
|
}
|
|
16
14
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
description: string;
|
|
@@ -10,12 +10,10 @@ declare const __propDef: {
|
|
|
10
10
|
slots: {
|
|
11
11
|
readMore: {};
|
|
12
12
|
};
|
|
13
|
-
exports?: {} | undefined;
|
|
14
|
-
bindings?: string | undefined;
|
|
15
13
|
};
|
|
16
14
|
export type BlogDescriptionProps = typeof __propDef.props;
|
|
17
15
|
export type BlogDescriptionEvents = typeof __propDef.events;
|
|
18
16
|
export type BlogDescriptionSlots = typeof __propDef.slots;
|
|
19
|
-
export default class BlogDescription extends
|
|
17
|
+
export default class BlogDescription extends SvelteComponentTyped<BlogDescriptionProps, BlogDescriptionEvents, BlogDescriptionSlots> {
|
|
20
18
|
}
|
|
21
19
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
slug?: string;
|
|
@@ -10,12 +10,10 @@ declare const __propDef: {
|
|
|
10
10
|
[evt: string]: CustomEvent<any>;
|
|
11
11
|
};
|
|
12
12
|
slots: {};
|
|
13
|
-
exports?: {} | undefined;
|
|
14
|
-
bindings?: string | undefined;
|
|
15
13
|
};
|
|
16
14
|
export type BlogTitleProps = typeof __propDef.props;
|
|
17
15
|
export type BlogTitleEvents = typeof __propDef.events;
|
|
18
16
|
export type BlogTitleSlots = typeof __propDef.slots;
|
|
19
|
-
export default class BlogTitle extends
|
|
17
|
+
export default class BlogTitle extends SvelteComponentTyped<BlogTitleProps, BlogTitleEvents, BlogTitleSlots> {
|
|
20
18
|
}
|
|
21
19
|
export {};
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: Record<string, never>;
|
|
4
4
|
events: {
|
|
5
5
|
[evt: string]: CustomEvent<any>;
|
|
6
6
|
};
|
|
7
7
|
slots: {};
|
|
8
|
-
exports?: {} | undefined;
|
|
9
|
-
bindings?: string | undefined;
|
|
10
8
|
};
|
|
11
9
|
export type DateTimePickerProps = typeof __propDef.props;
|
|
12
10
|
export type DateTimePickerEvents = typeof __propDef.events;
|
|
13
11
|
export type DateTimePickerSlots = typeof __propDef.slots;
|
|
14
|
-
export default class DateTimePicker extends
|
|
12
|
+
export default class DateTimePicker extends SvelteComponentTyped<DateTimePickerProps, DateTimePickerEvents, DateTimePickerSlots> {
|
|
15
13
|
}
|
|
16
14
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
[x: string]: any;
|
|
@@ -34,12 +34,10 @@ declare const __propDef: {
|
|
|
34
34
|
addonLeft: {};
|
|
35
35
|
addonRight: {};
|
|
36
36
|
};
|
|
37
|
-
exports?: undefined;
|
|
38
|
-
bindings?: undefined;
|
|
39
37
|
};
|
|
40
38
|
export type InputProps = typeof __propDef.props;
|
|
41
39
|
export type InputEvents = typeof __propDef.events;
|
|
42
40
|
export type InputSlots = typeof __propDef.slots;
|
|
43
|
-
export default class Input extends
|
|
41
|
+
export default class Input extends SvelteComponentTyped<InputProps, InputEvents, InputSlots> {
|
|
44
42
|
}
|
|
45
43
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} InputAddonItemProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} InputAddonItemEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} InputAddonItemSlots */
|
|
4
|
-
export default class InputAddonItem extends
|
|
4
|
+
export default class InputAddonItem extends SvelteComponentTyped<{
|
|
5
5
|
css?: string | undefined;
|
|
6
6
|
addonLeft?: boolean | undefined;
|
|
7
7
|
addonRight?: boolean | undefined;
|
|
@@ -14,7 +14,7 @@ export default class InputAddonItem extends SvelteComponent<{
|
|
|
14
14
|
export type InputAddonItemProps = typeof __propDef.props;
|
|
15
15
|
export type InputAddonItemEvents = typeof __propDef.events;
|
|
16
16
|
export type InputAddonItemSlots = typeof __propDef.slots;
|
|
17
|
-
import {
|
|
17
|
+
import { SvelteComponentTyped } from "svelte";
|
|
18
18
|
declare const __propDef: {
|
|
19
19
|
props: {
|
|
20
20
|
css?: string | undefined;
|
|
@@ -27,7 +27,5 @@ declare const __propDef: {
|
|
|
27
27
|
slots: {
|
|
28
28
|
default: {};
|
|
29
29
|
};
|
|
30
|
-
exports?: undefined;
|
|
31
|
-
bindings?: undefined;
|
|
32
30
|
};
|
|
33
31
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
uniqueId?: string;
|
|
@@ -21,12 +21,10 @@ declare const __propDef: {
|
|
|
21
21
|
[evt: string]: CustomEvent<any>;
|
|
22
22
|
};
|
|
23
23
|
slots: {};
|
|
24
|
-
exports?: {} | undefined;
|
|
25
|
-
bindings?: string | undefined;
|
|
26
24
|
};
|
|
27
25
|
export type SelectProps = typeof __propDef.props;
|
|
28
26
|
export type SelectEvents = typeof __propDef.events;
|
|
29
27
|
export type SelectSlots = typeof __propDef.slots;
|
|
30
|
-
export default class Select extends
|
|
28
|
+
export default class Select extends SvelteComponentTyped<SelectProps, SelectEvents, SelectSlots> {
|
|
31
29
|
}
|
|
32
30
|
export {};
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
<script>import { page } from "$app/stores";
|
|
2
|
-
import { title, suffix } from "../../stores/title";
|
|
3
|
-
import { metaDescription, metaKeywords } from "../../stores/meta";
|
|
4
|
-
export let robots = "index, follow";
|
|
5
2
|
export let headerIsSticky = false;
|
|
6
3
|
export let tracker = "";
|
|
7
4
|
export let canonicalUrl = "";
|
|
@@ -9,22 +6,9 @@ $: headerCss = headerIsSticky ? "sticky" : "";
|
|
|
9
6
|
</script>
|
|
10
7
|
|
|
11
8
|
<svelte:head>
|
|
12
|
-
<script
|
|
13
|
-
data-goatcounter="https://{tracker}.goatcounter.com/count"
|
|
14
|
-
async
|
|
15
|
-
src="//gc.zgo.at/count.js"
|
|
16
|
-
></script>
|
|
17
9
|
<link rel="canonical" href="{canonicalUrl}{$page.url.pathname}" />
|
|
18
|
-
|
|
19
|
-
<title>{$title}{$suffix}</title>
|
|
20
|
-
<meta name="og:title" property="og:title" content="{$title}{$suffix}" />
|
|
21
|
-
<meta name="twitter:card" content="{$title}{$suffix}" />
|
|
22
|
-
|
|
23
|
-
<meta name="robots" content={robots} />
|
|
24
|
-
<meta name="description" content={$metaDescription} />
|
|
25
|
-
<meta name="keywords" content={$metaKeywords} />
|
|
26
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
27
10
|
</svelte:head>
|
|
11
|
+
|
|
28
12
|
<div id="defaultLayout">
|
|
29
13
|
{#if $$slots.header}
|
|
30
14
|
<header class={headerCss}>
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
|
-
robots?: string;
|
|
5
4
|
headerIsSticky?: boolean;
|
|
6
5
|
tracker?: string;
|
|
7
6
|
canonicalUrl?: string;
|
|
@@ -15,12 +14,10 @@ declare const __propDef: {
|
|
|
15
14
|
footer: {};
|
|
16
15
|
sticky_footer: {};
|
|
17
16
|
};
|
|
18
|
-
exports?: {} | undefined;
|
|
19
|
-
bindings?: string | undefined;
|
|
20
17
|
};
|
|
21
18
|
export type DefaultLayoutProps = typeof __propDef.props;
|
|
22
19
|
export type DefaultLayoutEvents = typeof __propDef.events;
|
|
23
20
|
export type DefaultLayoutSlots = typeof __propDef.slots;
|
|
24
|
-
export default class DefaultLayout extends
|
|
21
|
+
export default class DefaultLayout extends SvelteComponentTyped<DefaultLayoutProps, DefaultLayoutEvents, DefaultLayoutSlots> {
|
|
25
22
|
}
|
|
26
23
|
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>export let title = "";
|
|
2
|
+
export let description = "";
|
|
3
|
+
export let keywords = "";
|
|
4
|
+
export let robots = "index, follow";
|
|
5
|
+
export let charset = "UTF-8";
|
|
6
|
+
export let viewport = "width=device-width, initial-scale=1.0";
|
|
7
|
+
</script>
|
|
8
|
+
|
|
9
|
+
<svelte:head>
|
|
10
|
+
<title>{title}</title>
|
|
11
|
+
<meta name="description" content={description}>
|
|
12
|
+
<meta name="keywords" content={keywords}>
|
|
13
|
+
<meta name="robots" content={robots}>
|
|
14
|
+
<meta name="viewport" content={viewport}>
|
|
15
|
+
<meta charset={charset}>
|
|
16
|
+
</svelte:head>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
title?: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
keywords?: string;
|
|
7
|
+
robots?: string;
|
|
8
|
+
charset?: string;
|
|
9
|
+
viewport?: string;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
[evt: string]: CustomEvent<any>;
|
|
13
|
+
};
|
|
14
|
+
slots: {};
|
|
15
|
+
};
|
|
16
|
+
export type MetaProps = typeof __propDef.props;
|
|
17
|
+
export type MetaEvents = typeof __propDef.events;
|
|
18
|
+
export type MetaSlots = typeof __propDef.slots;
|
|
19
|
+
export default class Meta extends SvelteComponentTyped<MetaProps, MetaEvents, MetaSlots> {
|
|
20
|
+
}
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>export let domain;
|
|
2
|
+
</script>
|
|
3
|
+
|
|
4
|
+
<svelte:head>
|
|
5
|
+
<script
|
|
6
|
+
defer
|
|
7
|
+
data-domain={domain}
|
|
8
|
+
src="https://plausible.io/js/script.file-downloads.outbound-links.js"
|
|
9
|
+
></script>
|
|
10
|
+
<script>
|
|
11
|
+
window.plausible =
|
|
12
|
+
window.plausible ||
|
|
13
|
+
function () {
|
|
14
|
+
(window.plausible.q = window.plausible.q || []).push(arguments);
|
|
15
|
+
};
|
|
16
|
+
</script>
|
|
17
|
+
</svelte:head>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
domain: any;
|
|
5
|
+
};
|
|
6
|
+
events: {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
};
|
|
9
|
+
slots: {};
|
|
10
|
+
};
|
|
11
|
+
export type TrackerProps = typeof __propDef.props;
|
|
12
|
+
export type TrackerEvents = typeof __propDef.events;
|
|
13
|
+
export type TrackerSlots = typeof __propDef.slots;
|
|
14
|
+
export default class Tracker extends SvelteComponentTyped<TrackerProps, TrackerEvents, TrackerSlots> {
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
leftCss?: string;
|
|
@@ -11,12 +11,10 @@ declare const __propDef: {
|
|
|
11
11
|
left: {};
|
|
12
12
|
right: {};
|
|
13
13
|
};
|
|
14
|
-
exports?: {} | undefined;
|
|
15
|
-
bindings?: string | undefined;
|
|
16
14
|
};
|
|
17
15
|
export type TwoColumnsLayoutProps = typeof __propDef.props;
|
|
18
16
|
export type TwoColumnsLayoutEvents = typeof __propDef.events;
|
|
19
17
|
export type TwoColumnsLayoutSlots = typeof __propDef.slots;
|
|
20
|
-
export default class TwoColumnsLayout extends
|
|
18
|
+
export default class TwoColumnsLayout extends SvelteComponentTyped<TwoColumnsLayoutProps, TwoColumnsLayoutEvents, TwoColumnsLayoutSlots> {
|
|
21
19
|
}
|
|
22
20
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import { Orientation, Placement } from '../Styling.js';
|
|
3
3
|
import { HeaderNavigationItem } from './Menu.js';
|
|
4
4
|
declare const __propDef: {
|
|
@@ -18,12 +18,10 @@ declare const __propDef: {
|
|
|
18
18
|
slots: {
|
|
19
19
|
handle: {};
|
|
20
20
|
};
|
|
21
|
-
exports?: {} | undefined;
|
|
22
|
-
bindings?: string | undefined;
|
|
23
21
|
};
|
|
24
22
|
export type CollapsibleMenuProps = typeof __propDef.props;
|
|
25
23
|
export type CollapsibleMenuEvents = typeof __propDef.events;
|
|
26
24
|
export type CollapsibleMenuSlots = typeof __propDef.slots;
|
|
27
|
-
export default class CollapsibleMenu extends
|
|
25
|
+
export default class CollapsibleMenu extends SvelteComponentTyped<CollapsibleMenuProps, CollapsibleMenuEvents, CollapsibleMenuSlots> {
|
|
28
26
|
}
|
|
29
27
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import { HeaderNavigationItem } from './Menu.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -18,12 +18,10 @@ declare const __propDef: {
|
|
|
18
18
|
pages: any[];
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
|
-
exports?: {} | undefined;
|
|
22
|
-
bindings?: string | undefined;
|
|
23
21
|
};
|
|
24
22
|
export type DynamicMenuProps = typeof __propDef.props;
|
|
25
23
|
export type DynamicMenuEvents = typeof __propDef.events;
|
|
26
24
|
export type DynamicMenuSlots = typeof __propDef.slots;
|
|
27
|
-
export default class DynamicMenu extends
|
|
25
|
+
export default class DynamicMenu extends SvelteComponentTyped<DynamicMenuProps, DynamicMenuEvents, DynamicMenuSlots> {
|
|
28
26
|
}
|
|
29
27
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import { HeaderNavigationItem } from './Menu.js';
|
|
3
3
|
import { Placement } from '../Styling.js';
|
|
4
4
|
declare const __propDef: {
|
|
@@ -16,12 +16,10 @@ declare const __propDef: {
|
|
|
16
16
|
[evt: string]: CustomEvent<any>;
|
|
17
17
|
};
|
|
18
18
|
slots: {};
|
|
19
|
-
exports?: {} | undefined;
|
|
20
|
-
bindings?: string | undefined;
|
|
21
19
|
};
|
|
22
20
|
export type HamburgerMenuProps = typeof __propDef.props;
|
|
23
21
|
export type HamburgerMenuEvents = typeof __propDef.events;
|
|
24
22
|
export type HamburgerMenuSlots = typeof __propDef.slots;
|
|
25
|
-
export default class HamburgerMenu extends
|
|
23
|
+
export default class HamburgerMenu extends SvelteComponentTyped<HamburgerMenuProps, HamburgerMenuEvents, HamburgerMenuSlots> {
|
|
26
24
|
}
|
|
27
25
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
id: any;
|
|
@@ -20,12 +20,10 @@ declare const __propDef: {
|
|
|
20
20
|
[evt: string]: CustomEvent<any>;
|
|
21
21
|
};
|
|
22
22
|
slots: {};
|
|
23
|
-
exports?: {} | undefined;
|
|
24
|
-
bindings?: string | undefined;
|
|
25
23
|
};
|
|
26
24
|
export type MenuProps = typeof __propDef.props;
|
|
27
25
|
export type MenuEvents = typeof __propDef.events;
|
|
28
26
|
export type MenuSlots = typeof __propDef.slots;
|
|
29
|
-
export default class Menu extends
|
|
27
|
+
export default class Menu extends SvelteComponentTyped<MenuProps, MenuEvents, MenuSlots> {
|
|
30
28
|
}
|
|
31
29
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
disabled?: boolean;
|
|
@@ -16,13 +16,11 @@ declare const __propDef: {
|
|
|
16
16
|
slots: {
|
|
17
17
|
default: {};
|
|
18
18
|
};
|
|
19
|
-
exports?: {} | undefined;
|
|
20
|
-
bindings?: string | undefined;
|
|
21
19
|
};
|
|
22
20
|
export type MenuItemProps = typeof __propDef.props;
|
|
23
21
|
export type MenuItemEvents = typeof __propDef.events;
|
|
24
22
|
export type MenuItemSlots = typeof __propDef.slots;
|
|
25
|
-
export default class MenuItem extends
|
|
23
|
+
export default class MenuItem extends SvelteComponentTyped<MenuItemProps, MenuItemEvents, MenuItemSlots> {
|
|
26
24
|
get focus(): () => any;
|
|
27
25
|
get isDisabled(): () => any;
|
|
28
26
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import { type HeaderNavigationItem } from './Menu.js';
|
|
3
3
|
import { Orientation } from '../Styling.js';
|
|
4
4
|
declare const __propDef: {
|
|
@@ -19,12 +19,10 @@ declare const __propDef: {
|
|
|
19
19
|
subpages: HeaderNavigationItem[] | undefined;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
-
exports?: {} | undefined;
|
|
23
|
-
bindings?: string | undefined;
|
|
24
22
|
};
|
|
25
23
|
export type NavigationItemsProps = typeof __propDef.props;
|
|
26
24
|
export type NavigationItemsEvents = typeof __propDef.events;
|
|
27
25
|
export type NavigationItemsSlots = typeof __propDef.slots;
|
|
28
|
-
export default class NavigationItems extends
|
|
26
|
+
export default class NavigationItems extends SvelteComponentTyped<NavigationItemsProps, NavigationItemsEvents, NavigationItemsSlots> {
|
|
29
27
|
}
|
|
30
28
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { Options } from '@splidejs/splide';
|
|
3
3
|
import type { CaruseleItem } from './Carusele';
|
|
4
4
|
declare const __propDef: {
|
|
@@ -47,12 +47,10 @@ declare const __propDef: {
|
|
|
47
47
|
item: CaruseleItem;
|
|
48
48
|
};
|
|
49
49
|
};
|
|
50
|
-
exports?: {} | undefined;
|
|
51
|
-
bindings?: string | undefined;
|
|
52
50
|
};
|
|
53
51
|
export type CaruselProps = typeof __propDef.props;
|
|
54
52
|
export type CaruselEvents = typeof __propDef.events;
|
|
55
53
|
export type CaruselSlots = typeof __propDef.slots;
|
|
56
|
-
export default class Carusel extends
|
|
54
|
+
export default class Carusel extends SvelteComponentTyped<CaruselProps, CaruselEvents, CaruselSlots> {
|
|
57
55
|
}
|
|
58
56
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { ShowItem } from './ShowItem.js';
|
|
3
3
|
import { AlignItmes, Justify, Orientation } from '../Styling.js';
|
|
4
4
|
declare const __propDef: {
|
|
@@ -17,12 +17,10 @@ declare const __propDef: {
|
|
|
17
17
|
item: ShowItem;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
-
exports?: {} | undefined;
|
|
21
|
-
bindings?: string | undefined;
|
|
22
20
|
};
|
|
23
21
|
export type GalleryProps = typeof __propDef.props;
|
|
24
22
|
export type GalleryEvents = typeof __propDef.events;
|
|
25
23
|
export type GallerySlots = typeof __propDef.slots;
|
|
26
|
-
export default class Gallery extends
|
|
24
|
+
export default class Gallery extends SvelteComponentTyped<GalleryProps, GalleryEvents, GallerySlots> {
|
|
27
25
|
}
|
|
28
26
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} ImageCompareProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} ImageCompareEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} ImageCompareSlots */
|
|
4
|
-
export default class ImageCompare extends
|
|
4
|
+
export default class ImageCompare extends SvelteComponentTyped<{
|
|
5
5
|
before?: string | undefined;
|
|
6
6
|
after?: string | undefined;
|
|
7
7
|
offset?: number | undefined;
|
|
@@ -21,7 +21,7 @@ export default class ImageCompare extends SvelteComponent<{
|
|
|
21
21
|
export type ImageCompareProps = typeof __propDef.props;
|
|
22
22
|
export type ImageCompareEvents = typeof __propDef.events;
|
|
23
23
|
export type ImageCompareSlots = typeof __propDef.slots;
|
|
24
|
-
import {
|
|
24
|
+
import { SvelteComponentTyped } from "svelte";
|
|
25
25
|
declare const __propDef: {
|
|
26
26
|
props: {
|
|
27
27
|
before?: string | undefined;
|
|
@@ -41,7 +41,5 @@ declare const __propDef: {
|
|
|
41
41
|
before: {};
|
|
42
42
|
after: {};
|
|
43
43
|
};
|
|
44
|
-
exports?: undefined;
|
|
45
|
-
bindings?: undefined;
|
|
46
44
|
};
|
|
47
45
|
export {};
|