@zag-js/slider 0.0.0-dev-20220522174316 → 0.0.0-dev-20220525062850

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
@@ -673,7 +673,11 @@ var dom = {
673
673
 
674
674
  // ../../types/dist/index.mjs
675
675
  function createNormalizer(fn) {
676
- return { button: fn, label: fn, input: fn, output: fn, element: fn };
676
+ return new Proxy({}, {
677
+ get() {
678
+ return fn;
679
+ }
680
+ });
677
681
  }
678
682
  var normalizeProp = createNormalizer((v) => v);
679
683