Compare commits
20 Commits
Author | SHA1 | Date | |
---|---|---|---|
618b6c5ba0 | |||
185b8a3947 | |||
77dddfc300 | |||
bb6b4788b8 | |||
c223038b39 | |||
bd4fab872f | |||
385cab0b1b | |||
b6620120e9 | |||
20e2149fd9 | |||
af2eaf010f | |||
fdfc7b4963 | |||
28be3f3095 | |||
3b946d7700 | |||
20e14bf14d | |||
23a9ea9dfc | |||
a64af6f0ff | |||
e456df08d1 | |||
fd758e5ec1 | |||
c45eac1796 | |||
5530642c3e |
24
package.json
24
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@design.estate/dees-domtools",
|
"name": "@design.estate/dees-domtools",
|
||||||
"version": "2.0.47",
|
"version": "2.0.57",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "tools to simplify complex css structures",
|
"description": "tools to simplify complex css structures",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@ -15,27 +15,29 @@
|
|||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.70",
|
"@git.zone/tsbuild": "^2.1.72",
|
||||||
"@git.zone/tsbundle": "^2.0.8",
|
"@git.zone/tsbundle": "^2.0.15",
|
||||||
"@git.zone/tstest": "^1.0.81",
|
"@git.zone/tstest": "^1.0.86",
|
||||||
"@push.rocks/tapbundle": "^5.0.15",
|
"@push.rocks/tapbundle": "^5.0.15",
|
||||||
"@types/node": "^20.8.2"
|
"@types/node": "^20.11.5"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@api.global/typedrequest": "^3.0.1",
|
"@api.global/typedrequest": "^3.0.4",
|
||||||
"@design.estate/dees-comms": "^1.0.22",
|
"@design.estate/dees-comms": "^1.0.22",
|
||||||
"@push.rocks/lik": "^6.0.5",
|
"@push.rocks/lik": "^6.0.12",
|
||||||
"@push.rocks/smartdelay": "^3.0.5",
|
"@push.rocks/smartdelay": "^3.0.5",
|
||||||
"@push.rocks/smartjson": "^5.0.10",
|
"@push.rocks/smartjson": "^5.0.10",
|
||||||
|
"@push.rocks/smartmarkdown": "^3.0.3",
|
||||||
"@push.rocks/smartpromise": "^4.0.2",
|
"@push.rocks/smartpromise": "^4.0.2",
|
||||||
"@push.rocks/smartrouter": "^1.0.16",
|
"@push.rocks/smartrouter": "^1.0.16",
|
||||||
"@push.rocks/smartrx": "^3.0.6",
|
"@push.rocks/smartrx": "^3.0.7",
|
||||||
"@push.rocks/smartstate": "^2.0.14",
|
"@push.rocks/smartstate": "^2.0.17",
|
||||||
|
"@push.rocks/smartstring": "^4.0.13",
|
||||||
"@push.rocks/smarturl": "^3.0.6",
|
"@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/websetup": "^3.0.19",
|
||||||
"@push.rocks/webstore": "^2.0.13",
|
"@push.rocks/webstore": "^2.0.13",
|
||||||
"lit": "^2.8.0",
|
"lit": "^3.1.1",
|
||||||
"sweet-scroll": "^4.0.0"
|
"sweet-scroll": "^4.0.0"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
|
1963
pnpm-lock.yaml
generated
1963
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@design.estate/dees-domtools',
|
name: '@design.estate/dees-domtools',
|
||||||
version: '2.0.47',
|
version: '2.0.57',
|
||||||
description: 'tools to simplify complex css structures'
|
description: 'tools to simplify complex css structures'
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@ export const globalBaseStyles: string = css`
|
|||||||
/* global body styles */
|
/* global body styles */
|
||||||
body {
|
body {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
font-family: 'Mona Sans', 'Inter', sans-serif;
|
font-family: 'Roboto', 'Inter', sans-serif;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ export const staticStyles = css`
|
|||||||
|
|
||||||
:host {
|
:host {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-family: 'Mona Sans', 'Inter', sans-serif;
|
font-family: 'Roboto', 'Inter', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
${unsafeCSS(scrollBarStyles)}
|
${unsafeCSS(scrollBarStyles)}
|
||||||
@ -29,7 +29,7 @@ export const styles = html`
|
|||||||
}
|
}
|
||||||
|
|
||||||
:host {
|
:host {
|
||||||
font-family: 'Mona Sans', 'Inter', sans-serif;
|
font-family: 'Roboto', 'Inter', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
${scrollBarStyles}
|
${scrollBarStyles}
|
||||||
|
@ -11,10 +11,12 @@ export { typedrequest };
|
|||||||
// pushrocks scope
|
// pushrocks scope
|
||||||
import * as smartdelay from '@push.rocks/smartdelay';
|
import * as smartdelay from '@push.rocks/smartdelay';
|
||||||
import * as smartjson from '@push.rocks/smartjson';
|
import * as smartjson from '@push.rocks/smartjson';
|
||||||
|
import * as smartmarkdown from '@push.rocks/smartmarkdown';
|
||||||
import * as smartpromise from '@push.rocks/smartpromise';
|
import * as smartpromise from '@push.rocks/smartpromise';
|
||||||
import * as smartrouter from '@push.rocks/smartrouter';
|
import * as smartrouter from '@push.rocks/smartrouter';
|
||||||
import * as smartrx from '@push.rocks/smartrx';
|
import * as smartrx from '@push.rocks/smartrx';
|
||||||
import * as smartstate from '@push.rocks/smartstate';
|
import * as smartstate from '@push.rocks/smartstate';
|
||||||
|
import * as smartstring from '@push.rocks/smartstring';
|
||||||
import * as smarturl from '@push.rocks/smarturl';
|
import * as smarturl from '@push.rocks/smarturl';
|
||||||
import * as webrequest from '@push.rocks/webrequest';
|
import * as webrequest from '@push.rocks/webrequest';
|
||||||
import * as websetup from '@push.rocks/websetup';
|
import * as websetup from '@push.rocks/websetup';
|
||||||
@ -34,11 +36,13 @@ export {
|
|||||||
lik,
|
lik,
|
||||||
smartdelay,
|
smartdelay,
|
||||||
smartjson,
|
smartjson,
|
||||||
|
smartmarkdown,
|
||||||
smartpromise,
|
smartpromise,
|
||||||
smartrouter,
|
smartrouter,
|
||||||
smartrx,
|
smartrx,
|
||||||
smarturl,
|
smarturl,
|
||||||
smartstate,
|
smartstate,
|
||||||
|
smartstring,
|
||||||
webrequest,
|
webrequest,
|
||||||
websetup,
|
websetup,
|
||||||
webstore,
|
webstore,
|
||||||
|
10
ts/index.ts
10
ts/index.ts
@ -8,16 +8,24 @@ export { css, breakpoints, elementBasic };
|
|||||||
export { DomTools, type IDomToolsContructorOptions } from './domtools.classes.domtools.js';
|
export { DomTools, type IDomToolsContructorOptions } from './domtools.classes.domtools.js';
|
||||||
export { TypedRequest } from '@api.global/typedrequest';
|
export { TypedRequest } from '@api.global/typedrequest';
|
||||||
export { type IWebSetupConstructorOptions } from '@push.rocks/websetup';
|
export { type IWebSetupConstructorOptions } from '@push.rocks/websetup';
|
||||||
export { rxjs } from '@push.rocks/smartrx';
|
|
||||||
|
|
||||||
import * as allPlugins from './domtools.plugins.js';
|
import * as allPlugins from './domtools.plugins.js';
|
||||||
|
|
||||||
export const plugins = {
|
export const plugins = {
|
||||||
smartdelay: allPlugins.smartdelay,
|
smartdelay: allPlugins.smartdelay,
|
||||||
|
smartmarkdown: allPlugins.smartmarkdown,
|
||||||
smartpromise: allPlugins.smartpromise,
|
smartpromise: allPlugins.smartpromise,
|
||||||
SweetScroll: allPlugins.SweetScroll,
|
SweetScroll: allPlugins.SweetScroll,
|
||||||
smartstate: allPlugins.smartstate,
|
smartstate: allPlugins.smartstate,
|
||||||
smartrx: allPlugins.smartrx,
|
smartrx: allPlugins.smartrx,
|
||||||
|
smartstring: allPlugins.smartstring,
|
||||||
smarturl: allPlugins.smarturl,
|
smarturl: allPlugins.smarturl,
|
||||||
typedrequest: allPlugins.typedrequest,
|
typedrequest: allPlugins.typedrequest,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// type exports
|
||||||
|
import type { rxjs } from '@push.rocks/smartrx';
|
||||||
|
|
||||||
|
export type {
|
||||||
|
rxjs,
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user