@eslint-react/shared 2.0.0-next.40 → 2.0.0-next.44
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/index.d.ts +3 -3
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { unit } from '@eslint-react/eff';
|
|
2
2
|
import { RuleContext } from '@eslint-react/kit';
|
|
3
3
|
import { z } from 'zod/v4';
|
|
4
4
|
|
|
@@ -854,7 +854,7 @@ declare const DEFAULT_ESLINT_SETTINGS: {
|
|
|
854
854
|
interface CustomComponentPropNormalized {
|
|
855
855
|
name: string;
|
|
856
856
|
as: string;
|
|
857
|
-
defaultValue?: string |
|
|
857
|
+
defaultValue?: string | unit;
|
|
858
858
|
}
|
|
859
859
|
interface CustomComponentNormalized {
|
|
860
860
|
name: string;
|
|
@@ -868,7 +868,7 @@ interface ESLintReactSettingsNormalized {
|
|
|
868
868
|
additionalHooks: CustomHooks;
|
|
869
869
|
components: CustomComponentNormalized[];
|
|
870
870
|
importSource: string;
|
|
871
|
-
polymorphicPropName: string |
|
|
871
|
+
polymorphicPropName: string | unit;
|
|
872
872
|
skipImportCheck: boolean;
|
|
873
873
|
strict: boolean;
|
|
874
874
|
version: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/shared",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.44",
|
|
4
4
|
"description": "ESLint React's Shared constants and functions.",
|
|
5
5
|
"homepage": "https://github.com/Rel1cx/eslint-react",
|
|
6
6
|
"bugs": {
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"./package.json"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@typescript-eslint/utils": "^8.
|
|
30
|
+
"@typescript-eslint/utils": "^8.34.0",
|
|
31
31
|
"ts-pattern": "^5.7.1",
|
|
32
|
-
"zod": "^3.25.
|
|
33
|
-
"@eslint-react/
|
|
34
|
-
"@eslint-react/
|
|
32
|
+
"zod": "^3.25.64",
|
|
33
|
+
"@eslint-react/eff": "2.0.0-next.44",
|
|
34
|
+
"@eslint-react/kit": "2.0.0-next.44"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@tsconfig/node22": "^22.0.2",
|