Compare commits

...

12 Commits

Author SHA1 Message Date
bb64a8ecac 2.0.29 2023-04-05 16:38:44 +02:00
a4a26e44aa fix(core): update 2023-04-05 16:38:43 +02:00
f350905907 2.0.28 2023-01-07 08:24:38 +01:00
a90e326f5e fix(core): update 2023-01-07 08:24:37 +01:00
7c9aef342d 2.0.27 2023-01-03 17:02:40 +01:00
99eab4e35f fix(core): update 2023-01-03 17:02:40 +01:00
6d12aed53e 2.0.26 2023-01-02 17:25:17 +01:00
29bcd17350 fix(core): update 2023-01-02 17:25:17 +01:00
f2e858d0b8 2.0.25 2022-12-31 12:12:59 +01:00
83a78a2c97 fix(core): update 2022-12-31 12:12:58 +01:00
d77c657d6a 2.0.24 2022-12-31 11:34:05 +01:00
f8f2f05396 fix(core): update 2022-12-31 11:34:04 +01:00
8 changed files with 4507 additions and 15289 deletions

15268
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "2.0.23",
"version": "2.0.29",
"private": false,
"description": "tools to simplify complex css structures",
"main": "dist_ts/index.js",
@ -18,21 +18,23 @@
"@gitzone/tsbundle": "^2.0.6",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.3"
"@types/node": "^18.15.11"
},
"dependencies": {
"@apiglobal/typedrequest": "^2.0.8",
"@designestate/dees-comms": "^1.0.22",
"@pushrocks/lik": "^6.0.0",
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartrouter": "^1.0.12",
"@pushrocks/smartrx": "^2.0.25",
"@pushrocks/smartstate": "^2.0.0",
"@pushrocks/webrequest": "^3.0.9",
"@pushrocks/lik": "^6.0.2",
"@pushrocks/smartdelay": "^3.0.1",
"@pushrocks/smartjson": "^5.0.5",
"@pushrocks/smartpromise": "^4.0.0",
"@pushrocks/smartrouter": "^1.0.14",
"@pushrocks/smartrx": "^3.0.0",
"@pushrocks/smartstate": "^2.0.4",
"@pushrocks/smarturl": "^3.0.5",
"@pushrocks/webrequest": "^3.0.21",
"@pushrocks/websetup": "^3.0.16",
"@pushrocks/webstore": "^2.0.5",
"lit": "^2.2.8",
"lit": "^2.7.1",
"sweet-scroll": "^4.0.0"
},
"files": [

4477
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@designestate/dees-domtools',
version: '2.0.23',
version: '2.0.29',
description: 'tools to simplify complex css structures'
}

View File

@ -1,8 +1,5 @@
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 { Scroller } from './domtools.classes.scroller.js';
import { WebSetup } from '@pushrocks/websetup';
import { ThemeManager } from './domtools.classes.thememanager.js';
@ -91,6 +88,8 @@ export class DomTools {
public convenience = {
typedrequest: plugins.typedrequest,
smartdelay: plugins.smartdelay,
smartjson: plugins.smartjson,
smarturl: plugins.smarturl,
};
public deesComms = new plugins.deesComms.DeesComms();
@ -106,8 +105,8 @@ export class DomTools {
constructor(optionsArg: IDomToolsContructorOptions) {}
private runOnceTrackerStringMap = new Stringmap();
private runOnceResultMap = new FastMap();
private runOnceTrackerStringMap = new plugins.lik.Stringmap();
private runOnceResultMap = new plugins.lik.FastMap();
/**
* run a function once and always get the Promise of the first execution

View File

@ -20,19 +20,19 @@ export const scrollBarStyles: string = (() => {
})();
export const globalBaseStyles: string = css`
/* global material font */
/*
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(https://fonts.gstatic.com/s/materialicons/v42/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2)
format('woff2');
}
} */
/* global body styles */
body {
margin: 0px;
font-family: 'Roboto', sans-serif;
font-family: 'Inter', sans-serif;
box-sizing: border-box;
}

View File

@ -12,7 +12,7 @@ export const staticStyles = css`
:host {
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
font-family: 'Inter', sans-serif;
}
${unsafeCSS(scrollBarStyles)}
@ -29,7 +29,7 @@ export const styles = html`
}
:host {
font-family: 'Roboto', sans-serif;
font-family: 'Inter', sans-serif;
}
${scrollBarStyles}

View File

@ -10,26 +10,34 @@ export { typedrequest };
// pushrocks scope
import * as smartdelay from '@pushrocks/smartdelay';
import * as smartjson from '@pushrocks/smartjson';
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartrouter from '@pushrocks/smartrouter';
import * as smartrx from '@pushrocks/smartrx';
import * as smartstate from '@pushrocks/smartstate';
import * as smarturl from '@pushrocks/smarturl';
import * as webrequest from '@pushrocks/webrequest';
import * as websetup from '@pushrocks/websetup';
import * as webstore from '@pushrocks/webstore';
// subscope lik
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 = {
ObjectMap,
Stringmap,
FastMap,
};
export {
lik,
smartdelay,
smartjson,
smartpromise,
smartrouter,
smartrx,
smarturl,
smartstate,
webrequest,
websetup,