tecitheme 0.7.0 → 0.7.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/Accordion.svelte +1 -1
- package/dist/components/Banner.svelte +6 -6
- package/dist/components/Banner.svelte.d.ts +13 -15
- package/dist/components/Button.svelte +6 -6
- package/dist/components/Button.svelte.d.ts +12 -12
- package/dist/components/CTA.svelte +1 -1
- package/dist/components/CTA.svelte.d.ts +2 -2
- package/dist/components/CTASplitImage.svelte +1 -1
- package/dist/components/CTASplitImage.svelte.d.ts +2 -2
- package/dist/components/Card.svelte +2 -2
- package/dist/components/Card.svelte.d.ts +4 -4
- package/dist/components/CognitoForm.svelte +9 -6
- package/dist/components/CognitoForm.svelte.d.ts +6 -6
- package/dist/components/ContentTwoColumns.svelte +1 -1
- package/dist/components/ContentTwoColumns.svelte.d.ts +2 -2
- package/dist/components/FeatureGrid.svelte +1 -1
- package/dist/components/FeatureGrid.svelte.d.ts +2 -2
- package/dist/components/Figure.svelte +4 -4
- package/dist/components/Figure.svelte.d.ts +8 -8
- package/dist/components/HeadingCentered.svelte +1 -1
- package/dist/components/HeadingCentered.svelte.d.ts +2 -2
- package/dist/components/Hero.svelte +1 -1
- package/dist/components/Hero.svelte.d.ts +2 -2
- package/dist/components/Icon.svelte +3 -3
- package/dist/components/Icon.svelte.d.ts +4 -4
- package/dist/components/Math.svelte +1 -1
- package/dist/components/Math.svelte.d.ts +2 -2
- package/dist/components/MediaFeature.svelte +1 -1
- package/dist/components/MediaFeature.svelte.d.ts +2 -2
- package/dist/components/Modal.svelte +1 -1
- package/dist/components/Modal.svelte.d.ts +2 -2
- package/dist/components/NewsGrid.svelte +1 -1
- package/dist/components/NewsGrid.svelte.d.ts +2 -2
- package/dist/components/PricingTable.svelte +1 -1
- package/dist/components/PricingTable.svelte.d.ts +2 -2
- package/dist/components/SidebarContent.svelte +4 -4
- package/dist/components/SidebarContent.svelte.d.ts +8 -8
- package/dist/components/Stats.svelte +1 -1
- package/dist/components/Stats.svelte.d.ts +2 -2
- package/dist/components/Testimonial.svelte +1 -1
- package/dist/components/Testimonial.svelte.d.ts +2 -2
- package/dist/components/ThreeColumn.svelte +1 -1
- package/dist/components/ThreeColumn.svelte.d.ts +2 -2
- package/dist/components/Video.svelte +2 -2
- package/dist/components/Video.svelte.d.ts +4 -4
- package/dist/layouts/blocks.svelte +9 -9
- package/dist/layouts/blocks.svelte.d.ts +18 -14
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
export let showCTA;
|
|
3
|
-
export let shortText;
|
|
4
|
-
export let longText;
|
|
5
|
-
export let ctaText;
|
|
6
|
-
export let ctaLink;
|
|
7
|
-
export let allowClose;
|
|
2
|
+
export let showCTA = undefined;
|
|
3
|
+
export let shortText = undefined;
|
|
4
|
+
export let longText = undefined;
|
|
5
|
+
export let ctaText = undefined;
|
|
6
|
+
export let ctaLink = undefined;
|
|
7
|
+
export let allowClose = undefined;
|
|
8
8
|
|
|
9
9
|
let bannerOpen = true;
|
|
10
10
|
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} BannerEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} BannerSlots */
|
|
4
4
|
export default class Banner extends SvelteComponent<{
|
|
5
|
-
showCTA
|
|
6
|
-
shortText
|
|
7
|
-
longText
|
|
8
|
-
ctaText
|
|
9
|
-
ctaLink
|
|
10
|
-
allowClose
|
|
5
|
+
showCTA?: any;
|
|
6
|
+
shortText?: any;
|
|
7
|
+
longText?: any;
|
|
8
|
+
ctaText?: any;
|
|
9
|
+
ctaLink?: any;
|
|
10
|
+
allowClose?: any;
|
|
11
11
|
}, {
|
|
12
12
|
[evt: string]: CustomEvent<any>;
|
|
13
13
|
}, {}> {
|
|
@@ -18,18 +18,16 @@ export type BannerSlots = typeof __propDef.slots;
|
|
|
18
18
|
import { SvelteComponent } from "svelte";
|
|
19
19
|
declare const __propDef: {
|
|
20
20
|
props: {
|
|
21
|
-
showCTA
|
|
22
|
-
shortText
|
|
23
|
-
longText
|
|
24
|
-
ctaText
|
|
25
|
-
ctaLink
|
|
26
|
-
allowClose
|
|
21
|
+
showCTA?: any;
|
|
22
|
+
shortText?: any;
|
|
23
|
+
longText?: any;
|
|
24
|
+
ctaText?: any;
|
|
25
|
+
ctaLink?: any;
|
|
26
|
+
allowClose?: any;
|
|
27
27
|
};
|
|
28
28
|
events: {
|
|
29
29
|
[evt: string]: CustomEvent<any>;
|
|
30
|
-
};
|
|
31
|
-
/** @typedef {typeof __propDef.events} BannerEvents */
|
|
32
|
-
/** @typedef {typeof __propDef.slots} BannerSlots */
|
|
30
|
+
};
|
|
33
31
|
slots: {};
|
|
34
32
|
};
|
|
35
33
|
export {};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import { getColorStyles } from '../utils'
|
|
3
|
-
export let action;
|
|
4
|
-
export let url;
|
|
5
|
-
export let text;
|
|
6
|
-
export let color;
|
|
7
|
-
export let justify;
|
|
8
|
-
export let fullwidth;
|
|
3
|
+
export let action = undefined;
|
|
4
|
+
export let url = undefined;
|
|
5
|
+
export let text = undefined;
|
|
6
|
+
export let color = undefined;
|
|
7
|
+
export let justify = undefined;
|
|
8
|
+
export let fullwidth = undefined;
|
|
9
9
|
</script>
|
|
10
10
|
|
|
11
11
|
<div class="not-prose flex w-full {justify=="left"?"justify-start":(justify=="right"?"justify-end":"justify-center")} ">
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} ButtonEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} ButtonSlots */
|
|
4
4
|
export default class Button extends SvelteComponent<{
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
color
|
|
9
|
-
justify
|
|
10
|
-
fullwidth
|
|
5
|
+
text?: any;
|
|
6
|
+
action?: any;
|
|
7
|
+
url?: any;
|
|
8
|
+
color?: any;
|
|
9
|
+
justify?: any;
|
|
10
|
+
fullwidth?: any;
|
|
11
11
|
}, {
|
|
12
12
|
click: MouseEvent;
|
|
13
13
|
} & {
|
|
@@ -20,12 +20,12 @@ export type ButtonSlots = typeof __propDef.slots;
|
|
|
20
20
|
import { SvelteComponent } from "svelte";
|
|
21
21
|
declare const __propDef: {
|
|
22
22
|
props: {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
color
|
|
27
|
-
justify
|
|
28
|
-
fullwidth
|
|
23
|
+
text?: any;
|
|
24
|
+
action?: any;
|
|
25
|
+
url?: any;
|
|
26
|
+
color?: any;
|
|
27
|
+
justify?: any;
|
|
28
|
+
fullwidth?: any;
|
|
29
29
|
};
|
|
30
30
|
events: {
|
|
31
31
|
click: MouseEvent;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} CtaEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} CtaSlots */
|
|
4
4
|
export default class Cta extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type CtaSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} CtaSplitImageEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} CtaSplitImageSlots */
|
|
4
4
|
export default class CtaSplitImage extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type CtaSplitImageSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -4,8 +4,8 @@ import Button from './Button.svelte'
|
|
|
4
4
|
//Allows icons from https://fonts.google.com/icons?selected=Material+Icons by name in the format 'icon-XXXX'.
|
|
5
5
|
import { getColorStyles } from '../utils'
|
|
6
6
|
import Icon from "./Icon.svelte";
|
|
7
|
-
export let data;
|
|
8
|
-
export let halfHeight;
|
|
7
|
+
export let data = {};
|
|
8
|
+
export let halfHeight = undefined;
|
|
9
9
|
|
|
10
10
|
let backgroundImage;
|
|
11
11
|
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} CardEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} CardSlots */
|
|
4
4
|
export default class Card extends SvelteComponent<{
|
|
5
|
-
data
|
|
6
|
-
halfHeight
|
|
5
|
+
data?: {};
|
|
6
|
+
halfHeight?: any;
|
|
7
7
|
}, {
|
|
8
8
|
[evt: string]: CustomEvent<any>;
|
|
9
9
|
}, {}> {
|
|
@@ -14,8 +14,8 @@ export type CardSlots = typeof __propDef.slots;
|
|
|
14
14
|
import { SvelteComponent } from "svelte";
|
|
15
15
|
declare const __propDef: {
|
|
16
16
|
props: {
|
|
17
|
-
data
|
|
18
|
-
halfHeight
|
|
17
|
+
data?: {};
|
|
18
|
+
halfHeight?: any;
|
|
19
19
|
};
|
|
20
20
|
events: {
|
|
21
21
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,15 +2,18 @@
|
|
|
2
2
|
import { browser } from '$app/environment';
|
|
3
3
|
import { onMount } from 'svelte';
|
|
4
4
|
|
|
5
|
-
export let title;
|
|
6
|
-
export let data_key;
|
|
7
|
-
export let data_form;
|
|
5
|
+
export let title = undefined;
|
|
6
|
+
export let data_key = undefined;
|
|
7
|
+
export let data_form = undefined;
|
|
8
8
|
|
|
9
9
|
onMount(async () => {
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
let elem = undefined;
|
|
11
|
+
elem = document.querySelector('form.cog-cognito');
|
|
12
|
+
console.log(elem);
|
|
13
|
+
if (elem) {
|
|
14
|
+
elem.classList.add('cog-disable-movement');
|
|
15
|
+
}
|
|
12
16
|
});
|
|
13
|
-
|
|
14
17
|
</script>
|
|
15
18
|
|
|
16
19
|
{#if browser}
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} CognitoFormEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} CognitoFormSlots */
|
|
4
4
|
export default class CognitoForm extends SvelteComponent<{
|
|
5
|
-
title
|
|
6
|
-
data_key
|
|
7
|
-
data_form
|
|
5
|
+
title?: any;
|
|
6
|
+
data_key?: any;
|
|
7
|
+
data_form?: any;
|
|
8
8
|
}, {
|
|
9
9
|
[evt: string]: CustomEvent<any>;
|
|
10
10
|
}, {}> {
|
|
@@ -15,9 +15,9 @@ export type CognitoFormSlots = typeof __propDef.slots;
|
|
|
15
15
|
import { SvelteComponent } from "svelte";
|
|
16
16
|
declare const __propDef: {
|
|
17
17
|
props: {
|
|
18
|
-
title
|
|
19
|
-
data_key
|
|
20
|
-
data_form
|
|
18
|
+
title?: any;
|
|
19
|
+
data_key?: any;
|
|
20
|
+
data_form?: any;
|
|
21
21
|
};
|
|
22
22
|
events: {
|
|
23
23
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} ContentTwoColumnsEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} ContentTwoColumnsSlots */
|
|
4
4
|
export default class ContentTwoColumns extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type ContentTwoColumnsSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} FeatureGridEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} FeatureGridSlots */
|
|
4
4
|
export default class FeatureGrid extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type FeatureGridSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} FigureEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} FigureSlots */
|
|
4
4
|
export default class Figure extends SvelteComponent<{
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
caption?: any;
|
|
6
|
+
link?: any;
|
|
7
|
+
title?: any;
|
|
8
|
+
image?: any;
|
|
9
9
|
}, {
|
|
10
10
|
[evt: string]: CustomEvent<any>;
|
|
11
11
|
}, {}> {
|
|
@@ -16,10 +16,10 @@ export type FigureSlots = typeof __propDef.slots;
|
|
|
16
16
|
import { SvelteComponent } from "svelte";
|
|
17
17
|
declare const __propDef: {
|
|
18
18
|
props: {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
caption?: any;
|
|
20
|
+
link?: any;
|
|
21
|
+
title?: any;
|
|
22
|
+
image?: any;
|
|
23
23
|
};
|
|
24
24
|
events: {
|
|
25
25
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} HeadingCenteredEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} HeadingCenteredSlots */
|
|
4
4
|
export default class HeadingCentered extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type HeadingCenteredSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} HeroEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} HeroSlots */
|
|
4
4
|
export default class Hero extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type HeroSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
// Allows icons from https://fonts.google.com/icons?selected=Material+Icons by name in the format 'icon-XXXX'.
|
|
3
|
-
export let icon;
|
|
4
|
-
export let classes;
|
|
3
|
+
export let icon = undefined;
|
|
4
|
+
export let classes = undefined;
|
|
5
5
|
|
|
6
|
-
let id
|
|
6
|
+
let id;
|
|
7
7
|
|
|
8
8
|
if (icon) {
|
|
9
9
|
id = encodeURIComponent(icon).toLowerCase()
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} IconEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} IconSlots */
|
|
4
4
|
export default class Icon extends SvelteComponent<{
|
|
5
|
-
icon
|
|
6
|
-
classes
|
|
5
|
+
icon?: any;
|
|
6
|
+
classes?: any;
|
|
7
7
|
}, {
|
|
8
8
|
[evt: string]: CustomEvent<any>;
|
|
9
9
|
}, {}> {
|
|
@@ -14,8 +14,8 @@ export type IconSlots = typeof __propDef.slots;
|
|
|
14
14
|
import { SvelteComponent } from "svelte";
|
|
15
15
|
declare const __propDef: {
|
|
16
16
|
props: {
|
|
17
|
-
icon
|
|
18
|
-
classes
|
|
17
|
+
icon?: any;
|
|
18
|
+
classes?: any;
|
|
19
19
|
};
|
|
20
20
|
events: {
|
|
21
21
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} MathEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} MathSlots */
|
|
4
4
|
export default class Math extends SvelteComponent<{
|
|
5
|
-
math
|
|
5
|
+
math?: any;
|
|
6
6
|
displayMode?: boolean;
|
|
7
7
|
}, {
|
|
8
8
|
[evt: string]: CustomEvent<any>;
|
|
@@ -14,7 +14,7 @@ export type MathSlots = typeof __propDef.slots;
|
|
|
14
14
|
import { SvelteComponent } from "svelte";
|
|
15
15
|
declare const __propDef: {
|
|
16
16
|
props: {
|
|
17
|
-
math
|
|
17
|
+
math?: any;
|
|
18
18
|
displayMode?: boolean;
|
|
19
19
|
};
|
|
20
20
|
events: {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} MediaFeatureEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} MediaFeatureSlots */
|
|
4
4
|
export default class MediaFeature extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type MediaFeatureSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} ModalEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} ModalSlots */
|
|
4
4
|
export default class Modal extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
show?: () => void;
|
|
7
7
|
hide?: () => void;
|
|
8
8
|
}, {
|
|
@@ -17,7 +17,7 @@ export type ModalSlots = typeof __propDef.slots;
|
|
|
17
17
|
import { SvelteComponent } from "svelte";
|
|
18
18
|
declare const __propDef: {
|
|
19
19
|
props: {
|
|
20
|
-
data
|
|
20
|
+
data?: {};
|
|
21
21
|
show?: () => void;
|
|
22
22
|
hide?: () => void;
|
|
23
23
|
};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} NewsGridEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} NewsGridSlots */
|
|
4
4
|
export default class NewsGrid extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type NewsGridSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} PricingTableEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} PricingTableSlots */
|
|
4
4
|
export default class PricingTable extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type PricingTableSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
import { onMount } from "svelte";
|
|
3
3
|
import { buildToC } from "../utils.js";
|
|
4
4
|
|
|
5
|
-
export let data;
|
|
6
|
-
export let title;
|
|
7
|
-
export let date;
|
|
8
|
-
export let lastmod;
|
|
5
|
+
export let data = {};
|
|
6
|
+
export let title = undefined;
|
|
7
|
+
export let date = undefined;
|
|
8
|
+
export let lastmod = undefined;
|
|
9
9
|
let id
|
|
10
10
|
|
|
11
11
|
if (data.name) {
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} SidebarContentEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} SidebarContentSlots */
|
|
4
4
|
export default class SidebarContent extends SvelteComponent<{
|
|
5
|
-
data
|
|
6
|
-
title
|
|
7
|
-
date
|
|
8
|
-
lastmod
|
|
5
|
+
data?: {};
|
|
6
|
+
title?: any;
|
|
7
|
+
date?: any;
|
|
8
|
+
lastmod?: any;
|
|
9
9
|
}, {
|
|
10
10
|
[evt: string]: CustomEvent<any>;
|
|
11
11
|
}, {
|
|
@@ -18,10 +18,10 @@ export type SidebarContentSlots = typeof __propDef.slots;
|
|
|
18
18
|
import { SvelteComponent } from "svelte";
|
|
19
19
|
declare const __propDef: {
|
|
20
20
|
props: {
|
|
21
|
-
data
|
|
22
|
-
title
|
|
23
|
-
date
|
|
24
|
-
lastmod
|
|
21
|
+
data?: {};
|
|
22
|
+
title?: any;
|
|
23
|
+
date?: any;
|
|
24
|
+
lastmod?: any;
|
|
25
25
|
};
|
|
26
26
|
events: {
|
|
27
27
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} StatsEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} StatsSlots */
|
|
4
4
|
export default class Stats extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type StatsSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} TestimonialEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} TestimonialSlots */
|
|
4
4
|
export default class Testimonial extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type TestimonialSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} ThreeColumnEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} ThreeColumnSlots */
|
|
4
4
|
export default class ThreeColumn extends SvelteComponent<{
|
|
5
|
-
data
|
|
5
|
+
data?: {};
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
}, {}> {
|
|
@@ -13,7 +13,7 @@ export type ThreeColumnSlots = typeof __propDef.slots;
|
|
|
13
13
|
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
|
-
data
|
|
16
|
+
data?: {};
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/** @typedef {typeof __propDef.slots} VideoSlots */
|
|
4
4
|
export default class Video extends SvelteComponent<{
|
|
5
5
|
data?: {};
|
|
6
|
-
v?:
|
|
7
|
-
thumbnail?:
|
|
6
|
+
v?: any;
|
|
7
|
+
thumbnail?: any;
|
|
8
8
|
}, {
|
|
9
9
|
[evt: string]: CustomEvent<any>;
|
|
10
10
|
}, {}> {
|
|
@@ -16,8 +16,8 @@ import { SvelteComponent } from "svelte";
|
|
|
16
16
|
declare const __propDef: {
|
|
17
17
|
props: {
|
|
18
18
|
data?: {};
|
|
19
|
-
v?:
|
|
20
|
-
thumbnail?:
|
|
19
|
+
v?: any;
|
|
20
|
+
thumbnail?: any;
|
|
21
21
|
};
|
|
22
22
|
events: {
|
|
23
23
|
[evt: string]: CustomEvent<any>;
|
|
@@ -39,13 +39,15 @@
|
|
|
39
39
|
{ ref: "testimonial", component: Testimonial },
|
|
40
40
|
];
|
|
41
41
|
|
|
42
|
-
export let
|
|
43
|
-
export let
|
|
44
|
-
export let
|
|
45
|
-
export let
|
|
46
|
-
export let
|
|
47
|
-
export let
|
|
48
|
-
export let
|
|
42
|
+
export let data = {};
|
|
43
|
+
export let form;
|
|
44
|
+
export let title = undefined;
|
|
45
|
+
export let date = undefined;
|
|
46
|
+
export let summary = undefined;
|
|
47
|
+
export let image = undefined;
|
|
48
|
+
export let lastmod = undefined;
|
|
49
|
+
export let layout = undefined;
|
|
50
|
+
export let page_sections = undefined;
|
|
49
51
|
|
|
50
52
|
let featuredImage;
|
|
51
53
|
|
|
@@ -69,8 +71,6 @@
|
|
|
69
71
|
<meta name="twitter:creator" content="@thunderheadeng" />
|
|
70
72
|
<meta property="og:image" content={featuredImage} />
|
|
71
73
|
<meta name="twitter:card" content={featuredImage} />
|
|
72
|
-
<!-- <meta property="og:image:width" content={coverWidth} />
|
|
73
|
-
<meta property="og:image:height" content={coverHeight} /> -->
|
|
74
74
|
</svelte:head>
|
|
75
75
|
|
|
76
76
|
<article class="flex flex-col space-y-16 {layout}">
|
|
@@ -2,13 +2,15 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} BlocksEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} BlocksSlots */
|
|
4
4
|
export default class Blocks extends SvelteComponent<{
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
summary
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
form: any;
|
|
6
|
+
data?: {};
|
|
7
|
+
summary?: any;
|
|
8
|
+
title?: any;
|
|
9
|
+
image?: any;
|
|
10
|
+
date?: any;
|
|
11
|
+
lastmod?: any;
|
|
12
|
+
layout?: any;
|
|
13
|
+
page_sections?: any;
|
|
12
14
|
}, {
|
|
13
15
|
[evt: string]: CustomEvent<any>;
|
|
14
16
|
}, {
|
|
@@ -21,13 +23,15 @@ export type BlocksSlots = typeof __propDef.slots;
|
|
|
21
23
|
import { SvelteComponent } from "svelte";
|
|
22
24
|
declare const __propDef: {
|
|
23
25
|
props: {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
summary
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
26
|
+
form: any;
|
|
27
|
+
data?: {};
|
|
28
|
+
summary?: any;
|
|
29
|
+
title?: any;
|
|
30
|
+
image?: any;
|
|
31
|
+
date?: any;
|
|
32
|
+
lastmod?: any;
|
|
33
|
+
layout?: any;
|
|
34
|
+
page_sections?: any;
|
|
31
35
|
};
|
|
32
36
|
events: {
|
|
33
37
|
[evt: string]: CustomEvent<any>;
|