Compare commits

...

10 Commits

Author SHA1 Message Date
f5263a0cc4 1.0.61 2020-11-05 18:50:28 +00:00
4a022a7d1d fix(core): update 2020-11-05 18:50:28 +00:00
bd6ba6d6db 1.0.60 2020-11-05 18:08:42 +00:00
317bc63bc7 fix(core): update 2020-11-05 18:08:42 +00:00
22eeb7809b 1.0.59 2020-11-05 17:37:45 +00:00
fdd550ec21 fix(core): update 2020-11-05 17:37:45 +00:00
9db1f92ba3 1.0.58 2020-11-05 17:20:01 +00:00
772d0b0b97 fix(core): update 2020-11-05 17:20:01 +00:00
a68e9e1bf9 1.0.57 2020-11-05 15:40:35 +00:00
f9507b0dbd fix(core): update 2020-11-05 15:40:35 +00:00
3 changed files with 12 additions and 8 deletions

8
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "1.0.56",
"version": "1.0.61",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -2189,9 +2189,9 @@
}
},
"@pushrocks/websetup": {
"version": "3.0.3",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.3.tgz",
"integrity": "sha512-BEI2b+Owjh5uSLzhBHCOo/HLwR/QbfjoHJKn7ruyili4jWzQFnH17ws3la1arNQrPcZKw0dtj/0/nbcUfc1qMw==",
"version": "3.0.9",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.9.tgz",
"integrity": "sha512-yhEGPrzOqtvVQLE8njRw1z8bxLtOnbVwZ3NmprQMmVWAd0vUzMqx0pZN5ssQYz6xf5fbjXUaG2ZOwLea/L8Asg==",
"requires": {
"@pushrocks/smartpromise": "^3.1.3",
"@tsclass/tsclass": "^3.0.29"

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "1.0.56",
"version": "1.0.61",
"private": false,
"description": "tools to simplify complex css structures",
"main": "dist_ts/index.js",
@ -30,7 +30,7 @@
"@pushrocks/smartrouter": "^1.0.4",
"@pushrocks/smartstate": "^1.0.17",
"@pushrocks/webrequest": "^2.0.13",
"@pushrocks/websetup": "^3.0.3",
"@pushrocks/websetup": "^3.0.9",
"@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;
}
}