@lvce-editor/status-bar-worker 3.21.0 → 3.23.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/dist/settings.json +26 -0
- package/dist/statusBarWorkerMain.js +0 -2
- package/package.json +1 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"category": "workbench",
|
|
4
|
+
"description": "Controls whether status bar items are visible.",
|
|
5
|
+
"heading": "Show Status Bar Items",
|
|
6
|
+
"id": "statusBar.itemsVisible",
|
|
7
|
+
"type": 3,
|
|
8
|
+
"value": "true"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"category": "workbench",
|
|
12
|
+
"description": "Controls whether the built-in notifications item is shown in the status bar.",
|
|
13
|
+
"heading": "Show Notifications Status",
|
|
14
|
+
"id": "statusBar.builtinNotificationsEnabled",
|
|
15
|
+
"type": 3,
|
|
16
|
+
"value": "true"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"category": "workbench",
|
|
20
|
+
"description": "Controls whether the built-in problems item is shown in the status bar.",
|
|
21
|
+
"heading": "Show Problems Status",
|
|
22
|
+
"id": "statusBar.builtinProblemsEnabled",
|
|
23
|
+
"type": 3,
|
|
24
|
+
"value": "true"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
@@ -1291,7 +1291,6 @@ const create = rpcId => {
|
|
|
1291
1291
|
};
|
|
1292
1292
|
};
|
|
1293
1293
|
|
|
1294
|
-
const Button$2 = 'button';
|
|
1295
1294
|
const Status = 'status';
|
|
1296
1295
|
|
|
1297
1296
|
const MaskIcon = 'MaskIcon';
|
|
@@ -1888,7 +1887,6 @@ const getStatusBarItemVirtualDom = statusBarItem => {
|
|
|
1888
1887
|
childCount: elements.length,
|
|
1889
1888
|
className: StatusBarItem,
|
|
1890
1889
|
name,
|
|
1891
|
-
role: Button$2,
|
|
1892
1890
|
tabIndex: -1,
|
|
1893
1891
|
title: tooltip,
|
|
1894
1892
|
type: Button$1
|