@foxglove/extension 2.48.2 → 2.50.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 +11 -0
package/package.json
CHANGED
package/src/stable.ts
CHANGED
|
@@ -1304,6 +1304,7 @@ export type SettingsIcon =
|
|
|
1304
1304
|
| "SouthEast"
|
|
1305
1305
|
| "Timeline"
|
|
1306
1306
|
| "Topic"
|
|
1307
|
+
| "Tune"
|
|
1307
1308
|
| "Walk"
|
|
1308
1309
|
| "World";
|
|
1309
1310
|
|
|
@@ -1450,6 +1451,11 @@ export type SettingsTreeFieldValue =
|
|
|
1450
1451
|
* @category Custom panels
|
|
1451
1452
|
*/
|
|
1452
1453
|
export type SettingsTreeField = SettingsTreeFieldValue & {
|
|
1454
|
+
/**
|
|
1455
|
+
* Optional caption.
|
|
1456
|
+
*/
|
|
1457
|
+
caption?: string;
|
|
1458
|
+
|
|
1453
1459
|
/**
|
|
1454
1460
|
* True if the field is disabled.
|
|
1455
1461
|
*/
|
|
@@ -1522,6 +1528,11 @@ export type SettingsTreeNodeActionItem = {
|
|
|
1522
1528
|
*/
|
|
1523
1529
|
display?: "menu" | "inline";
|
|
1524
1530
|
|
|
1531
|
+
/**
|
|
1532
|
+
* Optional semantic color for the action button.
|
|
1533
|
+
*/
|
|
1534
|
+
color?: "inherit" | "primary" | "secondary" | "error" | "warning" | "success" | "info";
|
|
1535
|
+
|
|
1525
1536
|
/**
|
|
1526
1537
|
* Whether this action is disabled or not. Defaults to false.
|
|
1527
1538
|
*/
|