@labelbee/lb-components 1.24.0-alpha.25 → 1.24.0-alpha.27

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 +1 @@
1
- "use strict";var React=require("react"),icons=require("@ant-design/icons"),dom=require("../../../../utils/dom.js");function _interopDefaultLegacy(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var React__default=_interopDefaultLegacy(React);const TitleButton=({title:e,onClick:t,style:a})=>!t&&!e?null:React__default.default.createElement("span",{className:dom.getClassName("point-cloud-container","title-button"),style:a},e,t&&React__default.default.createElement(icons.ExpandAltOutlined,{onClick:t,style:{marginLeft:4}}));module.exports=TitleButton;
1
+ "use strict";var React=require("react"),icons=require("@ant-design/icons"),dom=require("../../../../utils/dom.js");function _interopDefaultLegacy(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var React__default=_interopDefaultLegacy(React);const TitleButton=({title:e,onClick:t,style:a})=>!t&&!e?null:React__default.default.createElement("span",{className:dom.getClassName("point-cloud-container","title-button"),style:a,onClick:t},e,t&&React__default.default.createElement(icons.ExpandAltOutlined,{style:{marginLeft:4}}));module.exports=TitleButton;
package/dist/index.css CHANGED
@@ -2587,6 +2587,7 @@
2587
2587
  padding: 4px 8px;
2588
2588
  background-color: #fff;
2589
2589
  color: #000000;
2590
+ cursor: pointer;
2590
2591
  }
2591
2592
 
2592
2593
  .bee-point-cloud-wrapper {
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
- import { ILimit, IDefaultSize } from '@labelbee/lb-utils';
2
+ import { IDefaultSize, IPointCloudLimit } from '@labelbee/lb-utils';
3
3
  declare const LimitPopover: ({ limit, updateSize, }: {
4
- limit: ILimit;
4
+ limit: IPointCloudLimit;
5
5
  updateSize?: ((size: IDefaultSize) => void) | undefined;
6
6
  }) => React.JSX.Element;
7
7
  export default LimitPopover;