Compare commits

...

8 Commits

Author SHA1 Message Date
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
7 changed files with 14 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "2.0.24",
"version": "2.0.28",
"private": false,
"description": "tools to simplify complex css structures",
"main": "dist_ts/index.js",
@ -30,6 +30,7 @@
"@pushrocks/smartrouter": "^1.0.12",
"@pushrocks/smartrx": "^3.0.0",
"@pushrocks/smartstate": "^2.0.0",
"@pushrocks/smarturl": "^3.0.5",
"@pushrocks/webrequest": "^3.0.9",
"@pushrocks/websetup": "^3.0.16",
"@pushrocks/webstore": "^2.0.5",

3
pnpm-lock.yaml generated
View File

@ -13,6 +13,7 @@ specifiers:
'@pushrocks/smartrouter': ^1.0.12
'@pushrocks/smartrx': ^3.0.0
'@pushrocks/smartstate': ^2.0.0
'@pushrocks/smarturl': ^3.0.5
'@pushrocks/tapbundle': ^5.0.4
'@pushrocks/webrequest': ^3.0.9
'@pushrocks/websetup': ^3.0.16
@ -31,6 +32,7 @@ dependencies:
'@pushrocks/smartrouter': 1.0.13
'@pushrocks/smartrx': 3.0.0
'@pushrocks/smartstate': 2.0.0
'@pushrocks/smarturl': 3.0.5
'@pushrocks/webrequest': 3.0.13
'@pushrocks/websetup': 3.0.16
'@pushrocks/webstore': 2.0.5
@ -829,7 +831,6 @@ packages:
/@pushrocks/smarturl/3.0.5:
resolution: {integrity: sha512-XKS+GpIOvMhxr855PmO39SOvv/hdhBbLZ45dkAA6uGL3XdW036jAp61nu7qeB3c6FPShCyhJzo2z5x51wW7OwQ==}
dev: true
/@pushrocks/smartxml/1.0.6:
resolution: {integrity: sha512-Cy//pxzdpplqE64h9/sAwvAkUBv9t3Nw9v6k2c+erXH779iOtuyGiiyWqgbRTX1wo2CRhMJqWGJx6xd2Ljq5kw==}

View File

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

View File

@ -88,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();

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

@ -15,6 +15,7 @@ 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';
@ -36,6 +37,7 @@ export {
smartpromise,
smartrouter,
smartrx,
smarturl,
smartstate,
webrequest,
websetup,