@eslint-react/shared 2.0.0-next.43 → 2.0.0-next.45

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/dist/index.d.ts +3 -3
  2. package/package.json +4 -4
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { _ } from '@eslint-react/eff';
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.43",
3
+ "version": "2.0.0-next.45",
4
4
  "description": "ESLint React's Shared constants and functions.",
5
5
  "homepage": "https://github.com/Rel1cx/eslint-react",
6
6
  "bugs": {
@@ -29,9 +29,9 @@
29
29
  "dependencies": {
30
30
  "@typescript-eslint/utils": "^8.34.0",
31
31
  "ts-pattern": "^5.7.1",
32
- "zod": "^3.25.63",
33
- "@eslint-react/eff": "2.0.0-next.43",
34
- "@eslint-react/kit": "2.0.0-next.43"
32
+ "zod": "^3.25.64",
33
+ "@eslint-react/eff": "2.0.0-next.45",
34
+ "@eslint-react/kit": "2.0.0-next.45"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@tsconfig/node22": "^22.0.2",