Compare commits
26 Commits
Author | SHA1 | Date | |
---|---|---|---|
385cab0b1b | |||
b6620120e9 | |||
20e2149fd9 | |||
af2eaf010f | |||
fdfc7b4963 | |||
28be3f3095 | |||
3b946d7700 | |||
20e14bf14d | |||
23a9ea9dfc | |||
a64af6f0ff | |||
e456df08d1 | |||
fd758e5ec1 | |||
c45eac1796 | |||
5530642c3e | |||
6b8bd28057 | |||
1ba907d2cc | |||
6a7da41c98 | |||
b67a602f78 | |||
fa093e6f5b | |||
29f26d2ea7 | |||
77fe34ebac | |||
9ccd2fb2cf | |||
02f67c64df | |||
31dd8aa258 | |||
5f66725c6b | |||
89af82d2c4 |
16
package.json
16
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@design.estate/dees-domtools",
|
||||
"version": "2.0.41",
|
||||
"version": "2.0.54",
|
||||
"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/tsbundle": "^2.0.10",
|
||||
"@git.zone/tstest": "^1.0.81",
|
||||
"@push.rocks/tapbundle": "^5.0.15",
|
||||
"@types/node": "^20.6.0"
|
||||
"@types/node": "^20.8.7"
|
||||
},
|
||||
"dependencies": {
|
||||
"@api.global/typedrequest": "^3.0.1",
|
||||
"@api.global/typedrequest": "^3.0.2",
|
||||
"@design.estate/dees-comms": "^1.0.22",
|
||||
"@push.rocks/lik": "^6.0.5",
|
||||
"@push.rocks/smartdelay": "^3.0.5",
|
||||
@ -30,12 +30,12 @@
|
||||
"@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.33",
|
||||
"@push.rocks/webrequest": "^3.0.34",
|
||||
"@push.rocks/websetup": "^3.0.19",
|
||||
"@push.rocks/webstore": "^2.0.9",
|
||||
"lit": "^2.8.0",
|
||||
"@push.rocks/webstore": "^2.0.13",
|
||||
"lit": "^3.0.0",
|
||||
"sweet-scroll": "^4.0.0"
|
||||
},
|
||||
"files": [
|
||||
|
462
pnpm-lock.yaml
generated
462
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@design.estate/dees-domtools',
|
||||
version: '2.0.41',
|
||||
version: '2.0.54',
|
||||
description: 'tools to simplify complex css structures'
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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}
|
||||
|
@ -8,7 +8,6 @@ export { css, breakpoints, elementBasic };
|
||||
export { DomTools, type IDomToolsContructorOptions } from './domtools.classes.domtools.js';
|
||||
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';
|
||||
|
||||
@ -19,4 +18,5 @@ export const plugins = {
|
||||
smartstate: allPlugins.smartstate,
|
||||
smartrx: allPlugins.smartrx,
|
||||
smarturl: allPlugins.smarturl,
|
||||
typedrequest: allPlugins.typedrequest,
|
||||
};
|
||||
|
Reference in New Issue
Block a user