@witchcraft/layout 0.2.1 → 0.3.0

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@witchcraft/layout",
3
3
  "configKey": "witchcraftLayout",
4
- "version": "0.2.1",
4
+ "version": "0.3.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "unknown"
@@ -1 +1 @@
1
- export const dragContextInjectionKey = Symbol("dragContext");
1
+ export const dragContextInjectionKey = Symbol.for("@witchcraft/layout:dragContext");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@witchcraft/layout",
3
3
  "description": "Headless layout manager.",
4
- "version": "0.2.1",
4
+ "version": "0.3.0",
5
5
  "main": "./dist/runtime/index.js",
6
6
  "type": "module",
7
7
  "sideEffects": false,
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@witchcraft/nuxt-utils": "^0.3.6",
37
- "@witchcraft/ui": "^0.4.4"
37
+ "@witchcraft/ui": "^0.5.0"
38
38
  },
39
39
  "peerDependenciesMeta": {
40
40
  "@witchcraft/ui": {
@@ -61,7 +61,7 @@
61
61
  "@vitejs/plugin-vue": "^6.0.7",
62
62
  "@vitest/coverage-v8": "^4.1.0",
63
63
  "@witchcraft/nuxt-utils": "^0.3.6",
64
- "@witchcraft/ui": "^0.4.4",
64
+ "@witchcraft/ui": "^0.5.0",
65
65
  "concurrently": "^9.2.1",
66
66
  "cross-env": "^10.1.0",
67
67
  "fast-glob": "^3.3.3",
@@ -174,4 +174,4 @@ export interface UseFramesContext {
174
174
  }
175
175
 
176
176
 
177
- export const dragContextInjectionKey = Symbol("dragContext") as InjectionKey<UseFramesContext>
177
+ export const dragContextInjectionKey = Symbol.for("@witchcraft/layout:dragContext") as InjectionKey<UseFramesContext>