@growthbeaker/vscode-help-docs 0.1.0 → 0.1.1

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/README.md CHANGED
@@ -9,13 +9,13 @@ VS Code extensions that ship user-facing docs have three unsatisfying options: o
9
9
  ## Install
10
10
 
11
11
  ```bash
12
- npm install vscode-help-docs
12
+ npm install @growthbeaker/vscode-help-docs
13
13
  ```
14
14
 
15
15
  ## Quick Start
16
16
 
17
17
  ```typescript
18
- import { createHelpPanel } from "vscode-help-docs";
18
+ import { createHelpPanel } from "@growthbeaker/vscode-help-docs";
19
19
 
20
20
  // In your extension's activate()
21
21
  const cmd = vscode.commands.registerCommand("myExtension.openHelp", () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@growthbeaker/vscode-help-docs",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A reusable VS Code webview panel that renders a folder of markdown files with a navigation sidebar",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -24,8 +24,8 @@ body {
24
24
  /* --- Navigation Sidebar --- */
25
25
 
26
26
  .nav-sidebar {
27
- width: 220px;
28
- min-width: 180px;
27
+ width: 320px;
28
+ min-width: 220px;
29
29
  background: var(--vscode-sideBar-background);
30
30
  border-right: 1px solid var(--vscode-panel-border);
31
31
  overflow-y: auto;