tecitheme 0.10.5 → 0.10.7
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.
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
/** @typedef {typeof __propDef.slots} ButtonSlots */
|
|
4
4
|
export default class Button extends SvelteComponent<{
|
|
5
5
|
text?: any;
|
|
6
|
+
fullwidth?: any;
|
|
6
7
|
action?: any;
|
|
7
8
|
url?: any;
|
|
8
9
|
color?: any;
|
|
9
10
|
justify?: any;
|
|
10
|
-
fullwidth?: any;
|
|
11
11
|
}, {
|
|
12
12
|
click: MouseEvent;
|
|
13
13
|
} & {
|
|
@@ -21,11 +21,11 @@ import { SvelteComponent } from "svelte";
|
|
|
21
21
|
declare const __propDef: {
|
|
22
22
|
props: {
|
|
23
23
|
text?: any;
|
|
24
|
+
fullwidth?: any;
|
|
24
25
|
action?: any;
|
|
25
26
|
url?: any;
|
|
26
27
|
color?: any;
|
|
27
28
|
justify?: any;
|
|
28
|
-
fullwidth?: any;
|
|
29
29
|
};
|
|
30
30
|
events: {
|
|
31
31
|
click: MouseEvent;
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
<!-- Left Links -->
|
|
95
95
|
{#if links}
|
|
96
96
|
{#each links as link}
|
|
97
|
-
<a href={link.url} class="text-base font-medium hover:text-gray-900">{link.text}</a>
|
|
97
|
+
<a href={link.url} rel="external" class="text-base font-medium hover:text-gray-900">{link.text}</a>
|
|
98
98
|
{/each}
|
|
99
99
|
{/if}
|
|
100
100
|
|
|
@@ -151,6 +151,7 @@
|
|
|
151
151
|
{#each drop.links as link}
|
|
152
152
|
<a
|
|
153
153
|
href={link.url}
|
|
154
|
+
rel="external"
|
|
154
155
|
class="-m-3 flex items-start py-3 px-4 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
155
156
|
>
|
|
156
157
|
<div class="ml-4">
|
|
@@ -169,7 +170,7 @@
|
|
|
169
170
|
<!-- CTA Buttons -->
|
|
170
171
|
{#if ctas}
|
|
171
172
|
{#each ctas as cta}
|
|
172
|
-
<a href={cta.url} class="inline-block btn {getColorStyles('button', cta.color)}">
|
|
173
|
+
<a href={cta.url} rel="external" class="inline-block btn {getColorStyles('button', cta.color)}">
|
|
173
174
|
{cta.text}
|
|
174
175
|
<span class="hidden sm:inline" aria-hidden="true">→</span>
|
|
175
176
|
</a>
|
|
@@ -195,6 +196,7 @@
|
|
|
195
196
|
<!-- Page Home Link -->
|
|
196
197
|
<a
|
|
197
198
|
href={logo_link_url}
|
|
199
|
+
rel="external"
|
|
198
200
|
class="-m-3 flex items-start py-3 px-4 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
199
201
|
>
|
|
200
202
|
<div class="ml-4">
|
|
@@ -207,6 +209,7 @@
|
|
|
207
209
|
{#each links as link}
|
|
208
210
|
<a
|
|
209
211
|
href={link.url}
|
|
212
|
+
rel="external"
|
|
210
213
|
class="-m-3 flex items-start py-3 px-4 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
211
214
|
>
|
|
212
215
|
<div class="ml-4">
|
|
@@ -224,6 +227,7 @@
|
|
|
224
227
|
{#each drop.links as link}
|
|
225
228
|
<a
|
|
226
229
|
href={drop.url}
|
|
230
|
+
rel="external"
|
|
227
231
|
class="flex items-start py-3 px-4 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
228
232
|
>
|
|
229
233
|
<div class="ml-4">
|
|
@@ -240,6 +244,7 @@
|
|
|
240
244
|
{#each ctas as cta}
|
|
241
245
|
<a
|
|
242
246
|
href={cta.url}
|
|
247
|
+
rel="external"
|
|
243
248
|
class="-m-3 flex items-start py-3 px-4 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
244
249
|
>
|
|
245
250
|
<div class="ml-4">
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from "./utils.js";
|
|
|
2
2
|
export { default as getContent } from "./get-content.js";
|
|
3
3
|
export { default as Accordion } from "./components/Accordion.svelte";
|
|
4
4
|
export { default as Banner } from "./components/Banner.svelte";
|
|
5
|
+
export { default as Blocks } from "./layouts/blocks.svelte";
|
|
5
6
|
export { default as Button } from "./components/Button.svelte";
|
|
6
7
|
export { default as Card } from "./components/Card.svelte";
|
|
7
8
|
export { default as CognitoForm } from "./components/CognitoForm.svelte";
|
|
@@ -22,6 +23,7 @@ export { default as MediaFeature } from "./components/MediaFeature.svelte";
|
|
|
22
23
|
export { default as Modal } from "./components/Modal.svelte";
|
|
23
24
|
export { default as NewsGrid } from "./components/NewsGrid.svelte";
|
|
24
25
|
export { default as PageNav } from "./components/PageNav.svelte";
|
|
26
|
+
export { default as PartnersList } from "./components/PartnersList.svelte";
|
|
25
27
|
export { default as PricingTable } from "./components/PricingTable.svelte";
|
|
26
28
|
export { default as SidebarContent } from "./components/SidebarContent.svelte";
|
|
27
29
|
export { default as Stats } from "./components/Stats.svelte";
|
package/dist/index.js
CHANGED
|
@@ -2,6 +2,7 @@ export * from './utils.js';
|
|
|
2
2
|
export { default as getContent } from './get-content.js';
|
|
3
3
|
export { default as Accordion } from './components/Accordion.svelte';
|
|
4
4
|
export { default as Banner } from './components/Banner.svelte';
|
|
5
|
+
export { default as Blocks } from './layouts/blocks.svelte';
|
|
5
6
|
export { default as Button } from './components/Button.svelte';
|
|
6
7
|
export { default as Card } from './components/Card.svelte';
|
|
7
8
|
export { default as CognitoForm } from './components/CognitoForm.svelte';
|
|
@@ -22,6 +23,7 @@ export { default as MediaFeature } from './components/MediaFeature.svelte';
|
|
|
22
23
|
export { default as Modal } from './components/Modal.svelte';
|
|
23
24
|
export { default as NewsGrid } from './components/NewsGrid.svelte';
|
|
24
25
|
export { default as PageNav } from './components/PageNav.svelte';
|
|
26
|
+
export { default as PartnersList} from './components/PartnersList.svelte';
|
|
25
27
|
export { default as PricingTable } from './components/PricingTable.svelte';
|
|
26
28
|
export { default as SidebarContent } from './components/SidebarContent.svelte';
|
|
27
29
|
export { default as Stats } from './components/Stats.svelte';
|