@yeshwanthyk/open-tui 0.1.2 → 0.1.3
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/dist/components/badge.js +1 -1
- package/dist/components/code-block.js +1 -1
- package/dist/components/dialog.js +1 -1
- package/dist/components/diff.js +1 -1
- package/dist/components/divider.js +1 -1
- package/dist/components/editor.js +1 -1
- package/dist/components/image.js +1 -1
- package/dist/components/loader.js +1 -1
- package/dist/components/markdown.js +1 -1
- package/dist/components/panel.js +1 -1
- package/dist/components/select-list.js +1 -1
- package/dist/components/spacer.js +1 -1
- package/dist/components/toast.js +1 -1
- package/dist/context/theme.js +1 -1
- package/package.json +2 -2
package/dist/components/badge.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "solid-js/jsx-runtime";
|
|
2
2
|
import { getTreeSitterClient } from "@opentui/core";
|
|
3
3
|
import { Show, createSignal, splitProps } from "solid-js";
|
|
4
4
|
import { useTheme } from "../context/theme.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "solid-js/jsx-runtime";
|
|
2
2
|
import { Show, splitProps } from "solid-js";
|
|
3
3
|
import { TextAttributes } from "@opentui/core";
|
|
4
4
|
import { useTheme } from "../context/theme.js";
|
package/dist/components/diff.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx } from "
|
|
1
|
+
import { jsx as _jsx } from "solid-js/jsx-runtime";
|
|
2
2
|
import { splitProps } from "solid-js";
|
|
3
3
|
import { getTreeSitterClient } from "@opentui/core";
|
|
4
4
|
import { useTerminalDimensions } from "../context/terminal.js";
|
package/dist/components/image.js
CHANGED
package/dist/components/panel.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "solid-js/jsx-runtime";
|
|
2
2
|
import { parseColor } from "@opentui/core";
|
|
3
3
|
import { splitProps } from "solid-js";
|
|
4
4
|
import { useTheme } from "../context/theme.js";
|
package/dist/components/toast.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "solid-js/jsx-runtime";
|
|
2
2
|
import { For, Show, splitProps } from "solid-js";
|
|
3
3
|
import { useTheme } from "../context/theme.js";
|
|
4
4
|
import { Badge } from "./badge.js";
|
package/dist/context/theme.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx } from "
|
|
1
|
+
import { jsx as _jsx } from "solid-js/jsx-runtime";
|
|
2
2
|
import { parseColor, RGBA, SyntaxStyle } from "@opentui/core";
|
|
3
3
|
import { createContext, createEffect, createMemo, useContext } from "solid-js";
|
|
4
4
|
import { createStore } from "solid-js/store";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yeshwanthyk/open-tui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "OpenTUI-based Terminal User Interface with SolidJS reactive rendering",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"lint": "biome check --write . && oxlint .",
|
|
18
18
|
"lint:check": "biome check . && oxlint .",
|
|
19
19
|
"typecheck": "tsc --noEmit",
|
|
20
|
-
"build": "tsc -b tsconfig.build.json --force",
|
|
20
|
+
"build": "tsc -b tsconfig.build.json --force && node scripts/replace-jsx-runtime.js",
|
|
21
21
|
"check": "bun run lint:check && bun run typecheck",
|
|
22
22
|
"test": "bun test",
|
|
23
23
|
"demo": "bun run examples/run.ts",
|