@abraca/nuxt 0.1.1 → 0.2.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
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=4.0.0"
6
6
  },
7
- "version": "0.1.1",
7
+ "version": "0.2.0",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "3.6.1"
@@ -19,7 +19,7 @@ const {
19
19
  moveWindow,
20
20
  resizeWindow
21
21
  } = useWindowManager();
22
- const win = computed(() => windows.value.get(props.windowId));
22
+ const win = computed(() => windows.get(props.windowId));
23
23
  const isAnimatingOut = ref(false);
24
24
  const animStyle = ref({});
25
25
  watch(() => win.value?.minimized, (minimized, wasMinimized) => {
@@ -1,7 +1,7 @@
1
1
  <script setup>
2
2
  import { computed } from "vue";
3
3
  const { windows } = useWindowManager();
4
- const windowIds = computed(() => [...windows.value.keys()]);
4
+ const windowIds = computed(() => [...windows.keys()]);
5
5
  </script>
6
6
 
7
7
  <template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abraca/nuxt",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "First-class Nuxt module for the Abracadabra CRDT collaboration platform",
5
5
  "repository": "abracadabra/abracadabra-nuxt",
6
6
  "license": "MIT",