@design.estate/dees-domtools 2.5.6 → 3.0.0

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.5.6',
6
+ version: '3.0.0',
7
7
  description: 'A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSw4QkFBOEI7SUFDcEMsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLHFLQUFxSztDQUNuTCxDQUFBIn0=
@@ -43,9 +43,9 @@ export declare class DomTools {
43
43
  themeManager: ThemeManager;
44
44
  keyboard: Keyboard | null;
45
45
  disposed: boolean;
46
- domToolsReady: plugins.smartpromise.Deferred<unknown>;
47
- domReady: plugins.smartpromise.Deferred<unknown>;
48
- globalStylesReady: plugins.smartpromise.Deferred<unknown>;
46
+ domToolsReady: plugins.smartpromise.Deferred<void>;
47
+ domReady: plugins.smartpromise.Deferred<void>;
48
+ globalStylesReady: plugins.smartpromise.Deferred<void>;
49
49
  private readonly initializationPromise;
50
50
  private readonly managedDomNodes;
51
51
  private readonly readyStateChangedFunc;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@design.estate/dees-domtools",
3
- "version": "2.5.6",
3
+ "version": "3.0.0",
4
4
  "private": false,
5
5
  "description": "A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.",
6
6
  "main": "dist_ts/index.js",
@@ -8,21 +8,15 @@
8
8
  "type": "module",
9
9
  "author": "Lossless GmbH",
10
10
  "license": "MIT",
11
- "scripts": {
12
- "test": "(tstest test/ --verbose --logfile)",
13
- "build": "(tsbuild && tsbundle)",
14
- "format": "(gitzone format)",
15
- "buildDocs": "tsdoc"
16
- },
17
11
  "devDependencies": {
18
12
  "@git.zone/tsbuild": "^4.4.0",
19
- "@git.zone/tsbundle": "^2.10.0",
13
+ "@git.zone/tsbundle": "^2.13.0",
20
14
  "@git.zone/tstest": "^3.6.3",
21
15
  "@types/node": "^25.6.0"
22
16
  },
23
17
  "dependencies": {
24
- "@api.global/typedrequest": "^3.3.0",
25
- "@design.estate/dees-comms": "^1.0.30",
18
+ "@api.global/typedrequest": "^8.0.3",
19
+ "@design.estate/dees-comms": "^1.0.32",
26
20
  "@push.rocks/lik": "^6.4.0",
27
21
  "@push.rocks/smartdelay": "^3.0.5",
28
22
  "@push.rocks/smartjson": "^6.0.0",
@@ -71,5 +65,10 @@
71
65
  "routing",
72
66
  "performance optimization"
73
67
  ],
74
- "packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
75
- }
68
+ "scripts": {
69
+ "test": "(tstest test/ --verbose --logfile)",
70
+ "build": "(tsbuild && tsbundle)",
71
+ "format": "(gitzone format)",
72
+ "buildDocs": "tsdoc"
73
+ }
74
+ }
package/readme.md CHANGED
@@ -307,7 +307,7 @@ import { TypedRequest, plugins } from '@design.estate/dees-domtools';
307
307
  ```
308
308
 
309
309
  - `TypedRequest` is re-exported for typed request flows
310
- - `plugins` exposes the underlying modules used by the package, including `smartrouter`, `smartstate`, `smartrx`, `smartpromise`, `typedrequest`, and `deesComms`
310
+ - `plugins` exposes the underlying modules used by the package, including `smartrouter`, `smartstate`, `smartrx`, `smartpromise`, and `typedrequest`
311
311
 
312
312
  ## Runtime Notes
313
313
 
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-domtools',
6
- version: '2.5.6',
6
+ version: '3.0.0',
7
7
  description: 'A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.'
8
8
  }