@jupyterlab/notebook 4.0.0-alpha.13 → 4.0.0-alpha.14
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/lib/actions.d.ts +3 -3
- package/lib/actions.js +207 -255
- package/lib/actions.js.map +1 -1
- package/lib/celllist.d.ts +4 -223
- package/lib/celllist.js +40 -373
- package/lib/celllist.js.map +1 -1
- package/lib/constants.d.ts +8 -0
- package/lib/constants.js +13 -0
- package/lib/constants.js.map +1 -0
- package/lib/executionindicator.js +2 -2
- package/lib/executionindicator.js.map +1 -1
- package/lib/index.d.ts +3 -2
- package/lib/index.js +3 -2
- package/lib/index.js.map +1 -1
- package/lib/model.d.ts +11 -187
- package/lib/model.js +28 -180
- package/lib/model.js.map +1 -1
- package/lib/modelfactory.d.ts +2 -17
- package/lib/modelfactory.js +1 -9
- package/lib/modelfactory.js.map +1 -1
- package/lib/notebooklspadapter.d.ts +19 -15
- package/lib/notebooklspadapter.js +56 -46
- package/lib/notebooklspadapter.js.map +1 -1
- package/lib/notebooktools.d.ts +5 -14
- package/lib/notebooktools.js +42 -54
- package/lib/notebooktools.js.map +1 -1
- package/lib/panel.d.ts +0 -4
- package/lib/panel.js +9 -17
- package/lib/panel.js.map +1 -1
- package/lib/searchprovider.d.ts +1 -1
- package/lib/searchprovider.js +54 -29
- package/lib/searchprovider.js.map +1 -1
- package/lib/toc.d.ts +12 -20
- package/lib/toc.js +118 -104
- package/lib/toc.js.map +1 -1
- package/lib/widget.d.ts +102 -90
- package/lib/widget.js +422 -386
- package/lib/widget.js.map +1 -1
- package/lib/windowing.d.ts +112 -0
- package/lib/windowing.js +244 -0
- package/lib/windowing.js.map +1 -0
- package/package.json +30 -29
- package/style/base.css +15 -10
package/lib/actions.d.ts
CHANGED
|
@@ -152,7 +152,7 @@ export declare namespace NotebookActions {
|
|
|
152
152
|
/**
|
|
153
153
|
* Move the selected cell(s) up.
|
|
154
154
|
*
|
|
155
|
-
* @param
|
|
155
|
+
* @param notebook - The target notebook widget.
|
|
156
156
|
*/
|
|
157
157
|
function moveUp(notebook: Notebook): void;
|
|
158
158
|
/**
|
|
@@ -293,12 +293,12 @@ export declare namespace NotebookActions {
|
|
|
293
293
|
*
|
|
294
294
|
* @param notebook - The target notebook widget
|
|
295
295
|
*/
|
|
296
|
-
function insertSameLevelHeadingAbove(notebook: Notebook): void
|
|
296
|
+
function insertSameLevelHeadingAbove(notebook: Notebook): Promise<void>;
|
|
297
297
|
/** Insert new heading of same level at end of current section.
|
|
298
298
|
*
|
|
299
299
|
* @param notebook - The target notebook widget
|
|
300
300
|
*/
|
|
301
|
-
function insertSameLevelHeadingBelow(notebook: Notebook): void
|
|
301
|
+
function insertSameLevelHeadingBelow(notebook: Notebook): Promise<void>;
|
|
302
302
|
/**
|
|
303
303
|
* Select the heading above the active cell or, if already at heading, collapse it.
|
|
304
304
|
*
|