@@ -39,4 +36,4 @@
padding: var(--spacing-xl);
min-width: 600px;
}
-
\ No newline at end of file
+
diff --git a/packages/builder/src/components/common/Notification/NotificationDisplay.svelte b/packages/builder/src/components/common/Notification/NotificationDisplay.svelte
index 3a7c03a716..2a89426ca8 100644
--- a/packages/builder/src/components/common/Notification/NotificationDisplay.svelte
+++ b/packages/builder/src/components/common/Notification/NotificationDisplay.svelte
@@ -1,6 +1,6 @@
{#if schema.customisable}
{#if config}
-
-
Query type: {config[query.queryVerb].type}
-
-
-
+
+
+ Query type:
+ {config[query.queryVerb].type}
+
+
+
+
-
+
{/if}
@@ -182,7 +187,11 @@
{#each fields as field, idx}
-
+
{/each}
-
-
+
+
{/if}
{/if}
@@ -206,7 +215,6 @@
{/if}
-
\ No newline at end of file
+ import { flip } from "svelte/animate"
+ import { fly } from "svelte/transition"
+ import { getContext } from "svelte"
+ const { notifications } = getContext("sdk")
+
+ export let themes = {
+ danger: "#E26D69",
+ success: "#84C991",
+ warning: "#f0ad4e",
+ info: "#5bc0de",
+ default: "#aaaaaa",
+ }
+
+
+
+ {#each $notifications as notification (notification.id)}
+
+
{notification.message}
+ {#if notification.icon}
{/if}
+
+ {/each}
+
+
+