@geops/rvf-mobility-web-component 0.1.40 → 0.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@geops/rvf-mobility-web-component",
|
|
3
3
|
"license": "UNLICENSED",
|
|
4
4
|
"description": "Web components for rvf in the domains of mobility and logistics.",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.41",
|
|
6
6
|
"homepage": "https://rvf-mobility-web-component-geops.vercel.app/",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "index.js",
|
|
@@ -55,21 +55,25 @@ function RvfNotificationDetails({ feature }: { feature: Feature }) {
|
|
|
55
55
|
</RvfLink>
|
|
56
56
|
);
|
|
57
57
|
})}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
58
|
+
{!!products?.length && (
|
|
59
|
+
<>
|
|
60
|
+
<div className={"font-bold"}>Betroffene Lines:</div>
|
|
61
|
+
<div className={"flex flex-wrap gap-1"}>
|
|
62
|
+
{products?.map(({ name }) => {
|
|
63
|
+
return (
|
|
64
|
+
<div
|
|
65
|
+
className={
|
|
66
|
+
"rounded-md bg-red px-[12px] py-[9px] font-bold leading-none text-white"
|
|
67
|
+
}
|
|
68
|
+
key={name}
|
|
69
|
+
>
|
|
70
|
+
{name}
|
|
71
|
+
</div>
|
|
72
|
+
);
|
|
73
|
+
})}
|
|
74
|
+
</div>
|
|
75
|
+
</>
|
|
76
|
+
)}
|
|
73
77
|
</div>
|
|
74
78
|
);
|
|
75
79
|
}
|