scream-code 0.13.7 → 0.13.9
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/{app-BEHboK6l.mjs → app-vcurmmh6.mjs} +24 -5
- package/dist/{dispatch-B6d7chu6.mjs → dispatch-DIJJXO0L.mjs} +613 -94
- package/dist/{dispatch-BPrqxTsP.mjs → dispatch-SbA6zFMd.mjs} +1 -1
- package/dist/main.mjs +1 -1
- package/dist/{text-input-dialog-DstXBOl9.mjs → text-input-dialog-BzVVVncg.mjs} +118 -82
- package/dist/{text-input-dialog-D8QuZFfe.mjs → text-input-dialog-DVWsE7Gh.mjs} +1 -1
- package/package.json +1 -1
|
@@ -3,5 +3,5 @@ import { fileURLToPath as __cjsShimFileURLToPath } from 'node:url';
|
|
|
3
3
|
import { dirname as __cjsShimDirname } from 'node:path';
|
|
4
4
|
const __filename = __cjsShimFileURLToPath(import.meta.url);
|
|
5
5
|
const __dirname = __cjsShimDirname(__filename);
|
|
6
|
-
import {
|
|
6
|
+
import { Kt as handleConnectCommand } from "./dispatch-DIJJXO0L.mjs";
|
|
7
7
|
export { handleConnectCommand };
|
package/dist/main.mjs
CHANGED
|
@@ -6,7 +6,7 @@ const __dirname = __cjsShimDirname(__filename);
|
|
|
6
6
|
import "./suppress-sqlite-warning-C2VB0doZ.mjs";
|
|
7
7
|
//#region src/main.ts
|
|
8
8
|
try {
|
|
9
|
-
(await import("./app-
|
|
9
|
+
(await import("./app-vcurmmh6.mjs")).main();
|
|
10
10
|
} catch (error) {
|
|
11
11
|
process.stderr.write(`${error instanceof Error ? error.stack ?? error.message : String(error)}\n`);
|
|
12
12
|
process.exit(1);
|
|
@@ -410,6 +410,8 @@ const dictionaries = {
|
|
|
410
410
|
"cc.confirm_uninstall": "确认彻底卸载 cc-connect?",
|
|
411
411
|
"cc.uninstall_irreversible": "此操作不可撤销,所有 cc-connect 数据将被清除",
|
|
412
412
|
"cc.confirm_uninstall_btn": "确认卸载",
|
|
413
|
+
"cc.uninstall_step_npm": "· 执行 npm uninstall -g cc-connect",
|
|
414
|
+
"cc.unknown_error": "未知错误",
|
|
413
415
|
"auth.fetching_models": "正在拉取最新模型目录...",
|
|
414
416
|
"auth.catalog_fetch_failed": "拉取远程模型目录失败: {error}。请检查网络(目录站点在你的网络环境下可能无法访问)后重试,或使用 /config diy 自行配置服务商。",
|
|
415
417
|
"auth.no_providers": "没有已配置的模型商。",
|
|
@@ -572,42 +574,48 @@ const dictionaries = {
|
|
|
572
574
|
"memory.experience_label": "经验: ",
|
|
573
575
|
"memory.note_label": "笔记: ",
|
|
574
576
|
"memory.detail_nav_hint": " Enter/Esc 返回 | i 注入 | d 删除",
|
|
575
|
-
"
|
|
576
|
-
"
|
|
577
|
-
"
|
|
578
|
-
"
|
|
579
|
-
"
|
|
580
|
-
"
|
|
581
|
-
"
|
|
582
|
-
"
|
|
583
|
-
"
|
|
584
|
-
"
|
|
585
|
-
"
|
|
586
|
-
"
|
|
587
|
-
"
|
|
588
|
-
"
|
|
589
|
-
"
|
|
590
|
-
"
|
|
591
|
-
"
|
|
592
|
-
"
|
|
593
|
-
"
|
|
594
|
-
"
|
|
595
|
-
"
|
|
596
|
-
"
|
|
597
|
-
"
|
|
598
|
-
"
|
|
599
|
-
"
|
|
600
|
-
"
|
|
601
|
-
"
|
|
602
|
-
"
|
|
603
|
-
"
|
|
604
|
-
"
|
|
605
|
-
"
|
|
606
|
-
"
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
"
|
|
610
|
-
"
|
|
577
|
+
"plugin.no_session": "请先创建或恢复一个会话,再使用 Plugin 中心。",
|
|
578
|
+
"extension.no_session": "请先创建或恢复一个会话,再使用扩展命令。",
|
|
579
|
+
"extension.usage": "用法:/extension activate|deactivate|status [pluginId]",
|
|
580
|
+
"extension.missing_id": "缺少扩展 id:/extension {action} <pluginId>",
|
|
581
|
+
"extension.activated": "扩展 {pluginId} 已激活。",
|
|
582
|
+
"extension.deactivated": "扩展 {pluginId} 已停用。",
|
|
583
|
+
"extension.no_extensions": "没有安装代码插件(entryPoint)。",
|
|
584
|
+
"plugin.loading": "正在加载 Plugin 中心…",
|
|
585
|
+
"plugin.center_title": "Plugin 中心",
|
|
586
|
+
"plugin.no_plugins": "当前没有已安装 Plugin 也没有可安装 Plugin 包。",
|
|
587
|
+
"plugin.footer_hint": "Enter 激活/安装 · d 卸载 · i 安装并注入 · Esc 返回",
|
|
588
|
+
"plugin.installed": "已安装的 Plugin",
|
|
589
|
+
"plugin.installable": "可安装的 Plugin 包",
|
|
590
|
+
"plugin.not_installed": "未安装",
|
|
591
|
+
"plugin.no_session_activate": "未连接到会话。请先创建或恢复一个会话。",
|
|
592
|
+
"plugin.not_found": "未找到 Plugin",
|
|
593
|
+
"plugin.installing_package": "正在安装 Plugin 包…",
|
|
594
|
+
"plugin.installed_injected": "已安装并注入当前会话。",
|
|
595
|
+
"plugin.plugin_installed": "插件已安装",
|
|
596
|
+
"plugin.no_manual_plugin": "已成功安装,但该包没有可手动激活的 Plugin。",
|
|
597
|
+
"plugin.install_failed": "安装失败。",
|
|
598
|
+
"plugin.install_failed_msg": "安装失败: {msg}",
|
|
599
|
+
"plugin.select_activate": "选择一个 Plugin 激活",
|
|
600
|
+
"plugin.select_hint": "Enter 激活 · Esc 返回",
|
|
601
|
+
"plugin.uninstall_whole_pkg": "将卸载整个包(共 {count} 个 Plugin),无法只删除单个 Plugin",
|
|
602
|
+
"plugin.uninstall_single": "将卸载整个 Plugin 包",
|
|
603
|
+
"plugin.uninstalling": "正在卸载",
|
|
604
|
+
"plugin.uninstalled": "已卸载。",
|
|
605
|
+
"plugin.plugin_uninstalled": "插件已卸载",
|
|
606
|
+
"plugin.plugin_removed": "该插件的 Plugin 已从当前会话中移除,无需重启会话。",
|
|
607
|
+
"plugin.uninstall_failed": "卸载失败。",
|
|
608
|
+
"plugin.uninstall_failed_msg": "卸载失败: {msg}",
|
|
609
|
+
"plugin.deleting_plugin": "将删除该 Plugin 的安装目录及子 Plugin",
|
|
610
|
+
"plugin.deleting": "正在删除",
|
|
611
|
+
"plugin.deleted": "已删除。",
|
|
612
|
+
"plugin.plugin_deleted": "Plugin 已删除",
|
|
613
|
+
"plugin.skill_removed": "该 Plugin 及其子 Plugin 已从当前会话中移除。",
|
|
614
|
+
"plugin.delete_failed": "删除失败。",
|
|
615
|
+
"plugin.delete_failed_msg": "删除失败: {msg}",
|
|
616
|
+
"plugin.confirm_uninstall": "确认卸载 \"{label}\"?",
|
|
617
|
+
"plugin.uninstall_reversible": "卸载后可在 Plugin 中心重新安装",
|
|
618
|
+
"plugin.uninstall_yes": "是,卸载",
|
|
611
619
|
"toolcall.bg_agent_lost": "后台 agent 丢失(会话在完成前已重启)",
|
|
612
620
|
"toolcall.bg_agent_terminated": "后台 agent 已终止",
|
|
613
621
|
"toolcall.bg_agent_failed": "后台 agent 失败",
|
|
@@ -695,8 +703,8 @@ const dictionaries = {
|
|
|
695
703
|
"replay.bg_failed_suffix": " 在后台失败",
|
|
696
704
|
"replay.bg_lost_suffix": " 在后台丢失",
|
|
697
705
|
"replay.bg_stopped_suffix": " stopped",
|
|
698
|
-
"
|
|
699
|
-
"
|
|
706
|
+
"plugin.source_label": "来源:",
|
|
707
|
+
"plugin.plugin_label": "插件:",
|
|
700
708
|
"taskbrowser.running": "运行中",
|
|
701
709
|
"taskbrowser.awaiting": "等待中",
|
|
702
710
|
"taskbrowser.completed": "已完成",
|
|
@@ -877,7 +885,7 @@ const dictionaries = {
|
|
|
877
885
|
"skillact.user_trigger": "(用户触发)",
|
|
878
886
|
"skillact.model_trigger": "(模型调用)",
|
|
879
887
|
"skillact.nested_trigger": "(嵌套调用)",
|
|
880
|
-
"skillact.activated": "▶
|
|
888
|
+
"skillact.activated": "▶ 已激活插件:",
|
|
881
889
|
"mediaurl.audio": "音频",
|
|
882
890
|
"mediaurl.image": "图片",
|
|
883
891
|
"mediaurl.video": "视频",
|
|
@@ -885,7 +893,7 @@ const dictionaries = {
|
|
|
885
893
|
"transcript.assistant": "助手:",
|
|
886
894
|
"transcript.thinking": "思考:",
|
|
887
895
|
"transcript.tool_name": "工具 {name}:",
|
|
888
|
-
"transcript.activated_skill": "
|
|
896
|
+
"transcript.activated_skill": "已激活插件:{name}",
|
|
889
897
|
"transcript.more_history": "↑ 还有 {count} 条历史消息",
|
|
890
898
|
"compaction.done": "压缩完成",
|
|
891
899
|
"compaction.canceled": "压缩已取消",
|
|
@@ -953,6 +961,15 @@ const dictionaries = {
|
|
|
953
961
|
"ccconnect.note_botfather": "需先在 @BotFather 创建 bot",
|
|
954
962
|
"ccconnect.note_napcat": "需要 NapCat/OneBot",
|
|
955
963
|
"ccconnect.note_wecom": "需要公网 IP",
|
|
964
|
+
"ccconnect.note_matrix": "E2EE 加密,需 homeserver + access token",
|
|
965
|
+
"ccconnect.note_webex": "需在 developer.webex.com 创建 Bot",
|
|
966
|
+
"ccconnect.note_max": "需通过 @MasterBot 创建 bot",
|
|
967
|
+
"ccconnect.note_googlechat": "需 GCP 服务账号 JSON",
|
|
968
|
+
"ccconnect.note_cloud_web": "自建 IM 网关",
|
|
969
|
+
"ccconnect.note_yuanbao": "腾讯元宝,需 app-key:app-secret",
|
|
970
|
+
"ccconnect.note_tuitui": "需 app_id + app_secret",
|
|
971
|
+
"ccconnect.note_wps_agentspace": "需 app_id + wps_sid",
|
|
972
|
+
"ccconnect.new_platform_version_hint": "⚠ 该平台需要 cc-connect v1.5.0 及以上,请先更新 cc-connect",
|
|
956
973
|
"ccconnect.config_comment_attachment": "# 全局:允许/禁止图片和文件回传到聊天(on = 开启,off = 关闭)",
|
|
957
974
|
"ccconnect.reconfigured": "{name} 已配置(配置不会丢失)",
|
|
958
975
|
"ccconnect.config_path": "配置文件:{path}",
|
|
@@ -1110,7 +1127,8 @@ const dictionaries = {
|
|
|
1110
1127
|
"onboarding.hint": "Enter=确认 Up/Down=选择 Esc=跳过",
|
|
1111
1128
|
"registry.like_desc": "设置你的偏好(昵称、语气、其他偏好)",
|
|
1112
1129
|
"registry.mcp_desc": "管理 MCP 服务器(安装/停用/卸载)",
|
|
1113
|
-
"registry.
|
|
1130
|
+
"registry.plugin_desc": "插件中心,管理插件,含激活、安装、卸载等",
|
|
1131
|
+
"registry.extension_desc": "代码扩展,激活或停用插件入口",
|
|
1114
1132
|
"registry.cc_desc": "操控你的cc(启动/关闭/重启)",
|
|
1115
1133
|
"registry.cc_connect_desc": "cc-connect 快速通道配置(需先安装)",
|
|
1116
1134
|
"registry.revoke_desc": "撤回上一次对话(可指定轮数,如 /revoke 3)",
|
|
@@ -1483,6 +1501,8 @@ const dictionaries = {
|
|
|
1483
1501
|
"cc.confirm_uninstall": "Completely uninstall cc-connect?",
|
|
1484
1502
|
"cc.uninstall_irreversible": "This cannot be undone. All cc-connect data will be removed.",
|
|
1485
1503
|
"cc.confirm_uninstall_btn": "Confirm Uninstall",
|
|
1504
|
+
"cc.uninstall_step_npm": "· Run npm uninstall -g cc-connect",
|
|
1505
|
+
"cc.unknown_error": "Unknown error",
|
|
1486
1506
|
"auth.fetching_models": "Fetching latest model catalog...",
|
|
1487
1507
|
"auth.catalog_fetch_failed": "Failed to fetch the remote model catalog: {error}. Check your network (the catalog host may be unreachable in your region) and retry, or use /config diy to set up a provider manually.",
|
|
1488
1508
|
"auth.no_providers": "No model providers configured.",
|
|
@@ -1645,42 +1665,48 @@ const dictionaries = {
|
|
|
1645
1665
|
"memory.experience_label": "Experience: ",
|
|
1646
1666
|
"memory.note_label": "Note: ",
|
|
1647
1667
|
"memory.detail_nav_hint": " Enter/Esc Back | i Inject | d Delete",
|
|
1648
|
-
"
|
|
1649
|
-
"
|
|
1650
|
-
"
|
|
1651
|
-
"
|
|
1652
|
-
"
|
|
1653
|
-
"
|
|
1654
|
-
"
|
|
1655
|
-
"
|
|
1656
|
-
"
|
|
1657
|
-
"
|
|
1658
|
-
"
|
|
1659
|
-
"
|
|
1660
|
-
"
|
|
1661
|
-
"
|
|
1662
|
-
"
|
|
1663
|
-
"
|
|
1664
|
-
"
|
|
1665
|
-
"
|
|
1666
|
-
"
|
|
1667
|
-
"
|
|
1668
|
-
"
|
|
1669
|
-
"
|
|
1670
|
-
"
|
|
1671
|
-
"
|
|
1672
|
-
"
|
|
1673
|
-
"
|
|
1674
|
-
"
|
|
1675
|
-
"
|
|
1676
|
-
"
|
|
1677
|
-
"
|
|
1678
|
-
"
|
|
1679
|
-
"
|
|
1680
|
-
"
|
|
1681
|
-
"
|
|
1682
|
-
"
|
|
1683
|
-
"
|
|
1668
|
+
"plugin.no_session": "Please create or resume a session before using the Plugin center.",
|
|
1669
|
+
"extension.no_session": "Please create or resume a session before using extension commands.",
|
|
1670
|
+
"extension.usage": "Usage: /extension activate|deactivate|status [pluginId]",
|
|
1671
|
+
"extension.missing_id": "Missing plugin id: /extension {action} <pluginId>",
|
|
1672
|
+
"extension.activated": "Extension {pluginId} activated.",
|
|
1673
|
+
"extension.deactivated": "Extension {pluginId} deactivated.",
|
|
1674
|
+
"extension.no_extensions": "No code extensions (entryPoint) installed.",
|
|
1675
|
+
"plugin.loading": "Loading Plugin center…",
|
|
1676
|
+
"plugin.center_title": "Plugin Center",
|
|
1677
|
+
"plugin.no_plugins": "No plugins installed and no plugin packages available.",
|
|
1678
|
+
"plugin.footer_hint": "Enter activate/install · d uninstall · i install & inject · Esc back",
|
|
1679
|
+
"plugin.installed": "Installed Plugins",
|
|
1680
|
+
"plugin.installable": "Available Plugin Packages",
|
|
1681
|
+
"plugin.not_installed": "Not installed",
|
|
1682
|
+
"plugin.no_session_activate": "Not connected to a session. Please create or resume one first.",
|
|
1683
|
+
"plugin.not_found": "Plugin not found",
|
|
1684
|
+
"plugin.installing_package": "Installing plugin package…",
|
|
1685
|
+
"plugin.installed_injected": "Installed and injected into current session.",
|
|
1686
|
+
"plugin.plugin_installed": "Plugin installed",
|
|
1687
|
+
"plugin.no_manual_plugin": "Installed successfully, but this package has no manually activatable plugins.",
|
|
1688
|
+
"plugin.install_failed": "Install failed.",
|
|
1689
|
+
"plugin.install_failed_msg": "Install failed: {msg}",
|
|
1690
|
+
"plugin.select_activate": "Select a Plugin to activate",
|
|
1691
|
+
"plugin.select_hint": "Enter to activate · Esc to go back",
|
|
1692
|
+
"plugin.uninstall_whole_pkg": "Will uninstall the entire package ({count} plugins). Cannot remove individual plugins.",
|
|
1693
|
+
"plugin.uninstall_single": "Will uninstall the entire Plugin package",
|
|
1694
|
+
"plugin.uninstalling": "Uninstalling",
|
|
1695
|
+
"plugin.uninstalled": "Uninstalled.",
|
|
1696
|
+
"plugin.plugin_uninstalled": "Plugin uninstalled",
|
|
1697
|
+
"plugin.plugin_removed": "This plugin's plugins have been removed from the current session. No restart needed.",
|
|
1698
|
+
"plugin.uninstall_failed": "Uninstall failed.",
|
|
1699
|
+
"plugin.uninstall_failed_msg": "Uninstall failed: {msg}",
|
|
1700
|
+
"plugin.deleting_plugin": "Will delete the plugin directory and sub-plugins",
|
|
1701
|
+
"plugin.deleting": "Deleting",
|
|
1702
|
+
"plugin.deleted": "Deleted.",
|
|
1703
|
+
"plugin.plugin_deleted": "Plugin deleted",
|
|
1704
|
+
"plugin.skill_removed": "This plugin and its sub-plugins have been removed from the current session.",
|
|
1705
|
+
"plugin.delete_failed": "Delete failed.",
|
|
1706
|
+
"plugin.delete_failed_msg": "Delete failed: {msg}",
|
|
1707
|
+
"plugin.confirm_uninstall": "Uninstall \"{label}\"?",
|
|
1708
|
+
"plugin.uninstall_reversible": "You can reinstall from the Plugin center later",
|
|
1709
|
+
"plugin.uninstall_yes": "Yes, uninstall",
|
|
1684
1710
|
"toolcall.bg_agent_lost": "Background agent lost (session restarted before completion)",
|
|
1685
1711
|
"toolcall.bg_agent_terminated": "Background agent terminated",
|
|
1686
1712
|
"toolcall.bg_agent_failed": "Background agent failed",
|
|
@@ -1768,8 +1794,8 @@ const dictionaries = {
|
|
|
1768
1794
|
"replay.bg_failed_suffix": " failed in background",
|
|
1769
1795
|
"replay.bg_lost_suffix": " lost in background",
|
|
1770
1796
|
"replay.bg_stopped_suffix": " stopped",
|
|
1771
|
-
"
|
|
1772
|
-
"
|
|
1797
|
+
"plugin.source_label": "Source:",
|
|
1798
|
+
"plugin.plugin_label": "Plugin:",
|
|
1773
1799
|
"taskbrowser.running": "running",
|
|
1774
1800
|
"taskbrowser.awaiting": "awaiting",
|
|
1775
1801
|
"taskbrowser.completed": "completed",
|
|
@@ -1950,7 +1976,7 @@ const dictionaries = {
|
|
|
1950
1976
|
"skillact.user_trigger": "(user triggered)",
|
|
1951
1977
|
"skillact.model_trigger": "(model invoked)",
|
|
1952
1978
|
"skillact.nested_trigger": "(nested call)",
|
|
1953
|
-
"skillact.activated": "▶ Activated
|
|
1979
|
+
"skillact.activated": "▶ Activated plugin: ",
|
|
1954
1980
|
"mediaurl.audio": "Audio",
|
|
1955
1981
|
"mediaurl.image": "Image",
|
|
1956
1982
|
"mediaurl.video": "Video",
|
|
@@ -1958,7 +1984,7 @@ const dictionaries = {
|
|
|
1958
1984
|
"transcript.assistant": "Assistant: ",
|
|
1959
1985
|
"transcript.thinking": "Thinking: ",
|
|
1960
1986
|
"transcript.tool_name": "Tool {name}: ",
|
|
1961
|
-
"transcript.activated_skill": "Activated
|
|
1987
|
+
"transcript.activated_skill": "Activated plugin: {name}",
|
|
1962
1988
|
"transcript.more_history": "↑ {count} more history message(s)",
|
|
1963
1989
|
"compaction.done": "Compaction complete",
|
|
1964
1990
|
"compaction.canceled": "Compaction cancelled",
|
|
@@ -2026,6 +2052,15 @@ const dictionaries = {
|
|
|
2026
2052
|
"ccconnect.note_botfather": "Create a bot at @BotFather first",
|
|
2027
2053
|
"ccconnect.note_napcat": "Requires NapCat/OneBot",
|
|
2028
2054
|
"ccconnect.note_wecom": "Requires public IP",
|
|
2055
|
+
"ccconnect.note_matrix": "E2EE encrypted, needs homeserver + access token",
|
|
2056
|
+
"ccconnect.note_webex": "Create a bot at developer.webex.com",
|
|
2057
|
+
"ccconnect.note_max": "Create a bot via @MasterBot",
|
|
2058
|
+
"ccconnect.note_googlechat": "Requires GCP service account JSON",
|
|
2059
|
+
"ccconnect.note_cloud_web": "Self-hosted IM gateway",
|
|
2060
|
+
"ccconnect.note_yuanbao": "Tencent Yuanbao, needs app-key:app-secret",
|
|
2061
|
+
"ccconnect.note_tuitui": "Needs app_id + app_secret",
|
|
2062
|
+
"ccconnect.note_wps_agentspace": "Needs app_id + wps_sid",
|
|
2063
|
+
"ccconnect.new_platform_version_hint": "⚠ This platform requires cc-connect v1.5.0 or newer. Please update cc-connect first.",
|
|
2029
2064
|
"ccconnect.config_comment_attachment": "# Global: allow/disallow image & file backhaul to chat (on = enabled, off = disabled)",
|
|
2030
2065
|
"ccconnect.reconfigured": "{name} already configured (config preserved)",
|
|
2031
2066
|
"ccconnect.config_path": "Config file: {path}",
|
|
@@ -2183,7 +2218,8 @@ const dictionaries = {
|
|
|
2183
2218
|
"onboarding.hint": "Enter=confirm Up/Down=choose Esc=skip",
|
|
2184
2219
|
"registry.like_desc": "Set your preferences (nickname, tone, other)",
|
|
2185
2220
|
"registry.mcp_desc": "Manage MCP servers (install/disable/uninstall)",
|
|
2186
|
-
"registry.
|
|
2221
|
+
"registry.plugin_desc": "Plugin center, manage plugins including activate, install, uninstall",
|
|
2222
|
+
"registry.extension_desc": "Code extensions, activate or deactivate a plugin entry point",
|
|
2187
2223
|
"registry.cc_desc": "Control your cc (start/stop/restart)",
|
|
2188
2224
|
"registry.cc_connect_desc": "cc-connect quick channel setup (requires installation)",
|
|
2189
2225
|
"registry.revoke_desc": "Undo last conversation round (specify rounds, e.g. /revoke 3)",
|
|
@@ -3,5 +3,5 @@ import { fileURLToPath as __cjsShimFileURLToPath } from 'node:url';
|
|
|
3
3
|
import { dirname as __cjsShimDirname } from 'node:path';
|
|
4
4
|
const __filename = __cjsShimFileURLToPath(import.meta.url);
|
|
5
5
|
const __dirname = __cjsShimDirname(__filename);
|
|
6
|
-
import { t as TextInputDialogComponent } from "./text-input-dialog-
|
|
6
|
+
import { t as TextInputDialogComponent } from "./text-input-dialog-BzVVVncg.mjs";
|
|
7
7
|
export { TextInputDialogComponent };
|