@stonecrop/utilities 0.7.0 → 0.7.2

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": "@stonecrop/utilities",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "author": {
@@ -51,7 +51,7 @@
51
51
  "typescript-eslint": "^8.53.0",
52
52
  "vite": "^7.3.1",
53
53
  "vue-router": "^4.6.4",
54
- "stonecrop-rig": "0.2.22"
54
+ "stonecrop-rig": "0.7.0"
55
55
  },
56
56
  "publishConfig": {
57
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,
package/src/index.ts CHANGED
@@ -5,7 +5,7 @@ export type * from './types'
5
5
 
6
6
  /**
7
7
  * Install all utility components
8
- * @param app - Vue app instance
8
+ * @param _app - Vue app instance
9
9
  * @public
10
10
  */
11
11
  function install(_app: App /* options */) {}