@neosh/sidebar 0.1.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/main.ts +3283 -0
- package/package.json +21 -0
- package/plugin.toml +11 -0
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@neosh/sidebar",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A docked panel: where you are, what changed, and what is answering.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"neosh",
|
|
9
|
+
"neosh-plugin"
|
|
10
|
+
],
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/neoswarm/neosh.git",
|
|
14
|
+
"directory": "plugins/builtin/sidebar"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"*.ts",
|
|
18
|
+
"plugin.toml",
|
|
19
|
+
"!._*"
|
|
20
|
+
]
|
|
21
|
+
}
|
package/plugin.toml
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
name = "sidebar"
|
|
2
|
+
version = "0.1.0"
|
|
3
|
+
entry = "main.ts"
|
|
4
|
+
description = "A docked panel: where you are, what changed, and what is answering."
|
|
5
|
+
|
|
6
|
+
# What other plugins build on. Listed so `ext.points()` can say who reads a point, and so a
|
|
7
|
+
# contribution to a point nobody reads is reported rather than silently ignored.
|
|
8
|
+
[provides]
|
|
9
|
+
points = ["sidebar.section", "sidebar.action", "sidebar.decoration"]
|
|
10
|
+
kinds = ["neosh.sidebar", "neosh.swarm.view"]
|
|
11
|
+
vars = ["sidebar.projects", "sidebar.favorite", "sidebar.rank", "sidebar.folded", "sidebar.name", "sidebar.root"]
|