Skip to content

Commit

Permalink
build(react-ui-validations): update deps (wip)
Browse files Browse the repository at this point in the history
  • Loading branch information
lossir committed Mar 2, 2021
1 parent 5f66bca commit cd3dece
Show file tree
Hide file tree
Showing 4 changed files with 432 additions and 412 deletions.
54 changes: 27 additions & 27 deletions packages/react-ui-validations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,56 +49,56 @@
},
"devDependencies": {
"@babel/core": "^7.12.8",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.7",
"@hot-loader/react-dom": "^16.11.0",
"@skbkontur/react-icons": "^3.2.1",
"@hot-loader/react-dom": "^17.0.1",
"@skbkontur/react-icons": "^4.4.0",
"@storybook/react": "5.3.14",
"@types/jest": "^24.0.23",
"@types/jest": "^26.0.20",
"@types/react": "16.14.4",
"@types/react-dom": "16.9.4",
"@types/react-dom": "16.9.11",
"@types/react-helmet": "^5.0.14",
"@types/react-router-dom": "^5.1.3",
"@types/react-syntax-highlighter": "^11.0.3",
"@types/styled-components": "^4.4.1",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/styled-components": "^5.1.7",
"@types/warning": "^3.0.0",
"babel-jest": "^24.9.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.6",
"core-js": "^3.4.8",
"cross-env": "^6.0.3",
"css-loader": "^3.3.0",
"core-js": "^3.9.1",
"cross-env": "^7.0.3",
"css-loader": "^5.1.1",
"dts-bundle": "^0.7.3",
"file-loader": "^5.0.2",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "24.9.0",
"jest": "26.6.3",
"jest-teamcity-reporter": "^0.9.0",
"less": "3.10.3",
"less-loader": "^5.0.0",
"less": "4.1.1",
"less-loader": "^8.0.0",
"markdown": "^0.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.14.2",
"raw-loader": "^4.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1",
"react-helmet": "^6.1.0",
"react-hot-loader": "^4.12.18",
"react-router-dom": "^5.1.2",
"react-syntax-highlighter": "11.0.2",
"react-syntax-highlighter": "15.4.3",
"rimraf": "^3.0.0",
"rollup": "^1.27.9",
"rollup": "^2.40.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-typescript2": "^0.30.0",
"shelljs": "^0.8.3",
"string-replace-loader": "^2.3.0",
"style-loader": "^1.0.1",
"styled-components": "^4.4.1",
"ts-jest": "^24.2.0",
"ts-loader": "6.2.1",
"string-replace-loader": "^3.0.1",
"style-loader": "^2.0.0",
"styled-components": "^5.2.1",
"ts-jest": "^26.5.2",
"ts-loader": "8.0.17",
"typescript": "4.1.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ describe('ComboBox', () => {

it('Enter on item', async () => {
wrapper
.find('input')
.find('label')
.simulate('keydown', { key: 'ArrowDown' })
.simulate('keydown', { key: 'Enter' });

Expand Down
2 changes: 1 addition & 1 deletion packages/react-ui/internal/DateSelect/DateSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class DateSelect extends React.Component<DateSelectProps, DateSelectState
private root: HTMLElement | null = null;
private itemsContainer: HTMLElement | null = null;
private listener: Nullable<ReturnType<typeof LayoutEvents.addListener>>;
private timeout: number | undefined;
private timeout: NodeJS.Timeout | undefined;
private longClickTimer = 0;
private setPositionRepeatTimer = 0;
private yearStep = 3;
Expand Down
Loading

0 comments on commit cd3dece

Please sign in to comment.