@labelbee/lb-components 1.24.0-alpha.26 → 1.24.0-alpha.28
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/_virtual/2DViewWorker.js +1 -1
- package/dist/components/pointCloudView/components/TitleButton/index.js +1 -1
- package/dist/index.css +1 -0
- package/dist/types/components/attributeList/components/limitPopover/index.d.ts +2 -2
- package/es/_virtual/2DViewWorker.js +1 -1
- package/es/components/pointCloudView/components/TitleButton/index.js +1 -1
- package/es/index.css +1 -0
- package/package.json +3 -3
|
@@ -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,{
|
|
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { IDefaultSize, IPointCloudLimit } from '@labelbee/lb-utils';
|
|
3
3
|
declare const LimitPopover: ({ limit, updateSize, }: {
|
|
4
|
-
limit:
|
|
4
|
+
limit: IPointCloudLimit;
|
|
5
5
|
updateSize?: ((size: IDefaultSize) => void) | undefined;
|
|
6
6
|
}) => React.JSX.Element;
|
|
7
7
|
export default LimitPopover;
|