diff --git a/.env.development b/.env.development
index bf242b0..bb88720 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.895
+NEXT_PUBLIC_APP_VERSION=1.6.896
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 5858c04..471286b 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.895
+NEXT_PUBLIC_APP_VERSION=1.6.896
NEXT_PUBLIC_CPL_MODE=production
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e1f7007..c660b2a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## [1.6.896] – 2025-09-10
+
+- style: Digitale Ausgänge Switch
+
+---
## [1.6.895] – 2025-09-10
- style: DigitalInputsModal dark mode
diff --git a/components/main/digitalOutputs/DigitalOutputsModal.tsx b/components/main/digitalOutputs/DigitalOutputsModal.tsx
index ceed0f8..0e1be46 100644
--- a/components/main/digitalOutputs/DigitalOutputsModal.tsx
+++ b/components/main/digitalOutputs/DigitalOutputsModal.tsx
@@ -94,44 +94,48 @@ export default function DigitalOutputsModal({
return (
-
-
-
+
+
+
Einstellungen Schaltausgang {selectedOutput.id}
-
-
-
-
-
Bezeichnung:
+
+
+
+
+
+ Bezeichnung:
+
+
+
+ setLabel(e.target.value)}
+ className="border border-base rounded px-2 py-1 w-full bg-[var(--color-surface-alt)] text-fg"
+ placeholder="z. B. Licht Relais 1"
+ />
+
-
setLabel(e.target.value)}
- className="w-full border border-gray-300 rounded px-3 py-2"
- placeholder="z. B. Licht Relais 1"
- />
+ {errorMsg &&
{errorMsg}
}
-
- {errorMsg &&
{errorMsg}
}
-
-
+
+
);
diff --git a/components/main/digitalOutputs/DigitalOutputsWidget.tsx b/components/main/digitalOutputs/DigitalOutputsWidget.tsx
index 9b382af..7a33a44 100644
--- a/components/main/digitalOutputs/DigitalOutputsWidget.tsx
+++ b/components/main/digitalOutputs/DigitalOutputsWidget.tsx
@@ -113,10 +113,14 @@ export default function DigitalOutputsWidget({
role="switch"
aria-checked={output.status}
onClick={() => handleToggle(output.id)}
- className={`relative inline-flex h-4 w-7 items-center rounded-full border border-base transition-colors duration-200 ${output.status ? "bg-littwin-blue" : "bg-base-muted"}`}
+ className={`relative inline-flex h-4 w-7 items-center rounded-full border border-base transition-colors duration-200 ${
+ output.status ? "bg-littwin-blue" : "bg-base-muted"
+ }`}
>
diff --git a/package-lock.json b/package-lock.json
index c899489..af2bcd5 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "cpl-v4",
- "version": "1.6.895",
+ "version": "1.6.896",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "cpl-v4",
- "version": "1.6.895",
+ "version": "1.6.896",
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
diff --git a/package.json b/package.json
index a838521..692a43c 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "cpl-v4",
- "version": "1.6.895",
+ "version": "1.6.896",
"private": true,
"scripts": {
"dev": "next dev -p 3000",