@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.
Files changed (2) hide show
  1. package/README.md +27 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1 +1,27 @@
1
- This package is part of the openDAW SDK
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.12",
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.12",
26
- "@opendaw/lib-std": "^0.0.12"
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.12",
30
- "@opendaw/typescript-config": "^0.0.12"
29
+ "@opendaw/eslint-config": "^0.0.14",
30
+ "@opendaw/typescript-config": "^0.0.14"
31
31
  },
32
- "gitHead": "a24f67e337c10d2f5a186d48f2b2769b64c87607"
32
+ "gitHead": "fddd4acd15f24bb565b6c11a5f8521284da203d0"
33
33
  }