flowbite-svelte 0.19.3 → 0.19.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
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.19.4](https://github.com/themesberg/flowbite-svelte/compare/v0.19.3...v0.19.4) (2022-06-25)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * change from const to let navDivClass ([ffdcd9f](https://github.com/themesberg/flowbite-svelte/commit/ffdcd9fa2cde37a13103e493905d6076f61e5df6))
11
+ * update navbar index page by adding flex items-center md:order-2 ([efc0209](https://github.com/themesberg/flowbite-svelte/commit/efc0209c87d063157f225476f0b8e5beb04ed36f))
12
+
5
13
  ### [0.19.3](https://github.com/themesberg/flowbite-svelte/compare/v0.19.2...v0.19.3) (2022-06-24)
6
14
 
7
15
 
@@ -1,7 +1,7 @@
1
1
  <script>import classNames from 'classnames';
2
2
  export let navClass = 'bg-white border-gray-200 px-2 sm:px-4 py-2.5 dark:bg-gray-800';
3
- const navDivClass = 'mx-auto flex flex-wrap justify-between items-center ';
4
- export let fluid = false;
3
+ export let navDivClass = 'mx-auto flex flex-wrap justify-between items-center ';
4
+ export let fluid = true;
5
5
  export let rounded = false;
6
6
  export let border = false;
7
7
  let hidden = true;
@@ -23,7 +23,7 @@ let toggle = () => {
23
23
  >
24
24
  <div
25
25
  class={classNames(navDivClass, {
26
- container: !fluid
26
+ container: fluid
27
27
  })}
28
28
  >
29
29
  <slot {hidden} {toggle} />
@@ -3,6 +3,7 @@ declare const __propDef: {
3
3
  props: {
4
4
  [x: string]: any;
5
5
  navClass?: string;
6
+ navDivClass?: string;
6
7
  fluid?: boolean;
7
8
  rounded?: boolean;
8
9
  border?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowbite-svelte",
3
- "version": "0.19.3",
3
+ "version": "0.19.4",
4
4
  "description": "Flowbite components for Svelte",
5
5
  "main": "index.js",
6
6
  "author": {