Options
All
  • Public
  • Public/Protected
  • All
Menu

Panels

Panels are defined in /src/components/panels folder. Each Panel has

  • A Svelte component
  • A Panel Settings entry

For e.g. The Panel Actions has

  • Svelte component defined in /src/components/panels/Actions/Actions.svelte
  • Panel Settings entry added in /src/components/Actions/Actions.ts

Adding a new Panel

  1. Create a new Folder in /src/components/panels/<NewPanel>
  2. Create a new Svelte component in /src/components/panels/<NewPanel>/<NewPanel>.svelte
  3. Add a Panel Settings entry in /src/components/panels/<NewPanel>/<NewPanel>.ts
  4. Call addPanel method in /src/components/panels/panels.ts

panels

After completing the above three steps Panel unique name can be used in Workspace configuration to add it to Workspace.

Generated using TypeDoc