@luxonis/visualizer-protobuf 2.40.0 → 2.41.0

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 (27) hide show
  1. package/dist/{WorkerImageDecoder.worker-C3ZBQ2Wk.js → WorkerImageDecoder.worker-B8iTthbG.js} +1 -1
  2. package/dist/{decodeImage-CxUhz2gE.js → decodeImage-DAWmFdMI.js} +56 -0
  3. package/dist/{index--iQfQ_BM.js → index-B2b_GPZ2.js} +1 -1
  4. package/dist/{index-xjxIYb7x.js → index-B6EgpzyA.js} +21 -21
  5. package/dist/{index-DIvlB71Y.js → index-B8xP44mB.js} +1 -1
  6. package/dist/{index-DMwj27wf.js → index-BAeQKqss.js} +1 -1
  7. package/dist/{index-DarWKW89.js → index-BXOCuOJk.js} +1 -1
  8. package/dist/{index-MXZP0RG4.js → index-BZE87PRS.js} +1 -1
  9. package/dist/{index-DCAb3slV.js → index-BiGZ-Ksk.js} +1 -1
  10. package/dist/{index-CphhTBOZ.js → index-BjWdog1R.js} +1 -1
  11. package/dist/{index-Zf_aqI9D.js → index-Bu7kRSnU.js} +1 -1
  12. package/dist/{index-CVcETMbV.js → index-C8UYJCs8.js} +1 -1
  13. package/dist/{index-BXw9XAtq.js → index-CRR7BXZp.js} +1 -1
  14. package/dist/{index-9Tyh0kLM.js → index-Cc6kXZzw.js} +1 -1
  15. package/dist/{index-BVjYgfIS.js → index-Cj86SpIZ.js} +1 -1
  16. package/dist/{index-B6HlbGsq.js → index-CnDs4xd7.js} +1 -1
  17. package/dist/{index-DGOR7UPX.js → index-D3Ra45oT.js} +1 -1
  18. package/dist/{index-BF8y50SS.js → index-DDZBM3Tu.js} +3 -3
  19. package/dist/{index-ok4WDE4X.js → index-DfYWSU12.js} +3 -3
  20. package/dist/{index-CGKMb8B_.js → index-pHF3cb4A.js} +1 -1
  21. package/dist/{index-DKBjhfFf.js → index-yae90EMj.js} +1 -1
  22. package/dist/index.js +1 -1
  23. package/dist/lib/src/output.css +15 -2
  24. package/dist/packages/studio-base/src/panels/ThreeDeeRender/renderables/Images/decodeImage.d.ts.map +1 -1
  25. package/dist/packages/studio-base/src/panels/ThreeDeeRender/renderables/Images/decodeImage.js +4 -1
  26. package/dist/packages/studio-base/src/panels/ThreeDeeRender/renderables/Images/decodeImage.js.map +1 -1
  27. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { d as decodeRawImage } from './decodeImage-CxUhz2gE.js';
1
+ import { d as decodeRawImage } from './decodeImage-DAWmFdMI.js';
2
2
  import './i18next-IYI3-Nuv.js';
3
3
  import './isArrayLikeObject-Bytw9p-q.js';
4
4
 
@@ -406,6 +406,59 @@ const decodeBayerRGGB8 = makeSpecializedDecodeBayer("r", "g0", "g1", "b");
406
406
  const decodeBayerBGGR8 = makeSpecializedDecodeBayer("b", "g0", "g1", "r");
407
407
  const decodeBayerGBRG8 = makeSpecializedDecodeBayer("g0", "b", "r", "g1");
408
408
  const decodeBayerGRBG8 = makeSpecializedDecodeBayer("g0", "r", "b", "g1");
409
+ function decodeYUV420p(yuvData, width, height, _step, output, _yStride,
410
+ // Optional Y plane stride
411
+ _uvStride,
412
+ // Optional UV plane stride
413
+ _uPlaneOffset,
414
+ // Optional offset where the U plane starts
415
+ _vPlaneOffset // Optional offset where the V plane starts
416
+ ) {
417
+ // Calculate strides and offsets if not provided
418
+ const yStride = width;
419
+ const uvStride = width >> 1; // UV planes are half the width
420
+
421
+ // Calculate plane offsets if not provided
422
+ const yPlaneSize = yStride * height;
423
+ const uPlaneOffset = yPlaneSize;
424
+ const uvPlaneSize = uvStride * (height >> 1); // UV planes are half the height
425
+ const vPlaneOffset = uPlaneOffset + uvPlaneSize;
426
+ for (let y = 0; y < height; y++) {
427
+ for (let x = 0; x < width; x++) {
428
+ // Get Y value
429
+ const yIndex = y * yStride + x;
430
+ const yValue = Number(yuvData[yIndex]) - 16;
431
+
432
+ // Calculate the corresponding position in the UV planes
433
+ const uvX = x >> 1;
434
+ const uvY = y >> 1;
435
+ const uIndex = uPlaneOffset + uvY * uvStride + uvX;
436
+ const vIndex = vPlaneOffset + uvY * uvStride + uvX;
437
+
438
+ // Get U and V values
439
+ const uValue = Number(yuvData[uIndex]) - 128;
440
+ const vValue = Number(yuvData[vIndex]) - 128;
441
+
442
+ // Convert YUV to RGB using the standard BT.601 conversion
443
+ // These are similar coefficients to those used in other decoders
444
+ let r = yValue + 1.402 * vValue;
445
+ let g = yValue - 0.344 * uValue - 0.714 * vValue;
446
+ let b = yValue + 1.772 * uValue;
447
+
448
+ // Clamp RGB values to [0, 255]
449
+ r = Math.min(Math.max(r, 0), 255);
450
+ g = Math.min(Math.max(g, 0), 255);
451
+ b = Math.min(Math.max(b, 0), 255);
452
+
453
+ // Write to output buffer (RGBA format)
454
+ const outIndex = (y * width + x) * 4;
455
+ output[outIndex] = r;
456
+ output[outIndex + 1] = g;
457
+ output[outIndex + 2] = b;
458
+ output[outIndex + 3] = 255; // Full opacity
459
+ }
460
+ }
461
+ }
409
462
 
410
463
  /**
411
464
  * @license
@@ -52861,6 +52914,9 @@ async function decodeRawImage(image, options, output) {
52861
52914
  case "yuyv":
52862
52915
  decodeYUYV(image.data, width, height, step, output);
52863
52916
  break;
52917
+ case "yuv420p":
52918
+ decodeYUV420p(image.data, width, height, step, output);
52919
+ break;
52864
52920
  case "rgb8":
52865
52921
  decodeRGB8(image.data, width, height, step, output);
52866
52922
  break;
@@ -1,4 +1,4 @@
1
- import { O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, M as continuedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport } from './index-xjxIYb7x.js';
1
+ import { O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, M as continuedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -26,7 +26,7 @@ import { defineGlobalStyles, defineTokens as defineTokens$1, defineKeyframes, de
26
26
 
27
27
  var e=[],t$1=[];function n$1(n,r){if(n&&"undefined"!=typeof document){var a,s=!0===r.prepend?"prepend":"append",d=!0===r.singleTag,i="string"==typeof r.container?document.querySelector(r.container):document.getElementsByTagName("head")[0];if(d){var u=e.indexOf(i);-1===u&&(u=e.push(i)-1,t$1[u]={}),a=t$1[u]&&t$1[u][s]?t$1[u][s]:t$1[u][s]=c();}else a=c();65279===n.charCodeAt(0)&&(n=n.substring(1)),a.styleSheet?a.styleSheet.cssText+=n:a.appendChild(document.createTextNode(n));}function c(){var e=document.createElement("style");if(e.setAttribute("type","text/css"),r.attributes)for(var t=Object.keys(r.attributes),n=0;n<t.length;n++)e.setAttribute(t[n],r.attributes[t[n]]);var a="prepend"===s?"afterbegin":"beforeend";return i.insertAdjacentElement(a,e),e}}
28
28
 
29
- var css$b = "/*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */\n@layer theme, base, components, utilities;\n@layer theme {\n :root, :host {\n --font-sans: ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\",\n \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\",\n \"Courier New\", monospace;\n --color-gray-700: oklch(0.373 0.034 259.733);\n --color-white: #fff;\n --spacing: 0.25rem;\n --font-weight-semibold: 600;\n --radius-lg: 0.5rem;\n --default-font-family: var(--font-sans);\n --default-mono-font-family: var(--font-mono);\n }\n}\n@layer base {\n *, ::after, ::before, ::backdrop, ::file-selector-button {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n border: 0 solid;\n }\n html, :host {\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n font-feature-settings: var(--default-font-feature-settings, normal);\n font-variation-settings: var(--default-font-variation-settings, normal);\n -webkit-tap-highlight-color: transparent;\n }\n hr {\n height: 0;\n color: inherit;\n border-top-width: 1px;\n }\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n h1, h2, h3, h4, h5, h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n b, strong {\n font-weight: bolder;\n }\n code, kbd, samp, pre {\n font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace);\n font-feature-settings: var(--default-mono-font-feature-settings, normal);\n font-variation-settings: var(--default-mono-font-variation-settings, normal);\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub, sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n table {\n text-indent: 0;\n border-color: inherit;\n border-collapse: collapse;\n }\n :-moz-focusring {\n outline: auto;\n }\n progress {\n vertical-align: baseline;\n }\n summary {\n display: list-item;\n }\n ol, ul, menu {\n list-style: none;\n }\n img, svg, video, canvas, audio, iframe, embed, object {\n display: block;\n vertical-align: middle;\n }\n img, video {\n max-width: 100%;\n height: auto;\n }\n button, input, select, optgroup, textarea, ::file-selector-button {\n font: inherit;\n font-feature-settings: inherit;\n font-variation-settings: inherit;\n letter-spacing: inherit;\n color: inherit;\n border-radius: 0;\n background-color: transparent;\n opacity: 1;\n }\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n ::placeholder {\n opacity: 1;\n }\n @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {\n ::placeholder {\n color: color-mix(in oklab, currentColor 50%, transparent);\n }\n }\n textarea {\n resize: vertical;\n }\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-date-and-time-value {\n min-height: 1lh;\n text-align: inherit;\n }\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n :-moz-ui-invalid {\n box-shadow: none;\n }\n button, input:where([type=\"button\"], [type=\"reset\"], [type=\"submit\"]), ::file-selector-button {\n appearance: button;\n }\n ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {\n height: auto;\n }\n [hidden]:where(:not([hidden=\"until-found\"])) {\n display: none !important;\n }\n}\n@layer utilities {\n .visible {\n visibility: visible;\n }\n .fixed {\n position: fixed;\n }\n .ml-auto {\n margin-left: auto;\n }\n .flex {\n display: flex;\n }\n .grow {\n flex-grow: 1;\n }\n .flex-col {\n flex-direction: column;\n }\n .items-start {\n align-items: flex-start;\n }\n .overflow-hidden {\n overflow: hidden;\n }\n .rounded {\n border-radius: 0.25rem;\n }\n .rounded-lg {\n border-radius: var(--radius-lg);\n }\n .border {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n .border-solid {\n --tw-border-style: solid;\n border-style: solid;\n }\n .border-\\[\\#d3d3d3d9\\] {\n border-color: #d3d3d3d9;\n }\n .bg-white {\n background-color: var(--color-white);\n }\n .px-4 {\n padding-inline: calc(var(--spacing) * 4);\n }\n .text-\\[14px\\]\\/\\[14px\\] {\n font-size: 14px;\n line-height: 14px;\n }\n .text-\\[20px\\]\\/\\[20px\\] {\n font-size: 20px;\n line-height: 20px;\n }\n .font-semibold {\n --tw-font-weight: var(--font-weight-semibold);\n font-weight: var(--font-weight-semibold);\n }\n .whitespace-nowrap {\n white-space: nowrap;\n }\n .text-gray-700 {\n color: var(--color-gray-700);\n }\n .outline {\n outline-style: var(--tw-outline-style);\n outline-width: 1px;\n }\n .xl\\:flex-row {\n @media (width >= 80rem) {\n flex-direction: row;\n }\n }\n .xl\\:items-end {\n @media (width >= 80rem) {\n align-items: flex-end;\n }\n }\n .xl\\:pb-\\[2px\\] {\n @media (width >= 80rem) {\n padding-bottom: 2px;\n }\n }\n}\n@property --tw-border-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-font-weight {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-outline-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n";
29
+ var css$b = "/*! tailwindcss v4.1.7 | MIT License | https://tailwindcss.com */\n@layer properties;\n@layer theme, base, components, utilities;\n@layer theme {\n :root, :host {\n --font-sans: ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\",\n \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\",\n \"Courier New\", monospace;\n --color-gray-700: oklch(0.373 0.034 259.733);\n --color-white: #fff;\n --spacing: 0.25rem;\n --font-weight-semibold: 600;\n --radius-lg: 0.5rem;\n --default-font-family: var(--font-sans);\n --default-mono-font-family: var(--font-mono);\n }\n}\n@layer base {\n *, ::after, ::before, ::backdrop, ::file-selector-button {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n border: 0 solid;\n }\n html, :host {\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n font-feature-settings: var(--default-font-feature-settings, normal);\n font-variation-settings: var(--default-font-variation-settings, normal);\n -webkit-tap-highlight-color: transparent;\n }\n hr {\n height: 0;\n color: inherit;\n border-top-width: 1px;\n }\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n h1, h2, h3, h4, h5, h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n b, strong {\n font-weight: bolder;\n }\n code, kbd, samp, pre {\n font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace);\n font-feature-settings: var(--default-mono-font-feature-settings, normal);\n font-variation-settings: var(--default-mono-font-variation-settings, normal);\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub, sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n table {\n text-indent: 0;\n border-color: inherit;\n border-collapse: collapse;\n }\n :-moz-focusring {\n outline: auto;\n }\n progress {\n vertical-align: baseline;\n }\n summary {\n display: list-item;\n }\n ol, ul, menu {\n list-style: none;\n }\n img, svg, video, canvas, audio, iframe, embed, object {\n display: block;\n vertical-align: middle;\n }\n img, video {\n max-width: 100%;\n height: auto;\n }\n button, input, select, optgroup, textarea, ::file-selector-button {\n font: inherit;\n font-feature-settings: inherit;\n font-variation-settings: inherit;\n letter-spacing: inherit;\n color: inherit;\n border-radius: 0;\n background-color: transparent;\n opacity: 1;\n }\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n ::placeholder {\n opacity: 1;\n }\n @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {\n ::placeholder {\n color: currentColor;\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, currentColor 50%, transparent);\n }\n }\n }\n textarea {\n resize: vertical;\n }\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-date-and-time-value {\n min-height: 1lh;\n text-align: inherit;\n }\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n :-moz-ui-invalid {\n box-shadow: none;\n }\n button, input:where([type=\"button\"], [type=\"reset\"], [type=\"submit\"]), ::file-selector-button {\n appearance: button;\n }\n ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {\n height: auto;\n }\n [hidden]:where(:not([hidden=\"until-found\"])) {\n display: none !important;\n }\n}\n@layer utilities {\n .visible {\n visibility: visible;\n }\n .fixed {\n position: fixed;\n }\n .ml-auto {\n margin-left: auto;\n }\n .flex {\n display: flex;\n }\n .grow {\n flex-grow: 1;\n }\n .flex-col {\n flex-direction: column;\n }\n .items-start {\n align-items: flex-start;\n }\n .overflow-hidden {\n overflow: hidden;\n }\n .rounded {\n border-radius: 0.25rem;\n }\n .rounded-lg {\n border-radius: var(--radius-lg);\n }\n .border {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n .border-solid {\n --tw-border-style: solid;\n border-style: solid;\n }\n .border-\\[\\#d3d3d3d9\\] {\n border-color: #d3d3d3d9;\n }\n .bg-white {\n background-color: var(--color-white);\n }\n .px-4 {\n padding-inline: calc(var(--spacing) * 4);\n }\n .text-\\[14px\\]\\/\\[14px\\] {\n font-size: 14px;\n line-height: 14px;\n }\n .text-\\[20px\\]\\/\\[20px\\] {\n font-size: 20px;\n line-height: 20px;\n }\n .font-semibold {\n --tw-font-weight: var(--font-weight-semibold);\n font-weight: var(--font-weight-semibold);\n }\n .whitespace-nowrap {\n white-space: nowrap;\n }\n .text-gray-700 {\n color: var(--color-gray-700);\n }\n .outline {\n outline-style: var(--tw-outline-style);\n outline-width: 1px;\n }\n .xl\\:flex-row {\n @media (width >= 80rem) {\n flex-direction: row;\n }\n }\n .xl\\:items-end {\n @media (width >= 80rem) {\n align-items: flex-end;\n }\n }\n .xl\\:pb-\\[2px\\] {\n @media (width >= 80rem) {\n padding-bottom: 2px;\n }\n }\n}\n@property --tw-border-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-font-weight {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-outline-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@layer properties {\n @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {\n *, ::before, ::after, ::backdrop {\n --tw-border-style: solid;\n --tw-font-weight: initial;\n --tw-outline-style: solid;\n }\n }\n}\n";
30
30
  n$1(css$b,{});
31
31
 
32
32
  // This Source Code Form is subject to the terms of the Mozilla Public
@@ -86604,7 +86604,7 @@ function legacy(parser) {
86604
86604
  return new LanguageSupport(StreamLanguage.define(parser));
86605
86605
  }
86606
86606
  function sql$1(dialectName) {
86607
- return import('./index-MXZP0RG4.js').then(m => m.sql({ dialect: m[dialectName] }));
86607
+ return import('./index-BZE87PRS.js').then(m => m.sql({ dialect: m[dialectName] }));
86608
86608
  }
86609
86609
  /**
86610
86610
  An array of language descriptions for known language packages.
@@ -86615,7 +86615,7 @@ const languages = [
86615
86615
  name: "C",
86616
86616
  extensions: ["c", "h", "ino"],
86617
86617
  load() {
86618
- return import('./index-DCAb3slV.js').then(m => m.cpp());
86618
+ return import('./index-BiGZ-Ksk.js').then(m => m.cpp());
86619
86619
  }
86620
86620
  }),
86621
86621
  /*@__PURE__*/LanguageDescription.of({
@@ -86623,7 +86623,7 @@ const languages = [
86623
86623
  alias: ["cpp"],
86624
86624
  extensions: ["cpp", "c++", "cc", "cxx", "hpp", "h++", "hh", "hxx"],
86625
86625
  load() {
86626
- return import('./index-DCAb3slV.js').then(m => m.cpp());
86626
+ return import('./index-BiGZ-Ksk.js').then(m => m.cpp());
86627
86627
  }
86628
86628
  }),
86629
86629
  /*@__PURE__*/LanguageDescription.of({
@@ -86643,7 +86643,7 @@ const languages = [
86643
86643
  name: "Go",
86644
86644
  extensions: ["go"],
86645
86645
  load() {
86646
- return import('./index-CGKMb8B_.js').then(m => m.go());
86646
+ return import('./index-pHF3cb4A.js').then(m => m.go());
86647
86647
  }
86648
86648
  }),
86649
86649
  /*@__PURE__*/LanguageDescription.of({
@@ -86658,7 +86658,7 @@ const languages = [
86658
86658
  name: "Java",
86659
86659
  extensions: ["java"],
86660
86660
  load() {
86661
- return import('./index-B6HlbGsq.js').then(m => m.java());
86661
+ return import('./index-CnDs4xd7.js').then(m => m.java());
86662
86662
  }
86663
86663
  }),
86664
86664
  /*@__PURE__*/LanguageDescription.of({
@@ -86674,7 +86674,7 @@ const languages = [
86674
86674
  alias: ["json5"],
86675
86675
  extensions: ["json", "map"],
86676
86676
  load() {
86677
- return import('./index--iQfQ_BM.js').then(m => m.json());
86677
+ return import('./index-B2b_GPZ2.js').then(m => m.json());
86678
86678
  }
86679
86679
  }),
86680
86680
  /*@__PURE__*/LanguageDescription.of({
@@ -86688,14 +86688,14 @@ const languages = [
86688
86688
  name: "LESS",
86689
86689
  extensions: ["less"],
86690
86690
  load() {
86691
- return import('./index-DMwj27wf.js').then(m => m.less());
86691
+ return import('./index-BAeQKqss.js').then(m => m.less());
86692
86692
  }
86693
86693
  }),
86694
86694
  /*@__PURE__*/LanguageDescription.of({
86695
86695
  name: "Liquid",
86696
86696
  extensions: ["liquid"],
86697
86697
  load() {
86698
- return import('./index-CVcETMbV.js').then(m => m.liquid());
86698
+ return import('./index-C8UYJCs8.js').then(m => m.liquid());
86699
86699
  }
86700
86700
  }),
86701
86701
  /*@__PURE__*/LanguageDescription.of({
@@ -86721,7 +86721,7 @@ const languages = [
86721
86721
  name: "PHP",
86722
86722
  extensions: ["php", "php3", "php4", "php5", "php7", "phtml"],
86723
86723
  load() {
86724
- return import('./index-DGOR7UPX.js').then(m => m.php());
86724
+ return import('./index-D3Ra45oT.js').then(m => m.php());
86725
86725
  }
86726
86726
  }),
86727
86727
  /*@__PURE__*/LanguageDescription.of({
@@ -86738,28 +86738,28 @@ const languages = [
86738
86738
  extensions: ["BUILD", "bzl", "py", "pyw"],
86739
86739
  filename: /^(BUCK|BUILD)$/,
86740
86740
  load() {
86741
- return import('./index-9Tyh0kLM.js').then(m => m.python());
86741
+ return import('./index-Cc6kXZzw.js').then(m => m.python());
86742
86742
  }
86743
86743
  }),
86744
86744
  /*@__PURE__*/LanguageDescription.of({
86745
86745
  name: "Rust",
86746
86746
  extensions: ["rs"],
86747
86747
  load() {
86748
- return import('./index-DarWKW89.js').then(m => m.rust());
86748
+ return import('./index-BXOCuOJk.js').then(m => m.rust());
86749
86749
  }
86750
86750
  }),
86751
86751
  /*@__PURE__*/LanguageDescription.of({
86752
86752
  name: "Sass",
86753
86753
  extensions: ["sass"],
86754
86754
  load() {
86755
- return import('./index-BXw9XAtq.js').then(m => m.sass({ indented: true }));
86755
+ return import('./index-CRR7BXZp.js').then(m => m.sass({ indented: true }));
86756
86756
  }
86757
86757
  }),
86758
86758
  /*@__PURE__*/LanguageDescription.of({
86759
86759
  name: "SCSS",
86760
86760
  extensions: ["scss"],
86761
86761
  load() {
86762
- return import('./index-BXw9XAtq.js').then(m => m.sass());
86762
+ return import('./index-CRR7BXZp.js').then(m => m.sass());
86763
86763
  }
86764
86764
  }),
86765
86765
  /*@__PURE__*/LanguageDescription.of({
@@ -86790,7 +86790,7 @@ const languages = [
86790
86790
  name: "WebAssembly",
86791
86791
  extensions: ["wat", "wast"],
86792
86792
  load() {
86793
- return import('./index-Zf_aqI9D.js').then(m => m.wast());
86793
+ return import('./index-Bu7kRSnU.js').then(m => m.wast());
86794
86794
  }
86795
86795
  }),
86796
86796
  /*@__PURE__*/LanguageDescription.of({
@@ -86798,7 +86798,7 @@ const languages = [
86798
86798
  alias: ["rss", "wsdl", "xsd"],
86799
86799
  extensions: ["xml", "xsl", "xsd", "svg"],
86800
86800
  load() {
86801
- return import('./index-DIvlB71Y.js').then(m => m.xml());
86801
+ return import('./index-B8xP44mB.js').then(m => m.xml());
86802
86802
  }
86803
86803
  }),
86804
86804
  /*@__PURE__*/LanguageDescription.of({
@@ -86806,7 +86806,7 @@ const languages = [
86806
86806
  alias: ["yml"],
86807
86807
  extensions: ["yaml", "yml"],
86808
86808
  load() {
86809
- return import('./index-DKBjhfFf.js').then(m => m.yaml());
86809
+ return import('./index-yae90EMj.js').then(m => m.yaml());
86810
86810
  }
86811
86811
  }),
86812
86812
  // Legacy modes ported from CodeMirror 5
@@ -87602,13 +87602,13 @@ const languages = [
87602
87602
  name: "Vue",
87603
87603
  extensions: ["vue"],
87604
87604
  load() {
87605
- return import('./index-BVjYgfIS.js').then(m => m.vue());
87605
+ return import('./index-Cj86SpIZ.js').then(m => m.vue());
87606
87606
  }
87607
87607
  }),
87608
87608
  /*@__PURE__*/LanguageDescription.of({
87609
87609
  name: "Angular Template",
87610
87610
  load() {
87611
- return import('./index-CphhTBOZ.js').then(m => m.angular());
87611
+ return import('./index-BjWdog1R.js').then(m => m.angular());
87612
87612
  }
87613
87613
  })
87614
87614
  ];
@@ -166182,7 +166182,7 @@ function createRenderDelaySampler() {
166182
166182
  };
166183
166183
  }
166184
166184
 
166185
- const ImagePanelComponent = /*#__PURE__*/React__default.lazy(async () => await import('./index-ok4WDE4X.js'));
166185
+ const ImagePanelComponent = /*#__PURE__*/React__default.lazy(async () => await import('./index-DfYWSU12.js'));
166186
166186
  const ImagePanelBody = ({
166187
166187
  topic,
166188
166188
  frameRenderedEvent,
@@ -166281,7 +166281,7 @@ const DEFAULT_CAMERA_STATE = {
166281
166281
  // License, v2.0. If a copy of the MPL was not distributed with this
166282
166282
  // file, You can obtain one at http://mozilla.org/MPL/2.0/
166283
166283
 
166284
- const ThreeDeeRenderComponent = /*#__PURE__*/React__default.lazy(async () => await import('./index-BF8y50SS.js'));
166284
+ const ThreeDeeRenderComponent = /*#__PURE__*/React__default.lazy(async () => await import('./index-DDZBM3Tu.js'));
166285
166285
  const PointCloudPanelBody = ({
166286
166286
  topic,
166287
166287
  frameRenderedEvent
@@ -1,4 +1,4 @@
1
- import { a3 as ContextTracker, V as ExternalTokenizer, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, N as foldNodeProp, ad as bracketMatchingHandle, U as LanguageSupport, a9 as EditorView, $ as syntaxTree, aa as EditorSelection } from './index-xjxIYb7x.js';
1
+ import { a3 as ContextTracker, V as ExternalTokenizer, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, N as foldNodeProp, ad as bracketMatchingHandle, U as LanguageSupport, a9 as EditorView, $ as syntaxTree, aa as EditorSelection } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { O as styleTags, Q as tags, T as LRLanguage, K as indentNodeProp, M as continuedIndent, N as foldNodeProp, a2 as foldInside, a8 as defineCSSCompletionSource, U as LanguageSupport, X as LRParser, V as ExternalTokenizer } from './index-xjxIYb7x.js';
1
+ import { O as styleTags, Q as tags, T as LRLanguage, K as indentNodeProp, M as continuedIndent, N as foldNodeProp, a2 as foldInside, a8 as defineCSSCompletionSource, U as LanguageSupport, X as LRParser, V as ExternalTokenizer } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { V as ExternalTokenizer, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, M as continuedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport } from './index-xjxIYb7x.js';
1
+ import { V as ExternalTokenizer, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, M as continuedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { K as indentNodeProp, M as continuedIndent, N as foldNodeProp, O as styleTags, Q as tags, T as LRLanguage, U as LanguageSupport, V as ExternalTokenizer, X as LRParser, Y as ifNotIn, Z as completeFromList, $ as syntaxTree } from './index-xjxIYb7x.js';
1
+ import { K as indentNodeProp, M as continuedIndent, N as foldNodeProp, O as styleTags, Q as tags, T as LRLanguage, U as LanguageSupport, V as ExternalTokenizer, X as LRParser, Y as ifNotIn, Z as completeFromList, $ as syntaxTree } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { V as ExternalTokenizer, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, M as continuedIndent, a0 as flatIndent, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport } from './index-xjxIYb7x.js';
1
+ import { V as ExternalTokenizer, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, M as continuedIndent, a0 as flatIndent, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { O as styleTags, Q as tags, ae as javascriptLanguage, T as LRLanguage, U as LanguageSupport, X as LRParser, ab as html, ac as parseMixed, V as ExternalTokenizer } from './index-xjxIYb7x.js';
1
+ import { O as styleTags, Q as tags, ae as javascriptLanguage, T as LRLanguage, U as LanguageSupport, X as LRParser, ab as html, ac as parseMixed, V as ExternalTokenizer } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { T as LRLanguage, K as indentNodeProp, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, O as styleTags, Q as tags, U as LanguageSupport, X as LRParser } from './index-xjxIYb7x.js';
1
+ import { T as LRLanguage, K as indentNodeProp, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, O as styleTags, Q as tags, U as LanguageSupport, X as LRParser } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { a9 as EditorView, aa as EditorSelection, T as LRLanguage, O as styleTags, Q as tags, K as indentNodeProp, a1 as delimitedIndent, N as foldNodeProp, U as LanguageSupport, X as LRParser, $ as syntaxTree, ab as html, ac as parseMixed, V as ExternalTokenizer } from './index-xjxIYb7x.js';
1
+ import { a9 as EditorView, aa as EditorSelection, T as LRLanguage, O as styleTags, Q as tags, K as indentNodeProp, a1 as delimitedIndent, N as foldNodeProp, U as LanguageSupport, X as LRParser, $ as syntaxTree, ab as html, ac as parseMixed, V as ExternalTokenizer } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { V as ExternalTokenizer, a3 as ContextTracker, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, N as foldNodeProp, a2 as foldInside, K as indentNodeProp, M as continuedIndent, a8 as defineCSSCompletionSource, U as LanguageSupport } from './index-xjxIYb7x.js';
1
+ import { V as ExternalTokenizer, a3 as ContextTracker, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, N as foldNodeProp, a2 as foldInside, K as indentNodeProp, M as continuedIndent, a8 as defineCSSCompletionSource, U as LanguageSupport } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { V as ExternalTokenizer, a3 as ContextTracker, O as styleTags, Q as tags, X as LRParser, $ as syntaxTree, Y as ifNotIn, T as LRLanguage, K as indentNodeProp, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport, a6 as IterMode, Z as completeFromList, a7 as NodeWeakMap, a5 as snippetCompletion } from './index-xjxIYb7x.js';
1
+ import { V as ExternalTokenizer, a3 as ContextTracker, O as styleTags, Q as tags, X as LRParser, $ as syntaxTree, Y as ifNotIn, T as LRLanguage, K as indentNodeProp, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport, a6 as IterMode, Z as completeFromList, a7 as NodeWeakMap, a5 as snippetCompletion } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { O as styleTags, Q as tags, T as LRLanguage, U as LanguageSupport, X as LRParser, a4 as LocalTokenGroup, ab as html, ac as parseMixed, ae as javascriptLanguage } from './index-xjxIYb7x.js';
1
+ import { O as styleTags, Q as tags, T as LRLanguage, U as LanguageSupport, X as LRParser, a4 as LocalTokenGroup, ab as html, ac as parseMixed, ae as javascriptLanguage } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, M as continuedIndent, a0 as flatIndent, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport } from './index-xjxIYb7x.js';
1
+ import { O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, M as continuedIndent, a0 as flatIndent, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { V as ExternalTokenizer, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, M as continuedIndent, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, ab as html, U as LanguageSupport, ac as parseMixed } from './index-xjxIYb7x.js';
1
+ import { V as ExternalTokenizer, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, M as continuedIndent, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, ab as html, U as LanguageSupport, ac as parseMixed } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -3,7 +3,7 @@ import React__default, { useReducer, useRef, useCallback, useLayoutEffect, Compo
3
3
  import ReactDOM__default from 'react-dom';
4
4
  import { S as isSymbol, U as toString, V as keys, W as getSymbols$1, X as stubArray, Y as arrayPush, Z as baseGetAllKeys, g as getTag, $ as getAllKeys, k as baseGet, c as baseIteratee, j as castPath, t as toKey, a0 as arrayMap$1, a1 as baseUniq, b as baseFlatten, a2 as useMustNotChange, a3 as useCurrentLayoutActions, a4 as useCurrentLayoutSelector, r as reportError, A as AppError, L as Logger, u as useGuaranteedContext, a5 as usePanelMosaicId, a6 as useSelectedPanels, a7 as PANEL_TITLE_CONFIG_KEY, a8 as noop$4, o as getPanelTypeFromId, M as useShallowMemo, T as TAB_PANEL_TYPE, J as filterMap, d as dist$2, a9 as useAppConfiguration, aa as useValueChangedDebugLog, ab as useJsonTreeTheme } from './tslib.es6-C73eoP_E.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 } from './index-xjxIYb7x.js';
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 } from './index-B6EgpzyA.js';
7
7
  import { MosaicDragType, MosaicContext, MosaicWindowContext, getOtherBranch, getNodeAtPath } from 'react-mosaic-component';
8
8
  import { t as typescript } from './useMessageReducer-jNx5e6JW.js';
9
9
  import { g as getDefaultExportFromCjs, c as commonjsGlobal, a as getAugmentedNamespace } from './_commonjsHelpers-E-ZsRS8r.js';
@@ -17,7 +17,7 @@ import MoreVertIcon from '@mui/icons-material/MoreVert';
17
17
  import CancelIcon from '@mui/icons-material/Cancel';
18
18
  import SearchIcon from '@mui/icons-material/Search';
19
19
  import { useDrag, useDrop } from 'react-dnd';
20
- 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-CxUhz2gE.js';
20
+ 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';
21
21
  import { CacheProvider } from '@emotion/react';
22
22
  import '@mui/material/styles/createTypography';
23
23
  import { E as EventEmitter } from './FoxgloveServer-C39Uooyk.js';
@@ -31481,7 +31481,7 @@ class WorkerImageDecoder {
31481
31481
  //#reusableBuffer: SharedArrayBuffer | null = null;
31482
31482
 
31483
31483
  constructor() {
31484
- this.#worker = new Worker(new URL("WorkerImageDecoder.worker-C3ZBQ2Wk.js", import.meta.url), {
31484
+ this.#worker = new Worker(new URL("WorkerImageDecoder.worker-B8iTthbG.js", import.meta.url), {
31485
31485
  type: "module"
31486
31486
  });
31487
31487
  }
@@ -1,4 +1,4 @@
1
- import { ImagePanel } from './index-BF8y50SS.js';
1
+ import { ImagePanel } from './index-DDZBM3Tu.js';
2
2
  import 'react';
3
3
  import 'react-dom';
4
4
  import './tslib.es6-C73eoP_E.js';
@@ -7,7 +7,7 @@ import './_commonjsHelpers-E-ZsRS8r.js';
7
7
  import '@mui/material';
8
8
  import './isArrayLikeObject-Bytw9p-q.js';
9
9
  import 'zustand';
10
- import './index-xjxIYb7x.js';
10
+ import './index-B6EgpzyA.js';
11
11
  import './comlink-DHMAu6X7.js';
12
12
  import './utils-Hzt3wxhG.js';
13
13
  import './FoxgloveServer-C39Uooyk.js';
@@ -31,7 +31,7 @@ import '@mui/icons-material/ChevronRight';
31
31
  import '@mui/icons-material/MoreVert';
32
32
  import '@mui/icons-material/Cancel';
33
33
  import '@mui/icons-material/Search';
34
- import './decodeImage-CxUhz2gE.js';
34
+ import './decodeImage-DAWmFdMI.js';
35
35
  import '@mui/material/styles/createTypography';
36
36
  import 'color';
37
37
  import 'lodash.curry';
@@ -1,4 +1,4 @@
1
- import { V as ExternalTokenizer, a3 as ContextTracker, O as styleTags, Q as tags, X as LRParser, a4 as LocalTokenGroup, a5 as snippetCompletion, $ as syntaxTree, T as LRLanguage, K as indentNodeProp, M as continuedIndent, a0 as flatIndent, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport, Y as ifNotIn, Z as completeFromList, a6 as IterMode, a7 as NodeWeakMap } from './index-xjxIYb7x.js';
1
+ import { V as ExternalTokenizer, a3 as ContextTracker, O as styleTags, Q as tags, X as LRParser, a4 as LocalTokenGroup, a5 as snippetCompletion, $ as syntaxTree, T as LRLanguage, K as indentNodeProp, M as continuedIndent, a0 as flatIndent, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport, Y as ifNotIn, Z as completeFromList, a6 as IterMode, a7 as NodeWeakMap } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,4 @@
1
- import { a3 as ContextTracker, V as ExternalTokenizer, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport, ac as parseMixed } from './index-xjxIYb7x.js';
1
+ import { a3 as ContextTracker, V as ExternalTokenizer, O as styleTags, Q as tags, X as LRParser, T as LRLanguage, K as indentNodeProp, a1 as delimitedIndent, N as foldNodeProp, a2 as foldInside, U as LanguageSupport, ac as parseMixed } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export { ak as EventMetricsManager, ai as ImagePanel, ah as PanelLayout, aj as PointCloudPanel, al as ThroughputMetricsManager, af as VisualizerConnection, ag as VisualizerContext } from './index-xjxIYb7x.js';
1
+ export { ak as EventMetricsManager, ai as ImagePanel, ah as PanelLayout, aj as PointCloudPanel, al as ThroughputMetricsManager, af as VisualizerConnection, ag as VisualizerContext } from './index-B6EgpzyA.js';
2
2
  import './tslib.es6-C73eoP_E.js';
3
3
  import 'react';
4
4
  import 'react-mosaic-component';
@@ -1,4 +1,5 @@
1
- /*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.7 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
2
3
  @layer theme, base, components, utilities;
3
4
  @layer theme {
4
5
  :root, :host {
@@ -122,7 +123,10 @@
122
123
  }
123
124
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
124
125
  ::placeholder {
125
- color: color-mix(in oklab, currentColor 50%, transparent);
126
+ color: currentColor;
127
+ @supports (color: color-mix(in lab, red, red)) {
128
+ color: color-mix(in oklab, currentColor 50%, transparent);
129
+ }
126
130
  }
127
131
  }
128
132
  textarea {
@@ -257,3 +261,12 @@
257
261
  inherits: false;
258
262
  initial-value: solid;
259
263
  }
264
+ @layer properties {
265
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
266
+ *, ::before, ::after, ::backdrop {
267
+ --tw-border-style: solid;
268
+ --tw-font-weight: initial;
269
+ --tw-outline-style: solid;
270
+ }
271
+ }
272
+ }
@@ -1 +1 @@
1
- {"version":3,"file":"decodeImage.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/studio-base/src/panels/ThreeDeeRender/renderables/Images/decodeImage.ts"],"names":[],"mappings":"AAyBA,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAE7C,OAAO,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,KAAK,IAAI,QAAQ,EAAE,MAAM,WAAW,CAAC;AAC9C,OAAO,EAAE,iBAAiB,EAAqB,MAAM,cAAc,CAAC;AAGpE,wBAAsB,6BAA6B,CACjD,KAAK,EAAE,oBAAoB,EAC3B,WAAW,CAAC,EAAE,MAAM,GACnB,OAAO,CAAC,WAAW,CAAC,CAGtB;AAED,eAAO,MAAM,iCAAiC,EAAE,QAAQ,CACtD,IAAI,CAAC,iBAAiB,EAAE,YAAY,GAAG,UAAU,GAAG,UAAU,CAAC,CAOhE,CAAC;AAGF,MAAM,MAAM,eAAe,GAAG,iBAAiB,CAAC;AAEhD,MAAM,MAAM,gBAAgB,GAAG,QAAQ,GAAG;IACxC,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B,CAAC;AAEF;;;GAGG;AACH,wBAAsB,cAAc,CAClC,KAAK,EAAE,QAAQ,GAAG,QAAQ,GAAG,gBAAgB,EAC7C,OAAO,EAAE,OAAO,CAAC,eAAe,CAAC,EACjC,MAAM,EAAE,iBAAiB,GACxB,OAAO,CAAC,IAAI,CAAC,CAoGf"}
1
+ {"version":3,"file":"decodeImage.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/studio-base/src/panels/ThreeDeeRender/renderables/Images/decodeImage.ts"],"names":[],"mappings":"AA0BA,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAE7C,OAAO,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,KAAK,IAAI,QAAQ,EAAE,MAAM,WAAW,CAAC;AAC9C,OAAO,EAAE,iBAAiB,EAAqB,MAAM,cAAc,CAAC;AAGpE,wBAAsB,6BAA6B,CACjD,KAAK,EAAE,oBAAoB,EAC3B,WAAW,CAAC,EAAE,MAAM,GACnB,OAAO,CAAC,WAAW,CAAC,CAGtB;AAED,eAAO,MAAM,iCAAiC,EAAE,QAAQ,CACtD,IAAI,CAAC,iBAAiB,EAAE,YAAY,GAAG,UAAU,GAAG,UAAU,CAAC,CAOhE,CAAC;AAGF,MAAM,MAAM,eAAe,GAAG,iBAAiB,CAAC;AAEhD,MAAM,MAAM,gBAAgB,GAAG,QAAQ,GAAG;IACxC,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B,CAAC;AAEF;;;GAGG;AACH,wBAAsB,cAAc,CAClC,KAAK,EAAE,QAAQ,GAAG,QAAQ,GAAG,gBAAgB,EAC7C,OAAO,EAAE,OAAO,CAAC,eAAe,CAAC,EACjC,MAAM,EAAE,iBAAiB,GACxB,OAAO,CAAC,IAAI,CAAC,CAuGf"}
@@ -2,7 +2,7 @@
2
2
  // License, v2.0. If a copy of the MPL was not distributed with this
3
3
  // file, You can obtain one at http://mozilla.org/MPL/2.0/
4
4
  import * as _ from "lodash-es";
5
- import { decodeBGR8p, decodeBGRA8, decodeBayerBGGR8, decodeBayerGBRG8, decodeBayerGRBG8, decodeI420, decodeBayerRGGB8, decodeFloat1c, decodeMono16, decodeMono8, decodeRGB8, decodeRGB8p, decodeRGBA8, decodeUYVY, decodeYUYV, decodeNV12, decodeBGR8i } from "@foxglove/den/image";
5
+ import { decodeBGR8p, decodeBGRA8, decodeBayerBGGR8, decodeBayerGBRG8, decodeBayerGRBG8, decodeI420, decodeBayerRGGB8, decodeFloat1c, decodeMono16, decodeMono8, decodeRGB8, decodeRGB8p, decodeRGBA8, decodeUYVY, decodeYUYV, decodeNV12, decodeBGR8i, decodeYUV420p, } from "@foxglove/den/image";
6
6
  import { getColorConverter } from "../colorMode";
7
7
  export async function decodeCompressedImageToBitmap(image, resizeWidth) {
8
8
  const bitmapData = new Blob([image.data], { type: `image/${image.format}` });
@@ -36,6 +36,9 @@ export async function decodeRawImage(image, options, output) {
36
36
  case "yuyv":
37
37
  decodeYUYV(image.data, width, height, step, output);
38
38
  break;
39
+ case "yuv420p":
40
+ decodeYUV420p(image.data, width, height, step, output);
41
+ break;
39
42
  case "rgb8":
40
43
  decodeRGB8(image.data, width, height, step, output);
41
44
  break;
@@ -1 +1 @@
1
- {"version":3,"file":"decodeImage.js","sourceRoot":"","sources":["../../../../../../../../../packages/studio-base/src/panels/ThreeDeeRender/renderables/Images/decodeImage.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"decodeImage.js","sourceRoot":"","sources":["../../../../../../../../../packages/studio-base/src/panels/ThreeDeeRender/renderables/Images/decodeImage.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxonis/visualizer-protobuf",
3
- "version": "2.40.0",
3
+ "version": "2.41.0",
4
4
  "type": "module",
5
5
  "description": "RobotHub Visualizer Library",
6
6
  "author": "Luxonis Corp",