@woven-canvas/vue 0.1.4 → 0.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woven-canvas/vue",
3
- "version": "0.1.4",
3
+ "version": "0.1.7",
4
4
  "description": "Vue 3 components for woven-canvas infinite canvas",
5
5
  "repository": {
6
6
  "type": "git",
@@ -51,17 +51,17 @@
51
51
  "@tiptap/extensions": "^3.15.3",
52
52
  "@tiptap/vue-3": "^3.15.3",
53
53
  "@vueuse/core": "^14.0.0",
54
- "@woven-ecs/canvas-store": "^1.0.4",
54
+ "@woven-ecs/canvas-store": "^1.0.5",
55
55
  "perfect-freehand": "^1.2.2",
56
56
  "vue": "^3.5.26",
57
57
  "@woven-canvas/asset-sync": "^0.1.0",
58
- "@woven-canvas/plugin-canvas-controls": "^0.1.0",
59
- "@woven-canvas/core": "^0.1.1",
60
- "@woven-canvas/plugin-arrows": "^0.1.0",
61
- "@woven-canvas/plugin-selection": "^0.1.0",
62
58
  "@woven-canvas/math": "^0.1.0",
59
+ "@woven-canvas/plugin-arrows": "^0.1.0",
60
+ "@woven-canvas/plugin-canvas-controls": "^0.1.0",
63
61
  "@woven-canvas/plugin-eraser": "^0.1.0",
64
- "@woven-canvas/plugin-pen": "^0.1.0"
62
+ "@woven-canvas/plugin-pen": "^0.1.0",
63
+ "@woven-canvas/plugin-selection": "^0.1.0",
64
+ "@woven-canvas/core": "^0.1.3"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@vitejs/plugin-vue": "^5.2.4",
package/src/theme.css CHANGED
@@ -33,6 +33,11 @@
33
33
 
34
34
  /* UI settings */
35
35
  --wov-font-family: "Figtree", sans-serif;
36
+
37
+ /* Safe area inset for mobile devices with notches/home bars.
38
+ * Set this to env(safe-area-inset-bottom, 0px) for full-screen mobile apps.
39
+ * Example: .wov-root { --wov-safe-area-bottom: env(safe-area-inset-bottom, 0px); } */
40
+ --wov-safe-area-bottom: 0px;
36
41
  --wov-menu-border-radius: 12px;
37
42
  --wov-menu-tooltip-border-radius: 6px;
38
43
  --wov-transition-duration: 150ms;
@@ -50,6 +55,7 @@
50
55
  .wov-root {
51
56
  font-family: var(--wov-font-family);
52
57
  touch-action: none;
58
+ -webkit-tap-highlight-color: transparent;
53
59
  }
54
60
 
55
61
  /* Normalize SVG display to prevent style leakage from parent document */