@iroco/ui 1.6.11 → 1.6.13
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/dist/Alert.svelte +2 -2
- package/dist/Alert.svelte.d.ts +1 -1
- package/package.json +1 -1
package/dist/Alert.svelte
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import IconClose from './IconClose.svelte';
|
|
3
|
-
import { type MouseEventHandler
|
|
3
|
+
import { type MouseEventHandler } from 'svelte/elements';
|
|
4
4
|
|
|
5
|
-
interface Props
|
|
5
|
+
interface Props {
|
|
6
6
|
type?: 'success' | 'danger' | 'flash';
|
|
7
7
|
showClose?: boolean;
|
|
8
8
|
/** @deprecated use onclose instead */
|
package/dist/Alert.svelte.d.ts
CHANGED