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.
- package/footer/LogoFooter.svelte +1 -1
- package/footer/LogoFooter.svelte.d.ts +1 -0
- package/footer/SimpleFooter.svelte +1 -1
- package/footer/SimpleFooter.svelte.d.ts +1 -0
- package/footer/SitemapFooter.svelte +1 -1
- package/footer/SitemapFooter.svelte.d.ts +1 -0
- package/footer/SocialMediaFooter.svelte +1 -1
- package/footer/SocialMediaFooter.svelte.d.ts +1 -0
- package/package.json +1 -1
package/footer/LogoFooter.svelte
CHANGED
|
@@ -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} />
|
|
@@ -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}
|
|
@@ -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[];
|