@foxglove/extension 2.42.0 → 2.43.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.
- package/package.json +1 -1
- package/src/stable.ts +4 -4
package/package.json
CHANGED
package/src/stable.ts
CHANGED
|
@@ -383,7 +383,7 @@ export type PanelExtensionContext = {
|
|
|
383
383
|
* Identifies the semantics of the data being played back, such as which topics or parameters
|
|
384
384
|
* are semantically meaningful or normalization conventions to use. This typically maps to a
|
|
385
385
|
* shorthand identifier for a robotics framework such as "ros1", "ros2", or "ulog". See the MCAP
|
|
386
|
-
* profiles concept at <https://
|
|
386
|
+
* profiles concept at <https://mcap.dev/spec/registry#profiles>.
|
|
387
387
|
*/
|
|
388
388
|
readonly dataSourceProfile?: string;
|
|
389
389
|
|
|
@@ -465,7 +465,7 @@ export type PanelExtensionContext = {
|
|
|
465
465
|
* const variableValues = renderState.variables;
|
|
466
466
|
* const myVarValue = variableValues.myVar;
|
|
467
467
|
*
|
|
468
|
-
* // Call done when you've rendered all the UI for this renderState. If your UI framework delays rendering, call done when rendering has
|
|
468
|
+
* // Call done when you've rendered all the UI for this renderState. If your UI framework delays rendering, call done when rendering has actually happened.
|
|
469
469
|
* done();
|
|
470
470
|
* };
|
|
471
471
|
* ```
|
|
@@ -556,7 +556,7 @@ export type PanelExtensionContext = {
|
|
|
556
556
|
/**
|
|
557
557
|
* Unsubscribe from all topics.
|
|
558
558
|
*
|
|
559
|
-
* Note: This is
|
|
559
|
+
* Note: This is analogous to calling `subscribe([])` with an empty array of topics.
|
|
560
560
|
*/
|
|
561
561
|
unsubscribeAll(): void;
|
|
562
562
|
|
|
@@ -1586,7 +1586,7 @@ export type SettingsTreeNode = {
|
|
|
1586
1586
|
|
|
1587
1587
|
/**
|
|
1588
1588
|
* An optional visibility status. If this is not undefined, the node
|
|
1589
|
-
* editor will display a
|
|
1589
|
+
* editor will display a visibility toggle button and send update actions
|
|
1590
1590
|
* to the action handler.
|
|
1591
1591
|
**/
|
|
1592
1592
|
visible?: boolean;
|