@opendaw/lib-dom 0.0.12 → 0.0.14

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.
Files changed (2) hide show
  1. package/README.md +40 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1 +1,40 @@
1
- This package is part of the openDAW SDK
1
+ _This package is part of the openDAW SDK_
2
+
3
+ # @opendaw/lib-dom
4
+
5
+ DOM utilities and web browser interaction helpers for TypeScript projects.
6
+
7
+ ## HTML & DOM Manipulation
8
+
9
+ * HTML element creation and manipulation utilities **html.ts**
10
+ * SVG element creation and manipulation **svg.ts**
11
+ * CSS styling utilities and helpers **css-utils.ts**
12
+
13
+ ## Input & Interaction
14
+
15
+ * Event handling utilities and abstractions **events.ts**
16
+ * Keyboard input handling and key mapping **keyboard.ts**
17
+ * Drag and drop functionality **dragging.ts**
18
+ * Modifier key state management **modfier-keys.ts**
19
+
20
+ ## Graphics & Canvas
21
+
22
+ * 2D canvas context utilities and helpers **context-2d.ts**
23
+
24
+ ## File Operations
25
+
26
+ * File handling and manipulation utilities **files.ts**
27
+ * File compression and decompression **compression.ts**
28
+
29
+ ## System & Browser
30
+
31
+ * Browser detection and compatibility utilities **browser.ts**
32
+ * Font loading and management **fonts.ts**
33
+ * Error handling for DOM operations **errors.ts**
34
+ * Console utility commands **console-commands.ts**
35
+
36
+ ## Performance & Lifecycle
37
+
38
+ * Animation frame utilities **frames.ts**
39
+ * Stream processing for DOM operations **stream.ts**
40
+ * Resource cleanup and termination handling **terminable.ts**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendaw/lib-dom",
3
- "version": "0.0.12",
3
+ "version": "0.0.14",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "license": "LGPL-3.0-or-later",
@@ -22,13 +22,13 @@
22
22
  "test": "vitest run"
23
23
  },
24
24
  "dependencies": {
25
- "@opendaw/lib-runtime": "^0.0.12",
26
- "@opendaw/lib-std": "^0.0.12",
25
+ "@opendaw/lib-runtime": "^0.0.14",
26
+ "@opendaw/lib-std": "^0.0.14",
27
27
  "@types/wicg-file-system-access": "^2023.10.6"
28
28
  },
29
29
  "devDependencies": {
30
- "@opendaw/eslint-config": "^0.0.12",
31
- "@opendaw/typescript-config": "^0.0.12"
30
+ "@opendaw/eslint-config": "^0.0.14",
31
+ "@opendaw/typescript-config": "^0.0.14"
32
32
  },
33
- "gitHead": "a24f67e337c10d2f5a186d48f2b2769b64c87607"
33
+ "gitHead": "fddd4acd15f24bb565b6c11a5f8521284da203d0"
34
34
  }