@cr8rcho/alkahest 0.1.13 → 0.1.14

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.
@@ -181,6 +181,11 @@
181
181
  <path d="M1,1 L8,5 L1,9" fill="none" stroke="var(--edge)" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" />
182
182
  </marker>
183
183
  </defs>
184
+ <!-- Screen-space hit target so empty areas fire pointer events (SVG's default
185
+ visiblePainted ignores unpainted regions, which on touch killed pan/pinch
186
+ anywhere but on a node). transparent fill is hittable; "none" is not. Sits
187
+ before #viewport so nodes paint on top and keep their own events. -->
188
+ <rect id="bg" x="0" y="0" width="100%" height="100%" fill="transparent" />
184
189
  <g id="viewport">
185
190
  <g id="edges"></g>
186
191
  <g id="nodes"></g>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cr8rcho/alkahest",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },