1 |
|
2 |
|
3 | import { Token } from '@lumino/coreutils';
|
4 |
|
5 |
|
6 |
|
7 | export const ICommandPalette = new Token('@jupyterlab/apputils:ICommandPalette', `A service for the application command palette
|
8 | in the left panel. Use this to add commands to the palette.`);
|
9 |
|
10 |
|
11 |
|
12 | export const IKernelStatusModel = new Token('@jupyterlab/apputils:IKernelStatusModel', 'A service to register kernel session provider to the kernel status indicator.');
|
13 |
|
14 |
|
15 |
|
16 | export const ISessionContextDialogs = new Token('@jupyterlab/apputils:ISessionContextDialogs', 'A service for handling the session dialogs.');
|
17 |
|
18 |
|
19 |
|
20 | export const IThemeManager = new Token('@jupyterlab/apputils:IThemeManager', 'A service for the theme manager for the application. This is used primarily in theme extensions to register new themes.');
|
21 |
|
22 |
|
23 |
|
24 | export const ISanitizer = new Token('@jupyterlab/apputils:ISanitizer', 'A service for sanitizing HTML strings.');
|
25 |
|
26 |
|
27 |
|
28 | export const ISplashScreen = new Token('@jupyterlab/apputils:ISplashScreen', `A service for the splash screen for the application.
|
29 | Use this if you want to show the splash screen for your own purposes.`);
|
30 |
|
31 |
|
32 |
|
33 | export const IWindowResolver = new Token('@jupyterlab/apputils:IWindowResolver', `A service for a window resolver for the
|
34 | application. JupyterLab workspaces are given a name, which are determined using
|
35 | the window resolver. Require this if you want to use the name of the current workspace.`);
|
36 |
|
37 |
|
38 |
|
39 | export const IToolbarWidgetRegistry = new Token('@jupyterlab/apputils:IToolbarWidgetRegistry', `A registry for toolbar widgets. Require this
|
40 | if you want to build the toolbar dynamically from a data definition (stored in settings for example).`);
|
41 |
|
\ | No newline at end of file |