@deepinnet-components/pc 0.0.45 → 0.0.47

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.
@@ -1,7 +1,4 @@
1
1
  import React from 'react';
2
2
  import '../index.less';
3
- interface MainProps {
4
- [key: string]: any;
5
- }
6
- declare const Index: React.FC<MainProps>;
3
+ declare const Index: React.FC<any>;
7
4
  export default Index;
@@ -1,7 +1,4 @@
1
1
  import React from 'react';
2
2
  import '../index.less';
3
- interface MainProps {
4
- [key: string]: any;
5
- }
6
- declare const Index: React.FC<MainProps>;
3
+ declare const Index: React.FC<any>;
7
4
  export default Index;
@@ -5,6 +5,8 @@ declare const Map2D: {
5
5
  MapMarkerMulti: any;
6
6
  MapPolyline: any;
7
7
  MapPolygon: any;
8
+ PolygonEdit: import("react").FC<any>;
9
+ PolylineEdit: import("react").FC<any>;
8
10
  Utils: typeof Utils;
9
11
  };
10
12
  export default Map2D;
@@ -3,6 +3,8 @@ import MapMarker from "./MapMarker";
3
3
  import MapMarkerMulti from "./MapMarkerMulti";
4
4
  import MapPolyline from "./MapPolyline";
5
5
  import MapPolygon from "./MapPolygon";
6
+ import PolygonEdit from "./PolygonEdit";
7
+ import PolylineEdit from "./PolylineEdit";
6
8
  import * as Utils from "./utils";
7
9
  var Map2D = {
8
10
  // Map,
@@ -10,6 +12,8 @@ var Map2D = {
10
12
  MapMarkerMulti: MapMarkerMulti,
11
13
  MapPolyline: MapPolyline,
12
14
  MapPolygon: MapPolygon,
15
+ PolygonEdit: PolygonEdit,
16
+ PolylineEdit: PolylineEdit,
13
17
  Utils: Utils
14
18
  };
15
19
  export default Map2D;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deepinnet-components/pc",
3
- "version": "0.0.45",
3
+ "version": "0.0.47",
4
4
  "description": "A react library developed with dumi",
5
5
  "license": "MIT",
6
6
  "module": "dist/index.js",