@yeaft/webchat-agent 1.0.363 → 1.0.364
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/local-runtime/version.json +1 -1
- package/local-runtime/web/app.bundle.js +12 -4
- package/local-runtime/web/app.bundle.js.gz +0 -0
- package/local-runtime/web/index.html +2 -2
- package/local-runtime/web/style.bundle.css +1 -1
- package/local-runtime/web/style.bundle.css.gz +0 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.0.
|
|
1
|
+
{"version":"1.0.364"}
|
|
@@ -3832,21 +3832,29 @@ ${String(e||"").trim()}
|
|
|
3832
3832
|
standalone YeaftSettings modal \u2014 everything Yeaft-scoped
|
|
3833
3833
|
lives behind this single nav entry. -->
|
|
3834
3834
|
<div v-show="activeTab === 'yeaft'" class="settings-pane settings-pane-yeaft">
|
|
3835
|
-
<div class="sp-subtab-bar">
|
|
3835
|
+
<div class="sp-subtab-bar" role="tablist" :aria-label="$t('settings.tabs.yeaft')">
|
|
3836
3836
|
<button v-for="st in yeaftSubTabs" :key="st.key"
|
|
3837
3837
|
class="sp-subtab"
|
|
3838
|
+
type="button"
|
|
3839
|
+
role="tab"
|
|
3840
|
+
:id="'yeaft-settings-tab-' + st.key"
|
|
3841
|
+
:aria-controls="'yeaft-settings-panel-' + st.key"
|
|
3842
|
+
:aria-selected="yeaftSubTab === st.key"
|
|
3838
3843
|
:class="{ active: yeaftSubTab === st.key }"
|
|
3839
3844
|
@click="yeaftSubTab = st.key">
|
|
3840
3845
|
{{ st.label }}
|
|
3841
3846
|
</button>
|
|
3842
3847
|
</div>
|
|
3843
|
-
<div v-show="yeaftSubTab === 'vp'" class="sp-subpane"
|
|
3848
|
+
<div v-show="yeaftSubTab === 'vp'" id="yeaft-settings-panel-vp" class="sp-subpane"
|
|
3849
|
+
role="tabpanel" aria-labelledby="yeaft-settings-tab-vp">
|
|
3844
3850
|
<VpCrudPanel :initial-edit-vp-id="initialEditVpId" />
|
|
3845
3851
|
</div>
|
|
3846
|
-
<div v-show="yeaftSubTab === 'search'" class="sp-subpane"
|
|
3852
|
+
<div v-show="yeaftSubTab === 'search'" id="yeaft-settings-panel-search" class="sp-subpane"
|
|
3853
|
+
role="tabpanel" aria-labelledby="yeaft-settings-tab-search">
|
|
3847
3854
|
<SearchSettingsTab @message="onLlmMessage" />
|
|
3848
3855
|
</div>
|
|
3849
|
-
<div v-show="yeaftSubTab === 'mcp'" class="sp-subpane"
|
|
3856
|
+
<div v-show="yeaftSubTab === 'mcp'" id="yeaft-settings-panel-mcp" class="sp-subpane"
|
|
3857
|
+
role="tabpanel" aria-labelledby="yeaft-settings-tab-mcp">
|
|
3850
3858
|
<McpTab @message="onLlmMessage" />
|
|
3851
3859
|
</div>
|
|
3852
3860
|
</div>
|
|
Binary file
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
|
6
6
|
<title>Yeaft</title>
|
|
7
7
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='8' fill='%232c2c2c'/><path d='M16 22V13M16 13L10 8M16 13L22 8' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/><circle cx='10' cy='8' r='2.4' fill='white'/><circle cx='22' cy='8' r='2.4' fill='white'/><circle cx='16' cy='22' r='2.4' fill='white'/></svg>">
|
|
8
|
-
<link rel="stylesheet" href="style.bundle.css?v=
|
|
8
|
+
<link rel="stylesheet" href="style.bundle.css?v=58e3f405">
|
|
9
9
|
<script src="vendor.bundle.js?v=103fd8e7"></script>
|
|
10
10
|
<script defer src="jszip.min.js"></script>
|
|
11
11
|
<script defer src="docx-preview.min.js"></script>
|
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
</head>
|
|
17
17
|
<body>
|
|
18
18
|
<div id="app"></div>
|
|
19
|
-
<script type="module" src="app.bundle.js?v=
|
|
19
|
+
<script type="module" src="app.bundle.js?v=2cd941bb"></script>
|
|
20
20
|
</body>
|
|
21
21
|
</html>
|