@vueuse/components 13.4.0 → 13.5.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/index.d.mts +2 -1
  2. package/package.json +3 -3
package/index.d.mts CHANGED
@@ -27,7 +27,8 @@ type MaybeElement = HTMLElement | SVGElement | VueInstance | undefined | null;
27
27
 
28
28
  interface OnClickOutsideOptions<Controls extends boolean = false> extends ConfigurableWindow {
29
29
  /**
30
- * List of elements that should not trigger the event.
30
+ * List of elements that should not trigger the event,
31
+ * provided as Refs or CSS Selectors.
31
32
  */
32
33
  ignore?: MaybeRefOrGetter<(MaybeElementRef | string)[]>;
33
34
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vueuse/components",
3
3
  "type": "module",
4
- "version": "13.4.0",
4
+ "version": "13.5.0",
5
5
  "description": "Renderless components for VueUse",
6
6
  "author": "Jacob Clevenger<https://github.com/wheatjs>",
7
7
  "license": "MIT",
@@ -38,8 +38,8 @@
38
38
  "vue": "^3.5.0"
39
39
  },
40
40
  "dependencies": {
41
- "@vueuse/core": "13.4.0",
42
- "@vueuse/shared": "13.4.0"
41
+ "@vueuse/core": "13.5.0",
42
+ "@vueuse/shared": "13.5.0"
43
43
  },
44
44
  "scripts": {
45
45
  "build": "rollup --config=rollup.config.ts --configPlugin=rollup-plugin-esbuild",