@@ -27,7 +27,7 @@ import {
2727 Dialog ,
2828 showDialog
2929 } from '@jupyterlab/apputils' ;
30- import { Cell , CodeCell , MarkdownCell } from '@jupyterlab/cells' ;
30+ import { CodeCell , MarkdownCell } from '@jupyterlab/cells' ;
3131import { CodeEditor } from '@jupyterlab/codeeditor' ;
3232import { PathExt } from '@jupyterlab/coreutils' ;
3333import { IDocumentManager } from '@jupyterlab/docmanager' ;
@@ -39,7 +39,6 @@ import { copyIcon, addIcon, closeIcon } from '@jupyterlab/ui-components';
3939import { Message } from '@lumino/messaging' ;
4040import { Signal } from '@lumino/signaling' ;
4141import { Widget , PanelLayout } from '@lumino/widgets' ;
42- import { AttachedProperty } from '@lumino/properties' ;
4342
4443import { IDragEvent } from '@lumino/dragdrop' ;
4544import { MimeData } from '@lumino/coreutils' ;
@@ -65,11 +64,6 @@ const CODE_SNIPPET_ITEM = 'elyra-codeSnippet-item';
6564 */
6665const DROP_TARGET_CLASS = 'jp-mod-dropTarget' ;
6766
68- /**
69- * The class name added to notebook widget cells.
70- */
71- // const NB_CELL_CLASS = 'jp-Notebook-cell';
72-
7367/**
7468 * CodeSnippetDisplay props.
7569 */
@@ -455,7 +449,6 @@ export class CodeSnippetWidget extends ReactWidget {
455449 }
456450
457451 render ( ) : React . ReactElement {
458- console . log ( 'widget rendering' ) ;
459452 return (
460453 < div className = { CODE_SNIPPETS_CLASS } >
461454 < header className = { CODE_SNIPPETS_HEADER_CLASS } >
@@ -488,11 +481,6 @@ namespace Private {
488481 const data = mime . getData ( 'text/plain' ) ;
489482 return data ;
490483 }
491-
492- export const selectedProperty = new AttachedProperty < Cell , boolean > ( {
493- name : 'selected' ,
494- create : ( ) => false
495- } ) ;
496484
497485 /**
498486 * A custom panel layout for the notebook.
0 commit comments