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.
- package/dist/assets/TECi_logo.svelte.d.ts +2 -2
- package/dist/assets/js/store.d.ts +1 -0
- package/dist/components/Accordion.svelte.d.ts +2 -2
- package/dist/components/Banner.svelte.d.ts +5 -3
- package/dist/components/Button.svelte +2 -1
- package/dist/components/Button.svelte.d.ts +4 -2
- package/dist/components/CTA.svelte.d.ts +2 -2
- package/dist/components/CTASplitImage.svelte.d.ts +2 -2
- package/dist/components/Card.svelte.d.ts +2 -2
- package/dist/components/CognitoForm.svelte +21 -0
- package/dist/components/CognitoForm.svelte.d.ts +27 -0
- package/dist/components/ContentTwoColumns.svelte.d.ts +2 -2
- package/dist/components/CountrySelector.svelte.d.ts +2 -2
- package/dist/components/FeatureGrid.svelte.d.ts +2 -2
- package/dist/components/Figure.svelte.d.ts +2 -2
- package/dist/components/Footer.svelte +15 -23
- package/dist/components/Footer.svelte.d.ts +2 -2
- package/dist/components/Header.svelte +46 -98
- package/dist/components/Header.svelte.d.ts +2 -2
- package/dist/components/HeadingCentered.svelte.d.ts +2 -2
- package/dist/components/Hero.svelte.d.ts +2 -2
- package/dist/components/Icon.svelte.d.ts +2 -2
- package/dist/components/LogoCloud.svelte.d.ts +2 -2
- package/dist/components/Math.svelte.d.ts +2 -2
- package/dist/components/MediaFeature.svelte.d.ts +2 -2
- package/dist/components/Modal.svelte.d.ts +2 -2
- package/dist/components/NewsGrid.svelte.d.ts +2 -2
- package/dist/components/PricingTable.svelte +12 -10
- package/dist/components/PricingTable.svelte.d.ts +2 -2
- package/dist/components/SidebarContent.svelte.d.ts +2 -2
- package/dist/components/Stats.svelte.d.ts +2 -2
- package/dist/components/Testimonial.svelte +26 -29
- package/dist/components/Testimonial.svelte.d.ts +2 -2
- package/dist/components/ThreeColumn.svelte.d.ts +2 -2
- package/dist/components/TrialForm.svelte.d.ts +2 -2
- package/dist/components/Video.svelte.d.ts +2 -2
- package/dist/components/Wrap.svelte.d.ts +2 -2
- package/dist/layouts/blocks.svelte.d.ts +2 -2
- package/package.json +24 -24
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} TestimonialProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} TestimonialEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} TestimonialSlots */
|
|
4
|
-
export default class Testimonial extends
|
|
4
|
+
export default class Testimonial extends SvelteComponent<{
|
|
5
5
|
data: any;
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
@@ -10,7 +10,7 @@ export default class Testimonial extends SvelteComponentTyped<{
|
|
|
10
10
|
export type TestimonialProps = typeof __propDef.props;
|
|
11
11
|
export type TestimonialEvents = typeof __propDef.events;
|
|
12
12
|
export type TestimonialSlots = typeof __propDef.slots;
|
|
13
|
-
import {
|
|
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} ThreeColumnProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} ThreeColumnEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} ThreeColumnSlots */
|
|
4
|
-
export default class ThreeColumn extends
|
|
4
|
+
export default class ThreeColumn extends SvelteComponent<{
|
|
5
5
|
data: any;
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
@@ -10,7 +10,7 @@ export default class ThreeColumn extends SvelteComponentTyped<{
|
|
|
10
10
|
export type ThreeColumnProps = typeof __propDef.props;
|
|
11
11
|
export type ThreeColumnEvents = typeof __propDef.events;
|
|
12
12
|
export type ThreeColumnSlots = typeof __propDef.slots;
|
|
13
|
-
import {
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
16
|
data: any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: Record<string, never>;
|
|
4
4
|
events: {
|
|
@@ -9,6 +9,6 @@ declare const __propDef: {
|
|
|
9
9
|
export type TrialFormProps = typeof __propDef.props;
|
|
10
10
|
export type TrialFormEvents = typeof __propDef.events;
|
|
11
11
|
export type TrialFormSlots = typeof __propDef.slots;
|
|
12
|
-
export default class TrialForm extends
|
|
12
|
+
export default class TrialForm extends SvelteComponent<TrialFormProps, TrialFormEvents, TrialFormSlots> {
|
|
13
13
|
}
|
|
14
14
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} VideoProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} VideoEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} VideoSlots */
|
|
4
|
-
export default class Video extends
|
|
4
|
+
export default class Video extends SvelteComponent<{
|
|
5
5
|
data?: {};
|
|
6
6
|
v?: string;
|
|
7
7
|
thumbnail?: string;
|
|
@@ -12,7 +12,7 @@ export default class Video extends SvelteComponentTyped<{
|
|
|
12
12
|
export type VideoProps = typeof __propDef.props;
|
|
13
13
|
export type VideoEvents = typeof __propDef.events;
|
|
14
14
|
export type VideoSlots = typeof __propDef.slots;
|
|
15
|
-
import {
|
|
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} WrapProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} WrapEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} WrapSlots */
|
|
4
|
-
export default class Wrap extends
|
|
4
|
+
export default class Wrap extends SvelteComponent<{
|
|
5
5
|
[x: string]: any;
|
|
6
6
|
tag?: string;
|
|
7
7
|
when?: boolean;
|
|
@@ -14,7 +14,7 @@ export default class Wrap extends SvelteComponentTyped<{
|
|
|
14
14
|
export type WrapProps = typeof __propDef.props;
|
|
15
15
|
export type WrapEvents = typeof __propDef.events;
|
|
16
16
|
export type WrapSlots = typeof __propDef.slots;
|
|
17
|
-
import {
|
|
17
|
+
import { SvelteComponent } from "svelte";
|
|
18
18
|
declare const __propDef: {
|
|
19
19
|
props: {
|
|
20
20
|
[x: string]: any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} BlocksProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} BlocksEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} BlocksSlots */
|
|
4
|
-
export default class Blocks extends
|
|
4
|
+
export default class Blocks extends SvelteComponent<{
|
|
5
5
|
title: any;
|
|
6
6
|
date: any;
|
|
7
7
|
summary: any;
|
|
@@ -18,7 +18,7 @@ export default class Blocks extends SvelteComponentTyped<{
|
|
|
18
18
|
export type BlocksProps = typeof __propDef.props;
|
|
19
19
|
export type BlocksEvents = typeof __propDef.events;
|
|
20
20
|
export type BlocksSlots = typeof __propDef.slots;
|
|
21
|
-
import {
|
|
21
|
+
import { SvelteComponent } from "svelte";
|
|
22
22
|
declare const __propDef: {
|
|
23
23
|
props: {
|
|
24
24
|
title: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tecitheme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite dev",
|
|
@@ -27,45 +27,45 @@
|
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@sveltejs/kit": "^1.
|
|
31
|
-
"svelte": "^
|
|
30
|
+
"@sveltejs/kit": "^1.22.2",
|
|
31
|
+
"svelte": "^4.0.5"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@fontsource-variable/inter": "^5.0.
|
|
35
|
-
"@fontsource/material-icons-outlined": "^5.0.
|
|
34
|
+
"@fontsource-variable/inter": "^5.0.5",
|
|
35
|
+
"@fontsource/material-icons-outlined": "^5.0.5",
|
|
36
36
|
"@sveltejs/adapter-static": "2.0.2",
|
|
37
|
-
"@sveltejs/kit": "^1.
|
|
38
|
-
"@sveltejs/package": "^2.0
|
|
37
|
+
"@sveltejs/kit": "^1.22.2",
|
|
38
|
+
"@sveltejs/package": "^2.2.0",
|
|
39
39
|
"@tailwindcss/forms": "^0.5.3",
|
|
40
40
|
"@tailwindcss/typography": "^0.5.9",
|
|
41
|
-
"@tsconfig/svelte": "^
|
|
42
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
43
|
-
"@typescript-eslint/parser": "^5.
|
|
41
|
+
"@tsconfig/svelte": "^5.0.0",
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "^5.61.0",
|
|
43
|
+
"@typescript-eslint/parser": "^5.61.0",
|
|
44
44
|
"autoprefixer": "^10.4.14",
|
|
45
|
-
"eslint": "^8.
|
|
45
|
+
"eslint": "^8.44.0",
|
|
46
46
|
"eslint-config-prettier": "^8.8.0",
|
|
47
|
-
"eslint-plugin-
|
|
47
|
+
"eslint-plugin-svelte": "^2.32.2",
|
|
48
48
|
"html-to-text": "^9.0.5",
|
|
49
49
|
"markdown-yaml-metadata-parser": "^3.0.0",
|
|
50
|
-
"mdsvex": "^0.
|
|
51
|
-
"postcss": "^8.4.
|
|
52
|
-
"prettier": "^
|
|
53
|
-
"prettier-plugin-tailwindcss": "^0.
|
|
50
|
+
"mdsvex": "^0.11.0",
|
|
51
|
+
"postcss": "^8.4.25",
|
|
52
|
+
"prettier": "^3.0.0",
|
|
53
|
+
"prettier-plugin-tailwindcss": "^0.4.0",
|
|
54
54
|
"rehype-slug": "^5.1.0",
|
|
55
|
-
"svelte": "^
|
|
56
|
-
"svelte-check": "^3.4.
|
|
55
|
+
"svelte": "^4.0.5",
|
|
56
|
+
"svelte-check": "^3.4.6",
|
|
57
57
|
"svelte-paginate": "^0.1.0",
|
|
58
58
|
"svelte-preprocess": "^5.0.4",
|
|
59
|
-
"svelte2tsx": "^0.6.
|
|
59
|
+
"svelte2tsx": "^0.6.19",
|
|
60
60
|
"sveltekit-autoimport": "^1.7.0",
|
|
61
61
|
"tailwindcss": "^3.3.2",
|
|
62
|
-
"tslib": "^2.
|
|
63
|
-
"typescript": "^5.1.
|
|
62
|
+
"tslib": "^2.6.0",
|
|
63
|
+
"typescript": "^5.1.6",
|
|
64
64
|
"uuid-by-string": "^4.0.0",
|
|
65
|
-
"vite": "^4.3
|
|
65
|
+
"vite": "^4.4.3"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"katex": "^0.16.
|
|
69
|
-
"svelte": "^
|
|
68
|
+
"katex": "^0.16.8",
|
|
69
|
+
"svelte": "^4.0.5"
|
|
70
70
|
}
|
|
71
71
|
}
|