@opentui/react 0.1.49 → 0.1.50
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/index.js +4 -0
- package/package.json +2 -2
- package/src/index.d.ts +1 -0
package/index.js
CHANGED
|
@@ -525,6 +525,9 @@ function createRoot(renderer) {
|
|
|
525
525
|
}
|
|
526
526
|
};
|
|
527
527
|
}
|
|
528
|
+
|
|
529
|
+
// src/index.ts
|
|
530
|
+
import { createElement } from "react";
|
|
528
531
|
export {
|
|
529
532
|
useTimeline,
|
|
530
533
|
useTerminalDimensions,
|
|
@@ -535,6 +538,7 @@ export {
|
|
|
535
538
|
getComponentCatalogue,
|
|
536
539
|
extend,
|
|
537
540
|
createRoot,
|
|
541
|
+
createElement,
|
|
538
542
|
componentCatalogue,
|
|
539
543
|
baseComponents,
|
|
540
544
|
AppContext
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "src/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"version": "0.1.
|
|
7
|
+
"version": "0.1.50",
|
|
8
8
|
"description": "React renderer for building terminal user interfaces using OpenTUI core",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"repository": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@opentui/core": "0.1.
|
|
43
|
+
"@opentui/core": "0.1.50",
|
|
44
44
|
"react-reconciler": "^0.32.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
package/src/index.d.ts
CHANGED