@adamjanicki/ui 1.7.3 → 1.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adamjanicki/ui",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "description": "Basic UI components and hooks for React in TypeScript",
5
5
  "type": "module",
6
6
  "main": "./index.js",
@@ -190,7 +190,7 @@ export default function transformVfx(vfx) {
190
190
  var classes = [];
191
191
  Object.entries(vfx).forEach(function (_a) {
192
192
  var key = _a[0], value = _a[1];
193
- if (value !== undefined) {
193
+ if (value) {
194
194
  var transformer = transformers[key];
195
195
  transformer(classes, vfx);
196
196
  }