@labelbee/lb-components 1.6.0-alpha.0 → 1.6.0-alpha.10

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 (328) hide show
  1. package/dist/App.js +1 -1
  2. package/dist/assets/annotation/lineTool/icon_line.svg.js +1 -0
  3. package/dist/assets/annotation/pointCloudTool/changePointCloudValid.svg.js +1 -0
  4. package/dist/assets/annotation/pointCloudTool/copy.svg.js +1 -0
  5. package/dist/assets/annotation/pointCloudTool/nextBox.svg.js +1 -0
  6. package/dist/assets/annotation/pointCloudTool/nodata.svg.js +1 -0
  7. package/dist/assets/annotation/pointCloudTool/patse.svg.js +1 -0
  8. package/dist/assets/annotation/pointCloudTool/prevBox.svg.js +1 -0
  9. package/dist/assets/annotation/pointCloudTool/rotate180_black.svg.js +1 -0
  10. package/dist/assets/annotation/pointCloudTool/selectAll.svg.js +1 -0
  11. package/dist/assets/annotation/pointCloudTool/selectMultiple.svg.js +1 -0
  12. package/dist/assets/annotation/pointTool/icon_point.svg.js +1 -0
  13. package/dist/assets/annotation/polygonTool/icon_polygon.svg.js +1 -0
  14. package/dist/assets/annotation/rectTool/icon_rect.svg.js +1 -0
  15. package/dist/assets/annotation/rectTool/{icon_rectPattern.svg.js → icon_rect_a.svg.js} +0 -0
  16. package/dist/assets/attributeIcon/eraser.svg.js +1 -0
  17. package/dist/assets/attributeIcon/eraser_a.svg.js +1 -0
  18. package/dist/assets/attributeIcon/pen.svg.js +1 -0
  19. package/dist/assets/attributeIcon/pen_a.svg.js +1 -0
  20. package/dist/assets/{cssIcon/annotation/icon_clearSmall.svg → icons/25541b4d.svg} +0 -0
  21. package/dist/assets/icons/25ef334b.svg +8 -0
  22. package/dist/assets/icons/7eadb9c4.svg +5 -0
  23. package/dist/assets/icons/9d70807.svg +5 -0
  24. package/dist/assets/icons/c5b4262e.png +0 -0
  25. package/dist/assets/{cssIcon/slide_btn.svg → icons/cc550fff.svg} +0 -0
  26. package/dist/assets/{cssIcon/annotation/icon_clearSmall_a.svg → icons/dc9b6bfc.svg} +0 -0
  27. package/dist/assets/icons/e4f0b7fe.png +0 -0
  28. package/dist/components/AnnotationView/index.js +1 -1
  29. package/dist/components/AnnotationView/pointCloudAnnotationView.js +1 -0
  30. package/dist/components/attributeList/index.js +1 -1
  31. package/dist/components/customResizeHook/index.js +1 -1
  32. package/dist/components/pointCloudView/PointCloud2DView.js +1 -0
  33. package/dist/components/pointCloudView/PointCloud3DView.js +1 -0
  34. package/dist/components/pointCloudView/PointCloudBackView.js +1 -0
  35. package/dist/components/pointCloudView/PointCloudContext.js +1 -0
  36. package/dist/components/pointCloudView/PointCloudInfos.js +1 -0
  37. package/dist/components/pointCloudView/PointCloudLayout.js +1 -0
  38. package/dist/components/pointCloudView/PointCloudListener.js +1 -0
  39. package/dist/components/pointCloudView/PointCloudSideView.js +1 -0
  40. package/dist/components/pointCloudView/PointCloudTopView.js +1 -0
  41. package/dist/components/pointCloudView/components/EmptyPage/index.js +1 -0
  42. package/dist/components/pointCloudView/hooks/useBoxes.js +1 -0
  43. package/dist/components/pointCloudView/hooks/usePointCloudViews.js +1 -0
  44. package/dist/components/pointCloudView/hooks/usePolygon.js +1 -0
  45. package/dist/components/pointCloudView/hooks/useRotate.js +1 -0
  46. package/dist/components/pointCloudView/hooks/useSingleBox.js +1 -0
  47. package/dist/components/pointCloudView/hooks/useStatus.js +1 -0
  48. package/dist/components/pointCloudView/hooks/useZoom.js +1 -0
  49. package/dist/components/pointCloudView/index.js +1 -0
  50. package/dist/components/videoAnnotate/index.js +1 -1
  51. package/dist/data/enums/ToolType.js +1 -1
  52. package/dist/hooks/annotation.js +1 -0
  53. package/dist/hooks/useSize.js +1 -1
  54. package/dist/index.css +314 -44
  55. package/dist/index.js +1 -1
  56. package/dist/store/Actions.js +1 -1
  57. package/dist/store/annotation/actionCreators.js +1 -1
  58. package/dist/store/annotation/map.js +1 -0
  59. package/dist/store/annotation/reducer.js +1 -1
  60. package/dist/store/ctx.js +1 -0
  61. package/dist/types/App.d.ts +10 -2
  62. package/dist/types/components/AnnotationView/index.d.ts +6 -5
  63. package/dist/types/components/AnnotationView/pointCloudAnnotationView.d.ts +10 -0
  64. package/dist/types/components/attributeList/index.d.ts +1 -0
  65. package/dist/types/components/pointCloudView/PointCloud2DView.d.ts +6 -0
  66. package/dist/types/components/pointCloudView/PointCloud3DView.d.ts +6 -0
  67. package/dist/types/components/pointCloudView/PointCloudBackView.d.ts +3 -0
  68. package/dist/types/components/pointCloudView/PointCloudContext.d.ts +33 -0
  69. package/dist/types/components/pointCloudView/PointCloudInfos.d.ts +19 -0
  70. package/dist/types/components/pointCloudView/PointCloudLayout.d.ts +7 -0
  71. package/dist/types/components/pointCloudView/PointCloudListener.d.ts +6 -0
  72. package/dist/types/components/pointCloudView/PointCloudSideView.d.ts +6 -0
  73. package/dist/types/components/pointCloudView/PointCloudTopView.d.ts +6 -0
  74. package/dist/types/components/pointCloudView/components/EmptyPage/index.d.ts +2 -0
  75. package/dist/types/components/pointCloudView/hooks/useBoxes.d.ts +10 -0
  76. package/dist/types/components/pointCloudView/hooks/usePointCloudViews.d.ts +63 -0
  77. package/dist/types/components/pointCloudView/hooks/usePolygon.d.ts +9 -0
  78. package/dist/types/components/pointCloudView/hooks/useRotate.d.ts +8 -0
  79. package/dist/types/components/pointCloudView/hooks/useSingleBox.d.ts +13 -0
  80. package/dist/types/components/pointCloudView/hooks/useStatus.d.ts +11 -0
  81. package/dist/types/components/pointCloudView/hooks/useZoom.d.ts +7 -0
  82. package/dist/types/components/pointCloudView/index.d.ts +15 -0
  83. package/dist/types/components/videoPlayer/TagToolInstanceAdaptor.d.ts +1 -1
  84. package/dist/types/components/videoPlayer/index.d.ts +1 -1
  85. package/dist/types/data/enums/ToolType.d.ts +14 -8
  86. package/dist/types/hooks/annotation.d.ts +32 -0
  87. package/dist/types/hooks/useSize.d.ts +2 -2
  88. package/dist/types/index.d.ts +3 -1
  89. package/dist/types/store/Actions.d.ts +3 -0
  90. package/dist/types/store/annotation/actionCreators.d.ts +15 -5
  91. package/dist/types/store/annotation/map.d.ts +13 -0
  92. package/dist/types/store/annotation/reducer.d.ts +1 -1
  93. package/dist/types/store/annotation/types.d.ts +2 -0
  94. package/dist/types/store/ctx.d.ts +4 -0
  95. package/dist/types/utils/PageOperator.d.ts +1 -1
  96. package/dist/types/utils/StepUtils.d.ts +7 -0
  97. package/dist/types/utils/ToolUtils.d.ts +10 -0
  98. package/dist/types/utils/data.d.ts +1 -1
  99. package/dist/types/utils/dom.d.ts +1 -1
  100. package/dist/types/utils/index.d.ts +1 -1
  101. package/dist/types/views/MainView/annotationOperation/index.d.ts +3 -0
  102. package/dist/types/views/MainView/sidebar/GeneralOperation/ActionsConfirm.d.ts +12 -0
  103. package/dist/types/views/MainView/sidebar/GeneralOperation/index.d.ts +5 -1
  104. package/dist/types/views/MainView/sidebar/GeneralOperation/useOperationList.d.ts +12 -0
  105. package/dist/types/views/MainView/sidebar/PointCloudToolSidebar/index.d.ts +11 -0
  106. package/dist/types/views/MainView/sidebar/ScribbleSidebar/index.d.ts +6 -0
  107. package/dist/types/views/MainView/sidebar/ToolIcons.d.ts +11 -0
  108. package/dist/types/views/MainView/sidebar/ToolStyle/index.d.ts +1 -1
  109. package/dist/types/views/MainView/sidebar/index.d.ts +1 -0
  110. package/dist/types/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.d.ts +3 -0
  111. package/dist/types/views/MainView/toolFooter/Pagination.d.ts +12 -2
  112. package/dist/types/views/MainView/toolFooter/ZoomController/ZoomLevel/index.d.ts +1 -0
  113. package/dist/types/views/MainView/toolFooter/ZoomController/index.d.ts +15 -4
  114. package/dist/types/views/MainView/toolFooter/index.d.ts +7 -9
  115. package/dist/types/views/MainView/toolHeader/ExportData/index.d.ts +1 -1
  116. package/dist/utils/StepUtils.js +1 -1
  117. package/dist/utils/ToolUtils.js +1 -0
  118. package/dist/utils/data.js +1 -1
  119. package/dist/utils/dom.js +1 -1
  120. package/dist/utils/index.js +1 -1
  121. package/dist/views/MainView/annotationOperation/index.js +1 -1
  122. package/dist/views/MainView/annotationTips/index.js +1 -1
  123. package/dist/views/MainView/index.js +1 -1
  124. package/dist/views/MainView/sidebar/AnnotationText/index.js +1 -1
  125. package/dist/views/MainView/sidebar/GeneralOperation/ActionsConfirm.js +1 -0
  126. package/dist/views/MainView/sidebar/GeneralOperation/index.js +1 -1
  127. package/dist/views/MainView/sidebar/GeneralOperation/useOperationList.js +1 -0
  128. package/dist/views/MainView/sidebar/ImgAttributeInfo/index.js +1 -1
  129. package/dist/views/MainView/sidebar/PointCloudToolSidebar/index.js +1 -0
  130. package/dist/views/MainView/sidebar/ScribbleSidebar/index.js +1 -0
  131. package/dist/views/MainView/sidebar/SwitchAttributeList/index.js +1 -1
  132. package/dist/views/MainView/sidebar/TagSidebar/index.js +1 -1
  133. package/dist/views/MainView/sidebar/TextToolSidebar/index.js +1 -1
  134. package/dist/views/MainView/sidebar/ToolIcons.js +1 -0
  135. package/dist/views/MainView/sidebar/ToolStyle/index.js +1 -1
  136. package/dist/views/MainView/sidebar/index.js +1 -1
  137. package/dist/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js +1 -1
  138. package/dist/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.js +1 -0
  139. package/dist/views/MainView/toolFooter/FooterTips/index.js +1 -1
  140. package/dist/views/MainView/toolFooter/HiddenTips/index.js +1 -1
  141. package/dist/views/MainView/toolFooter/PageNumber/index.js +1 -1
  142. package/dist/views/MainView/toolFooter/Pagination.js +1 -1
  143. package/dist/views/MainView/toolFooter/ZoomController/ZoomLevel/index.js +1 -1
  144. package/dist/views/MainView/toolFooter/ZoomController/index.js +1 -1
  145. package/dist/views/MainView/toolFooter/index.js +1 -1
  146. package/dist/views/MainView/toolHeader/ExportData/index.js +1 -1
  147. package/dist/views/MainView/toolHeader/StepSwitch/index.js +1 -1
  148. package/dist/views/MainView/toolHeader/headerOption/index.js +1 -1
  149. package/dist/views/MainView/toolHeader/index.js +1 -1
  150. package/es/App.js +1 -1
  151. package/es/App.js.map +1 -1
  152. package/es/assets/annotation/lineTool/icon_line.svg.js +1 -0
  153. package/es/assets/annotation/lineTool/icon_line.svg.js.map +1 -0
  154. package/es/assets/annotation/pointCloudTool/changePointCloudValid.svg.js +1 -0
  155. package/es/assets/annotation/pointCloudTool/changePointCloudValid.svg.js.map +1 -0
  156. package/es/assets/annotation/pointCloudTool/copy.svg.js +1 -0
  157. package/es/assets/annotation/pointCloudTool/copy.svg.js.map +1 -0
  158. package/es/assets/annotation/pointCloudTool/nextBox.svg.js +1 -0
  159. package/es/assets/annotation/pointCloudTool/nextBox.svg.js.map +1 -0
  160. package/es/assets/annotation/pointCloudTool/nodata.svg.js +1 -0
  161. package/es/assets/annotation/pointCloudTool/nodata.svg.js.map +1 -0
  162. package/es/assets/annotation/pointCloudTool/patse.svg.js +1 -0
  163. package/es/assets/annotation/pointCloudTool/patse.svg.js.map +1 -0
  164. package/es/assets/annotation/pointCloudTool/prevBox.svg.js +1 -0
  165. package/es/assets/annotation/pointCloudTool/prevBox.svg.js.map +1 -0
  166. package/es/assets/annotation/pointCloudTool/rotate180_black.svg.js +1 -0
  167. package/es/assets/annotation/pointCloudTool/rotate180_black.svg.js.map +1 -0
  168. package/es/assets/annotation/pointCloudTool/selectAll.svg.js +1 -0
  169. package/es/assets/annotation/pointCloudTool/selectAll.svg.js.map +1 -0
  170. package/es/assets/annotation/pointCloudTool/selectMultiple.svg.js +1 -0
  171. package/es/assets/annotation/pointCloudTool/selectMultiple.svg.js.map +1 -0
  172. package/es/assets/annotation/pointTool/icon_point.svg.js +1 -0
  173. package/es/assets/annotation/pointTool/icon_point.svg.js.map +1 -0
  174. package/es/assets/annotation/polygonTool/icon_polygon.svg.js +1 -0
  175. package/es/assets/annotation/polygonTool/icon_polygon.svg.js.map +1 -0
  176. package/es/assets/annotation/rectTool/icon_rect.svg.js +1 -0
  177. package/es/assets/annotation/rectTool/icon_rect.svg.js.map +1 -0
  178. package/es/assets/annotation/rectTool/icon_rectPattern.svg.js +4 -1
  179. package/es/assets/annotation/rectTool/icon_rect_a.svg.js +1 -0
  180. package/es/assets/annotation/rectTool/icon_rect_a.svg.js.map +1 -0
  181. package/es/assets/attributeIcon/eraser.svg.js +1 -0
  182. package/es/assets/attributeIcon/eraser.svg.js.map +1 -0
  183. package/es/assets/attributeIcon/eraser_a.svg.js +1 -0
  184. package/es/assets/attributeIcon/eraser_a.svg.js.map +1 -0
  185. package/es/assets/attributeIcon/pen.svg.js +1 -0
  186. package/es/assets/attributeIcon/pen.svg.js.map +1 -0
  187. package/es/assets/attributeIcon/pen_a.svg.js +1 -0
  188. package/es/assets/attributeIcon/pen_a.svg.js.map +1 -0
  189. package/es/components/AnnotationView/index.js +1 -1
  190. package/es/components/AnnotationView/index.js.map +1 -1
  191. package/es/components/AnnotationView/pointCloudAnnotationView.js +1 -0
  192. package/es/components/AnnotationView/pointCloudAnnotationView.js.map +1 -0
  193. package/es/components/attributeList/index.js +1 -1
  194. package/es/components/attributeList/index.js.map +1 -1
  195. package/es/components/customResizeHook/index.js +1 -1
  196. package/es/components/customResizeHook/index.js.map +1 -1
  197. package/es/components/pointCloudView/PointCloud2DView.js +1 -0
  198. package/es/components/pointCloudView/PointCloud2DView.js.map +1 -0
  199. package/es/components/pointCloudView/PointCloud3DView.js +1 -1
  200. package/es/components/pointCloudView/PointCloud3DView.js.map +1 -0
  201. package/es/components/pointCloudView/PointCloudBackView.js +1 -0
  202. package/es/components/pointCloudView/PointCloudBackView.js.map +1 -0
  203. package/es/components/pointCloudView/PointCloudContext.js +1 -0
  204. package/es/components/pointCloudView/PointCloudContext.js.map +1 -0
  205. package/es/components/pointCloudView/PointCloudInfos.js +1 -0
  206. package/es/components/pointCloudView/PointCloudInfos.js.map +1 -0
  207. package/es/components/pointCloudView/PointCloudLayout.js +1 -1
  208. package/es/components/pointCloudView/PointCloudLayout.js.map +1 -0
  209. package/es/components/pointCloudView/PointCloudListener.js +1 -0
  210. package/es/components/pointCloudView/PointCloudListener.js.map +1 -0
  211. package/es/components/pointCloudView/PointCloudSideView.js +1 -0
  212. package/es/components/pointCloudView/PointCloudSideView.js.map +1 -0
  213. package/es/components/pointCloudView/PointCloudTopView.js +1 -1
  214. package/es/components/pointCloudView/PointCloudTopView.js.map +1 -0
  215. package/es/components/pointCloudView/components/EmptyPage/index.js +1 -0
  216. package/es/components/pointCloudView/components/EmptyPage/index.js.map +1 -0
  217. package/es/components/pointCloudView/data.js +4 -0
  218. package/es/components/pointCloudView/data.js.map +1 -0
  219. package/es/components/pointCloudView/hooks/useBoxes.js +1 -0
  220. package/es/components/pointCloudView/hooks/useBoxes.js.map +1 -0
  221. package/es/components/pointCloudView/hooks/useConfig.js +19 -0
  222. package/es/components/pointCloudView/hooks/useConfig.js.map +1 -0
  223. package/es/components/pointCloudView/hooks/usePointCloudViews.js +1 -0
  224. package/es/components/pointCloudView/hooks/usePointCloudViews.js.map +1 -0
  225. package/es/components/pointCloudView/hooks/usePolygon.js +1 -0
  226. package/es/components/pointCloudView/hooks/usePolygon.js.map +1 -0
  227. package/es/components/pointCloudView/hooks/useRotate.js +1 -0
  228. package/es/components/pointCloudView/hooks/useRotate.js.map +1 -0
  229. package/es/components/pointCloudView/hooks/useSingleBox.js +1 -0
  230. package/es/components/pointCloudView/hooks/useSingleBox.js.map +1 -0
  231. package/es/components/pointCloudView/hooks/useStatus.js +1 -0
  232. package/es/components/pointCloudView/hooks/useStatus.js.map +1 -0
  233. package/es/components/pointCloudView/hooks/useZoom.js +1 -0
  234. package/es/components/pointCloudView/hooks/useZoom.js.map +1 -0
  235. package/es/components/pointCloudView/index.js +1 -1
  236. package/es/components/pointCloudView/index.js.map +1 -0
  237. package/es/components/videoAnnotate/index.js +1 -1
  238. package/es/components/videoAnnotate/index.js.map +1 -1
  239. package/es/data/enums/ToolType.js +1 -1
  240. package/es/data/enums/ToolType.js.map +1 -1
  241. package/es/hooks/annotation.js +1 -0
  242. package/es/hooks/annotation.js.map +1 -0
  243. package/es/hooks/useConfig.js +18 -0
  244. package/es/hooks/useConfig.js.map +1 -0
  245. package/es/hooks/useSize.js +1 -1
  246. package/es/hooks/useSize.js.map +1 -1
  247. package/es/index.css +1404 -0
  248. package/es/index.js +1 -1
  249. package/es/index.js.map +1 -1
  250. package/es/store/Actions.js +1 -1
  251. package/es/store/Actions.js.map +1 -1
  252. package/es/store/annotation/actionCreators.js +1 -1
  253. package/es/store/annotation/actionCreators.js.map +1 -1
  254. package/es/store/annotation/map.js +1 -0
  255. package/es/store/annotation/map.js.map +1 -0
  256. package/es/store/annotation/reducer.js +1 -1
  257. package/es/store/annotation/reducer.js.map +1 -1
  258. package/es/store/ctx.js +1 -0
  259. package/es/store/ctx.js.map +1 -0
  260. package/es/utils/StepUtils.js +1 -1
  261. package/es/utils/StepUtils.js.map +1 -1
  262. package/es/utils/ToolUtils.js.map +1 -0
  263. package/es/utils/data.js +1 -1
  264. package/es/utils/data.js.map +1 -1
  265. package/es/utils/dom.js +1 -1
  266. package/es/utils/dom.js.map +1 -1
  267. package/es/utils/index.js +1 -1
  268. package/es/utils/index.js.map +1 -1
  269. package/es/views/MainView/annotationOperation/index.js +1 -1
  270. package/es/views/MainView/annotationOperation/index.js.map +1 -1
  271. package/es/views/MainView/annotationTips/index.js +1 -1
  272. package/es/views/MainView/annotationTips/index.js.map +1 -1
  273. package/es/views/MainView/index.js +1 -1
  274. package/es/views/MainView/index.js.map +1 -1
  275. package/es/views/MainView/sidebar/AnnotationText/index.js +1 -1
  276. package/es/views/MainView/sidebar/AnnotationText/index.js.map +1 -1
  277. package/es/views/MainView/sidebar/GeneralOperation/ActionsConfirm.js +1 -0
  278. package/es/views/MainView/sidebar/GeneralOperation/ActionsConfirm.js.map +1 -0
  279. package/es/views/MainView/sidebar/GeneralOperation/index.js +1 -1
  280. package/es/views/MainView/sidebar/GeneralOperation/index.js.map +1 -1
  281. package/es/views/MainView/sidebar/GeneralOperation/useOperationList.js +1 -0
  282. package/es/views/MainView/sidebar/GeneralOperation/useOperationList.js.map +1 -0
  283. package/es/views/MainView/sidebar/ImgAttributeInfo/index.js +1 -1
  284. package/es/views/MainView/sidebar/ImgAttributeInfo/index.js.map +1 -1
  285. package/es/views/MainView/sidebar/PointCloudToolSidebar/index.js +1 -0
  286. package/es/views/MainView/sidebar/PointCloudToolSidebar/index.js.map +1 -0
  287. package/es/views/MainView/sidebar/ScribbleSidebar/index.js +1 -0
  288. package/es/views/MainView/sidebar/ScribbleSidebar/index.js.map +1 -0
  289. package/es/views/MainView/sidebar/SwitchAttributeList/index.js +1 -1
  290. package/es/views/MainView/sidebar/SwitchAttributeList/index.js.map +1 -1
  291. package/es/views/MainView/sidebar/TagSidebar/index.js +1 -1
  292. package/es/views/MainView/sidebar/TagSidebar/index.js.map +1 -1
  293. package/es/views/MainView/sidebar/TextToolSidebar/index.js +1 -1
  294. package/es/views/MainView/sidebar/TextToolSidebar/index.js.map +1 -1
  295. package/es/views/MainView/sidebar/ToolIcons.js +1 -0
  296. package/es/views/MainView/sidebar/ToolIcons.js.map +1 -0
  297. package/es/views/MainView/sidebar/ToolStyle/index.js +1 -1
  298. package/es/views/MainView/sidebar/ToolStyle/index.js.map +1 -1
  299. package/es/views/MainView/sidebar/index.js +1 -1
  300. package/es/views/MainView/sidebar/index.js.map +1 -1
  301. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js +1 -1
  302. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js.map +1 -1
  303. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.js +1 -0
  304. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/pointCloud/index.js.map +1 -0
  305. package/es/views/MainView/toolFooter/FooterTips/index.js +1 -1
  306. package/es/views/MainView/toolFooter/FooterTips/index.js.map +1 -1
  307. package/es/views/MainView/toolFooter/HiddenTips/index.js +1 -1
  308. package/es/views/MainView/toolFooter/HiddenTips/index.js.map +1 -1
  309. package/es/views/MainView/toolFooter/PageNumber/index.js +1 -1
  310. package/es/views/MainView/toolFooter/PageNumber/index.js.map +1 -1
  311. package/es/views/MainView/toolFooter/Pagination.js +1 -1
  312. package/es/views/MainView/toolFooter/Pagination.js.map +1 -1
  313. package/es/views/MainView/toolFooter/ZoomController/ZoomLevel/index.js +1 -1
  314. package/es/views/MainView/toolFooter/ZoomController/ZoomLevel/index.js.map +1 -1
  315. package/es/views/MainView/toolFooter/ZoomController/index.js +1 -1
  316. package/es/views/MainView/toolFooter/ZoomController/index.js.map +1 -1
  317. package/es/views/MainView/toolFooter/index.js +1 -1
  318. package/es/views/MainView/toolFooter/index.js.map +1 -1
  319. package/es/views/MainView/toolHeader/ExportData/index.js +1 -1
  320. package/es/views/MainView/toolHeader/ExportData/index.js.map +1 -1
  321. package/es/views/MainView/toolHeader/StepSwitch/index.js +1 -1
  322. package/es/views/MainView/toolHeader/StepSwitch/index.js.map +1 -1
  323. package/es/views/MainView/toolHeader/headerOption/index.js +1 -1
  324. package/es/views/MainView/toolHeader/headerOption/index.js.map +1 -1
  325. package/es/views/MainView/toolHeader/index.js +1 -1
  326. package/es/views/MainView/toolHeader/index.js.map +1 -1
  327. package/package.json +9 -8
  328. package/dist/index.css.map +0 -1
package/es/index.css ADDED
@@ -0,0 +1,1404 @@
1
+ @charset "UTF-8";
2
+ .bee-layout {
3
+ position: relative;
4
+ overflow: hidden;
5
+ height: 100vh;
6
+ }
7
+ .bee-layout__header, .bee-layout__footer {
8
+ flex-shrink: 0;
9
+ height: auto;
10
+ background: transparent;
11
+ padding: 0;
12
+ line-height: inherit;
13
+ max-height: 60px;
14
+ }
15
+ .bee-layout__container {
16
+ flex-direction: row;
17
+ }
18
+ .bee-layout__side {
19
+ background: transparent;
20
+ overflow: hidden;
21
+ position: relative;
22
+ z-index: 10;
23
+ border-top: 1px solid #e2e2e2;
24
+ }
25
+ .bee-layout__side .ant-collapse-borderless > .ant-collapse-item {
26
+ border-bottom: 1px solid #eee;
27
+ }
28
+ .bee-layout__content {
29
+ position: relative;
30
+ display: flex;
31
+ flex-direction: column;
32
+ flex: 1;
33
+ }
34
+
35
+ .bee-footer {
36
+ height: 40px;
37
+ flex-shrink: 0;
38
+ display: flex;
39
+ align-items: center;
40
+ position: relative;
41
+ user-select: none;
42
+ color: rgb(255, 255, 255);
43
+ background: rgb(68, 68, 68);
44
+ cursor: default;
45
+ font-size: 14px;
46
+ overflow: hidden;
47
+ }
48
+ .bee-footer__pagination {
49
+ display: flex;
50
+ align-items: center;
51
+ }
52
+ .bee-footer__pageAll {
53
+ margin: 0 5px;
54
+ }
55
+ .bee-footer__zoomController {
56
+ display: flex;
57
+ align-items: center;
58
+ margin-right: 8px;
59
+ }
60
+ .bee-footer__zoomText {
61
+ width: 72px;
62
+ display: inline-block;
63
+ text-align: center;
64
+ cursor: pointer;
65
+ }
66
+ .bee-footer__zoomText .adaptIcon {
67
+ display: none;
68
+ }
69
+ .bee-footer__zoomText:hover .zoomValue {
70
+ display: none;
71
+ }
72
+ .bee-footer__zoomText:hover .adaptIcon {
73
+ display: inline-block;
74
+ }
75
+ .bee-footer__highlight {
76
+ margin: 0 5px;
77
+ padding: 4px;
78
+ border: 1px solid #cccccc;
79
+ }
80
+
81
+ .bee-page-input {
82
+ margin: 0 5px;
83
+ width: 50px;
84
+ height: 24px;
85
+ border: none;
86
+ border-bottom: 1px solid #cccccc;
87
+ background: transparent;
88
+ text-align: center;
89
+ color: rgb(255, 255, 255);
90
+ height: 24px;
91
+ text-align: center;
92
+ padding: 0 6px;
93
+ }
94
+ .bee-page-input:focus {
95
+ box-shadow: none;
96
+ outline: none;
97
+ border-color: #cccccc;
98
+ }
99
+ .bee-page-input:hover {
100
+ border-color: #cccccc;
101
+ }
102
+
103
+ .bee-header__title {
104
+ color: rgb(153, 153, 153);
105
+ display: flex;
106
+ align-items: center;
107
+ justify-content: flex-start;
108
+ position: relative;
109
+ z-index: 2;
110
+ height: 61px;
111
+ width: 100%;
112
+ padding: 0 30px;
113
+ background: #ffffff;
114
+ border-bottom: 1px solid rgb(223, 223, 223);
115
+ box-shadow: 0px 2px 14px rgba(204, 204, 204, 0.5);
116
+ }
117
+ .bee-header__icon {
118
+ margin-right: 24px;
119
+ width: 9px;
120
+ height: 15px;
121
+ }
122
+ .bee-header__name {
123
+ font-size: 16px;
124
+ font-family: SourceHanSansCN-Medium;
125
+ font-weight: 500;
126
+ color: #333;
127
+ }
128
+ .bee-header__operationNode {
129
+ position: absolute;
130
+ }
131
+ .bee-header__titlePlacement {
132
+ flex: 1;
133
+ }
134
+ .bee-header__lang {
135
+ color: rgba(0, 0, 0, 0.85);
136
+ }
137
+ .bee-header__lang .bee-langCN,
138
+ .bee-header__lang .bee-langEN {
139
+ cursor: pointer;
140
+ }
141
+ .bee-header__lang .bee-langCN.active,
142
+ .bee-header__lang .bee-langEN.active {
143
+ font-weight: bold;
144
+ }
145
+ .bee-header__hotKey {
146
+ display: flex;
147
+ justify-content: space-between;
148
+ }
149
+ .bee-header__hotKey .item {
150
+ display: flex;
151
+ flex-direction: column;
152
+ justify-content: space-between;
153
+ align-items: center;
154
+ cursor: pointer;
155
+ user-select: none;
156
+ }
157
+ .bee-header__hotKey .item .singleTool {
158
+ color: rgba(255, 255, 255, 0.4);
159
+ margin: 0 21px;
160
+ cursor: pointer;
161
+ -moz-user-select: none;
162
+ -webkit-user-select: none;
163
+ -ms-user-select: none;
164
+ user-select: none;
165
+ }
166
+ .bee-header__hotKey .item:hover {
167
+ color: #666fff;
168
+ }
169
+
170
+ .content {
171
+ width: 240px;
172
+ display: flex;
173
+ flex-direction: column;
174
+ }
175
+ .content .item {
176
+ display: flex;
177
+ justify-content: space-between;
178
+ align-items: center;
179
+ }
180
+ .content .item .title {
181
+ min-width: 60px;
182
+ margin-right: 10px;
183
+ }
184
+ .content .item .slider {
185
+ flex: 1;
186
+ }
187
+
188
+ .bee-sidebar {
189
+ height: 100%;
190
+ width: 100%;
191
+ box-shadow: 0px 2px 14px 0px rgba(204, 204, 204, 0.5);
192
+ background: #ffffff;
193
+ overflow: hidden;
194
+ display: flex;
195
+ position: relative;
196
+ flex-direction: column;
197
+ -moz-user-select: none;
198
+ -webkit-user-select: none;
199
+ -ms-user-select: none;
200
+ user-select: none;
201
+ text-align: left;
202
+ }
203
+ .bee-sidebar__content {
204
+ flex: 1;
205
+ overflow: auto;
206
+ background-color: #fff;
207
+ }
208
+ .bee-sidebar__content .panel {
209
+ margin: 0 6px;
210
+ }
211
+ .bee-sidebar__content .panel .imgAttributeController .tools .singleTool {
212
+ color: rgb(153, 153, 153);
213
+ cursor: pointer;
214
+ display: flex;
215
+ align-items: center;
216
+ }
217
+ .bee-sidebar__content .panel .imgAttributeController .tools .singleTool .toolName {
218
+ width: 100%;
219
+ margin-left: 10px;
220
+ font-size: 12px;
221
+ }
222
+ .bee-sidebar__content .panel .imgAttributeController .tools .singleTool .selectedToolName {
223
+ width: 100%;
224
+ margin-left: 10px;
225
+ font-size: 15px;
226
+ color: #666fff;
227
+ }
228
+ .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle {
229
+ border-color: #666fff;
230
+ }
231
+ .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle.ant-tooltip-open {
232
+ border-color: #666fff;
233
+ }
234
+ .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle:focus {
235
+ border-color: #666fff;
236
+ }
237
+ .bee-sidebar__level {
238
+ padding: 28px;
239
+ border-bottom: 1px solid #eee;
240
+ display: flex;
241
+ justify-content: center;
242
+ }
243
+ .bee-sidebar__toolOption {
244
+ display: inline-flex;
245
+ flex-direction: column;
246
+ align-items: center;
247
+ color: #999;
248
+ cursor: pointer;
249
+ }
250
+ .bee-sidebar__toolOption__selected {
251
+ color: #666fff;
252
+ }
253
+ .bee-sidebar__toolOption + .bee-sidebar__toolOption {
254
+ margin-left: 16px;
255
+ }
256
+ .bee-sidebar__singleTool {
257
+ max-width: 20px;
258
+ max-height: 20px;
259
+ margin: 0 10px;
260
+ }
261
+ .bee-sidebar__horizontal {
262
+ width: 100%;
263
+ height: 1px;
264
+ background: #eee;
265
+ }
266
+ .bee-sidebar .dashHorizontal {
267
+ width: 100%;
268
+ border-bottom: 1px dashed #eee;
269
+ }
270
+ .bee-sidebar .sensebee-radio-group,
271
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group {
272
+ max-height: calc(100vh - 61px);
273
+ display: flex;
274
+ flex-direction: column;
275
+ max-height: 300px;
276
+ overflow-y: auto;
277
+ }
278
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper,
279
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper {
280
+ padding: 10px 5px 10px 12px;
281
+ margin: 0;
282
+ display: flex;
283
+ flex: 1;
284
+ flex-direction: row;
285
+ align-content: center;
286
+ }
287
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .ant-radio,
288
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .ant-radio {
289
+ align-self: center;
290
+ }
291
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper:hover,
292
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper:hover {
293
+ background: #f3f4ff;
294
+ }
295
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper > span:nth-child(2),
296
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper > span:nth-child(2) {
297
+ flex: 1;
298
+ justify-content: space-between;
299
+ display: flex;
300
+ align-self: center;
301
+ overflow: hidden;
302
+ }
303
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .sensebee-radio-num,
304
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .sensebee-radio-num {
305
+ width: 20px;
306
+ height: 20px;
307
+ border: 1px solid rgb(204, 204, 204);
308
+ opacity: 1;
309
+ border-radius: 2px;
310
+ text-align: center;
311
+ line-height: 18px;
312
+ }
313
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .sensebee-radio-label,
314
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .sensebee-radio-label {
315
+ flex: 1;
316
+ overflow: hidden;
317
+ text-overflow: ellipsis;
318
+ }
319
+ .bee-sidebar #pen-color .ant-slider .ant-slider-track,
320
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-track,
321
+ .bee-sidebar #style-radius .ant-slider .ant-slider-track,
322
+ .bee-sidebar #style-width .ant-slider .ant-slider-track,
323
+ .bee-sidebar #style-color .ant-slider .ant-slider-track,
324
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-track,
325
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-track {
326
+ background: #f5f5f5;
327
+ }
328
+ .bee-sidebar #pen-color .ant-slider .ant-slider-dot,
329
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-dot,
330
+ .bee-sidebar #style-radius .ant-slider .ant-slider-dot,
331
+ .bee-sidebar #style-width .ant-slider .ant-slider-dot,
332
+ .bee-sidebar #style-color .ant-slider .ant-slider-dot,
333
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-dot,
334
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-dot {
335
+ width: 0;
336
+ height: 0;
337
+ border: none;
338
+ }
339
+ .bee-sidebar #pen-color .ant-slider .ant-slider-handle,
340
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-handle,
341
+ .bee-sidebar #style-radius .ant-slider .ant-slider-handle,
342
+ .bee-sidebar #style-width .ant-slider .ant-slider-handle,
343
+ .bee-sidebar #style-color .ant-slider .ant-slider-handle,
344
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-handle,
345
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-handle {
346
+ background-image: url("../dist/assets/icons/cc550fff.svg");
347
+ background-repeat: no-repeat;
348
+ background-size: 30px 30px;
349
+ width: 40px;
350
+ height: 40px;
351
+ background-color: transparent;
352
+ border-color: transparent;
353
+ background-position: 3px 2px;
354
+ margin-top: -15px;
355
+ }
356
+ .bee-sidebar #pen-color .ant-slider .ant-slider-handle:focus,
357
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-handle:focus,
358
+ .bee-sidebar #style-radius .ant-slider .ant-slider-handle:focus,
359
+ .bee-sidebar #style-width .ant-slider .ant-slider-handle:focus,
360
+ .bee-sidebar #style-color .ant-slider .ant-slider-handle:focus,
361
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-handle:focus,
362
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-handle:focus {
363
+ box-shadow: none;
364
+ }
365
+ .bee-sidebar #pen-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
366
+ .bee-sidebar #paintBucket-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
367
+ .bee-sidebar #style-radius .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
368
+ .bee-sidebar #style-width .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
369
+ .bee-sidebar #style-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
370
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
371
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
372
+ color: inherit;
373
+ font-style: normal;
374
+ line-height: 0;
375
+ text-align: center;
376
+ text-transform: none;
377
+ vertical-align: -0.125em;
378
+ text-rendering: optimizeLegibility;
379
+ -webkit-font-smoothing: antialiased;
380
+ -moz-osx-font-smoothing: grayscale;
381
+ position: absolute;
382
+ top: 50%;
383
+ right: 16px;
384
+ display: inline-block;
385
+ font-size: 12px;
386
+ transform: translateY(-50%);
387
+ }
388
+ .bee-sidebar #pen-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
389
+ .bee-sidebar #paintBucket-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
390
+ .bee-sidebar #style-radius .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
391
+ .bee-sidebar #style-width .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
392
+ .bee-sidebar #style-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
393
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
394
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header {
395
+ position: relative;
396
+ color: rgba(0, 0, 0, 0.85);
397
+ line-height: 1.5715;
398
+ cursor: pointer;
399
+ transition: all 0.3s;
400
+ z-index: 10;
401
+ }
402
+ .bee-sidebar #pen-color .ant-slider-rail,
403
+ .bee-sidebar #pen-color .ant-slider-track,
404
+ .bee-sidebar #pen-color .ant-slider-step,
405
+ .bee-sidebar #paintBucket-color .ant-slider-rail,
406
+ .bee-sidebar #paintBucket-color .ant-slider-track,
407
+ .bee-sidebar #paintBucket-color .ant-slider-step,
408
+ .bee-sidebar #style-radius .ant-slider-rail,
409
+ .bee-sidebar #style-radius .ant-slider-track,
410
+ .bee-sidebar #style-radius .ant-slider-step,
411
+ .bee-sidebar #style-width .ant-slider-rail,
412
+ .bee-sidebar #style-width .ant-slider-track,
413
+ .bee-sidebar #style-width .ant-slider-step,
414
+ .bee-sidebar #style-color .ant-slider-rail,
415
+ .bee-sidebar #style-color .ant-slider-track,
416
+ .bee-sidebar #style-color .ant-slider-step,
417
+ .bee-sidebar #style-fillOpacity .ant-slider-rail,
418
+ .bee-sidebar #style-fillOpacity .ant-slider-track,
419
+ .bee-sidebar #style-fillOpacity .ant-slider-step,
420
+ .bee-sidebar #style-borderOpacity .ant-slider-rail,
421
+ .bee-sidebar #style-borderOpacity .ant-slider-track,
422
+ .bee-sidebar #style-borderOpacity .ant-slider-step {
423
+ background-color: none;
424
+ height: 8px;
425
+ }
426
+ .bee-sidebar #pen-color .ant-slider .ant-slider-track,
427
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-track,
428
+ .bee-sidebar #style-radius .ant-slider .ant-slider-track,
429
+ .bee-sidebar #style-width .ant-slider .ant-slider-track,
430
+ .bee-sidebar #style-color .ant-slider .ant-slider-track,
431
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-track,
432
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-track {
433
+ background: none;
434
+ }
435
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot,
436
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot {
437
+ height: 12px;
438
+ background: #666666;
439
+ border-radius: 0;
440
+ margin-left: -2px;
441
+ }
442
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(1),
443
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(1) {
444
+ width: 1px;
445
+ }
446
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(2),
447
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(2) {
448
+ width: 2px;
449
+ }
450
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(3),
451
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(3) {
452
+ width: 3px;
453
+ }
454
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(4),
455
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(4) {
456
+ width: 4px;
457
+ }
458
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(5),
459
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(5) {
460
+ width: 5px;
461
+ }
462
+ .bee-sidebar #style-radius .ant-slider:hover .ant-slider-rail,
463
+ .bee-sidebar #style-width .ant-slider:hover .ant-slider-rail {
464
+ background: #f5f5f5;
465
+ }
466
+ .bee-sidebar #style-color .ant-slider-rail {
467
+ background: linear-gradient(to right, rgb(0, 0, 255) 0%, rgb(0, 0, 255) 20%, rgb(0, 255, 255) 20%, rgb(0, 255, 255) 40%, rgb(0, 255, 0) 40%, rgb(0, 255, 0) 60%, rgb(255, 255, 0) 60%, rgb(255, 255, 0) 80%, rgb(255, 0, 255) 80%, rgb(255, 0, 255) 100%);
468
+ }
469
+ .bee-sidebar #style-fillOpacity .ant-slider-rail,
470
+ .bee-sidebar #style-borderOpacity .ant-slider-rail {
471
+ background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.8) 80%, rgb(0, 0, 0) 80%, rgb(0, 0, 0) 100%);
472
+ }
473
+ .bee-sidebar .bee-scribble {
474
+ padding: 20px;
475
+ width: 100%;
476
+ }
477
+ .bee-sidebar .bee-scribble__select {
478
+ display: flex;
479
+ justify-content: center;
480
+ cursor: pointer;
481
+ }
482
+ .bee-sidebar .bee-scribble__select img {
483
+ width: 12px;
484
+ margin: 0px 10px;
485
+ }
486
+ .bee-sidebar .bee-scribble__silder {
487
+ display: flex;
488
+ align-items: center;
489
+ justify-content: center;
490
+ }
491
+ .bee-sidebar .bee-scribble__circle {
492
+ display: block;
493
+ width: 5px;
494
+ height: 5px;
495
+ background: #d9d9d9;
496
+ border-radius: 50%;
497
+ }
498
+
499
+ .bee-tips {
500
+ display: flex;
501
+ justify-content: flex-end;
502
+ background-color: #333;
503
+ color: rgba(255, 255, 255, 0.4);
504
+ line-height: 40px;
505
+ opacity: 0.8;
506
+ height: 40px;
507
+ padding: 0 30px;
508
+ width: 100%;
509
+ overflow: hidden;
510
+ white-space: nowrap;
511
+ }
512
+ .bee-tips .bee-tips__path {
513
+ max-width: 40%;
514
+ margin-left: 20px;
515
+ text-overflow: ellipsis;
516
+ overflow: hidden;
517
+ white-space: nowrap;
518
+ }
519
+
520
+ .annotationOperation {
521
+ position: relative;
522
+ flex: 1;
523
+ overflow: hidden;
524
+ }
525
+ .annotationOperation .canvas {
526
+ user-select: none;
527
+ display: block;
528
+ position: relative;
529
+ height: 100%;
530
+ width: 100%;
531
+ }
532
+
533
+ .textInputContainer {
534
+ padding: 20px;
535
+ }
536
+ .textInputContainer .textareaContainer {
537
+ position: relative;
538
+ }
539
+ .textInputContainer .textareaContainer > textarea {
540
+ padding-bottom: 30px;
541
+ }
542
+ .textInputContainer .textareaContainer .textAreaFooter {
543
+ position: absolute;
544
+ width: 100%;
545
+ bottom: 0;
546
+ font-weight: 400;
547
+ line-height: 20px;
548
+ opacity: 1;
549
+ font-size: 12px;
550
+ color: rgb(204, 204, 204);
551
+ display: flex;
552
+ padding: 0 10px 5px;
553
+ }
554
+ .textInputContainer .textareaContainer .textAreaFooter .warning {
555
+ color: #ff0000;
556
+ }
557
+ .textInputContainer .textareaContainer .textAreaFooter .hotkeyTip {
558
+ font-size: 14px;
559
+ opacity: 0;
560
+ transition: opacity 0.3s ease-in-out;
561
+ }
562
+ .textInputContainer .textareaContainer .textAreaFooter .wordCount {
563
+ flex: 1;
564
+ text-align: right;
565
+ }
566
+ .textInputContainer .textareaContainer.focus .textAreaFooter .hotkeyTip {
567
+ opacity: 1;
568
+ }
569
+ .textInputContainer .textareaContainer .textareaContainer {
570
+ position: relative;
571
+ }
572
+ .textInputContainer .textareaContainer .warning {
573
+ outline-color: #ff0000;
574
+ border-color: #ff0000;
575
+ }
576
+ .textInputContainer .textareaContainer .inputCount {
577
+ position: absolute;
578
+ bottom: 0;
579
+ right: 5px;
580
+ font-weight: 400;
581
+ line-height: 20px;
582
+ opacity: 1;
583
+ font-size: 12px;
584
+ color: rgb(204, 204, 204);
585
+ }
586
+ .textInputContainer .textareaContainer .inputCount .warning {
587
+ color: #ff0000;
588
+ }
589
+ .textInputContainer .textareaContainer .label,
590
+ .textInputContainer .textareaContainer .switchItem {
591
+ color: #333333;
592
+ font-size: 12px;
593
+ line-height: 40px;
594
+ }
595
+ .textInputContainer .textareaContainer .notify {
596
+ font-size: 12px;
597
+ color: rgb(204, 204, 204);
598
+ }
599
+ .textInputContainer .textareaContainer .toolTextAreaBox {
600
+ position: relative;
601
+ padding-bottom: 20px;
602
+ border: 1px solid #d9d9d9;
603
+ border-radius: 2px;
604
+ }
605
+ .textInputContainer .textareaContainer .toolTextAreaBox:hover {
606
+ border-color: #40a9ff;
607
+ }
608
+ .textInputContainer .textareaContainer .toolTextAreaBox .textAreaFooter {
609
+ bottom: 0;
610
+ height: 20px;
611
+ }
612
+ .textInputContainer .textareaContainer .toolTextAreaBox .ant-input {
613
+ border: none;
614
+ }
615
+ .textInputContainer .textareaContainer .toolTextAreaBoxFocus {
616
+ border-color: #40a9ff;
617
+ }
618
+ .textInputContainer .switchItem {
619
+ margin-top: 20px;
620
+ display: flex;
621
+ justify-content: space-between;
622
+ }
623
+ .textInputContainer .notify {
624
+ font-size: 12px;
625
+ color: rgb(204, 204, 204);
626
+ }
627
+
628
+ .ant-popover.tool-hotkeys-popover .ant-popover-inner-content {
629
+ max-height: 70vh;
630
+ overflow-y: scroll;
631
+ padding: 0;
632
+ }
633
+
634
+ .tipsBar {
635
+ display: flex;
636
+ height: 100%;
637
+ }
638
+ .tipsBar .hotKeyIconGray,
639
+ .tipsBar .helpIconGray {
640
+ width: 15px;
641
+ height: 15px;
642
+ cursor: pointer;
643
+ background-position: center;
644
+ background-repeat: no-repeat;
645
+ display: inline-block;
646
+ vertical-align: middle;
647
+ }
648
+ .tipsBar .svg {
649
+ width: 80px;
650
+ height: 100%;
651
+ color: #cccccc;
652
+ display: flex;
653
+ justify-content: center;
654
+ align-items: center;
655
+ font-size: 12px;
656
+ }
657
+ .tipsBar .svg:hover {
658
+ color: #666fff;
659
+ background-color: #e9e9e9;
660
+ }
661
+
662
+ .toolStyle {
663
+ width: 100%;
664
+ display: flex;
665
+ flex-direction: column;
666
+ }
667
+ .toolStyle .styleSlider .title {
668
+ min-width: 60px;
669
+ margin-right: 10px;
670
+ font-size: 12px;
671
+ display: flex;
672
+ align-items: center;
673
+ }
674
+ .toolStyle .styleSlider .title .icon {
675
+ margin-right: 5px;
676
+ }
677
+ .toolStyle .styleSlider .slider {
678
+ flex: 1;
679
+ }
680
+
681
+ .generalOperation {
682
+ display: flex;
683
+ align-items: center;
684
+ background-color: #fff;
685
+ width: 100%;
686
+ height: 80px;
687
+ border-top: 1px solid #eee;
688
+ box-shadow: 0 15px 10px 0 #eee;
689
+ -moz-user-select: none;
690
+ -webkit-user-select: none;
691
+ -ms-user-select: none;
692
+ user-select: none;
693
+ }
694
+ .generalOperation .item {
695
+ text-align: center;
696
+ flex: 1;
697
+ box-sizing: border-box;
698
+ width: 100%;
699
+ height: 100%;
700
+ display: flex;
701
+ flex-direction: column;
702
+ justify-content: center;
703
+ cursor: pointer;
704
+ }
705
+ .generalOperation .icon {
706
+ margin-bottom: 7px;
707
+ }
708
+ .generalOperation .toolName {
709
+ font-size: 12px;
710
+ }
711
+
712
+ .tagOperationMenu .main {
713
+ padding: 8px 8px;
714
+ overflow: auto;
715
+ -moz-user-select: none;
716
+ -webkit-user-select: none;
717
+ -ms-user-select: none;
718
+ user-select: none;
719
+ }
720
+ .tagOperationMenu .main::-webkit-scrollbar {
721
+ width: 0;
722
+ }
723
+ .tagOperationMenu .keyDownIcon {
724
+ display: inline-block;
725
+ text-align: center;
726
+ line-height: 20px;
727
+ width: 20px;
728
+ height: 20px;
729
+ border-radius: 2px;
730
+ border: 1px solid rgb(204, 204, 204);
731
+ }
732
+ .tagOperationMenu .keyDownIconActive {
733
+ display: inline-block;
734
+ text-align: center;
735
+ line-height: 20px;
736
+ width: 20px;
737
+ height: 20px;
738
+ border-radius: 2px;
739
+ border: 1px solid rgb(204, 204, 204);
740
+ background: #6371ff;
741
+ color: white;
742
+ }
743
+ .tagOperationMenu .level {
744
+ margin: 0px 0 0 -6px;
745
+ }
746
+ .tagOperationMenu .level .radioOption {
747
+ width: 100%;
748
+ margin-bottom: 10px;
749
+ display: flex;
750
+ padding: 4px 16px 4px 20px;
751
+ cursor: pointer;
752
+ justify-content: space-between;
753
+ }
754
+ .tagOperationMenu .level .radioOption .labelMouseClick {
755
+ margin: 0 26px;
756
+ }
757
+ .tagOperationMenu .level .radioOption:hover {
758
+ background: rgba(158, 158, 158, 0.18);
759
+ }
760
+ .tagOperationMenu .level .radioOption:active {
761
+ color: #666fff;
762
+ background: none;
763
+ }
764
+ .tagOperationMenu .singleBar {
765
+ padding: 0 3px 0 8px;
766
+ }
767
+ .tagOperationMenu .ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
768
+ padding-top: 4px;
769
+ }
770
+ .tagOperationMenu .ant-collapse-content > .ant-collapse-content-box {
771
+ padding: 0;
772
+ }
773
+ .tagOperationMenu .ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header {
774
+ padding-right: 40px;
775
+ }
776
+ .tagOperationMenu .ant-collapse-borderless > .ant-collapse-item {
777
+ border-bottom: 0px;
778
+ }
779
+
780
+ .sensebee-checkbox-group .ant-checkbox-group {
781
+ display: flex;
782
+ flex-direction: column;
783
+ }
784
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper {
785
+ padding: 10px 5px 10px 12px;
786
+ margin: 0;
787
+ display: flex;
788
+ flex: 1;
789
+ flex-direction: row;
790
+ align-content: center;
791
+ }
792
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .ant-checkbox {
793
+ align-self: center;
794
+ }
795
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper:hover {
796
+ background: #f3f4ff;
797
+ }
798
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper > span:nth-child(2) {
799
+ flex: 1;
800
+ justify-content: space-between;
801
+ display: flex;
802
+ align-self: center;
803
+ overflow: hidden;
804
+ }
805
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .sensebee-checkbox-num {
806
+ width: 20px;
807
+ height: 20px;
808
+ border: 1px solid rgb(204, 204, 204);
809
+ opacity: 1;
810
+ border-radius: 2px;
811
+ text-align: center;
812
+ }
813
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .sensebee-checkbox-label {
814
+ flex: 1;
815
+ overflow: hidden;
816
+ text-overflow: ellipsis;
817
+ }
818
+
819
+ ::-webkit-scrollbar {
820
+ width: 8px;
821
+ height: 8px;
822
+ }
823
+
824
+ ::-webkit-scrollbar-thumb {
825
+ width: 8px;
826
+ height: 8px;
827
+ background: rgb(204, 204, 204);
828
+ opacity: 1;
829
+ border-radius: 10px;
830
+ }
831
+
832
+ .textField {
833
+ margin-bottom: 24px;
834
+ position: relative;
835
+ text-align: left;
836
+ }
837
+ .textField .label {
838
+ margin-bottom: 8px;
839
+ font-size: 12px;
840
+ font-family: SourceHanSansCN-Medium;
841
+ }
842
+ .textField .label .required::before {
843
+ display: inline-block;
844
+ margin-right: 4px;
845
+ color: #ff4d4f;
846
+ font-size: 14px;
847
+ font-family: SimSun, sans-serif;
848
+ line-height: 1;
849
+ content: "*";
850
+ }
851
+
852
+ .textInputContainer {
853
+ padding: 20px;
854
+ height: 100%;
855
+ overflow-y: scroll;
856
+ }
857
+
858
+ .textField {
859
+ margin-bottom: 24px;
860
+ position: relative;
861
+ text-align: left;
862
+ }
863
+ .textField .label {
864
+ margin-bottom: 8px;
865
+ font-size: 12px;
866
+ font-family: SourceHanSansCN-Medium;
867
+ }
868
+ .textField .label .required::before {
869
+ display: inline-block;
870
+ margin-right: 4px;
871
+ color: #ff4d4f;
872
+ font-size: 14px;
873
+ font-family: SimSun, sans-serif;
874
+ line-height: 1;
875
+ content: "*";
876
+ }
877
+
878
+ .textToolOperationMenu {
879
+ padding: 20px;
880
+ height: 100%;
881
+ overflow-y: scroll;
882
+ }
883
+
884
+ .textareaContainer {
885
+ position: relative;
886
+ padding: 0;
887
+ padding-bottom: 36px;
888
+ }
889
+ .textareaContainer .textAreaFooter {
890
+ position: absolute;
891
+ width: 100%;
892
+ bottom: 0;
893
+ font-weight: 400;
894
+ opacity: 1;
895
+ font-size: 12px;
896
+ color: rgb(204, 204, 204);
897
+ display: flex;
898
+ padding: 0 10px;
899
+ }
900
+ .textareaContainer .textAreaFooter > span {
901
+ line-height: 16px;
902
+ }
903
+ .textareaContainer .textAreaFooter .warning {
904
+ color: #ff0000;
905
+ }
906
+ .textareaContainer .textAreaFooter .hotkeyTip {
907
+ font-size: 12px;
908
+ opacity: 0;
909
+ text-align: left;
910
+ display: flex;
911
+ flex-direction: column;
912
+ transition: opacity 0.3s ease-in-out;
913
+ }
914
+ .textareaContainer .textAreaFooter .wordCount {
915
+ flex: 1;
916
+ text-align: right;
917
+ align-self: flex-end;
918
+ }
919
+ .textareaContainer.focus {
920
+ border-color: #40a9ff;
921
+ }
922
+ .textareaContainer.focus .textAreaFooter .hotkeyTip {
923
+ opacity: 1;
924
+ }
925
+ .textareaContainer.invalid {
926
+ border-color: #ff4d4f;
927
+ }
928
+ .textareaContainer.invalid.focus {
929
+ box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
930
+ }
931
+ .textareaContainer .warning {
932
+ outline-color: #ff0000;
933
+ border-color: #ff0000;
934
+ }
935
+ .textareaContainer .inputCount {
936
+ position: absolute;
937
+ bottom: 0;
938
+ right: 5px;
939
+ font-weight: 400;
940
+ line-height: 20px;
941
+ opacity: 1;
942
+ font-size: 12px;
943
+ color: rgb(204, 204, 204);
944
+ }
945
+ .textareaContainer .inputCount .warning {
946
+ color: #ff0000;
947
+ }
948
+ .textareaContainer .notify {
949
+ font-size: 12px;
950
+ color: rgb(204, 204, 204);
951
+ }
952
+
953
+ .clearText {
954
+ width: 13px;
955
+ height: 13px;
956
+ margin-left: 8px;
957
+ display: inline-block;
958
+ vertical-align: text-top;
959
+ background-repeat: no-repeat;
960
+ background-position: center;
961
+ background-image: url("../dist/assets/icons/25541b4d.svg");
962
+ cursor: pointer;
963
+ }
964
+ .clearText:not(.disabled):hover {
965
+ background-image: url("../dist/assets/icons/dc9b6bfc.svg");
966
+ }
967
+ .clearText.disabled {
968
+ cursor: not-allowed;
969
+ }
970
+
971
+ .switchItem {
972
+ margin-top: 20px;
973
+ display: flex;
974
+ justify-content: space-between;
975
+ font-size: 12px;
976
+ font-family: SourceHanSansCN-Medium;
977
+ }
978
+ .switchItem .notify {
979
+ font-size: 12px;
980
+ color: rgb(204, 204, 204);
981
+ }
982
+
983
+ .textarea-outline {
984
+ border: 1px solid #d9d9d9;
985
+ border-radius: 2px;
986
+ }
987
+ .textarea-outline.disabled {
988
+ color: rgba(0, 0, 0, 0.25);
989
+ background-color: #f5f5f5;
990
+ cursor: not-allowed;
991
+ }
992
+
993
+ .bee-component__iconWithText {
994
+ display: flex;
995
+ flex-direction: column;
996
+ justify-content: space-between;
997
+ align-items: center;
998
+ height: auto;
999
+ }
1000
+ .bee-component__iconWithText .iconGroup {
1001
+ color: #666666;
1002
+ cursor: pointer;
1003
+ display: flex;
1004
+ align-items: center;
1005
+ -moz-user-select: none;
1006
+ -webkit-user-select: none;
1007
+ -ms-user-select: none;
1008
+ user-select: none;
1009
+ margin: 0px 21px 4px;
1010
+ }
1011
+ .bee-component__iconWithText .iconGroup .icon {
1012
+ font-size: 18px;
1013
+ }
1014
+ .bee-component__iconWithText .name {
1015
+ font-size: 12px;
1016
+ color: #999999;
1017
+ }
1018
+ .bee-component__iconWithText:hover .bee-component__iconWithText__iconGroup {
1019
+ color: #666fff;
1020
+ }
1021
+ .bee-component__iconWithText:hover .bee-component__iconWithText__name {
1022
+ color: #666fff;
1023
+ }
1024
+ .bee-component__annotationStepPopover {
1025
+ padding: 12px 30px;
1026
+ background: white;
1027
+ }
1028
+ .bee-component__annotationStepPopover .step {
1029
+ margin-bottom: 24px;
1030
+ }
1031
+ .bee-component__annotationStepPopover .step:last-child {
1032
+ margin-bottom: 0px;
1033
+ }
1034
+ .bee-component__annotationStepPopover .step:hover {
1035
+ color: #666fff;
1036
+ cursor: pointer;
1037
+ }
1038
+ .bee-component__annotationStepPopover .step .name {
1039
+ margin-bottom: 6px;
1040
+ font-size: 14px;
1041
+ }
1042
+ .bee-component__annotationStepPopover .step .progress {
1043
+ font-size: 12px;
1044
+ }
1045
+ .bee-component__annotationStepPopover .step .highlight {
1046
+ color: #666fff;
1047
+ }
1048
+ .bee-component__annotationStepPopover .isNotStart {
1049
+ color: #cccccc;
1050
+ }
1051
+ .bee-component__annotationStepPopover .isNotStart:hover {
1052
+ color: #cccccc;
1053
+ }
1054
+
1055
+ /** VideoPlayer样式 start */
1056
+ .bee-video-wrapper {
1057
+ width: 100%;
1058
+ height: 100%;
1059
+ display: flex;
1060
+ flex-direction: column;
1061
+ background-color: black;
1062
+ overflow: hidden;
1063
+ }
1064
+ .bee-video-wrapper .bee-video-container {
1065
+ flex: 1;
1066
+ overflow: hidden;
1067
+ position: relative;
1068
+ }
1069
+
1070
+ .bee-video-progress {
1071
+ position: absolute;
1072
+ width: 100%;
1073
+ height: 10px;
1074
+ top: -3px;
1075
+ align-items: center;
1076
+ display: flex;
1077
+ cursor: pointer;
1078
+ }
1079
+ .bee-video-progress:hover .bee-video-slider-bar {
1080
+ height: 15px;
1081
+ width: 15px;
1082
+ }
1083
+ .bee-video-progress .bee-video-slider {
1084
+ background-color: rgba(115, 133, 159, 0.5);
1085
+ height: 4px;
1086
+ width: 100%;
1087
+ position: relative;
1088
+ }
1089
+ .bee-video-progress .bee-video-slider__loaded, .bee-video-progress .bee-video-slider__played, .bee-video-progress .bee-video-slider__holder {
1090
+ position: absolute;
1091
+ left: 0;
1092
+ height: 100%;
1093
+ }
1094
+ .bee-video-progress .bee-video-slider__loaded {
1095
+ background-color: rgb(115, 133, 159);
1096
+ }
1097
+ .bee-video-progress .bee-video-slider__played {
1098
+ background-color: #fff;
1099
+ }
1100
+ .bee-video-progress .bee-video-slider-bar {
1101
+ cursor: pointer;
1102
+ content: "";
1103
+ height: 9px;
1104
+ width: 9px;
1105
+ background-color: #fff;
1106
+ display: inline-block;
1107
+ border-radius: 50%;
1108
+ position: absolute;
1109
+ top: 50%;
1110
+ transform: translate(-50%, -50%);
1111
+ left: 0;
1112
+ }
1113
+
1114
+ .bee-video-controller__wrapper {
1115
+ position: relative;
1116
+ }
1117
+
1118
+ .bee-video-controller {
1119
+ height: 80px;
1120
+ background-color: #222;
1121
+ color: white;
1122
+ display: flex;
1123
+ align-items: center;
1124
+ padding: 8px 16px;
1125
+ }
1126
+ .bee-video-controller .anticon {
1127
+ cursor: pointer;
1128
+ }
1129
+ .bee-video-controller__holder {
1130
+ flex: 1;
1131
+ }
1132
+ .bee-video-controller__playButton {
1133
+ font-size: 32px;
1134
+ }
1135
+ .bee-video-controller__time {
1136
+ font-size: 16px;
1137
+ }
1138
+ .bee-video-controller__speed {
1139
+ display: flex;
1140
+ align-items: center;
1141
+ }
1142
+ .bee-video-controller__speedNum {
1143
+ display: inline-block;
1144
+ width: 32px;
1145
+ text-align: center;
1146
+ }
1147
+ .bee-video-controller__speedButton {
1148
+ display: inline-flex;
1149
+ flex-direction: column;
1150
+ justify-content: space-between;
1151
+ }
1152
+ .bee-video-controller__pagination {
1153
+ display: flex;
1154
+ align-items: center;
1155
+ }
1156
+ .bee-video-controller__pagination .anticon {
1157
+ font-size: 20px;
1158
+ }
1159
+ .bee-video-controller__pageAll {
1160
+ margin: 0 5px;
1161
+ }
1162
+ .bee-video-controller__pagination, .bee-video-controller__time, .bee-video-controller__playButton {
1163
+ margin-right: 16px;
1164
+ }
1165
+ .bee-video-controller__hotkey {
1166
+ display: inline-flex;
1167
+ align-items: center;
1168
+ cursor: pointer;
1169
+ }
1170
+ .bee-video-controller__hotkey img {
1171
+ margin-right: 4px;
1172
+ }
1173
+
1174
+ /** VideoPlayer样式 end */
1175
+ /** PointCloud样式 start */
1176
+ .bee-point-cloud-footer {
1177
+ height: 40px;
1178
+ }
1179
+
1180
+ .bee-point-cloud-layout {
1181
+ display: flex;
1182
+ flex-direction: column;
1183
+ overflow: hidden;
1184
+ flex: 1;
1185
+ }
1186
+
1187
+ .bee-point-cloud-wrapper {
1188
+ display: flex;
1189
+ height: 100%;
1190
+ width: 100;
1191
+ overflow: hidden;
1192
+ flex: 1;
1193
+ }
1194
+ .bee-point-cloud-wrapper .bee-point-cloud-container {
1195
+ position: relative;
1196
+ }
1197
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header {
1198
+ background-color: #444;
1199
+ color: white;
1200
+ height: 40px;
1201
+ padding: 0 16px;
1202
+ line-height: 40px;
1203
+ display: flex;
1204
+ justify-content: space-between;
1205
+ }
1206
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-title {
1207
+ flex: 1;
1208
+ overflow: hidden;
1209
+ text-overflow: ellipsis;
1210
+ font-weight: 700;
1211
+ }
1212
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar {
1213
+ display: flex;
1214
+ align-items: center;
1215
+ font-size: 12px;
1216
+ }
1217
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar .bee-point-cloud__rotate-reserve {
1218
+ display: inline-block;
1219
+ height: 24px;
1220
+ width: 24px;
1221
+ background-repeat: no-repeat;
1222
+ cursor: pointer;
1223
+ margin-right: 16px;
1224
+ background-image: url("../dist/assets/icons/7eadb9c4.svg");
1225
+ transform: rotateY(180deg);
1226
+ }
1227
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar .bee-point-cloud__rotate {
1228
+ display: inline-block;
1229
+ height: 24px;
1230
+ width: 24px;
1231
+ background-repeat: no-repeat;
1232
+ cursor: pointer;
1233
+ margin-right: 16px;
1234
+ background-image: url("../dist/assets/icons/7eadb9c4.svg");
1235
+ }
1236
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar .bee-point-cloud__rotate-180 {
1237
+ display: inline-block;
1238
+ height: 24px;
1239
+ width: 24px;
1240
+ background-repeat: no-repeat;
1241
+ cursor: pointer;
1242
+ background-image: url("../dist/assets/icons/9d70807.svg");
1243
+ }
1244
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar .bee-point-cloud__next {
1245
+ font-size: 24px;
1246
+ cursor: pointer;
1247
+ }
1248
+ .bee-point-cloud-wrapper .bee-point-cloud-container__header-toolbar .bee-point-cloud__prev {
1249
+ font-size: 24px;
1250
+ cursor: pointer;
1251
+ margin-right: 16px;
1252
+ }
1253
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left {
1254
+ width: 40%;
1255
+ display: flex;
1256
+ flex-direction: column;
1257
+ border-right: 1px solid #fff;
1258
+ height: 100%;
1259
+ overflow: hidden;
1260
+ }
1261
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-2d-container {
1262
+ flex: 1;
1263
+ flex-direction: column;
1264
+ display: flex;
1265
+ overflow: hidden;
1266
+ }
1267
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-2d-container .bee-point-cloud-2d-image {
1268
+ flex: 1;
1269
+ background-color: #4c4c4c;
1270
+ }
1271
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container {
1272
+ display: flex;
1273
+ flex-direction: column;
1274
+ overflow: hidden;
1275
+ min-height: 400px;
1276
+ }
1277
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content {
1278
+ display: flex;
1279
+ flex: 1;
1280
+ overflow: hidden;
1281
+ }
1282
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar {
1283
+ padding-left: 16px;
1284
+ height: 100%;
1285
+ background-color: #4c4c4c;
1286
+ width: 36px;
1287
+ box-sizing: content-box;
1288
+ display: flex;
1289
+ flex-direction: column;
1290
+ justify-content: flex-end;
1291
+ }
1292
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__reset {
1293
+ display: inline-block;
1294
+ height: 36px;
1295
+ width: 36px;
1296
+ background-repeat: no-repeat;
1297
+ cursor: pointer;
1298
+ background-image: url("../dist/assets/icons/25ef334b.svg");
1299
+ margin: 16px 0;
1300
+ font-size: 36px;
1301
+ background-position: center;
1302
+ background-color: #444;
1303
+ border-radius: 4px;
1304
+ }
1305
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__top, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__front, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__left, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__right, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__back, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__bottom, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__lft, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__rbt {
1306
+ display: inline-block;
1307
+ height: 36px;
1308
+ width: 36px;
1309
+ background-repeat: no-repeat;
1310
+ cursor: pointer;
1311
+ background-image: url("../dist/assets/icons/c5b4262e.png");
1312
+ margin-bottom: 8px;
1313
+ }
1314
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__top.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__front.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__left.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__right.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__back.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__bottom.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__lft.active, .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__rbt.active {
1315
+ background-image: url("../dist/assets/icons/e4f0b7fe.png");
1316
+ }
1317
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__top {
1318
+ background-position: 0 0;
1319
+ }
1320
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__front {
1321
+ background-position-y: -44px;
1322
+ }
1323
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__left {
1324
+ background-position-y: -88px;
1325
+ }
1326
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__back {
1327
+ background-position-y: -132px;
1328
+ }
1329
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__right {
1330
+ background-position-y: -176px;
1331
+ }
1332
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__bottom {
1333
+ background-position-y: -220px;
1334
+ }
1335
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__lft {
1336
+ background-position-y: -264px;
1337
+ }
1338
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-sidebar .bee-point-cloud-3d-view__rbt {
1339
+ background-position-y: -308px;
1340
+ margin-bottom: 0px;
1341
+ }
1342
+ .bee-point-cloud-wrapper .bee-point-cloud-container__left .bee-point-cloud-3d-container .bee-point-cloud-3d-content .bee-point-cloud-3d-view {
1343
+ flex: 1;
1344
+ overflow: hidden;
1345
+ }
1346
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right {
1347
+ flex: 1;
1348
+ display: flex;
1349
+ flex-direction: column;
1350
+ }
1351
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__top-view {
1352
+ height: 62.5%;
1353
+ border-bottom: 1px solid #fff;
1354
+ overflow: hidden;
1355
+ display: flex;
1356
+ flex-direction: column;
1357
+ }
1358
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom {
1359
+ flex: 1;
1360
+ display: flex;
1361
+ overflow: hidden;
1362
+ }
1363
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__empty-page {
1364
+ position: absolute;
1365
+ left: 0;
1366
+ top: 40px;
1367
+ flex: 1;
1368
+ background: black;
1369
+ color: #666666;
1370
+ display: flex;
1371
+ justify-content: center;
1372
+ align-items: center;
1373
+ flex-direction: column;
1374
+ font-size: 16px;
1375
+ z-index: 20;
1376
+ height: calc(100% - 40px);
1377
+ width: 100%;
1378
+ }
1379
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__empty-page .bee-point-cloud-container__empty-page__text {
1380
+ margin-top: 13px;
1381
+ }
1382
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__side-view {
1383
+ border-right: 1px solid white;
1384
+ }
1385
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__side-view,
1386
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__back-view {
1387
+ position: relative;
1388
+ flex: 1;
1389
+ display: flex;
1390
+ background: black;
1391
+ flex-direction: column;
1392
+ }
1393
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__side-view .bee-point-cloud-container__bottom-view-content,
1394
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__back-view .bee-point-cloud-container__bottom-view-content {
1395
+ flex: 1;
1396
+ }
1397
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__side-view .bee-point-cloud-container__bottom-view-content .bee-point-cloud-container__core-instance,
1398
+ .bee-point-cloud-wrapper .bee-point-cloud-container__right .bee-point-cloud-container__right-bottom .bee-point-cloud-container__back-view .bee-point-cloud-container__bottom-view-content .bee-point-cloud-container__core-instance {
1399
+ position: relative;
1400
+ width: 100%;
1401
+ height: 100%;
1402
+ }
1403
+
1404
+ /** PointCloud样式 end */