tecitheme 0.2.1 → 0.2.3

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.
@@ -1,9 +1,9 @@
1
1
  <script>
2
- import Icon from './Icon.svelte';
3
- import { slide } from 'svelte/transition';
4
- import { cubicIn, cubicOut } from 'svelte/easing';
2
+ import Icon from "./Icon.svelte";
3
+ import { slide } from "svelte/transition";
4
+ import { cubicIn, cubicOut } from "svelte/easing";
5
5
 
6
- let openMenu = '';
6
+ let openMenu = "";
7
7
 
8
8
  export function clickOutside(node) {
9
9
  const handleClick = (event) => {
@@ -11,29 +11,34 @@
11
11
  !node.contains(event.target) &&
12
12
  event.target.innerText.toLowerCase() != node.parentElement.id
13
13
  ) {
14
- node.dispatchEvent(new CustomEvent('outclick'));
14
+ node.dispatchEvent(new CustomEvent("outclick"));
15
15
  }
16
16
  };
17
- document.addEventListener('click', handleClick, true);
17
+ document.addEventListener("click", handleClick, true);
18
18
  return {
19
19
  destroy() {
20
- document.removeEventListener('click', handleClick, true);
20
+ document.removeEventListener("click", handleClick, true);
21
21
  },
22
22
  };
23
23
  }
24
24
 
25
25
  function handleEscape({ key }) {
26
- if (key === 'Escape') {
27
- openMenu = '';
26
+ if (key === "Escape") {
27
+ openMenu = "";
28
28
  }
29
29
  }
30
30
  </script>
31
31
 
32
- <svelte:window on:keyup="{handleEscape}" />
32
+ <svelte:window on:keyup={handleEscape} />
33
33
 
34
34
  <header class="relative bg-white">
35
- <div aria-hidden="true" class="pointer-events-none absolute inset-0 z-30 shadow"></div>
36
- <div class="relative mx-auto flex max-w-7xl items-center justify-between px-4 py-5 sm:px-6 sm:py-4 md:justify-start md:space-x-6 lg:space-x-10 lg:px-8">
35
+ <div
36
+ aria-hidden="true"
37
+ class="pointer-events-none absolute inset-0 z-30 shadow"
38
+ />
39
+ <div
40
+ class="relative mx-auto flex max-w-7xl items-center justify-between px-4 py-5 sm:px-6 sm:py-4 md:justify-start md:space-x-6 lg:space-x-10 lg:px-8"
41
+ >
37
42
  <!-- Nav Icon Linked to WWW Homepage -->
38
43
  <div class="flex-shrink-0">
39
44
  <a href="https://www.thunderheadeng.com" class="flex">
@@ -47,12 +52,16 @@
47
52
  <nav class="flex md:space-x-6 lg:space-x-10">
48
53
  <!-- Products -->
49
54
  <div id="products">
50
- <button type="button"
51
- on:click={() => (openMenu == 'products')?(openMenu = ''):(openMenu = 'products')}
52
- class="text-left group inline-flex items-center bg-white text-base font-medium text-gray-500 hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-teci-blue-light focus:ring-offset-2"
53
- aria-expanded="{openMenu == 'products'}"
55
+ <button
56
+ type="button"
57
+ on:click={() =>
58
+ openMenu == "products"
59
+ ? (openMenu = "")
60
+ : (openMenu = "products")}
61
+ class="group inline-flex items-center bg-white text-left text-base font-medium text-gray-500 hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-teci-blue-light focus:ring-offset-2"
62
+ aria-expanded={openMenu == "products"}
54
63
  >
55
- <span class:text-gray-900="{openMenu == 'products'}">Products</span>
64
+ <span class:text-gray-900={openMenu == "products"}>Products</span>
56
65
  <svg
57
66
  class="ml-2 h-5 w-5 group-hover:text-gray-900 {openMenu ==
58
67
  'products'
@@ -66,21 +75,23 @@
66
75
  <path
67
76
  fill-rule="evenodd"
68
77
  d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
69
- clip-rule="evenodd"></path>
78
+ clip-rule="evenodd"
79
+ />
70
80
  </svg>
71
81
  </button>
72
82
 
73
83
  <!-- Flyout menu -->
74
- {#if openMenu == 'products'}
75
- <div
76
- class="text-left absolute inset-x-0 top-full z-10 transform bg-white shadow-lg"
84
+ {#if openMenu == "products"}
85
+ <div
86
+ class="absolute inset-x-0 top-full z-10 transform bg-white text-left shadow-lg"
77
87
  use:clickOutside
78
- on:outclick="{() => (openMenu = '')}"
79
- in:slide="{{ duration: 250, easing: cubicOut }}"
80
- out:slide="{{ duration: 150, easing: cubicIn }}"
88
+ on:outclick={() => (openMenu = "")}
89
+ in:slide={{ duration: 250, easing: cubicOut }}
90
+ out:slide={{ duration: 150, easing: cubicIn }}
81
91
  >
82
- <button on:click={() => (openMenu = '')}
83
- class="text-left 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"
92
+ <button
93
+ on:click={() => (openMenu = "")}
94
+ class="mx-auto grid max-w-7xl gap-y-8 px-4 py-8 text-left sm:grid-cols-2 sm:gap-8 sm:px-6 lg:grid-cols-3 lg:px-8"
84
95
  >
85
96
  <a
86
97
  href="https://www.thunderheadeng.com/pyrosim/"
@@ -174,7 +185,8 @@
174
185
 
175
186
  <!-- Action Buttons -->
176
187
  <div class="relative bg-gray-50 text-left">
177
- <button on:click="{() => (openMenu = '')}"
188
+ <button
189
+ on:click={() => (openMenu = "")}
178
190
  class="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"
179
191
  >
180
192
  <div class="flow-root">
@@ -194,7 +206,7 @@
194
206
  stroke-linejoin="round"
195
207
  stroke-width="2"
196
208
  d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"
197
- ></path>
209
+ />
198
210
  </svg>
199
211
  <span class="ml-3">Order Online</span>
200
212
  </a>
@@ -217,7 +229,7 @@
217
229
  stroke-linejoin="round"
218
230
  stroke-width="2"
219
231
  d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
220
- ></path>
232
+ />
221
233
  </svg>
222
234
  <span class="ml-3">30-day Trial</span>
223
235
  </a>
@@ -240,7 +252,7 @@
240
252
  stroke-linejoin="round"
241
253
  stroke-width="2"
242
254
  d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
243
- ></path>
255
+ />
244
256
  </svg>
245
257
  <span class="ml-3">Contact Sales</span>
246
258
  </a>
@@ -255,12 +267,12 @@
255
267
  <div id="support" class="relative">
256
268
  <button
257
269
  type="button"
258
- on:click="{() =>
259
- openMenu == 'support' ? (openMenu = '') : (openMenu = 'support')}"
270
+ on:click={() =>
271
+ openMenu == "support" ? (openMenu = "") : (openMenu = "support")}
260
272
  class="group inline-flex items-center bg-white text-base font-medium text-gray-500 hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-teci-blue-light focus:ring-offset-2"
261
- aria-expanded="{openMenu == 'support'}"
273
+ aria-expanded={openMenu == "support"}
262
274
  >
263
- <span class:text-gray-900="{openMenu == 'support'}">Support</span>
275
+ <span class:text-gray-900={openMenu == "support"}>Support</span>
264
276
  <svg
265
277
  class="ml-2 h-5 w-5 group-hover:text-gray-900 {openMenu ===
266
278
  'support'
@@ -274,20 +286,22 @@
274
286
  <path
275
287
  fill-rule="evenodd"
276
288
  d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
277
- clip-rule="evenodd"></path>
289
+ clip-rule="evenodd"
290
+ />
278
291
  </svg>
279
292
  </button>
280
293
 
281
- {#if openMenu == 'support'}
294
+ {#if openMenu == "support"}
282
295
  <div
283
- class="text-left absolute left-1/2 z-40 mt-3 w-screen max-w-md -translate-x-1/2 transform overflow-hidden px-2 shadow-lg ring-1 ring-black ring-opacity-5 sm:px-0"
296
+ class="absolute left-1/2 z-40 mt-3 w-screen max-w-md -translate-x-1/2 transform overflow-hidden px-2 text-left shadow-lg ring-1 ring-black ring-opacity-5 sm:px-0"
284
297
  use:clickOutside
285
- on:outclick="{() => (openMenu = '')}"
286
- in:slide="{{ duration: 250, easing: cubicOut }}"
287
- out:slide="{{ duration: 150, easing: cubicIn }}"
298
+ on:outclick={() => (openMenu = "")}
299
+ in:slide={{ duration: 250, easing: cubicOut }}
300
+ out:slide={{ duration: 150, easing: cubicIn }}
288
301
  >
289
- <button on:click="{() => (openMenu = '')}"
290
- class="text-left w-full relative grid gap-6 bg-white px-5 py-6 sm:gap-8 sm:p-8"
302
+ <button
303
+ on:click={() => (openMenu = "")}
304
+ class="relative grid w-full gap-6 bg-white px-5 py-6 text-left sm:gap-8 sm:p-8"
291
305
  >
292
306
  <a
293
307
  href="https://support.thunderheadeng.com/docs/"
@@ -305,7 +319,7 @@
305
319
  stroke-linejoin="round"
306
320
  stroke-width="2"
307
321
  d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"
308
- ></path>
322
+ />
309
323
  </svg>
310
324
  <div class="ml-4">
311
325
  <p class="text-base font-medium text-gray-900">
@@ -333,7 +347,7 @@
333
347
  stroke-linejoin="round"
334
348
  stroke-width="2"
335
349
  d="M8 14v3m4-3v3m4-3v3M3 21h18M3 10h18M3 7l9-4 9 4M4 10h16v11H4V10z"
336
- ></path>
350
+ />
337
351
  </svg>
338
352
  <div class="ml-4">
339
353
  <p class="text-base font-medium text-gray-900">Tutorials</p>
@@ -359,7 +373,7 @@
359
373
  stroke-linejoin="round"
360
374
  stroke-width="2"
361
375
  d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
362
- ></path>
376
+ />
363
377
  </svg>
364
378
  <div class="ml-4">
365
379
  <p class="text-base font-medium text-gray-900">
@@ -387,7 +401,7 @@
387
401
  stroke-linejoin="round"
388
402
  stroke-width="2"
389
403
  d="M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
390
- ></path>
404
+ />
391
405
  </svg>
392
406
  <div class="ml-4">
393
407
  <p class="text-base font-medium text-gray-900">FAQs</p>
@@ -397,7 +411,8 @@
397
411
  </div>
398
412
  </a>
399
413
  </button>
400
- <button on:click="{() => (openMenu = '')}"
414
+ <button
415
+ on:click={() => (openMenu = "")}
401
416
  class="w-full space-y-6 bg-gray-50 px-5 py-5 sm:flex sm:space-y-0 sm:space-x-10 sm:px-8"
402
417
  >
403
418
  <div class="flow-root">
@@ -418,7 +433,7 @@
418
433
  stroke-linejoin="round"
419
434
  stroke-width="2"
420
435
  d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
421
- ></path>
436
+ />
422
437
  </svg>
423
438
  <span class="ml-3">User Forum</span>
424
439
  </a>
@@ -441,7 +456,7 @@
441
456
  stroke-linejoin="round"
442
457
  stroke-width="2"
443
458
  d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
444
- ></path>
459
+ />
445
460
  </svg>
446
461
  <span class="ml-3">Contact Support</span>
447
462
  </a>
@@ -455,11 +470,12 @@
455
470
  <div id="events" class="relative">
456
471
  <button
457
472
  type="button"
458
- on:click="{() => openMenu == 'events' ? (openMenu = '') : (openMenu = 'events')}"
473
+ on:click={() =>
474
+ openMenu == "events" ? (openMenu = "") : (openMenu = "events")}
459
475
  class="group inline-flex items-center bg-white text-base font-medium text-gray-500 hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-teci-blue-light focus:ring-offset-2"
460
- aria-expanded="{openMenu == 'events'}"
476
+ aria-expanded={openMenu == "events"}
461
477
  >
462
- <span class:text-gray-900="{openMenu == 'events'}">Events</span>
478
+ <span class:text-gray-900={openMenu == "events"}>Events</span>
463
479
  <svg
464
480
  class="ml-2 h-5 w-5 text-gray-400 group-hover:text-gray-900 {openMenu ===
465
481
  'events'
@@ -473,20 +489,22 @@
473
489
  <path
474
490
  fill-rule="evenodd"
475
491
  d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
476
- clip-rule="evenodd"></path>
492
+ clip-rule="evenodd"
493
+ />
477
494
  </svg>
478
495
  </button>
479
496
 
480
- {#if openMenu == 'events'}
497
+ {#if openMenu == "events"}
481
498
  <div
482
499
  class="absolute left-1/2 z-40 mt-3 w-screen max-w-md -translate-x-1/2 transform overflow-hidden px-2 shadow-lg ring-1 ring-black ring-opacity-5 sm:px-0"
483
500
  use:clickOutside
484
- on:outclick="{() => (openMenu = '')}"
485
- in:slide="{{ duration: 250, easing: cubicOut }}"
486
- out:slide="{{ duration: 150, easing: cubicIn }}"
501
+ on:outclick={() => (openMenu = "")}
502
+ in:slide={{ duration: 250, easing: cubicOut }}
503
+ out:slide={{ duration: 150, easing: cubicIn }}
487
504
  >
488
- <button on:click="{() => (openMenu = '')}"
489
- class="relative w-full text-left grid gap-6 bg-white px-5 py-6 sm:gap-8 sm:p-8"
505
+ <button
506
+ on:click={() => (openMenu = "")}
507
+ class="relative grid w-full gap-6 bg-white px-5 py-6 text-left sm:gap-8 sm:p-8"
490
508
  >
491
509
  <a
492
510
  href="https://www.thunderheadeng.com/training/"
@@ -504,7 +522,7 @@
504
522
  stroke-linejoin="round"
505
523
  stroke-width="2"
506
524
  d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
507
- ></path>
525
+ />
508
526
  </svg>
509
527
  <div class="ml-4">
510
528
  <p class="text-base font-medium text-gray-900">Calendar</p>
@@ -530,7 +548,7 @@
530
548
  stroke-linejoin="round"
531
549
  stroke-width="2"
532
550
  d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
533
- ></path>
551
+ />
534
552
  </svg>
535
553
  <div class="ml-4">
536
554
  <p class="text-base font-medium text-gray-900">FEMTC</p>
@@ -556,7 +574,7 @@
556
574
  stroke-linejoin="round"
557
575
  stroke-width="2"
558
576
  d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122"
559
- ></path>
577
+ />
560
578
  </svg>
561
579
  <div class="ml-4">
562
580
  <p class="text-base font-medium text-gray-900">Training</p>
@@ -566,8 +584,9 @@
566
584
  </div>
567
585
  </a>
568
586
  </button>
569
- <button on:click="{() => (openMenu = '')}"
570
- class="w-full text-left space-y-6 bg-gray-50 px-5 py-5 sm:flex sm:space-y-0 sm:space-x-10 sm:px-8"
587
+ <button
588
+ on:click={() => (openMenu = "")}
589
+ class="w-full space-y-6 bg-gray-50 px-5 py-5 text-left sm:flex sm:space-y-0 sm:space-x-10 sm:px-8"
571
590
  >
572
591
  <div class="flow-root">
573
592
  <a
@@ -586,7 +605,7 @@
586
605
  stroke-linejoin="round"
587
606
  stroke-width="2"
588
607
  d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
589
- ></path>
608
+ />
590
609
  </svg>
591
610
  <span class="ml-3">Register</span>
592
611
  </a>
@@ -609,7 +628,7 @@
609
628
  stroke-linejoin="round"
610
629
  stroke-width="2"
611
630
  d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
612
- ></path>
631
+ />
613
632
  </svg>
614
633
  <span class="ml-3">Contact Training</span>
615
634
  </a>
@@ -623,12 +642,12 @@
623
642
  <div id="company" class="relative">
624
643
  <button
625
644
  type="button"
626
- on:click="{() =>
627
- openMenu == 'company' ? (openMenu = '') : (openMenu = 'company')}"
645
+ on:click={() =>
646
+ openMenu == "company" ? (openMenu = "") : (openMenu = "company")}
628
647
  class="group inline-flex items-center bg-white text-base font-medium text-gray-500 hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-teci-blue-light focus:ring-offset-2"
629
- aria-expanded="{openMenu == 'company'}"
648
+ aria-expanded={openMenu == "company"}
630
649
  >
631
- <span class:text-gray-900="{openMenu == 'company'}">Company</span>
650
+ <span class:text-gray-900={openMenu == "company"}>Company</span>
632
651
  <svg
633
652
  class="ml-2 h-5 w-5 group-hover:text-gray-900 {openMenu ===
634
653
  'company'
@@ -642,20 +661,22 @@
642
661
  <path
643
662
  fill-rule="evenodd"
644
663
  d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
645
- clip-rule="evenodd"></path>
664
+ clip-rule="evenodd"
665
+ />
646
666
  </svg>
647
667
  </button>
648
668
 
649
- {#if openMenu == 'company'}
669
+ {#if openMenu == "company"}
650
670
  <div
651
671
  class="absolute left-1/2 z-40 mt-3 w-screen max-w-md -translate-x-1/2 transform overflow-hidden px-2 shadow-lg ring-1 ring-black ring-opacity-5 sm:px-0"
652
672
  use:clickOutside
653
- on:outclick="{() => (openMenu = '')}"
654
- in:slide="{{ duration: 250, easing: cubicOut }}"
655
- out:slide="{{ duration: 150, easing: cubicIn }}"
673
+ on:outclick={() => (openMenu = "")}
674
+ in:slide={{ duration: 250, easing: cubicOut }}
675
+ out:slide={{ duration: 150, easing: cubicIn }}
656
676
  >
657
- <button on:click="{() => (openMenu = '')}"
658
- class="w-full text-left relative grid gap-6 bg-white px-5 py-6 sm:gap-8 sm:p-8"
677
+ <button
678
+ on:click={() => (openMenu = "")}
679
+ class="relative grid w-full gap-6 bg-white px-5 py-6 text-left sm:gap-8 sm:p-8"
659
680
  >
660
681
  <a
661
682
  href="https://www.thunderheadeng.com/about/"
@@ -673,7 +694,7 @@
673
694
  stroke-linejoin="round"
674
695
  stroke-width="2"
675
696
  d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
676
- ></path>
697
+ />
677
698
  </svg>
678
699
  <div class="ml-4">
679
700
  <p class="text-base font-medium text-gray-900">About</p>
@@ -699,7 +720,7 @@
699
720
  stroke-linejoin="round"
700
721
  stroke-width="2"
701
722
  d="M11 5.882V19.24a1.76 1.76 0 01-3.417.592l-2.147-6.15M18 13a3 3 0 100-6M5.436 13.683A4.001 4.001 0 017 6h1.832c4.1 0 7.625-1.234 9.168-3v14c-1.543-1.766-5.067-3-9.168-3H7a3.988 3.988 0 01-1.564-.317z"
702
- ></path>
723
+ />
703
724
  </svg>
704
725
  <div class="ml-4">
705
726
  <p class="text-base font-medium text-gray-900">News</p>
@@ -725,7 +746,7 @@
725
746
  stroke-linejoin="round"
726
747
  stroke-width="2"
727
748
  d="M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
728
- ></path>
749
+ />
729
750
  </svg>
730
751
  <div class="ml-4">
731
752
  <p class="text-base font-medium text-gray-900">Jobs</p>
@@ -751,7 +772,7 @@
751
772
  stroke-linejoin="round"
752
773
  stroke-width="2"
753
774
  d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"
754
- ></path>
775
+ />
755
776
  </svg>
756
777
  <div class="ml-4">
757
778
  <p class="text-base font-medium text-gray-900">Partners</p>
@@ -792,7 +813,8 @@
792
813
  <path
793
814
  fill-rule="evenodd"
794
815
  d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z"
795
- clip-rule="evenodd"></path>
816
+ clip-rule="evenodd"
817
+ />
796
818
  </svg>
797
819
  </div>
798
820
  <input
@@ -827,7 +849,7 @@
827
849
  stroke-linejoin="round"
828
850
  stroke-width="2"
829
851
  d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"
830
- ></path>
852
+ />
831
853
  </svg>
832
854
  </a>
833
855
  </div>
@@ -848,7 +870,7 @@
848
870
  stroke-linejoin="round"
849
871
  stroke-width="2"
850
872
  d="M5.121 17.804A13.937 13.937 0 0112 16c2.5 0 4.847.655 6.879 1.804M15 10a3 3 0 11-6 0 3 3 0 016 0zm6 2a9 9 0 11-18 0 9 9 0 0118 0z"
851
- ></path>
873
+ />
852
874
  </svg>
853
875
  </a>
854
876
  </div>
@@ -859,9 +881,9 @@
859
881
  <div class="md:hidden">
860
882
  <button
861
883
  type="button"
862
- on:click="{() => (openMenu = 'mobile')}"
884
+ on:click={() => (openMenu = "mobile")}
863
885
  class="inline-flex items-center justify-center border border-gray-200 bg-white p-2 text-gray-400 hover:bg-gray-100 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-teci-blue-light"
864
- aria-expanded="{openMenu == 'mobile'}"
886
+ aria-expanded={openMenu == "mobile"}
865
887
  >
866
888
  <span class="sr-only">Open mobile menu</span>
867
889
 
@@ -877,24 +899,29 @@
877
899
  stroke-linecap="round"
878
900
  stroke-linejoin="round"
879
901
  stroke-width="2"
880
- d="M4 6h16M4 12h16M4 18h16"></path>
902
+ d="M4 6h16M4 12h16M4 18h16"
903
+ />
881
904
  </svg>
882
905
  </button>
883
906
  </div>
884
907
  </div>
885
908
 
886
909
  <!-- Mobile menu, show/hide based on mobile menu state.-->
887
- {#if openMenu == 'mobile'}
910
+ {#if openMenu == "mobile"}
888
911
  <div
889
912
  class="absolute inset-x-0 top-0 z-30 divide-y-2 divide-gray-50 bg-white shadow-lg ring-1 ring-black ring-opacity-5 md:hidden"
890
913
  use:clickOutside
891
- on:outclick="{() => (openMenu = '')}"
892
- in:slide="{{ duration: 250, easing: cubicOut }}"
893
- out:slide="{{ duration: 150, easing: cubicIn }}"
914
+ on:outclick={() => (openMenu = "")}
915
+ in:slide={{ duration: 250, easing: cubicOut }}
916
+ out:slide={{ duration: 150, easing: cubicIn }}
894
917
  >
895
918
  <div class="px-4 pt-5 pb-6 sm:pb-8">
896
919
  <div class="flex items-center justify-between">
897
- <a on:click="{() => (openMenu = '')}" class="block" href="https://www.thunderheadeng.com">
920
+ <a
921
+ on:click={() => (openMenu = "")}
922
+ class="block"
923
+ href="https://www.thunderheadeng.com"
924
+ >
898
925
  <img
899
926
  class="h-10 w-auto"
900
927
  src="https://files.thunderheadeng.com/www/images/teci_logo.svg"
@@ -904,7 +931,7 @@
904
931
 
905
932
  <button
906
933
  type="button"
907
- on:click="{() => (openMenu = '')}"
934
+ on:click={() => (openMenu = "")}
908
935
  class="inline-flex items-center justify-center border border-gray-200 bg-white p-2 text-gray-400 hover:bg-gray-100 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-teci-blue-light"
909
936
  >
910
937
  <span class="sr-only">Close menu</span>
@@ -921,11 +948,12 @@
921
948
  stroke-linecap="round"
922
949
  stroke-linejoin="round"
923
950
  stroke-width="2"
924
- d="M6 18L18 6M6 6l12 12"></path>
951
+ d="M6 18L18 6M6 6l12 12"
952
+ />
925
953
  </svg>
926
954
  </button>
927
955
  </div>
928
- <button on:click="{() => (openMenu = '')}" class="mt-6 sm:mt-8 w-full">
956
+ <button on:click={() => (openMenu = "")} class="mt-6 w-full sm:mt-8">
929
957
  <nav>
930
958
  <div class="grid gap-7 sm:grid-cols-2 sm:gap-y-8 sm:gap-x-4">
931
959
  <a href="/" class="-m-3 flex items-center p-3 hover:bg-gray-50">
@@ -944,7 +972,7 @@
944
972
  stroke-linejoin="round"
945
973
  stroke-width="2"
946
974
  d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"
947
- ></path>
975
+ />
948
976
  </svg>
949
977
  </div>
950
978
  <div class="ml-4 text-base font-medium text-gray-900">
@@ -970,7 +998,7 @@
970
998
  stroke-linejoin="round"
971
999
  stroke-width="2"
972
1000
  d="M18.364 5.636l-3.536 3.536m0 5.656l3.536 3.536M9.172 9.172L5.636 5.636m3.536 9.192l-3.536 3.536M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-5 0a4 4 0 11-8 0 4 4 0 018 0z"
973
- ></path>
1001
+ />
974
1002
  </svg>
975
1003
  </div>
976
1004
  <div class="ml-4 text-base font-medium text-gray-900">
@@ -996,7 +1024,7 @@
996
1024
  stroke-linejoin="round"
997
1025
  stroke-width="2"
998
1026
  d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
999
- ></path>
1027
+ />
1000
1028
  </svg>
1001
1029
  </div>
1002
1030
  <div class="ml-4 text-base font-medium text-gray-900">
@@ -1021,7 +1049,7 @@
1021
1049
  stroke-linejoin="round"
1022
1050
  stroke-width="2"
1023
1051
  d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
1024
- ></path></svg
1052
+ /></svg
1025
1053
  >
1026
1054
  </div>
1027
1055
  <div class="ml-4 text-base font-medium text-gray-900">
@@ -1047,7 +1075,7 @@
1047
1075
  stroke-linejoin="round"
1048
1076
  stroke-width="2"
1049
1077
  d="M14.828 14.828a4 4 0 01-5.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
1050
- ></path>
1078
+ />
1051
1079
  </svg>
1052
1080
  </div>
1053
1081
  <div class="ml-4 text-base font-medium text-gray-900">
@@ -1058,7 +1086,10 @@
1058
1086
  </nav>
1059
1087
  </button>
1060
1088
  </div>
1061
- <button on:click="{() => (openMenu = '')}" class="py-6 px-5 w-full text-left">
1089
+ <button
1090
+ on:click={() => (openMenu = "")}
1091
+ class="w-full py-6 px-5 text-left"
1092
+ >
1062
1093
  <div class="grid grid-cols-2 gap-4">
1063
1094
  <div class="flow-root">
1064
1095
  <a
@@ -1077,7 +1108,7 @@
1077
1108
  stroke-linejoin="round"
1078
1109
  stroke-width="2"
1079
1110
  d="M11 5.882V19.24a1.76 1.76 0 01-3.417.592l-2.147-6.15M18 13a3 3 0 100-6M5.436 13.683A4.001 4.001 0 017 6h1.832c4.1 0 7.625-1.234 9.168-3v14c-1.543-1.766-5.067-3-9.168-3H7a3.988 3.988 0 01-1.564-.317z"
1080
- ></path>
1111
+ />
1081
1112
  </svg>
1082
1113
  <span class="ml-3">News</span>
1083
1114
  </a>
@@ -1099,7 +1130,7 @@
1099
1130
  stroke-linejoin="round"
1100
1131
  stroke-width="2"
1101
1132
  d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
1102
- ></path>
1133
+ />
1103
1134
  </svg>
1104
1135
  <span class="ml-3">Release Notes</span>
1105
1136
  </a>
@@ -1121,7 +1152,7 @@
1121
1152
  stroke-linejoin="round"
1122
1153
  stroke-width="2"
1123
1154
  d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"
1124
- ></path>
1155
+ />
1125
1156
  </svg>
1126
1157
  <span class="ml-3">Order Online</span>
1127
1158
  </a>
@@ -1142,7 +1173,8 @@
1142
1173
  stroke-linecap="round"
1143
1174
  stroke-linejoin="round"
1144
1175
  stroke-width="2"
1145
- d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
1176
+ d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
1177
+ />
1146
1178
  </svg>
1147
1179
  <span class="ml-3">30-day Trial</span>
1148
1180
  </a>
@@ -1164,7 +1196,7 @@
1164
1196
  stroke-linejoin="round"
1165
1197
  stroke-width="2"
1166
1198
  d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
1167
- ></path>
1199
+ />
1168
1200
  </svg>
1169
1201
  <span class="ml-3">Sales</span>
1170
1202
  </a>
@@ -1186,7 +1218,7 @@
1186
1218
  stroke-linejoin="round"
1187
1219
  stroke-width="2"
1188
1220
  d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
1189
- ></path>
1221
+ />
1190
1222
  </svg>
1191
1223
  <span class="ml-3">Support</span>
1192
1224
  </a>