@signal9/era-ui 1.14.1 → 1.14.2
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/os/taskbar.svelte +6 -6
- package/package.json +1 -1
package/dist/os/taskbar.svelte
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
)}
|
|
44
44
|
{...restProps}
|
|
45
45
|
>
|
|
46
|
-
<Button icon size="
|
|
47
|
-
<LayoutGrid class="size-(--era-h-
|
|
46
|
+
<Button icon size="default" aria-label="Open launcher" onclick={onLauncher}>
|
|
47
|
+
<LayoutGrid class="size-(--era-h-xs)" />
|
|
48
48
|
</Button>
|
|
49
49
|
|
|
50
50
|
{#if pinned.length}
|
|
51
51
|
<div class="flex items-center gap-(--era-gap)">
|
|
52
52
|
{#each pinned as p (p.appId)}
|
|
53
|
-
<Button icon size="
|
|
54
|
-
{#if p.icon}{@const Icon = p.icon}<Icon class="size-(--era-h-
|
|
53
|
+
<Button icon size="default" aria-label={p.title} onclick={() => wm.open(p.appId)}>
|
|
54
|
+
{#if p.icon}{@const Icon = p.icon}<Icon class="size-(--era-h-xs)" />{/if}
|
|
55
55
|
</Button>
|
|
56
56
|
{/each}
|
|
57
57
|
</div>
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
<div class="ml-auto flex shrink-0 items-center gap-(--era-gap)">
|
|
83
83
|
<span class="px-(--era-inset-sm) text-body tabular-nums text-muted">{time}</span>
|
|
84
84
|
<div class="relative">
|
|
85
|
-
<Button icon size="
|
|
86
|
-
<Bell class="size-(--era-h-
|
|
85
|
+
<Button icon size="default" aria-label="Notifications" onclick={onNotifications}>
|
|
86
|
+
<Bell class="size-(--era-h-xs)" />
|
|
87
87
|
</Button>
|
|
88
88
|
{#if notif.unread > 0}
|
|
89
89
|
<span
|