Skip to content

Commit baf2d80

Browse files
authored
Feat/build action (#360)
* fix: build setup * fix: pictique build * fix: blabsy build * fix: add missing files * fix: evoting build * fix: cerberus build * fix: charter build * fix: control panel build * fix: run format * fix: evoting ignored errors * fix: type safety recommendation
1 parent a435021 commit baf2d80

File tree

207 files changed

+8135
-10784
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+8135
-10784
lines changed

infrastructure/control-panel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@eslint/js": "^9.18.0",
2121
"@storybook/addon-svelte-csf": "^5.0.7",
2222
"@storybook/sveltekit": "^9.0.17",
23-
"@sveltejs/adapter-static": "^3.0.8",
23+
"@sveltejs/adapter-node": "^5.3.3",
2424
"@sveltejs/kit": "^2.22.0",
2525
"@sveltejs/vite-plugin-svelte": "^6.0.0",
2626
"@tailwindcss/vite": "^4.0.0",

infrastructure/control-panel/src/lib/components/EVaultList.svelte

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -148,27 +148,27 @@
148148
<thead class="bg-gray-50">
149149
<tr>
150150
<th
151-
class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"
151+
class="px-6 py-3 text-left text-xs font-medium tracking-wider text-gray-500 uppercase"
152152
>
153153
Name
154154
</th>
155155
<th
156-
class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"
156+
class="px-6 py-3 text-left text-xs font-medium tracking-wider text-gray-500 uppercase"
157157
>
158158
Namespace
159159
</th>
160160
<th
161-
class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"
161+
class="px-6 py-3 text-left text-xs font-medium tracking-wider text-gray-500 uppercase"
162162
>
163163
Status
164164
</th>
165165
<th
166-
class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"
166+
class="px-6 py-3 text-left text-xs font-medium tracking-wider text-gray-500 uppercase"
167167
>
168168
Age
169169
</th>
170170
<th
171-
class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"
171+
class="px-6 py-3 text-left text-xs font-medium tracking-wider text-gray-500 uppercase"
172172
>
173173
Service URL
174174
</th>
@@ -178,14 +178,14 @@
178178
{#each evaults as evault}
179179
<tr class="hover:bg-gray-50">
180180
<td
181-
class="whitespace-nowrap px-6 py-4 text-sm font-medium text-gray-900"
181+
class="px-6 py-4 text-sm font-medium whitespace-nowrap text-gray-900"
182182
>
183183
{evault.name}
184184
</td>
185-
<td class="whitespace-nowrap px-6 py-4 text-sm text-gray-500">
185+
<td class="px-6 py-4 text-sm whitespace-nowrap text-gray-500">
186186
{evault.namespace}
187187
</td>
188-
<td class="whitespace-nowrap px-6 py-4">
188+
<td class="px-6 py-4 whitespace-nowrap">
189189
<span
190190
class="inline-flex rounded-full px-2 py-1 text-xs font-semibold {evault.status ===
191191
'Running'
@@ -197,10 +197,10 @@
197197
{evault.status}
198198
</span>
199199
</td>
200-
<td class="whitespace-nowrap px-6 py-4 text-sm text-gray-500">
200+
<td class="px-6 py-4 text-sm whitespace-nowrap text-gray-500">
201201
{evault.age || 'Unknown'}
202202
</td>
203-
<td class="whitespace-nowrap px-6 py-4 text-sm text-gray-500">
203+
<td class="px-6 py-4 text-sm whitespace-nowrap text-gray-500">
204204
{#if evault.serviceUrl}
205205
<a
206206
href={evault.serviceUrl}

infrastructure/control-panel/src/lib/fragments/TableCardHeader/TableCardHeader.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121

2222
<header class="mb-4 flex w-full items-center justify-between px-4">
2323
<div class="flex items-center gap-4">
24-
<p class="text-black-700 whitespace-nowrap font-semibold">{title}</p>
24+
<p class="text-black-700 font-semibold whitespace-nowrap">{title}</p>
2525
<div class="relative w-full">
2626
<input
2727
type="text"
2828
{placeholder}
2929
bind:value={searchValue}
3030
class="bg-black-100 text-black-700 placeholder:text-black-700 w-full rounded-[8px] border border-gray-300 px-4 py-1.5 pr-10 text-xs outline-0"
3131
/>
32-
<span class="text-black-700 absolute right-3 top-1/2 h-4 w-4 -translate-y-1/2">
32+
<span class="text-black-700 absolute top-1/2 right-3 h-4 w-4 -translate-y-1/2">
3333
<HugeiconsIcon
3434
icon={Search01FreeIcons}
3535
size="16px"

0 commit comments

Comments
 (0)