Compare commits

...

4 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
ef0a4eae80 1.0.88 2021-08-19 22:12:22 +02:00
e711302c28 fix(core): update 2021-08-19 22:12:22 +02:00
4 changed files with 15703 additions and 23 deletions

15720
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.87", "version": "1.0.89",
"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",

View File

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

View File

@ -8,9 +8,11 @@ export { css, breakpoints, elementBasic };
export { DomTools } from './domtools.classes.domtools'; export { DomTools } from './domtools.classes.domtools';
export { TypedRequest } from '@apiglobal/typedrequest'; export { TypedRequest } from '@apiglobal/typedrequest';
export { IWebSetupConstructorOptions } from '@pushrocks/websetup'; export { IWebSetupConstructorOptions } from '@pushrocks/websetup';
export { rxjs } from '@pushrocks/smartrx';
import * as allPlugins from './domtools.plugins'; import * as allPlugins from './domtools.plugins';
export const plugins = { export const plugins = {
smartdelay: allPlugins.smartdelay,
smartpromise: allPlugins.smartpromise, smartpromise: allPlugins.smartpromise,
}; };