@aiszlab/relax 1.5.5 → 1.5.7
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/types/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export type { Nullable } from "./nullable";
|
|
2
2
|
export type { Partialable } from "./partialable";
|
|
3
|
+
export type { PartialTuple } from "./partial-tuple";
|
|
3
4
|
export type { Voidable } from "./voidable";
|
|
4
5
|
export type { RequiredIn } from "./required-in";
|
|
5
6
|
export type { ThenableEffectCallback } from "./thenable-effect-callback";
|
package/dist/utils/exclude.d.ts
CHANGED
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
* @example
|
|
8
8
|
* exclude([1, 2, 3, 4, 5], [2, 4]) // [1, 3, 5]
|
|
9
9
|
*/
|
|
10
|
-
export declare const exclude: <T, E = unknown>(value: Array<T>, _excludeBy: Array<E>) =>
|
|
10
|
+
export declare const exclude: <T, E = unknown>(value: Array<T>, _excludeBy: Array<E>) => (Exclude<T, E> extends never ? T : Exclude<T, E>)[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiszlab/relax",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.7",
|
|
4
4
|
"description": "react utils collection",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"jest-environment-jsdom": "^29.7.0",
|
|
53
53
|
"react": "^18.3.1",
|
|
54
54
|
"react-dom": "^18.3.1",
|
|
55
|
-
"rollup": "^4.24.
|
|
55
|
+
"rollup": "^4.24.4",
|
|
56
56
|
"typescript": "5.6.2"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|