@onereach/ui-components-common 25.3.4-beta.5804.0 → 25.3.4-beta.5811.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.
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Returns a copy of the `items` array, excluding the `value`.
3
3
  */
4
- export declare const exclude: <T>(value: T, items: T[]) => T[];
4
+ export declare const exclude: <T>(value: T, items: T[]) => typeof items;
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Returns a copy of the `items` array, including the `value`.
3
3
  */
4
- export declare const include: <T>(value: T, items: T[]) => T[];
4
+ export declare const include: <T>(value: T, items: T[]) => typeof items;
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Determines whether the `value` is an array literal.
3
3
  */
4
- export declare const isArray: (value: unknown) => value is unknown[];
4
+ export declare const isArray: (value: unknown) => value is Array<unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/ui-components-common",
3
- "version": "25.3.4-beta.5804.0",
3
+ "version": "25.3.4-beta.5811.0",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -59,7 +59,7 @@
59
59
  "dev": "vite build --watch"
60
60
  },
61
61
  "dependencies": {
62
- "@onereach/styles": "^25.3.4-beta.5804.0",
62
+ "@onereach/styles": "^25.3.4-beta.5811.0",
63
63
  "@vueuse/core": "11.3.0"
64
64
  },
65
65
  "devDependencies": {