Compare commits

...

2 Commits

Author SHA1 Message Date
fa24708a47 1.0.89 2021-08-26 20:24:29 +02:00
31126e30eb fix(core): update 2021-08-26 20:24:28 +02:00
4 changed files with 5 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@designestate/dees-domtools",
"version": "1.0.88",
"version": "1.0.89",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@designestate/dees-domtools",
"version": "1.0.88",
"version": "1.0.89",
"license": "MIT",
"dependencies": {
"@apiglobal/typedrequest": "^1.0.56",

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "1.0.88",
"version": "1.0.89",
"private": false,
"description": "tools to simplify complex css structures",
"main": "dist_ts/index.js",

View File

@ -4,7 +4,6 @@ import { FastMap } from '@pushrocks/lik/dist_ts/lik.fastmap';
import { TViewport } from './domtools.breakpoints';
import { Scroller } from './domtools.classes.scroller';
import { delayForRandom } from '@pushrocks/smartdelay';
import { WebSetup } from '@pushrocks/websetup';
import { ThemeManager } from './domtools.classes.thememanager';
@ -81,6 +80,7 @@ export class DomTools {
});
public convenience = {
smartdelay: plugins.smartdelay,
};

View File

@ -13,5 +13,6 @@ export { rxjs } from '@pushrocks/smartrx';
import * as allPlugins from './domtools.plugins';
export const plugins = {
smartdelay: allPlugins.smartdelay,
smartpromise: allPlugins.smartpromise,
};