@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 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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toriistudio/v0-playground",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "V0 Playground",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",