@3cr/viewer-browser 0.0.108 → 0.0.109
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/Viewer3CR.mjs
CHANGED
|
@@ -11937,9 +11937,7 @@ const b1 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
11937
11937
|
},
|
|
11938
11938
|
set(u) {
|
|
11939
11939
|
let c = u;
|
|
11940
|
-
c[0] > l.max && (c[0] = l.max), c[1] > l.max && (c[1] = l.max), c[0] < l.min && (c[0] = l.min), c[1] < l.min && (c[1] = l.min), console.log(c), console.log(l);
|
|
11941
|
-
const f = [Math.floor(c[0]), Math.floor(c[1])];
|
|
11942
|
-
o("update:value", f);
|
|
11940
|
+
c[0] > l.max && (c[0] = l.max), c[1] > l.max && (c[1] = l.max), c[0] < l.min && (c[0] = l.min), c[1] < l.min && (c[1] = l.min), console.log(c), console.log(l), o("update:value", [c[0], c[1]]);
|
|
11943
11941
|
}
|
|
11944
11942
|
});
|
|
11945
11943
|
return de(
|
|
@@ -12021,7 +12019,7 @@ const x1 = { class: "single-slider-selector" }, E1 = { class: "text-caption" },
|
|
|
12021
12019
|
},
|
|
12022
12020
|
set(i) {
|
|
12023
12021
|
let r = i;
|
|
12024
|
-
i > l.max && (r = l.max), i < l.min && (r = l.min), o("update:value",
|
|
12022
|
+
i > l.max && (r = l.max), i < l.min && (r = l.min), o("update:value", r);
|
|
12025
12023
|
}
|
|
12026
12024
|
});
|
|
12027
12025
|
return t({
|