@invopop/popui 0.0.108 → 0.0.109
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.
|
@@ -20,7 +20,7 @@ function updateItem(event) {
|
|
|
20
20
|
</script>
|
|
21
21
|
|
|
22
22
|
<div
|
|
23
|
-
class="{widthClass} border border-neutral-200 py-
|
|
23
|
+
class="{widthClass} border border-neutral-200 py-0.5 rounded-2xl shadow-lg space-y-0.5 bg-white max-h-80 overflow-y-auto"
|
|
24
24
|
>
|
|
25
25
|
<slot />
|
|
26
26
|
<ul class="space-y-0.5 max-h-80 overflow-y-auto">
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import { Icon } from "@steeze-ui/svelte-icon";
|
|
2
|
-
import {
|
|
2
|
+
import { Warning, Failure, Queue, Running, Success, CheckBadge, Skip } from "@invopop/ui-icons";
|
|
3
3
|
export let status;
|
|
4
4
|
$:
|
|
5
5
|
iconStatus = getIconStatus(status);
|
|
@@ -9,7 +9,7 @@ function getIconStatus(status2) {
|
|
|
9
9
|
success: Success,
|
|
10
10
|
run: Running,
|
|
11
11
|
queued: Queue,
|
|
12
|
-
alert:
|
|
12
|
+
alert: Warning,
|
|
13
13
|
skip: Skip,
|
|
14
14
|
signed: CheckBadge
|
|
15
15
|
};
|
package/dist/Notification.svelte
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import clsx from "clsx";
|
|
2
|
-
import {
|
|
2
|
+
import { Warning, Failure, Success } from "@invopop/ui-icons";
|
|
3
3
|
import { Icon } from "@steeze-ui/svelte-icon";
|
|
4
4
|
export let message = "";
|
|
5
5
|
export let type = "success";
|
|
@@ -24,7 +24,7 @@ function getIcon(type2) {
|
|
|
24
24
|
case "error":
|
|
25
25
|
return Failure;
|
|
26
26
|
case "warning":
|
|
27
|
-
return
|
|
27
|
+
return Warning;
|
|
28
28
|
default:
|
|
29
29
|
return null;
|
|
30
30
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@invopop/popui",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.109",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite dev",
|
|
7
7
|
"build": "vite build && npm run package",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"dependencies": {
|
|
85
85
|
"@beyonk/svelte-datepicker": "^13.0.3",
|
|
86
86
|
"@floating-ui/core": "^1.5.1",
|
|
87
|
-
"@invopop/ui-icons": "0.0.
|
|
87
|
+
"@invopop/ui-icons": "0.0.71",
|
|
88
88
|
"@steeze-ui/heroicons": "^2.2.3",
|
|
89
89
|
"@steeze-ui/svelte-icon": "1.3.2",
|
|
90
90
|
"@twind/core": "^1.1.3",
|