fix(core): update

This commit is contained in:
Philipp Kunz 2020-11-05 18:08:42 +00:00
parent 22eeb7809b
commit 317bc63bc7
3 changed files with 10 additions and 6 deletions

6
package-lock.json generated
View File

@ -2189,9 +2189,9 @@
}
},
"@pushrocks/websetup": {
"version": "3.0.7",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.7.tgz",
"integrity": "sha512-2r8WsxHRXccxVpmeIvUtPmA7T+vc9gieGaZd4Ae2UnWeDdtO8VBdl2t2plJvM5RI0qytTcLFUhNmzqMuSwMR5g==",
"version": "3.0.8",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.8.tgz",
"integrity": "sha512-JyuzLMAaMtA3Mwc1ZtN9HdGONaYqwYTOEgLL15oKMqIW0I3lElW+qq4y94F1OXffM6Y9nJvtj+wmh0zqDYPT2A==",
"requires": {
"@pushrocks/smartpromise": "^3.1.3",
"@tsclass/tsclass": "^3.0.29"

View File

@ -30,7 +30,7 @@
"@pushrocks/smartrouter": "^1.0.4",
"@pushrocks/smartstate": "^1.0.17",
"@pushrocks/webrequest": "^2.0.13",
"@pushrocks/websetup": "^3.0.7",
"@pushrocks/websetup": "^3.0.8",
"@pushrocks/webstore": "^1.0.16",
"lit-element": "^2.4.0",
"sweet-scroll": "^4.0.0"

View File

@ -64,7 +64,11 @@ export class DomTools {
bodyElement: null,
};
public websetup: WebSetup;
public websetup: WebSetup = new WebSetup({
metaObject: {
title: 'loading...'
}
});
public smartstate = new plugins.smartstate.Smartstate();
public domToolsStatePart = this.smartstate.getStatePart<IDomToolsState>('domtools', {
@ -145,7 +149,7 @@ export class DomTools {
}
public async setWebsiteInfo(optionsArg: plugins.websetup.IWebSetupConstructorOptions) {
this.websetup = new plugins.websetup.WebSetup(optionsArg);
this.websetup.setup(optionsArg);
await this.websetup.readyPromise;
}
}