41597f87b5
- Disclaimer aus CMS-Feld (hinweis_text) via InfoAccordion statt Hardcode - info_text-Feld für Block-Fließtext ergänzt - anlagen_geplant_hinweis-Feld in WindArea + Panel-Anzeige - Tooltip-Icons entfernt (square-outline/wind-turbine/map-marker inline SVGs) - Panel: square-outline → ruler-square für Fläche - Iconify-Subset neu generiert Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
27 lines
760 B
TypeScript
27 lines
760 B
TypeScript
export type TextFragment = {
|
|
_slug: string;
|
|
id?: string;
|
|
title?: string;
|
|
text?: string;
|
|
bulletPoints?: string[];
|
|
tags?: Array<{ _slug: string; name?: string } | string>;
|
|
};
|
|
|
|
export type WindArea = {
|
|
_slug: string;
|
|
gebiets_nr: string;
|
|
bezeichnung?: string;
|
|
status?: "rechtskraeftig" | "entwurf_2" | "entwurf_2_voraussichtlich" | "entwurf_3";
|
|
flaeche_ha?: number;
|
|
anlagen_geplant?: number;
|
|
anlagen_geplant_hinweis?: string;
|
|
hoehe_max_m?: number;
|
|
investor?: string;
|
|
gemeinden?: string[];
|
|
stellungnahme?: { _slug: string; slug?: string } | string | null;
|
|
stellungnahmeUrl?: string | null;
|
|
stellungnahme_kriterien?: Array<TextFragment | { _slug: string } | string> | null;
|
|
notizen?: string;
|
|
geometry?: GeoJSON.Geometry;
|
|
};
|