@mapcomponents/react-maplibre 1.0.1 → 1.0.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/CHANGELOG.md CHANGED
@@ -1,7 +1,17 @@
1
1
  # Change Log
2
2
 
3
3
 
4
- ## [v1.0.0] - 2024-02-15
4
+ ## [v1.0.1] - 2024-02-16
5
+
6
+ ### Changed
7
+ - 56eb640: move cypress dependencies to devDependencies
8
+
9
+ ## [v1.0.1] - 2024-02-16
10
+
11
+ ### Fixed
12
+ - 5c37664: fix npm package
13
+
14
+ ## [v1.0.0] - 2024-02-15 (broken)
5
15
 
6
16
  ### Changed
7
17
  - 5500815: upgrade to maplibre v4.0.0
@@ -1,5 +1,6 @@
1
1
  import { FC } from 'react';
2
2
  import { MapOptions as MapOptionsType } from 'maplibre-gl';
3
+ import 'maplibre-gl/dist/maplibre-gl.css';
3
4
  export type MapLibreMapProps = {
4
5
  /**
5
6
  * Id of the MapLibreGl(Wrapper) instance in mapContext
package/dist/index.cjs.js CHANGED
@@ -4,6 +4,7 @@ var maplibregl = require('maplibre-gl');
4
4
  var React = require('react');
5
5
  var styles = require('@mui/material/styles');
6
6
  var uuid = require('uuid');
7
+ require('maplibre-gl/dist/maplibre-gl.css');
7
8
  var PropTypes = require('prop-types');
8
9
  var material = require('@mui/material');
9
10
  var FilterCenterFocusIcon = require('@mui/icons-material/FilterCenterFocus');