fix(core): update

This commit is contained in:
Philipp Kunz 2020-10-06 22:08:26 +00:00
parent 63463a751c
commit 27c087b693
4 changed files with 36 additions and 3 deletions

27
package-lock.json generated
View File

@ -27,8 +27,7 @@
"@apiglobal/typedrequest-interfaces": {
"version": "1.0.15",
"resolved": "https://verdaccio.lossless.one/@apiglobal%2ftypedrequest-interfaces/-/typedrequest-interfaces-1.0.15.tgz",
"integrity": "sha512-KncX168fUQJ73FeT22Cvls41mkJmtasP8dB2s9+9/OyWZpNsCzk9NEmtdRhulW2vLQwuAbQc1eoloe7ffCmhcA==",
"dev": true
"integrity": "sha512-KncX168fUQJ73FeT22Cvls41mkJmtasP8dB2s9+9/OyWZpNsCzk9NEmtdRhulW2vLQwuAbQc1eoloe7ffCmhcA=="
},
"@babel/code-frame": {
"version": "7.10.4",
@ -1132,6 +1131,30 @@
"to-fast-properties": "^2.0.0"
}
},
"@designestate/dees-comms": {
"version": "1.0.6",
"resolved": "https://verdaccio.lossless.one/@designestate%2fdees-comms/-/dees-comms-1.0.6.tgz",
"integrity": "sha512-l6J1E23jl2R/eUML0mhanIjfsGA38dDauBj1dZP8BCax1WKk5BSgs9mnPYg8Yja62v0jvEPTanDQxb9rar+Nvw==",
"requires": {
"@apiglobal/typedrequest": "^1.0.53",
"@apiglobal/typedrequest-interfaces": "^1.0.15"
},
"dependencies": {
"@apiglobal/typedrequest": {
"version": "1.0.53",
"resolved": "https://verdaccio.lossless.one/@apiglobal%2ftypedrequest/-/typedrequest-1.0.53.tgz",
"integrity": "sha512-9KfG+ZfhryepIY1Q++OIMSU6k3Qy1MGRPXPLXQyPua5uXgHTPgT59+pczwpTAo1Mru4o0H87Xtwt596HV7FGsg==",
"requires": {
"@apiglobal/typedrequest-interfaces": "^1.0.15",
"@pushrocks/isounique": "^1.0.4",
"@pushrocks/lik": "^4.0.17",
"@pushrocks/smartdelay": "^2.0.10",
"@pushrocks/smartpromise": "^3.0.6",
"@pushrocks/webrequest": "^2.0.10"
}
}
}
},
"@gitzone/tsbuild": {
"version": "2.1.25",
"resolved": "https://verdaccio.lossless.one/@gitzone%2ftsbuild/-/tsbuild-2.1.25.tgz",

View File

@ -23,6 +23,7 @@
},
"dependencies": {
"@apiglobal/typedrequest": "^1.0.43",
"@designestate/dees-comms": "^1.0.6",
"@pushrocks/lik": "^4.0.17",
"@pushrocks/smartdelay": "^2.0.10",
"@pushrocks/smartpromise": "^3.0.6",

View File

@ -78,6 +78,8 @@ export class DomTools {
public scroller: plugins.SweetScroll;
public deesComms = new plugins.deesComms.DeesComms();
private actionSetVirtualViewport = this.domToolsStatePart.createAction<TViewport>(
async (statePart, payload) => {
const currentState = statePart.getState();

View File

@ -1,4 +1,11 @@
// api glbal scope
// designestate scope
import * as deesComms from '@designestate/dees-comms';
export {
deesComms
};
// apiglobal scope
import * as typedrequest from '@apiglobal/typedrequest';
export { typedrequest };