@toriistudio/v0-playground 0.2.6 → 0.2.7
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 +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -572,6 +572,8 @@ var ControlPanel = () => {
|
|
|
572
572
|
"div",
|
|
573
573
|
{
|
|
574
574
|
className: `order-2 md:order-1 w-full md:h-auto p-2 md:p-4 bg-stone-900 font-mono text-stone-300 transition-opacity duration-300 ${!isHydrated ? "opacity-0" : "opacity-100"}`,
|
|
575
|
+
onPointerDown: (e) => e.stopPropagation(),
|
|
576
|
+
onTouchStart: (e) => e.stopPropagation(),
|
|
575
577
|
style: {
|
|
576
578
|
width: "100%",
|
|
577
579
|
height: "auto",
|
package/dist/index.mjs
CHANGED
|
@@ -546,6 +546,8 @@ var ControlPanel = () => {
|
|
|
546
546
|
"div",
|
|
547
547
|
{
|
|
548
548
|
className: `order-2 md:order-1 w-full md:h-auto p-2 md:p-4 bg-stone-900 font-mono text-stone-300 transition-opacity duration-300 ${!isHydrated ? "opacity-0" : "opacity-100"}`,
|
|
549
|
+
onPointerDown: (e) => e.stopPropagation(),
|
|
550
|
+
onTouchStart: (e) => e.stopPropagation(),
|
|
549
551
|
style: {
|
|
550
552
|
width: "100%",
|
|
551
553
|
height: "auto",
|