@beeq/react 1.4.0 → 1.5.1

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,13 +1,13 @@
1
1
  {
2
2
  "name": "@beeq/react",
3
- "version": "1.4.0",
3
+ "version": "1.5.1",
4
4
  "license": "Apache-2.0",
5
5
  "description": "React specific wrapper for BEEQ Design System components",
6
6
  "main": "./src/index.js",
7
7
  "module": "./src/index.js",
8
8
  "types": "./src/index.d.ts",
9
9
  "dependencies": {
10
- "@beeq/core": "^1.3.2"
10
+ "@beeq/core": "^1.4.0"
11
11
  },
12
12
  "peerDependencies": {
13
13
  "react": ">=18.0.0",
@@ -18,9 +18,5 @@
18
18
  "type": "git",
19
19
  "url": "https://github.com/Endava/BEEQ"
20
20
  },
21
- "publishConfig": {
22
- "access": "public",
23
- "registry": "https://registry.npmjs.org"
24
- },
25
21
  "type": "module"
26
- }
22
+ }
@@ -11,6 +11,6 @@ export declare const transformReactEventName: (eventNameSuffix: string) => strin
11
11
  export declare const isCoveredByReact: (eventNameSuffix: string) => boolean;
12
12
  export declare const syncEvent: (node: Element & {
13
13
  __events?: {
14
- [key: string]: (e: Event) => any;
14
+ [key: string]: ((e: Event) => any) | undefined;
15
15
  };
16
16
  }, eventName: string, newEventHandler?: (e: Event) => any) => void;