@luxonis/visualizer-protobuf 2.66.10 → 2.67.1
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/{comlink-DHMAu6X7.js → comlink-CsH1ih07.js} +1 -1
- package/dist/{depth-BGin0LSZ.js → depth-CvvVVEb7.js} +19 -4
- package/dist/{depth-coloring.worker-YB2xphzJ.js → depth-coloring.worker-BfrTf5yN.js} +6 -4
- package/dist/{deserialization.worker-CgJJ0wn7.js → deserialization.worker-hk5-vVek.js} +8 -8
- package/dist/{index-w7ND8d2T.js → index-B0BQ4Fwh.js} +3 -3
- package/dist/{index-BwR3Iw0A.js → index-BGsMOjjC.js} +3 -3
- package/dist/{index-CT4S0Kky.js → index-BTT4oTs5.js} +3 -3
- package/dist/{index-Dq_6x13l.js → index-BTaQS6zc.js} +3 -3
- package/dist/{index-CMk3yuIe.js → index-BUWAj7RO.js} +3 -3
- package/dist/{index-DjfMAVx2.js → index-BlAepdJg.js} +5 -5
- package/dist/{index-BOSTLpqR.js → index-BzLeaN56.js} +46 -17
- package/dist/{index-kNDsHDY4.js → index-CTU14EGn.js} +3 -3
- package/dist/{index-v8qHRTgH.js → index-CYlHxiz2.js} +3 -3
- package/dist/{index-CmrbNJoW.js → index-Cnigfgu_.js} +1 -1
- package/dist/{index-DoUU7hig.js → index-CpDOxFKV.js} +3 -3
- package/dist/{index-BHSCyWTx.js → index-CrukQeVA.js} +24 -24
- package/dist/{index-CFJCMpe3.js → index-DGb5vWhb.js} +3 -3
- package/dist/{index-DKiZ2X4o.js → index-DpVmn8Eo.js} +3 -3
- package/dist/{index-DgsLl2EF.js → index-DuHHWrO3.js} +3 -3
- package/dist/{index-QTvh2vP4.js → index-DyET9xdh.js} +3 -3
- package/dist/{index-C5g4sPQV.js → index-DzJhlBTx.js} +3 -3
- package/dist/{index-H7DkPNZj.js → index-OiUy81OG.js} +3 -3
- package/dist/{index-Cux47RKo.js → index-bi1RxT1w.js} +3 -3
- package/dist/{index-DgB4MyqP.js → index-ewsVm4VI.js} +3 -3
- package/dist/index.js +3 -3
- package/dist/lib/src/messaging/deserialization/detections/detection.d.ts.map +1 -1
- package/dist/lib/src/messaging/deserialization/detections/detection.js +3 -0
- package/dist/lib/src/messaging/deserialization/detections/detection.js.map +1 -1
- package/dist/lib/src/messaging/deserialization/video/color.js +1 -1
- package/dist/lib/src/messaging/deserialization/video/color.js.map +1 -1
- package/dist/lib/src/messaging/deserialization/video/depth-coloring.worker.d.ts +2 -3
- package/dist/lib/src/messaging/deserialization/video/depth-coloring.worker.d.ts.map +1 -1
- package/dist/lib/src/messaging/deserialization/video/depth-coloring.worker.js +5 -4
- package/dist/lib/src/messaging/deserialization/video/depth-coloring.worker.js.map +1 -1
- package/dist/lib/src/messaging/deserialization/video/depth.d.ts +2 -2
- package/dist/lib/src/messaging/deserialization/video/depth.d.ts.map +1 -1
- package/dist/lib/src/messaging/deserialization/video/depth.js +21 -6
- package/dist/lib/src/messaging/deserialization/video/depth.js.map +1 -1
- package/dist/lib/src/messaging/deserialization.worker.d.ts.map +1 -1
- package/dist/lib/src/messaging/deserialization.worker.js +8 -4
- package/dist/lib/src/messaging/deserialization.worker.js.map +1 -1
- package/dist/packages/studio-base/src/panels/ThreeDeeRender/renderables/ImageMode/MessageHandler.d.ts.map +1 -1
- package/dist/packages/studio-base/src/panels/ThreeDeeRender/renderables/ImageMode/MessageHandler.js +41 -14
- package/dist/packages/studio-base/src/panels/ThreeDeeRender/renderables/ImageMode/MessageHandler.js.map +1 -1
- package/dist/{pointcloudFromDepth.worker-CoUfUVnZ.js → pointcloudFromDepth.worker-BuoR8w9Z.js} +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { w as wrap } from './comlink-
|
|
1
|
+
import { t as transfer, w as wrap } from './comlink-CsH1ih07.js';
|
|
2
2
|
import { useContext, useRef, useLayoutEffect, createContext, useReducer, useState, useCallback } from 'react';
|
|
3
3
|
import 'zustand';
|
|
4
4
|
import { isParent, getLeaves, createRemoveUpdate, updateTree, getNodeAtPath } from 'react-mosaic-component';
|
|
@@ -4189,11 +4189,18 @@ function parseMessage(message) {
|
|
|
4189
4189
|
// License, v2.0. If a copy of the MPL was not distributed with this
|
|
4190
4190
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/
|
|
4191
4191
|
|
|
4192
|
+
let depthWorker = null;
|
|
4193
|
+
function getDepthWorker() {
|
|
4194
|
+
if (!depthWorker) {
|
|
4195
|
+
depthWorker = wrap(new Worker(new URL("depth-coloring.worker-BfrTf5yN.js", import.meta.url)));
|
|
4196
|
+
}
|
|
4197
|
+
return depthWorker;
|
|
4198
|
+
}
|
|
4192
4199
|
async function deserializeDepthFrame({
|
|
4193
4200
|
topic,
|
|
4194
4201
|
message,
|
|
4195
4202
|
callback,
|
|
4196
|
-
|
|
4203
|
+
maxStereoDepth
|
|
4197
4204
|
}) {
|
|
4198
4205
|
const {
|
|
4199
4206
|
receiveTime,
|
|
@@ -4201,8 +4208,16 @@ async function deserializeDepthFrame({
|
|
|
4201
4208
|
width,
|
|
4202
4209
|
height
|
|
4203
4210
|
} = parseMessage(message);
|
|
4204
|
-
const worker =
|
|
4205
|
-
|
|
4211
|
+
const worker = getDepthWorker();
|
|
4212
|
+
|
|
4213
|
+
// Transfer the underlying ArrayBuffer to the worker to avoid cloning and allow GC on the main thread
|
|
4214
|
+
let colorizedData;
|
|
4215
|
+
try {
|
|
4216
|
+
colorizedData = await worker.colorDepht(transfer(message.data, [message.data.buffer]), encoding, width, height, maxStereoDepth);
|
|
4217
|
+
} catch (err) {
|
|
4218
|
+
// Fallback in case the buffer is not transferable (e.g., SharedArrayBuffer)
|
|
4219
|
+
colorizedData = await worker.colorDepht(message.data, encoding, width, height, maxStereoDepth);
|
|
4220
|
+
}
|
|
4206
4221
|
const foxgloveMessage = {
|
|
4207
4222
|
timestamp: receiveTime,
|
|
4208
4223
|
frame_id: `depth-${topic}-frame`,
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import { e as expose } from './comlink-
|
|
1
|
+
import { e as expose, t as transfer } from './comlink-CsH1ih07.js';
|
|
2
2
|
|
|
3
3
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
4
4
|
// License, v2.0. If a copy of the MPL was not distributed with this
|
|
5
5
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/
|
|
6
6
|
|
|
7
|
-
function colorDepht(
|
|
8
|
-
const depthData = parseDepthData(
|
|
7
|
+
function colorDepht(data, encoding, width, height, maxSteroDepth) {
|
|
8
|
+
const depthData = parseDepthData(data, encoding, width, height);
|
|
9
9
|
const colorizedData = colorizeDepthFrame(depthData, width, height, maxSteroDepth);
|
|
10
|
-
|
|
10
|
+
|
|
11
|
+
// Return the colorized buffer as a transferable to avoid copies
|
|
12
|
+
return transfer(colorizedData, [colorizedData.buffer]);
|
|
11
13
|
}
|
|
12
14
|
function parseDepthData(data, encoding, width, height) {
|
|
13
15
|
const pixelCount = width * height;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { e as expose } from './comlink-
|
|
2
|
-
import { t as typescript } from './index-
|
|
3
|
-
import { U as parseMessage, e as estimateObjectSize, V as fromMillis, d as dist, W as parsePixelFormat, X as deserializeDepthFrame } from './depth-
|
|
1
|
+
import { e as expose } from './comlink-CsH1ih07.js';
|
|
2
|
+
import { t as typescript } from './index-Cnigfgu_.js';
|
|
3
|
+
import { U as parseMessage, e as estimateObjectSize, V as fromMillis, d as dist, W as parsePixelFormat, X as deserializeDepthFrame } from './depth-CvvVVEb7.js';
|
|
4
4
|
import { P as PointsAnnotationType, p as protobufsBySchema, T as Type, b as Profile } from './protobuf-BFCtaU7c.js';
|
|
5
5
|
import { i as isCapableOfEncodedStream } from './encoding-DqlhpFR2.js';
|
|
6
6
|
import 'react';
|
|
@@ -422,6 +422,9 @@ function deserializeImgDetections({
|
|
|
422
422
|
const highlightSizeX = Math.min(highligtLength, detectionWidth);
|
|
423
423
|
const highlightSizeY = Math.min(highligtLength * ratio, detection.ymax - detection.ymin);
|
|
424
424
|
const style = DETECTION_STYLE[detection.label] ?? DEFAULT_STYLE;
|
|
425
|
+
if (detection.labelName) {
|
|
426
|
+
style.label = detection.labelName;
|
|
427
|
+
}
|
|
425
428
|
foxgloveMessage.points.push({
|
|
426
429
|
timestamp: receiveTime,
|
|
427
430
|
points: [{
|
|
@@ -644,7 +647,7 @@ function deserializeColorFrame({
|
|
|
644
647
|
planeStride
|
|
645
648
|
} = parseMessage(message);
|
|
646
649
|
const foxgloveMessage = {
|
|
647
|
-
timestamp:
|
|
650
|
+
timestamp: receiveTime,
|
|
648
651
|
frame_id: `color-${topic}-frame`,
|
|
649
652
|
width,
|
|
650
653
|
height,
|
|
@@ -1050,9 +1053,6 @@ function handleMessageToDecode({
|
|
|
1050
1053
|
const bufferArray = new Uint8Array(buffer.buffer, buffer.byteOffset, buffer.byteLength);
|
|
1051
1054
|
try {
|
|
1052
1055
|
const message = protobufSchema.decoder.decode(bufferArray);
|
|
1053
|
-
console.debug(`[DepthAI Deserialization] Received message of type ${protobufSchema.type} on topic ${topic}`, {
|
|
1054
|
-
message
|
|
1055
|
-
});
|
|
1056
1056
|
if (configStore.connectionConfigValue.debugLogs) {
|
|
1057
1057
|
console.debug(`[DepthAI Deserialization] Received message of type ${protobufSchema.type} on topic ${topic}`, {
|
|
1058
1058
|
message
|
|
@@ -1150,7 +1150,7 @@ async function deserializeDepthAiMessage(args) {
|
|
|
1150
1150
|
topic,
|
|
1151
1151
|
message,
|
|
1152
1152
|
callback,
|
|
1153
|
-
|
|
1153
|
+
maxStereoDepth: maxSteroDepth / 1000
|
|
1154
1154
|
});
|
|
1155
1155
|
break;
|
|
1156
1156
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a1 as ExternalTokenizer, a9 as ContextTracker, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, X as foldNodeProp, a8 as foldInside, U as indentNodeProp, V as continuedIndent, ae as defineCSSCompletionSource, a0 as LanguageSupport } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { a1 as ExternalTokenizer, a9 as ContextTracker, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, X as foldNodeProp, a8 as foldInside, U as indentNodeProp, V as continuedIndent, ae as defineCSSCompletionSource, a0 as LanguageSupport } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a1 as ExternalTokenizer, a9 as ContextTracker, Y as styleTags, Z as tags, a2 as LRParser, a5 as syntaxTree, a3 as ifNotIn, $ as LRLanguage, U as indentNodeProp, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, a0 as LanguageSupport, ac as IterMode, a4 as completeFromList, ad as NodeWeakMap, ab as snippetCompletion } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { a1 as ExternalTokenizer, a9 as ContextTracker, Y as styleTags, Z as tags, a2 as LRParser, a5 as syntaxTree, a3 as ifNotIn, $ as LRLanguage, U as indentNodeProp, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, a0 as LanguageSupport, ac as IterMode, a4 as completeFromList, ad as NodeWeakMap, ab as snippetCompletion } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { $ as LRLanguage, U as indentNodeProp, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, Y as styleTags, Z as tags, a0 as LanguageSupport, a2 as LRParser } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { $ as LRLanguage, U as indentNodeProp, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, Y as styleTags, Z as tags, a0 as LanguageSupport, a2 as LRParser } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a1 as ExternalTokenizer, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, U as indentNodeProp, V as continuedIndent, a6 as flatIndent, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, a0 as LanguageSupport } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { a1 as ExternalTokenizer, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, U as indentNodeProp, V as continuedIndent, a6 as flatIndent, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, a0 as LanguageSupport } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a1 as ExternalTokenizer, a9 as ContextTracker, Y as styleTags, Z as tags, a2 as LRParser, aa as LocalTokenGroup, ab as snippetCompletion, a5 as syntaxTree, $ as LRLanguage, U as indentNodeProp, V as continuedIndent, a6 as flatIndent, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, a0 as LanguageSupport, a3 as ifNotIn, a4 as completeFromList, ac as IterMode, ad as NodeWeakMap } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { a1 as ExternalTokenizer, a9 as ContextTracker, Y as styleTags, Z as tags, a2 as LRParser, aa as LocalTokenGroup, ab as snippetCompletion, a5 as syntaxTree, $ as LRLanguage, U as indentNodeProp, V as continuedIndent, a6 as flatIndent, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, a0 as LanguageSupport, a3 as ifNotIn, a4 as completeFromList, ac as IterMode, ad as NodeWeakMap } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { ImagePanel } from './index-
|
|
1
|
+
import { ImagePanel } from './index-BzLeaN56.js';
|
|
2
2
|
import 'react';
|
|
3
3
|
import 'react-dom';
|
|
4
|
-
import './depth-
|
|
5
|
-
import './comlink-
|
|
4
|
+
import './depth-CvvVVEb7.js';
|
|
5
|
+
import './comlink-CsH1ih07.js';
|
|
6
6
|
import 'zustand';
|
|
7
7
|
import 'react-mosaic-component';
|
|
8
8
|
import './protobuf-BFCtaU7c.js';
|
|
9
9
|
import 'protobufjs/minimal';
|
|
10
10
|
import '@mui/material';
|
|
11
11
|
import './isArrayLikeObject-Bytw9p-q.js';
|
|
12
|
-
import './index-
|
|
12
|
+
import './index-CrukQeVA.js';
|
|
13
13
|
import './utils-Hzt3wxhG.js';
|
|
14
14
|
import './FoxgloveServer-h5m-pXp3.js';
|
|
15
15
|
import 'ms';
|
|
@@ -32,7 +32,7 @@ import '@mui/icons-material/MoreVert';
|
|
|
32
32
|
import '@mui/icons-material/Cancel';
|
|
33
33
|
import '@mui/icons-material/Search';
|
|
34
34
|
import './decodeImage-DAWmFdMI.js';
|
|
35
|
-
import './index-
|
|
35
|
+
import './index-Cnigfgu_.js';
|
|
36
36
|
import '@mui/material/styles/createTypography';
|
|
37
37
|
import 'color';
|
|
38
38
|
import 'lodash.curry';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import React__default, { useReducer, useRef, useCallback, useLayoutEffect, Component, useContext, useState, useEffect, createContext, forwardRef, createElement, cloneElement, useMemo, Profiler, StrictMode } from 'react';
|
|
3
3
|
import ReactDOM__default from 'react-dom';
|
|
4
|
-
import { Y as isSymbol, Z as toString, $ as keys, a0 as getSymbols$1, a1 as stubArray, a2 as arrayPush, a3 as baseGetAllKeys, g as getTag, a4 as getAllKeys, k as baseGet, c as baseIteratee, j as castPath, t as toKey, a5 as arrayMap$1, a6 as baseUniq, b as baseFlatten, a7 as useMustNotChange, a8 as useCurrentLayoutActions, a9 as useCurrentLayoutSelector, r as reportError, A as AppError, L as Logger, u as useGuaranteedContext, aa as usePanelMosaicId, ab as useSelectedPanels, ac as PANEL_TITLE_CONFIG_KEY, ad as noop$4, o as getPanelTypeFromId, M as useShallowMemo, T as TAB_PANEL_TYPE, J as filterMap, d as dist$2, ae as useAppConfiguration, af as useValueChangedDebugLog, ag as useJsonTreeTheme } from './depth-
|
|
4
|
+
import { Y as isSymbol, Z as toString, $ as keys, a0 as getSymbols$1, a1 as stubArray, a2 as arrayPush, a3 as baseGetAllKeys, g as getTag, a4 as getAllKeys, k as baseGet, c as baseIteratee, j as castPath, t as toKey, a5 as arrayMap$1, a6 as baseUniq, b as baseFlatten, a7 as useMustNotChange, a8 as useCurrentLayoutActions, a9 as useCurrentLayoutSelector, r as reportError, A as AppError, L as Logger, u as useGuaranteedContext, aa as usePanelMosaicId, ab as useSelectedPanels, ac as PANEL_TITLE_CONFIG_KEY, ad as noop$4, o as getPanelTypeFromId, M as useShallowMemo, T as TAB_PANEL_TYPE, J as filterMap, d as dist$2, ae as useAppConfiguration, af as useValueChangedDebugLog, ag as useJsonTreeTheme } from './depth-CvvVVEb7.js';
|
|
5
5
|
import { createStore, useStore } from 'zustand';
|
|
6
|
-
import { g as generateUtilityClass, c as createAggregator, f as flatRest, b as baseSet, A as AnalyticsContext, P as PropTypes, E as ErrorDisplay, S as Stack$1, m as makeStyles$1, _ as _extends$1, W as WorkspaceContext, u as useAnalytics, a as AppEvent, L as LeftSidebarItemKeys, R as RightSidebarItemKeys, d as useTranslation, e as usePanelCatalog, h as EmptyState, i as isEmpty, j as PanelContext, k as PanelCatalogContext, l as usePanelStateStore, n as useDefaultPanelTitle, o as useWorkspaceStore, p as WorkspaceStoreSelectors, q as difference, r as usePanelContext, s as useMessagePipeline, v as v4, t as useHoverValue, w as useSetHoverValue, x as useClearHoverValue, y as useMessagePipelineGetter, z as usePanelSettingsTreeUpdate, B as PlayerCapabilities, C as assertNever, D as PlayerPresence, F as isEqual, G as isDesktopApp, H as createTheme, I as propTypesExports, J as DEFAULT_CAMERA_STATE$1, K as format$1, M as z, N as serializeError, O as stringify$1, Q as createIntl, T as createIntlCache } from './index-
|
|
6
|
+
import { g as generateUtilityClass, c as createAggregator, f as flatRest, b as baseSet, A as AnalyticsContext, P as PropTypes, E as ErrorDisplay, S as Stack$1, m as makeStyles$1, _ as _extends$1, W as WorkspaceContext, u as useAnalytics, a as AppEvent, L as LeftSidebarItemKeys, R as RightSidebarItemKeys, d as useTranslation, e as usePanelCatalog, h as EmptyState, i as isEmpty, j as PanelContext, k as PanelCatalogContext, l as usePanelStateStore, n as useDefaultPanelTitle, o as useWorkspaceStore, p as WorkspaceStoreSelectors, q as difference, r as usePanelContext, s as useMessagePipeline, v as v4, t as useHoverValue, w as useSetHoverValue, x as useClearHoverValue, y as useMessagePipelineGetter, z as usePanelSettingsTreeUpdate, B as PlayerCapabilities, C as assertNever, D as PlayerPresence, F as isEqual, G as isDesktopApp, H as createTheme, I as propTypesExports, J as DEFAULT_CAMERA_STATE$1, K as format$1, M as z, N as serializeError, O as stringify$1, Q as createIntl, T as createIntlCache } from './index-CrukQeVA.js';
|
|
7
7
|
import { MosaicDragType, MosaicContext, MosaicWindowContext, getOtherBranch, getNodeAtPath } from 'react-mosaic-component';
|
|
8
8
|
import { g as getDefaultExportFromCjs, c as commonjsGlobal, d as getAugmentedNamespace } from './protobuf-BFCtaU7c.js';
|
|
9
9
|
import { Link, Button, alpha, IconButton, Card, CardActionArea, CardMedia, CardContent, Typography, Container, Tooltip, Fade, ListItem, ListItemButton, ListItemText, List, TextField, InputAdornment, Popper, Grow, Paper, ClickAwayListener, Menu, MenuItem, Divider, buttonClasses, Backdrop, Chip, useTheme, alertClasses, darken, lighten, inputBaseClasses, autocompleteClasses, inputClasses, Checkbox, dialogActionsClasses, filledInputClasses, inputAdornmentClasses, listSubheaderClasses, selectClasses, tableCellClasses, ThemeProvider as ThemeProvider$1, SvgIcon, tabsClasses as tabsClasses$1, tabClasses, Tabs, Tab, ListItemIcon } from '@mui/material';
|
|
@@ -17,14 +17,14 @@ import CancelIcon from '@mui/icons-material/Cancel';
|
|
|
17
17
|
import SearchIcon from '@mui/icons-material/Search';
|
|
18
18
|
import { useDrag, useDrop } from 'react-dnd';
|
|
19
19
|
import { B as Box3, V as Vector3, I as InstancedBufferGeometry, F as Float32BufferAttribute, a as InstancedInterleavedBuffer, b as InterleavedBufferAttribute, W as WireframeGeometry, S as Sphere, U as UniformsLib, c as Vector2, e as ShaderLib, f as UniformsUtils, g as ShaderMaterial, h as Vector4, M as Matrix4, L as Line3, i as Mesh, j as MathUtils, O as Object3D, C as Color, r as rgbToThreeColor, s as stringToRgba, m as makeRgba, k as MeshStandardMaterial, R as ReplaceStencilOp, N as NotEqualStencilFunc, D as DoubleSide, P as PointsMaterial, l as rgbaToCssString, n as colorModeSettingsFields, o as autoSelectColorSettings, p as PlaneGeometry, q as DataTexture, t as UVMapping, u as ClampToEdgeWrapping, v as NearestFilter, w as LinearFilter, x as FS_SRGB_TO_LINEAR, y as SRGBColorSpace, z as LinearSRGBColorSpace, A as rgbaToLinear, E as RedFormat, G as RGBAFormat, H as getColorConverter, J as FloatType, K as UnsignedByteType, Q as NEEDS_MIN_MAX$1, T as InstancedMesh, X as CylinderGeometry, Y as ConeGeometry, Z as DataTextureLoader, _ as LinearMipmapLinearFilter, $ as Loader, a0 as LoaderUtils, a1 as FileLoader, a2 as MeshBasicMaterial, a3 as Scene, a4 as TextureLoader, a5 as AnimationClip, a6 as VectorKeyframeTrack, a7 as QuaternionKeyframeTrack, a8 as MeshLambertMaterial, a9 as MeshPhongMaterial, aa as FrontSide, ab as PerspectiveCamera, ac as OrthographicCamera, ad as AmbientLight, ae as SpotLight, af as PointLight, ag as DirectionalLight, ah as BufferGeometry, ai as Group, aj as Quaternion, ak as Bone, al as LineBasicMaterial, am as SkinnedMesh, an as Line, ao as LineSegments, ap as RepeatWrapping, aq as Skeleton, ar as BufferAttribute, as as TrianglesDrawMode, at as TriangleFanDrawMode, au as TriangleStripDrawMode, av as MeshPhysicalMaterial, aw as ImageBitmapLoader, ax as InterleavedBuffer, ay as Material, az as PropertyBinding, aA as LineLoop, aB as Points, aC as InterpolateLinear, aD as ColorManagement, aE as NearestMipmapNearestFilter, aF as LinearMipmapNearestFilter, aG as NearestMipmapLinearFilter, aH as MirroredRepeatWrapping, aI as InterpolateDiscrete, aJ as Texture, aK as NumberKeyframeTrack, aL as Interpolant, aM as EdgesGeometry, aN as LoadingManager, aO as stringToRgb, aP as getLuminance, aQ as Euler, aR as vec3TupleApproxEquals, aS as decodeCompressedImageToBitmap, aT as CanvasTexture, aU as Shape, aV as SRGBToLinear, aW as ShapeGeometry, aX as DynamicDrawUsage, aY as ShaderChunk, aZ as IMAGE_DEFAULT_COLOR_MODE_SETTINGS, a_ as colorHasTransparency, a$ as StaticDrawUsage, b0 as RawShaderMaterial, b1 as GLSL3, b2 as colorFieldComputedPrefix, b3 as getRotationTo, b4 as SphereGeometry, b5 as rgbaGradient, b6 as InstancedBufferAttribute, b7 as BoxGeometry, b8 as DARK_OUTLINE, b9 as LIGHT_OUTLINE, ba as CircleGeometry, bb as LineDashedMaterial, bc as GreaterDepth, bd as EventDispatcher$1, be as Plane, bf as Raycaster, bg as WebGLRenderTarget, bh as THREE$1, bi as Spherical, bj as WebGLRenderer, bk as NoToneMapping, bl as VSMShadowMap, bm as HemisphereLight } from './decodeImage-DAWmFdMI.js';
|
|
20
|
-
import { t as typescript } from './index-
|
|
20
|
+
import { t as typescript } from './index-Cnigfgu_.js';
|
|
21
21
|
import { CacheProvider } from '@emotion/react';
|
|
22
22
|
import '@mui/material/styles/createTypography';
|
|
23
23
|
import { E as EventEmitter } from './FoxgloveServer-h5m-pXp3.js';
|
|
24
24
|
import require$$1$3 from 'color';
|
|
25
25
|
import require$$2$1 from 'lodash.curry';
|
|
26
26
|
import OpenInNewIcon from '@mui/icons-material/OpenInNew';
|
|
27
|
-
import './comlink-
|
|
27
|
+
import './comlink-CsH1ih07.js';
|
|
28
28
|
import './utils-Hzt3wxhG.js';
|
|
29
29
|
import './foxglove-protocol-BSYuI-q2.js';
|
|
30
30
|
import 'react-dnd-html5-backend';
|
|
@@ -32507,9 +32507,8 @@ function getAnnotationAtPath(message, path) {
|
|
|
32507
32507
|
const syncToleranceSec = 0.15; // maximum acceptable time difference for selecting a “closest” annotation.
|
|
32508
32508
|
const maxStalenessSec = 1.1; // how long we can hold the last older annotation if no better match is available. 1s corresponds to 1 FPS + 100ms window for jitter.
|
|
32509
32509
|
const hysteresisSec = 0.1; // how much “stickiness” we allow before switching candidates.
|
|
32510
|
-
// New: how long (seconds) of recent images we keep around to allow picking an older image that better matches annotations
|
|
32511
32510
|
const imageRetentionSec = 5; // keep small window of recent images
|
|
32512
|
-
const maxImageBuffer =
|
|
32511
|
+
const maxImageBuffer = 150; // cap number of stored images
|
|
32513
32512
|
|
|
32514
32513
|
// Have constants for the HUD items so that they don't need to be recreated and GCed every message
|
|
32515
32514
|
const WAITING_FOR_BOTH_HUD_ITEM = {
|
|
@@ -32620,29 +32619,29 @@ class MessageHandler {
|
|
|
32620
32619
|
|
|
32621
32620
|
// Compute timestamp seconds for buffer storage (prefer image stamp, then receiveTime, then wall clock)
|
|
32622
32621
|
const stamp = getTimestampFromImage(image);
|
|
32623
|
-
let
|
|
32622
|
+
let stampTimeSec;
|
|
32624
32623
|
const stampSec = stamp?.sec;
|
|
32625
32624
|
const stampNsec = stamp?.nsec;
|
|
32626
32625
|
if (typeof stampSec === "number" && typeof stampNsec === "number") {
|
|
32627
|
-
|
|
32626
|
+
stampTimeSec = stampSec + stampNsec / 1e9;
|
|
32628
32627
|
} else {
|
|
32629
32628
|
const recv = message.receiveTime;
|
|
32630
32629
|
const recvSec = recv?.sec;
|
|
32631
32630
|
const recvNsec = recv?.nsec;
|
|
32632
32631
|
if (typeof recvSec === "number" && typeof recvNsec === "number") {
|
|
32633
|
-
|
|
32634
|
-
} else {
|
|
32635
|
-
timeSec = performance.now() / 1000;
|
|
32632
|
+
stampTimeSec = recvSec + recvNsec / 1e9;
|
|
32636
32633
|
}
|
|
32637
32634
|
}
|
|
32635
|
+
const arrivalSec = performance.now() / 1000;
|
|
32638
32636
|
this.imagesBuffer.push({
|
|
32639
32637
|
image: this.lastImage,
|
|
32640
|
-
|
|
32638
|
+
stampTimeSec,
|
|
32639
|
+
arrivalSec
|
|
32641
32640
|
});
|
|
32642
|
-
// Trim by time and length
|
|
32641
|
+
// Trim by arrival time and length (do not use stamped time for retention)
|
|
32643
32642
|
const nowSec = performance.now() / 1000;
|
|
32644
|
-
const
|
|
32645
|
-
this.imagesBuffer = this.imagesBuffer.filter(e => e.
|
|
32643
|
+
const cutoffArrival = nowSec - imageRetentionSec;
|
|
32644
|
+
this.imagesBuffer = this.imagesBuffer.filter(e => e.arrivalSec >= cutoffArrival);
|
|
32646
32645
|
if (this.imagesBuffer.length > maxImageBuffer) {
|
|
32647
32646
|
this.imagesBuffer.splice(0, this.imagesBuffer.length - maxImageBuffer);
|
|
32648
32647
|
}
|
|
@@ -32785,6 +32784,36 @@ class MessageHandler {
|
|
|
32785
32784
|
}
|
|
32786
32785
|
}
|
|
32787
32786
|
|
|
32787
|
+
// If there are no visible annotation topics, just render the latest image
|
|
32788
|
+
if (visibleTopics.size === 0) {
|
|
32789
|
+
const newestImageEntry = this.imagesBuffer[this.imagesBuffer.length - 1];
|
|
32790
|
+
return {
|
|
32791
|
+
image: newestImageEntry.image,
|
|
32792
|
+
annotationsByTopic: new Map(),
|
|
32793
|
+
presentAnnotationTopics: undefined,
|
|
32794
|
+
missingAnnotationTopics: undefined
|
|
32795
|
+
};
|
|
32796
|
+
}
|
|
32797
|
+
|
|
32798
|
+
// Fast-path: if none of the visible topics has any annotation data yet, render image only
|
|
32799
|
+
let hasAnyAnnotationForVisible = false;
|
|
32800
|
+
for (const t of visibleTopics) {
|
|
32801
|
+
const buf = this.annotationsMap.get(t);
|
|
32802
|
+
if (buf && buf.length > 0) {
|
|
32803
|
+
hasAnyAnnotationForVisible = true;
|
|
32804
|
+
break;
|
|
32805
|
+
}
|
|
32806
|
+
}
|
|
32807
|
+
if (!hasAnyAnnotationForVisible) {
|
|
32808
|
+
const newestImageEntry = this.imagesBuffer[this.imagesBuffer.length - 1];
|
|
32809
|
+
return {
|
|
32810
|
+
image: newestImageEntry.image,
|
|
32811
|
+
annotationsByTopic: new Map(),
|
|
32812
|
+
presentAnnotationTopics: undefined,
|
|
32813
|
+
missingAnnotationTopics: undefined
|
|
32814
|
+
};
|
|
32815
|
+
}
|
|
32816
|
+
|
|
32788
32817
|
// Required topics (available & visible)
|
|
32789
32818
|
const requiredTopics = [];
|
|
32790
32819
|
for (const t of visibleTopics) {
|
|
@@ -32793,9 +32822,9 @@ class MessageHandler {
|
|
|
32793
32822
|
}
|
|
32794
32823
|
}
|
|
32795
32824
|
|
|
32796
|
-
// New policy: always start from newest image (do not freeze on older frame).
|
|
32825
|
+
// New policy: always start from newest image by arrival (do not freeze on older frame).
|
|
32797
32826
|
const newestImageEntry = this.imagesBuffer[this.imagesBuffer.length - 1];
|
|
32798
|
-
const imageTimestampSec = newestImageEntry.
|
|
32827
|
+
const imageTimestampSec = typeof newestImageEntry.stampTimeSec === "number" ? newestImageEntry.stampTimeSec : newestImageEntry.arrivalSec;
|
|
32799
32828
|
const selectedAnnotations = new Map();
|
|
32800
32829
|
const presentTopics = [];
|
|
32801
32830
|
const missingTopics = [];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Y as styleTags, Z as tags, $ as LRLanguage, a0 as LanguageSupport, a2 as LRParser, aa as LocalTokenGroup, ah as html, ai as parseMixed, ak as javascriptLanguage } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { Y as styleTags, Z as tags, $ as LRLanguage, a0 as LanguageSupport, a2 as LRParser, aa as LocalTokenGroup, ah as html, ai as parseMixed, ak as javascriptLanguage } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Y as styleTags, Z as tags, ak as javascriptLanguage, $ as LRLanguage, a0 as LanguageSupport, a2 as LRParser, ah as html, ai as parseMixed, a1 as ExternalTokenizer } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { Y as styleTags, Z as tags, ak as javascriptLanguage, $ as LRLanguage, a0 as LanguageSupport, a2 as LRParser, ah as html, ai as parseMixed, a1 as ExternalTokenizer } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a1 as ExternalTokenizer, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, U as indentNodeProp, V as continuedIndent, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, ah as html, a0 as LanguageSupport, ai as parseMixed } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { a1 as ExternalTokenizer, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, U as indentNodeProp, V as continuedIndent, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, ah as html, a0 as LanguageSupport, ai as parseMixed } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { d as dist$1, e as estimateObjectSize, r as reportError, A as AppError, b as baseFlatten, a as baseEach, c as baseIteratee, f as baseDifference, g as getTag, h as baseKeys, i as baseIsEqual, j as castPath, t as toKey, k as baseGet, l as hasIn, s as sendNotification, m as shallowequal, u as useGuaranteedContext, n as getPanelIdsInsideTabPanels, o as getPanelTypeFromId, T as TAB_PANEL_TYPE, p as removePanelFromTabPanel, q as getPanelIdForType, v as getPathFromNode, w as updateTabPanelLayout, x as getSaveConfigsPayloadForAddedPanel, y as replaceAndRemovePanels, z as inlineTabPanelLayouts, B as getAllPanelIds, C as getConfigsForNestedPanelsInsideTab, D as reorderTabWithinTabPanel, E as moveTabBetweenTabPanels, F as isTabPanelConfig, G as DEFAULT_TAB_PANEL_CONFIG, H as addPanelToTab, I as createAddUpdates, J as filterMap, L as Logger, K as uniq$2, M as useShallowMemo, N as CurrentLayoutContext, O as MessageOrderTracker, P as AppConfigurationContext, _ as __assign$8, Q as __rest$5, R as __spreadArray$5 } from './depth-
|
|
2
|
-
import { w as wrap$3, p as proxy } from './comlink-
|
|
1
|
+
import { d as dist$1, e as estimateObjectSize, r as reportError, A as AppError, b as baseFlatten, a as baseEach, c as baseIteratee, f as baseDifference, g as getTag, h as baseKeys, i as baseIsEqual, j as castPath, t as toKey, k as baseGet, l as hasIn, s as sendNotification, m as shallowequal, u as useGuaranteedContext, n as getPanelIdsInsideTabPanels, o as getPanelTypeFromId, T as TAB_PANEL_TYPE, p as removePanelFromTabPanel, q as getPanelIdForType, v as getPathFromNode, w as updateTabPanelLayout, x as getSaveConfigsPayloadForAddedPanel, y as replaceAndRemovePanels, z as inlineTabPanelLayouts, B as getAllPanelIds, C as getConfigsForNestedPanelsInsideTab, D as reorderTabWithinTabPanel, E as moveTabBetweenTabPanels, F as isTabPanelConfig, G as DEFAULT_TAB_PANEL_CONFIG, H as addPanelToTab, I as createAddUpdates, J as filterMap, L as Logger, K as uniq$2, M as useShallowMemo, N as CurrentLayoutContext, O as MessageOrderTracker, P as AppConfigurationContext, _ as __assign$8, Q as __rest$5, R as __spreadArray$5 } from './depth-CvvVVEb7.js';
|
|
2
|
+
import { w as wrap$3, p as proxy } from './comlink-CsH1ih07.js';
|
|
3
3
|
import { u as uint8ArrayToUint16Array } from './utils-Hzt3wxhG.js';
|
|
4
4
|
import { p as protobufsBySchema, a as protobufSchemaNameToType, g as getDefaultExportFromCjs, c as commonjsGlobal } from './protobuf-BFCtaU7c.js';
|
|
5
5
|
import { B as BinaryOpcode } from './FoxgloveServer-h5m-pXp3.js';
|
|
@@ -575,7 +575,7 @@ class DepthToPointcloudWorkerPool {
|
|
|
575
575
|
this.#FRAME_BATCH_SIZE = Math.max(1, batchSize);
|
|
576
576
|
this.#targetDispatchIntervalMs = DISPATCH_INTERVAL_MS / Math.max(1, Math.round(targetFps / DISPATCH_INTERVAL_FRACTION)) * this.#calculateBatchMultiplier();
|
|
577
577
|
this.#maxProcessedQueueSize = Math.max(1, maxProcessedQueueSize);
|
|
578
|
-
this.workerApis = new Array(WORKER_COUNT).fill(undefined).map(() => wrap$3(new Worker(new URL("pointcloudFromDepth.worker-
|
|
578
|
+
this.workerApis = new Array(WORKER_COUNT).fill(undefined).map(() => wrap$3(new Worker(new URL("pointcloudFromDepth.worker-BuoR8w9Z.js", import.meta.url), {
|
|
579
579
|
type: "module"
|
|
580
580
|
})));
|
|
581
581
|
this.#metrics = globalInputEventMetricsManager;
|
|
@@ -790,7 +790,7 @@ class ConfigStore {
|
|
|
790
790
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/
|
|
791
791
|
|
|
792
792
|
function initWorker(callback) {
|
|
793
|
-
const workerWrap = wrap$3(new Worker(new URL("deserialization.worker-
|
|
793
|
+
const workerWrap = wrap$3(new Worker(new URL("deserialization.worker-hk5-vVek.js", import.meta.url), {
|
|
794
794
|
type: "module",
|
|
795
795
|
name: `message-decoder`
|
|
796
796
|
}));
|
|
@@ -86841,7 +86841,7 @@ function legacy(parser) {
|
|
|
86841
86841
|
return new LanguageSupport(StreamLanguage.define(parser));
|
|
86842
86842
|
}
|
|
86843
86843
|
function sql$1(dialectName) {
|
|
86844
|
-
return import('./index-
|
|
86844
|
+
return import('./index-DpVmn8Eo.js').then(m => m.sql({ dialect: m[dialectName] }));
|
|
86845
86845
|
}
|
|
86846
86846
|
/**
|
|
86847
86847
|
An array of language descriptions for known language packages.
|
|
@@ -86852,7 +86852,7 @@ const languages = [
|
|
|
86852
86852
|
name: "C",
|
|
86853
86853
|
extensions: ["c", "h", "ino"],
|
|
86854
86854
|
load() {
|
|
86855
|
-
return import('./index-
|
|
86855
|
+
return import('./index-BTaQS6zc.js').then(m => m.cpp());
|
|
86856
86856
|
}
|
|
86857
86857
|
}),
|
|
86858
86858
|
/*@__PURE__*/LanguageDescription.of({
|
|
@@ -86860,7 +86860,7 @@ const languages = [
|
|
|
86860
86860
|
alias: ["cpp"],
|
|
86861
86861
|
extensions: ["cpp", "c++", "cc", "cxx", "hpp", "h++", "hh", "hxx"],
|
|
86862
86862
|
load() {
|
|
86863
|
-
return import('./index-
|
|
86863
|
+
return import('./index-BTaQS6zc.js').then(m => m.cpp());
|
|
86864
86864
|
}
|
|
86865
86865
|
}),
|
|
86866
86866
|
/*@__PURE__*/LanguageDescription.of({
|
|
@@ -86880,7 +86880,7 @@ const languages = [
|
|
|
86880
86880
|
name: "Go",
|
|
86881
86881
|
extensions: ["go"],
|
|
86882
86882
|
load() {
|
|
86883
|
-
return import('./index-
|
|
86883
|
+
return import('./index-BUWAj7RO.js').then(m => m.go());
|
|
86884
86884
|
}
|
|
86885
86885
|
}),
|
|
86886
86886
|
/*@__PURE__*/LanguageDescription.of({
|
|
@@ -86895,7 +86895,7 @@ const languages = [
|
|
|
86895
86895
|
name: "Java",
|
|
86896
86896
|
extensions: ["java"],
|
|
86897
86897
|
load() {
|
|
86898
|
-
return import('./index-
|
|
86898
|
+
return import('./index-DzJhlBTx.js').then(m => m.java());
|
|
86899
86899
|
}
|
|
86900
86900
|
}),
|
|
86901
86901
|
/*@__PURE__*/LanguageDescription.of({
|
|
@@ -86911,7 +86911,7 @@ const languages = [
|
|
|
86911
86911
|
alias: ["json5"],
|
|
86912
86912
|
extensions: ["json", "map"],
|
|
86913
86913
|
load() {
|
|
86914
|
-
return import('./index-
|
|
86914
|
+
return import('./index-ewsVm4VI.js').then(m => m.json());
|
|
86915
86915
|
}
|
|
86916
86916
|
}),
|
|
86917
86917
|
/*@__PURE__*/LanguageDescription.of({
|
|
@@ -86925,14 +86925,14 @@ const languages = [
|
|
|
86925
86925
|
name: "LESS",
|
|
86926
86926
|
extensions: ["less"],
|
|
86927
86927
|
load() {
|
|
86928
|
-
return import('./index-
|
|
86928
|
+
return import('./index-bi1RxT1w.js').then(m => m.less());
|
|
86929
86929
|
}
|
|
86930
86930
|
}),
|
|
86931
86931
|
/*@__PURE__*/LanguageDescription.of({
|
|
86932
86932
|
name: "Liquid",
|
|
86933
86933
|
extensions: ["liquid"],
|
|
86934
86934
|
load() {
|
|
86935
|
-
return import('./index-
|
|
86935
|
+
return import('./index-OiUy81OG.js').then(m => m.liquid());
|
|
86936
86936
|
}
|
|
86937
86937
|
}),
|
|
86938
86938
|
/*@__PURE__*/LanguageDescription.of({
|
|
@@ -86958,7 +86958,7 @@ const languages = [
|
|
|
86958
86958
|
name: "PHP",
|
|
86959
86959
|
extensions: ["php", "php3", "php4", "php5", "php7", "phtml"],
|
|
86960
86960
|
load() {
|
|
86961
|
-
return import('./index-
|
|
86961
|
+
return import('./index-CpDOxFKV.js').then(m => m.php());
|
|
86962
86962
|
}
|
|
86963
86963
|
}),
|
|
86964
86964
|
/*@__PURE__*/LanguageDescription.of({
|
|
@@ -86975,28 +86975,28 @@ const languages = [
|
|
|
86975
86975
|
extensions: ["BUILD", "bzl", "py", "pyw"],
|
|
86976
86976
|
filename: /^(BUCK|BUILD)$/,
|
|
86977
86977
|
load() {
|
|
86978
|
-
return import('./index-
|
|
86978
|
+
return import('./index-BGsMOjjC.js').then(m => m.python());
|
|
86979
86979
|
}
|
|
86980
86980
|
}),
|
|
86981
86981
|
/*@__PURE__*/LanguageDescription.of({
|
|
86982
86982
|
name: "Rust",
|
|
86983
86983
|
extensions: ["rs"],
|
|
86984
86984
|
load() {
|
|
86985
|
-
return import('./index-
|
|
86985
|
+
return import('./index-DuHHWrO3.js').then(m => m.rust());
|
|
86986
86986
|
}
|
|
86987
86987
|
}),
|
|
86988
86988
|
/*@__PURE__*/LanguageDescription.of({
|
|
86989
86989
|
name: "Sass",
|
|
86990
86990
|
extensions: ["sass"],
|
|
86991
86991
|
load() {
|
|
86992
|
-
return import('./index-
|
|
86992
|
+
return import('./index-B0BQ4Fwh.js').then(m => m.sass({ indented: true }));
|
|
86993
86993
|
}
|
|
86994
86994
|
}),
|
|
86995
86995
|
/*@__PURE__*/LanguageDescription.of({
|
|
86996
86996
|
name: "SCSS",
|
|
86997
86997
|
extensions: ["scss"],
|
|
86998
86998
|
load() {
|
|
86999
|
-
return import('./index-
|
|
86999
|
+
return import('./index-B0BQ4Fwh.js').then(m => m.sass());
|
|
87000
87000
|
}
|
|
87001
87001
|
}),
|
|
87002
87002
|
/*@__PURE__*/LanguageDescription.of({
|
|
@@ -87027,7 +87027,7 @@ const languages = [
|
|
|
87027
87027
|
name: "WebAssembly",
|
|
87028
87028
|
extensions: ["wat", "wast"],
|
|
87029
87029
|
load() {
|
|
87030
|
-
return import('./index-
|
|
87030
|
+
return import('./index-BTT4oTs5.js').then(m => m.wast());
|
|
87031
87031
|
}
|
|
87032
87032
|
}),
|
|
87033
87033
|
/*@__PURE__*/LanguageDescription.of({
|
|
@@ -87035,7 +87035,7 @@ const languages = [
|
|
|
87035
87035
|
alias: ["rss", "wsdl", "xsd"],
|
|
87036
87036
|
extensions: ["xml", "xsl", "xsd", "svg"],
|
|
87037
87037
|
load() {
|
|
87038
|
-
return import('./index-
|
|
87038
|
+
return import('./index-DyET9xdh.js').then(m => m.xml());
|
|
87039
87039
|
}
|
|
87040
87040
|
}),
|
|
87041
87041
|
/*@__PURE__*/LanguageDescription.of({
|
|
@@ -87043,7 +87043,7 @@ const languages = [
|
|
|
87043
87043
|
alias: ["yml"],
|
|
87044
87044
|
extensions: ["yaml", "yml"],
|
|
87045
87045
|
load() {
|
|
87046
|
-
return import('./index-
|
|
87046
|
+
return import('./index-DGb5vWhb.js').then(m => m.yaml());
|
|
87047
87047
|
}
|
|
87048
87048
|
}),
|
|
87049
87049
|
// Legacy modes ported from CodeMirror 5
|
|
@@ -87839,13 +87839,13 @@ const languages = [
|
|
|
87839
87839
|
name: "Vue",
|
|
87840
87840
|
extensions: ["vue"],
|
|
87841
87841
|
load() {
|
|
87842
|
-
return import('./index-
|
|
87842
|
+
return import('./index-CTU14EGn.js').then(m => m.vue());
|
|
87843
87843
|
}
|
|
87844
87844
|
}),
|
|
87845
87845
|
/*@__PURE__*/LanguageDescription.of({
|
|
87846
87846
|
name: "Angular Template",
|
|
87847
87847
|
load() {
|
|
87848
|
-
return import('./index-
|
|
87848
|
+
return import('./index-CYlHxiz2.js').then(m => m.angular());
|
|
87849
87849
|
}
|
|
87850
87850
|
})
|
|
87851
87851
|
];
|
|
@@ -166554,7 +166554,7 @@ function createRenderDelaySampler() {
|
|
|
166554
166554
|
};
|
|
166555
166555
|
}
|
|
166556
166556
|
|
|
166557
|
-
const ImagePanelComponent = /*#__PURE__*/React__default.lazy(async () => await import('./index-
|
|
166557
|
+
const ImagePanelComponent = /*#__PURE__*/React__default.lazy(async () => await import('./index-BlAepdJg.js'));
|
|
166558
166558
|
const ImagePanelBody = ({
|
|
166559
166559
|
topic,
|
|
166560
166560
|
frameRenderedEvent,
|
|
@@ -166649,7 +166649,7 @@ const DEFAULT_CAMERA_STATE = {
|
|
|
166649
166649
|
// License, v2.0. If a copy of the MPL was not distributed with this
|
|
166650
166650
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/
|
|
166651
166651
|
|
|
166652
|
-
const ThreeDeeRenderComponent = /*#__PURE__*/React__default.lazy(async () => await import('./index-
|
|
166652
|
+
const ThreeDeeRenderComponent = /*#__PURE__*/React__default.lazy(async () => await import('./index-BzLeaN56.js'));
|
|
166653
166653
|
const PointCloudPanelBody = ({
|
|
166654
166654
|
topic,
|
|
166655
166655
|
frameRenderedEvent,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a9 as ContextTracker, a1 as ExternalTokenizer, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, U as indentNodeProp, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, a0 as LanguageSupport, ai as parseMixed } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { a9 as ContextTracker, a1 as ExternalTokenizer, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, U as indentNodeProp, a7 as delimitedIndent, X as foldNodeProp, a8 as foldInside, a0 as LanguageSupport, ai as parseMixed } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { U as indentNodeProp, V as continuedIndent, X as foldNodeProp, Y as styleTags, Z as tags, $ as LRLanguage, a0 as LanguageSupport, a1 as ExternalTokenizer, a2 as LRParser, a3 as ifNotIn, a4 as completeFromList, a5 as syntaxTree } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { U as indentNodeProp, V as continuedIndent, X as foldNodeProp, Y as styleTags, Z as tags, $ as LRLanguage, a0 as LanguageSupport, a1 as ExternalTokenizer, a2 as LRParser, a3 as ifNotIn, a4 as completeFromList, a5 as syntaxTree } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a1 as ExternalTokenizer, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, U as indentNodeProp, V as continuedIndent, X as foldNodeProp, a8 as foldInside, a0 as LanguageSupport } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { a1 as ExternalTokenizer, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, U as indentNodeProp, V as continuedIndent, X as foldNodeProp, a8 as foldInside, a0 as LanguageSupport } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a9 as ContextTracker, a1 as ExternalTokenizer, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, U as indentNodeProp, X as foldNodeProp, aj as bracketMatchingHandle, a0 as LanguageSupport, af as EditorView, a5 as syntaxTree, ag as EditorSelection } from './index-
|
|
2
|
-
import './depth-
|
|
3
|
-
import './comlink-
|
|
1
|
+
import { a9 as ContextTracker, a1 as ExternalTokenizer, Y as styleTags, Z as tags, a2 as LRParser, $ as LRLanguage, U as indentNodeProp, X as foldNodeProp, aj as bracketMatchingHandle, a0 as LanguageSupport, af as EditorView, a5 as syntaxTree, ag as EditorSelection } from './index-CrukQeVA.js';
|
|
2
|
+
import './depth-CvvVVEb7.js';
|
|
3
|
+
import './comlink-CsH1ih07.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import 'zustand';
|
|
6
6
|
import 'react-mosaic-component';
|