@design.estate/dees-domtools 2.0.53 → 2.0.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-domtools',
6
- version: '2.0.52',
6
+ version: '2.0.54',
7
7
  description: 'tools to simplify complex css structures'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSw4QkFBOEI7SUFDcEMsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLDBDQUEwQztDQUN4RCxDQUFBIn0=
@@ -16,3 +16,5 @@ export declare const plugins: {
16
16
  smarturl: typeof allPlugins.smarturl;
17
17
  typedrequest: typeof allPlugins.typedrequest;
18
18
  };
19
+ import type { rxjs } from '@push.rocks/smartrx';
20
+ export type { rxjs, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@design.estate/dees-domtools",
3
- "version": "2.0.53",
3
+ "version": "2.0.55",
4
4
  "private": false,
5
5
  "description": "tools to simplify complex css structures",
6
6
  "main": "dist_ts/index.js",
@@ -19,10 +19,10 @@
19
19
  "@git.zone/tsbundle": "^2.0.10",
20
20
  "@git.zone/tstest": "^1.0.81",
21
21
  "@push.rocks/tapbundle": "^5.0.15",
22
- "@types/node": "^20.8.3"
22
+ "@types/node": "^20.8.7"
23
23
  },
24
24
  "dependencies": {
25
- "@api.global/typedrequest": "^3.0.1",
25
+ "@api.global/typedrequest": "^3.0.2",
26
26
  "@design.estate/dees-comms": "^1.0.22",
27
27
  "@push.rocks/lik": "^6.0.5",
28
28
  "@push.rocks/smartdelay": "^3.0.5",
@@ -32,10 +32,10 @@
32
32
  "@push.rocks/smartrx": "^3.0.6",
33
33
  "@push.rocks/smartstate": "^2.0.17",
34
34
  "@push.rocks/smarturl": "^3.0.6",
35
- "@push.rocks/webrequest": "^3.0.33",
35
+ "@push.rocks/webrequest": "^3.0.34",
36
36
  "@push.rocks/websetup": "^3.0.19",
37
37
  "@push.rocks/webstore": "^2.0.13",
38
- "lit": "^2.8.0",
38
+ "lit": "^3.0.0",
39
39
  "sweet-scroll": "^4.0.0"
40
40
  },
41
41
  "files": [
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-domtools',
6
- version: '2.0.53',
6
+ version: '2.0.55',
7
7
  description: 'tools to simplify complex css structures'
8
8
  }
package/ts/index.ts CHANGED
@@ -20,3 +20,10 @@ export const plugins = {
20
20
  smarturl: allPlugins.smarturl,
21
21
  typedrequest: allPlugins.typedrequest,
22
22
  };
23
+
24
+ // type exports
25
+ import type { rxjs } from '@push.rocks/smartrx';
26
+
27
+ export type {
28
+ rxjs,
29
+ }