resizable app option.closeOnInput prop to TJSGlassPane which fires close:glasspane event on pointer down event.modalOptions.closeOnInput to TJSDialog data / close modal dialog on glasspane input.replace function instead of accessor setting of all data.defaultCloseAnimation option not taking when set to false w/ no transition defined.DynReducerHelper.filters.regexObjectQuery . for each depth. accessWarn when set to true will log warnings when property lookups fail. TJSDialog. There is a new replace method on the data field rather than directly setting an object to data. This change was due to that Typescript / creating declarations and API docs didn't like the types to differ for the getter and setter accessors. This likely doesn't actually cause any problems for folks as you'd have to explicitly set the data property in a custom dialog constructor. Instead of this.data = { ... } change things to this.data.replace({ ... });TJSDialogData instance now has reactive accessors for all standard dialog data. For instance you can do this.data.content = 'New Content'; or this.data.content = { class: MySvelteComponent }; and the dialog will reactively update.