fix(core): update

This commit is contained in:
2020-06-03 10:34:09 +00:00
parent aa91dad272
commit d3fa33f0cc
4 changed files with 17 additions and 3 deletions

View File

@ -2,7 +2,6 @@ import * as plugins from './domtools.plugins';
import { Stringmap } from '@pushrocks/lik/dist_ts/lik.stringmap';
import { FastMap } from '@pushrocks/lik/dist_ts/lik.fastmap';
import { TViewport } from './domtools.breakpoints';
import { DomToolsRouter } from './domtools.classes.router';
export interface IDomToolsState {
virtualViewport: TViewport;
@ -45,7 +44,7 @@ export class DomTools {
virtualViewport: 'native',
});
public router = new DomToolsRouter({
public router = new plugins.smartrouter.SmartRouter({
debug: false
});

View File

@ -1,5 +1,6 @@
// pushrocks scope
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartrouter from '@pushrocks/smartrouter';
import * as smartstate from '@pushrocks/smartstate';
export { smartpromise, smartstate };
export { smartpromise, smartrouter, smartstate };