Compare commits

...

26 Commits

Author SHA1 Message Date
fdfc7b4963 2.0.52 2023-10-22 16:03:38 +02:00
28be3f3095 fix(core): update 2023-10-22 16:03:37 +02:00
3b946d7700 2.0.51 2023-10-07 12:25:44 +02:00
20e14bf14d fix(core): update 2023-10-07 12:25:44 +02:00
23a9ea9dfc 2.0.50 2023-10-05 14:08:44 +02:00
a64af6f0ff fix(core): update 2023-10-05 14:08:43 +02:00
e456df08d1 2.0.49 2023-10-03 19:23:24 +02:00
fd758e5ec1 fix(core): update 2023-10-03 19:23:23 +02:00
c45eac1796 2.0.48 2023-10-03 19:20:39 +02:00
5530642c3e fix(core): update 2023-10-03 19:20:38 +02:00
6b8bd28057 2.0.47 2023-10-03 18:58:21 +02:00
1ba907d2cc fix(core): update 2023-10-03 18:58:20 +02:00
6a7da41c98 2.0.46 2023-10-03 13:20:28 +02:00
b67a602f78 fix(core): update 2023-10-03 13:20:27 +02:00
fa093e6f5b 2.0.45 2023-10-03 12:48:23 +02:00
29f26d2ea7 fix(core): update 2023-10-03 12:48:22 +02:00
77fe34ebac 2.0.44 2023-10-03 12:38:18 +02:00
9ccd2fb2cf fix(core): update 2023-10-03 12:38:17 +02:00
02f67c64df 2.0.43 2023-10-03 11:46:15 +02:00
31dd8aa258 fix(core): update 2023-10-03 11:46:14 +02:00
5f66725c6b 2.0.42 2023-10-03 11:33:39 +02:00
89af82d2c4 fix(core): update 2023-10-03 11:33:38 +02:00
98dab6c683 2.0.41 2023-09-17 14:30:55 +02:00
805ce5ed88 fix(core): update 2023-09-17 14:30:55 +02:00
6f30b7618d 2.0.40 2023-09-09 23:36:32 +02:00
42fd443ad8 fix(core): update 2023-09-09 23:36:31 +02:00
7 changed files with 739 additions and 584 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@design.estate/dees-domtools",
"version": "2.0.39",
"version": "2.0.52",
"private": false,
"description": "tools to simplify complex css structures",
"main": "dist_ts/index.js",
@ -16,13 +16,13 @@
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.70",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tstest": "^1.0.80",
"@git.zone/tsbundle": "^2.0.10",
"@git.zone/tstest": "^1.0.81",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.5.6"
"@types/node": "^20.8.3"
},
"dependencies": {
"@apiglobal/typedrequest": "^2.0.12",
"@api.global/typedrequest": "^3.0.1",
"@design.estate/dees-comms": "^1.0.22",
"@push.rocks/lik": "^6.0.5",
"@push.rocks/smartdelay": "^3.0.5",
@ -30,11 +30,11 @@
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartrouter": "^1.0.16",
"@push.rocks/smartrx": "^3.0.6",
"@push.rocks/smartstate": "^2.0.8",
"@push.rocks/smartstate": "^2.0.17",
"@push.rocks/smarturl": "^3.0.6",
"@push.rocks/webrequest": "^3.0.32",
"@push.rocks/webrequest": "^3.0.33",
"@push.rocks/websetup": "^3.0.19",
"@push.rocks/webstore": "^2.0.9",
"@push.rocks/webstore": "^2.0.13",
"lit": "^2.8.0",
"sweet-scroll": "^4.0.0"
},

1291
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-domtools',
version: '2.0.39',
version: '2.0.52',
description: 'tools to simplify complex css structures'
}

View File

@ -32,7 +32,7 @@ export const globalBaseStyles: string = css`
/* global body styles */
body {
margin: 0px;
font-family: 'Mona Sans', 'Inter', sans-serif;
font-family: 'Roboto', 'Inter', sans-serif;
box-sizing: border-box;
}

View File

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

View File

@ -4,7 +4,7 @@ import * as deesComms from '@design.estate/dees-comms';
export { deesComms };
// apiglobal scope
import * as typedrequest from '@apiglobal/typedrequest';
import * as typedrequest from '@api.global/typedrequest';
export { typedrequest };

View File

@ -6,9 +6,8 @@ import * as css from './domtools.css.js';
export { css, breakpoints, elementBasic };
export { DomTools, type IDomToolsContructorOptions } from './domtools.classes.domtools.js';
export { TypedRequest } from '@apiglobal/typedrequest';
export { TypedRequest } from '@api.global/typedrequest';
export { type IWebSetupConstructorOptions } from '@push.rocks/websetup';
export { rxjs } from '@push.rocks/smartrx';
import * as allPlugins from './domtools.plugins.js';
@ -17,4 +16,7 @@ export const plugins = {
smartpromise: allPlugins.smartpromise,
SweetScroll: allPlugins.SweetScroll,
smartstate: allPlugins.smartstate,
smartrx: allPlugins.smartrx,
smarturl: allPlugins.smarturl,
typedrequest: allPlugins.typedrequest,
};