flowbite-svelte 0.8.7 → 0.8.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.
@@ -26,6 +26,8 @@
26
26
  export let copyRightSpanClass =
27
27
  "block text-sm text-gray-500 sm:text-center dark:text-gray-400";
28
28
  export let copyRightLinkClass = "hover:underline";
29
+ export let copyrightYear = "© 2022";
30
+ export let allRightsReserved = "All Rights Reserved.";
29
31
  </script>
30
32
 
31
33
  <footer class={footerClass}>
@@ -44,7 +46,7 @@
44
46
  </div>
45
47
  <hr class={hrClass} />
46
48
  <span class={copyRightSpanClass}
47
- >© 2022 <a href={site.link} class={copyRightLinkClass}>{site.name}</a>. All
48
- Rights Reserved.
49
+ >{copyrightYear}
50
+ <a href={site.link} class={copyRightLinkClass}>{site.name}</a>. {allRightsReserved}
49
51
  </span>
50
52
  </footer>
@@ -17,6 +17,8 @@ export default class LogoFooter extends SvelteComponentTyped<{
17
17
  ulClass?: string;
18
18
  aClass?: string;
19
19
  siteNameLinkClass?: string;
20
+ copyrightYear?: string;
21
+ allRightsReserved?: string;
20
22
  divClass?: string;
21
23
  imgClass?: string;
22
24
  hrClass?: string;
@@ -47,6 +49,8 @@ declare const __propDef: {
47
49
  ulClass?: string;
48
50
  aClass?: string;
49
51
  siteNameLinkClass?: string;
52
+ copyrightYear?: string;
53
+ allRightsReserved?: string;
50
54
  divClass?: string;
51
55
  imgClass?: string;
52
56
  hrClass?: string;
@@ -17,13 +17,15 @@
17
17
  export let aClass =
18
18
  "mr-4 text-sm text-gray-500 hover:underline md:mr-6 dark:text-gray-400";
19
19
  export let siteNameLinkClass = "hover:underline";
20
+ export let copyrightYear = "© 2022";
21
+ export let allRightsReserved = "All Rights Reserved.";
20
22
  </script>
21
23
 
22
24
  <footer class={footerClass}>
23
25
  <span class={siteNameClass}
24
- >© 2022 <a href={site.link} class={siteNameLinkClass} target="_blank"
25
- >{site.name}</a
26
- >. All Rights Reserved.
26
+ >{copyrightYear}
27
+ <a href={site.link} class={siteNameLinkClass} target="_blank">{site.name}</a
28
+ >. {allRightsReserved}
27
29
  </span>
28
30
  <ul class={ulClass}>
29
31
  {#each links as { name, link, rel }}
@@ -16,6 +16,8 @@ export default class SimpleFooter extends SvelteComponentTyped<{
16
16
  ulClass?: string;
17
17
  aClass?: string;
18
18
  siteNameLinkClass?: string;
19
+ copyrightYear?: string;
20
+ allRightsReserved?: string;
19
21
  }, {
20
22
  [evt: string]: CustomEvent<any>;
21
23
  }, {}> {
@@ -40,6 +42,8 @@ declare const __propDef: {
40
42
  ulClass?: string;
41
43
  aClass?: string;
42
44
  siteNameLinkClass?: string;
45
+ copyrightYear?: string;
46
+ allRightsReserved?: string;
43
47
  };
44
48
  events: {
45
49
  [evt: string]: CustomEvent<any>;
@@ -80,6 +80,8 @@
80
80
  "flex mt-4 space-x-6 sm:justify-center md:mt-0";
81
81
  export let socialMediaLinkClass = "text-gray-400 hover:text-white";
82
82
  export let iconClass = "h-5 w-5 mr-2";
83
+ export let copyrightYear = "© 2022";
84
+ export let allRightsReserved = "All Rights Reserved.";
83
85
  </script>
84
86
 
85
87
  <footer class={footerClass}>
@@ -101,7 +103,7 @@
101
103
  </div>
102
104
  <div class={copyrightDivClass}>
103
105
  <span class={copyrightClass}
104
- 2022 <a href={site.link}>{site.name}</a>. All Rights Reserved.
106
+ >{copyrightYear} <a href={site.link}>{site.name}</a>. {allRightsReserved}
105
107
  </span>
106
108
  <div class={socialMediaDivClass}>
107
109
  {#each socialMedia as { link, icon }}
@@ -16,6 +16,8 @@ export default class SitemapFooter extends SvelteComponentTyped<{
16
16
  }[];
17
17
  footerClass?: string;
18
18
  ulClass?: string;
19
+ copyrightYear?: string;
20
+ allRightsReserved?: string;
19
21
  socialMedia?: {
20
22
  link: string;
21
23
  icon: string;
@@ -52,6 +54,8 @@ declare const __propDef: {
52
54
  }[];
53
55
  footerClass?: string;
54
56
  ulClass?: string;
57
+ copyrightYear?: string;
58
+ allRightsReserved?: string;
55
59
  socialMedia?: {
56
60
  link: string;
57
61
  icon: string;
@@ -64,6 +64,8 @@
64
64
  export let socialMediaLinkClass =
65
65
  "text-gray-500 hover:text-gray-900 dark:hover:text-white";
66
66
  export let iconClass = "h-5 w-5 mr-2";
67
+ export let copyrightYear = "© 2022";
68
+ export let allRightsReserved = "All Rights Reserved.";
67
69
  </script>
68
70
 
69
71
  <footer class={footerClass}>
@@ -94,8 +96,8 @@
94
96
  <hr class={hrClass} />
95
97
  <div class={copyrightDivClass}>
96
98
  <span class={copyrightClass}
97
- >© 2022 <a href={site.link} class="hover:underline">{site.name}</a>. All
98
- Rights Reserved.
99
+ >{copyrightYear}
100
+ <a href={site.link} class="hover:underline">{site.name}</a>. {allRightsReserved}
99
101
  </span>
100
102
  <div class={socialMediaDivClass}>
101
103
  {#each socialMedia as { link, icon }}
@@ -16,6 +16,8 @@ export default class SocialMediaFooter extends SvelteComponentTyped<{
16
16
  }[];
17
17
  footerClass?: string;
18
18
  ulClass?: string;
19
+ copyrightYear?: string;
20
+ allRightsReserved?: string;
19
21
  divClass?: string;
20
22
  imgClass?: string;
21
23
  hrClass?: string;
@@ -58,6 +60,8 @@ declare const __propDef: {
58
60
  }[];
59
61
  footerClass?: string;
60
62
  ulClass?: string;
63
+ copyrightYear?: string;
64
+ allRightsReserved?: string;
61
65
  divClass?: string;
62
66
  imgClass?: string;
63
67
  hrClass?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowbite-svelte",
3
- "version": "0.8.7",
3
+ "version": "0.8.8",
4
4
  "description": "Flowbite components for Svelte",
5
5
  "author": {
6
6
  "name": "Shinichi Okada",