@opendaw/lib-jsx 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.
- package/README.md +27 -1
- package/package.json +6 -6
package/README.md
CHANGED
@@ -1 +1,27 @@
|
|
1
|
-
|
1
|
+
_This package is part of the openDAW SDK_
|
2
|
+
|
3
|
+
# @opendaw/lib-jsx
|
4
|
+
|
5
|
+
JSX utilities and components for TypeScript projects with DOM manipulation.
|
6
|
+
|
7
|
+
## Core JSX
|
8
|
+
|
9
|
+
* **create-element.ts** - JSX element creation and factory functions
|
10
|
+
* **types.ts** - TypeScript type definitions for JSX
|
11
|
+
* **inject.ts** - Dependency injection utilities for JSX components
|
12
|
+
|
13
|
+
## Component System
|
14
|
+
|
15
|
+
* **weak.ts** - Weak reference utilities for components
|
16
|
+
* **routes.ts** - Routing utilities and navigation
|
17
|
+
* **supported-svg-tags.ts** - SVG tag support definitions
|
18
|
+
|
19
|
+
## Standard Components
|
20
|
+
|
21
|
+
* **Frag.tsx** - Fragment component for grouping elements
|
22
|
+
* **Group.tsx** - Grouping component with enhanced functionality
|
23
|
+
* **Await.tsx** - Async component for handling promises
|
24
|
+
* **Router.tsx** - Router component for navigation
|
25
|
+
* **Hotspot.tsx** - Interactive hotspot component
|
26
|
+
* **LocalLink.tsx** - Local navigation link component
|
27
|
+
* **Preloader.tsx** - Loading and preloading component
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@opendaw/lib-jsx",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.14",
|
4
4
|
"license": "LGPL-3.0-or-later",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.ts",
|
@@ -22,12 +22,12 @@
|
|
22
22
|
"test": "echo \"No tests to run\""
|
23
23
|
},
|
24
24
|
"dependencies": {
|
25
|
-
"@opendaw/lib-dom": "^0.0.
|
26
|
-
"@opendaw/lib-std": "^0.0.
|
25
|
+
"@opendaw/lib-dom": "^0.0.14",
|
26
|
+
"@opendaw/lib-std": "^0.0.14"
|
27
27
|
},
|
28
28
|
"devDependencies": {
|
29
|
-
"@opendaw/eslint-config": "^0.0.
|
30
|
-
"@opendaw/typescript-config": "^0.0.
|
29
|
+
"@opendaw/eslint-config": "^0.0.14",
|
30
|
+
"@opendaw/typescript-config": "^0.0.14"
|
31
31
|
},
|
32
|
-
"gitHead": "
|
32
|
+
"gitHead": "fddd4acd15f24bb565b6c11a5f8521284da203d0"
|
33
33
|
}
|