Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
8d355f234f | |||
a5c22ec1db | |||
f5263a0cc4 | |||
4a022a7d1d | |||
bd6ba6d6db | |||
317bc63bc7 | |||
22eeb7809b | |||
fdd550ec21 |
9
package-lock.json
generated
9
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@designestate/dees-domtools",
|
||||
"version": "1.0.58",
|
||||
"version": "1.0.62",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
@ -2189,10 +2189,11 @@
|
||||
}
|
||||
},
|
||||
"@pushrocks/websetup": {
|
||||
"version": "3.0.6",
|
||||
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.6.tgz",
|
||||
"integrity": "sha512-rJAIZn30mUjNC/XOLih3q6lZ/YnPSN6vbBYS4TY1V97RieuqNxrZER+2LB+xSP7KvBnJF5RyerPQzqYp0hYq+w==",
|
||||
"version": "3.0.10",
|
||||
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.10.tgz",
|
||||
"integrity": "sha512-iP4hs1+IWqoqWHa9Si9aBEkD7puBUdDrPfxM8a/6cJJf0scBjHkHFqPHj5Ig5HQjUsK1hRF6Ys3mlKWHe/9MJA==",
|
||||
"requires": {
|
||||
"@pushrocks/smartdelay": "^2.0.10",
|
||||
"@pushrocks/smartpromise": "^3.1.3",
|
||||
"@tsclass/tsclass": "^3.0.29"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@designestate/dees-domtools",
|
||||
"version": "1.0.58",
|
||||
"version": "1.0.62",
|
||||
"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.6",
|
||||
"@pushrocks/websetup": "^3.0.10",
|
||||
"@pushrocks/webstore": "^1.0.16",
|
||||
"lit-element": "^2.4.0",
|
||||
"sweet-scroll": "^4.0.0"
|
||||
|
@ -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);
|
||||
await this.websetup.setup(optionsArg);
|
||||
await this.websetup.readyPromise;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user