tecitheme 0.1.0 → 0.1.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/components/Header.svelte +9 -9
- package/package.json +1 -1
package/components/Header.svelte
CHANGED
|
@@ -81,14 +81,14 @@
|
|
|
81
81
|
|
|
82
82
|
<!-- Flyout menu -->
|
|
83
83
|
{#if openMenu == 'products'}
|
|
84
|
-
<div
|
|
84
|
+
<div
|
|
85
85
|
class="absolute inset-x-0 top-full z-10 transform bg-white shadow-lg"
|
|
86
86
|
use:clickOutside
|
|
87
87
|
on:outclick="{() => (openMenu = '')}"
|
|
88
88
|
in:slide="{{ duration: 250, easing: cubicOut }}"
|
|
89
89
|
out:slide="{{ duration: 150, easing: cubicIn }}"
|
|
90
90
|
>
|
|
91
|
-
<div
|
|
91
|
+
<div on:click="{() => (openMenu = '')}"
|
|
92
92
|
class="mx-auto grid max-w-7xl gap-y-8 px-4 py-8 sm:grid-cols-2 sm:gap-8 sm:px-6 lg:grid-cols-3 lg:px-8"
|
|
93
93
|
>
|
|
94
94
|
<a
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
|
|
184
184
|
<!-- Action Buttons -->
|
|
185
185
|
<div class="relative bg-gray-50">
|
|
186
|
-
<div
|
|
186
|
+
<div on:click="{() => (openMenu = '')}"
|
|
187
187
|
class="mx-auto max-w-7xl space-y-6 px-4 py-5 sm:flex sm:space-y-0 sm:space-x-10 sm:px-6 lg:px-8"
|
|
188
188
|
>
|
|
189
189
|
<div class="flow-root">
|
|
@@ -295,7 +295,7 @@
|
|
|
295
295
|
in:slide="{{ duration: 250, easing: cubicOut }}"
|
|
296
296
|
out:slide="{{ duration: 150, easing: cubicIn }}"
|
|
297
297
|
>
|
|
298
|
-
<div
|
|
298
|
+
<div on:click="{() => (openMenu = '')}"
|
|
299
299
|
class="relative grid gap-6 bg-white px-5 py-6 sm:gap-8 sm:p-8"
|
|
300
300
|
>
|
|
301
301
|
<a
|
|
@@ -406,7 +406,7 @@
|
|
|
406
406
|
</div>
|
|
407
407
|
</a>
|
|
408
408
|
</div>
|
|
409
|
-
<div
|
|
409
|
+
<div on:click="{() => (openMenu = '')}"
|
|
410
410
|
class="space-y-6 bg-gray-50 px-5 py-5 sm:flex sm:space-y-0 sm:space-x-10 sm:px-8"
|
|
411
411
|
>
|
|
412
412
|
<div class="flow-root">
|
|
@@ -495,7 +495,7 @@
|
|
|
495
495
|
in:slide="{{ duration: 250, easing: cubicOut }}"
|
|
496
496
|
out:slide="{{ duration: 150, easing: cubicIn }}"
|
|
497
497
|
>
|
|
498
|
-
<div
|
|
498
|
+
<div on:click="{() => (openMenu = '')}"
|
|
499
499
|
class="relative grid gap-6 bg-white px-5 py-6 sm:gap-8 sm:p-8"
|
|
500
500
|
>
|
|
501
501
|
<a
|
|
@@ -576,7 +576,7 @@
|
|
|
576
576
|
</div>
|
|
577
577
|
</a>
|
|
578
578
|
</div>
|
|
579
|
-
<div
|
|
579
|
+
<div on:click="{() => (openMenu = '')}"
|
|
580
580
|
class="space-y-6 bg-gray-50 px-5 py-5 sm:flex sm:space-y-0 sm:space-x-10 sm:px-8"
|
|
581
581
|
>
|
|
582
582
|
<div class="flow-root">
|
|
@@ -664,7 +664,7 @@
|
|
|
664
664
|
in:slide="{{ duration: 250, easing: cubicOut }}"
|
|
665
665
|
out:slide="{{ duration: 150, easing: cubicIn }}"
|
|
666
666
|
>
|
|
667
|
-
<div
|
|
667
|
+
<div on:click="{() => (openMenu = '')}"
|
|
668
668
|
class="relative grid gap-6 bg-white px-5 py-6 sm:gap-8 sm:p-8"
|
|
669
669
|
>
|
|
670
670
|
<a
|
|
@@ -746,7 +746,7 @@
|
|
|
746
746
|
</a>
|
|
747
747
|
|
|
748
748
|
<a
|
|
749
|
-
href="https://www.thunderheadeng.com/pyrosim/licensing
|
|
749
|
+
href="https://www.thunderheadeng.com/pyrosim/licensing#international-distributors"
|
|
750
750
|
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
751
751
|
>
|
|
752
752
|
<svg
|