circle Button

This commit is contained in:
ISA
2025-07-08 09:25:39 +02:00
parent fb680a4c66
commit 2af99f2740
6 changed files with 18 additions and 10 deletions

View File

@@ -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.557
NEXT_PUBLIC_APP_VERSION=1.6.558
NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter)

View File

@@ -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.557
NEXT_PUBLIC_APP_VERSION=1.6.558
NEXT_PUBLIC_CPL_MODE=production

View File

@@ -1,3 +1,8 @@
## [1.6.558] 2025-07-08
- feat: ersetzt Einheit-Select durch Listbox mit littwin-blue Design in AnalogInputsSettingsModal
---
## [1.6.557] 2025-07-08
- refactor: Zeitraum-Dropdown in DetailModal auf Listbox mit Littwin-Design umgestellt

View File

@@ -61,7 +61,7 @@ export const DetailModal = ({
},
plugins: {
legend: { position: "bottom" as const },
title: { display: true, text: `Verlauf ${selectedKey}` },
title: { display: true, text: `Verlauf ${selectedKey}` },
},
};
@@ -74,8 +74,9 @@ export const DetailModal = ({
<h2 className="text-xl font-semibold">
Detailansicht: {selectedKey}
</h2>
<button onClick={onClose} className="text-red-500 hover:text-red-700">
<button onClick={onClose} className="text-2xl hover:text-gray-200">
<i className="bi bi-x-circle-fill"></i>
</button>
</div>
@@ -142,8 +143,10 @@ export const DetailModal = ({
{
label: selectedKey,
data: values,
borderColor: "rgba(59,130,246,1)",
backgroundColor: "rgba(59,130,246,0.2)",
// littwin-blue
// rgb(61, 176, 242),
borderColor: "rgba(61, 176, 242, 1)",
fill: false,
},
],

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "cpl-v4",
"version": "1.6.557",
"version": "1.6.558",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "cpl-v4",
"version": "1.6.557",
"version": "1.6.558",
"dependencies": {
"@fontsource/roboto": "^5.1.0",
"@headlessui/react": "^2.2.4",

View File

@@ -1,6 +1,6 @@
{
"name": "cpl-v4",
"version": "1.6.557",
"version": "1.6.558",
"private": true,
"scripts": {
"dev": "next dev",