@opendaw/lib-dom 0.0.13 → 0.0.15
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.
- package/README.md +40 -1
- package/package.json +6 -6
package/README.md
CHANGED
@@ -1 +1,40 @@
|
|
1
|
-
|
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.
|
3
|
+
"version": "0.0.15",
|
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.
|
26
|
-
"@opendaw/lib-std": "^0.0.
|
25
|
+
"@opendaw/lib-runtime": "^0.0.15",
|
26
|
+
"@opendaw/lib-std": "^0.0.15",
|
27
27
|
"@types/wicg-file-system-access": "^2023.10.6"
|
28
28
|
},
|
29
29
|
"devDependencies": {
|
30
|
-
"@opendaw/eslint-config": "^0.0.
|
31
|
-
"@opendaw/typescript-config": "^0.0.
|
30
|
+
"@opendaw/eslint-config": "^0.0.15",
|
31
|
+
"@opendaw/typescript-config": "^0.0.15"
|
32
32
|
},
|
33
|
-
"gitHead": "
|
33
|
+
"gitHead": "76b361985c1e34e609619835960e58ae7fbfd7d2"
|
34
34
|
}
|