Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
bd6ba6d6db | |||
317bc63bc7 | |||
22eeb7809b | |||
fdd550ec21 | |||
9db1f92ba3 | |||
772d0b0b97 | |||
a68e9e1bf9 | |||
f9507b0dbd |
8
package-lock.json
generated
8
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@designestate/dees-domtools",
|
"name": "@designestate/dees-domtools",
|
||||||
"version": "1.0.56",
|
"version": "1.0.60",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -2189,9 +2189,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@pushrocks/websetup": {
|
"@pushrocks/websetup": {
|
||||||
"version": "3.0.3",
|
"version": "3.0.8",
|
||||||
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.3.tgz",
|
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.8.tgz",
|
||||||
"integrity": "sha512-BEI2b+Owjh5uSLzhBHCOo/HLwR/QbfjoHJKn7ruyili4jWzQFnH17ws3la1arNQrPcZKw0dtj/0/nbcUfc1qMw==",
|
"integrity": "sha512-JyuzLMAaMtA3Mwc1ZtN9HdGONaYqwYTOEgLL15oKMqIW0I3lElW+qq4y94F1OXffM6Y9nJvtj+wmh0zqDYPT2A==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@pushrocks/smartpromise": "^3.1.3",
|
"@pushrocks/smartpromise": "^3.1.3",
|
||||||
"@tsclass/tsclass": "^3.0.29"
|
"@tsclass/tsclass": "^3.0.29"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@designestate/dees-domtools",
|
"name": "@designestate/dees-domtools",
|
||||||
"version": "1.0.56",
|
"version": "1.0.60",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "tools to simplify complex css structures",
|
"description": "tools to simplify complex css structures",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@ -30,7 +30,7 @@
|
|||||||
"@pushrocks/smartrouter": "^1.0.4",
|
"@pushrocks/smartrouter": "^1.0.4",
|
||||||
"@pushrocks/smartstate": "^1.0.17",
|
"@pushrocks/smartstate": "^1.0.17",
|
||||||
"@pushrocks/webrequest": "^2.0.13",
|
"@pushrocks/webrequest": "^2.0.13",
|
||||||
"@pushrocks/websetup": "^3.0.3",
|
"@pushrocks/websetup": "^3.0.8",
|
||||||
"@pushrocks/webstore": "^1.0.16",
|
"@pushrocks/webstore": "^1.0.16",
|
||||||
"lit-element": "^2.4.0",
|
"lit-element": "^2.4.0",
|
||||||
"sweet-scroll": "^4.0.0"
|
"sweet-scroll": "^4.0.0"
|
||||||
|
@ -64,7 +64,11 @@ export class DomTools {
|
|||||||
bodyElement: null,
|
bodyElement: null,
|
||||||
};
|
};
|
||||||
|
|
||||||
public websetup: WebSetup;
|
public websetup: WebSetup = new WebSetup({
|
||||||
|
metaObject: {
|
||||||
|
title: 'loading...'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
public smartstate = new plugins.smartstate.Smartstate();
|
public smartstate = new plugins.smartstate.Smartstate();
|
||||||
public domToolsStatePart = this.smartstate.getStatePart<IDomToolsState>('domtools', {
|
public domToolsStatePart = this.smartstate.getStatePart<IDomToolsState>('domtools', {
|
||||||
@ -145,7 +149,7 @@ export class DomTools {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async setWebsiteInfo(optionsArg: plugins.websetup.IWebSetupConstructorOptions) {
|
public async setWebsiteInfo(optionsArg: plugins.websetup.IWebSetupConstructorOptions) {
|
||||||
this.websetup = new plugins.websetup.WebSetup(optionsArg);
|
this.websetup.setup(optionsArg);
|
||||||
await this.websetup.readyPromise;
|
await this.websetup.readyPromise;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user