@stonecrop/utilities 0.6.3 → 0.7.1
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/composables/visibility/index.js +2 -2
- package/dist/index.js +1 -1
- package/dist/src/composables/visibility/index.d.ts +2 -2
- package/dist/src/index.d.ts +1 -1
- package/dist/utilities.d.ts +1 -1
- package/dist/utilities.js.map +1 -1
- package/dist/utilities.umd.cjs.map +1 -1
- package/package.json +15 -14
- package/src/composables/visibility/index.ts +2 -2
- package/src/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stonecrop/utilities",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -34,23 +34,24 @@
|
|
|
34
34
|
"src/*"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@vueuse/core": "^14.
|
|
38
|
-
"vue": "^3.5.
|
|
37
|
+
"@vueuse/core": "^14.1.0",
|
|
38
|
+
"vue": "^3.5.26",
|
|
39
|
+
"xstate": "^5.25.0"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
|
-
"@eslint/js": "^9.
|
|
42
|
-
"@microsoft/api-documenter": "^7.
|
|
43
|
-
"@rushstack/heft": "^1.1.
|
|
44
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
45
|
-
"eslint": "^9.
|
|
42
|
+
"@eslint/js": "^9.39.2",
|
|
43
|
+
"@microsoft/api-documenter": "^7.28.2",
|
|
44
|
+
"@rushstack/heft": "^1.1.7",
|
|
45
|
+
"@vitejs/plugin-vue": "^6.0.3",
|
|
46
|
+
"eslint": "^9.39.2",
|
|
46
47
|
"eslint-config-prettier": "^10.1.8",
|
|
47
|
-
"eslint-plugin-vue": "^10.
|
|
48
|
-
"globals": "^
|
|
48
|
+
"eslint-plugin-vue": "^10.6.2",
|
|
49
|
+
"globals": "^17.0.0",
|
|
49
50
|
"typescript": "^5.9.3",
|
|
50
|
-
"typescript-eslint": "^8.
|
|
51
|
-
"vite": "^7.
|
|
52
|
-
"vue-router": "^4.6.
|
|
53
|
-
"stonecrop-rig": "0.
|
|
51
|
+
"typescript-eslint": "^8.53.0",
|
|
52
|
+
"vite": "^7.3.1",
|
|
53
|
+
"vue-router": "^4.6.4",
|
|
54
|
+
"stonecrop-rig": "0.7.0"
|
|
54
55
|
},
|
|
55
56
|
"publishConfig": {
|
|
56
57
|
"access": "public"
|
|
@@ -25,8 +25,8 @@ export interface UseElementVisibilityOptions extends ConfigurableWindow {
|
|
|
25
25
|
* (Last verified: v10.9.0 on May 2, 2024)
|
|
26
26
|
*
|
|
27
27
|
* @see https://v9-13-0.vueuse.org/core/useElementVisibility
|
|
28
|
-
* @param element
|
|
29
|
-
* @param options
|
|
28
|
+
* @param element - Element to track visibility for
|
|
29
|
+
* @param options - Configuration options (window, scrollTarget)
|
|
30
30
|
*/
|
|
31
31
|
export function useElementVisibility(
|
|
32
32
|
element: MaybeComputedElementRef,
|