@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.mjs CHANGED
@@ -570,7 +570,11 @@ import { getPlacementStyles } from "@zag-js/popper";
570
570
 
571
571
  // ../../types/dist/index.mjs
572
572
  function createNormalizer(fn) {
573
- return { button: fn, label: fn, input: fn, output: fn, element: fn };
573
+ return new Proxy({}, {
574
+ get() {
575
+ return fn;
576
+ }
577
+ });
574
578
  }
575
579
  var normalizeProp = createNormalizer((v) => v);
576
580