You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed suggestions in query editor when a pattern contains upper case letters
Uniformed number delimeter insertion in all places, added a HTML escaping and fixed pattern matching
Fixed testing a string is URL in struct view to accept dashes in a domain name
Fixed an unnecessary caught exception on the lib loading
Added darkmode attribute on a preloader container when dark mode is used
Removed dataField parameter in loadDataFromUrl() method, this parameter might be passed via options
Added option loadDataOptions in preloader's config to pass it as options to load data methods
Changed Widget constructor from Widget(container, defaultPage, options) to Widget(options), container and defaultPage values can be specified via options as options.container and options.defaultPage respectively
Changed App constructor from App(container, options) to App(options), container value can be specified via options as options.container
Changed App's default value for container option to document.body
styles option of Widget & App:
Added "inline" and "external" as aliases for "style" and "link" respectively
Added support for media attribute for inline styles in styles option of Widget & App, e.g.
newApp({styles: [{type: 'style',content: '...',media: 'all and (max-width: 1000px)'}]})