@datalayer/jupyter-react 0.8.3 → 0.9.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.
Files changed (309) hide show
  1. package/lib/app/tabs/ComponentsTab.js +1 -1
  2. package/lib/app/tabs/ComponentsTab.js.map +1 -1
  3. package/lib/app/tabs/components/CellComponent.js +3 -3
  4. package/lib/app/tabs/components/CellComponent.js.map +1 -1
  5. package/lib/app/tabs/components/NotebookComponent.js +2 -2
  6. package/lib/app/tabs/components/NotebookComponent.js.map +1 -1
  7. package/lib/app/tabs/components/ViewerComponent.js +2 -2
  8. package/lib/app/tabs/components/ViewerComponent.js.map +1 -1
  9. package/lib/components/cell/Cell.d.ts +6 -0
  10. package/lib/components/cell/Cell.js +4 -31
  11. package/lib/components/cell/Cell.js.map +1 -1
  12. package/lib/components/cell/CellAdapter.js +1 -1
  13. package/lib/components/cell/CellAdapter.js.map +1 -1
  14. package/lib/components/cell/CellCommands.js +1 -1
  15. package/lib/components/codemirror/CodeMirrorEditor.js +1 -2
  16. package/lib/components/codemirror/CodeMirrorEditor.js.map +1 -1
  17. package/lib/components/codemirror/CodeMirrorOutputToolbar.js +1 -1
  18. package/lib/components/codemirror/CodeMirrorOutputToolbar.js.map +1 -1
  19. package/lib/components/commands/Commands.js +1 -1
  20. package/lib/components/commands/Commands.js.map +1 -1
  21. package/lib/components/console/Console.d.ts +12 -1
  22. package/lib/components/console/Console.js +11 -7
  23. package/lib/components/console/Console.js.map +1 -1
  24. package/lib/components/console/ConsoleAdapter.d.ts +23 -2
  25. package/lib/components/console/ConsoleAdapter.js +27 -13
  26. package/lib/components/console/ConsoleAdapter.js.map +1 -1
  27. package/lib/components/dialog/Dialog.js +1 -1
  28. package/lib/components/dialog/Dialog.js.map +1 -1
  29. package/lib/components/filemanager/FileManagerJupyterLab.js +1 -1
  30. package/lib/components/filemanager/FileManagerJupyterLab.js.map +1 -1
  31. package/lib/components/jupyterlab/JupyterLabApp.d.ts +1 -1
  32. package/lib/components/jupyterlab/JupyterLabAppCss.d.ts +1 -1
  33. package/lib/components/kernel/KernelActionMenu.d.ts +8 -0
  34. package/lib/components/kernel/KernelActionMenu.js +21 -0
  35. package/lib/components/kernel/KernelActionMenu.js.map +1 -0
  36. package/lib/components/kernel/KernelInspector.d.ts +6 -0
  37. package/lib/components/kernel/KernelInspector.js +31 -0
  38. package/lib/components/kernel/KernelInspector.js.map +1 -0
  39. package/lib/components/kernel/KernelLauncher.d.ts +2 -0
  40. package/lib/components/kernel/KernelLauncher.js +11 -0
  41. package/lib/components/kernel/KernelLauncher.js.map +1 -0
  42. package/lib/components/kernel/KernelLogs.d.ts +2 -0
  43. package/lib/components/kernel/KernelLogs.js +11 -0
  44. package/lib/components/kernel/KernelLogs.js.map +1 -0
  45. package/lib/components/kernel/KernelProgressBar.d.ts +2 -0
  46. package/lib/components/kernel/KernelProgressBar.js +26 -0
  47. package/lib/components/kernel/KernelProgressBar.js.map +1 -0
  48. package/lib/components/kernel/KernelSelector.d.ts +8 -0
  49. package/lib/components/kernel/KernelSelector.js +40 -0
  50. package/lib/components/kernel/KernelSelector.js.map +1 -0
  51. package/lib/components/kernel/KernelStatus.d.ts +27 -0
  52. package/lib/components/kernel/KernelStatus.js +67 -0
  53. package/lib/components/kernel/KernelStatus.js.map +1 -0
  54. package/lib/components/kernel/KernelUsage.d.ts +6 -0
  55. package/lib/components/kernel/KernelUsage.js +100 -0
  56. package/lib/components/kernel/KernelUsage.js.map +1 -0
  57. package/lib/components/kernel/KernelVariables.d.ts +6 -0
  58. package/lib/components/kernel/KernelVariables.js +23 -0
  59. package/lib/components/kernel/KernelVariables.js.map +1 -0
  60. package/lib/components/kernel/Kernels.d.ts +2 -0
  61. package/lib/components/kernel/Kernels.js +88 -0
  62. package/lib/components/kernel/Kernels.js.map +1 -0
  63. package/lib/components/kernel/index.d.ts +10 -0
  64. package/lib/components/kernel/index.js +16 -0
  65. package/lib/components/kernel/index.js.map +1 -0
  66. package/lib/components/kernel/inspector/kernelinspector.css +68 -0
  67. package/lib/components/kernel/inspector/model.d.ts +56 -0
  68. package/lib/components/kernel/inspector/model.js +201 -0
  69. package/lib/components/kernel/inspector/model.js.map +1 -0
  70. package/lib/components/kernel/inspector/widget.d.ts +40 -0
  71. package/lib/components/kernel/inspector/widget.js +190 -0
  72. package/lib/components/kernel/inspector/widget.js.map +1 -0
  73. package/lib/components/kernel/variables/handler.d.ts +86 -0
  74. package/lib/components/kernel/variables/handler.js +262 -0
  75. package/lib/components/kernel/variables/handler.js.map +1 -0
  76. package/lib/components/kernel/variables/inspectorscripts.d.ts +20 -0
  77. package/lib/components/kernel/variables/inspectorscripts.js +349 -0
  78. package/lib/components/kernel/variables/inspectorscripts.js.map +1 -0
  79. package/lib/components/kernel/variables/kernelconnector.d.ts +37 -0
  80. package/lib/components/kernel/variables/kernelconnector.js +76 -0
  81. package/lib/components/kernel/variables/kernelconnector.js.map +1 -0
  82. package/lib/components/kernel/variables/manager.d.ts +26 -0
  83. package/lib/components/kernel/variables/manager.js +70 -0
  84. package/lib/components/kernel/variables/manager.js.map +1 -0
  85. package/lib/components/kernel/variables/tokens.d.ts +48 -0
  86. package/lib/{jupyter/lab/JupyterLabTheme.js → components/kernel/variables/tokens.js} +1 -1
  87. package/lib/components/kernel/variables/tokens.js.map +1 -0
  88. package/lib/components/kernel/variables/variablesinspector.css +110 -0
  89. package/lib/components/kernel/variables/variablesinspector.d.ts +5 -0
  90. package/lib/components/kernel/variables/variablesinspector.js +85 -0
  91. package/lib/components/kernel/variables/variablesinspector.js.map +1 -0
  92. package/lib/components/kernel/variables/widget.d.ts +33 -0
  93. package/lib/components/kernel/variables/widget.js +391 -0
  94. package/lib/components/kernel/variables/widget.js.map +1 -0
  95. package/lib/components/lumino/Lumino.js.map +1 -0
  96. package/lib/components/lumino/LuminoBox.js.map +1 -0
  97. package/lib/components/lumino/LuminoDetached.js.map +1 -0
  98. package/lib/components/lumino/LuminoObservable.js.map +1 -0
  99. package/lib/components/lumino/LuminoRedux.js.map +1 -0
  100. package/lib/components/lumino/ReactPortalWidget.js.map +1 -0
  101. package/lib/components/notebook/Notebook.js +11 -7
  102. package/lib/components/notebook/Notebook.js.map +1 -1
  103. package/lib/components/notebook/NotebookAdapter.d.ts +3 -1
  104. package/lib/components/notebook/NotebookAdapter.js +43 -39
  105. package/lib/components/notebook/NotebookAdapter.js.map +1 -1
  106. package/lib/components/notebook/NotebookCommands.d.ts +23 -21
  107. package/lib/components/notebook/NotebookCommands.js +51 -26
  108. package/lib/components/notebook/NotebookCommands.js.map +1 -1
  109. package/lib/components/notebook/cell/metadata/CellMetadataEditor.js +1 -1
  110. package/lib/components/notebook/cell/metadata/CellMetadataEditor.js.map +1 -1
  111. package/lib/components/notebook/cell/metadata/NbGraderCells.js +10 -10
  112. package/lib/components/notebook/cell/prompt/Countdown.js +1 -1
  113. package/lib/components/notebook/cell/prompt/Countdown.js.map +1 -1
  114. package/lib/components/notebook/cell/prompt/CountdownOutputPrompt.js.map +1 -1
  115. package/lib/components/notebook/cell/sidebar/CellSidebarWidget.d.ts +1 -1
  116. package/lib/components/notebook/cell/sidebar/CellSidebarWidget.js +1 -1
  117. package/lib/components/notebook/cell/sidebar/CellSidebarWidget.js.map +1 -1
  118. package/lib/components/notebook/marked/marked.js +1 -1
  119. package/lib/components/output/Output.d.ts +11 -10
  120. package/lib/components/output/Output.js +32 -57
  121. package/lib/components/output/Output.js.map +1 -1
  122. package/lib/components/output/OutputAdapter.d.ts +1 -1
  123. package/lib/components/output/OutputAdapter.js +14 -12
  124. package/lib/components/output/OutputAdapter.js.map +1 -1
  125. package/lib/components/output/OutputRenderer.js +4 -2
  126. package/lib/components/output/OutputRenderer.js.map +1 -1
  127. package/lib/components/output/OutputZustand.d.ts +5 -0
  128. package/lib/components/output/OutputZustand.js +5 -0
  129. package/lib/components/output/OutputZustand.js.map +1 -1
  130. package/lib/components/output/ipywidgets/IPyWidgetsAttached.js +1 -1
  131. package/lib/components/output/ipywidgets/IPyWidgetsAttached.js.map +1 -1
  132. package/lib/components/output/ipywidgets/IPyWidgetsViewManager.js +7 -6
  133. package/lib/components/output/ipywidgets/IPyWidgetsViewManager.js.map +1 -1
  134. package/lib/components/settings/Settings.js +1 -1
  135. package/lib/components/settings/Settings.js.map +1 -1
  136. package/lib/components/terminal/Terminal.d.ts +4 -0
  137. package/lib/components/terminal/Terminal.js +1 -1
  138. package/lib/components/terminal/Terminal.js.map +1 -1
  139. package/lib/components/terminal/TerminalAdapter.js +12 -3
  140. package/lib/components/terminal/TerminalAdapter.js.map +1 -1
  141. package/lib/components/viewer/Viewer.d.ts +2 -1
  142. package/lib/components/viewer/Viewer.js +16 -3
  143. package/lib/components/viewer/Viewer.js.map +1 -1
  144. package/lib/components/viewer/input/CodemirrorViewer.js +2 -2
  145. package/lib/components/viewer/input/CodemirrorViewer.js.map +1 -1
  146. package/lib/components/viewer/input/InputViewer.js +1 -4
  147. package/lib/components/viewer/input/InputViewer.js.map +1 -1
  148. package/lib/components/viewer/output/OutputAdapter.js +2 -2
  149. package/lib/components/viewer/output/OutputAdapter.js.map +1 -1
  150. package/lib/components/viewer/output/OutputViewer.js +1 -1
  151. package/lib/components/viewer/output/OutputViewer.js.map +1 -1
  152. package/lib/examples/All.js +5 -4
  153. package/lib/examples/All.js.map +1 -1
  154. package/lib/examples/Bqplot.js +7 -1
  155. package/lib/examples/Bqplot.js.map +1 -1
  156. package/lib/examples/CellLite.js +16 -0
  157. package/lib/examples/CellLite.js.map +1 -0
  158. package/lib/examples/Console.js +1 -1
  159. package/lib/examples/Console.js.map +1 -1
  160. package/lib/examples/ConsoleLite.js +3 -1
  161. package/lib/examples/ConsoleLite.js.map +1 -1
  162. package/lib/examples/Deno.js +18 -0
  163. package/lib/examples/Deno.js.map +1 -0
  164. package/lib/examples/IPyLeaflet.js +7 -3
  165. package/lib/examples/IPyLeaflet.js.map +1 -1
  166. package/lib/examples/IPyReact.js +7 -3
  167. package/lib/examples/IPyReact.js.map +1 -1
  168. package/lib/examples/JupyterLabHeadlessApp.js +1 -1
  169. package/lib/examples/JupyterLabHeadlessApp.js.map +1 -1
  170. package/lib/examples/KernelExecResult.d.ts +1 -0
  171. package/lib/examples/KernelExecResult.js +40 -0
  172. package/lib/examples/KernelExecResult.js.map +1 -0
  173. package/lib/examples/KernelExecutor.js +20 -10
  174. package/lib/examples/KernelExecutor.js.map +1 -1
  175. package/lib/examples/Kernels.d.ts +1 -0
  176. package/lib/examples/Kernels.js +78 -0
  177. package/lib/examples/Kernels.js.map +1 -0
  178. package/lib/examples/Lumino.js +1 -1
  179. package/lib/examples/Lumino.js.map +1 -1
  180. package/lib/examples/Matplotlib.js +11 -7
  181. package/lib/examples/Matplotlib.js.map +1 -1
  182. package/lib/examples/NotebookCellSidebar.js +9 -5
  183. package/lib/examples/NotebookCellSidebar.js.map +1 -1
  184. package/lib/examples/NotebookColorMode.js +18 -12
  185. package/lib/examples/NotebookColorMode.js.map +1 -1
  186. package/lib/examples/NotebookExternalContent.js +9 -5
  187. package/lib/examples/NotebookExternalContent.js.map +1 -1
  188. package/lib/examples/NotebookInit.js +8 -4
  189. package/lib/examples/NotebookInit.js.map +1 -1
  190. package/lib/examples/NotebookKernelChange.js +4 -3
  191. package/lib/examples/NotebookKernelChange.js.map +1 -1
  192. package/lib/examples/NotebookLite.d.ts +1 -0
  193. package/lib/examples/NotebookLite.js +20 -0
  194. package/lib/examples/NotebookLite.js.map +1 -0
  195. package/lib/examples/NotebookNbFormat.js +9 -5
  196. package/lib/examples/NotebookNbFormat.js.map +1 -1
  197. package/lib/examples/NotebookNbFormatChange.d.ts +1 -0
  198. package/lib/examples/{NotebookModelChange.js → NotebookNbFormatChange.js} +12 -8
  199. package/lib/examples/NotebookNbFormatChange.js.map +1 -0
  200. package/lib/examples/NotebookPath.js +9 -5
  201. package/lib/examples/NotebookPath.js.map +1 -1
  202. package/lib/examples/NotebookPathChange.js +9 -5
  203. package/lib/examples/NotebookPathChange.js.map +1 -1
  204. package/lib/examples/NotebookSkeleton.d.ts +1 -0
  205. package/lib/examples/NotebookSkeleton.js +28 -0
  206. package/lib/examples/NotebookSkeleton.js.map +1 -0
  207. package/lib/examples/NotebookTheme.js +20 -13
  208. package/lib/examples/NotebookTheme.js.map +1 -1
  209. package/lib/examples/NotebookUnmount.js +5 -4
  210. package/lib/examples/NotebookUnmount.js.map +1 -1
  211. package/lib/examples/ObservableHQ.d.ts +1 -0
  212. package/lib/examples/ObservableHQ.js +18 -0
  213. package/lib/examples/ObservableHQ.js.map +1 -0
  214. package/lib/examples/Outputs.js +2 -2
  215. package/lib/examples/Outputs.js.map +1 -1
  216. package/lib/examples/RunningSessions.js +1 -1
  217. package/lib/examples/RunningSessions.js.map +1 -1
  218. package/lib/examples/Viewer.js +6 -68
  219. package/lib/examples/Viewer.js.map +1 -1
  220. package/lib/examples/lumino/LuminoWidget.js +3 -3
  221. package/lib/examples/lumino/LuminoWidget.js.map +1 -1
  222. package/lib/examples/toolbars/NotebookToolbar.js +7 -4
  223. package/lib/examples/toolbars/NotebookToolbar.js.map +1 -1
  224. package/lib/examples/toolbars/NotebookToolbarAutoSave.js +1 -1
  225. package/lib/examples/toolbars/NotebookToolbarAutoSave.js.map +1 -1
  226. package/lib/index.d.ts +33 -24
  227. package/lib/index.js +53 -36
  228. package/lib/index.js.map +1 -1
  229. package/lib/jupyter/Jupyter.d.ts +6 -1090
  230. package/lib/jupyter/Jupyter.js +23 -18
  231. package/lib/jupyter/Jupyter.js.map +1 -1
  232. package/lib/jupyter/JupyterConfig.js +1 -1
  233. package/lib/jupyter/JupyterConfig.js.map +1 -1
  234. package/lib/jupyter/JupyterContext.d.ts +118 -23
  235. package/lib/jupyter/JupyterContext.js +115 -100
  236. package/lib/jupyter/JupyterContext.js.map +1 -1
  237. package/lib/jupyter/ipywidgets/cache/semvercache.d.ts +3 -1
  238. package/lib/jupyter/ipywidgets/cache/semvercache.js.map +1 -1
  239. package/lib/jupyter/ipywidgets/classic/IPyWidgetsClassicManager.d.ts +5 -3
  240. package/lib/jupyter/ipywidgets/classic/IPyWidgetsClassicManager.js +14 -14
  241. package/lib/jupyter/ipywidgets/classic/IPyWidgetsClassicManager.js.map +1 -1
  242. package/lib/jupyter/ipywidgets/lab/manager.js +4 -5
  243. package/lib/jupyter/ipywidgets/lab/manager.js.map +1 -1
  244. package/lib/jupyter/ipywidgets/lab/plugin.js +2 -2
  245. package/lib/jupyter/ipywidgets/lab/plugin.js.map +1 -1
  246. package/lib/jupyter/ipywidgets/lab/renderer.js.map +1 -1
  247. package/lib/jupyter/ipywidgets/plotly/Figure.js +180 -169
  248. package/lib/jupyter/ipywidgets/plotly/Figure.js.map +1 -1
  249. package/lib/jupyter/kernel/Kernel.d.ts +69 -19
  250. package/lib/jupyter/kernel/Kernel.js +62 -44
  251. package/lib/jupyter/kernel/Kernel.js.map +1 -1
  252. package/lib/jupyter/kernel/KernelExecutor.d.ts +16 -6
  253. package/lib/jupyter/kernel/KernelExecutor.js +61 -27
  254. package/lib/jupyter/kernel/KernelExecutor.js.map +1 -1
  255. package/lib/jupyter/kernel/index.d.ts +2 -0
  256. package/lib/jupyter/kernel/index.js +8 -0
  257. package/lib/jupyter/kernel/index.js.map +1 -0
  258. package/lib/jupyter/lab/JupyterLabColorMode.js +7 -0
  259. package/lib/jupyter/lab/JupyterLabColorMode.js.map +1 -0
  260. package/lib/jupyter/lab/JupyterLabCss.d.ts +5 -2
  261. package/lib/jupyter/lab/JupyterLabCss.js +35 -7
  262. package/lib/jupyter/lab/JupyterLabCss.js.map +1 -1
  263. package/lib/jupyter/lab/index.d.ts +2 -2
  264. package/lib/jupyter/lab/index.js +1 -2
  265. package/lib/jupyter/lab/index.js.map +1 -1
  266. package/lib/jupyter/lab/notebook/content/CountdownContentFactory.d.ts +3 -8
  267. package/lib/jupyter/lab/notebook/content/CountdownContentFactory.js +6 -12
  268. package/lib/jupyter/lab/notebook/content/CountdownContentFactory.js.map +1 -1
  269. package/lib/jupyter/lab/notebook/content/plugin.js +2 -2
  270. package/lib/jupyter/lab/notebook/content/plugin.js.map +1 -1
  271. package/lib/jupyter/lite/LiteServer.d.ts +11 -2
  272. package/lib/jupyter/lite/LiteServer.js +41 -66
  273. package/lib/jupyter/lite/LiteServer.js.map +1 -1
  274. package/lib/jupyter/renderers/plotly/PlotlyRenderer.js +4 -4
  275. package/lib/jupyter/renderers/plotly/PlotlyRenderer.js.map +1 -1
  276. package/lib/jupyter/theme.js +3 -2
  277. package/lib/jupyter/theme.js.map +1 -1
  278. package/lib/utils/Utils.d.ts +3 -2
  279. package/lib/utils/Utils.js +45 -1
  280. package/lib/utils/Utils.js.map +1 -1
  281. package/lib/utils/index.d.ts +1 -0
  282. package/lib/utils/index.js +2 -0
  283. package/lib/utils/index.js.map +1 -0
  284. package/package.json +170 -86
  285. package/lib/examples/NotebookModelChange.js.map +0 -1
  286. package/lib/examples/ViewerFile.js +0 -19
  287. package/lib/examples/ViewerFile.js.map +0 -1
  288. package/lib/jupyter/lab/JupyterLabTheme.js.map +0 -1
  289. package/lib/jupyter/lumino/Lumino.js.map +0 -1
  290. package/lib/jupyter/lumino/LuminoBox.js.map +0 -1
  291. package/lib/jupyter/lumino/LuminoDetached.js.map +0 -1
  292. package/lib/jupyter/lumino/LuminoObservable.js.map +0 -1
  293. package/lib/jupyter/lumino/LuminoRedux.js.map +0 -1
  294. package/lib/jupyter/lumino/ReactPortalWidget.js.map +0 -1
  295. /package/lib/{jupyter → components}/lumino/Lumino.d.ts +0 -0
  296. /package/lib/{jupyter → components}/lumino/Lumino.js +0 -0
  297. /package/lib/{jupyter → components}/lumino/LuminoBox.d.ts +0 -0
  298. /package/lib/{jupyter → components}/lumino/LuminoBox.js +0 -0
  299. /package/lib/{jupyter → components}/lumino/LuminoDetached.d.ts +0 -0
  300. /package/lib/{jupyter → components}/lumino/LuminoDetached.js +0 -0
  301. /package/lib/{jupyter → components}/lumino/LuminoObservable.d.ts +0 -0
  302. /package/lib/{jupyter → components}/lumino/LuminoObservable.js +0 -0
  303. /package/lib/{jupyter → components}/lumino/LuminoRedux.d.ts +0 -0
  304. /package/lib/{jupyter → components}/lumino/LuminoRedux.js +0 -0
  305. /package/lib/{jupyter → components}/lumino/ReactPortalWidget.d.ts +0 -0
  306. /package/lib/{jupyter → components}/lumino/ReactPortalWidget.js +0 -0
  307. /package/lib/examples/{NotebookModelChange.d.ts → CellLite.d.ts} +0 -0
  308. /package/lib/examples/{ViewerFile.d.ts → Deno.d.ts} +0 -0
  309. /package/lib/jupyter/lab/{JupyterLabTheme.d.ts → JupyterLabColorMode.d.ts} +0 -0
@@ -1,1107 +1,23 @@
1
- import React from 'react';
2
1
  import { Theme } from '@primer/react/lib/ThemeProvider';
3
- import { InjectableStore } from '../state/redux/Store';
4
- import { ColorMode } from './lab/JupyterLabTheme';
2
+ import { JupyterContextProps } from './JupyterContext';
3
+ import { ColorMode } from './lab/JupyterLabColorMode';
5
4
  /**
6
5
  * Definition of the properties that can be passed
7
6
  * when creating a Jupyter context.
8
7
  */
9
- export type JupyterProps = {
10
- children?: React.ReactNode;
11
- collaborative?: boolean;
12
- colorMode: ColorMode;
13
- defaultKernelName: string;
8
+ export type JupyterProps = Omit<JupyterContextProps, 'serverUrls' | 'variant'> & {
9
+ colorMode?: ColorMode;
14
10
  disableCssLoading?: boolean;
15
- injectableStore?: InjectableStore;
16
11
  jupyterServerHttpUrl?: string;
17
12
  jupyterServerWsUrl?: string;
18
13
  jupyterToken?: string;
19
- lite?: boolean;
20
- startDefaultKernel: boolean;
21
- theme: Theme;
14
+ theme?: Theme;
22
15
  terminals?: boolean;
23
- useRunningKernelId?: string;
24
- useRunningKernelIndex?: number;
25
16
  };
26
17
  /**
27
18
  * The Jupyter context. This handles the needed initialization
28
19
  * and ensure the Redux and the Material UI theme providers
29
20
  * are available.
30
21
  */
31
- export declare const Jupyter: {
32
- (props: JupyterProps): import("react/jsx-runtime").JSX.Element;
33
- defaultProps: {
34
- collaborative: boolean;
35
- colorMode: string;
36
- defaultKernelName: string;
37
- disableCssLoading: boolean;
38
- lite: boolean;
39
- startDefaultKernel: boolean;
40
- terminals: boolean;
41
- theme: {
42
- animation: {
43
- easeOutCubic: string;
44
- };
45
- borderWidths: (string | number)[];
46
- breakpoints: string[];
47
- fonts: {
48
- normal: any;
49
- mono: any;
50
- };
51
- fontSizes: string[];
52
- fontWeights: {
53
- light: number;
54
- normal: number;
55
- semibold: number;
56
- bold: number;
57
- };
58
- lineHeights: {
59
- condensedUltra: number;
60
- condensed: number;
61
- default: number;
62
- };
63
- radii: string[];
64
- sizes: {
65
- small: string;
66
- medium: string;
67
- large: string;
68
- xlarge: string;
69
- };
70
- space: string[];
71
- colorSchemes: Record<"dark" | "light" | "light_high_contrast" | "light_colorblind" | "light_tritanopia" | "dark_dimmed" | "dark_high_contrast" | "dark_colorblind" | "dark_tritanopia", {
72
- colors: Partial<{
73
- canvasDefaultTransparent: string;
74
- pageHeaderBg: string;
75
- marketingIcon: {
76
- primary: string;
77
- secondary: string;
78
- };
79
- diffBlob: {
80
- addition: {
81
- numText: string;
82
- fg: string;
83
- numBg: string;
84
- lineBg: string;
85
- wordBg: string;
86
- };
87
- deletion: {
88
- numText: string;
89
- fg: string;
90
- numBg: string;
91
- lineBg: string;
92
- wordBg: string;
93
- };
94
- hunk: {
95
- numBg: string;
96
- };
97
- expander: {
98
- icon: string;
99
- };
100
- selectedLineHighlightMixBlendMode: string;
101
- };
102
- diffstat: {
103
- deletionBorder: string;
104
- additionBorder: string;
105
- additionBg: string;
106
- };
107
- searchKeyword: {
108
- hl: string;
109
- };
110
- prettylights: {
111
- syntax: {
112
- comment: string;
113
- constant: string;
114
- entity: string;
115
- storageModifierImport: string;
116
- entityTag: string;
117
- keyword: string;
118
- string: string;
119
- variable: string;
120
- brackethighlighterUnmatched: string;
121
- invalidIllegalText: string;
122
- invalidIllegalBg: string;
123
- carriageReturnText: string;
124
- carriageReturnBg: string;
125
- stringRegexp: string;
126
- markupList: string;
127
- markupHeading: string;
128
- markupItalic: string;
129
- markupBold: string;
130
- markupDeletedText: string;
131
- markupDeletedBg: string;
132
- markupInsertedText: string;
133
- markupInsertedBg: string;
134
- markupChangedText: string;
135
- markupChangedBg: string;
136
- markupIgnoredText: string;
137
- markupIgnoredBg: string;
138
- metaDiffRange: string;
139
- brackethighlighterAngle: string;
140
- sublimelinterGutterMark: string;
141
- constantOtherReferenceLink: string;
142
- };
143
- };
144
- codemirror: {
145
- text: string;
146
- bg: string;
147
- guttersBg: string;
148
- guttermarkerText: string;
149
- guttermarkerSubtleText: string;
150
- linenumberText: string;
151
- cursor: string;
152
- selectionBg: string;
153
- activelineBg: string;
154
- matchingbracketText: string;
155
- linesBg: string;
156
- syntax: {
157
- comment: string;
158
- constant: string;
159
- entity: string;
160
- keyword: string;
161
- storage: string;
162
- string: string;
163
- support: string;
164
- variable: string;
165
- };
166
- };
167
- checks: {
168
- bg: string;
169
- runBorderWidth: string;
170
- containerBorderWidth: string;
171
- textPrimary: string;
172
- textSecondary: string;
173
- textLink: string;
174
- btnIcon: string;
175
- btnHoverIcon: string;
176
- btnHoverBg: string;
177
- inputText: string;
178
- inputPlaceholderText: string;
179
- inputFocusText: string;
180
- inputBg: string;
181
- inputShadow: string;
182
- donutError: string;
183
- donutPending: string;
184
- donutSuccess: string;
185
- donutNeutral: string;
186
- dropdownText: string;
187
- dropdownBg: string;
188
- dropdownBorder: string;
189
- dropdownShadow: string;
190
- dropdownHoverText: string;
191
- dropdownHoverBg: string;
192
- dropdownBtnHoverText: string;
193
- dropdownBtnHoverBg: string;
194
- scrollbarThumbBg: string;
195
- headerLabelText: string;
196
- headerLabelOpenText: string;
197
- headerBorder: string;
198
- headerIcon: string;
199
- lineText: string;
200
- lineNumText: string;
201
- lineTimestampText: string;
202
- lineHoverBg: string;
203
- lineSelectedBg: string;
204
- lineSelectedNumText: string;
205
- lineDtFmText: string;
206
- lineDtFmBg: string;
207
- gateBg: string;
208
- gateText: string;
209
- gateWaitingText: string;
210
- stepHeaderOpenBg: string;
211
- stepErrorText: string;
212
- stepWarningText: string;
213
- loglineText: string;
214
- loglineNumText: string;
215
- loglineDebugText: string;
216
- loglineErrorText: string;
217
- loglineErrorNumText: string;
218
- loglineErrorBg: string;
219
- loglineWarningText: string;
220
- loglineWarningNumText: string;
221
- loglineWarningBg: string;
222
- loglineCommandText: string;
223
- loglineSectionText: string;
224
- ansi: {
225
- black: string;
226
- blackBright: string;
227
- white: string;
228
- whiteBright: string;
229
- gray: string;
230
- red: string;
231
- redBright: string;
232
- green: string;
233
- greenBright: string;
234
- yellow: string;
235
- yellowBright: string;
236
- blue: string;
237
- blueBright: string;
238
- magenta: string;
239
- magentaBright: string;
240
- cyan: string;
241
- cyanBright: string;
242
- };
243
- };
244
- project: {
245
- headerBg: string;
246
- sidebarBg: string;
247
- gradientIn: string;
248
- gradientOut: string;
249
- };
250
- mktg: {
251
- btn: {
252
- bg: string;
253
- shadow: {
254
- outline: string;
255
- focus: string;
256
- hover: string;
257
- hoverMuted: string;
258
- };
259
- };
260
- };
261
- control: {
262
- borderColor: {
263
- emphasis: string;
264
- };
265
- };
266
- avatar: {
267
- bg: string;
268
- border: string;
269
- stackFade: string;
270
- stackFadeMore: string;
271
- childShadow: string;
272
- };
273
- topicTag: {
274
- border: string;
275
- };
276
- counter: {
277
- border: string;
278
- };
279
- selectMenu: {
280
- backdropBorder: string;
281
- tapHighlight: string;
282
- tapFocusBg: string;
283
- };
284
- overlay: {
285
- shadow: string;
286
- backdrop: string;
287
- };
288
- header: {
289
- text: string;
290
- bg: string;
291
- divider: string;
292
- logo: string;
293
- };
294
- headerSearch: {
295
- bg: string;
296
- border: string;
297
- };
298
- sidenav: {
299
- selectedBg: string;
300
- };
301
- menu: {
302
- bgActive: string;
303
- };
304
- input: {
305
- disabledBg: string;
306
- };
307
- timeline: {
308
- badgeBg: string;
309
- };
310
- ansi: {
311
- black: string;
312
- blackBright: string;
313
- white: string;
314
- whiteBright: string;
315
- gray: string;
316
- red: string;
317
- redBright: string;
318
- green: string;
319
- greenBright: string;
320
- yellow: string;
321
- yellowBright: string;
322
- blue: string;
323
- blueBright: string;
324
- magenta: string;
325
- magentaBright: string;
326
- cyan: string;
327
- cyanBright: string;
328
- };
329
- btn: {
330
- text: string;
331
- bg: string;
332
- border: string;
333
- shadow: string;
334
- insetShadow: string;
335
- hoverBg: string;
336
- hoverBorder: string;
337
- activeBg: string;
338
- activeBorder: string;
339
- selectedBg: string;
340
- counterBg: string;
341
- primary: {
342
- text: string;
343
- bg: string;
344
- border: string;
345
- shadow: string;
346
- insetShadow: string;
347
- hoverBg: string;
348
- hoverBorder: string;
349
- selectedBg: string;
350
- selectedShadow: string;
351
- disabledText: string;
352
- disabledBg: string;
353
- disabledBorder: string;
354
- icon: string;
355
- counterBg: string;
356
- };
357
- outline: {
358
- text: string;
359
- hoverText: string;
360
- hoverBg: string;
361
- hoverBorder: string;
362
- hoverShadow: string;
363
- hoverInsetShadow: string;
364
- hoverCounterBg: string;
365
- selectedText: string;
366
- selectedBg: string;
367
- selectedBorder: string;
368
- selectedShadow: string;
369
- disabledText: string;
370
- disabledBg: string;
371
- disabledCounterBg: string;
372
- counterBg: string;
373
- counterFg: string;
374
- hoverCounterFg: string;
375
- disabledCounterFg: string;
376
- };
377
- danger: {
378
- text: string;
379
- hoverText: string;
380
- hoverBg: string;
381
- hoverBorder: string;
382
- hoverShadow: string;
383
- hoverInsetShadow: string;
384
- hoverCounterBg: string;
385
- selectedText: string;
386
- selectedBg: string;
387
- selectedBorder: string;
388
- selectedShadow: string;
389
- disabledText: string;
390
- disabledBg: string;
391
- disabledCounterBg: string;
392
- counterBg: string;
393
- icon: string;
394
- hoverIcon: string;
395
- counterFg: string;
396
- hoverCounterFg: string;
397
- disabledCounterFg: string;
398
- };
399
- inactive: {
400
- bg: string;
401
- text: string;
402
- };
403
- };
404
- underlinenav: {
405
- icon: string;
406
- borderHover: string;
407
- };
408
- actionListItem: {
409
- inlineDivider: string;
410
- default: {
411
- hoverBg: string;
412
- hoverBorder: string;
413
- activeBg: string;
414
- activeBorder: string;
415
- selectedBg: string;
416
- };
417
- danger: {
418
- hoverBg: string;
419
- activeBg: string;
420
- hoverText: string;
421
- };
422
- };
423
- switchTrack: {
424
- bg: string;
425
- hoverBg: string;
426
- activeBg: string;
427
- disabledBg: string;
428
- fg: string;
429
- disabledFg: string;
430
- border: string;
431
- checked: {
432
- bg: string;
433
- hoverBg: string;
434
- activeBg: string;
435
- fg: string;
436
- disabledFg: string;
437
- border: string;
438
- };
439
- };
440
- switchKnob: {
441
- bg: string;
442
- disabledBg: string;
443
- border: string;
444
- checked: {
445
- bg: string;
446
- disabledBg: string;
447
- border: string;
448
- };
449
- };
450
- segmentedControl: {
451
- bg: string;
452
- button: {
453
- bg: string;
454
- hover: {
455
- bg: string;
456
- };
457
- active: {
458
- bg: string;
459
- };
460
- selected: {
461
- border: string;
462
- };
463
- };
464
- };
465
- treeViewItem: {
466
- chevron: {
467
- hoverBg: string;
468
- };
469
- directory: {
470
- fill: string;
471
- };
472
- };
473
- fg: {
474
- default: string;
475
- muted: string;
476
- subtle: string;
477
- onEmphasis: string;
478
- };
479
- canvas: {
480
- default: string;
481
- overlay: string;
482
- inset: string;
483
- subtle: string;
484
- };
485
- border: {
486
- default: string;
487
- muted: string;
488
- subtle: string;
489
- };
490
- shadow: {
491
- small: string;
492
- medium: string;
493
- large: string;
494
- extraLarge: string;
495
- };
496
- neutral: {
497
- emphasisPlus: string;
498
- emphasis: string;
499
- muted: string;
500
- subtle: string;
501
- };
502
- accent: {
503
- fg: string;
504
- emphasis: string;
505
- muted: string;
506
- subtle: string;
507
- };
508
- success: {
509
- fg: string;
510
- emphasis: string;
511
- muted: string;
512
- subtle: string;
513
- };
514
- attention: {
515
- fg: string;
516
- emphasis: string;
517
- muted: string;
518
- subtle: string;
519
- };
520
- severe: {
521
- fg: string;
522
- emphasis: string;
523
- muted: string;
524
- subtle: string;
525
- };
526
- danger: {
527
- fg: string;
528
- emphasis: string;
529
- muted: string;
530
- subtle: string;
531
- };
532
- open: {
533
- fg: string;
534
- emphasis: string;
535
- muted: string;
536
- subtle: string;
537
- };
538
- closed: {
539
- fg: string;
540
- emphasis: string;
541
- muted: string;
542
- subtle: string;
543
- };
544
- done: {
545
- fg: string;
546
- emphasis: string;
547
- muted: string;
548
- subtle: string;
549
- };
550
- sponsors: {
551
- fg: string;
552
- emphasis: string;
553
- muted: string;
554
- subtle: string;
555
- };
556
- primer: {
557
- fg: {
558
- disabled: string;
559
- };
560
- canvas: {
561
- backdrop: string;
562
- sticky: string;
563
- };
564
- border: {
565
- active: string;
566
- contrast: string;
567
- };
568
- shadow: {
569
- highlight: string;
570
- inset: string;
571
- };
572
- };
573
- scale: {
574
- black: string;
575
- white: string;
576
- gray: string[];
577
- blue: string[];
578
- green: string[];
579
- yellow: string[];
580
- orange: string[];
581
- red: string[];
582
- purple: string[];
583
- pink: string[];
584
- coral: string[];
585
- };
586
- }>;
587
- shadows: Partial<{
588
- canvasDefaultTransparent: string;
589
- pageHeaderBg: string;
590
- marketingIcon: {
591
- primary: string;
592
- secondary: string;
593
- };
594
- diffBlob: {
595
- addition: {
596
- numText: string;
597
- fg: string;
598
- numBg: string;
599
- lineBg: string;
600
- wordBg: string;
601
- };
602
- deletion: {
603
- numText: string;
604
- fg: string;
605
- numBg: string;
606
- lineBg: string;
607
- wordBg: string;
608
- };
609
- hunk: {
610
- numBg: string;
611
- };
612
- expander: {
613
- icon: string;
614
- };
615
- selectedLineHighlightMixBlendMode: string;
616
- };
617
- diffstat: {
618
- deletionBorder: string;
619
- additionBorder: string;
620
- additionBg: string;
621
- };
622
- searchKeyword: {
623
- hl: string;
624
- };
625
- prettylights: {
626
- syntax: {
627
- comment: string;
628
- constant: string;
629
- entity: string;
630
- storageModifierImport: string;
631
- entityTag: string;
632
- keyword: string;
633
- string: string;
634
- variable: string;
635
- brackethighlighterUnmatched: string;
636
- invalidIllegalText: string;
637
- invalidIllegalBg: string;
638
- carriageReturnText: string;
639
- carriageReturnBg: string;
640
- stringRegexp: string;
641
- markupList: string;
642
- markupHeading: string;
643
- markupItalic: string;
644
- markupBold: string;
645
- markupDeletedText: string;
646
- markupDeletedBg: string;
647
- markupInsertedText: string;
648
- markupInsertedBg: string;
649
- markupChangedText: string;
650
- markupChangedBg: string;
651
- markupIgnoredText: string;
652
- markupIgnoredBg: string;
653
- metaDiffRange: string;
654
- brackethighlighterAngle: string;
655
- sublimelinterGutterMark: string;
656
- constantOtherReferenceLink: string;
657
- };
658
- };
659
- codemirror: {
660
- text: string;
661
- bg: string;
662
- guttersBg: string;
663
- guttermarkerText: string;
664
- guttermarkerSubtleText: string;
665
- linenumberText: string;
666
- cursor: string;
667
- selectionBg: string;
668
- activelineBg: string;
669
- matchingbracketText: string;
670
- linesBg: string;
671
- syntax: {
672
- comment: string;
673
- constant: string;
674
- entity: string;
675
- keyword: string;
676
- storage: string;
677
- string: string;
678
- support: string;
679
- variable: string;
680
- };
681
- };
682
- checks: {
683
- bg: string;
684
- runBorderWidth: string;
685
- containerBorderWidth: string;
686
- textPrimary: string;
687
- textSecondary: string;
688
- textLink: string;
689
- btnIcon: string;
690
- btnHoverIcon: string;
691
- btnHoverBg: string;
692
- inputText: string;
693
- inputPlaceholderText: string;
694
- inputFocusText: string;
695
- inputBg: string;
696
- inputShadow: string;
697
- donutError: string;
698
- donutPending: string;
699
- donutSuccess: string;
700
- donutNeutral: string;
701
- dropdownText: string;
702
- dropdownBg: string;
703
- dropdownBorder: string;
704
- dropdownShadow: string;
705
- dropdownHoverText: string;
706
- dropdownHoverBg: string;
707
- dropdownBtnHoverText: string;
708
- dropdownBtnHoverBg: string;
709
- scrollbarThumbBg: string;
710
- headerLabelText: string;
711
- headerLabelOpenText: string;
712
- headerBorder: string;
713
- headerIcon: string;
714
- lineText: string;
715
- lineNumText: string;
716
- lineTimestampText: string;
717
- lineHoverBg: string;
718
- lineSelectedBg: string;
719
- lineSelectedNumText: string;
720
- lineDtFmText: string;
721
- lineDtFmBg: string;
722
- gateBg: string;
723
- gateText: string;
724
- gateWaitingText: string;
725
- stepHeaderOpenBg: string;
726
- stepErrorText: string;
727
- stepWarningText: string;
728
- loglineText: string;
729
- loglineNumText: string;
730
- loglineDebugText: string;
731
- loglineErrorText: string;
732
- loglineErrorNumText: string;
733
- loglineErrorBg: string;
734
- loglineWarningText: string;
735
- loglineWarningNumText: string;
736
- loglineWarningBg: string;
737
- loglineCommandText: string;
738
- loglineSectionText: string;
739
- ansi: {
740
- black: string;
741
- blackBright: string;
742
- white: string;
743
- whiteBright: string;
744
- gray: string;
745
- red: string;
746
- redBright: string;
747
- green: string;
748
- greenBright: string;
749
- yellow: string;
750
- yellowBright: string;
751
- blue: string;
752
- blueBright: string;
753
- magenta: string;
754
- magentaBright: string;
755
- cyan: string;
756
- cyanBright: string;
757
- };
758
- };
759
- project: {
760
- headerBg: string;
761
- sidebarBg: string;
762
- gradientIn: string;
763
- gradientOut: string;
764
- };
765
- mktg: {
766
- btn: {
767
- bg: string;
768
- shadow: {
769
- outline: string;
770
- focus: string;
771
- hover: string;
772
- hoverMuted: string;
773
- };
774
- };
775
- };
776
- control: {
777
- borderColor: {
778
- emphasis: string;
779
- };
780
- };
781
- avatar: {
782
- bg: string;
783
- border: string;
784
- stackFade: string;
785
- stackFadeMore: string;
786
- childShadow: string;
787
- };
788
- topicTag: {
789
- border: string;
790
- };
791
- counter: {
792
- border: string;
793
- };
794
- selectMenu: {
795
- backdropBorder: string;
796
- tapHighlight: string;
797
- tapFocusBg: string;
798
- };
799
- overlay: {
800
- shadow: string;
801
- backdrop: string;
802
- };
803
- header: {
804
- text: string;
805
- bg: string;
806
- divider: string;
807
- logo: string;
808
- };
809
- headerSearch: {
810
- bg: string;
811
- border: string;
812
- };
813
- sidenav: {
814
- selectedBg: string;
815
- };
816
- menu: {
817
- bgActive: string;
818
- };
819
- input: {
820
- disabledBg: string;
821
- };
822
- timeline: {
823
- badgeBg: string;
824
- };
825
- ansi: {
826
- black: string;
827
- blackBright: string;
828
- white: string;
829
- whiteBright: string;
830
- gray: string;
831
- red: string;
832
- redBright: string;
833
- green: string;
834
- greenBright: string;
835
- yellow: string;
836
- yellowBright: string;
837
- blue: string;
838
- blueBright: string;
839
- magenta: string;
840
- magentaBright: string;
841
- cyan: string;
842
- cyanBright: string;
843
- };
844
- btn: {
845
- text: string;
846
- bg: string;
847
- border: string;
848
- shadow: string;
849
- insetShadow: string;
850
- hoverBg: string;
851
- hoverBorder: string;
852
- activeBg: string;
853
- activeBorder: string;
854
- selectedBg: string;
855
- counterBg: string;
856
- primary: {
857
- text: string;
858
- bg: string;
859
- border: string;
860
- shadow: string;
861
- insetShadow: string;
862
- hoverBg: string;
863
- hoverBorder: string;
864
- selectedBg: string;
865
- selectedShadow: string;
866
- disabledText: string;
867
- disabledBg: string;
868
- disabledBorder: string;
869
- icon: string;
870
- counterBg: string;
871
- };
872
- outline: {
873
- text: string;
874
- hoverText: string;
875
- hoverBg: string;
876
- hoverBorder: string;
877
- hoverShadow: string;
878
- hoverInsetShadow: string;
879
- hoverCounterBg: string;
880
- selectedText: string;
881
- selectedBg: string;
882
- selectedBorder: string;
883
- selectedShadow: string;
884
- disabledText: string;
885
- disabledBg: string;
886
- disabledCounterBg: string;
887
- counterBg: string;
888
- counterFg: string;
889
- hoverCounterFg: string;
890
- disabledCounterFg: string;
891
- };
892
- danger: {
893
- text: string;
894
- hoverText: string;
895
- hoverBg: string;
896
- hoverBorder: string;
897
- hoverShadow: string;
898
- hoverInsetShadow: string;
899
- hoverCounterBg: string;
900
- selectedText: string;
901
- selectedBg: string;
902
- selectedBorder: string;
903
- selectedShadow: string;
904
- disabledText: string;
905
- disabledBg: string;
906
- disabledCounterBg: string;
907
- counterBg: string;
908
- icon: string;
909
- hoverIcon: string;
910
- counterFg: string;
911
- hoverCounterFg: string;
912
- disabledCounterFg: string;
913
- };
914
- inactive: {
915
- bg: string;
916
- text: string;
917
- };
918
- };
919
- underlinenav: {
920
- icon: string;
921
- borderHover: string;
922
- };
923
- actionListItem: {
924
- inlineDivider: string;
925
- default: {
926
- hoverBg: string;
927
- hoverBorder: string;
928
- activeBg: string;
929
- activeBorder: string;
930
- selectedBg: string;
931
- };
932
- danger: {
933
- hoverBg: string;
934
- activeBg: string;
935
- hoverText: string;
936
- };
937
- };
938
- switchTrack: {
939
- bg: string;
940
- hoverBg: string;
941
- activeBg: string;
942
- disabledBg: string;
943
- fg: string;
944
- disabledFg: string;
945
- border: string;
946
- checked: {
947
- bg: string;
948
- hoverBg: string;
949
- activeBg: string;
950
- fg: string;
951
- disabledFg: string;
952
- border: string;
953
- };
954
- };
955
- switchKnob: {
956
- bg: string;
957
- disabledBg: string;
958
- border: string;
959
- checked: {
960
- bg: string;
961
- disabledBg: string;
962
- border: string;
963
- };
964
- };
965
- segmentedControl: {
966
- bg: string;
967
- button: {
968
- bg: string;
969
- hover: {
970
- bg: string;
971
- };
972
- active: {
973
- bg: string;
974
- };
975
- selected: {
976
- border: string;
977
- };
978
- };
979
- };
980
- treeViewItem: {
981
- chevron: {
982
- hoverBg: string;
983
- };
984
- directory: {
985
- fill: string;
986
- };
987
- };
988
- fg: {
989
- default: string;
990
- muted: string;
991
- subtle: string;
992
- onEmphasis: string;
993
- };
994
- canvas: {
995
- default: string;
996
- overlay: string;
997
- inset: string;
998
- subtle: string;
999
- };
1000
- border: {
1001
- default: string;
1002
- muted: string;
1003
- subtle: string;
1004
- };
1005
- shadow: {
1006
- small: string;
1007
- medium: string;
1008
- large: string;
1009
- extraLarge: string;
1010
- };
1011
- neutral: {
1012
- emphasisPlus: string;
1013
- emphasis: string;
1014
- muted: string;
1015
- subtle: string;
1016
- };
1017
- accent: {
1018
- fg: string;
1019
- emphasis: string;
1020
- muted: string;
1021
- subtle: string;
1022
- };
1023
- success: {
1024
- fg: string;
1025
- emphasis: string;
1026
- muted: string;
1027
- subtle: string;
1028
- };
1029
- attention: {
1030
- fg: string;
1031
- emphasis: string;
1032
- muted: string;
1033
- subtle: string;
1034
- };
1035
- severe: {
1036
- fg: string;
1037
- emphasis: string;
1038
- muted: string;
1039
- subtle: string;
1040
- };
1041
- danger: {
1042
- fg: string;
1043
- emphasis: string;
1044
- muted: string;
1045
- subtle: string;
1046
- };
1047
- open: {
1048
- fg: string;
1049
- emphasis: string;
1050
- muted: string;
1051
- subtle: string;
1052
- };
1053
- closed: {
1054
- fg: string;
1055
- emphasis: string;
1056
- muted: string;
1057
- subtle: string;
1058
- };
1059
- done: {
1060
- fg: string;
1061
- emphasis: string;
1062
- muted: string;
1063
- subtle: string;
1064
- };
1065
- sponsors: {
1066
- fg: string;
1067
- emphasis: string;
1068
- muted: string;
1069
- subtle: string;
1070
- };
1071
- primer: {
1072
- fg: {
1073
- disabled: string;
1074
- };
1075
- canvas: {
1076
- backdrop: string;
1077
- sticky: string;
1078
- };
1079
- border: {
1080
- active: string;
1081
- contrast: string;
1082
- };
1083
- shadow: {
1084
- highlight: string;
1085
- inset: string;
1086
- };
1087
- };
1088
- scale: {
1089
- black: string;
1090
- white: string;
1091
- gray: string[];
1092
- blue: string[];
1093
- green: string[];
1094
- yellow: string[];
1095
- orange: string[];
1096
- red: string[];
1097
- purple: string[];
1098
- pink: string[];
1099
- coral: string[];
1100
- };
1101
- }>;
1102
- }>;
1103
- };
1104
- useRunningKernelIndex: number;
1105
- };
1106
- };
22
+ export declare const Jupyter: (props: JupyterProps) => import("react/jsx-runtime").JSX.Element;
1107
23
  export default Jupyter;