tecitheme 0.6.2 → 0.7.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 (39) hide show
  1. package/dist/assets/TECi_logo.svelte.d.ts +2 -2
  2. package/dist/assets/js/store.d.ts +1 -0
  3. package/dist/components/Accordion.svelte.d.ts +2 -2
  4. package/dist/components/Banner.svelte.d.ts +5 -3
  5. package/dist/components/Button.svelte +2 -1
  6. package/dist/components/Button.svelte.d.ts +4 -2
  7. package/dist/components/CTA.svelte.d.ts +2 -2
  8. package/dist/components/CTASplitImage.svelte.d.ts +2 -2
  9. package/dist/components/Card.svelte.d.ts +2 -2
  10. package/dist/components/CognitoForm.svelte +21 -0
  11. package/dist/components/CognitoForm.svelte.d.ts +27 -0
  12. package/dist/components/ContentTwoColumns.svelte.d.ts +2 -2
  13. package/dist/components/CountrySelector.svelte.d.ts +2 -2
  14. package/dist/components/FeatureGrid.svelte.d.ts +2 -2
  15. package/dist/components/Figure.svelte.d.ts +2 -2
  16. package/dist/components/Footer.svelte +15 -23
  17. package/dist/components/Footer.svelte.d.ts +2 -2
  18. package/dist/components/Header.svelte +46 -98
  19. package/dist/components/Header.svelte.d.ts +2 -2
  20. package/dist/components/HeadingCentered.svelte.d.ts +2 -2
  21. package/dist/components/Hero.svelte.d.ts +2 -2
  22. package/dist/components/Icon.svelte.d.ts +2 -2
  23. package/dist/components/LogoCloud.svelte.d.ts +2 -2
  24. package/dist/components/Math.svelte.d.ts +2 -2
  25. package/dist/components/MediaFeature.svelte.d.ts +2 -2
  26. package/dist/components/Modal.svelte.d.ts +2 -2
  27. package/dist/components/NewsGrid.svelte.d.ts +2 -2
  28. package/dist/components/PricingTable.svelte +12 -10
  29. package/dist/components/PricingTable.svelte.d.ts +2 -2
  30. package/dist/components/SidebarContent.svelte.d.ts +2 -2
  31. package/dist/components/Stats.svelte.d.ts +2 -2
  32. package/dist/components/Testimonial.svelte +26 -29
  33. package/dist/components/Testimonial.svelte.d.ts +2 -2
  34. package/dist/components/ThreeColumn.svelte.d.ts +2 -2
  35. package/dist/components/TrialForm.svelte.d.ts +2 -2
  36. package/dist/components/Video.svelte.d.ts +2 -2
  37. package/dist/components/Wrap.svelte.d.ts +2 -2
  38. package/dist/layouts/blocks.svelte.d.ts +2 -2
  39. package/package.json +24 -24
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} TeCiLogoProps */
2
2
  /** @typedef {typeof __propDef.events} TeCiLogoEvents */
3
3
  /** @typedef {typeof __propDef.slots} TeCiLogoSlots */
4
- export default class TeCiLogo extends SvelteComponentTyped<{
4
+ export default class TeCiLogo extends SvelteComponent<{
5
5
  [x: string]: never;
6
6
  }, {
7
7
  [evt: string]: CustomEvent<any>;
@@ -10,7 +10,7 @@ export default class TeCiLogo extends SvelteComponentTyped<{
10
10
  export type TeCiLogoProps = typeof __propDef.props;
11
11
  export type TeCiLogoEvents = typeof __propDef.events;
12
12
  export type TeCiLogoSlots = typeof __propDef.slots;
13
- import { SvelteComponentTyped } from "svelte";
13
+ import { SvelteComponent } from "svelte";
14
14
  declare const __propDef: {
15
15
  props: {
16
16
  [x: string]: never;
@@ -1,2 +1,3 @@
1
+ /// <reference types="svelte" />
1
2
  export const currentPage: import("svelte/store").Writable<string>;
2
3
  export const isMenuOpen: import("svelte/store").Writable<boolean>;
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} AccordionProps */
2
2
  /** @typedef {typeof __propDef.events} AccordionEvents */
3
3
  /** @typedef {typeof __propDef.slots} AccordionSlots */
4
- export default class Accordion extends SvelteComponentTyped<{
4
+ export default class Accordion extends SvelteComponent<{
5
5
  data?: {};
6
6
  title?: string;
7
7
  prompts?: any[];
@@ -12,7 +12,7 @@ export default class Accordion extends SvelteComponentTyped<{
12
12
  export type AccordionProps = typeof __propDef.props;
13
13
  export type AccordionEvents = typeof __propDef.events;
14
14
  export type AccordionSlots = typeof __propDef.slots;
15
- import { SvelteComponentTyped } from "svelte";
15
+ import { SvelteComponent } from "svelte";
16
16
  declare const __propDef: {
17
17
  props: {
18
18
  data?: {};
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} BannerProps */
2
2
  /** @typedef {typeof __propDef.events} BannerEvents */
3
3
  /** @typedef {typeof __propDef.slots} BannerSlots */
4
- export default class Banner extends SvelteComponentTyped<{
4
+ export default class Banner extends SvelteComponent<{
5
5
  showCTA: any;
6
6
  shortText: any;
7
7
  longText: any;
@@ -15,7 +15,7 @@ export default class Banner extends SvelteComponentTyped<{
15
15
  export type BannerProps = typeof __propDef.props;
16
16
  export type BannerEvents = typeof __propDef.events;
17
17
  export type BannerSlots = typeof __propDef.slots;
18
- import { SvelteComponentTyped } from "svelte";
18
+ import { SvelteComponent } from "svelte";
19
19
  declare const __propDef: {
20
20
  props: {
21
21
  showCTA: any;
@@ -27,7 +27,9 @@ declare const __propDef: {
27
27
  };
28
28
  events: {
29
29
  [evt: string]: CustomEvent<any>;
30
- };
30
+ }; /** @typedef {typeof __propDef.props} BannerProps */
31
+ /** @typedef {typeof __propDef.events} BannerEvents */
32
+ /** @typedef {typeof __propDef.slots} BannerSlots */
31
33
  slots: {};
32
34
  };
33
35
  export {};
@@ -5,11 +5,12 @@
5
5
  export let text;
6
6
  export let color;
7
7
  export let justify;
8
+ export let fullwidth;
8
9
  </script>
9
10
 
10
11
  <div class="not-prose flex w-full {justify=="left"?"justify-start":(justify=="right"?"justify-end":"justify-center")} ">
11
12
  {#if !action}
12
- <a href={url} class="btn inline-block {getColorStyles('button', color)}" rel="external">
13
+ <a href={url} class="btn inline-block {getColorStyles('button', color)}" rel="external" class:w-full={fullwidth}>
13
14
  {text}
14
15
  </a>
15
16
  {:else}
@@ -1,12 +1,13 @@
1
1
  /** @typedef {typeof __propDef.props} ButtonProps */
2
2
  /** @typedef {typeof __propDef.events} ButtonEvents */
3
3
  /** @typedef {typeof __propDef.slots} ButtonSlots */
4
- export default class Button extends SvelteComponentTyped<{
4
+ export default class Button extends SvelteComponent<{
5
5
  action: any;
6
6
  url: any;
7
7
  text: any;
8
8
  color: any;
9
9
  justify: any;
10
+ fullwidth: any;
10
11
  }, {
11
12
  click: MouseEvent;
12
13
  } & {
@@ -16,7 +17,7 @@ export default class Button extends SvelteComponentTyped<{
16
17
  export type ButtonProps = typeof __propDef.props;
17
18
  export type ButtonEvents = typeof __propDef.events;
18
19
  export type ButtonSlots = typeof __propDef.slots;
19
- import { SvelteComponentTyped } from "svelte";
20
+ import { SvelteComponent } from "svelte";
20
21
  declare const __propDef: {
21
22
  props: {
22
23
  action: any;
@@ -24,6 +25,7 @@ declare const __propDef: {
24
25
  text: any;
25
26
  color: any;
26
27
  justify: any;
28
+ fullwidth: any;
27
29
  };
28
30
  events: {
29
31
  click: MouseEvent;
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} CtaProps */
2
2
  /** @typedef {typeof __propDef.events} CtaEvents */
3
3
  /** @typedef {typeof __propDef.slots} CtaSlots */
4
- export default class Cta extends SvelteComponentTyped<{
4
+ export default class Cta extends SvelteComponent<{
5
5
  data: any;
6
6
  }, {
7
7
  [evt: string]: CustomEvent<any>;
@@ -10,7 +10,7 @@ export default class Cta extends SvelteComponentTyped<{
10
10
  export type CtaProps = typeof __propDef.props;
11
11
  export type CtaEvents = typeof __propDef.events;
12
12
  export type CtaSlots = typeof __propDef.slots;
13
- import { SvelteComponentTyped } from "svelte";
13
+ import { SvelteComponent } from "svelte";
14
14
  declare const __propDef: {
15
15
  props: {
16
16
  data: any;
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} CtaSplitImageProps */
2
2
  /** @typedef {typeof __propDef.events} CtaSplitImageEvents */
3
3
  /** @typedef {typeof __propDef.slots} CtaSplitImageSlots */
4
- export default class CtaSplitImage extends SvelteComponentTyped<{
4
+ export default class CtaSplitImage extends SvelteComponent<{
5
5
  data: any;
6
6
  }, {
7
7
  [evt: string]: CustomEvent<any>;
@@ -10,7 +10,7 @@ export default class CtaSplitImage extends SvelteComponentTyped<{
10
10
  export type CtaSplitImageProps = typeof __propDef.props;
11
11
  export type CtaSplitImageEvents = typeof __propDef.events;
12
12
  export type CtaSplitImageSlots = typeof __propDef.slots;
13
- import { SvelteComponentTyped } from "svelte";
13
+ import { SvelteComponent } from "svelte";
14
14
  declare const __propDef: {
15
15
  props: {
16
16
  data: any;
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} CardProps */
2
2
  /** @typedef {typeof __propDef.events} CardEvents */
3
3
  /** @typedef {typeof __propDef.slots} CardSlots */
4
- export default class Card extends SvelteComponentTyped<{
4
+ export default class Card extends SvelteComponent<{
5
5
  data: any;
6
6
  halfHeight: any;
7
7
  }, {
@@ -11,7 +11,7 @@ export default class Card extends SvelteComponentTyped<{
11
11
  export type CardProps = typeof __propDef.props;
12
12
  export type CardEvents = typeof __propDef.events;
13
13
  export type CardSlots = typeof __propDef.slots;
14
- import { SvelteComponentTyped } from "svelte";
14
+ import { SvelteComponent } from "svelte";
15
15
  declare const __propDef: {
16
16
  props: {
17
17
  data: any;
@@ -0,0 +1,21 @@
1
+ <script>
2
+ import { browser } from '$app/environment';
3
+ import { onMount } from 'svelte';
4
+
5
+ export let title;
6
+ export let data_key;
7
+ export let data_form;
8
+
9
+ onMount(async () => {
10
+ let elem = document.querySelector('form.cog-cognito');
11
+ elem.classList.add('cog-disable-movement');
12
+ });
13
+
14
+ </script>
15
+
16
+ {#if browser}
17
+ <div class="prose max-w-none w-full">
18
+ <h1>{title}</h1>
19
+ <script src="https://www.cognitoforms.com/f/seamless.js" data-key={data_key} data-form={data_form}></script>
20
+ </div>
21
+ {/if}
@@ -0,0 +1,27 @@
1
+ /** @typedef {typeof __propDef.props} CognitoFormProps */
2
+ /** @typedef {typeof __propDef.events} CognitoFormEvents */
3
+ /** @typedef {typeof __propDef.slots} CognitoFormSlots */
4
+ export default class CognitoForm extends SvelteComponent<{
5
+ title: any;
6
+ data_key: any;
7
+ data_form: any;
8
+ }, {
9
+ [evt: string]: CustomEvent<any>;
10
+ }, {}> {
11
+ }
12
+ export type CognitoFormProps = typeof __propDef.props;
13
+ export type CognitoFormEvents = typeof __propDef.events;
14
+ export type CognitoFormSlots = typeof __propDef.slots;
15
+ import { SvelteComponent } from "svelte";
16
+ declare const __propDef: {
17
+ props: {
18
+ title: any;
19
+ data_key: any;
20
+ data_form: any;
21
+ };
22
+ events: {
23
+ [evt: string]: CustomEvent<any>;
24
+ };
25
+ slots: {};
26
+ };
27
+ export {};
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} ContentTwoColumnsProps */
2
2
  /** @typedef {typeof __propDef.events} ContentTwoColumnsEvents */
3
3
  /** @typedef {typeof __propDef.slots} ContentTwoColumnsSlots */
4
- export default class ContentTwoColumns extends SvelteComponentTyped<{
4
+ export default class ContentTwoColumns extends SvelteComponent<{
5
5
  data: any;
6
6
  }, {
7
7
  [evt: string]: CustomEvent<any>;
@@ -10,7 +10,7 @@ export default class ContentTwoColumns extends SvelteComponentTyped<{
10
10
  export type ContentTwoColumnsProps = typeof __propDef.props;
11
11
  export type ContentTwoColumnsEvents = typeof __propDef.events;
12
12
  export type ContentTwoColumnsSlots = typeof __propDef.slots;
13
- import { SvelteComponentTyped } from "svelte";
13
+ import { SvelteComponent } from "svelte";
14
14
  declare const __propDef: {
15
15
  props: {
16
16
  data: any;
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} CountrySelectorProps */
2
2
  /** @typedef {typeof __propDef.events} CountrySelectorEvents */
3
3
  /** @typedef {typeof __propDef.slots} CountrySelectorSlots */
4
- export default class CountrySelector extends SvelteComponentTyped<{
4
+ export default class CountrySelector extends SvelteComponent<{
5
5
  resellerModal?: boolean;
6
6
  selection?: string;
7
7
  allowContinue?: boolean;
@@ -12,7 +12,7 @@ export default class CountrySelector extends SvelteComponentTyped<{
12
12
  export type CountrySelectorProps = typeof __propDef.props;
13
13
  export type CountrySelectorEvents = typeof __propDef.events;
14
14
  export type CountrySelectorSlots = typeof __propDef.slots;
15
- import { SvelteComponentTyped } from "svelte";
15
+ import { SvelteComponent } from "svelte";
16
16
  declare const __propDef: {
17
17
  props: {
18
18
  resellerModal?: boolean;
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} FeatureGridProps */
2
2
  /** @typedef {typeof __propDef.events} FeatureGridEvents */
3
3
  /** @typedef {typeof __propDef.slots} FeatureGridSlots */
4
- export default class FeatureGrid extends SvelteComponentTyped<{
4
+ export default class FeatureGrid extends SvelteComponent<{
5
5
  data: any;
6
6
  }, {
7
7
  [evt: string]: CustomEvent<any>;
@@ -10,7 +10,7 @@ export default class FeatureGrid extends SvelteComponentTyped<{
10
10
  export type FeatureGridProps = typeof __propDef.props;
11
11
  export type FeatureGridEvents = typeof __propDef.events;
12
12
  export type FeatureGridSlots = typeof __propDef.slots;
13
- import { SvelteComponentTyped } from "svelte";
13
+ import { SvelteComponent } from "svelte";
14
14
  declare const __propDef: {
15
15
  props: {
16
16
  data: any;
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} FigureProps */
2
2
  /** @typedef {typeof __propDef.events} FigureEvents */
3
3
  /** @typedef {typeof __propDef.slots} FigureSlots */
4
- export default class Figure extends SvelteComponentTyped<{
4
+ export default class Figure extends SvelteComponent<{
5
5
  image: any;
6
6
  title: any;
7
7
  caption: any;
@@ -13,7 +13,7 @@ export default class Figure extends SvelteComponentTyped<{
13
13
  export type FigureProps = typeof __propDef.props;
14
14
  export type FigureEvents = typeof __propDef.events;
15
15
  export type FigureSlots = typeof __propDef.slots;
16
- import { SvelteComponentTyped } from "svelte";
16
+ import { SvelteComponent } from "svelte";
17
17
  declare const __propDef: {
18
18
  props: {
19
19
  image: any;
@@ -19,7 +19,7 @@ import Button from './Button.svelte'
19
19
  <ul class="mt-4 space-y-4">
20
20
  <li>
21
21
  <a
22
- href="https://www.thunderheadeng.com/pyrosim/"
22
+ href="https://www.thunderheadeng.com/pyrosim"
23
23
  class="text-base text-gray-100 hover:text-white"
24
24
  >
25
25
  PyroSim
@@ -27,7 +27,7 @@ import Button from './Button.svelte'
27
27
  </li>
28
28
  <li>
29
29
  <a
30
- href="https://www.thunderheadeng.com/pathfinder/"
30
+ href="https://www.thunderheadeng.com/pathfinder"
31
31
  class="text-base text-gray-100 hover:text-white"
32
32
  >
33
33
  Pathfinder
@@ -35,10 +35,10 @@ import Button from './Button.svelte'
35
35
  </li>
36
36
  <li>
37
37
  <a
38
- href="https://www.thunderheadeng.com/petrasim/"
38
+ href="https://www.thunderheadeng.com/ventus"
39
39
  class="text-base text-gray-100 hover:text-white"
40
40
  >
41
- PetraSim
41
+ Ventus
42
42
  </a>
43
43
  </li>
44
44
  <li>
@@ -60,7 +60,7 @@ import Button from './Button.svelte'
60
60
  <ul class="mt-4 space-y-4">
61
61
  <li>
62
62
  <a
63
- href="https://support.thunderheadeng.com/docs/"
63
+ href="https://support.thunderheadeng.com/docs"
64
64
  class="text-base text-gray-100 hover:text-white"
65
65
  >
66
66
  Documentation
@@ -68,7 +68,7 @@ import Button from './Button.svelte'
68
68
  </li>
69
69
  <li>
70
70
  <a
71
- href="https://support.thunderheadeng.com/tutorials/"
71
+ href="https://support.thunderheadeng.com/tutorials"
72
72
  class="text-base text-gray-100 hover:text-white"
73
73
  >
74
74
  Tutorials
@@ -76,7 +76,7 @@ import Button from './Button.svelte'
76
76
  </li>
77
77
  <li>
78
78
  <a
79
- href="https://support.thunderheadeng.com/release-notes/"
79
+ href="https://support.thunderheadeng.com/release-notes"
80
80
  class="text-base text-gray-100 hover:text-white"
81
81
  >
82
82
  Release Notes
@@ -84,10 +84,10 @@ import Button from './Button.svelte'
84
84
  </li>
85
85
  <li>
86
86
  <a
87
- href="https://support.thunderheadeng.com/answers/"
87
+ href="https://help.thunderheadeng.com/support/home"
88
88
  class="text-base text-gray-100 hover:text-white"
89
89
  >
90
- FAQs
90
+ Help Portal
91
91
  </a>
92
92
  </li>
93
93
  </ul>
@@ -103,28 +103,20 @@ import Button from './Button.svelte'
103
103
  <ul class="mt-4 space-y-4">
104
104
  <li>
105
105
  <a
106
- href="https://www.thunderheadeng.com/training/"
106
+ href="https://training.thunderheadeng.com"
107
107
  class="text-base text-gray-100 hover:text-white"
108
108
  >
109
- Calendar
109
+ Training
110
110
  </a>
111
111
  </li>
112
112
  <li>
113
113
  <a
114
- href="https://www.femtc.com/"
114
+ href="https://www.femtc.com"
115
115
  class="text-base text-gray-100 hover:text-white"
116
116
  >
117
117
  FEMTC
118
118
  </a>
119
119
  </li>
120
- <li>
121
- <a
122
- href="https://www.thunderheadeng.com/training/"
123
- class="text-base text-gray-100 hover:text-white"
124
- >
125
- Training
126
- </a>
127
- </li>
128
120
  </ul>
129
121
  </div>
130
122
  <div class="mt-12 md:mt-0">
@@ -136,7 +128,7 @@ import Button from './Button.svelte'
136
128
  <ul class="mt-4 space-y-4">
137
129
  <li>
138
130
  <a
139
- href="https://www.thunderheadeng.com/about/"
131
+ href="https://www.thunderheadeng.com/about"
140
132
  class="text-base text-gray-100 hover:text-white"
141
133
  >
142
134
  About
@@ -144,7 +136,7 @@ import Button from './Button.svelte'
144
136
  </li>
145
137
  <li>
146
138
  <a
147
- href="https://www.thunderheadeng.com/news/"
139
+ href="https://www.thunderheadeng.com/news"
148
140
  class="text-base text-gray-100 hover:text-white"
149
141
  >
150
142
  News
@@ -152,7 +144,7 @@ import Button from './Button.svelte'
152
144
  </li>
153
145
  <li>
154
146
  <a
155
- href="https://www.thunderheadeng.com/job-openings/"
147
+ href="https://www.thunderheadeng.com/job-openings"
156
148
  class="text-base text-gray-100 hover:text-white"
157
149
  >
158
150
  Jobs
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} FooterProps */
2
2
  /** @typedef {typeof __propDef.events} FooterEvents */
3
3
  /** @typedef {typeof __propDef.slots} FooterSlots */
4
- export default class Footer extends SvelteComponentTyped<{
4
+ export default class Footer extends SvelteComponent<{
5
5
  [x: string]: never;
6
6
  }, {
7
7
  [evt: string]: CustomEvent<any>;
@@ -10,7 +10,7 @@ export default class Footer extends SvelteComponentTyped<{
10
10
  export type FooterProps = typeof __propDef.props;
11
11
  export type FooterEvents = typeof __propDef.events;
12
12
  export type FooterSlots = typeof __propDef.slots;
13
- import { SvelteComponentTyped } from "svelte";
13
+ import { SvelteComponent } from "svelte";
14
14
  declare const __propDef: {
15
15
  props: {
16
16
  [x: string]: never;