Skip to content

Commit

Permalink
build(react-ui-validations): update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
lossir committed Feb 28, 2021
1 parent a1bbd23 commit 9fd3001
Show file tree
Hide file tree
Showing 5 changed files with 367 additions and 437 deletions.
6 changes: 5 additions & 1 deletion packages/react-ui-validations/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@
"import/no-default-export": 0
}
}
]
],
"rules": {
"@typescript-eslint/ban-types": 0,
"@typescript-eslint/explicit-module-boundary-types": 0
}
}
76 changes: 38 additions & 38 deletions packages/react-ui-validations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,57 +48,57 @@
"warning": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.8",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@hot-loader/react-dom": "^16.11.0",
"@skbkontur/react-icons": "^3.2.1",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@hot-loader/react-dom": "^17.0.1",
"@skbkontur/react-icons": "^4.4.0",
"@storybook/react": "5.3.14",
"@types/jest": "^24.0.23",
"@types/react": "16.9.16",
"@types/react-dom": "16.9.4",
"@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/jest": "^26.0.20",
"@types/react": "16.14.0",
"@types/react-dom": "^16.9.11",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.1.7",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/styled-components": "^5.1.7",
"@types/warning": "^3.0.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"core-js": "^3.4.8",
"cross-env": "^6.0.3",
"css-loader": "^3.3.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"core-js": "^3.8.3",
"cross-env": "^7.0.3",
"css-loader": "^5.0.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": "^4.5.1",
"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": "^7.3.0",
"markdown": "^0.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.14.2",
"raw-loader": "^4.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"raw-loader": "^4.0.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-helmet": "^6.1.0",
"react-hot-loader": "^4.12.18",
"react-router-dom": "^5.1.2",
"react-syntax-highlighter": "11.0.2",
"rimraf": "^3.0.0",
"rollup": "^1.27.9",
"react-syntax-highlighter": "15.4.3",
"rimraf": "^3.0.2",
"rollup": "^2.38.2",
"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",
"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",
"rollup-plugin-typescript2": "^0.29.0",
"shelljs": "^0.8.4",
"string-replace-loader": "^3.0.1",
"style-loader": "^2.0.0",
"styled-components": "^5.2.1",
"ts-jest": "^26.5.0",
"ts-loader": "8.0.14",
"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: ReturnType<typeof setTimeout> | undefined;
private longClickTimer = 0;
private setPositionRepeatTimer = 0;
private yearStep = 3;
Expand Down
Loading

0 comments on commit 9fd3001

Please sign in to comment.