lit-litelements 2.2.1 → 2.2.3
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/dist/component/chart.lit.js +1 -1
- package/dist/main.js +1 -1
- package/package.json +1 -1
- package/readme.md +158 -62
|
@@ -275,7 +275,7 @@ let ChartElement = class ChartElement extends LitElement {
|
|
|
275
275
|
if (typeof label === 'string') {
|
|
276
276
|
const labelDate = new Date(label).toISOString().split("T")[0];
|
|
277
277
|
const todayStr = new Date().toISOString().split("T")[0];
|
|
278
|
-
return labelDate === todayStr ? "
|
|
278
|
+
return labelDate === todayStr ? "Salmon" : "black";
|
|
279
279
|
}
|
|
280
280
|
return "black"; // default fallback
|
|
281
281
|
}
|