fix(core): update
This commit is contained in:
parent
7ee0d63a2c
commit
f8f2f05396
15268
package-lock.json
generated
15268
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -25,9 +25,10 @@
|
|||||||
"@designestate/dees-comms": "^1.0.22",
|
"@designestate/dees-comms": "^1.0.22",
|
||||||
"@pushrocks/lik": "^6.0.0",
|
"@pushrocks/lik": "^6.0.0",
|
||||||
"@pushrocks/smartdelay": "^2.0.13",
|
"@pushrocks/smartdelay": "^2.0.13",
|
||||||
|
"@pushrocks/smartjson": "^5.0.5",
|
||||||
"@pushrocks/smartpromise": "^3.1.7",
|
"@pushrocks/smartpromise": "^3.1.7",
|
||||||
"@pushrocks/smartrouter": "^1.0.12",
|
"@pushrocks/smartrouter": "^1.0.12",
|
||||||
"@pushrocks/smartrx": "^2.0.25",
|
"@pushrocks/smartrx": "^3.0.0",
|
||||||
"@pushrocks/smartstate": "^2.0.0",
|
"@pushrocks/smartstate": "^2.0.0",
|
||||||
"@pushrocks/webrequest": "^3.0.9",
|
"@pushrocks/webrequest": "^3.0.9",
|
||||||
"@pushrocks/websetup": "^3.0.16",
|
"@pushrocks/websetup": "^3.0.16",
|
||||||
|
4392
pnpm-lock.yaml
Normal file
4392
pnpm-lock.yaml
Normal file
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@designestate/dees-domtools',
|
name: '@designestate/dees-domtools',
|
||||||
version: '2.0.23',
|
version: '2.0.24',
|
||||||
description: 'tools to simplify complex css structures'
|
description: 'tools to simplify complex css structures'
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,5 @@
|
|||||||
import * as plugins from './domtools.plugins.js';
|
import * as plugins from './domtools.plugins.js';
|
||||||
import { Stringmap } from '@pushrocks/lik/dist_ts/lik.stringmap.js';
|
|
||||||
import { FastMap } from '@pushrocks/lik/dist_ts/lik.fastmap.js';
|
|
||||||
import { TViewport } from './domtools.css.breakpoints.js';
|
import { TViewport } from './domtools.css.breakpoints.js';
|
||||||
|
|
||||||
import { Scroller } from './domtools.classes.scroller.js';
|
import { Scroller } from './domtools.classes.scroller.js';
|
||||||
import { WebSetup } from '@pushrocks/websetup';
|
import { WebSetup } from '@pushrocks/websetup';
|
||||||
import { ThemeManager } from './domtools.classes.thememanager.js';
|
import { ThemeManager } from './domtools.classes.thememanager.js';
|
||||||
@ -106,8 +103,8 @@ export class DomTools {
|
|||||||
|
|
||||||
constructor(optionsArg: IDomToolsContructorOptions) {}
|
constructor(optionsArg: IDomToolsContructorOptions) {}
|
||||||
|
|
||||||
private runOnceTrackerStringMap = new Stringmap();
|
private runOnceTrackerStringMap = new plugins.lik.Stringmap();
|
||||||
private runOnceResultMap = new FastMap();
|
private runOnceResultMap = new plugins.lik.FastMap();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* run a function once and always get the Promise of the first execution
|
* run a function once and always get the Promise of the first execution
|
||||||
|
@ -10,6 +10,7 @@ export { typedrequest };
|
|||||||
|
|
||||||
// pushrocks scope
|
// pushrocks scope
|
||||||
import * as smartdelay from '@pushrocks/smartdelay';
|
import * as smartdelay from '@pushrocks/smartdelay';
|
||||||
|
import * as smartjson from '@pushrocks/smartjson';
|
||||||
import * as smartpromise from '@pushrocks/smartpromise';
|
import * as smartpromise from '@pushrocks/smartpromise';
|
||||||
import * as smartrouter from '@pushrocks/smartrouter';
|
import * as smartrouter from '@pushrocks/smartrouter';
|
||||||
import * as smartrx from '@pushrocks/smartrx';
|
import * as smartrx from '@pushrocks/smartrx';
|
||||||
@ -20,13 +21,18 @@ import * as webstore from '@pushrocks/webstore';
|
|||||||
|
|
||||||
// subscope lik
|
// subscope lik
|
||||||
import { ObjectMap } from '@pushrocks/lik/dist_ts/lik.objectmap.js';
|
import { ObjectMap } from '@pushrocks/lik/dist_ts/lik.objectmap.js';
|
||||||
|
import { Stringmap } from '@pushrocks/lik/dist_ts/lik.stringmap.js';
|
||||||
|
import { FastMap } from '@pushrocks/lik/dist_ts/lik.fastmap.js';
|
||||||
const lik = {
|
const lik = {
|
||||||
ObjectMap,
|
ObjectMap,
|
||||||
|
Stringmap,
|
||||||
|
FastMap,
|
||||||
};
|
};
|
||||||
|
|
||||||
export {
|
export {
|
||||||
lik,
|
lik,
|
||||||
smartdelay,
|
smartdelay,
|
||||||
|
smartjson,
|
||||||
smartpromise,
|
smartpromise,
|
||||||
smartrouter,
|
smartrouter,
|
||||||
smartrx,
|
smartrx,
|
||||||
|
Loading…
Reference in New Issue
Block a user