diff --git a/package.json b/package.json index 752bdce..67e6547 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b0e548c..a4fee07 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -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==} diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 2c10929..b9c968c 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@designestate/dees-domtools', - version: '2.0.25', + version: '2.0.26', description: 'tools to simplify complex css structures' } diff --git a/ts/domtools.classes.domtools.ts b/ts/domtools.classes.domtools.ts index 024d810..17fb524 100644 --- a/ts/domtools.classes.domtools.ts +++ b/ts/domtools.classes.domtools.ts @@ -89,6 +89,7 @@ export class DomTools { typedrequest: plugins.typedrequest, smartdelay: plugins.smartdelay, smartjson: plugins.smartjson, + smarturl: plugins.smarturl, }; public deesComms = new plugins.deesComms.DeesComms(); diff --git a/ts/domtools.plugins.ts b/ts/domtools.plugins.ts index 2d15710..b6b3e59 100644 --- a/ts/domtools.plugins.ts +++ b/ts/domtools.plugins.ts @@ -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,