File tree Expand file tree Collapse file tree
packages/web-component-designer-widgets-wunderbaum Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "description" : " web-component-designer addon: Widgets using wunderbaum" ,
33 "name" : " @node-projects/web-component-designer-widgets-wunderbaum" ,
4- "version" : " 0.1.39 " ,
4+ "version" : " 0.1.40 " ,
55 "type" : " module" ,
66 "main" : " ./dist/index.js" ,
77 "author" : " jochen.kuehner@gmx.de" ,
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ export class TreeViewExtended extends BaseCustomWebComponentConstructorAppend im
6969 }
7070 div.isforced {
7171 background: orange;
72- pointer-events: all ;
72+ pointer-events: auto ;
7373 }` ;
7474
7575 static override readonly template = html `
@@ -363,13 +363,13 @@ export class TreeViewExtended extends BaseCustomWebComponentConstructorAppend im
363363 }
364364
365365 public set instanceServiceContainer ( value : InstanceServiceContainer ) {
366+ this . _selectionChangedHandler ?. dispose ( ) ;
367+ this . _contentChangedHandler ?. dispose ( ) ;
366368 this . _instanceServiceContainer = value ;
367- this . _selectionChangedHandler ?. dispose ( )
368369 if ( this . _instanceServiceContainer ) {
369370 this . _selectionChangedHandler = this . _instanceServiceContainer . selectionService . onSelectionChanged . on ( e => {
370371 this . selectionChanged ( e ) ;
371372 } ) ;
372- this . _contentChangedHandler ?. dispose ( )
373373 this . _contentChangedHandler = this . _instanceServiceContainer . contentService . onContentChanged . on ( e => {
374374 if ( e . changeType === 'changed' ) {
375375 for ( const d of e . designItems ) {
You can’t perform that action at this time.
0 commit comments