@labelbee/lb-components 1.5.0 → 1.6.0-alpha.2

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.
Files changed (242) hide show
  1. package/dist/assets/annotation/lineTool/icon_line.svg.js +1 -0
  2. package/dist/assets/annotation/pointCloudTool/changePointCloudValid.svg.js +1 -0
  3. package/dist/assets/annotation/pointCloudTool/copy.svg.js +1 -0
  4. package/dist/assets/annotation/pointCloudTool/nextBox.svg.js +1 -0
  5. package/dist/assets/annotation/pointCloudTool/patse.svg.js +1 -0
  6. package/dist/assets/annotation/pointCloudTool/prevBox.svg.js +1 -0
  7. package/dist/assets/annotation/pointCloudTool/rotate180_black.svg.js +1 -0
  8. package/dist/assets/annotation/pointCloudTool/selectAll.svg.js +1 -0
  9. package/dist/assets/annotation/pointCloudTool/selectMultiple.svg.js +1 -0
  10. package/dist/assets/annotation/pointTool/icon_point.svg.js +1 -0
  11. package/dist/assets/annotation/polygonTool/icon_polygon.svg.js +1 -0
  12. package/dist/assets/annotation/rectTool/icon_rect.svg.js +1 -0
  13. package/dist/assets/annotation/rectTool/{icon_rectPattern.svg.js → icon_rect_a.svg.js} +0 -0
  14. package/dist/assets/{cssIcon/annotation/icon_clearSmall.svg → icons/25541b4d.svg} +0 -0
  15. package/dist/assets/icons/25ef334b.svg +8 -0
  16. package/dist/assets/icons/7eadb9c4.svg +5 -0
  17. package/dist/assets/icons/9d70807.svg +5 -0
  18. package/dist/assets/icons/c5b4262e.png +0 -0
  19. package/dist/assets/{cssIcon/slide_btn.svg → icons/cc550fff.svg} +0 -0
  20. package/dist/assets/{cssIcon/annotation/icon_clearSmall_a.svg → icons/dc9b6bfc.svg} +0 -0
  21. package/dist/assets/icons/e4f0b7fe.png +0 -0
  22. package/dist/components/AnnotationView/index.js +1 -1
  23. package/dist/components/customResizeHook/index.js +1 -1
  24. package/dist/components/pointCloudView/PointCloud2DView.js +1 -0
  25. package/dist/components/pointCloudView/PointCloud3DView.js +1 -0
  26. package/dist/components/pointCloudView/PointCloudBackView.js +1 -0
  27. package/dist/components/pointCloudView/PointCloudContext.js +1 -0
  28. package/dist/components/pointCloudView/PointCloudInfos.js +1 -0
  29. package/dist/components/pointCloudView/PointCloudLayout.js +1 -0
  30. package/dist/components/pointCloudView/PointCloudListener.js +1 -0
  31. package/dist/components/pointCloudView/PointCloudSideView.js +1 -0
  32. package/dist/components/pointCloudView/PointCloudTopView.js +1 -0
  33. package/dist/components/pointCloudView/hooks/useBoxes.js +1 -0
  34. package/dist/components/pointCloudView/hooks/usePointCloudViews.js +1 -0
  35. package/dist/components/pointCloudView/hooks/usePolygon.js +1 -0
  36. package/dist/components/pointCloudView/hooks/useRotate.js +1 -0
  37. package/dist/components/pointCloudView/hooks/useSingleBox.js +1 -0
  38. package/dist/components/pointCloudView/hooks/useStatus.js +1 -0
  39. package/dist/components/pointCloudView/index.js +1 -0
  40. package/dist/components/videoPlayer/components/controller/index.js +1 -1
  41. package/dist/components/videoPlayer/index.js +1 -1
  42. package/dist/components/videoPlayer/utils.js +1 -1
  43. package/dist/data/enums/ToolType.js +1 -1
  44. package/dist/hooks/annotation.js +1 -0
  45. package/dist/index.css +273 -43
  46. package/dist/index.js +1 -1
  47. package/dist/store/annotation/actionCreators.js +1 -1
  48. package/dist/store/annotation/map.js +1 -0
  49. package/dist/store/annotation/reducer.js +1 -1
  50. package/dist/types/App.d.ts +4 -3
  51. package/dist/types/components/AnnotationView/index.d.ts +2 -2
  52. package/dist/types/components/pointCloudView/PointCloud2DView.d.ts +6 -0
  53. package/dist/types/components/pointCloudView/PointCloud3DView.d.ts +6 -0
  54. package/dist/types/components/pointCloudView/PointCloudBackView.d.ts +3 -0
  55. package/dist/types/components/pointCloudView/PointCloudContext.d.ts +31 -0
  56. package/dist/types/components/pointCloudView/PointCloudInfos.d.ts +19 -0
  57. package/dist/types/components/pointCloudView/PointCloudLayout.d.ts +6 -0
  58. package/dist/types/components/pointCloudView/PointCloudListener.d.ts +6 -0
  59. package/dist/types/components/pointCloudView/PointCloudSideView.d.ts +6 -0
  60. package/dist/types/components/pointCloudView/PointCloudTopView.d.ts +6 -0
  61. package/dist/types/components/pointCloudView/hooks/useBoxes.d.ts +10 -0
  62. package/dist/types/components/pointCloudView/hooks/usePointCloudViews.d.ts +59 -0
  63. package/dist/types/components/pointCloudView/hooks/usePolygon.d.ts +9 -0
  64. package/dist/types/components/pointCloudView/hooks/useRotate.d.ts +8 -0
  65. package/dist/types/components/pointCloudView/hooks/useSingleBox.d.ts +13 -0
  66. package/dist/types/components/pointCloudView/hooks/useStatus.d.ts +11 -0
  67. package/dist/types/components/pointCloudView/index.d.ts +15 -0
  68. package/dist/types/components/videoPlayer/TagToolInstanceAdaptor.d.ts +1 -1
  69. package/dist/types/components/videoPlayer/index.d.ts +1 -1
  70. package/dist/types/data/enums/ToolType.d.ts +3 -1
  71. package/dist/types/hooks/annotation.d.ts +24 -0
  72. package/dist/types/index.d.ts +1 -0
  73. package/dist/types/store/annotation/actionCreators.d.ts +4 -4
  74. package/dist/types/store/annotation/map.d.ts +13 -0
  75. package/dist/types/store/annotation/reducer.d.ts +1 -1
  76. package/dist/types/utils/PageOperator.d.ts +1 -1
  77. package/dist/types/utils/StepUtils.d.ts +7 -0
  78. package/dist/types/utils/ToolUtils.d.ts +10 -0
  79. package/dist/types/utils/data.d.ts +1 -1
  80. package/dist/types/utils/dom.d.ts +1 -1
  81. package/dist/types/utils/index.d.ts +1 -1
  82. package/dist/types/views/MainView/annotationOperation/index.d.ts +1 -1
  83. package/dist/types/views/MainView/sidebar/GeneralOperation/ActionsConfirm.d.ts +12 -0
  84. package/dist/types/views/MainView/sidebar/GeneralOperation/index.d.ts +5 -1
  85. package/dist/types/views/MainView/sidebar/GeneralOperation/useOperationList.d.ts +12 -0
  86. package/dist/types/views/MainView/sidebar/PointCloudToolSidebar/index.d.ts +11 -0
  87. package/dist/types/views/MainView/sidebar/ToolIcons.d.ts +11 -0
  88. package/dist/types/views/MainView/sidebar/ToolStyle/index.d.ts +1 -1
  89. package/dist/types/views/MainView/sidebar/index.d.ts +1 -0
  90. package/dist/types/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.d.ts +3 -0
  91. package/dist/types/views/MainView/toolFooter/Pagination.d.ts +12 -2
  92. package/dist/types/views/MainView/toolFooter/ZoomController/index.d.ts +14 -4
  93. package/dist/types/views/MainView/toolFooter/index.d.ts +5 -8
  94. package/dist/types/views/MainView/toolHeader/ExportData/index.d.ts +1 -1
  95. package/dist/utils/StepUtils.js +1 -1
  96. package/dist/utils/ToolUtils.js +1 -0
  97. package/dist/utils/data.js +1 -1
  98. package/dist/utils/dom.js +1 -1
  99. package/dist/utils/index.js +1 -1
  100. package/dist/views/MainView/annotationOperation/index.js +1 -1
  101. package/dist/views/MainView/index.js +1 -1
  102. package/dist/views/MainView/sidebar/GeneralOperation/ActionsConfirm.js +1 -0
  103. package/dist/views/MainView/sidebar/GeneralOperation/index.js +1 -1
  104. package/dist/views/MainView/sidebar/GeneralOperation/useOperationList.js +1 -0
  105. package/dist/views/MainView/sidebar/PointCloudToolSidebar/index.js +1 -0
  106. package/dist/views/MainView/sidebar/SwitchAttributeList/index.js +1 -1
  107. package/dist/views/MainView/sidebar/ToolIcons.js +1 -0
  108. package/dist/views/MainView/sidebar/index.js +1 -1
  109. package/dist/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js +1 -1
  110. package/dist/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.js +1 -0
  111. package/dist/views/MainView/toolFooter/Pagination.js +1 -1
  112. package/dist/views/MainView/toolFooter/ZoomController/ZoomLevel/index.js +1 -1
  113. package/dist/views/MainView/toolFooter/ZoomController/index.js +1 -1
  114. package/dist/views/MainView/toolFooter/index.js +1 -1
  115. package/es/App.js.map +1 -1
  116. package/es/assets/annotation/lineTool/icon_line.svg.js +1 -0
  117. package/es/assets/annotation/lineTool/icon_line.svg.js.map +1 -0
  118. package/es/assets/annotation/pointCloudTool/changePointCloudValid.svg.js +1 -0
  119. package/es/assets/annotation/pointCloudTool/changePointCloudValid.svg.js.map +1 -0
  120. package/es/assets/annotation/pointCloudTool/copy.svg.js +1 -0
  121. package/es/assets/annotation/pointCloudTool/copy.svg.js.map +1 -0
  122. package/es/assets/annotation/pointCloudTool/nextBox.svg.js +1 -0
  123. package/es/assets/annotation/pointCloudTool/nextBox.svg.js.map +1 -0
  124. package/es/assets/annotation/pointCloudTool/patse.svg.js +1 -0
  125. package/es/assets/annotation/pointCloudTool/patse.svg.js.map +1 -0
  126. package/es/assets/annotation/pointCloudTool/prevBox.svg.js +1 -0
  127. package/es/assets/annotation/pointCloudTool/prevBox.svg.js.map +1 -0
  128. package/es/assets/annotation/pointCloudTool/rotate180_black.svg.js +1 -0
  129. package/es/assets/annotation/pointCloudTool/rotate180_black.svg.js.map +1 -0
  130. package/es/assets/annotation/pointCloudTool/selectAll.svg.js +1 -0
  131. package/es/assets/annotation/pointCloudTool/selectAll.svg.js.map +1 -0
  132. package/es/assets/annotation/pointCloudTool/selectMultiple.svg.js +1 -0
  133. package/es/assets/annotation/pointCloudTool/selectMultiple.svg.js.map +1 -0
  134. package/es/assets/annotation/pointTool/icon_point.svg.js +1 -0
  135. package/es/assets/annotation/pointTool/icon_point.svg.js.map +1 -0
  136. package/es/assets/annotation/polygonTool/icon_polygon.svg.js +1 -0
  137. package/es/assets/annotation/polygonTool/icon_polygon.svg.js.map +1 -0
  138. package/es/assets/annotation/rectTool/icon_rect.svg.js +1 -0
  139. package/es/assets/annotation/rectTool/icon_rect.svg.js.map +1 -0
  140. package/es/assets/annotation/rectTool/icon_rectPattern.svg.js +4 -1
  141. package/es/assets/annotation/rectTool/icon_rect_a.svg.js +1 -0
  142. package/es/assets/annotation/rectTool/icon_rect_a.svg.js.map +1 -0
  143. package/es/components/AnnotationView/index.js +1 -1
  144. package/es/components/AnnotationView/index.js.map +1 -1
  145. package/es/components/customResizeHook/index.js +1 -1
  146. package/es/components/customResizeHook/index.js.map +1 -1
  147. package/es/components/pointCloudView/PointCloud2DView.js +1 -0
  148. package/es/components/pointCloudView/PointCloud2DView.js.map +1 -0
  149. package/es/components/pointCloudView/PointCloud3DView.js +1 -0
  150. package/es/components/pointCloudView/PointCloud3DView.js.map +1 -0
  151. package/es/components/pointCloudView/PointCloudBackView.js +1 -0
  152. package/es/components/pointCloudView/PointCloudBackView.js.map +1 -0
  153. package/es/components/pointCloudView/PointCloudContext.js +1 -0
  154. package/es/components/pointCloudView/PointCloudContext.js.map +1 -0
  155. package/es/components/pointCloudView/PointCloudInfos.js +1 -0
  156. package/es/components/pointCloudView/PointCloudInfos.js.map +1 -0
  157. package/es/components/pointCloudView/PointCloudLayout.js +1 -0
  158. package/es/components/pointCloudView/PointCloudLayout.js.map +1 -0
  159. package/es/components/pointCloudView/PointCloudListener.js +1 -0
  160. package/es/components/pointCloudView/PointCloudListener.js.map +1 -0
  161. package/es/components/pointCloudView/PointCloudSideView.js +1 -0
  162. package/es/components/pointCloudView/PointCloudSideView.js.map +1 -0
  163. package/es/components/pointCloudView/PointCloudTopView.js +1 -0
  164. package/es/components/pointCloudView/PointCloudTopView.js.map +1 -0
  165. package/es/components/pointCloudView/data.js +4 -0
  166. package/es/components/pointCloudView/data.js.map +1 -0
  167. package/es/components/pointCloudView/hooks/useBoxes.js +1 -0
  168. package/es/components/pointCloudView/hooks/useBoxes.js.map +1 -0
  169. package/es/components/pointCloudView/hooks/usePointCloudViews.js +1 -0
  170. package/es/components/pointCloudView/hooks/usePointCloudViews.js.map +1 -0
  171. package/es/components/pointCloudView/hooks/usePolygon.js +1 -0
  172. package/es/components/pointCloudView/hooks/usePolygon.js.map +1 -0
  173. package/es/components/pointCloudView/hooks/useRotate.js +1 -0
  174. package/es/components/pointCloudView/hooks/useRotate.js.map +1 -0
  175. package/es/components/pointCloudView/hooks/useSingleBox.js +1 -0
  176. package/es/components/pointCloudView/hooks/useSingleBox.js.map +1 -0
  177. package/es/components/pointCloudView/hooks/useStatus.js +1 -0
  178. package/es/components/pointCloudView/hooks/useStatus.js.map +1 -0
  179. package/es/components/pointCloudView/index.js +1 -0
  180. package/es/components/pointCloudView/index.js.map +1 -0
  181. package/es/components/videoPlayer/components/controller/index.js +1 -1
  182. package/es/components/videoPlayer/components/controller/index.js.map +1 -1
  183. package/es/components/videoPlayer/index.js +1 -1
  184. package/es/components/videoPlayer/index.js.map +1 -1
  185. package/es/components/videoPlayer/utils.js +1 -1
  186. package/es/components/videoPlayer/utils.js.map +1 -1
  187. package/es/data/enums/ToolType.js +1 -1
  188. package/es/data/enums/ToolType.js.map +1 -1
  189. package/es/hooks/annotation.js +1 -0
  190. package/es/hooks/annotation.js.map +1 -0
  191. package/es/hooks/useSize.js.map +1 -1
  192. package/es/index.css +1364 -0
  193. package/es/index.js +1 -1
  194. package/es/index.js.map +1 -1
  195. package/es/store/annotation/actionCreators.js +1 -1
  196. package/es/store/annotation/actionCreators.js.map +1 -1
  197. package/es/store/annotation/map.js +1 -0
  198. package/es/store/annotation/map.js.map +1 -0
  199. package/es/store/annotation/reducer.js +1 -1
  200. package/es/store/annotation/reducer.js.map +1 -1
  201. package/es/utils/StepUtils.js +1 -1
  202. package/es/utils/StepUtils.js.map +1 -1
  203. package/es/utils/ToolUtils.js +1 -0
  204. package/es/utils/ToolUtils.js.map +1 -0
  205. package/es/utils/data.js +1 -1
  206. package/es/utils/data.js.map +1 -1
  207. package/es/utils/dom.js +1 -1
  208. package/es/utils/dom.js.map +1 -1
  209. package/es/utils/index.js +1 -1
  210. package/es/utils/index.js.map +1 -1
  211. package/es/views/MainView/annotationOperation/index.js +1 -1
  212. package/es/views/MainView/annotationOperation/index.js.map +1 -1
  213. package/es/views/MainView/index.js +1 -1
  214. package/es/views/MainView/index.js.map +1 -1
  215. package/es/views/MainView/sidebar/GeneralOperation/ActionsConfirm.js +1 -0
  216. package/es/views/MainView/sidebar/GeneralOperation/ActionsConfirm.js.map +1 -0
  217. package/es/views/MainView/sidebar/GeneralOperation/index.js +1 -1
  218. package/es/views/MainView/sidebar/GeneralOperation/index.js.map +1 -1
  219. package/es/views/MainView/sidebar/GeneralOperation/useOperationList.js +1 -0
  220. package/es/views/MainView/sidebar/GeneralOperation/useOperationList.js.map +1 -0
  221. package/es/views/MainView/sidebar/PointCloudToolSidebar/index.js +1 -0
  222. package/es/views/MainView/sidebar/PointCloudToolSidebar/index.js.map +1 -0
  223. package/es/views/MainView/sidebar/SwitchAttributeList/index.js +1 -1
  224. package/es/views/MainView/sidebar/SwitchAttributeList/index.js.map +1 -1
  225. package/es/views/MainView/sidebar/ToolIcons.js +1 -0
  226. package/es/views/MainView/sidebar/ToolIcons.js.map +1 -0
  227. package/es/views/MainView/sidebar/index.js +1 -1
  228. package/es/views/MainView/sidebar/index.js.map +1 -1
  229. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js +1 -1
  230. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js.map +1 -1
  231. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.js +1 -0
  232. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.js.map +1 -0
  233. package/es/views/MainView/toolFooter/Pagination.js +1 -1
  234. package/es/views/MainView/toolFooter/Pagination.js.map +1 -1
  235. package/es/views/MainView/toolFooter/ZoomController/ZoomLevel/index.js +1 -1
  236. package/es/views/MainView/toolFooter/ZoomController/ZoomLevel/index.js.map +1 -1
  237. package/es/views/MainView/toolFooter/ZoomController/index.js +1 -1
  238. package/es/views/MainView/toolFooter/ZoomController/index.js.map +1 -1
  239. package/es/views/MainView/toolFooter/index.js +1 -1
  240. package/es/views/MainView/toolFooter/index.js.map +1 -1
  241. package/package.json +14 -13
  242. package/dist/index.css.map +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.