ublo-lib 1.12.16 → 1.12.17

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.
@@ -33,7 +33,7 @@ export default function EditableMap({
33
33
  const [center, setCenter] = React.useState(presets?.center || FRANCE_CENTER);
34
34
  const [zoom, setZoom] = React.useState(presets?.zoom ?? DEFAULT_ZOOM);
35
35
  const [markers, setMarkers] = React.useState(presets?.markers || []);
36
- const scrollWheelZoom = isInDialog || fullScreen || Boolean(cmsMode);
36
+ const scrollWheelZoom = Boolean(cmsMode) || isInDialog || fullScreen;
37
37
  const refreshSize = () => {
38
38
  ref.current.invalidateSize();
39
39
  };
@@ -6,7 +6,7 @@ export function Location(props) {
6
6
  ...props,
7
7
  children: [_jsx("path", {
8
8
  d: "M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z",
9
- fill: "#383838"
9
+ fill: "#CF0900"
10
10
  }), _jsx("path", {
11
11
  fillRule: "evenodd",
12
12
  clipRule: "evenodd",
@@ -34,7 +34,7 @@ export function Location3(props) {
34
34
  ...props,
35
35
  children: [_jsx("path", {
36
36
  d: "M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z",
37
- fill: "#CF0900"
37
+ fill: "#383838"
38
38
  }), _jsx("path", {
39
39
  fillRule: "evenodd",
40
40
  clipRule: "evenodd",
@@ -65,6 +65,7 @@
65
65
  align-items: center;
66
66
  gap: 1ch;
67
67
  padding: 6px;
68
+ color: inherit;
68
69
  font-size: 14px;
69
70
  text-align: left;
70
71
  border-radius: var(--ds-radius-100, 6px);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ublo-lib",
3
- "version": "1.12.16",
3
+ "version": "1.12.17",
4
4
  "peerDependencies": {
5
5
  "dt-design-system": "^2.1.0",
6
6
  "leaflet": "^1.9.1",