tecitheme 0.0.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/LICENSE +20 -0
- package/Logos/TECi_icon_250.svelte +21 -0
- package/Logos/TECi_icon_250.svelte.d.ts +23 -0
- package/Logos/TECi_logo.svelte +150 -0
- package/Logos/TECi_logo.svelte.d.ts +19 -0
- package/README.md +3 -0
- package/components/CountrySelector/index.svelte +156 -0
- package/components/CountrySelector/index.svelte.d.ts +27 -0
- package/components/Footer/index.svelte +191 -0
- package/components/Footer/index.svelte.d.ts +26 -0
- package/components/Header/index.svelte +749 -0
- package/components/Header/index.svelte.d.ts +19 -0
- package/components/Modal/index.svelte +31 -0
- package/components/Modal/index.svelte.d.ts +31 -0
- package/components/TrialForm/index.svelte +210 -0
- package/components/TrialForm/index.svelte.d.ts +19 -0
- package/package.json +52 -0
- package/req_utils.d.ts +3 -0
- package/req_utils.js +62 -0
- package/utils.d.ts +2 -0
- package/utils.js +10 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} IndexProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} IndexEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} IndexSlots */
|
|
4
|
+
export default class Index extends SvelteComponentTyped<{
|
|
5
|
+
token?: any;
|
|
6
|
+
login?: boolean;
|
|
7
|
+
}, {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
}, {}> {
|
|
10
|
+
get token(): any;
|
|
11
|
+
}
|
|
12
|
+
export type IndexProps = typeof __propDef.props;
|
|
13
|
+
export type IndexEvents = typeof __propDef.events;
|
|
14
|
+
export type IndexSlots = typeof __propDef.slots;
|
|
15
|
+
import { SvelteComponentTyped } from "svelte";
|
|
16
|
+
declare const __propDef: {
|
|
17
|
+
props: {
|
|
18
|
+
token?: any;
|
|
19
|
+
login?: boolean;
|
|
20
|
+
};
|
|
21
|
+
events: {
|
|
22
|
+
[evt: string]: CustomEvent<any>;
|
|
23
|
+
};
|
|
24
|
+
slots: {};
|
|
25
|
+
};
|
|
26
|
+
export {};
|