@foxglove/extension 2.44.0 → 2.45.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 +3 -3
- package/src/experimental.ts +1 -1
- package/src/stable.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@foxglove/extension",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.45.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Foxglove Technologies",
|
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@foxglove/tsconfig": "3.1.0",
|
|
19
|
-
"typescript": "5.9.
|
|
19
|
+
"typescript": "5.9.3"
|
|
20
20
|
}
|
|
21
|
-
}
|
|
21
|
+
}
|
package/src/experimental.ts
CHANGED
|
@@ -291,7 +291,7 @@ export namespace Experimental {
|
|
|
291
291
|
/** Queue of messages to be handled since last frame. Will be reassigned to new empty array each frame. */
|
|
292
292
|
queue?: MessageEvent<T>[] | undefined;
|
|
293
293
|
/** Optional callback to be called on `queue` to filter. Returns new queue. */
|
|
294
|
-
filterQueue?: (queue: MessageEvent<T
|
|
294
|
+
filterQueue?: (queue: ReadonlyArray<MessageEvent<T>>) => ReadonlyArray<MessageEvent<T>>;
|
|
295
295
|
};
|
|
296
296
|
|
|
297
297
|
export type AnyPanelOverlaySubscription = Immutable<
|
package/src/stable.ts
CHANGED
|
@@ -1578,6 +1578,13 @@ export type SettingsTreeNode = {
|
|
|
1578
1578
|
*/
|
|
1579
1579
|
icon?: SettingsIcon;
|
|
1580
1580
|
|
|
1581
|
+
/**
|
|
1582
|
+
* Optional color for this node. When an icon is specified, the icon will be
|
|
1583
|
+
* rendered in this color. Otherwise, a small color swatch is displayed before
|
|
1584
|
+
* the label. Expects a valid CSS color string (e.g., "#ff0000", "rgb(255, 0, 0)", "red").
|
|
1585
|
+
*/
|
|
1586
|
+
color?: string;
|
|
1587
|
+
|
|
1581
1588
|
/**
|
|
1582
1589
|
* An optional label shown at the top of this node.
|
|
1583
1590
|
*/
|