@onereach/ui-components-common 23.1.5-beta.5553.0 → 23.1.5-beta.5554.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[]) => typeof items;
4
+ export declare const exclude: <T>(value: T, items: T[]) => T[];
@@ -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[]) => typeof items;
4
+ export declare const include: <T>(value: T, items: T[]) => T[];
@@ -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 Array<unknown>;
4
+ export declare const isArray: (value: unknown) => value is unknown[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/ui-components-common",
3
- "version": "23.1.5-beta.5553.0",
3
+ "version": "23.1.5-beta.5554.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": "^23.1.5-beta.5553.0",
62
+ "@onereach/styles": "^23.1.5-beta.5554.0",
63
63
  "@vueuse/core": "9.13.0"
64
64
  },
65
65
  "devDependencies": {