Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
plantain-00 committed May 23, 2020
1 parent 2b3ae7a commit ec01558
Show file tree
Hide file tree
Showing 8 changed files with 500 additions and 560 deletions.
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,43 +28,43 @@
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-node-resolve": "7.1.3",
"@rollup/plugin-commonjs": "12.0.0",
"@rollup/plugin-node-resolve": "8.0.0",
"@types/jasmine": "3.5.10",
"@types/puppeteer": "2.0.1",
"@typescript-eslint/eslint-plugin": "2.30.0",
"@typescript-eslint/parser": "2.30.0",
"autoprefixer": "9.7.6",
"@types/puppeteer": "3.0.0",
"@typescript-eslint/eslint-plugin": "3.0.0",
"@typescript-eslint/parser": "3.0.0",
"autoprefixer": "9.8.0",
"clean-css-cli": "4.3.0",
"clean-scripts": "1.12.3",
"clean-scripts": "1.15.0",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-plantain": "0.1.2",
"file2variable-cli": "1.9.2",
"file2variable-cli": "1.10.1",
"github-fork-ribbon-css": "0.2.3",
"http-server": "0.12.3",
"jasmine": "3.5.0",
"karma": "5.0.4",
"karma": "5.0.9",
"karma-chrome-launcher": "3.1.0",
"karma-firefox-launcher": "1.3.0",
"karma-jasmine": "3.1.1",
"karma-webpack": "4.0.2",
"lerna": "3.20.2",
"lerna": "3.21.0",
"less": "3.11.1",
"markdownlint-cli": "0.22.0",
"markdownlint-cli": "0.23.1",
"no-unused-export": "1.10.3",
"postcss-cli": "7.1.1",
"puppeteer": "3.0.2",
"rev-static": "3.4.5",
"puppeteer": "3.1.0",
"rev-static": "3.5.1",
"rimraf": "3.0.2",
"rollup": "2.7.6",
"rollup": "2.10.7",
"rollup-plugin-uglify": "6.0.4",
"stylelint": "13.3.3",
"stylelint": "13.5.0",
"stylelint-config-standard": "20.0.0",
"type-coverage": "2.4.3",
"typescript": "3.8.3",
"watch-then-execute": "1.1.3",
"type-coverage": "2.6.1",
"typescript": "3.9.3",
"watch-then-execute": "1.1.4",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
],
"dependencies": {
"@types/node": "*",
"tslib": "1"
"tslib": "2"
}
}
1 change: 1 addition & 0 deletions packages/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export interface Select2Option {
value: Select2Value;
label: string;
disabled?: boolean;
// eslint-disable-next-line @typescript-eslint/ban-types
component?: string | Function;
classes?: string;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/react/demo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ for (const groupOrOption of data8) {
}
}

class Main extends React.Component<{}, {}> {
class Main extends React.Component<unknown, unknown> {
private data1 = data1
private data2 = data2
private data3 = data3
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"select2-component": "^5.9.0"
},
"devDependencies": {
"@types/react": "16.9.34",
"@types/react-dom": "16.9.7"
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8"
}
}
2 changes: 1 addition & 1 deletion packages/react/src/auto-complete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class AutoComplete extends React.PureComponent<{
keydown?: (e: React.KeyboardEvent) => void;
keyup?: (e: React.KeyboardEvent) => void;
keypress?: (e: React.KeyboardEvent) => void;
}, {}> {
}, unknown> {
private hoveringValue?: common.Select2Value | null = null
private option: common.Select2Option | common.Select2Option[] | null = null
private isOpen = false
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/select2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class Select2 extends React.PureComponent<{
minimumInputLength?: number;
maximumInputLength?: number;
keepSearchText?: boolean;
}, {}> {
}, unknown> {
private hoveringValue?: common.Select2Value | null = null
private option: common.Select2Option | common.Select2Option[] | null = null
private isOpen = false
Expand Down

0 comments on commit ec01558

Please sign in to comment.