tecitheme 0.8.1 → 0.9.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.
Files changed (78) hide show
  1. package/dist/assets/TECi_logo.svelte +177 -0
  2. package/dist/assets/TECi_logo.svelte.d.ts +23 -0
  3. package/dist/assets/js/store.d.ts +3 -0
  4. package/dist/assets/js/store.js +4 -0
  5. package/dist/components/Accordion.svelte +74 -0
  6. package/dist/components/Accordion.svelte.d.ts +27 -0
  7. package/dist/components/Banner.svelte +91 -0
  8. package/dist/components/Banner.svelte.d.ts +33 -0
  9. package/dist/components/Button.svelte +21 -0
  10. package/dist/components/Button.svelte.d.ts +37 -0
  11. package/dist/components/CTA.svelte +51 -0
  12. package/dist/components/CTA.svelte.d.ts +23 -0
  13. package/dist/components/CTASplitImage.svelte +34 -0
  14. package/dist/components/CTASplitImage.svelte.d.ts +23 -0
  15. package/dist/components/Card.svelte +91 -0
  16. package/dist/components/Card.svelte.d.ts +25 -0
  17. package/dist/components/CognitoForm.svelte +24 -0
  18. package/dist/components/CognitoForm.svelte.d.ts +27 -0
  19. package/dist/components/ContentTwoColumns.svelte +54 -0
  20. package/dist/components/ContentTwoColumns.svelte.d.ts +23 -0
  21. package/dist/components/CountrySelector.svelte +167 -0
  22. package/dist/components/CountrySelector.svelte.d.ts +27 -0
  23. package/dist/components/FeatureGrid.svelte +44 -0
  24. package/dist/components/FeatureGrid.svelte.d.ts +23 -0
  25. package/dist/components/Figure.svelte +40 -0
  26. package/dist/components/Figure.svelte.d.ts +29 -0
  27. package/dist/components/Footer.svelte +243 -0
  28. package/dist/components/Footer.svelte.d.ts +23 -0
  29. package/dist/components/Header.svelte +888 -0
  30. package/dist/components/Header.svelte.d.ts +30 -0
  31. package/dist/components/HeadingCentered.svelte +38 -0
  32. package/dist/components/HeadingCentered.svelte.d.ts +23 -0
  33. package/dist/components/Hero.svelte +82 -0
  34. package/dist/components/Hero.svelte.d.ts +23 -0
  35. package/dist/components/Icon.svelte +162 -0
  36. package/dist/components/Icon.svelte.d.ts +25 -0
  37. package/dist/components/LogoCloud.svelte +25 -0
  38. package/dist/components/LogoCloud.svelte.d.ts +23 -0
  39. package/dist/components/Math.svelte +24 -0
  40. package/dist/components/Math.svelte.d.ts +25 -0
  41. package/dist/components/MediaFeature.svelte +76 -0
  42. package/dist/components/MediaFeature.svelte.d.ts +23 -0
  43. package/dist/components/Modal.svelte +69 -0
  44. package/dist/components/Modal.svelte.d.ts +29 -0
  45. package/dist/components/NewsGrid.svelte +196 -0
  46. package/dist/components/NewsGrid.svelte.d.ts +23 -0
  47. package/dist/components/PageNav.svelte +243 -0
  48. package/dist/components/PageNav.svelte.d.ts +32 -0
  49. package/dist/components/PricingTable.svelte +100 -0
  50. package/dist/components/PricingTable.svelte.d.ts +23 -0
  51. package/dist/components/SidebarContent.svelte +124 -0
  52. package/dist/components/SidebarContent.svelte.d.ts +33 -0
  53. package/dist/components/Stats.svelte +40 -0
  54. package/dist/components/Stats.svelte.d.ts +23 -0
  55. package/dist/components/Testimonial.svelte +168 -0
  56. package/dist/components/Testimonial.svelte.d.ts +23 -0
  57. package/dist/components/ThreeColumn.svelte +20 -0
  58. package/dist/components/ThreeColumn.svelte.d.ts +23 -0
  59. package/dist/components/TrialForm.svelte +296 -0
  60. package/dist/components/TrialForm.svelte.d.ts +14 -0
  61. package/dist/components/Video.svelte +125 -0
  62. package/dist/components/Video.svelte.d.ts +27 -0
  63. package/dist/components/Wrap.svelte +12 -0
  64. package/dist/components/Wrap.svelte.d.ts +31 -0
  65. package/dist/get-content.d.ts +9 -0
  66. package/dist/get-content.js +98 -0
  67. package/dist/index.d.ts +31 -0
  68. package/dist/index.js +31 -0
  69. package/dist/layouts/blocks.svelte +108 -0
  70. package/dist/layouts/blocks.svelte.d.ts +47 -0
  71. package/dist/req_utils.d.ts +3 -0
  72. package/dist/req_utils.js +63 -0
  73. package/dist/site_config.json +13 -0
  74. package/dist/utils.d.ts +5 -0
  75. package/dist/utils.js +162 -0
  76. package/dist/variables.d.ts +1 -0
  77. package/dist/variables.js +2 -0
  78. package/package.json +1 -1
@@ -0,0 +1,124 @@
1
+ <script>
2
+ import { onMount } from "svelte";
3
+ import { buildToC } from "../utils.js";
4
+
5
+ export let data = {};
6
+ export let title = undefined;
7
+ export let date = undefined;
8
+ export let lastmod = undefined;
9
+ let id
10
+
11
+ if (data.name) {
12
+ id = encodeURIComponent(data.name).toLowerCase()
13
+ }
14
+
15
+ let formattedDate =
16
+ date != undefined
17
+ ? new Date(date).toLocaleDateString("en-us", {
18
+ weekday: "short",
19
+ year: "numeric",
20
+ month: "short",
21
+ day: "numeric",
22
+ timeZone: "UTC",
23
+ timeZoneName: "short",
24
+ })
25
+ : undefined;
26
+ let formattedLastModDate =
27
+ lastmod != undefined
28
+ ? new Date(lastmod).toLocaleDateString("en-us", {
29
+ weekday: "short",
30
+ year: "numeric",
31
+ month: "short",
32
+ day: "numeric",
33
+ timeZone: "UTC",
34
+ timeZoneName: "short",
35
+ })
36
+ : undefined;
37
+ let tocOpen = false;
38
+ let tocBuilt = false;
39
+ let w;
40
+
41
+ $: if (w > 702 && tocOpen == false) {
42
+ tocOpen = true;
43
+ }
44
+
45
+ onMount(async () => {
46
+ if (data.toc) {
47
+ tocBuilt = buildToC();
48
+ }
49
+ });
50
+ </script>
51
+
52
+ <section {id}
53
+ bind:clientWidth={w}
54
+ class="relative flex flex-row
55
+ {data.fullWidth?'mx-0':'mx-auto'}
56
+ {(data.toc || data.rightRail)?'md:space-x-8':'space-x-0'}
57
+ "
58
+ >
59
+ <div
60
+ id="content"
61
+ class="prose w-full {data.fullWidth?'max-w-none':'max-w-prose'}"
62
+ >
63
+ {#if !data.hideTitle}
64
+ <h1>{title}</h1>
65
+ {/if}
66
+ <slot />
67
+ {#if formattedDate && data.showDate}
68
+ <p class="text-sm">
69
+ Published: {formattedDate}{#if formattedLastModDate != formattedDate && formattedLastModDate}&nbsp;&nbsp;|&nbsp;&nbsp;Last
70
+ Updated: {formattedLastModDate}{/if}
71
+ </p>
72
+ {/if}
73
+ </div>
74
+ {#if (data.toc || data.rightRail)}
75
+ <aside class="relative w-0 md:w-60">
76
+ {#if data.toc}
77
+ <div class="sticky top-8 flex shrink-0 flex-col">
78
+ <button
79
+ on:click={() => {
80
+ tocOpen = !tocOpen;
81
+ }}
82
+ class="absolute -left-10 flex h-10 w-10 items-center justify-center border border-teci-blue-light bg-white text-teci-blue-light md:hidden
83
+ {tocOpen
84
+ ? 'border-opacity-100 bg-opacity-100 text-opacity-100'
85
+ : 'border-opacity-60 bg-opacity-20 text-opacity-60 hover:border-opacity-100 hover:bg-opacity-100 hover:text-opacity-100'}"
86
+ title="Table of Contents Toggle"
87
+ alt="Table of Contents Toggle"
88
+ >
89
+ <span class="material-icons-outlined">menu_open</span>
90
+ </button>
91
+ {#if tocBuilt == false}
92
+ <svg
93
+ role="status"
94
+ class="m-2 inline-block h-6 w-6 animate-spin fill-blue-600 text-gray-200 dark:text-gray-600"
95
+ viewBox="0 0 100 101"
96
+ fill="none"
97
+ xmlns="http://www.w3.org/2000/svg"
98
+ >
99
+ <path
100
+ d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
101
+ fill="currentColor"
102
+ />
103
+ <path
104
+ d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
105
+ fill="currentFill"
106
+ />
107
+ </svg>
108
+ {/if}
109
+ <div
110
+ id="ToC"
111
+ class="absolute -left-[282px] border bg-white p-2 text-right font-medium shadow-md md:relative md:left-0 md:text-left {tocOpen
112
+ ? 'mb-4 block w-60'
113
+ : 'hidden'}"
114
+ />
115
+ </div>
116
+ {/if}
117
+ {#if data.rightRail}
118
+ <div class="hidden bg-gray-200 p-2 md:block md:w-60">
119
+ Dynamic Stuff
120
+ </div>
121
+ {/if}
122
+ </aside>
123
+ {/if}
124
+ </section>
@@ -0,0 +1,33 @@
1
+ /** @typedef {typeof __propDef.props} SidebarContentProps */
2
+ /** @typedef {typeof __propDef.events} SidebarContentEvents */
3
+ /** @typedef {typeof __propDef.slots} SidebarContentSlots */
4
+ export default class SidebarContent extends SvelteComponent<{
5
+ data?: {};
6
+ title?: any;
7
+ date?: any;
8
+ lastmod?: any;
9
+ }, {
10
+ [evt: string]: CustomEvent<any>;
11
+ }, {
12
+ default: {};
13
+ }> {
14
+ }
15
+ export type SidebarContentProps = typeof __propDef.props;
16
+ export type SidebarContentEvents = typeof __propDef.events;
17
+ export type SidebarContentSlots = typeof __propDef.slots;
18
+ import { SvelteComponent } from "svelte";
19
+ declare const __propDef: {
20
+ props: {
21
+ data?: {};
22
+ title?: any;
23
+ date?: any;
24
+ lastmod?: any;
25
+ };
26
+ events: {
27
+ [evt: string]: CustomEvent<any>;
28
+ };
29
+ slots: {
30
+ default: {};
31
+ };
32
+ };
33
+ export {};
@@ -0,0 +1,40 @@
1
+ <script>
2
+ import { getColorStyles } from '../utils'
3
+ export let data = {};
4
+ let id
5
+
6
+ if (data.name) {
7
+ id = encodeURIComponent(data.name).toLowerCase()
8
+ }
9
+ </script>
10
+
11
+ <section {id} class="bg-gray-50">
12
+ <div class="mx-auto max-w-7xl p-6 lg:p-8">
13
+ <div class="mx-auto max-w-4xl text-center">
14
+ <h2 class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">{@html data.heading}</h2>
15
+ {#if data.subheading}
16
+ <p class="mt-3 text-xl text-gray-500 sm:mt-4">{@html data.subheading}</p>
17
+ {/if}
18
+ </div>
19
+ </div>
20
+ <div class="bg-white">
21
+ <div class="relative">
22
+ <div class="absolute inset-0 bg-gray-50"></div>
23
+ <div class="relative mx-auto max-w-7xl px-6 lg:px-8">
24
+ <div class="mx-auto max-w-4xl">
25
+ <dl class="bg-white shadow-lg sm:grid sm:grid-cols-3">
26
+ {#each data.stats as stat, i}
27
+ <div id="stat-{i}" class="flex flex-col border-b border-gray-100 p-6 text-center sm:border-0 sm:border-r sm:border-l">
28
+ <dt class="order-2 mt-2 text-lg font-medium leading-6 text-gray-500">{stat.label}</dt>
29
+ <dd class="order-1 text-5xl font-bold tracking-tight {getColorStyles('text', data.color)}">{stat.value}</dd>
30
+ </div>
31
+ {/each}
32
+ </dl>
33
+ </div>
34
+ <figure>
35
+ <img class="w-full" alt="{(data.imageAltText?data.imageAltText:data.heading)}" src="https://teci.imgix.net/www/images/{data.image}?w=1152&fit=crop&auto=compress&auto=format">
36
+ </figure>
37
+ </div>
38
+ </div>
39
+ </div>
40
+ </section>
@@ -0,0 +1,23 @@
1
+ /** @typedef {typeof __propDef.props} StatsProps */
2
+ /** @typedef {typeof __propDef.events} StatsEvents */
3
+ /** @typedef {typeof __propDef.slots} StatsSlots */
4
+ export default class Stats extends SvelteComponent<{
5
+ data?: {};
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {}> {
9
+ }
10
+ export type StatsProps = typeof __propDef.props;
11
+ export type StatsEvents = typeof __propDef.events;
12
+ export type StatsSlots = typeof __propDef.slots;
13
+ import { SvelteComponent } from "svelte";
14
+ declare const __propDef: {
15
+ props: {
16
+ data?: {};
17
+ };
18
+ events: {
19
+ [evt: string]: CustomEvent<any>;
20
+ };
21
+ slots: {};
22
+ };
23
+ export {};
@@ -0,0 +1,168 @@
1
+ <script>
2
+ import Button from './Button.svelte'
3
+ import Icon from './Icon.svelte'
4
+
5
+ import { getColorStyles } from '../utils'
6
+ import { slide } from 'svelte/transition';
7
+ import { quintInOut } from 'svelte/easing';
8
+ import { onMount } from 'svelte'
9
+
10
+ export let data = {};
11
+
12
+ let index = 0;
13
+ let interval = 12000;
14
+ let auto = true;
15
+ let slideInterval;
16
+ let id;
17
+
18
+ if (data.name) {
19
+ id = encodeURIComponent(data.name).toLowerCase()
20
+ }
21
+
22
+ onMount(() => {
23
+ setSlideAutomation();
24
+ })
25
+
26
+ function setSlideAutomation() {
27
+ if (auto) {
28
+ clearInterval(slideInterval);
29
+ slideInterval = setInterval(next, interval);
30
+ }
31
+ }
32
+
33
+ const prev = () => {
34
+ let amount;
35
+ if (index == 0) {
36
+ index = data.quotes.length - 1;
37
+ } else if (index <= data.quotes.length) {
38
+ index = (index - 1) % data.quotes.length;
39
+ }
40
+ setSlideAutomation();
41
+ };
42
+
43
+ const next = () => {
44
+ index = (index + 1) % data.quotes.length;
45
+ setSlideAutomation();
46
+ };
47
+ </script>
48
+
49
+ <section {id} class="overflow-hidden">
50
+ <div class="relative mx-auto max-w-4xl lg:max-w-none mt-10 lg:px-4 lg:py-8 lg:mt-0">
51
+ <svg
52
+ class="absolute right-full top-1/2 hidden translate-x-1/2 -translate-y-1/2 transform lg:block"
53
+ width="404"
54
+ height="784"
55
+ fill="none"
56
+ viewBox="0 0 404 784"
57
+ aria-hidden="true"
58
+ >
59
+ <defs>
60
+ <pattern
61
+ id="56409614-3d62-4985-9a10-7ca758a8f4f0"
62
+ x="0"
63
+ y="0"
64
+ width="20"
65
+ height="20"
66
+ patternUnits="userSpaceOnUse"
67
+ >
68
+ <rect
69
+ x="0"
70
+ y="0"
71
+ width="4"
72
+ height="4"
73
+ class="{getColorStyles('text', data.color)} opacity-20"
74
+ fill="currentColor"></rect>
75
+ </pattern>
76
+ </defs>
77
+ <rect
78
+ width="404"
79
+ height="784"
80
+ fill="url(#56409614-3d62-4985-9a10-7ca758a8f4f0)"></rect>
81
+ </svg>
82
+ <div
83
+ class="relative flex h-auto flex-col items-center justify-items-center"
84
+ >
85
+ {#each [data.quotes[index]] as quote (index)}
86
+ <div transition:slide={{ duration: 1000, easing:quintInOut, axis: 'y' }}
87
+ class="relative mx-auto w-full lg:flex lg:items-center"
88
+ >
89
+ <div class="hidden lg:block lg:flex-shrink-0">
90
+ <img
91
+ class="h-64 w-64 rounded-full xl:h-80 xl:w-80"
92
+ src="https://teci.imgix.net/www/images/{quote.image}?w=320&fit=facearea,crop&facepad=3&monochrome=9B9B9B&auto=compress&auto=format"
93
+ alt="Image of {quote.fullname}"
94
+ title="{quote.fullname}"
95
+ />
96
+ </div>
97
+ <div class="relative w-full lg:ml-10">
98
+ <svg
99
+ class="absolute top-0 left-0 h-24 w-24 -translate-x-0 -translate-y-12 transform text-teci-blue-light opacity-10 lg:-translate-x-8 lg:-translate-y-10"
100
+ stroke="currentColor"
101
+ fill="none"
102
+ viewBox="0 0 144 144"
103
+ aria-hidden="true"
104
+ >
105
+ <path
106
+ stroke-width="2"
107
+ d="M41.485 15C17.753 31.753 1 59.208 1 89.455c0 24.664 14.891 39.09 32.109 39.09 16.287 0 28.386-13.03 28.386-28.387 0-15.356-10.703-26.524-24.663-26.524-2.792 0-6.515.465-7.446.93 2.327-15.821 17.218-34.435 32.11-43.742L41.485 15zm80.04 0c-23.268 16.753-40.02 44.208-40.02 74.455 0 24.664 14.891 39.09 32.109 39.09 15.822 0 28.386-13.03 28.386-28.387 0-15.356-11.168-26.524-25.129-26.524-2.792 0-6.049.465-6.98.93 2.327-15.821 16.753-34.435 31.644-43.742L121.525 15z"
108
+ ></path>
109
+ </svg>
110
+ <blockquote class="relative block w-full min-w-full">
111
+ <div class="relative w-full text-2xl font-medium leading-9 text-gray-700">
112
+ <p>{@html quote.text}</p>
113
+ <svg
114
+ class="absolute bottom-0 right-0 h-24 w-24 translate-y-8 rotate-180 transform text-teci-blue-light opacity-10"
115
+ stroke="currentColor"
116
+ fill="none"
117
+ viewBox="0 0 144 144"
118
+ aria-hidden="true"
119
+ >
120
+ <path
121
+ stroke-width="2"
122
+ d="M41.485 15C17.753 31.753 1 59.208 1 89.455c0 24.664 14.891 39.09 32.109 39.09 16.287 0 28.386-13.03 28.386-28.387 0-15.356-10.703-26.524-24.663-26.524-2.792 0-6.515.465-7.446.93 2.327-15.821 17.218-34.435 32.11-43.742L41.485 15zm80.04 0c-23.268 16.753-40.02 44.208-40.02 74.455 0 24.664 14.891 39.09 32.109 39.09 15.822 0 28.386-13.03 28.386-28.387 0-15.356-11.168-26.524-25.129-26.524-2.792 0-6.049.465-6.98.93 2.327-15.821 16.753-34.435 31.644-43.742L121.525 15z"
123
+ ></path>
124
+ </svg>
125
+ </div>
126
+ <footer class="mt-8">
127
+ <div class="flex flex-col sm:flex-row justify-between">
128
+ <div class="flex flex-row">
129
+ <div class="flex-shrink-0 lg:hidden">
130
+ <img
131
+ class="h-12 w-12 rounded-full"
132
+ src="https://teci.imgix.net/www/images/{quote.image}?w=48&fit=clip&monochrome=9B9B9B&auto=compress&auto=format"
133
+ alt="Thumbnail Image of {quote.fullname}"
134
+ />
135
+ </div>
136
+ <div class="ml-4 lg:ml-0">
137
+ <div class="text-base text-gray-900">
138
+ {quote.fullname}
139
+ </div>
140
+ <div
141
+ class="text-base font-medium {getColorStyles('text', data.color)}"
142
+ >
143
+ {quote.fulltitle}
144
+ </div>
145
+ </div>
146
+ </div>
147
+ {#if quote.url}
148
+ <div class="sm:pl-4 pb-2 lg:pb-0 pt-4">
149
+ <Button text={quote.link_text || "Read More"} url={quote.url} justify="right" fullwidth=true color={data.color} />
150
+ </div>
151
+ {/if}
152
+ </div>
153
+ </footer>
154
+ </blockquote>
155
+ </div>
156
+ </div>
157
+ {/each}
158
+ <div class="bg-white relative w-half pt-6 md:pt-2 lg:pt-4 flex flex-row space-x-8 justify-center">
159
+ <button type="button" title="Previous" on:click="{prev}">
160
+ <Icon icon="icon-arrow_left" classes="text-4xl text-gray-400" />
161
+ </button>
162
+ <button type="button" title="Next" on:click="{next}">
163
+ <Icon icon="icon-arrow_right" classes="text-4xl text-gray-400" />
164
+ </button>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </section>
@@ -0,0 +1,23 @@
1
+ /** @typedef {typeof __propDef.props} TestimonialProps */
2
+ /** @typedef {typeof __propDef.events} TestimonialEvents */
3
+ /** @typedef {typeof __propDef.slots} TestimonialSlots */
4
+ export default class Testimonial extends SvelteComponent<{
5
+ data?: {};
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {}> {
9
+ }
10
+ export type TestimonialProps = typeof __propDef.props;
11
+ export type TestimonialEvents = typeof __propDef.events;
12
+ export type TestimonialSlots = typeof __propDef.slots;
13
+ import { SvelteComponent } from "svelte";
14
+ declare const __propDef: {
15
+ props: {
16
+ data?: {};
17
+ };
18
+ events: {
19
+ [evt: string]: CustomEvent<any>;
20
+ };
21
+ slots: {};
22
+ };
23
+ export {};
@@ -0,0 +1,20 @@
1
+ <script>
2
+ import Card from "./Card.svelte";
3
+ export let data = {};
4
+ let id
5
+
6
+ if (data.name) {
7
+ id = encodeURIComponent(data.name).toLowerCase()
8
+ }
9
+ </script>
10
+
11
+ <section {id} class="mx-auto w-full">
12
+ {#if data.title}
13
+ <h2 class="sr-only">{data.title}</h2>
14
+ {/if}
15
+ <div class="grid grid-cols-1 gap-4 md:grid-cols-3">
16
+ {#each data.cards as card}
17
+ <Card bind:data={card} bind:halfHeight={data.halfHeight} />
18
+ {/each}
19
+ </div>
20
+ </section>
@@ -0,0 +1,23 @@
1
+ /** @typedef {typeof __propDef.props} ThreeColumnProps */
2
+ /** @typedef {typeof __propDef.events} ThreeColumnEvents */
3
+ /** @typedef {typeof __propDef.slots} ThreeColumnSlots */
4
+ export default class ThreeColumn extends SvelteComponent<{
5
+ data?: {};
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {}> {
9
+ }
10
+ export type ThreeColumnProps = typeof __propDef.props;
11
+ export type ThreeColumnEvents = typeof __propDef.events;
12
+ export type ThreeColumnSlots = typeof __propDef.slots;
13
+ import { SvelteComponent } from "svelte";
14
+ declare const __propDef: {
15
+ props: {
16
+ data?: {};
17
+ };
18
+ events: {
19
+ [evt: string]: CustomEvent<any>;
20
+ };
21
+ slots: {};
22
+ };
23
+ export {};