File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -885,6 +885,11 @@ export class JupyterLuminoWidget extends Widget {
885
885
private _view : DOMWidgetView ;
886
886
}
887
887
888
+ /**
889
+ * @deprecated Use {@link JupyterLuminoWidget} instead (Since 8.0).
890
+ */
891
+ export const JupyterPhosphorWidget = JupyterLuminoWidget ;
892
+
888
893
export class JupyterLuminoPanelWidget extends Panel {
889
894
constructor ( options : JupyterLuminoWidget . IOptions & Panel . IOptions ) {
890
895
const view = options . view ;
@@ -1167,6 +1172,14 @@ export class DOMWidgetView extends WidgetView {
1167
1172
this . el . removeAttribute ( 'tabIndex' ) ;
1168
1173
}
1169
1174
}
1175
+
1176
+ /**
1177
+ * @deprecated Use {@link luminoWidget} instead (Since 8.0).
1178
+ */
1179
+ get pWidget ( ) : Widget {
1180
+ return this . luminoWidget ;
1181
+ }
1182
+
1170
1183
el : HTMLElement ; // Override typing
1171
1184
'$el' : any ;
1172
1185
luminoWidget : Widget ;
You can’t perform that action at this time.
0 commit comments