diff --git a/.env.development b/.env.development index 0d0c8b5..3fbe5e2 100644 --- a/.env.development +++ b/.env.development @@ -6,6 +6,6 @@ NEXT_PUBLIC_USE_MOCK_BACKEND_LOOP_START=false NEXT_PUBLIC_EXPORT_STATIC=false NEXT_PUBLIC_USE_CGI=false # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.6.541 +NEXT_PUBLIC_APP_VERSION=1.6.542 NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter) diff --git a/.env.production b/.env.production index 3398f32..f8f965a 100644 --- a/.env.production +++ b/.env.production @@ -5,5 +5,5 @@ NEXT_PUBLIC_CPL_API_PATH=/CPL NEXT_PUBLIC_EXPORT_STATIC=true NEXT_PUBLIC_USE_CGI=true # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.6.541 +NEXT_PUBLIC_APP_VERSION=1.6.542 NEXT_PUBLIC_CPL_MODE=production \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ac5ed41..b4d4bb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [1.6.542] – 2025-07-07 + +- feat: lade nur spezifischen Spannungs-/Temperatur-Thunk beim Öffnen des Detailmodals + +- Entfernt globale Thunk-Aufrufe für alle Systemwerte bei Zeitraumwechsel +- Detailansicht lädt nun nur den benötigten Redux-Thunk (z. B. +15V → Channel 108) +- Zeitraumwechsel im Modal löst gezielt nur den zugehörigen Thunk aus +- Reduziert unnötige Datenlast und verbessert Performance bei Embedded-Geräten + +--- ## [1.6.541] – 2025-07-07 - system diff --git a/components/main/reports/DateRangePickerMeldungen.tsx b/components/main/reports/DateRangePickerMeldungen.tsx index fd7f9fd..ba9d5c0 100644 --- a/components/main/reports/DateRangePickerMeldungen.tsx +++ b/components/main/reports/DateRangePickerMeldungen.tsx @@ -28,6 +28,8 @@ const DateRangePickerMeldungen: React.FC = ({
date && setFromDate(formatDate(date))} selectsStart @@ -42,6 +44,8 @@ const DateRangePickerMeldungen: React.FC = ({
date && setToDate(formatDate(date))} selectsEnd diff --git a/package-lock.json b/package-lock.json index a1711c4..b62173b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cpl-v4", - "version": "1.6.541", + "version": "1.6.542", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cpl-v4", - "version": "1.6.541", + "version": "1.6.542", "dependencies": { "@fontsource/roboto": "^5.1.0", "@iconify-icons/ri": "^1.2.10", diff --git a/package.json b/package.json index 677ae67..935a4ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cpl-v4", - "version": "1.6.541", + "version": "1.6.542", "private": true, "scripts": { "dev": "next dev", diff --git a/styles/globals.css b/styles/globals.css index 8553c7b..142970d 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -57,3 +57,6 @@ body { .react-datepicker__day--today { border: 1px solid var(--littwin-blue); } +.custom-datepicker-popper { + z-index: 9999 !important; /* Maximale Priorität */ +} diff --git a/tailwind.config.js b/tailwind.config.js index 8e4a9a2..a595eec 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -7,6 +7,10 @@ module.exports = { ], theme: { extend: { + zIndex: { + 60: "60", + 70: "70", + }, colors: { "littwin-blue": "#00AEEF", },