2023-02-03 22:28:11 +01:00
|
|
|
<script lang="ts">
|
2023-06-14 20:39:36 +02:00
|
|
|
import { OsmConnection } from "../../Logic/Osm/OsmConnection"
|
|
|
|
|
import { Store, Stores, UIEventSource } from "../../Logic/UIEventSource"
|
|
|
|
|
import { Utils } from "../../Utils"
|
|
|
|
|
import ThemesList from "./ThemesList.svelte"
|
|
|
|
|
import Translations from "../i18n/Translations"
|
|
|
|
|
import UserRelatedState from "../../Logic/State/UserRelatedState"
|
2023-12-13 02:16:53 +01:00
|
|
|
import Tr from "../Base/Tr.svelte"
|
2023-02-03 22:28:11 +01:00
|
|
|
|
2023-06-14 20:39:36 +02:00
|
|
|
export let search: UIEventSource<string>
|
|
|
|
|
export let state: UserRelatedState & {
|
|
|
|
|
osmConnection: OsmConnection
|
|
|
|
|
}
|
2023-02-03 22:28:11 +01:00
|
|
|
|
2023-06-14 20:39:36 +02:00
|
|
|
let customThemes
|
2023-02-03 22:28:11 +01:00
|
|
|
</script>
|