datastake-daf 0.6.270 → 0.6.271
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/components/index.js
CHANGED
|
@@ -19309,7 +19309,7 @@ const Style$A = dt.div`
|
|
|
19309
19309
|
flex-direction: row;
|
|
19310
19310
|
position: relative;
|
|
19311
19311
|
width: 100%;
|
|
19312
|
-
height:
|
|
19312
|
+
height: 472px;
|
|
19313
19313
|
|
|
19314
19314
|
.filter-cont {
|
|
19315
19315
|
position: absolute;
|
|
@@ -21057,22 +21057,13 @@ const SimpleGlobe = _ref => {
|
|
|
21057
21057
|
}
|
|
21058
21058
|
};
|
|
21059
21059
|
}, [projects, onProjectClick, mapConfig]);
|
|
21060
|
-
return /*#__PURE__*/jsxRuntime.jsx(
|
|
21061
|
-
|
|
21062
|
-
|
|
21063
|
-
|
|
21064
|
-
|
|
21065
|
-
|
|
21066
|
-
|
|
21067
|
-
children: /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
21068
|
-
ref: mapContainer,
|
|
21069
|
-
style: {
|
|
21070
|
-
width: '100%',
|
|
21071
|
-
height: '100%',
|
|
21072
|
-
position: 'relative',
|
|
21073
|
-
overflow: 'hidden'
|
|
21074
|
-
}
|
|
21075
|
-
})
|
|
21060
|
+
return /*#__PURE__*/jsxRuntime.jsx(Style$A, {
|
|
21061
|
+
children: /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
21062
|
+
ref: mapContainer,
|
|
21063
|
+
style: {
|
|
21064
|
+
width: '100%',
|
|
21065
|
+
height: '500px'
|
|
21066
|
+
}
|
|
21076
21067
|
})
|
|
21077
21068
|
});
|
|
21078
21069
|
};
|
package/package.json
CHANGED
|
@@ -236,19 +236,9 @@ const SimpleGlobe = ({
|
|
|
236
236
|
}, [projects, onProjectClick, mapConfig]);
|
|
237
237
|
|
|
238
238
|
return (
|
|
239
|
-
<
|
|
240
|
-
<
|
|
241
|
-
|
|
242
|
-
ref={mapContainer}
|
|
243
|
-
style={{
|
|
244
|
-
width: '100%',
|
|
245
|
-
height: '100%',
|
|
246
|
-
position: 'relative',
|
|
247
|
-
overflow: 'hidden'
|
|
248
|
-
}}
|
|
249
|
-
/>
|
|
250
|
-
</Style>
|
|
251
|
-
</div>
|
|
239
|
+
<Style>
|
|
240
|
+
<div ref={mapContainer} style={{ width: '100%', height: '500px' }} />
|
|
241
|
+
</Style>
|
|
252
242
|
);
|
|
253
243
|
};
|
|
254
244
|
|