@ray-js/robot-map 0.0.2-beta-36 → 0.0.2-beta-38

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.
@@ -2,4 +2,4 @@ import { FC } from 'react';
2
2
  import { AppOptions } from '@ray-js/robot-map-sdk';
3
3
  import { RobotMapProps } from './props';
4
4
  declare const RjsRobotMap: FC<RobotMapProps & AppOptions['events']>;
5
- export default RjsRobotMap;
5
+ export { RjsRobotMap };
@@ -95,4 +95,4 @@ const RjsRobotMap = _ref => {
95
95
  };
96
96
  RjsRobotMap.defaultProps = robotMapDefaultProps;
97
97
  RjsRobotMap.displayName = 'RjsRobotMap';
98
- export default RjsRobotMap;
98
+ export { RjsRobotMap };
package/lib/RobotMap.d.ts CHANGED
@@ -6,4 +6,4 @@ declare const RobotMap: {
6
6
  defaultProps: RobotMapProps;
7
7
  displayName: string;
8
8
  };
9
- export default RobotMap;
9
+ export { RobotMap };
package/lib/RobotMap.js CHANGED
@@ -196,4 +196,4 @@ const RobotMap = _ref => {
196
196
  };
197
197
  RobotMap.defaultProps = robotMapDefaultProps;
198
198
  RobotMap.displayName = 'RobotMap';
199
- export default RobotMap;
199
+ export { RobotMap };
package/lib/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export { default as RobotMap } from './RobotMap';
2
- export { default as RjsRobotMap } from './RjsRobotMap';
1
+ export { RobotMap } from './RobotMap';
2
+ export { RjsRobotMap } from './RjsRobotMap';
3
3
  export * from '@ray-js/robot-map-sdk';
package/lib/index.js CHANGED
@@ -1,3 +1,3 @@
1
- export { default as RobotMap } from './RobotMap';
2
- export { default as RjsRobotMap } from './RjsRobotMap';
1
+ export { RobotMap } from './RobotMap';
2
+ export { RjsRobotMap } from './RjsRobotMap';
3
3
  export * from '@ray-js/robot-map-sdk';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ray-js/robot-map",
3
- "version": "0.0.2-beta-36",
3
+ "version": "0.0.2-beta-38",
4
4
  "description": "机器人地图组件",
5
5
  "main": "lib/index",
6
6
  "files": [
@@ -8,6 +8,7 @@
8
8
  ],
9
9
  "license": "MIT",
10
10
  "types": "lib/index.d.ts",
11
+ "sideEffects": false,
11
12
  "maintainers": [
12
13
  "tuya_npm",
13
14
  {
@@ -32,7 +33,7 @@
32
33
  "@ray-js/ray": "^1.7.39"
33
34
  },
34
35
  "dependencies": {
35
- "@ray-js/robot-map-sdk": "0.0.3-beta-44",
36
+ "@ray-js/robot-map-sdk": "0.0.3-beta-45",
36
37
  "clsx": "^1.2.1",
37
38
  "nanoid": "^5.1.6"
38
39
  },