@functionalcms/svelte-components 2.3.3 → 2.3.4

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.
@@ -15,8 +15,9 @@
15
15
 
16
16
  <script>export let companyName;
17
17
  export let logoUrl;
18
+ export let css = "logo";
18
19
  </script>
19
20
 
20
- <a href="/">
21
+ <a href="/" class={css}>
21
22
  <img src={logoUrl} alt={companyName} />
22
23
  </a>
@@ -7,6 +7,9 @@ declare const __propDef: {
7
7
  /**
8
8
  * @type {string}
9
9
  */ logoUrl: string;
10
+ /**
11
+ * @type {string}
12
+ */ css?: string | undefined;
10
13
  };
11
14
  events: {
12
15
  [evt: string]: CustomEvent<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@functionalcms/svelte-components",
3
- "version": "2.3.3",
3
+ "version": "2.3.4",
4
4
  "watch": {
5
5
  "build": {
6
6
  "patterns": ["src"],