- add checboses for visibility in legend.entry.component

- add checkbox.scss
- npm updates
This commit is contained in:
Arno Kaimbacher 2021-10-25 12:27:24 +02:00
parent 9579a23e8e
commit d6abaa0d6d
12 changed files with 559 additions and 235 deletions

View file

@ -6,8 +6,9 @@ import { TimeInterval } from '../../../shared/models/timespan';
import { DatasetApiService } from '../../services/dataset-api.service';
import { InternalIdHandler, InternalDatasetId } from '../../../common/components/services/internal-id-handler.service';
import { DatasetOptions } from '../../../shared/models/options';
import { faEye, faEyeSlash, faChevronRight } from '@fortawesome/free-solid-svg-icons';
import { faEye, faEyeSlash, faCheck, faTimes, faChevronRight } from '@fortawesome/free-solid-svg-icons';
import { FirstLastValue } from '../../../shared/models/dataset';
import { GeoJSON } from 'leaflet';
@Component({
selector: 'geomon-legend-entry',
@ -24,6 +25,8 @@ export class LegendEntryComponent {
faEye = faEye;
faEyeSlash = faEyeSlash;
faChevronRight = faChevronRight;
faCheck = faCheck;
faTimes = faTimes;
public firstValue: FirstLastValue;
public lastValue: FirstLastValue;