Compare commits

...

10 Commits

Author SHA1 Message Date
618b6c5ba0 2.0.57 2024-01-20 01:25:19 +01:00
185b8a3947 fix(core): update 2024-01-20 01:25:19 +01:00
77dddfc300 2.0.56 2024-01-20 01:08:26 +01:00
bb6b4788b8 fix(core): update 2024-01-20 01:08:25 +01:00
c223038b39 2.0.55 2023-10-23 17:22:15 +02:00
bd4fab872f fix(core): update 2023-10-23 17:22:14 +02:00
385cab0b1b 2.0.54 2023-10-23 17:04:11 +02:00
b6620120e9 fix(core): update 2023-10-23 17:04:11 +02:00
20e2149fd9 2.0.53 2023-10-23 16:34:33 +02:00
af2eaf010f fix(core): update 2023-10-23 16:34:32 +02:00
5 changed files with 1410 additions and 618 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@design.estate/dees-domtools",
"version": "2.0.52",
"version": "2.0.57",
"private": false,
"description": "tools to simplify complex css structures",
"main": "dist_ts/index.js",
@ -15,27 +15,29 @@
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.70",
"@git.zone/tsbundle": "^2.0.10",
"@git.zone/tstest": "^1.0.81",
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsbundle": "^2.0.15",
"@git.zone/tstest": "^1.0.86",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.8.3"
"@types/node": "^20.11.5"
},
"dependencies": {
"@api.global/typedrequest": "^3.0.1",
"@api.global/typedrequest": "^3.0.4",
"@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/smartjson": "^5.0.10",
"@push.rocks/smartmarkdown": "^3.0.3",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartrouter": "^1.0.16",
"@push.rocks/smartrx": "^3.0.6",
"@push.rocks/smartrx": "^3.0.7",
"@push.rocks/smartstate": "^2.0.17",
"@push.rocks/smartstring": "^4.0.13",
"@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.13",
"lit": "^2.8.0",
"lit": "^3.1.1",
"sweet-scroll": "^4.0.0"
},
"files": [

1991
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.52',
version: '2.0.57',
description: 'tools to simplify complex css structures'
}

View File

@ -11,10 +11,12 @@ export { typedrequest };
// pushrocks scope
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartjson from '@push.rocks/smartjson';
import * as smartmarkdown from '@push.rocks/smartmarkdown';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrouter from '@push.rocks/smartrouter';
import * as smartrx from '@push.rocks/smartrx';
import * as smartstate from '@push.rocks/smartstate';
import * as smartstring from '@push.rocks/smartstring';
import * as smarturl from '@push.rocks/smarturl';
import * as webrequest from '@push.rocks/webrequest';
import * as websetup from '@push.rocks/websetup';
@ -34,11 +36,13 @@ export {
lik,
smartdelay,
smartjson,
smartmarkdown,
smartpromise,
smartrouter,
smartrx,
smarturl,
smartstate,
smartstring,
webrequest,
websetup,
webstore,

View File

@ -13,10 +13,19 @@ import * as allPlugins from './domtools.plugins.js';
export const plugins = {
smartdelay: allPlugins.smartdelay,
smartmarkdown: allPlugins.smartmarkdown,
smartpromise: allPlugins.smartpromise,
SweetScroll: allPlugins.SweetScroll,
smartstate: allPlugins.smartstate,
smartrx: allPlugins.smartrx,
smartstring: allPlugins.smartstring,
smarturl: allPlugins.smarturl,
typedrequest: allPlugins.typedrequest,
};
// type exports
import type { rxjs } from '@push.rocks/smartrx';
export type {
rxjs,
}