@yeshwanthyk/coding-agent 0.3.12 → 0.3.13
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/adapters/tui/app.js +1 -1
- package/dist/components/Footer.js +1 -1
- package/dist/components/Header.js +1 -1
- package/dist/components/MessageList.js +1 -1
- package/dist/runtime/context.js +1 -1
- package/dist/session-picker.js +1 -1
- package/dist/tui-open-rendering.js +1 -1
- package/dist/ui/app-shell/TuiApp.js +1 -1
- package/dist/ui/components/modals/ConfirmModal.js +1 -1
- package/dist/ui/components/modals/EditorModal.js +1 -1
- package/dist/ui/components/modals/InputModal.js +1 -1
- package/dist/ui/components/modals/ModalContainer.js +1 -1
- package/dist/ui/components/modals/SelectModal.js +1 -1
- package/dist/ui/features/composer/Composer.js +1 -1
- package/dist/ui/features/main-view/MainView.js +1 -1
- package/dist/ui/features/message-pane/MessagePane.js +1 -1
- package/package.json +1 -1
package/dist/adapters/tui/app.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx } from "solid
|
|
1
|
+
import { jsx as _jsx } from "@opentui/solid/jsx-runtime";
|
|
2
2
|
import { render } from "@opentui/solid";
|
|
3
3
|
import { RuntimeProvider } from "../../runtime/context.js";
|
|
4
4
|
import { createRuntime } from "../../runtime/factory.js";
|
package/dist/runtime/context.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx } from "solid
|
|
1
|
+
import { jsx as _jsx } from "@opentui/solid/jsx-runtime";
|
|
2
2
|
import { createContext, useContext } from "solid-js";
|
|
3
3
|
const RuntimeContext = createContext(null);
|
|
4
4
|
export const RuntimeProvider = (props) => (_jsx(RuntimeContext.Provider, { value: props.runtime, children: props.children }));
|
package/dist/session-picker.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "solid
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "@opentui/solid/jsx-runtime";
|
|
2
2
|
import { ThemeProvider } from "@yeshwanthyk/open-tui";
|
|
3
3
|
import { batch, onMount } from "solid-js";
|
|
4
4
|
import { Effect } from "effect";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "solid
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "@opentui/solid/jsx-runtime";
|
|
2
2
|
import { createSignal } from "solid-js";
|
|
3
3
|
import { useKeyboard } from "@opentui/solid";
|
|
4
4
|
import { Dialog, useTheme } from "@yeshwanthyk/open-tui";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "solid
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "@opentui/solid/jsx-runtime";
|
|
2
2
|
import { useKeyboard } from "@opentui/solid";
|
|
3
3
|
import { Dialog, Editor, useTheme } from "@yeshwanthyk/open-tui";
|
|
4
4
|
export function EditorModal(props) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "solid
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "@opentui/solid/jsx-runtime";
|
|
2
2
|
import { useKeyboard } from "@opentui/solid";
|
|
3
3
|
import { Dialog, Input } from "@yeshwanthyk/open-tui";
|
|
4
4
|
export function InputModal(props) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "solid
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "@opentui/solid/jsx-runtime";
|
|
2
2
|
import { Match, Switch } from "solid-js";
|
|
3
3
|
import { SelectModal } from "./SelectModal.js";
|
|
4
4
|
import { InputModal } from "./InputModal.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "solid
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "@opentui/solid/jsx-runtime";
|
|
2
2
|
import { createSignal } from "solid-js";
|
|
3
3
|
import { useKeyboard } from "@opentui/solid";
|
|
4
4
|
import { Dialog, SelectList } from "@yeshwanthyk/open-tui";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "solid
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "@opentui/solid/jsx-runtime";
|
|
2
2
|
import { TextareaRenderable } from "@opentui/core";
|
|
3
3
|
import { Show } from "solid-js";
|
|
4
4
|
import { SelectList } from "@yeshwanthyk/open-tui";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "solid
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "@opentui/solid/jsx-runtime";
|
|
2
2
|
import { TextareaRenderable } from "@opentui/core";
|
|
3
3
|
import { useTerminalDimensions } from "@opentui/solid";
|
|
4
4
|
import { CombinedAutocompleteProvider, ToastViewport, copyToClipboard, useRenderer, useTheme, } from "@yeshwanthyk/open-tui";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx } from "solid
|
|
1
|
+
import { jsx as _jsx } from "@opentui/solid/jsx-runtime";
|
|
2
2
|
import { MessageList } from "../../../components/MessageList.js";
|
|
3
3
|
export function MessagePane(props) {
|
|
4
4
|
return (_jsx("scrollbox", { stickyScroll: true, stickyStart: "bottom", flexGrow: props.messages.length > 0 ? 1 : 0, flexShrink: 1, children: _jsx(MessageList, { messages: props.messages, toolBlocks: props.toolBlocks, thinkingVisible: props.thinkingVisible, diffWrapMode: props.diffWrapMode, concealMarkdown: props.concealMarkdown, isToolExpanded: props.isToolExpanded, toggleToolExpanded: props.toggleToolExpanded, isThinkingExpanded: props.isThinkingExpanded, toggleThinkingExpanded: props.toggleThinkingExpanded, onEditFile: props.onEditFile }) }));
|