@modernpoacher/cogs 0.1.239 → 0.1.241

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/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  declare global {
2
2
  namespace CogsTypes {
3
- export type OnChangeType = () => void
3
+ export type onEventType = () => void
4
4
 
5
5
  export interface ErrorDefinitionType {
6
6
  type: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modernpoacher/cogs",
3
- "version": "0.1.239",
3
+ "version": "0.1.241",
4
4
  "description": "Cogs",
5
5
  "keywords": [
6
6
  "Cogs",
@@ -49,13 +49,16 @@
49
49
  "@babel/preset-react": "^7.26.3",
50
50
  "@babel/register": "^7.25.9",
51
51
  "@modernpoacher/design-system": "1.1.31",
52
- "@sequencemedia/eslint-config-standard": "^0.2.39",
52
+ "@sequencemedia/eslint-config-standard": "^0.2.40",
53
53
  "@sequencemedia/eslint-config-typescript": "^0.1.56",
54
- "@storybook/addon-actions": "7.6.20",
55
- "@storybook/addon-essentials": "7.6.20",
56
- "@storybook/addon-links": "7.6.20",
57
- "@storybook/react": "7.6.20",
58
- "@storybook/react-webpack5": "7.6.20",
54
+ "@storybook/addon-actions": "^8.6.4",
55
+ "@storybook/addon-essentials": "^8.6.4",
56
+ "@storybook/addon-links": "^8.6.4",
57
+ "@storybook/addon-webpack5-compiler-babel": "^3.0.5",
58
+ "@storybook/manager-api": "^8.6.4",
59
+ "@storybook/react": "^8.6.4",
60
+ "@storybook/react-webpack5": "^8.6.4",
61
+ "@storybook/theming": "^8.6.4",
59
62
  "@types/react": "18.3.13",
60
63
  "@typescript-eslint/eslint-plugin": "^8.26.0",
61
64
  "@typescript-eslint/parser": "^8.26.0",
@@ -85,7 +88,7 @@
85
88
  "remove-files-webpack-plugin": "^1.5.0",
86
89
  "sass": "^1.85.1",
87
90
  "sass-loader": "^16.0.5",
88
- "storybook": "7.6.20",
91
+ "storybook": "^8.6.4",
89
92
  "webpack": "^5.98.0",
90
93
  "webpack-cli": "^6.0.1"
91
94
  },
@@ -11,7 +11,7 @@ declare module '#cogs/cogs' {
11
11
  disabled: boolean
12
12
  readOnly: boolean
13
13
  placeholder: string
14
- onChange: CogsTypes.OnChangeType
14
+ onChange: CogsTypes.onEventType
15
15
  fieldRef: object
16
16
  }
17
17
 
@@ -10,7 +10,7 @@ declare module '#cogs/components/field' {
10
10
  tabIndex: number
11
11
  accessKey: string
12
12
  placeholder: string
13
- onChange: CogsTypes.OnChangeType
13
+ onChange: CogsTypes.onEventType
14
14
  fieldRef: object
15
15
  }
16
16
 
package/tsconfig.json CHANGED
@@ -4,9 +4,9 @@
4
4
  "target": "ESNext",
5
5
  "allowJs": true,
6
6
  "checkJs": false,
7
- "allowSyntheticDefaultImports": true,
8
7
  "noEmit": true,
9
8
  "strict": true,
9
+ "allowSyntheticDefaultImports": true,
10
10
  "isolatedModules": true,
11
11
  "baseUrl": "."
12
12
  },