Skip to content

Releases: panoply/qvp

v0.3.2

23 May 21:50
Compare
Choose a tag to compare

v0.3.2

Added new qvp.isTouch method. This will return a boolean indicating whether or not we are within a touch device.

NOTE

v0.3.1 was upstreamed because I missed the typings.

v0.3.0

22 May 04:19
Compare
Choose a tag to compare

QVP ~ v0.3.0

QVP now support event method emitters. This allows for listening for query changes across a project. Events increased the distribution size of a few hundred bytes. The internal architecture was also refined.

Breaking Changes

The import approach has also changed. The exports as a default and all named exports are now methods of the default qvp.

// DEPRECATED
// import * as qvp from 'qvp'; 

// IMPORT AS DEFAULT
import qvp from 'qvp'; 
``

Breaking changed shipped in the release. The `screens()` method is now deprecated. Screens should be defined on the default import which exports a function, for example:

```ts
import qvp from 'qvp';

// DEPRECATED
qvp.screens( /* screens*/ );  

// USE THE DEFAULT
qvp(/* screens*/ );