@researai/deepscientist 1.5.15 → 1.5.17
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 +385 -104
- package/bin/ds.js +1241 -110
- package/docs/en/00_QUICK_START.md +100 -19
- package/docs/en/01_SETTINGS_REFERENCE.md +34 -1
- package/docs/en/02_START_RESEARCH_GUIDE.md +7 -0
- package/docs/en/05_TUI_GUIDE.md +6 -0
- package/docs/en/06_RUNTIME_AND_CANVAS.md +4 -3
- package/docs/en/09_DOCTOR.md +25 -8
- package/docs/en/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +63 -13
- package/docs/en/15_CODEX_PROVIDER_SETUP.md +37 -11
- package/docs/en/19_EXTERNAL_CONTROLLER_GUIDE.md +226 -0
- package/docs/en/19_LOCAL_BROWSER_AUTH.md +70 -0
- package/docs/en/20_WORKSPACE_MODES_GUIDE.md +250 -0
- package/docs/en/21_LOCAL_MODEL_BACKENDS_GUIDE.md +283 -0
- package/docs/en/91_DEVELOPMENT.md +237 -0
- package/docs/en/README.md +24 -2
- package/docs/zh/00_QUICK_START.md +89 -19
- package/docs/zh/01_SETTINGS_REFERENCE.md +34 -1
- package/docs/zh/02_START_RESEARCH_GUIDE.md +7 -0
- package/docs/zh/05_TUI_GUIDE.md +6 -0
- package/docs/zh/09_DOCTOR.md +26 -9
- package/docs/zh/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +63 -13
- package/docs/zh/15_CODEX_PROVIDER_SETUP.md +37 -11
- package/docs/zh/19_EXTERNAL_CONTROLLER_GUIDE.md +226 -0
- package/docs/zh/19_LOCAL_BROWSER_AUTH.md +68 -0
- package/docs/zh/20_WORKSPACE_MODES_GUIDE.md +251 -0
- package/docs/zh/21_LOCAL_MODEL_BACKENDS_GUIDE.md +281 -0
- package/docs/zh/README.md +24 -2
- package/install.sh +46 -4
- package/package.json +2 -1
- package/pyproject.toml +1 -1
- package/src/deepscientist/__init__.py +1 -1
- package/src/deepscientist/acp/envelope.py +6 -0
- package/src/deepscientist/artifact/service.py +647 -22
- package/src/deepscientist/bash_exec/service.py +234 -9
- package/src/deepscientist/bridges/connectors.py +8 -2
- package/src/deepscientist/cli.py +115 -19
- package/src/deepscientist/codex_cli_compat.py +367 -22
- package/src/deepscientist/config/models.py +2 -1
- package/src/deepscientist/config/service.py +183 -13
- package/src/deepscientist/daemon/api/handlers.py +255 -31
- package/src/deepscientist/daemon/api/router.py +9 -0
- package/src/deepscientist/daemon/app.py +1146 -105
- package/src/deepscientist/diagnostics/__init__.py +6 -0
- package/src/deepscientist/diagnostics/runner_failures.py +130 -0
- package/src/deepscientist/doctor.py +207 -3
- package/src/deepscientist/gitops/__init__.py +10 -1
- package/src/deepscientist/gitops/diff.py +129 -0
- package/src/deepscientist/gitops/service.py +4 -1
- package/src/deepscientist/mcp/server.py +39 -0
- package/src/deepscientist/prompts/builder.py +275 -34
- package/src/deepscientist/quest/layout.py +15 -2
- package/src/deepscientist/quest/service.py +707 -55
- package/src/deepscientist/quest/stage_views.py +6 -1
- package/src/deepscientist/runners/codex.py +143 -43
- package/src/deepscientist/shared.py +19 -0
- package/src/deepscientist/skills/__init__.py +2 -2
- package/src/deepscientist/skills/installer.py +196 -5
- package/src/deepscientist/skills/registry.py +66 -0
- package/src/prompts/connectors/qq.md +18 -8
- package/src/prompts/connectors/weixin.md +16 -6
- package/src/prompts/contracts/shared_interaction.md +14 -2
- package/src/prompts/system.md +23 -5
- package/src/prompts/system_copilot.md +56 -0
- package/src/skills/analysis-campaign/SKILL.md +1 -0
- package/src/skills/baseline/SKILL.md +8 -0
- package/src/skills/decision/SKILL.md +8 -0
- package/src/skills/experiment/SKILL.md +8 -0
- package/src/skills/figure-polish/SKILL.md +1 -0
- package/src/skills/finalize/SKILL.md +1 -0
- package/src/skills/idea/SKILL.md +1 -0
- package/src/skills/intake-audit/SKILL.md +8 -0
- package/src/skills/mentor/SKILL.md +217 -0
- package/src/skills/mentor/references/correction-rules.md +210 -0
- package/src/skills/mentor/references/knowledge-profile.md +91 -0
- package/src/skills/mentor/references/persona-profile.md +138 -0
- package/src/skills/mentor/references/taste-profile.md +128 -0
- package/src/skills/mentor/references/thought-style-profile.md +138 -0
- package/src/skills/mentor/references/work-profile.md +289 -0
- package/src/skills/mentor/references/workflow-profile.md +240 -0
- package/src/skills/optimize/SKILL.md +1 -0
- package/src/skills/rebuttal/SKILL.md +1 -0
- package/src/skills/review/SKILL.md +1 -0
- package/src/skills/scout/SKILL.md +8 -0
- package/src/skills/write/SKILL.md +1 -0
- package/src/tui/dist/app/AppContainer.js +19 -11
- package/src/tui/dist/index.js +4 -1
- package/src/tui/dist/lib/api.js +33 -3
- package/src/tui/package.json +1 -1
- package/src/ui/dist/assets/AiManusChatView-Bv-Z8YpU.js +204 -0
- package/src/ui/dist/assets/AnalysisPlugin-BCKAfjba.js +1 -0
- package/src/ui/dist/assets/CliPlugin-BCKcpc35.js +109 -0
- package/src/ui/dist/assets/CodeEditorPlugin-DbOfSJ8K.js +2 -0
- package/src/ui/dist/assets/CodeViewerPlugin-CbaFRrUU.js +270 -0
- package/src/ui/dist/assets/DocViewerPlugin-DAjLVeQD.js +7 -0
- package/src/ui/dist/assets/GitCommitViewerPlugin-CIUqbUDO.js +1 -0
- package/src/ui/dist/assets/GitDiffViewerPlugin-CQACjoAA.js +6 -0
- package/src/ui/dist/assets/GitSnapshotViewer-0r4nLPke.js +30 -0
- package/src/ui/dist/assets/ImageViewerPlugin-nBOmI2v_.js +26 -0
- package/src/ui/dist/assets/LabCopilotPanel-BHxOxF4z.js +14 -0
- package/src/ui/dist/assets/LabPlugin-BKoZGs95.js +22 -0
- package/src/ui/dist/assets/LatexPlugin-ZwtV8pIp.js +25 -0
- package/src/ui/dist/assets/MarkdownViewerPlugin-DKqVfKyW.js +128 -0
- package/src/ui/dist/assets/MarketplacePlugin-BwxStZ9D.js +13 -0
- package/src/ui/dist/assets/NotebookEditor-BEQhaQbt.js +81 -0
- package/src/ui/dist/assets/{NotebookEditor-CccQYZjX.css → NotebookEditor-BHH8rdGj.css} +1 -1
- package/src/ui/dist/assets/NotebookEditor-BOr3x3Ej.css +1 -0
- package/src/ui/dist/assets/NotebookEditor-DB9N_T9q.js +361 -0
- package/src/ui/dist/assets/PdfLoader-Cy5jtWrr.css +1 -0
- package/src/ui/dist/assets/PdfLoader-eWBONbQP.js +16 -0
- package/src/ui/dist/assets/PdfMarkdownPlugin-D22YOZL3.js +1 -0
- package/src/ui/dist/assets/PdfViewerPlugin-c-RK9DLM.js +17 -0
- package/src/ui/dist/assets/PdfViewerPlugin-nwwE-fjJ.css +1 -0
- package/src/ui/dist/assets/SearchPlugin-CxF9ytAx.js +16 -0
- package/src/ui/dist/assets/SearchPlugin-DA4en4hK.css +1 -0
- package/src/ui/dist/assets/TextViewerPlugin-C5xqeeUH.js +54 -0
- package/src/ui/dist/assets/VNCViewer-BoLGLnHz.js +11 -0
- package/src/ui/dist/assets/bot-DREQOxzP.js +6 -0
- package/src/ui/dist/assets/browser-CTB2jwNe.js +8 -0
- package/src/ui/dist/assets/chevron-up-C9Qpx4DE.js +6 -0
- package/src/ui/dist/assets/code-WlFHE7z_.js +6 -0
- package/src/ui/dist/assets/file-content-BZMz3RYp.js +1 -0
- package/src/ui/dist/assets/file-diff-panel-CQhw0jS2.js +1 -0
- package/src/ui/dist/assets/file-jump-queue-DA-SdG__.js +1 -0
- package/src/ui/dist/assets/file-socket-CfQPKQKj.js +1 -0
- package/src/ui/dist/assets/git-commit-horizontal-DxZ8DCZh.js +6 -0
- package/src/ui/dist/assets/image-Bgl4VIyx.js +6 -0
- package/src/ui/dist/assets/index-BpV6lusQ.css +33 -0
- package/src/ui/dist/assets/index-CBNVuWcP.js +2496 -0
- package/src/ui/dist/assets/index-CwNu1aH4.js +11 -0
- package/src/ui/dist/assets/index-DrUnlf6K.js +1 -0
- package/src/ui/dist/assets/index-NW-h8VzN.js +1 -0
- package/src/ui/dist/assets/monaco-CiHMMNH_.js +1 -0
- package/src/ui/dist/assets/pdf-effect-queue-J8OnM0jE.js +6 -0
- package/src/ui/dist/assets/plugin-monaco-C8UgLomw.js +19 -0
- package/src/ui/dist/assets/plugin-notebook-HbW2K-1c.js +169 -0
- package/src/ui/dist/assets/plugin-pdf-CR8hgQBV.js +357 -0
- package/src/ui/dist/assets/plugin-terminal-MXFIPun8.js +227 -0
- package/src/ui/dist/assets/popover-CLc0pPP8.js +1 -0
- package/src/ui/dist/assets/project-sync-C9IdzdZW.js +1 -0
- package/src/ui/dist/assets/select-Cs2PmzwL.js +11 -0
- package/src/ui/dist/assets/sigma-ClKcHAXm.js +6 -0
- package/src/ui/dist/assets/trash-DwpbFr3w.js +11 -0
- package/src/ui/dist/assets/useCliAccess-NQ8m0Let.js +1 -0
- package/src/ui/dist/assets/useFileDiffOverlay-FuhcnKiw.js +1 -0
- package/src/ui/dist/assets/wrap-text-BC-Hltpd.js +11 -0
- package/src/ui/dist/assets/zoom-out-E_gaeAxL.js +11 -0
- package/src/ui/dist/index.html +5 -2
- package/src/ui/dist/assets/AiManusChatView-DDjbFnbt.js +0 -26597
- package/src/ui/dist/assets/AnalysisPlugin-Yb5IdmaU.js +0 -123
- package/src/ui/dist/assets/CliPlugin-e64sreyu.js +0 -31037
- package/src/ui/dist/assets/CodeEditorPlugin-C4D2TIkU.js +0 -427
- package/src/ui/dist/assets/CodeViewerPlugin-BVoNZIvC.js +0 -905
- package/src/ui/dist/assets/DocViewerPlugin-CLChbllo.js +0 -278
- package/src/ui/dist/assets/GitDiffViewerPlugin-C4xeFyFQ.js +0 -2661
- package/src/ui/dist/assets/ImageViewerPlugin-OiMUAcLi.js +0 -500
- package/src/ui/dist/assets/LabCopilotPanel-BjD2ThQF.js +0 -4104
- package/src/ui/dist/assets/LabPlugin-DQPg-NrB.js +0 -2677
- package/src/ui/dist/assets/LatexPlugin-CI05XAV9.js +0 -1792
- package/src/ui/dist/assets/MarkdownViewerPlugin-DpeBLYZf.js +0 -308
- package/src/ui/dist/assets/MarketplacePlugin-DolE58Q2.js +0 -413
- package/src/ui/dist/assets/NotebookEditor-7Qm2rSWD.js +0 -4214
- package/src/ui/dist/assets/NotebookEditor-C1kWaxKi.js +0 -84873
- package/src/ui/dist/assets/NotebookEditor-C3VQ7ylN.css +0 -1405
- package/src/ui/dist/assets/PdfLoader-BfOHw8Zw.js +0 -25468
- package/src/ui/dist/assets/PdfLoader-C-Y707R3.css +0 -49
- package/src/ui/dist/assets/PdfMarkdownPlugin-BulDREv1.js +0 -409
- package/src/ui/dist/assets/PdfViewerPlugin-C-daaOaL.js +0 -3095
- package/src/ui/dist/assets/PdfViewerPlugin-DQ11QcSf.css +0 -3627
- package/src/ui/dist/assets/SearchPlugin-CjpaiJ3A.js +0 -741
- package/src/ui/dist/assets/SearchPlugin-DDMrGDkh.css +0 -379
- package/src/ui/dist/assets/TextViewerPlugin-BxIyqPQC.js +0 -472
- package/src/ui/dist/assets/VNCViewer-HAg9mF7M.js +0 -18821
- package/src/ui/dist/assets/awareness-C0NPR2Dj.js +0 -292
- package/src/ui/dist/assets/bot-0DYntytV.js +0 -21
- package/src/ui/dist/assets/browser-BAcuE0Xj.js +0 -2895
- package/src/ui/dist/assets/code-B20Slj_w.js +0 -17
- package/src/ui/dist/assets/file-content-DT24KFma.js +0 -377
- package/src/ui/dist/assets/file-diff-panel-DK13YPql.js +0 -92
- package/src/ui/dist/assets/file-jump-queue-r5XKgJEV.js +0 -16
- package/src/ui/dist/assets/file-socket-B4T2o4nR.js +0 -58
- package/src/ui/dist/assets/function-B5QZkkHC.js +0 -1895
- package/src/ui/dist/assets/image-DSeR_sDS.js +0 -18
- package/src/ui/dist/assets/index-BrFje2Uk.js +0 -120
- package/src/ui/dist/assets/index-BwRJaoTl.js +0 -25
- package/src/ui/dist/assets/index-D_E4281X.js +0 -221322
- package/src/ui/dist/assets/index-DnYB3xb1.js +0 -159
- package/src/ui/dist/assets/index-G7AcWcMu.css +0 -12594
- package/src/ui/dist/assets/monaco-LExaAN3Y.js +0 -623
- package/src/ui/dist/assets/pdf-effect-queue-BJk5okWJ.js +0 -47
- package/src/ui/dist/assets/pdf_viewer-e0g1is2C.js +0 -8206
- package/src/ui/dist/assets/popover-D3Gg_FoV.js +0 -476
- package/src/ui/dist/assets/project-sync-C_ygLlVU.js +0 -297
- package/src/ui/dist/assets/select-CpAK6uWm.js +0 -1690
- package/src/ui/dist/assets/sigma-DEccaSgk.js +0 -22
- package/src/ui/dist/assets/square-check-big-uUfyVsbD.js +0 -17
- package/src/ui/dist/assets/trash-CXvwwSe8.js +0 -32
- package/src/ui/dist/assets/useCliAccess-Bnop4mgR.js +0 -957
- package/src/ui/dist/assets/useFileDiffOverlay-B8eUAX0I.js +0 -53
- package/src/ui/dist/assets/wrap-text-9vbOBpkW.js +0 -35
- package/src/ui/dist/assets/yjs-DncrqiZ8.js +0 -11243
- package/src/ui/dist/assets/zoom-out-BgVMmOW4.js +0 -34
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { w as createLucideIcon } from './index-D_E4281X.js';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* @license lucide-react v0.511.0 - ISC
|
|
5
|
-
*
|
|
6
|
-
* This source code is licensed under the ISC license.
|
|
7
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
const __iconNode = [
|
|
12
|
-
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2", key: "1m3agn" }],
|
|
13
|
-
["circle", { cx: "9", cy: "9", r: "2", key: "af1f0g" }],
|
|
14
|
-
["path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21", key: "1xmnt7" }]
|
|
15
|
-
];
|
|
16
|
-
const Image = createLucideIcon("image", __iconNode);
|
|
17
|
-
|
|
18
|
-
export { Image as I };
|
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
import { r as reactExports, O as ConnectionState, j as jsxRuntimeExports, P as EnhancedTerminal } from './index-D_E4281X.js';
|
|
2
|
-
import { u as useCliAccess, a as useCliSocket, n as nextSeq, b as buildChatSessionId } from './useCliAccess-Bnop4mgR.js';
|
|
3
|
-
|
|
4
|
-
function CliToolTerminal({
|
|
5
|
-
projectId,
|
|
6
|
-
serverId,
|
|
7
|
-
chatSessionId,
|
|
8
|
-
shellSessionId,
|
|
9
|
-
operationId,
|
|
10
|
-
readOnly,
|
|
11
|
-
showHeader = true
|
|
12
|
-
}) {
|
|
13
|
-
const [sessionId, setSessionId] = reactExports.useState(null);
|
|
14
|
-
const terminalWriterRef = reactExports.useRef(() => {
|
|
15
|
-
});
|
|
16
|
-
const terminalFocusRef = reactExports.useRef(() => {
|
|
17
|
-
});
|
|
18
|
-
const terminalSizeRef = reactExports.useRef(null);
|
|
19
|
-
const decoderRef = reactExports.useRef(typeof TextDecoder !== "undefined" ? new TextDecoder("utf-8") : null);
|
|
20
|
-
const { capabilities } = useCliAccess({ projectId, serverId, readOnly });
|
|
21
|
-
const canInput = capabilities.terminal_input;
|
|
22
|
-
reactExports.useEffect(() => {
|
|
23
|
-
let active = true;
|
|
24
|
-
const build = async () => {
|
|
25
|
-
const resolvedId = shellSessionId && shellSessionId.trim() ? shellSessionId : chatSessionId;
|
|
26
|
-
const scopedId = resolvedId === chatSessionId ? resolvedId : `${chatSessionId}:${resolvedId}`;
|
|
27
|
-
const id = await buildChatSessionId(projectId, serverId, scopedId);
|
|
28
|
-
if (active) setSessionId(id);
|
|
29
|
-
};
|
|
30
|
-
void build();
|
|
31
|
-
return () => {
|
|
32
|
-
active = false;
|
|
33
|
-
};
|
|
34
|
-
}, [chatSessionId, projectId, serverId, shellSessionId]);
|
|
35
|
-
const handlers = reactExports.useMemo(
|
|
36
|
-
() => ({
|
|
37
|
-
onTerminalOutput: (payload) => {
|
|
38
|
-
if (operationId && payload.operation_id && payload.operation_id !== operationId) return;
|
|
39
|
-
const rawData = payload.payload?.data;
|
|
40
|
-
let output = "";
|
|
41
|
-
if (typeof rawData === "string") {
|
|
42
|
-
output = rawData;
|
|
43
|
-
} else if (rawData instanceof ArrayBuffer) {
|
|
44
|
-
output = decoderRef.current?.decode(new Uint8Array(rawData)) ?? "";
|
|
45
|
-
} else if (ArrayBuffer.isView(rawData)) {
|
|
46
|
-
const view = rawData;
|
|
47
|
-
output = decoderRef.current?.decode(new Uint8Array(view.buffer, view.byteOffset, view.byteLength)) ?? "";
|
|
48
|
-
} else if (Array.isArray(rawData)) {
|
|
49
|
-
try {
|
|
50
|
-
output = decoderRef.current?.decode(new Uint8Array(rawData)) ?? "";
|
|
51
|
-
} catch {
|
|
52
|
-
output = String(rawData);
|
|
53
|
-
}
|
|
54
|
-
} else if (rawData != null) {
|
|
55
|
-
output = String(rawData);
|
|
56
|
-
}
|
|
57
|
-
if (output) {
|
|
58
|
-
terminalWriterRef.current?.(output);
|
|
59
|
-
terminalFocusRef.current?.();
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}),
|
|
63
|
-
[operationId]
|
|
64
|
-
);
|
|
65
|
-
const { status, emitEnvelope, sendTerminalInput, sendTerminalResize } = useCliSocket({
|
|
66
|
-
projectId,
|
|
67
|
-
serverId,
|
|
68
|
-
handlers
|
|
69
|
-
});
|
|
70
|
-
reactExports.useEffect(() => {
|
|
71
|
-
if (!sessionId || status.state !== ConnectionState.CONNECTED) return;
|
|
72
|
-
emitEnvelope("cli:session:attach", { session_id: sessionId }, { session_id: sessionId });
|
|
73
|
-
if (terminalSizeRef.current) {
|
|
74
|
-
sendTerminalResize({
|
|
75
|
-
cols: terminalSizeRef.current.cols,
|
|
76
|
-
rows: terminalSizeRef.current.rows,
|
|
77
|
-
sessionId
|
|
78
|
-
});
|
|
79
|
-
}
|
|
80
|
-
}, [emitEnvelope, sendTerminalResize, sessionId, status.state]);
|
|
81
|
-
const handleInput = reactExports.useCallback(
|
|
82
|
-
(data) => {
|
|
83
|
-
if (!sessionId || !canInput) return;
|
|
84
|
-
const operation = operationId || (typeof crypto !== "undefined" && typeof crypto.randomUUID === "function" ? crypto.randomUUID() : `op-${Date.now()}-${Math.random().toString(16).slice(2, 10)}`);
|
|
85
|
-
sendTerminalInput({
|
|
86
|
-
data,
|
|
87
|
-
sessionId,
|
|
88
|
-
seq: nextSeq(),
|
|
89
|
-
operationId: operation
|
|
90
|
-
});
|
|
91
|
-
},
|
|
92
|
-
[canInput, operationId, sendTerminalInput, sessionId]
|
|
93
|
-
);
|
|
94
|
-
const handleResize = reactExports.useCallback((cols, rows) => {
|
|
95
|
-
terminalSizeRef.current = { cols, rows };
|
|
96
|
-
if (!sessionId) return;
|
|
97
|
-
sendTerminalResize({ cols, rows, sessionId });
|
|
98
|
-
}, [sendTerminalResize, sessionId]);
|
|
99
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "cli-root h-full min-h-0", children: [
|
|
100
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
101
|
-
EnhancedTerminal,
|
|
102
|
-
{
|
|
103
|
-
onInput: handleInput,
|
|
104
|
-
onResize: handleResize,
|
|
105
|
-
searchOpen: false,
|
|
106
|
-
onSearchOpenChange: () => {
|
|
107
|
-
},
|
|
108
|
-
onReady: ({ write, focus }) => {
|
|
109
|
-
terminalWriterRef.current = write;
|
|
110
|
-
terminalFocusRef.current = focus;
|
|
111
|
-
},
|
|
112
|
-
appearance: "ui",
|
|
113
|
-
showHeader
|
|
114
|
-
}
|
|
115
|
-
),
|
|
116
|
-
!canInput ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "mt-2 text-xs text-[var(--cli-muted-1)]", children: "View only. CLI input permission required." }) : null
|
|
117
|
-
] });
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
export { CliToolTerminal };
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { w as createLucideIcon } from './index-D_E4281X.js';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* @license lucide-react v0.511.0 - ISC
|
|
5
|
-
*
|
|
6
|
-
* This source code is licensed under the ISC license.
|
|
7
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
const __iconNode = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]];
|
|
12
|
-
const ChevronUp = createLucideIcon("chevron-up", __iconNode);
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* Anime.js - ESM
|
|
16
|
-
* @version v4.3.6
|
|
17
|
-
* @license MIT
|
|
18
|
-
* @copyright 2026 - Julian Garnier
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
const index = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
22
|
-
__proto__: null
|
|
23
|
-
}, Symbol.toStringTag, { value: 'Module' }));
|
|
24
|
-
|
|
25
|
-
export { ChevronUp as C, index as i };
|