tecitheme 0.5.2 → 0.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tecitheme",
3
- "version": "0.5.2",
3
+ "version": "0.6.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.13.0",
31
- "svelte": "^3.57.0"
30
+ "@sveltejs/kit": "^1.20.2",
31
+ "svelte": "^3.59.1"
32
32
  },
33
33
  "devDependencies": {
34
- "@fontsource/inter": "^4.5.15",
35
- "@fontsource/material-icons-outlined": "^4.5.4",
36
- "@sveltejs/adapter-static": "2.0.1",
37
- "@sveltejs/kit": "^1.15.2",
34
+ "@fontsource-variable/inter": "^5.0.3",
35
+ "@fontsource/material-icons-outlined": "^5.0.3",
36
+ "@sveltejs/adapter-static": "2.0.2",
37
+ "@sveltejs/kit": "^1.20.2",
38
38
  "@sveltejs/package": "^2.0.2",
39
39
  "@tailwindcss/forms": "^0.5.3",
40
40
  "@tailwindcss/typography": "^0.5.9",
41
41
  "@tsconfig/svelte": "^4.0.1",
42
- "@typescript-eslint/eslint-plugin": "^5.58.0",
43
- "@typescript-eslint/parser": "^5.58.0",
42
+ "@typescript-eslint/eslint-plugin": "^5.59.11",
43
+ "@typescript-eslint/parser": "^5.59.11",
44
44
  "autoprefixer": "^10.4.14",
45
- "eslint": "^8.38.0",
45
+ "eslint": "^8.42.0",
46
46
  "eslint-config-prettier": "^8.8.0",
47
47
  "eslint-plugin-svelte3": "^4.0.0",
48
48
  "html-to-text": "^9.0.5",
49
49
  "markdown-yaml-metadata-parser": "^3.0.0",
50
50
  "mdsvex": "^0.10.6",
51
- "postcss": "^8.4.21",
52
- "prettier": "^2.8.7",
53
- "prettier-plugin-tailwindcss": "^0.2.7",
51
+ "postcss": "^8.4.24",
52
+ "prettier": "^2.8.8",
53
+ "prettier-plugin-tailwindcss": "^0.3.0",
54
54
  "rehype-slug": "^5.1.0",
55
- "svelte": "^3.58.0",
56
- "svelte-check": "^3.2.0",
55
+ "svelte": "^3.59.1",
56
+ "svelte-check": "^3.4.3",
57
57
  "svelte-paginate": "^0.1.0",
58
- "svelte-preprocess": "^5.0.3",
59
- "svelte2tsx": "^0.6.11",
58
+ "svelte-preprocess": "^5.0.4",
59
+ "svelte2tsx": "^0.6.15",
60
60
  "sveltekit-autoimport": "^1.7.0",
61
- "tailwindcss": "^3.3.1",
62
- "tslib": "^2.5.0",
63
- "typescript": "^5.0.4",
61
+ "tailwindcss": "^3.3.2",
62
+ "tslib": "^2.5.3",
63
+ "typescript": "^5.1.3",
64
64
  "uuid-by-string": "^4.0.0",
65
- "vite": "^4.2.1"
65
+ "vite": "^4.3.9"
66
66
  },
67
67
  "dependencies": {
68
- "katex": "^0.16.4",
69
- "svelte": "^3.58.0"
68
+ "katex": "^0.16.7",
69
+ "svelte": "^3.59.1"
70
70
  }
71
- }
71
+ }
@@ -1,20 +0,0 @@
1
- <script>
2
- export let data
3
- let id
4
-
5
- if (data.name) {
6
- id = encodeURIComponent(data.name).toLowerCase()
7
- }
8
- </script>
9
-
10
- <section {id} class="{(data.color == "pyrosim" ? "bg-pyrosim" : (data.color == "pathfinder" ? "bg-pathfinder" : (data.color == "ventus" ? "bg-ventus" : "bg-teci-blue-dark")))}">
11
- <div class="mx-auto max-w-4xl py-10 px-6 text-center sm:py-10 lg:px-8">
12
- <h2 class="text-3xl font-bold tracking-tight text-white sm:text-4xl">
13
- <span class="block">{@html data.heading}</span>
14
- </h2>
15
- <p class="mt-4 text-lg leading-6 text-gray-200">{@html data.body}</p>
16
- <a href={data.cta_url} class="mt-8 inline-flex w-full items-center justify-center border border-transparent bg-white px-5 py-3 text-base font-medium text-gray-900 hover:bg-indigo-50 sm:w-auto">
17
- {data.cta}
18
- </a>
19
- </div>
20
- </section>
@@ -1,23 +0,0 @@
1
- /** @typedef {typeof __propDef.props} CtaBrandedProps */
2
- /** @typedef {typeof __propDef.events} CtaBrandedEvents */
3
- /** @typedef {typeof __propDef.slots} CtaBrandedSlots */
4
- export default class CtaBranded extends SvelteComponentTyped<{
5
- data: any;
6
- }, {
7
- [evt: string]: CustomEvent<any>;
8
- }, {}> {
9
- }
10
- export type CtaBrandedProps = typeof __propDef.props;
11
- export type CtaBrandedEvents = typeof __propDef.events;
12
- export type CtaBrandedSlots = typeof __propDef.slots;
13
- import { SvelteComponentTyped } from "svelte";
14
- declare const __propDef: {
15
- props: {
16
- data: any;
17
- };
18
- events: {
19
- [evt: string]: CustomEvent<any>;
20
- };
21
- slots: {};
22
- };
23
- export {};
@@ -1,24 +0,0 @@
1
- <script>
2
- export let classes;
3
- </script>
4
-
5
- <div class="not-prose w-32 {classes ? classes : ''}">
6
- <data
7
- id="mj-w-res-data"
8
- data-token="2a0fbbba6aa7f1398b091a6a5f5f2167"
9
- class="mj-w-data"
10
- data-apikey="3aOX"
11
- data-w-id="Fbu"
12
- data-lang="en_US"
13
- data-base="https://app.mailjet.com"
14
- data-width="640"
15
- data-height="480"
16
- data-statics="statics"
17
- />
18
- <button
19
- class="flex w-full items-center justify-center border border-transparent bg-teci-blue-light px-4 py-2 text-base font-medium leading-6 text-white transition duration-150 ease-in-out hover:bg-teci-blue-dark focus:border-teci-blue-dark focus:outline-none"
20
- data-token="2a0fbbba6aa7f1398b091a6a5f5f2167"
21
- onclick="mjOpenPopin(event, this)">Subscribe</button
22
- >
23
- </div>
24
- <div class="clear-both" />
@@ -1,23 +0,0 @@
1
- /** @typedef {typeof __propDef.props} SubscribeProps */
2
- /** @typedef {typeof __propDef.events} SubscribeEvents */
3
- /** @typedef {typeof __propDef.slots} SubscribeSlots */
4
- export default class Subscribe extends SvelteComponentTyped<{
5
- classes: any;
6
- }, {
7
- [evt: string]: CustomEvent<any>;
8
- }, {}> {
9
- }
10
- export type SubscribeProps = typeof __propDef.props;
11
- export type SubscribeEvents = typeof __propDef.events;
12
- export type SubscribeSlots = typeof __propDef.slots;
13
- import { SvelteComponentTyped } from "svelte";
14
- declare const __propDef: {
15
- props: {
16
- classes: any;
17
- };
18
- events: {
19
- [evt: string]: CustomEvent<any>;
20
- };
21
- slots: {};
22
- };
23
- export {};