flowbite-svelte 0.10.10 → 0.10.11

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.
@@ -14,7 +14,7 @@ export let copyrightYear = '© 2022';
14
14
  export let allRightsReserved = 'All Rights Reserved.';
15
15
  </script>
16
16
 
17
- <footer class={footerClass}>
17
+ <footer class="{footerClass} {$$props.class}">
18
18
  <div class={divClass}>
19
19
  <a href={site.href} class={siteNameLinkClass}>
20
20
  <img src={site.img} class={imgClass} alt={site.name} />
@@ -2,6 +2,7 @@ import { SvelteComponentTyped } from "svelte";
2
2
  import type { LinkType, SiteType } from '../types';
3
3
  declare const __propDef: {
4
4
  props: {
5
+ [x: string]: any;
5
6
  site: SiteType;
6
7
  links: LinkType[];
7
8
  footerClass?: string;
@@ -9,7 +9,7 @@ export let copyrightYear = '© 2022';
9
9
  export let allRightsReserved = 'All Rights Reserved.';
10
10
  </script>
11
11
 
12
- <footer class={footerClass}>
12
+ <footer class="{footerClass} {$$props.class}">
13
13
  <span class={siteNameClass}
14
14
  >{copyrightYear}
15
15
  <a href={site.href} class={siteNameLinkClass} target="_blank">{site.name}</a>. {allRightsReserved}
@@ -2,6 +2,7 @@ import { SvelteComponentTyped } from "svelte";
2
2
  import type { LinkType, SiteType } from '../types';
3
3
  declare const __propDef: {
4
4
  props: {
5
+ [x: string]: any;
5
6
  site: SiteType;
6
7
  links: LinkType[];
7
8
  footerClass?: string;
@@ -15,7 +15,7 @@ export let copyrightYear = '© 2022';
15
15
  export let allRightsReserved = 'All Rights Reserved.';
16
16
  </script>
17
17
 
18
- <footer class={footerClass}>
18
+ <footer class="{footerClass} {$$props.class}">
19
19
  <div class={linksClass}>
20
20
  {#each links as { parent, children }}
21
21
  <div>
@@ -2,6 +2,7 @@ import { SvelteComponentTyped } from "svelte";
2
2
  import type { SiteType, SocialMediaType, SocialMediaLinkType } from '../types';
3
3
  declare const __propDef: {
4
4
  props: {
5
+ [x: string]: any;
5
6
  site: SiteType;
6
7
  links: SocialMediaLinkType[];
7
8
  socialMedia: SocialMediaType[];
@@ -21,7 +21,7 @@ export let copyrightYear = '© 2022';
21
21
  export let allRightsReserved = 'All Rights Reserved.';
22
22
  </script>
23
23
 
24
- <footer class={footerClass}>
24
+ <footer class="{footerClass} {$$props.class}">
25
25
  <div class={divClass}>
26
26
  <div class={divClass2}>
27
27
  <a href={site.href} class={siteLinkClass}>
@@ -2,6 +2,7 @@ import { SvelteComponentTyped } from "svelte";
2
2
  import type { SocialMediaLinkType, SocialMediaType, SiteType } from '../types';
3
3
  declare const __propDef: {
4
4
  props: {
5
+ [x: string]: any;
5
6
  site: SiteType;
6
7
  links: SocialMediaLinkType[];
7
8
  socialMedia: SocialMediaType[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowbite-svelte",
3
- "version": "0.10.10",
3
+ "version": "0.10.11",
4
4
  "description": "Flowbite components for Svelte",
5
5
  "author": {
6
6
  "name": "Shinichi Okada",