Skip to content

Commit

Permalink
Merge pull request #598 from capricorn86/task/534-typeerror-activeele…
Browse files Browse the repository at this point in the history
…mentdetachevent-is-not-a-function

Task/534 typeerror activeelementdetachevent is not a function
  • Loading branch information
capricorn86 committed Oct 7, 2022
2 parents 6d9c43a + 7459321 commit fb96afe
Show file tree
Hide file tree
Showing 40 changed files with 8,456 additions and 32,141 deletions.
13,280 changes: 7,726 additions & 5,554 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -38,7 +38,7 @@
"eslint-plugin-prettier": "^4.0.0",
"husky": "2.3.0",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"lerna": "^5.6.1",
"prettier": "^2.6.0",
"semver": "^7.3.5",
"ts-jest": "^27.1.3",
Expand All @@ -47,4 +47,4 @@
"engines": {
"node": ">=12.13"
}
}
}
6 changes: 4 additions & 2 deletions packages/global-registrator/test/react/ReactComponent.tsx
Expand Up @@ -3,11 +3,13 @@ import React from 'react';
/**
*
*/
export default class ReactComponent extends React.Component<{}, void> {
export default class ReactComponent extends React.Component<{}, {}> {
public $props = {};

/**
* @override
*/
public render(): void {
public render(): React.ReactElement {
return <div>Test</div>;
}
}

0 comments on commit fb96afe

Please sign in to comment.