flowbite-svelte 0.27.9 → 0.27.10

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,18 @@
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.27.10](https://github.com/themesberg/flowbite-svelte/compare/v0.27.9...v0.27.10) (2022-10-21)
6
+
7
+
8
+ ### Features
9
+
10
+ * add disabling only outside click but not backdrop ([#390](https://github.com/themesberg/flowbite-svelte/issues/390)) ([ebb6a1f](https://github.com/themesberg/flowbite-svelte/commit/ebb6a1f81d005ef19e432b7395ff7e17599c0b4f))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * missing dropdown example ([#388](https://github.com/themesberg/flowbite-svelte/issues/388)) ([69ba822](https://github.com/themesberg/flowbite-svelte/commit/69ba822ef1f3710bdccbaf31006a94e1e3d19aae))
16
+
5
17
  ### [0.27.9](https://github.com/themesberg/flowbite-svelte/compare/v0.27.8...v0.27.9) (2022-10-19)
6
18
 
7
19
 
@@ -44,6 +44,8 @@ let backdropDivClass = classNames('fixed top-0 left-0 z-50 w-full h-full', backd
44
44
  {#if !hidden}
45
45
  {#if backdrop && activateClickOutside}
46
46
  <div role="presentation" class={backdropDivClass} on:click={() => !hidden && handleDrawer()} />
47
+ {:else if backdrop && !activateClickOutside}
48
+ <div role="presentation" class={backdropDivClass} />
47
49
  {/if}
48
50
  {#if activateClickOutside}
49
51
  <div
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowbite-svelte",
3
- "version": "0.27.9",
3
+ "version": "0.27.10",
4
4
  "description": "Flowbite components for Svelte",
5
5
  "main": "index.js",
6
6
  "author": {
@@ -32,6 +32,7 @@
32
32
  "prism-themes": "^1.9.0",
33
33
  "svelte": "^3.44.0",
34
34
  "svelte-check": "^2.7.1",
35
+ "svelte-meta-tags": "^2.6.3",
35
36
  "svelte-preprocess": "^4.10.7",
36
37
  "svelte2tsx": "^0.5.18",
37
38
  "tailwindcss": "^3.1.5",