tecitheme 0.2.7 → 0.2.8

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,7 +1,9 @@
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 SvelteComponentTyped<{
5
+ [x: string]: never;
6
+ }, {
5
7
  [evt: string]: CustomEvent<any>;
6
8
  }, {}> {
7
9
  }
@@ -10,7 +12,9 @@ export type TeCiLogoEvents = typeof __propDef.events;
10
12
  export type TeCiLogoSlots = typeof __propDef.slots;
11
13
  import { SvelteComponentTyped } from "svelte";
12
14
  declare const __propDef: {
13
- props: {};
15
+ props: {
16
+ [x: string]: never;
17
+ };
14
18
  events: {
15
19
  [evt: string]: CustomEvent<any>;
16
20
  };
@@ -8,6 +8,7 @@
8
8
  let modal;
9
9
  let modalData;
10
10
  let resellerIndex = -1;
11
+
11
12
  let resellerArray = [
12
13
  ['BE', 'NL', 'LU'],
13
14
  ['CN', 'HK'],
@@ -15,6 +16,7 @@
15
16
  ['EG', 'JO', 'LB', 'OM', 'QA', 'SA', 'AE'],
16
17
  ['FR'],
17
18
  ['DE', 'CH', 'AT', 'LI'],
19
+ ['GR','CY'],
18
20
  ['IN', 'BD', 'LK', 'CM', 'BT', 'MM'],
19
21
  ['IT', 'HU'],
20
22
  ['JP'],
@@ -25,6 +27,7 @@
25
27
  ['SG', 'MY', 'ID', 'VN'],
26
28
  ['ES'],
27
29
  ];
30
+
28
31
  let resellerLinks = [
29
32
  'belgium-netherlands-and-luxembourg',
30
33
  'china-and-hong-kong',
@@ -32,6 +35,7 @@
32
35
  'egypt-jordan-lebanon-oman-qatar-saudi-arabia-united-arab-emirates',
33
36
  'france-and-french-language-customers-in-other-regions',
34
37
  'germany-switzerland-austria-and-liechtenstein',
38
+ 'greece-cyprus',
35
39
  'india-bangladesh-sri-lanka-nepal-bhutan-myanmar',
36
40
  'italy-hungary',
37
41
  'japan',
@@ -1,6 +1,6 @@
1
1
  import { SvelteComponentTyped } from "svelte";
2
2
  declare const __propDef: {
3
- props: {};
3
+ props: Record<string, never>;
4
4
  events: {
5
5
  [evt: string]: CustomEvent<any>;
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tecitheme",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "svelte": true,
5
5
  "devDependencies": {
6
6
  "@jsdevtools/rehype-toc": "^3.0.2",