Compare commits

..

6 Commits

Author SHA1 Message Date
da79e623cc 1.0.95 2021-09-16 16:49:24 +02:00
3ca6b5e34e fix(core): update 2021-09-16 16:49:24 +02:00
98f0bc013d 1.0.94 2021-09-13 20:35:34 +02:00
d32a544de2 fix(core): update 2021-09-13 20:35:33 +02:00
070221d6c9 1.0.93 2021-09-08 23:10:04 +02:00
19714854ba fix(core): update 2021-09-08 23:10:04 +02:00
4 changed files with 3871 additions and 5189 deletions

9049
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@designestate/dees-domtools", "name": "@designestate/dees-domtools",
"version": "1.0.92", "version": "1.0.95",
"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",
@ -17,14 +17,14 @@
"@gitzone/tsbundle": "^1.0.87", "@gitzone/tsbundle": "^1.0.87",
"@gitzone/tstest": "^1.0.57", "@gitzone/tstest": "^1.0.57",
"@pushrocks/tapbundle": "^3.2.14", "@pushrocks/tapbundle": "^3.2.14",
"@types/node": "^16.9.0", "@types/node": "^16.9.1",
"tslint": "^6.1.3", "tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0" "tslint-config-prettier": "^1.15.0"
}, },
"dependencies": { "dependencies": {
"@apiglobal/typedrequest": "^1.0.56", "@apiglobal/typedrequest": "^1.0.56",
"@designestate/dees-comms": "^1.0.9", "@designestate/dees-comms": "^1.0.9",
"@pushrocks/lik": "^4.0.20", "@pushrocks/lik": "^4.0.22",
"@pushrocks/smartdelay": "^2.0.13", "@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartpromise": "^3.1.6", "@pushrocks/smartpromise": "^3.1.6",
"@pushrocks/smartrouter": "^1.0.11", "@pushrocks/smartrouter": "^1.0.11",

View File

@ -80,7 +80,7 @@ export class DomTools {
}); });
public convenience = { public convenience = {
typedrequest: plugins.typedrequest,
smartdelay: plugins.smartdelay, smartdelay: plugins.smartdelay,
}; };

View File

@ -15,5 +15,6 @@ import * as allPlugins from './domtools.plugins';
export const plugins = { export const plugins = {
smartdelay: allPlugins.smartdelay, smartdelay: allPlugins.smartdelay,
smartpromise: allPlugins.smartpromise, smartpromise: allPlugins.smartpromise,
SweetScroll: allPlugins.SweetScroll SweetScroll: allPlugins.SweetScroll,
smartstate: allPlugins.smartstate
}; };