@vueuse/nuxt 7.2.2 → 7.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.
Files changed (2) hide show
  1. package/indexes.json +36 -0
  2. package/package.json +2 -2
package/indexes.json CHANGED
@@ -721,6 +721,13 @@
721
721
  "category": "Sensors",
722
722
  "description": "reactive [bounding box](https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect) of an HTML element"
723
723
  },
724
+ {
725
+ "name": "useElementByPoint",
726
+ "package": "core",
727
+ "docs": "https://vueuse.org/core/useElementByPoint/",
728
+ "category": "Sensors",
729
+ "description": "reactive element by point"
730
+ },
724
731
  {
725
732
  "name": "useElementHover",
726
733
  "package": "core",
@@ -1032,6 +1039,14 @@
1032
1039
  "category": "Sensors",
1033
1040
  "description": "reports changes to the dimensions of an Element's content or the border-box"
1034
1041
  },
1042
+ {
1043
+ "name": "useScreenSafeArea",
1044
+ "package": "core",
1045
+ "component": true,
1046
+ "docs": "https://vueuse.org/core/useScreenSafeArea/",
1047
+ "category": "Browser",
1048
+ "description": "reactive `env(safe-area-inset-*)`"
1049
+ },
1035
1050
  {
1036
1051
  "name": "useScriptTag",
1037
1052
  "package": "core",
@@ -1088,6 +1103,13 @@
1088
1103
  "category": "State",
1089
1104
  "description": "reactive [LocalStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage)/[SessionStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage)"
1090
1105
  },
1106
+ {
1107
+ "name": "useStorageAsync",
1108
+ "package": "core",
1109
+ "docs": "https://vueuse.org/core/useStorageAsync/",
1110
+ "category": "State",
1111
+ "description": "reactive Storage in with async support"
1112
+ },
1091
1113
  {
1092
1114
  "name": "useSwipe",
1093
1115
  "package": "core",
@@ -1102,6 +1124,13 @@
1102
1124
  "category": "Component",
1103
1125
  "description": "shorthand for binding refs to template elements and components inside `v-for`"
1104
1126
  },
1127
+ {
1128
+ "name": "useTextSelection",
1129
+ "package": "core",
1130
+ "docs": "https://vueuse.org/core/useTextSelection/",
1131
+ "category": "Sensors",
1132
+ "description": "reactively track user text selection based on [`Window.getSelection`](https://developer.mozilla.org/en-US/docs/Web/API/Window/getSelection)"
1133
+ },
1105
1134
  {
1106
1135
  "name": "useThrottledRefHistory",
1107
1136
  "package": "core",
@@ -1318,6 +1347,13 @@
1318
1347
  "category": "@RxJS",
1319
1348
  "description": "use an Observable"
1320
1349
  },
1350
+ {
1351
+ "name": "useSubject",
1352
+ "package": "rxjs",
1353
+ "docs": "https://vueuse.org/rxjs/useSubject/",
1354
+ "category": "@RxJS",
1355
+ "description": "bind Subject to ref and propagate value changes both ways"
1356
+ },
1321
1357
  {
1322
1358
  "name": "useSubscription",
1323
1359
  "package": "rxjs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vueuse/nuxt",
3
- "version": "7.2.2",
3
+ "version": "7.3.0",
4
4
  "description": "VueUse Nuxt Module",
5
5
  "keywords": [
6
6
  "vue",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "homepage": "https://github.com/vueuse/vueuse/tree/main/packages/nuxt#readme",
36
36
  "dependencies": {
37
- "@vueuse/core": "7.2.2",
37
+ "@vueuse/core": "7.3.0",
38
38
  "local-pkg": "^0.4.0",
39
39
  "vue-demi": "*"
40
40
  }