Browse Source

Bump deps (#1849)

Jaco Greeff 5 years ago
parent
commit
a7404079cb
52 changed files with 483 additions and 479 deletions
  1. 14 14
      package.json
  2. 1 1
      packages/app-123code/package.json
  3. 3 3
      packages/app-accounts/package.json
  4. 1 1
      packages/app-address-book/package.json
  5. 1 1
      packages/app-claims/package.json
  6. 1 1
      packages/app-claims/src/index.tsx
  7. 2 2
      packages/app-contracts/package.json
  8. 1 1
      packages/app-contracts/src/ABI.tsx
  9. 1 1
      packages/app-contracts/src/Codes/Add.tsx
  10. 1 1
      packages/app-contracts/src/Codes/Upload.tsx
  11. 1 1
      packages/app-contracts/src/Contracts/Add.tsx
  12. 1 1
      packages/app-contracts/src/Deploy.tsx
  13. 1 1
      packages/app-contracts/src/index.tsx
  14. 1 1
      packages/app-council/package.json
  15. 1 1
      packages/app-council/src/Motions/Propose.tsx
  16. 1 1
      packages/app-council/src/Overview/Vote.tsx
  17. 1 1
      packages/app-dashboard/package.json
  18. 1 1
      packages/app-democracy/package.json
  19. 1 1
      packages/app-explorer/package.json
  20. 1 1
      packages/app-extrinsics/package.json
  21. 1 1
      packages/app-generic-asset/package.json
  22. 1 1
      packages/app-generic-asset/src/AssetRow.tsx
  23. 1 1
      packages/app-js/package.json
  24. 1 1
      packages/app-parachains/package.json
  25. 1 1
      packages/app-settings/package.json
  26. 1 1
      packages/app-staking/package.json
  27. 1 1
      packages/app-staking/src/Actions/Account/SetControllerAccount.tsx
  28. 1 1
      packages/app-staking/src/Actions/Account/SetRewardDestination.tsx
  29. 1 1
      packages/app-staking/src/Actions/NewStake.tsx
  30. 1 1
      packages/app-storage/package.json
  31. 1 1
      packages/app-sudo/package.json
  32. 1 1
      packages/app-toolbox/package.json
  33. 1 1
      packages/app-transfer/package.json
  34. 1 1
      packages/app-treasury/package.json
  35. 1 1
      packages/apps-routing/package.json
  36. 3 3
      packages/apps/package.json
  37. 3 3
      packages/react-api/package.json
  38. 1 1
      packages/react-api/src/Api.tsx
  39. 1 1
      packages/react-api/src/with/call.tsx
  40. 14 14
      packages/react-components/package.json
  41. 1 1
      packages/react-components/src/AddressRow.tsx
  42. 1 1
      packages/react-components/src/CodeRow.tsx
  43. 1 1
      packages/react-components/src/Collection.tsx
  44. 1 1
      packages/react-components/src/InputBalanceBonded.tsx
  45. 1 1
      packages/react-components/src/InputNumber.tsx
  46. 1 1
      packages/react-components/src/TxComponent.tsx
  47. 1 1
      packages/react-components/src/Voting.tsx
  48. 1 1
      packages/react-params/package.json
  49. 1 1
      packages/react-query/package.json
  50. 2 2
      packages/react-signer/package.json
  51. 1 1
      packages/react-signer/src/ApiSigner.ts
  52. 398 394
      yarn.lock

+ 14 - 14
package.json

@@ -10,14 +10,14 @@
     "packages/*"
   ],
   "resolutions": {
-    "@polkadot/api": "^0.96.0-beta.33",
-    "@polkadot/api-contract": "^0.96.0-beta.33",
-    "@polkadot/keyring": "^1.7.0-beta.4",
-    "@polkadot/types": "^0.96.0-beta.33",
-    "@polkadot/util": "^1.7.0-beta.4",
-    "@polkadot/util-crypto": "^1.7.0-beta.4",
+    "@polkadot/api": "^0.96.0-beta.34",
+    "@polkadot/api-contract": "^0.96.0-beta.34",
+    "@polkadot/keyring": "^1.7.0-beta.5",
+    "@polkadot/types": "^0.96.0-beta.34",
+    "@polkadot/util": "^1.7.0-beta.5",
+    "@polkadot/util-crypto": "^1.7.0-beta.5",
     "babel-core": "^7.0.0-bridge.0",
-    "typescript": "^3.6.4"
+    "typescript": "^3.7.2"
   },
   "scripts": {
     "analyze": "yarn run build && cd packages/apps && yarn run source-map-explorer build/main.*.js",
@@ -34,21 +34,21 @@
     "start": "cd packages/apps && webpack --config webpack.config.js"
   },
   "devDependencies": {
-    "@babel/core": "^7.6.4",
-    "@babel/runtime": "^7.6.3",
-    "@polkadot/dev-react": "^0.32.0-beta.12",
-    "@polkadot/ts": "^0.1.83",
-    "autoprefixer": "^9.6.5",
+    "@babel/core": "^7.7.0",
+    "@babel/runtime": "^7.7.1",
+    "@polkadot/dev-react": "^0.32.0-beta.13",
+    "@polkadot/ts": "^0.1.84",
+    "autoprefixer": "^9.7.1",
     "empty": "^0.10.1",
     "html-loader": "^0.5.5",
     "i18next-scanner": "^2.10.3",
     "markdown-loader": "^5.1.0",
-    "postcss": "^7.0.18",
+    "postcss": "^7.0.21",
     "postcss-clean": "^1.1.0",
     "postcss-flexbugs-fixes": "^4.1.0",
     "postcss-import": "^12.0.0",
     "postcss-loader": "^3.0.0",
-    "postcss-nested": "^4.1.2",
+    "postcss-nested": "^4.2.1",
     "postcss-sass": "^0.4.1",
     "postcss-simple-vars": "^5.0.0",
     "precss": "^4.0.0",

+ 1 - 1
packages/app-123code/package.json

@@ -10,7 +10,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52"
   }
 }

+ 3 - 3
packages/app-accounts/package.json

@@ -10,13 +10,13 @@
   "contributors": [],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
-    "@polkadot/react-qr": "^0.47.0-beta.2",
+    "@polkadot/react-qr": "^0.47.0-beta.3",
     "@types/file-saver": "^2.0.0",
     "@types/yargs": "^13.0.2",
     "babel-plugin-module-resolver": "^3.1.1",
-    "detect-browser": "^4.7.0",
+    "detect-browser": "^4.8.0",
     "file-saver": "^2.0.0",
     "yargs": "^14.2.0"
   }

+ 1 - 1
packages/app-address-book/package.json

@@ -10,7 +10,7 @@
   "contributors": [],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52"
   }
 }

+ 1 - 1
packages/app-claims/package.json

@@ -11,7 +11,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52"
   }
 }

+ 1 - 1
packages/app-claims/src/index.tsx

@@ -75,7 +75,7 @@ const Signature = styled.textarea`
 `;
 
 class App extends TxModal<Props, State> {
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     this.defaultState = {

+ 2 - 2
packages/app-contracts/package.json

@@ -10,8 +10,8 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
-    "@polkadot/api-contract": "^0.96.0-beta.33",
+    "@babel/runtime": "^7.7.1",
+    "@polkadot/api-contract": "^0.96.0-beta.34",
     "@polkadot/react-components": "^0.37.0-beta.52"
   }
 }

+ 1 - 1
packages/app-contracts/src/ABI.tsx

@@ -45,7 +45,7 @@ class ABI extends React.PureComponent<Props, State> {
     isError: false
   };
 
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     const { contractAbi, isError, isRequired } = this.props;

+ 1 - 1
packages/app-contracts/src/Codes/Add.tsx

@@ -18,7 +18,7 @@ interface State extends ContractModalState {
 }
 
 class Add extends ContractModal<Props, State> {
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
     this.defaultState = {
       ...this.defaultState,

+ 1 - 1
packages/app-contracts/src/Codes/Upload.tsx

@@ -26,7 +26,7 @@ interface State extends ContractModalState {
 }
 
 class Upload extends ContractModal<Props, State> {
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     this.defaultState = {

+ 1 - 1
packages/app-contracts/src/Contracts/Add.tsx

@@ -24,7 +24,7 @@ interface State extends ContractModalState {
 }
 
 class Add extends ContractModal<Props, State> {
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
     this.defaultState = {
       ...this.defaultState,

+ 1 - 1
packages/app-contracts/src/Deploy.tsx

@@ -44,7 +44,7 @@ class Deploy extends ContractModal<Props, State> {
 
   public isContract = true;
 
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     this.defaultState = {

+ 1 - 1
packages/app-contracts/src/index.tsx

@@ -42,7 +42,7 @@ class App extends React.PureComponent<Props, State> {
     updated: 0
   };
 
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     store.on('new-code', this.triggerUpdate);

+ 1 - 1
packages/app-council/package.json

@@ -10,7 +10,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
     "@polkadot/react-query": "^0.37.0-beta.52"
   }

+ 1 - 1
packages/app-council/src/Motions/Propose.tsx

@@ -24,7 +24,7 @@ interface State extends TxModalState {
 }
 
 class Propose extends TxModal<Props, State> {
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     this.defaultState = {

+ 1 - 1
packages/app-council/src/Overview/Vote.tsx

@@ -85,7 +85,7 @@ class Vote extends TxModal<Props, State> {
     return [...new Array(length).keys()].map((): boolean => false);
   }
 
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     this.defaultState = {

+ 1 - 1
packages/app-dashboard/package.json

@@ -10,7 +10,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/apps-routing": "^0.37.0-beta.52",
     "@polkadot/react-components": "^0.37.0-beta.52"
   }

+ 1 - 1
packages/app-democracy/package.json

@@ -10,7 +10,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
     "@polkadot/react-query": "^0.37.0-beta.52"
   }

+ 1 - 1
packages/app-explorer/package.json

@@ -10,7 +10,7 @@
   "contributors": [],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52"
   }
 }

+ 1 - 1
packages/app-extrinsics/package.json

@@ -10,7 +10,7 @@
   "contributors": [],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
     "@polkadot/react-params": "^0.37.0-beta.52",
     "@polkadot/react-signer": "^0.37.0-beta.52"

+ 1 - 1
packages/app-generic-asset/package.json

@@ -10,7 +10,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52"
   }
 }

+ 1 - 1
packages/app-generic-asset/src/AssetRow.tsx

@@ -16,7 +16,7 @@ type Props = I18nProps & RowProps & {
 }
 
 class AssetRow extends Row<Props, RowState> {
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     this.state.name = this.props.defaultName || 'New Asset';

+ 1 - 1
packages/app-js/package.json

@@ -10,7 +10,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
     "snappyjs": "^0.6.0"
   }

+ 1 - 1
packages/app-parachains/package.json

@@ -10,7 +10,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
     "@polkadot/react-query": "^0.37.0-beta.52"
   }

+ 1 - 1
packages/app-settings/package.json

@@ -10,7 +10,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
     "@polkadot/react-query": "^0.37.0-beta.52",
     "query-string": "^6.8.3"

+ 1 - 1
packages/app-staking/package.json

@@ -10,7 +10,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/app-explorer": "^0.37.0-beta.52",
     "@polkadot/react-components": "^0.37.0-beta.52",
     "@polkadot/react-query": "^0.37.0-beta.52"

+ 1 - 1
packages/app-staking/src/Actions/Account/SetControllerAccount.tsx

@@ -26,7 +26,7 @@ interface State {
 }
 
 class SetControllerAccount extends TxComponent<Props, State> {
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     this.state = {

+ 1 - 1
packages/app-staking/src/Actions/Account/SetRewardDestination.tsx

@@ -22,7 +22,7 @@ interface State {
 }
 
 class SetRewardDestination extends TxComponent<Props, State> {
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     this.state = {

+ 1 - 1
packages/app-staking/src/Actions/NewStake.tsx

@@ -35,7 +35,7 @@ interface State {
 class NewStake extends TxComponent<Props, State> {
   public state: State;
 
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     this.state = {

+ 1 - 1
packages/app-storage/package.json

@@ -10,7 +10,7 @@
   "contributors": [],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
     "@polkadot/react-params": "^0.37.0-beta.52"
   }

+ 1 - 1
packages/app-sudo/package.json

@@ -11,7 +11,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52"
   }
 }

+ 1 - 1
packages/app-toolbox/package.json

@@ -10,7 +10,7 @@
   "contributors": [],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52"
   }
 }

+ 1 - 1
packages/app-transfer/package.json

@@ -10,7 +10,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
     "@polkadot/react-query": "^0.37.0-beta.52"
   }

+ 1 - 1
packages/app-treasury/package.json

@@ -11,7 +11,7 @@
   ],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
     "@polkadot/react-query": "^0.37.0-beta.52"
   }

+ 1 - 1
packages/apps-routing/package.json

@@ -10,6 +10,6 @@
   "contributors": [],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3"
+    "@babel/runtime": "^7.7.1"
   }
 }

+ 3 - 3
packages/apps/package.json

@@ -12,11 +12,11 @@
   "contributors": [],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/polyfill": "^7.6.0",
-    "@babel/runtime": "^7.6.3",
+    "@babel/polyfill": "^7.7.0",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
     "@polkadot/react-signer": "^0.37.0-beta.52",
-    "@polkadot/ui-assets": "^0.47.0-beta.2",
+    "@polkadot/ui-assets": "^0.47.0-beta.3",
     "query-string": "^6.8.3"
   }
 }

+ 3 - 3
packages/react-api/package.json

@@ -30,9 +30,9 @@
   },
   "homepage": "https://github.com/polkadot-js/ui/tree/master/packages/ui-reactive#readme",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
-    "@polkadot/api": "^0.96.0-beta.33",
-    "@polkadot/extension-dapp": "^0.14.0-beta.1",
+    "@babel/runtime": "^7.7.1",
+    "@polkadot/api": "^0.96.0-beta.34",
+    "@polkadot/extension-dapp": "^0.14.0-beta.2",
     "edgeware-node-types": "^1.0.10",
     "rxjs-compat": "^6.5.3"
   }

+ 1 - 1
packages/react-api/src/Api.tsx

@@ -53,7 +53,7 @@ export { api };
 export default class Api extends React.PureComponent<Props, State> {
   public state: State = {} as unknown as State;
 
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     const { queuePayload, queueSetTxStatus, url } = props;

+ 1 - 1
packages/react-api/src/with/call.tsx

@@ -62,7 +62,7 @@ export default function withCall<P extends ApiProps> (endpoint: string, {
 
       private timerId = -1;
 
-      public constructor (props: P) {
+      constructor (props: P) {
         super(props);
 
         const [, section, method] = endpoint.split('.');

+ 14 - 14
packages/react-components/package.json

@@ -10,29 +10,29 @@
   "contributors": [],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
-    "@polkadot/keyring": "^1.7.0-beta.4",
+    "@babel/runtime": "^7.7.1",
+    "@polkadot/keyring": "^1.7.0-beta.5",
     "@polkadot/react-api": "^0.37.0-beta.52",
-    "@polkadot/react-identicon": "^0.47.0-beta.2",
+    "@polkadot/react-identicon": "^0.47.0-beta.3",
     "@polkadot/react-query": "^0.37.0-beta.52",
-    "@polkadot/ui-keyring": "^0.47.0-beta.2",
-    "@polkadot/ui-settings": "^0.47.0-beta.2",
-    "@types/chart.js": "^2.8.7",
+    "@polkadot/ui-keyring": "^0.47.0-beta.3",
+    "@polkadot/ui-settings": "^0.47.0-beta.3",
+    "@types/chart.js": "^2.8.10",
     "@types/i18next": "^13.0.0",
     "@types/react-copy-to-clipboard": "^4.3.0",
-    "@types/react-router-dom": "^5.1.0",
-    "@types/react-tooltip": "^3.9.3",
-    "@types/styled-components": "^4.1.19",
+    "@types/react-router-dom": "^5.1.2",
+    "@types/react-tooltip": "^3.11.0",
+    "@types/styled-components": "^4.1.21",
     "@types/styled-theming": "^2.2.2",
-    "chart.js": "^2.8.0",
+    "chart.js": "^2.9.2",
     "codeflask": "^1.4.0",
-    "i18next": "^17.3.0",
-    "i18next-browser-languagedetector": "^4.0.0",
-    "i18next-xhr-backend": "^3.2.0",
+    "i18next": "^19.0.0",
+    "i18next-browser-languagedetector": "^4.0.1",
+    "i18next-xhr-backend": "^3.2.2",
     "react-chartjs-2": "^2.8.0",
     "react-copy-to-clipboard": "^5.0.1",
     "react-dropzone": "^10.1.10",
-    "react-i18next": "^10.13.1",
+    "react-i18next": "^11.0.1",
     "react-markdown": "^4.2.2",
     "react-router": "^5.1.2",
     "react-router-dom": "^5.1.2",

+ 1 - 1
packages/react-components/src/AddressRow.tsx

@@ -46,7 +46,7 @@ const ICON_SIZE = 48;
 class AddressRow extends Row<ApiProps & Props, State> {
   public state: State;
 
-  public constructor (props: ApiProps & Props) {
+  constructor (props: ApiProps & Props) {
     super(props);
 
     this.state = this.createState();

+ 1 - 1
packages/react-components/src/CodeRow.tsx

@@ -51,7 +51,7 @@ const DEFAULT_ADDR = '5'.padEnd(16, 'x');
 class CodeRow extends Row<Props, State> {
   public state: State;
 
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     this.state = this.createState();

+ 1 - 1
packages/react-components/src/Collection.tsx

@@ -41,7 +41,7 @@ export const collectionStyles = `
 `;
 
 export default class Collection<P extends CollectionProps, S extends CollectionState> extends React.PureComponent<P, S> {
-  public constructor (props: P) {
+  constructor (props: P) {
     super(props);
 
     this.state = {

+ 1 - 1
packages/react-components/src/InputBalanceBonded.tsx

@@ -50,7 +50,7 @@ const DEFAULT_BITLENGTH = BitLengthOption.CHAIN_SPEC as BitLength;
 class InputBalanceBonded extends React.PureComponent<Props, State> {
   public state: State;
 
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     this.state = {

+ 1 - 1
packages/react-components/src/InputNumber.tsx

@@ -53,7 +53,7 @@ const ZERO = new BN(0);
 const TEN = new BN(10);
 
 class InputNumber extends React.PureComponent<Props, State> {
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     const { defaultValue, isSi, value } = this.props;

+ 1 - 1
packages/react-components/src/TxComponent.tsx

@@ -7,7 +7,7 @@ import React from 'react';
 export default class TxComponent<P, S> extends React.PureComponent<P, S> {
   protected button: any;
 
-  public constructor (props: P) {
+  constructor (props: P) {
     super(props);
 
     this.button = React.createRef();

+ 1 - 1
packages/react-components/src/Voting.tsx

@@ -60,7 +60,7 @@ class Voting extends TxModal<Props, State> {
       : [idNumber, voteValue];
   }
 
-  public constructor (props: Props) {
+  constructor (props: Props) {
     super(props);
 
     const { t } = props;

+ 1 - 1
packages/react-params/package.json

@@ -10,7 +10,7 @@
   "contributors": [],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52"
   }
 }

+ 1 - 1
packages/react-query/package.json

@@ -30,6 +30,6 @@
   },
   "homepage": "https://github.com/polkadot-js/ui/tree/master/packages/ui-reactive#readme",
   "dependencies": {
-    "@babel/runtime": "^7.6.3"
+    "@babel/runtime": "^7.7.1"
   }
 }

+ 2 - 2
packages/react-signer/package.json

@@ -10,8 +10,8 @@
   "contributors": [],
   "license": "Apache-2.0",
   "dependencies": {
-    "@babel/runtime": "^7.6.3",
+    "@babel/runtime": "^7.7.1",
     "@polkadot/react-components": "^0.37.0-beta.52",
-    "@polkadot/react-qr": "^0.47.0-beta.2"
+    "@polkadot/react-qr": "^0.47.0-beta.3"
   }
 }

+ 1 - 1
packages/react-signer/src/ApiSigner.ts

@@ -15,7 +15,7 @@ export default class ApiSigner implements Signer {
 
   private _queueSetTxStatus: QueueTxMessageSetStatus;
 
-  public constructor (queuePayload: QueueTxPayloadAdd, queueSetTxStatus: QueueTxMessageSetStatus) {
+  constructor (queuePayload: QueueTxPayloadAdd, queueSetTxStatus: QueueTxMessageSetStatus) {
     this._queuePayload = queuePayload;
     this._queueSetTxStatus = queueSetTxStatus;
   }

File diff suppressed because it is too large
+ 398 - 394
yarn.lock


Some files were not shown because too many files changed in this diff