Chore: regenerate docs, lint

This commit is contained in:
Pieter Vander Vennet 2023-12-30 15:24:30 +01:00
parent 7b41b617f6
commit bad0edd4b0
201 changed files with 6044 additions and 1750 deletions

View file

@ -12,17 +12,24 @@
let id = feature.properties.id
let tags = state.featureProperties.getStore(id)
let layer: LayerConfig = state.layout.getMatchingLayer(tags.data)
</script>
<span class="inline-flex gap-x-1">
<a class="small flex space-x-0.5 cursor-pointer w-fit items-center" href={`#${feature.properties.id}`}>
{#if i !== undefined}
<span class="font-bold">{i + 1} &nbsp; </span>
{/if}
<TagRenderingAnswer config={layer.title} extraClasses="inline-flex w-fit" {layer} selectedElement={feature} {state}
{tags} />
</a>
<a
class="small flex w-fit cursor-pointer items-center space-x-0.5"
href={`#${feature.properties.id}`}
>
{#if i !== undefined}
<span class="font-bold">{i + 1} &nbsp;</span>
{/if}
<TagRenderingAnswer
config={layer.title}
extraClasses="inline-flex w-fit"
{layer}
selectedElement={feature}
{state}
{tags}
/>
</a>
<DirectionIndicator {feature} {state} />
</span>