@zag-js/popover 0.1.5 → 0.1.6

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/dist/index.js CHANGED
@@ -593,7 +593,11 @@ var import_popper = require("@zag-js/popper");
593
593
 
594
594
  // ../../types/dist/index.mjs
595
595
  function createNormalizer(fn) {
596
- return { button: fn, label: fn, input: fn, output: fn, element: fn };
596
+ return new Proxy({}, {
597
+ get() {
598
+ return fn;
599
+ }
600
+ });
597
601
  }
598
602
  var normalizeProp = createNormalizer((v) => v);
599
603