adds test docs (#695)
* adds test docs * update docs * update api docs * change to master
This commit is contained in:
parent
fa0d3959b6
commit
2ceed980b4
46
.github/workflows/docs.yml
vendored
Normal file
46
.github/workflows/docs.yml
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
name: documentation
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
gh-release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '14.x'
|
||||
- name: Add key to allow access to repository
|
||||
env:
|
||||
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
|
||||
run: |
|
||||
mkdir -p ~/.ssh
|
||||
ssh-keyscan github.com >> ~/.ssh/known_hosts
|
||||
echo "${{ secrets.GH_PAGES_DEPLOY }}" > ~/.ssh/id_rsa
|
||||
chmod 600 ~/.ssh/id_rsa
|
||||
cat <<EOT >> ~/.ssh/config
|
||||
Host github.com
|
||||
HostName github.com
|
||||
IdentityFile ~/.ssh/id_rsa
|
||||
EOT
|
||||
- name: Release to GitHub Pages
|
||||
env:
|
||||
USE_SSH: true
|
||||
GIT_USER: git
|
||||
run: |
|
||||
git config --global user.email "actions@gihub.com"
|
||||
git config --global user.name "gh-actions"
|
||||
npm install --ignore-scripts
|
||||
npm run docs
|
||||
cd website
|
||||
if [ -e yarn.lock ]; then
|
||||
yarn install --frozen-lockfile
|
||||
elif [ -e package-lock.json ]; then
|
||||
npm ci
|
||||
else
|
||||
npm i
|
||||
fi
|
||||
yarn deploy
|
||||
175
package-lock.json
generated
175
package-lock.json
generated
@ -342,15 +342,6 @@
|
||||
"@babel/helper-plugin-utils": "^7.8.0"
|
||||
}
|
||||
},
|
||||
"@babel/runtime": {
|
||||
"version": "7.9.2",
|
||||
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.2.tgz",
|
||||
"integrity": "sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"regenerator-runtime": "^0.13.4"
|
||||
}
|
||||
},
|
||||
"@babel/template": {
|
||||
"version": "7.8.6",
|
||||
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.6.tgz",
|
||||
@ -1300,9 +1291,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"supports-color": {
|
||||
"version": "7.1.0",
|
||||
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
||||
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
||||
"version": "7.2.0",
|
||||
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
||||
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"has-flag": "^4.0.0"
|
||||
@ -1505,9 +1496,9 @@
|
||||
}
|
||||
},
|
||||
"@types/jest": {
|
||||
"version": "26.0.10",
|
||||
"resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.10.tgz",
|
||||
"integrity": "sha512-i2m0oyh8w/Lum7wWK/YOZJakYF8Mx08UaKA1CtbmFeDquVhAEdA7znacsVSf2hJ1OQ/OfVMGN90pw/AtzF8s/Q==",
|
||||
"version": "26.0.14",
|
||||
"resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.14.tgz",
|
||||
"integrity": "sha512-Hz5q8Vu0D288x3iWXePSn53W7hAjP0H7EQ6QvDO9c7t46mR0lNOLlfuwQ+JkVxuhygHzlzPX+0jKdA3ZgSh+Vg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"jest-diff": "^25.2.1",
|
||||
@ -1521,9 +1512,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"@types/node": {
|
||||
"version": "14.0.14",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.14.tgz",
|
||||
"integrity": "sha512-syUgf67ZQpaJj01/tRTknkMNoBBLWJOBODF0Zm4NrXmiSuxjymFrxnTu1QVYRubhVkRcZLYZG8STTwJRdVm/WQ==",
|
||||
"version": "14.11.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.11.1.tgz",
|
||||
"integrity": "sha512-oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw==",
|
||||
"dev": true
|
||||
},
|
||||
"@types/normalize-package-data": {
|
||||
@ -2122,17 +2113,17 @@
|
||||
}
|
||||
},
|
||||
"bl": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/bl/-/bl-3.0.0.tgz",
|
||||
"integrity": "sha512-EUAyP5UHU5hxF8BPT0LKW8gjYLhq1DQIcneOX/pL/m2Alo+OYDQAJlHq+yseMP50Os2nHXOSic6Ss3vSQeyf4A==",
|
||||
"version": "3.0.1",
|
||||
"resolved": "https://registry.npmjs.org/bl/-/bl-3.0.1.tgz",
|
||||
"integrity": "sha512-jrCW5ZhfQ/Vt07WX1Ngs+yn9BDqPL/gw28S7s9H6QK/gupnizNzJAss5akW20ISgOrbLTlXOOCTJeNUQqruAWQ==",
|
||||
"requires": {
|
||||
"readable-stream": "^3.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"readable-stream": {
|
||||
"version": "3.4.0",
|
||||
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz",
|
||||
"integrity": "sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ==",
|
||||
"version": "3.6.0",
|
||||
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
||||
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
|
||||
"requires": {
|
||||
"inherits": "^2.0.3",
|
||||
"string_decoder": "^1.1.1",
|
||||
@ -2526,16 +2517,16 @@
|
||||
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
|
||||
},
|
||||
"cosmiconfig": {
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
|
||||
"integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
|
||||
"version": "7.0.0",
|
||||
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz",
|
||||
"integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@types/parse-json": "^4.0.0",
|
||||
"import-fresh": "^3.1.0",
|
||||
"import-fresh": "^3.2.1",
|
||||
"parse-json": "^5.0.0",
|
||||
"path-type": "^4.0.0",
|
||||
"yaml": "^1.7.2"
|
||||
"yaml": "^1.10.0"
|
||||
}
|
||||
},
|
||||
"cross-env": {
|
||||
@ -3246,9 +3237,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"type": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/type/-/type-2.0.0.tgz",
|
||||
"integrity": "sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==",
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/type/-/type-2.1.0.tgz",
|
||||
"integrity": "sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==",
|
||||
"dev": true
|
||||
}
|
||||
}
|
||||
@ -3818,15 +3809,15 @@
|
||||
"dev": true
|
||||
},
|
||||
"husky": {
|
||||
"version": "4.2.5",
|
||||
"resolved": "https://registry.npmjs.org/husky/-/husky-4.2.5.tgz",
|
||||
"integrity": "sha512-SYZ95AjKcX7goYVZtVZF2i6XiZcHknw50iXvY7b0MiGoj5RwdgRQNEHdb+gPDPCXKlzwrybjFjkL6FOj8uRhZQ==",
|
||||
"version": "4.3.0",
|
||||
"resolved": "https://registry.npmjs.org/husky/-/husky-4.3.0.tgz",
|
||||
"integrity": "sha512-tTMeLCLqSBqnflBZnlVDhpaIMucSGaYyX6855jM4AguGeWCeSzNdb1mfyWduTZ3pe3SJVvVWGL0jO1iKZVPfTA==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"chalk": "^4.0.0",
|
||||
"ci-info": "^2.0.0",
|
||||
"compare-versions": "^3.6.0",
|
||||
"cosmiconfig": "^6.0.0",
|
||||
"cosmiconfig": "^7.0.0",
|
||||
"find-versions": "^3.2.0",
|
||||
"opencollective-postinstall": "^2.0.2",
|
||||
"pkg-dir": "^4.2.0",
|
||||
@ -3846,9 +3837,9 @@
|
||||
}
|
||||
},
|
||||
"chalk": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz",
|
||||
"integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==",
|
||||
"version": "4.1.0",
|
||||
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
|
||||
"integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"ansi-styles": "^4.1.0",
|
||||
@ -3877,9 +3868,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"supports-color": {
|
||||
"version": "7.1.0",
|
||||
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
||||
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
||||
"version": "7.2.0",
|
||||
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
||||
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"has-flag": "^4.0.0"
|
||||
@ -4893,9 +4884,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"supports-color": {
|
||||
"version": "7.1.0",
|
||||
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
||||
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
||||
"version": "7.2.0",
|
||||
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
||||
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"has-flag": "^4.0.0"
|
||||
@ -7169,14 +7160,14 @@
|
||||
}
|
||||
},
|
||||
"node-addon-api": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.0.0.tgz",
|
||||
"integrity": "sha512-sSHCgWfJ+Lui/u+0msF3oyCgvdkhxDbkCS6Q8uiJquzOimkJBvX6hl5aSSA7DR1XbMpdM8r7phjcF63sF4rkKg=="
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.0.2.tgz",
|
||||
"integrity": "sha512-+D4s2HCnxPd5PjjI0STKwncjXTUKKqm74MDMz9OPXavjsGmjkvwgLtA5yoxJUdmpj52+2u+RrXgPipahKczMKg=="
|
||||
},
|
||||
"node-fetch": {
|
||||
"version": "2.6.0",
|
||||
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz",
|
||||
"integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA=="
|
||||
"version": "2.6.1",
|
||||
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz",
|
||||
"integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw=="
|
||||
},
|
||||
"node-gyp": {
|
||||
"version": "6.1.0",
|
||||
@ -7328,9 +7319,9 @@
|
||||
"integrity": "sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI="
|
||||
},
|
||||
"nopt": {
|
||||
"version": "4.0.1",
|
||||
"resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz",
|
||||
"integrity": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=",
|
||||
"version": "4.0.3",
|
||||
"resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz",
|
||||
"integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"abbrev": "1",
|
||||
@ -7525,9 +7516,9 @@
|
||||
}
|
||||
},
|
||||
"opencollective-postinstall": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz",
|
||||
"integrity": "sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw==",
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz",
|
||||
"integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==",
|
||||
"dev": true
|
||||
},
|
||||
"optionator": {
|
||||
@ -7750,9 +7741,9 @@
|
||||
}
|
||||
},
|
||||
"prebuild": {
|
||||
"version": "10.0.0",
|
||||
"resolved": "https://registry.npmjs.org/prebuild/-/prebuild-10.0.0.tgz",
|
||||
"integrity": "sha512-WLjsJRX7AJHw937oGyJT6wYscXYCfBVpCDU2shFG/B4rOcn5+3v5M2NoUrfkyVjjaCYLM61Kp7ulL1aNRygW8Q==",
|
||||
"version": "10.0.1",
|
||||
"resolved": "https://registry.npmjs.org/prebuild/-/prebuild-10.0.1.tgz",
|
||||
"integrity": "sha512-x0CkKDmHFwX49rTGEYJwB9jBQwJWxRzwUtP5PA9dP8khFGMm3oSFgYortxdlp0PkxB29EhWGp/KQE5g+adehYg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"cmake-js": "~5.2.0",
|
||||
@ -7761,6 +7752,7 @@
|
||||
"execspawn": "^1.0.1",
|
||||
"ghreleases": "^3.0.2",
|
||||
"github-from-package": "0.0.0",
|
||||
"glob": "^7.1.6",
|
||||
"minimist": "^1.1.2",
|
||||
"mkdirp": "^0.5.1",
|
||||
"napi-build-utils": "^1.0.1",
|
||||
@ -7815,12 +7807,12 @@
|
||||
}
|
||||
},
|
||||
"debug": {
|
||||
"version": "4.1.1",
|
||||
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
|
||||
"integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
|
||||
"version": "4.2.0",
|
||||
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
|
||||
"integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"ms": "^2.1.1"
|
||||
"ms": "2.1.2"
|
||||
}
|
||||
},
|
||||
"fs-extra": {
|
||||
@ -7834,11 +7826,19 @@
|
||||
"universalify": "^0.1.0"
|
||||
}
|
||||
},
|
||||
"minimist": {
|
||||
"version": "1.2.5",
|
||||
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
|
||||
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
|
||||
"dev": true
|
||||
"glob": {
|
||||
"version": "7.1.6",
|
||||
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
|
||||
"integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"fs.realpath": "^1.0.0",
|
||||
"inflight": "^1.0.4",
|
||||
"inherits": "2",
|
||||
"minimatch": "^3.0.4",
|
||||
"once": "^1.3.0",
|
||||
"path-is-absolute": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"ms": {
|
||||
"version": "2.1.2",
|
||||
@ -7954,9 +7954,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"prettier": {
|
||||
"version": "2.0.5",
|
||||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.0.5.tgz",
|
||||
"integrity": "sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==",
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz",
|
||||
"integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==",
|
||||
"dev": true
|
||||
},
|
||||
"prettier-linter-helpers": {
|
||||
@ -8141,12 +8141,6 @@
|
||||
"resolve": "^1.1.6"
|
||||
}
|
||||
},
|
||||
"regenerator-runtime": {
|
||||
"version": "0.13.5",
|
||||
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
|
||||
"integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==",
|
||||
"dev": true
|
||||
},
|
||||
"regex-not": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
|
||||
@ -9465,12 +9459,12 @@
|
||||
}
|
||||
},
|
||||
"typedoc-plugin-markdown": {
|
||||
"version": "2.3.1",
|
||||
"resolved": "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-2.3.1.tgz",
|
||||
"integrity": "sha512-7rlmg1tLjddYy11uznHCAlyoOpxdWnFXqGEZ7j2mJ4KJg2avwWgEpw6SFZVofgPCGn36zklpFS51lHxYSRTLVQ==",
|
||||
"version": "2.4.2",
|
||||
"resolved": "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-2.4.2.tgz",
|
||||
"integrity": "sha512-BBH+9/Uq5XbsqfzCDl8Jq4iaLXRMXRuAHZRFarAZX7df8+F3vUjDx/WHWoWqbZ/XUFzduLC2Iuy2qwsJX8SQ7A==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"fs-extra": "^9.0.0",
|
||||
"fs-extra": "^9.0.1",
|
||||
"handlebars": "^4.7.6"
|
||||
},
|
||||
"dependencies": {
|
||||
@ -9505,9 +9499,9 @@
|
||||
}
|
||||
},
|
||||
"typescript": {
|
||||
"version": "3.9.6",
|
||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.6.tgz",
|
||||
"integrity": "sha512-Pspx3oKAPJtjNwE92YS05HQoY7z2SFyOpHo9MqJor3BXAGNaPUs83CuVp9VISFkSjyRfiTpmKuAYGJB7S7hOxw==",
|
||||
"version": "3.9.7",
|
||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz",
|
||||
"integrity": "sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==",
|
||||
"dev": true
|
||||
},
|
||||
"uglify-js": {
|
||||
@ -9886,13 +9880,10 @@
|
||||
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
|
||||
},
|
||||
"yaml": {
|
||||
"version": "1.8.3",
|
||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.8.3.tgz",
|
||||
"integrity": "sha512-X/v7VDnK+sxbQ2Imq4Jt2PRUsRsP7UcpSl3Llg6+NRRqWLIvxkMFYtH1FmvwNGYRKKPa+EPA4qDBlI9WVG1UKw==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@babel/runtime": "^7.8.7"
|
||||
}
|
||||
"version": "1.10.0",
|
||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz",
|
||||
"integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==",
|
||||
"dev": true
|
||||
},
|
||||
"yargs": {
|
||||
"version": "3.32.0",
|
||||
|
||||
16
package.json
16
package.json
@ -34,28 +34,28 @@
|
||||
"cuid": "^2.1.6",
|
||||
"manage-path": "^2.0.0",
|
||||
"memoize-one": "^5.1.1",
|
||||
"node-addon-api": "^3.0.0",
|
||||
"node-addon-api": "^3.0.2",
|
||||
"postcss-nodegui-autoprefixer": "0.0.7",
|
||||
"prebuild-install": "^5.3.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bindings": "^1.3.0",
|
||||
"@types/jest": "^26.0.3",
|
||||
"@types/node": "^14.0.14",
|
||||
"@types/jest": "^26.0.14",
|
||||
"@types/node": "^14.11.1",
|
||||
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
||||
"@typescript-eslint/parser": "^2.34.0",
|
||||
"clang-format": "^1.3.0",
|
||||
"eslint": "^6.6.0",
|
||||
"eslint-config-prettier": "^6.11.0",
|
||||
"eslint-plugin-prettier": "^3.1.3",
|
||||
"husky": "^4.2.5",
|
||||
"husky": "^4.3.0",
|
||||
"jest": "^25.5.4",
|
||||
"prebuild": "^10.0.0",
|
||||
"prettier": "^2.0.5",
|
||||
"prebuild": "^10.0.1",
|
||||
"prettier": "^2.1.2",
|
||||
"ts-jest": "^25.5.1",
|
||||
"typedoc": "^0.17.8",
|
||||
"typedoc-plugin-markdown": "^2.3.1",
|
||||
"typescript": "^3.9.6"
|
||||
"typedoc-plugin-markdown": "^2.4.2",
|
||||
"typescript": "^3.9.7"
|
||||
},
|
||||
"binary": {
|
||||
"napi_versions": [
|
||||
|
||||
@ -97,6 +97,7 @@ sidebar_label: "NodeDateTimeEdit"
|
||||
* [setEnabled](nodedatetimeedit.md#setenabled)
|
||||
* [setFixedSize](nodedatetimeedit.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](nodedatetimeedit.md#setflexnodesizecontrolled)
|
||||
* [setFocus](nodedatetimeedit.md#setfocus)
|
||||
* [setFont](nodedatetimeedit.md#setfont)
|
||||
* [setFrame](nodedatetimeedit.md#setframe)
|
||||
* [setGeometry](nodedatetimeedit.md#setgeometry)
|
||||
@ -1068,6 +1069,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -91,6 +91,7 @@ sidebar_label: "NodeDialog"
|
||||
* [setEnabled](nodedialog.md#setenabled)
|
||||
* [setFixedSize](nodedialog.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](nodedialog.md#setflexnodesizecontrolled)
|
||||
* [setFocus](nodedialog.md#setfocus)
|
||||
* [setFont](nodedialog.md#setfont)
|
||||
* [setGeometry](nodedialog.md#setgeometry)
|
||||
* [setGraphicsEffect](nodedialog.md#setgraphicseffect)
|
||||
@ -810,6 +811,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -85,6 +85,7 @@ sidebar_label: "NodeFrame"
|
||||
* [setEnabled](nodeframe.md#setenabled)
|
||||
* [setFixedSize](nodeframe.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](nodeframe.md#setflexnodesizecontrolled)
|
||||
* [setFocus](nodeframe.md#setfocus)
|
||||
* [setFont](nodeframe.md#setfont)
|
||||
* [setFrameRect](nodeframe.md#setframerect)
|
||||
* [setFrameShadow](nodeframe.md#setframeshadow)
|
||||
@ -823,6 +824,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -137,6 +137,7 @@ const listview = new QListView();
|
||||
* [setFixedSize](nodelistview.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](nodelistview.md#setflexnodesizecontrolled)
|
||||
* [setFlow](nodelistview.md#setflow)
|
||||
* [setFocus](nodelistview.md#setfocus)
|
||||
* [setFont](nodelistview.md#setfont)
|
||||
* [setFrameRect](nodelistview.md#setframerect)
|
||||
* [setFrameShadow](nodelistview.md#setframeshadow)
|
||||
@ -1406,6 +1407,22 @@ Name | Type |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -146,6 +146,7 @@ const tableview = new QTableView();
|
||||
* [setEnabled](nodetableview.md#setenabled)
|
||||
* [setFixedSize](nodetableview.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](nodetableview.md#setflexnodesizecontrolled)
|
||||
* [setFocus](nodetableview.md#setfocus)
|
||||
* [setFont](nodetableview.md#setfont)
|
||||
* [setFrameRect](nodetableview.md#setframerect)
|
||||
* [setFrameShadow](nodetableview.md#setframeshadow)
|
||||
@ -1598,6 +1599,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -131,6 +131,7 @@ const textEdit = new QTextEdit();
|
||||
* [setEnabled](nodetextedit.md#setenabled)
|
||||
* [setFixedSize](nodetextedit.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](nodetextedit.md#setflexnodesizecontrolled)
|
||||
* [setFocus](nodetextedit.md#setfocus)
|
||||
* [setFont](nodetextedit.md#setfont)
|
||||
* [setFontFamily](nodetextedit.md#setfontfamily)
|
||||
* [setFontItalic](nodetextedit.md#setfontitalic)
|
||||
@ -1264,6 +1265,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -136,6 +136,7 @@ Implement all native QWidget methods here so that all widgets get access to thos
|
||||
* [setEnabled](nodewidget.md#setenabled)
|
||||
* [setFixedSize](nodewidget.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](nodewidget.md#setflexnodesizecontrolled)
|
||||
* [setFocus](nodewidget.md#setfocus)
|
||||
* [setFont](nodewidget.md#setfont)
|
||||
* [setGeometry](nodewidget.md#setgeometry)
|
||||
* [setGraphicsEffect](nodewidget.md#setgraphicseffect)
|
||||
@ -740,6 +741,20 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -103,6 +103,7 @@ It is inherited by QCheckBox, QPushButton, QRadioButton, and QToolButton.
|
||||
* [setEnabled](qabstractbutton.md#setenabled)
|
||||
* [setFixedSize](qabstractbutton.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qabstractbutton.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qabstractbutton.md#setfocus)
|
||||
* [setFont](qabstractbutton.md#setfont)
|
||||
* [setGeometry](qabstractbutton.md#setgeometry)
|
||||
* [setGraphicsEffect](qabstractbutton.md#setgraphicseffect)
|
||||
@ -978,6 +979,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -117,6 +117,7 @@ It is inherited by QListWidget. (n/a QColumnView, QHeaderView, QListView, QTable
|
||||
* [setEnabled](qabstractitemview.md#setenabled)
|
||||
* [setFixedSize](qabstractitemview.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qabstractitemview.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qabstractitemview.md#setfocus)
|
||||
* [setFont](qabstractitemview.md#setfont)
|
||||
* [setFrameRect](qabstractitemview.md#setframerect)
|
||||
* [setFrameShadow](qabstractitemview.md#setframeshadow)
|
||||
@ -1183,6 +1184,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -100,6 +100,7 @@ QAbstractScrollArea will list all methods and properties that are common to all
|
||||
* [setEnabled](qabstractscrollarea.md#setenabled)
|
||||
* [setFixedSize](qabstractscrollarea.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qabstractscrollarea.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qabstractscrollarea.md#setfocus)
|
||||
* [setFont](qabstractscrollarea.md#setfont)
|
||||
* [setFrameRect](qabstractscrollarea.md#setframerect)
|
||||
* [setFrameShadow](qabstractscrollarea.md#setframeshadow)
|
||||
@ -862,6 +863,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -94,6 +94,7 @@ QAbstractSlider will list all methods and properties that are common to all slid
|
||||
* [setEnabled](qabstractslider.md#setenabled)
|
||||
* [setFixedSize](qabstractslider.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qabstractslider.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qabstractslider.md#setfocus)
|
||||
* [setFont](qabstractslider.md#setfont)
|
||||
* [setGeometry](qabstractslider.md#setgeometry)
|
||||
* [setGraphicsEffect](qabstractslider.md#setgraphicseffect)
|
||||
@ -850,6 +851,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -97,6 +97,7 @@ It is inherited by QDateTimeEdit and QSpinBox. (n/a QDoubleSpinBox)
|
||||
* [setEnabled](qabstractspinbox.md#setenabled)
|
||||
* [setFixedSize](qabstractspinbox.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qabstractspinbox.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qabstractspinbox.md#setfocus)
|
||||
* [setFont](qabstractspinbox.md#setfont)
|
||||
* [setFrame](qabstractspinbox.md#setframe)
|
||||
* [setGeometry](qabstractspinbox.md#setgeometry)
|
||||
@ -920,6 +921,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -91,6 +91,7 @@ const calendarWidget = new QCalendarWidget();
|
||||
* [setFirstDayOfWeek](qcalendarwidget.md#setfirstdayofweek)
|
||||
* [setFixedSize](qcalendarwidget.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qcalendarwidget.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qcalendarwidget.md#setfocus)
|
||||
* [setFont](qcalendarwidget.md#setfont)
|
||||
* [setGeometry](qcalendarwidget.md#setgeometry)
|
||||
* [setGraphicsEffect](qcalendarwidget.md#setgraphicseffect)
|
||||
@ -875,6 +876,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -102,6 +102,7 @@ checkbox.setText("Hello");
|
||||
* [setEnabled](qcheckbox.md#setenabled)
|
||||
* [setFixedSize](qcheckbox.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qcheckbox.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qcheckbox.md#setfocus)
|
||||
* [setFont](qcheckbox.md#setfont)
|
||||
* [setGeometry](qcheckbox.md#setgeometry)
|
||||
* [setGraphicsEffect](qcheckbox.md#setgraphicseffect)
|
||||
@ -1061,6 +1062,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -95,6 +95,7 @@ console.log(color.red(), color.green(), color.blue());
|
||||
* [setEnabled](qcolordialog.md#setenabled)
|
||||
* [setFixedSize](qcolordialog.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qcolordialog.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qcolordialog.md#setfocus)
|
||||
* [setFont](qcolordialog.md#setfont)
|
||||
* [setGeometry](qcolordialog.md#setgeometry)
|
||||
* [setGraphicsEffect](qcolordialog.md#setgraphicseffect)
|
||||
@ -874,6 +875,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -109,6 +109,7 @@ console.log('currentIndexChanged: ' + index);
|
||||
* [setEnabled](qcombobox.md#setenabled)
|
||||
* [setFixedSize](qcombobox.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qcombobox.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qcombobox.md#setfocus)
|
||||
* [setFont](qcombobox.md#setfont)
|
||||
* [setGeometry](qcombobox.md#setgeometry)
|
||||
* [setGraphicsEffect](qcombobox.md#setgraphicseffect)
|
||||
@ -1007,6 +1008,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -106,6 +106,7 @@ const dateEdit = new QDateEdit();
|
||||
* [setEnabled](qdateedit.md#setenabled)
|
||||
* [setFixedSize](qdateedit.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qdateedit.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qdateedit.md#setfocus)
|
||||
* [setFont](qdateedit.md#setfont)
|
||||
* [setFrame](qdateedit.md#setframe)
|
||||
* [setGeometry](qdateedit.md#setgeometry)
|
||||
@ -1103,6 +1104,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -112,6 +112,7 @@ dateTimeEdit.setTime(time);
|
||||
* [setEnabled](qdatetimeedit.md#setenabled)
|
||||
* [setFixedSize](qdatetimeedit.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qdatetimeedit.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qdatetimeedit.md#setfocus)
|
||||
* [setFont](qdatetimeedit.md#setfont)
|
||||
* [setFrame](qdatetimeedit.md#setframe)
|
||||
* [setGeometry](qdatetimeedit.md#setgeometry)
|
||||
@ -1109,6 +1110,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -91,6 +91,7 @@ const dial = new QDial();
|
||||
* [setEnabled](qdial.md#setenabled)
|
||||
* [setFixedSize](qdial.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qdial.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qdial.md#setfocus)
|
||||
* [setFont](qdial.md#setfont)
|
||||
* [setGeometry](qdial.md#setgeometry)
|
||||
* [setGraphicsEffect](qdial.md#setgraphicseffect)
|
||||
@ -895,6 +896,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -77,6 +77,7 @@ It is inherited by QFileDialog and QMessageBox (n/a QColorDialog, QErrorMessage,
|
||||
* [setEnabled](qdialog.md#setenabled)
|
||||
* [setFixedSize](qdialog.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qdialog.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qdialog.md#setfocus)
|
||||
* [setFont](qdialog.md#setfont)
|
||||
* [setGeometry](qdialog.md#setgeometry)
|
||||
* [setGraphicsEffect](qdialog.md#setgraphicseffect)
|
||||
@ -804,6 +805,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -100,6 +100,7 @@ const doublespinBox = new QDoubleSpinBox();
|
||||
* [setEnabled](qdoublespinbox.md#setenabled)
|
||||
* [setFixedSize](qdoublespinbox.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qdoublespinbox.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qdoublespinbox.md#setfocus)
|
||||
* [setFont](qdoublespinbox.md#setfont)
|
||||
* [setFrame](qdoublespinbox.md#setframe)
|
||||
* [setGeometry](qdoublespinbox.md#setgeometry)
|
||||
@ -1023,6 +1024,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -31,13 +31,13 @@ sidebar_label: "QDragLeaveEvent"
|
||||
|
||||
### constructor
|
||||
|
||||
\+ **new QDragLeaveEvent**(`event`: [NativeElement](../globals.md#nativeelement)): *[QDragLeaveEvent](qdragleaveevent.md)*
|
||||
\+ **new QDragLeaveEvent**(`event`: [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"›): *[QDragLeaveEvent](qdragleaveevent.md)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`event` | [NativeElement](../globals.md#nativeelement) |
|
||||
`event` | [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"› |
|
||||
|
||||
**Returns:** *[QDragLeaveEvent](qdragleaveevent.md)*
|
||||
|
||||
|
||||
@ -42,13 +42,13 @@ sidebar_label: "QDragMoveEvent"
|
||||
|
||||
### constructor
|
||||
|
||||
\+ **new QDragMoveEvent**(`event`: [NativeElement](../globals.md#nativeelement)): *[QDragMoveEvent](qdragmoveevent.md)*
|
||||
\+ **new QDragMoveEvent**(`event`: [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"›): *[QDragMoveEvent](qdragmoveevent.md)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`event` | [NativeElement](../globals.md#nativeelement) |
|
||||
`event` | [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"› |
|
||||
|
||||
**Returns:** *[QDragMoveEvent](qdragmoveevent.md)*
|
||||
|
||||
|
||||
@ -41,13 +41,13 @@ sidebar_label: "QDropEvent"
|
||||
|
||||
### constructor
|
||||
|
||||
\+ **new QDropEvent**(`event`: [NativeElement](../globals.md#nativeelement)): *[QDropEvent](qdropevent.md)*
|
||||
\+ **new QDropEvent**(`event`: [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"›): *[QDropEvent](qdropevent.md)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`event` | [NativeElement](../globals.md#nativeelement) |
|
||||
`event` | [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"› |
|
||||
|
||||
**Returns:** *[QDropEvent](qdropevent.md)*
|
||||
|
||||
|
||||
@ -86,6 +86,7 @@ const errorMessage = new QErrorMessage();
|
||||
* [setEnabled](qerrormessage.md#setenabled)
|
||||
* [setFixedSize](qerrormessage.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qerrormessage.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qerrormessage.md#setfocus)
|
||||
* [setFont](qerrormessage.md#setfont)
|
||||
* [setGeometry](qerrormessage.md#setgeometry)
|
||||
* [setGraphicsEffect](qerrormessage.md#setgraphicseffect)
|
||||
@ -820,6 +821,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -101,6 +101,7 @@ console.log(selectedFiles);
|
||||
* [setFileMode](qfiledialog.md#setfilemode)
|
||||
* [setFixedSize](qfiledialog.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qfiledialog.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qfiledialog.md#setfocus)
|
||||
* [setFont](qfiledialog.md#setfont)
|
||||
* [setGeometry](qfiledialog.md#setgeometry)
|
||||
* [setGraphicsEffect](qfiledialog.md#setgraphicseffect)
|
||||
@ -940,6 +941,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -93,6 +93,7 @@ console.log(font);
|
||||
* [setEnabled](qfontdialog.md#setenabled)
|
||||
* [setFixedSize](qfontdialog.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qfontdialog.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qfontdialog.md#setfocus)
|
||||
* [setFont](qfontdialog.md#setfont)
|
||||
* [setGeometry](qfontdialog.md#setgeometry)
|
||||
* [setGraphicsEffect](qfontdialog.md#setgraphicseffect)
|
||||
@ -867,6 +868,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -87,6 +87,7 @@ const frame = new QFrame();
|
||||
* [setEnabled](qframe.md#setenabled)
|
||||
* [setFixedSize](qframe.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qframe.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qframe.md#setfocus)
|
||||
* [setFont](qframe.md#setfont)
|
||||
* [setFrameRect](qframe.md#setframerect)
|
||||
* [setFrameShadow](qframe.md#setframeshadow)
|
||||
@ -837,6 +838,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -108,6 +108,7 @@ win.show();
|
||||
* [setFixedSize](qgroupbox.md#setfixedsize)
|
||||
* [setFlat](qgroupbox.md#setflat)
|
||||
* [setFlexNodeSizeControlled](qgroupbox.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qgroupbox.md#setfocus)
|
||||
* [setFont](qgroupbox.md#setfont)
|
||||
* [setGeometry](qgroupbox.md#setgeometry)
|
||||
* [setGraphicsEffect](qgroupbox.md#setgraphicseffect)
|
||||
@ -878,6 +879,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -109,6 +109,7 @@ dialog.exec();
|
||||
* [setEnabled](qinputdialog.md#setenabled)
|
||||
* [setFixedSize](qinputdialog.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qinputdialog.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qinputdialog.md#setfocus)
|
||||
* [setFont](qinputdialog.md#setfont)
|
||||
* [setGeometry](qinputdialog.md#setgeometry)
|
||||
* [setGraphicsEffect](qinputdialog.md#setgraphicseffect)
|
||||
@ -1072,6 +1073,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -103,6 +103,7 @@ label.setText("Hello");
|
||||
* [setEnabled](qlabel.md#setenabled)
|
||||
* [setFixedSize](qlabel.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qlabel.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qlabel.md#setfocus)
|
||||
* [setFont](qlabel.md#setfont)
|
||||
* [setFrameRect](qlabel.md#setframerect)
|
||||
* [setFrameShadow](qlabel.md#setframeshadow)
|
||||
@ -1009,6 +1010,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -90,6 +90,7 @@ const lcd = new QLCDNumber();
|
||||
* [setEnabled](qlcdnumber.md#setenabled)
|
||||
* [setFixedSize](qlcdnumber.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qlcdnumber.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qlcdnumber.md#setfocus)
|
||||
* [setFont](qlcdnumber.md#setfont)
|
||||
* [setGeometry](qlcdnumber.md#setgeometry)
|
||||
* [setGraphicsEffect](qlcdnumber.md#setgraphicseffect)
|
||||
@ -867,6 +868,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -84,6 +84,7 @@ const lineEdit = new QLineEdit();
|
||||
* [setEnabled](qlineedit.md#setenabled)
|
||||
* [setFixedSize](qlineedit.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qlineedit.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qlineedit.md#setfocus)
|
||||
* [setFont](qlineedit.md#setfont)
|
||||
* [setGeometry](qlineedit.md#setgeometry)
|
||||
* [setGraphicsEffect](qlineedit.md#setgraphicseffect)
|
||||
@ -806,6 +807,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -116,6 +116,7 @@ sidebar_label: "QListView"
|
||||
* [setFixedSize](qlistview.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qlistview.md#setflexnodesizecontrolled)
|
||||
* [setFlow](qlistview.md#setflow)
|
||||
* [setFocus](qlistview.md#setfocus)
|
||||
* [setFont](qlistview.md#setfont)
|
||||
* [setFrameRect](qlistview.md#setframerect)
|
||||
* [setFrameShadow](qlistview.md#setframeshadow)
|
||||
@ -1417,6 +1418,22 @@ Name | Type |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -163,6 +163,7 @@ listWidget.addItem(listWidgetItem);
|
||||
* [setFixedSize](qlistwidget.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qlistwidget.md#setflexnodesizecontrolled)
|
||||
* [setFlow](qlistwidget.md#setflow)
|
||||
* [setFocus](qlistwidget.md#setfocus)
|
||||
* [setFont](qlistwidget.md#setfont)
|
||||
* [setFrameRect](qlistwidget.md#setframerect)
|
||||
* [setFrameShadow](qlistwidget.md#setframeshadow)
|
||||
@ -1766,6 +1767,22 @@ Name | Type |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -98,6 +98,7 @@ Once a central widget is set you can add children/layout to the central widget.
|
||||
* [setEnabled](qmainwindow.md#setenabled)
|
||||
* [setFixedSize](qmainwindow.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qmainwindow.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qmainwindow.md#setfocus)
|
||||
* [setFont](qmainwindow.md#setfont)
|
||||
* [setGeometry](qmainwindow.md#setgeometry)
|
||||
* [setGraphicsEffect](qmainwindow.md#setgraphicseffect)
|
||||
@ -831,6 +832,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -81,6 +81,7 @@ const menu = new QMenu();
|
||||
* [setEnabled](qmenu.md#setenabled)
|
||||
* [setFixedSize](qmenu.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qmenu.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qmenu.md#setfocus)
|
||||
* [setFont](qmenu.md#setfont)
|
||||
* [setGeometry](qmenu.md#setgeometry)
|
||||
* [setGraphicsEffect](qmenu.md#setgraphicseffect)
|
||||
@ -800,6 +801,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -85,6 +85,7 @@ global.win = win;
|
||||
* [setEnabled](qmenubar.md#setenabled)
|
||||
* [setFixedSize](qmenubar.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qmenubar.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qmenubar.md#setfocus)
|
||||
* [setFont](qmenubar.md#setfont)
|
||||
* [setGeometry](qmenubar.md#setgeometry)
|
||||
* [setGraphicsEffect](qmenubar.md#setgraphicseffect)
|
||||
@ -806,6 +807,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -96,6 +96,7 @@ messageBox.exec();
|
||||
* [setEnabled](qmessagebox.md#setenabled)
|
||||
* [setFixedSize](qmessagebox.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qmessagebox.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qmessagebox.md#setfocus)
|
||||
* [setFont](qmessagebox.md#setfont)
|
||||
* [setGeometry](qmessagebox.md#setgeometry)
|
||||
* [setGraphicsEffect](qmessagebox.md#setgraphicseffect)
|
||||
@ -907,6 +908,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -30,13 +30,13 @@ sidebar_label: "QMouseEvent"
|
||||
|
||||
### constructor
|
||||
|
||||
\+ **new QMouseEvent**(`event`: [NativeElement](../globals.md#nativeelement)): *[QMouseEvent](qmouseevent.md)*
|
||||
\+ **new QMouseEvent**(`event`: [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"›): *[QMouseEvent](qmouseevent.md)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`event` | [NativeElement](../globals.md#nativeelement) |
|
||||
`event` | [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"› |
|
||||
|
||||
**Returns:** *[QMouseEvent](qmouseevent.md)*
|
||||
|
||||
|
||||
@ -32,13 +32,13 @@ sidebar_label: "QNativeGestureEvent"
|
||||
|
||||
### constructor
|
||||
|
||||
\+ **new QNativeGestureEvent**(`event`: [NativeElement](../globals.md#nativeelement)): *[QNativeGestureEvent](qnativegestureevent.md)*
|
||||
\+ **new QNativeGestureEvent**(`event`: [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"›): *[QNativeGestureEvent](qnativegestureevent.md)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`event` | [NativeElement](../globals.md#nativeelement) |
|
||||
`event` | [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"› |
|
||||
|
||||
**Returns:** *[QNativeGestureEvent](qnativegestureevent.md)*
|
||||
|
||||
|
||||
@ -92,6 +92,7 @@ const plainTextEdit = new QPlainTextEdit();
|
||||
* [setEnabled](qplaintextedit.md#setenabled)
|
||||
* [setFixedSize](qplaintextedit.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qplaintextedit.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qplaintextedit.md#setfocus)
|
||||
* [setFont](qplaintextedit.md#setfont)
|
||||
* [setFrameRect](qplaintextedit.md#setframerect)
|
||||
* [setFrameShadow](qplaintextedit.md#setframeshadow)
|
||||
@ -903,6 +904,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -90,6 +90,7 @@ const progressBar = new QProgressBar();
|
||||
* [setEnabled](qprogressbar.md#setenabled)
|
||||
* [setFixedSize](qprogressbar.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qprogressbar.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qprogressbar.md#setfocus)
|
||||
* [setFont](qprogressbar.md#setfont)
|
||||
* [setFormat](qprogressbar.md#setformat)
|
||||
* [setGeometry](qprogressbar.md#setgeometry)
|
||||
@ -868,6 +869,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -97,6 +97,7 @@ const progressDialog = new QProgressDialog();
|
||||
* [setEnabled](qprogressdialog.md#setenabled)
|
||||
* [setFixedSize](qprogressdialog.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qprogressdialog.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qprogressdialog.md#setfocus)
|
||||
* [setFont](qprogressdialog.md#setfont)
|
||||
* [setGeometry](qprogressdialog.md#setgeometry)
|
||||
* [setGraphicsEffect](qprogressdialog.md#setgraphicseffect)
|
||||
@ -944,6 +945,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -106,6 +106,7 @@ button.setText("Hello");
|
||||
* [setFixedSize](qpushbutton.md#setfixedsize)
|
||||
* [setFlat](qpushbutton.md#setflat)
|
||||
* [setFlexNodeSizeControlled](qpushbutton.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qpushbutton.md#setfocus)
|
||||
* [setFont](qpushbutton.md#setfont)
|
||||
* [setGeometry](qpushbutton.md#setgeometry)
|
||||
* [setGraphicsEffect](qpushbutton.md#setgraphicseffect)
|
||||
@ -1122,6 +1123,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -99,6 +99,7 @@ radioButton.setText("Hello");
|
||||
* [setEnabled](qradiobutton.md#setenabled)
|
||||
* [setFixedSize](qradiobutton.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qradiobutton.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qradiobutton.md#setfocus)
|
||||
* [setFont](qradiobutton.md#setfont)
|
||||
* [setGeometry](qradiobutton.md#setgeometry)
|
||||
* [setGraphicsEffect](qradiobutton.md#setgraphicseffect)
|
||||
@ -1027,6 +1028,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -100,6 +100,7 @@ scrollArea.setWidget(imageLabel);
|
||||
* [setEnabled](qscrollarea.md#setenabled)
|
||||
* [setFixedSize](qscrollarea.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qscrollarea.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qscrollarea.md#setfocus)
|
||||
* [setFont](qscrollarea.md#setfont)
|
||||
* [setFrameRect](qscrollarea.md#setframerect)
|
||||
* [setFrameShadow](qscrollarea.md#setframeshadow)
|
||||
@ -934,6 +935,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -88,6 +88,7 @@ const scrollbar = new QScrollBar();
|
||||
* [setEnabled](qscrollbar.md#setenabled)
|
||||
* [setFixedSize](qscrollbar.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qscrollbar.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qscrollbar.md#setfocus)
|
||||
* [setFont](qscrollbar.md#setfont)
|
||||
* [setGeometry](qscrollbar.md#setgeometry)
|
||||
* [setGraphicsEffect](qscrollbar.md#setgraphicseffect)
|
||||
@ -864,6 +865,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -88,6 +88,7 @@ const slider = new QSlider();
|
||||
* [setEnabled](qslider.md#setenabled)
|
||||
* [setFixedSize](qslider.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qslider.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qslider.md#setfocus)
|
||||
* [setFont](qslider.md#setfont)
|
||||
* [setGeometry](qslider.md#setgeometry)
|
||||
* [setGraphicsEffect](qslider.md#setgraphicseffect)
|
||||
@ -868,6 +869,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -100,6 +100,7 @@ const spinBox = new QSpinBox();
|
||||
* [setEnabled](qspinbox.md#setenabled)
|
||||
* [setFixedSize](qspinbox.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qspinbox.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qspinbox.md#setfocus)
|
||||
* [setFont](qspinbox.md#setfont)
|
||||
* [setFrame](qspinbox.md#setframe)
|
||||
* [setGeometry](qspinbox.md#setgeometry)
|
||||
@ -1021,6 +1022,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -116,6 +116,7 @@ win.show();
|
||||
* [setEnabled](qstackedwidget.md#setenabled)
|
||||
* [setFixedSize](qstackedwidget.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qstackedwidget.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qstackedwidget.md#setfocus)
|
||||
* [setFont](qstackedwidget.md#setfont)
|
||||
* [setFrameRect](qstackedwidget.md#setframerect)
|
||||
* [setFrameShadow](qstackedwidget.md#setframeshadow)
|
||||
@ -936,6 +937,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -90,6 +90,7 @@ const progressBar = new QStatusBar();
|
||||
* [setEnabled](qstatusbar.md#setenabled)
|
||||
* [setFixedSize](qstatusbar.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qstatusbar.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qstatusbar.md#setfocus)
|
||||
* [setFont](qstatusbar.md#setfont)
|
||||
* [setGeometry](qstatusbar.md#setgeometry)
|
||||
* [setGraphicsEffect](qstatusbar.md#setgraphicseffect)
|
||||
@ -907,6 +908,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -106,6 +106,7 @@ const tabBar = new QTabBar();
|
||||
* [setExpanding](qtabbar.md#setexpanding)
|
||||
* [setFixedSize](qtabbar.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qtabbar.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qtabbar.md#setfocus)
|
||||
* [setFont](qtabbar.md#setfont)
|
||||
* [setGeometry](qtabbar.md#setgeometry)
|
||||
* [setGraphicsEffect](qtabbar.md#setgraphicseffect)
|
||||
@ -1100,6 +1101,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -49,13 +49,13 @@ The QTabletEvent class contains parameters that describe a Tablet event
|
||||
|
||||
### constructor
|
||||
|
||||
\+ **new QTabletEvent**(`event`: [NativeElement](../globals.md#nativeelement)): *[QTabletEvent](qtabletevent.md)*
|
||||
\+ **new QTabletEvent**(`event`: [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"›): *[QTabletEvent](qtabletevent.md)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`event` | [NativeElement](../globals.md#nativeelement) |
|
||||
`event` | [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"› |
|
||||
|
||||
**Returns:** *[QTabletEvent](qtabletevent.md)*
|
||||
|
||||
|
||||
@ -127,6 +127,7 @@ sidebar_label: "QTableView"
|
||||
* [setEnabled](qtableview.md#setenabled)
|
||||
* [setFixedSize](qtableview.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qtableview.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qtableview.md#setfocus)
|
||||
* [setFont](qtableview.md#setfont)
|
||||
* [setFrameRect](qtableview.md#setframerect)
|
||||
* [setFrameShadow](qtableview.md#setframeshadow)
|
||||
@ -1633,6 +1634,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -128,6 +128,7 @@ win.show();
|
||||
* [setEnabled](qtablewidget.md#setenabled)
|
||||
* [setFixedSize](qtablewidget.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qtablewidget.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qtablewidget.md#setfocus)
|
||||
* [setFont](qtablewidget.md#setfont)
|
||||
* [setFrameRect](qtablewidget.md#setframerect)
|
||||
* [setFrameShadow](qtablewidget.md#setframeshadow)
|
||||
@ -1216,6 +1217,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -91,6 +91,7 @@ tabWidget.addTab(new QCalendarWidget(), new QIcon(), 'Tab 2');
|
||||
* [setEnabled](qtabwidget.md#setenabled)
|
||||
* [setFixedSize](qtabwidget.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qtabwidget.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qtabwidget.md#setfocus)
|
||||
* [setFont](qtabwidget.md#setfont)
|
||||
* [setGeometry](qtabwidget.md#setgeometry)
|
||||
* [setGraphicsEffect](qtabwidget.md#setgraphicseffect)
|
||||
@ -864,6 +865,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -136,6 +136,7 @@ const textBrowser = new QTextBrowser();
|
||||
* [setEnabled](qtextbrowser.md#setenabled)
|
||||
* [setFixedSize](qtextbrowser.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qtextbrowser.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qtextbrowser.md#setfocus)
|
||||
* [setFont](qtextbrowser.md#setfont)
|
||||
* [setFontFamily](qtextbrowser.md#setfontfamily)
|
||||
* [setFontItalic](qtextbrowser.md#setfontitalic)
|
||||
@ -1457,6 +1458,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -109,6 +109,7 @@ sidebar_label: "QTextEdit"
|
||||
* [setEnabled](qtextedit.md#setenabled)
|
||||
* [setFixedSize](qtextedit.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qtextedit.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qtextedit.md#setfocus)
|
||||
* [setFont](qtextedit.md#setfont)
|
||||
* [setFontFamily](qtextedit.md#setfontfamily)
|
||||
* [setFontItalic](qtextedit.md#setfontitalic)
|
||||
@ -1316,6 +1317,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -106,6 +106,7 @@ const timeEdit = new QTimeEdit();
|
||||
* [setEnabled](qtimeedit.md#setenabled)
|
||||
* [setFixedSize](qtimeedit.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qtimeedit.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qtimeedit.md#setfocus)
|
||||
* [setFont](qtimeedit.md#setfont)
|
||||
* [setFrame](qtimeedit.md#setframe)
|
||||
* [setGeometry](qtimeedit.md#setgeometry)
|
||||
@ -1103,6 +1104,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -107,6 +107,7 @@ tool.setText('Help');
|
||||
* [setEnabled](qtoolbutton.md#setenabled)
|
||||
* [setFixedSize](qtoolbutton.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qtoolbutton.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qtoolbutton.md#setfocus)
|
||||
* [setFont](qtoolbutton.md#setfont)
|
||||
* [setGeometry](qtoolbutton.md#setgeometry)
|
||||
* [setGraphicsEffect](qtoolbutton.md#setgraphicseffect)
|
||||
@ -1122,6 +1123,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -127,6 +127,7 @@ win.show();
|
||||
* [setEnabled](qtreewidget.md#setenabled)
|
||||
* [setFixedSize](qtreewidget.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qtreewidget.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qtreewidget.md#setfocus)
|
||||
* [setFont](qtreewidget.md#setfont)
|
||||
* [setFrameRect](qtreewidget.md#setframerect)
|
||||
* [setFrameShadow](qtreewidget.md#setframeshadow)
|
||||
@ -1046,6 +1047,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -66,6 +66,7 @@ win.show();
|
||||
* [childCount](qtreewidgetitem.md#childcount)
|
||||
* [data](qtreewidgetitem.md#data)
|
||||
* [flags](qtreewidgetitem.md#flags)
|
||||
* [icon](qtreewidgetitem.md#icon)
|
||||
* [isHidden](qtreewidgetitem.md#ishidden)
|
||||
* [parent](qtreewidgetitem.md#parent)
|
||||
* [setCheckState](qtreewidgetitem.md#setcheckstate)
|
||||
@ -73,6 +74,7 @@ win.show();
|
||||
* [setExpanded](qtreewidgetitem.md#setexpanded)
|
||||
* [setFlags](qtreewidgetitem.md#setflags)
|
||||
* [setHidden](qtreewidgetitem.md#sethidden)
|
||||
* [setIcon](qtreewidgetitem.md#seticon)
|
||||
* [setNodeParent](qtreewidgetitem.md#setnodeparent)
|
||||
* [setSelected](qtreewidgetitem.md#setselected)
|
||||
* [setText](qtreewidgetitem.md#settext)
|
||||
@ -235,6 +237,22 @@ Returns the flags used to describe the item. These determine whether the item ca
|
||||
|
||||
___
|
||||
|
||||
### icon
|
||||
|
||||
▸ **icon**(`column`: number): *[QIcon](qicon.md)*
|
||||
|
||||
Returns the icon object for the item.
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`column` | number |
|
||||
|
||||
**Returns:** *[QIcon](qicon.md)*
|
||||
|
||||
___
|
||||
|
||||
### isHidden
|
||||
|
||||
▸ **isHidden**(): *boolean*
|
||||
@ -332,6 +350,23 @@ Name | Type |
|
||||
|
||||
___
|
||||
|
||||
### setIcon
|
||||
|
||||
▸ **setIcon**(`column`: number, `icon`: [QIcon](qicon.md)): *void*
|
||||
|
||||
Sets the icon for the item.
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type | Description |
|
||||
------ | ------ | ------ |
|
||||
`column` | number | - |
|
||||
`icon` | [QIcon](qicon.md) | The icon object |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setNodeParent
|
||||
|
||||
▸ **setNodeParent**(`parent?`: [Component](component.md)): *void*
|
||||
|
||||
@ -32,13 +32,13 @@ sidebar_label: "QWheelEvent"
|
||||
|
||||
### constructor
|
||||
|
||||
\+ **new QWheelEvent**(`event`: [NativeElement](../globals.md#nativeelement)): *[QWheelEvent](qwheelevent.md)*
|
||||
\+ **new QWheelEvent**(`event`: [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"›): *[QWheelEvent](qwheelevent.md)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`event` | [NativeElement](../globals.md#nativeelement) |
|
||||
`event` | [NativeRawPointer](../globals.md#nativerawpointer)‹"QEvent"› |
|
||||
|
||||
**Returns:** *[QWheelEvent](qwheelevent.md)*
|
||||
|
||||
|
||||
@ -82,6 +82,7 @@ view.setLayout(new FlexLayout());
|
||||
* [setEnabled](qwidget.md#setenabled)
|
||||
* [setFixedSize](qwidget.md#setfixedsize)
|
||||
* [setFlexNodeSizeControlled](qwidget.md#setflexnodesizecontrolled)
|
||||
* [setFocus](qwidget.md#setfocus)
|
||||
* [setFont](qwidget.md#setfont)
|
||||
* [setGeometry](qwidget.md#setgeometry)
|
||||
* [setGraphicsEffect](qwidget.md#setgraphicseffect)
|
||||
@ -756,6 +757,22 @@ Name | Type | Description |
|
||||
|
||||
___
|
||||
|
||||
### setFocus
|
||||
|
||||
▸ **setFocus**(`reason`: [FocusReason](../enums/focusreason.md)): *void*
|
||||
|
||||
*Inherited from [QMenu](qmenu.md).[setFocus](qmenu.md#setfocus)*
|
||||
|
||||
**Parameters:**
|
||||
|
||||
Name | Type |
|
||||
------ | ------ |
|
||||
`reason` | [FocusReason](../enums/focusreason.md) |
|
||||
|
||||
**Returns:** *void*
|
||||
|
||||
___
|
||||
|
||||
### setFont
|
||||
|
||||
▸ **setFont**(`font`: [QFont](qfont.md)): *void*
|
||||
|
||||
@ -365,13 +365,24 @@ sidebar_label: "Globals"
|
||||
### Variables
|
||||
|
||||
* [addon](globals.md#const-addon)
|
||||
* [c1item1](globals.md#const-c1item1)
|
||||
* [c1item2](globals.md#const-c1item2)
|
||||
* [columnFour](globals.md#const-columnfour)
|
||||
* [columnOne](globals.md#const-columnone)
|
||||
* [columnThree](globals.md#const-columnthree)
|
||||
* [columnTwo](globals.md#const-columntwo)
|
||||
* [icon](globals.md#const-icon)
|
||||
* [item1](globals.md#const-item1)
|
||||
* [item2](globals.md#const-item2)
|
||||
* [item3](globals.md#const-item3)
|
||||
* [item4](globals.md#const-item4)
|
||||
* [item5](globals.md#const-item5)
|
||||
* [item6](globals.md#const-item6)
|
||||
* [myImage](globals.md#const-myimage)
|
||||
* [outer](globals.md#const-outer)
|
||||
* [outerLayout](globals.md#const-outerlayout)
|
||||
* [testImagePath](globals.md#const-testimagepath)
|
||||
* [tree](globals.md#const-tree)
|
||||
* [win](globals.md#const-win)
|
||||
|
||||
### Functions
|
||||
@ -379,6 +390,7 @@ sidebar_label: "Globals"
|
||||
* [addDefaultErrorHandler](globals.md#adddefaulterrorhandler)
|
||||
* [checkIfNapiExternal](globals.md#checkifnapiexternal)
|
||||
* [checkIfNativeElement](globals.md#checkifnativeelement)
|
||||
* [createTreeWidget](globals.md#createtreewidget)
|
||||
* [main](globals.md#main)
|
||||
* [noop](globals.md#noop)
|
||||
* [prepareInlineStyleSheet](globals.md#prepareinlinestylesheet)
|
||||
@ -550,6 +562,18 @@ ___
|
||||
|
||||
___
|
||||
|
||||
### `Const` c1item1
|
||||
|
||||
• **c1item1**: *[QTreeWidgetItem](classes/qtreewidgetitem.md)‹›* = new QTreeWidgetItem(item1)
|
||||
|
||||
___
|
||||
|
||||
### `Const` c1item2
|
||||
|
||||
• **c1item2**: *[QTreeWidgetItem](classes/qtreewidgetitem.md)‹›* = new QTreeWidgetItem(item1)
|
||||
|
||||
___
|
||||
|
||||
### `Const` columnFour
|
||||
|
||||
• **columnFour**: *[QLabel](classes/qlabel.md)‹›* = new QLabel()
|
||||
@ -574,6 +598,54 @@ ___
|
||||
|
||||
___
|
||||
|
||||
### `Const` icon
|
||||
|
||||
• **icon**: *[QIcon](classes/qicon.md)‹›* = new QIcon(myImage)
|
||||
|
||||
___
|
||||
|
||||
### `Const` item1
|
||||
|
||||
• **item1**: *[QTreeWidgetItem](classes/qtreewidgetitem.md)‹›* = new QTreeWidgetItem()
|
||||
|
||||
___
|
||||
|
||||
### `Const` item2
|
||||
|
||||
• **item2**: *[QTreeWidgetItem](classes/qtreewidgetitem.md)‹›* = new QTreeWidgetItem()
|
||||
|
||||
___
|
||||
|
||||
### `Const` item3
|
||||
|
||||
• **item3**: *[QTreeWidgetItem](classes/qtreewidgetitem.md)‹›* = new QTreeWidgetItem()
|
||||
|
||||
___
|
||||
|
||||
### `Const` item4
|
||||
|
||||
• **item4**: *[QTreeWidgetItem](classes/qtreewidgetitem.md)‹›* = new QTreeWidgetItem()
|
||||
|
||||
___
|
||||
|
||||
### `Const` item5
|
||||
|
||||
• **item5**: *[QTreeWidgetItem](classes/qtreewidgetitem.md)‹›* = new QTreeWidgetItem()
|
||||
|
||||
___
|
||||
|
||||
### `Const` item6
|
||||
|
||||
• **item6**: *[QTreeWidgetItem](classes/qtreewidgetitem.md)‹›* = new QTreeWidgetItem()
|
||||
|
||||
___
|
||||
|
||||
### `Const` myImage
|
||||
|
||||
• **myImage**: *"./website/static/img/logo.png"* = "./website/static/img/logo.png"
|
||||
|
||||
___
|
||||
|
||||
### `Const` outer
|
||||
|
||||
• **outer**: *[QWidget](classes/qwidget.md)‹›* = new QWidget()
|
||||
@ -592,6 +664,12 @@ ___
|
||||
|
||||
___
|
||||
|
||||
### `Const` tree
|
||||
|
||||
• **tree**: *[QTreeWidget](classes/qtreewidget.md)‹›* = new QTreeWidget()
|
||||
|
||||
___
|
||||
|
||||
### `Const` win
|
||||
|
||||
• **win**: *[QMainWindow](classes/qmainwindow.md)‹›* = new QMainWindow()
|
||||
@ -641,6 +719,14 @@ Name | Type |
|
||||
|
||||
___
|
||||
|
||||
### createTreeWidget
|
||||
|
||||
▸ **createTreeWidget**(): *[QTreeWidget](classes/qtreewidget.md)*
|
||||
|
||||
**Returns:** *[QTreeWidget](classes/qtreewidget.md)*
|
||||
|
||||
___
|
||||
|
||||
### main
|
||||
|
||||
▸ **main**(): *void*
|
||||
|
||||
@ -13,7 +13,7 @@ module.exports = {
|
||||
alt: 'NodeGui Logo',
|
||||
src: 'img/logo-circle.png',
|
||||
},
|
||||
links: [
|
||||
items: [
|
||||
{ to: 'docs/guides/getting-started', label: 'Docs', position: 'right' },
|
||||
{ to: 'docs/api/manual/synopsis', label: 'API', position: 'right' },
|
||||
{ to: 'blog', label: 'Blog', position: 'right' },
|
||||
|
||||
@ -9,9 +9,9 @@
|
||||
"deploy": "docusaurus deploy"
|
||||
},
|
||||
"dependencies": {
|
||||
"@docusaurus/core": "^2.0.0-alpha.48",
|
||||
"@docusaurus/plugin-google-analytics": "^2.0.0-alpha.48",
|
||||
"@docusaurus/preset-classic": "^2.0.0-alpha.48",
|
||||
"@docusaurus/core": "^2.0.0",
|
||||
"@docusaurus/plugin-google-analytics": "^2.0.0",
|
||||
"@docusaurus/preset-classic": "^2.0.0",
|
||||
"classnames": "^2.2.6",
|
||||
"react": "^16.8.4",
|
||||
"react-dom": "^16.8.4",
|
||||
|
||||
4057
website/yarn.lock
4057
website/yarn.lock
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user