@scm-manager/ui-types 4.0.0-REACT19 → 4.0.0-REACT19-20250910-113025

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scm-manager/ui-types",
3
- "version": "4.0.0-REACT19",
3
+ "version": "4.0.0-REACT19-20250910-113025",
4
4
  "description": "Typescript types for SCM-Manager related Objects",
5
5
  "main": "src/index.ts",
6
6
  "files": [
@@ -16,7 +16,7 @@
16
16
  "depcheck": "depcheck"
17
17
  },
18
18
  "devDependencies": {
19
- "@scm-manager/eslint-config": "^2.17.0",
19
+ "@scm-manager/eslint-config": "^2.18.2",
20
20
  "@scm-manager/prettier-config": "^2.12.0",
21
21
  "@scm-manager/tsconfig": "^2.13.0",
22
22
  "minimatch": "^10.0.3"
@@ -33,4 +33,4 @@
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  }
36
- }
36
+ }
package/src/Action.ts CHANGED
@@ -16,6 +16,7 @@
16
16
 
17
17
  export type Action = {
18
18
  type: string;
19
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
19
20
  payload?: any;
20
21
  itemId?: string | number;
21
22
  resetPending?: boolean;
package/src/General.ts CHANGED
@@ -18,7 +18,10 @@ import { Config } from "./Config";
18
18
  import { HalRepresentation } from "./hal";
19
19
 
20
20
  export type ConfigChangeHandler = <Name extends Exclude<keyof Config, keyof HalRepresentation>>(
21
+ // eslint-disable-next-line no-unused-vars
21
22
  isValid: boolean,
23
+ // eslint-disable-next-line no-unused-vars
22
24
  changedValue: Config[Name],
23
- name: Name
25
+ // eslint-disable-next-line no-unused-vars
26
+ name: Name,
24
27
  ) => void;