fix: upgrade ui (#2)

Co-authored-by: terraputix <terraputix@mailbox.org>
Reviewed-on: useweb/ombrella#2
This commit is contained in:
2026-02-15 15:09:49 +01:00
co-authored by terraputix
parent f781ef4fd6
commit c2e90f5919
52 changed files with 452 additions and 129 deletions
@@ -1,5 +1,6 @@
<script lang="ts">
import { onMount } from 'svelte';
import { SvelteDate } from 'svelte/reactivity';
import { fade } from 'svelte/transition';
import { fetchWeatherApi } from 'openmeteo';
@@ -7,6 +8,8 @@
import { type GeoLocation, storedLocation } from '$lib/stores/settings';
import { urlHashStore } from '$lib/stores/url-hash-store';
import { pad } from '$lib/utils';
import { Label } from '$lib/components/ui/label';
import * as Select from '$lib/components/ui/select';
@@ -18,8 +21,6 @@
import { defaultParameters, models } from '../../options';
import { getColor } from '../../utils/colors';
import weatherCodes from '../../utils/weather-codes';
import { SvelteDate } from 'svelte/reactivity';
import { pad } from '$lib/utils';
const params = urlHashStore({
latitude: [$storedLocation.latitude],