@zag-js/slider 0.0.0-dev-20220522174316 → 0.0.0-dev-20220526103846
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 +5 -1
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +2 -2
- package/package.json +4 -4
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 {
|
|
676
|
+
return new Proxy({}, {
|
|
677
|
+
get() {
|
|
678
|
+
return fn;
|
|
679
|
+
}
|
|
680
|
+
});
|
|
677
681
|
}
|
|
678
682
|
var normalizeProp = createNormalizer((v) => v);
|
|
679
683
|
|