Releases: panoply/qvp
Releases · panoply/qvp
v0.3.2
v0.3.0
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*/ );