flowbite-svelte 0.22.8 → 0.22.9

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.22.9](https://github.com/themesberg/flowbite-svelte/compare/v0.22.8...v0.22.9) (2022-07-23)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * using classnames dynamic class name for Footer ([52e17c7](https://github.com/themesberg/flowbite-svelte/commit/52e17c7dd8ad2599d1f41bc938930db615459b63))
11
+
5
12
  ### [0.22.8](https://github.com/themesberg/flowbite-svelte/compare/v0.22.7...v0.22.8) (2022-07-23)
6
13
 
7
14
 
@@ -1,6 +1,7 @@
1
1
  <script>import classNames from 'classnames';
2
2
  export let customClass = '';
3
3
  export let footerType = 'default';
4
+ // using classNames dynamic class names, https://github.com/JedWatson/classnames#dynamic-class-names-with-es2015
4
5
  </script>
5
6
 
6
7
  <footer
@@ -11,7 +12,7 @@ export let footerType = 'default';
11
12
  'p-4 bg-white rounded-lg shadow md:px-6 md:py-8 dark:bg-gray-800': footerType === 'logo',
12
13
  'p-4 bg-white rounded-lg shadow md:flex md:items-center md:justify-between md:p-6 dark:bg-gray-800':
13
14
  footerType === 'default',
14
- customClass: footerType === 'custom'
15
+ [`${customClass}`]: footerType === 'custom'
15
16
  },
16
17
  $$props.class
17
18
  )}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowbite-svelte",
3
- "version": "0.22.8",
3
+ "version": "0.22.9",
4
4
  "description": "Flowbite components for Svelte",
5
5
  "main": "index.js",
6
6
  "author": {