nom update

This commit is contained in:
Eric van der Vlist 2023-01-16 16:55:30 +01:00
parent 356c4b0eba
commit e011124dfe
2 changed files with 939 additions and 730 deletions

1652
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,6 +5,7 @@ import { getLength } from 'ol/sphere';
import { Component, createSignal, For, Show } from 'solid-js';
import { useI18n } from '@solid-primitives/i18n';
import EditIcon from '@suid/icons-material/Edit';
import TravelExploreIcon from '@suid/icons-material/TravelExplore';
import { Paper, Stack } from '@suid/material';
import styled from '@suid/material/styles/styled';
import Dialog from '../dialog';
@ -162,9 +163,19 @@ const Infos: Component<{}> = (props) => {
<For each={vectorLayerFeatures}>
{(feature) => (
<Tree
title={`${feature.get('class')} ${
feature.get('name') || ''
}`}
title={
<>
<div>
{`${feature.get('class')}
${feature.get('name') || ''}`}
</div>
<div>
<IconButton>
<TravelExploreIcon />
</IconButton>
</div>
</>
}
content={
<>
<>