@geops/rvf-mobility-web-component 0.1.53 → 0.1.54

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.53",
5
+ "version": "0.1.54",
6
6
  "homepage": "https://rvf-mobility-web-component-geops.vercel.app/",
7
7
  "type": "module",
8
8
  "main": "index.js",
@@ -121,7 +121,8 @@ const attrs: MobilityMapAttributes = {
121
121
  // },
122
122
  // },
123
123
  // } as LayersConfig),
124
- description: `A JSON string to configure the layers and other components associated to it. The layers available are : ${LAYERS_WITH_LINK}.<br/>
124
+ description: `A JSON string to configure the layers and other components associated to it.<br/>
125
+ The layers available are : ${LAYERS_WITH_LINK}.<br/>
125
126
  Definition for a layer :
126
127
  <pre style="font-size: 12px; overflow: auto;">{
127
128
  liniennetz: { // The layer name, here the liniennetz layer.
@@ -336,8 +336,8 @@ function RvfNotificationDetails({ feature }: { feature: Feature }) {
336
336
 
337
337
  {timeIntervalsToDisplay?.map(
338
338
  ({
339
- dailyEndTime = "22:00",
340
- dailyStartTime = "08:00",
339
+ dailyEndTime,
340
+ dailyStartTime,
341
341
  endTime,
342
342
  startTime,
343
343
  }: AffectedTimeIntervalType) => {
@@ -2,6 +2,7 @@ import { useContext, useEffect, useId, useState } from "preact/compat";
2
2
 
3
3
  import ArrowDown from "../../icons/ArrowDown";
4
4
  import ArrowUp from "../../icons/ArrowUp";
5
+ import minusGrey from "../../icons/Minus/minus-grey.svg";
5
6
  import RvfCheckbox from "../../RvfCheckbox";
6
7
  import RvfRadioButton from "../../RvfRadioButton";
7
8
  import { LayersTreeDispatchContext } from "../layersTreeContext";