@jupyterlab/settingeditor 3.4.4 → 3.4.5

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.
@@ -1,13 +1,6 @@
1
- import { ISignal } from '@lumino/signaling';
2
- import { SplitPanel as SPanel } from '@lumino/widgets';
1
+ import { SplitPanel } from '@lumino/widgets';
3
2
  /**
4
- * A deprecated split panel that will be removed when the phosphor split panel
5
- * supports a handle moved signal. See https://github.com/phosphorjs/phosphor/issues/297.
3
+ * @deprecated alias for `SplitPanel` from `@lumino/widgets`, will be removed in JupyterLab 4.0.
4
+ * Please use `import { SplitPanel } from '@lumino/widgets';` instead.
6
5
  */
7
- export declare class SplitPanel extends SPanel {
8
- /**
9
- * Emits when the split handle has moved.
10
- */
11
- readonly handleMoved: ISignal<any, void>;
12
- handleEvent(event: Event): void;
13
- }
6
+ export { SplitPanel };
package/lib/splitpanel.js CHANGED
@@ -2,25 +2,10 @@
2
2
  | Copyright (c) Jupyter Development Team.
3
3
  | Distributed under the terms of the Modified BSD License.
4
4
  |----------------------------------------------------------------------------*/
5
- import { Signal } from '@lumino/signaling';
6
- import { SplitPanel as SPanel } from '@lumino/widgets';
5
+ import { SplitPanel } from '@lumino/widgets';
7
6
  /**
8
- * A deprecated split panel that will be removed when the phosphor split panel
9
- * supports a handle moved signal. See https://github.com/phosphorjs/phosphor/issues/297.
7
+ * @deprecated alias for `SplitPanel` from `@lumino/widgets`, will be removed in JupyterLab 4.0.
8
+ * Please use `import { SplitPanel } from '@lumino/widgets';` instead.
10
9
  */
11
- export class SplitPanel extends SPanel {
12
- constructor() {
13
- super(...arguments);
14
- /**
15
- * Emits when the split handle has moved.
16
- */
17
- this.handleMoved = new Signal(this);
18
- }
19
- handleEvent(event) {
20
- super.handleEvent(event);
21
- if (event.type === 'mouseup') {
22
- this.handleMoved.emit(undefined);
23
- }
24
- }
25
- }
10
+ export { SplitPanel };
26
11
  //# sourceMappingURL=splitpanel.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"splitpanel.js","sourceRoot":"","sources":["../src/splitpanel.ts"],"names":[],"mappings":"AAAA;;;+EAG+E;AAE/E,OAAO,EAAW,MAAM,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,UAAU,IAAI,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEvD;;;GAGG;AACH,MAAM,OAAO,UAAW,SAAQ,MAAM;IAAtC;;QACE;;WAEG;QACM,gBAAW,GAAuB,IAAI,MAAM,CAAY,IAAI,CAAC,CAAC;IASzE,CAAC;IAPC,WAAW,CAAC,KAAY;QACtB,KAAK,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;QAEzB,IAAI,KAAK,CAAC,IAAI,KAAK,SAAS,EAAE;YAC3B,IAAI,CAAC,WAAiC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SACzD;IACH,CAAC;CACF"}
1
+ {"version":3,"file":"splitpanel.js","sourceRoot":"","sources":["../src/splitpanel.ts"],"names":[],"mappings":"AAAA;;;+EAG+E;AAE/E,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAE7C;;;GAGG;AACH,OAAO,EAAE,UAAU,EAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/settingeditor",
3
- "version": "3.4.4",
3
+ "version": "3.4.5",
4
4
  "description": "The JupyterLab default setting editor interface",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -36,15 +36,15 @@
36
36
  "watch": "tsc -b --watch"
37
37
  },
38
38
  "dependencies": {
39
- "@jupyterlab/application": "^3.4.4",
40
- "@jupyterlab/apputils": "^3.4.4",
41
- "@jupyterlab/codeeditor": "^3.4.4",
42
- "@jupyterlab/inspector": "^3.4.4",
43
- "@jupyterlab/rendermime": "^3.4.4",
44
- "@jupyterlab/settingregistry": "^3.4.4",
45
- "@jupyterlab/statedb": "^3.4.4",
46
- "@jupyterlab/translation": "^3.4.4",
47
- "@jupyterlab/ui-components": "^3.4.4",
39
+ "@jupyterlab/application": "^3.4.5",
40
+ "@jupyterlab/apputils": "^3.4.5",
41
+ "@jupyterlab/codeeditor": "^3.4.5",
42
+ "@jupyterlab/inspector": "^3.4.5",
43
+ "@jupyterlab/rendermime": "^3.4.5",
44
+ "@jupyterlab/settingregistry": "^3.4.5",
45
+ "@jupyterlab/statedb": "^3.4.5",
46
+ "@jupyterlab/translation": "^3.4.5",
47
+ "@jupyterlab/ui-components": "^3.4.5",
48
48
  "@lumino/algorithm": "^1.9.0",
49
49
  "@lumino/commands": "^1.19.0",
50
50
  "@lumino/coreutils": "^1.11.0",