@modernpoacher/gremlins 1.0.185 → 1.0.187

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/eslint.config.mjs CHANGED
@@ -68,7 +68,7 @@ export default [
68
68
  },
69
69
  /**
70
70
  * Storybook config
71
- */
71
+ */ // @ts-ignore
72
72
  ...storybookPlugin.configs['flat/recommended'],
73
73
  /**
74
74
  * Standard config
package/index.d.mts CHANGED
@@ -7,11 +7,6 @@ declare global {
7
7
  checked?: boolean
8
8
  ) => void
9
9
 
10
- export interface FieldErrorType {
11
- text: string
12
- href: string
13
- }
14
-
15
10
  export namespace Super {
16
11
  export namespace Gremlins {
17
12
  export interface FieldGremlinProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modernpoacher/gremlins",
3
- "version": "1.0.185",
3
+ "version": "1.0.187",
4
4
  "description": "Gremlins",
5
5
  "keywords": [
6
6
  "Gremlins",
@@ -43,7 +43,8 @@
43
43
  "test": "npm run test:mocha && npm run test:jest",
44
44
  "test:jest": "cross-env NODE_ENV=test jest",
45
45
  "test:mocha": "cross-env NODE_ENV=test mocha test --recursive",
46
- "transform": "cross-env DEBUG=@modernpoacher/gremlins* .storybook/transform.sh"
46
+ "transform": "cross-env DEBUG=@modernpoacher/gremlins* .storybook/transform.sh",
47
+ "type-check": "tsc --noEmit"
47
48
  },
48
49
  "dependencies": {
49
50
  "classnames": "^2.5.1",
@@ -56,12 +57,12 @@
56
57
  "@babel/preset-react": "^7.28.5",
57
58
  "@babel/register": "^7.28.3",
58
59
  "@modernpoacher/design-system": "2.0.17",
59
- "@sequencemedia/eslint-config-standard": "^0.2.97",
60
- "@sequencemedia/eslint-config-typescript": "^0.1.167",
61
- "@storybook/addon-docs": "^10.0.1",
62
- "@storybook/addon-links": "^10.0.1",
60
+ "@sequencemedia/eslint-config-standard": "^0.2.98",
61
+ "@sequencemedia/eslint-config-typescript": "^0.1.168",
62
+ "@storybook/addon-docs": "^10.0.2",
63
+ "@storybook/addon-links": "^10.0.2",
63
64
  "@storybook/addon-webpack5-compiler-babel": "^3.0.6",
64
- "@storybook/react-webpack5": "^10.0.1",
65
+ "@storybook/react-webpack5": "^10.0.2",
65
66
  "@testing-library/jest-dom": "^6.9.1",
66
67
  "@testing-library/react": "^16.3.0",
67
68
  "@types/babel__register": "^7.17.3",
@@ -80,7 +81,7 @@
80
81
  "cross-env": "^10.1.0",
81
82
  "eslint": "^9.38.0",
82
83
  "eslint-plugin-react": "^7.37.5",
83
- "eslint-plugin-storybook": "^10.0.1",
84
+ "eslint-plugin-storybook": "^10.0.2",
84
85
  "globals": "^16.4.0",
85
86
  "husky": "^9.1.7",
86
87
  "jest": "^30.2.0",
@@ -98,12 +99,12 @@
98
99
  "prop-types": "^15.8.1",
99
100
  "react": "^19.2.0",
100
101
  "react-component-instance": "^0.0.120",
101
- "react-component-snapshot": "^0.0.160",
102
+ "react-component-snapshot": "^0.0.161",
102
103
  "react-dom": "^19.2.0",
103
104
  "remove-files-webpack-plugin": "^1.5.0",
104
105
  "sass": "^1.93.2",
105
106
  "sass-loader": "^16.0.6",
106
- "storybook": "^10.0.1",
107
+ "storybook": "^10.0.2",
107
108
  "stylelint": "^16.25.0",
108
109
  "stylelint-config-recommended-scss": "^16.0.2",
109
110
  "stylelint-scss": "^6.12.1",
@@ -1,6 +1,6 @@
1
1
  /**
2
- * @typedef {CogsTypes.Components.Field.ValueProps} ValueProps
3
- * @typedef {CogsTypes.Components.Field.Number.NumberProps} NumberProps
2
+ * @typedef {GremlinsTypes.Components.Field.ValueProps} ValueProps
3
+ * @typedef {GremlinsTypes.Components.Field.Number.NumberProps} NumberProps
4
4
  */
5
5
 
6
6
  /**
@@ -33,7 +33,6 @@ export default class Radio extends CheckGremlin {
33
33
  }
34
34
 
35
35
  /**
36
- * @param {string} name
37
36
  * @param {string | string[]} [value]
38
37
  * @param {boolean} [checked]
39
38
  */
@@ -46,7 +45,6 @@ export default class Radio extends CheckGremlin {
46
45
  }
47
46
 
48
47
  /**
49
- * @param {string} name
50
48
  * @param {string | string[]} [value]
51
49
  * @param {boolean} [checked]
52
50
  */