flowbite-svelte 0.24.9 → 0.24.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 +13 -0
- package/modals/Modal.svelte +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
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.24.10](https://github.com/themesberg/flowbite-svelte/compare/v0.24.9...v0.24.10) (2022-08-15)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* modal - crypto ([47cf678](https://github.com/themesberg/flowbite-svelte/commit/47cf678ef2a7bf10c842e367a37e2aedebe7a8fc))
|
|
11
|
+
* modal - crypto + html ([26475ed](https://github.com/themesberg/flowbite-svelte/commit/26475edd98a2c73fbe02580fefb4c8455e25f1bb))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* create Coinbase, Fortmatic, Metamask, OperaWallet, and WalletConnect component ([f8eabc5](https://github.com/themesberg/flowbite-svelte/commit/f8eabc5b23b8c0d9fab75deca393858952406660))
|
|
17
|
+
|
|
5
18
|
### [0.24.9](https://github.com/themesberg/flowbite-svelte/compare/v0.24.8...v0.24.9) (2022-08-15)
|
|
6
19
|
|
|
7
20
|
|
package/modals/Modal.svelte
CHANGED
|
@@ -119,7 +119,7 @@ const hide = () => {
|
|
|
119
119
|
>
|
|
120
120
|
<!-- Modal header -->
|
|
121
121
|
{#if $$slots.header || title}
|
|
122
|
-
<div class="flex justify-between items-
|
|
122
|
+
<div class="flex justify-between items-center p-4 rounded-t border-b dark:border-gray-600">
|
|
123
123
|
<slot name="header">
|
|
124
124
|
<h3 class="text-xl font-semibold text-gray-900 dark:text-white p-0">
|
|
125
125
|
{title}
|