dsh-side-chat-plus 0.3.1 → 0.3.2
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 +20 -11
- package/README.zh.md +19 -12
- package/dsh.plugin.json +1 -1
- package/lib/client-registry.js +93 -93
- package/lib/client.js +92 -92
- package/package.json +16 -1
package/README.md
CHANGED
|
@@ -147,6 +147,25 @@ DSH web loads external plugins from the active profile. This package is a
|
|
|
147
147
|
That declaration is what lets `dsh plugin add` install the package *and*
|
|
148
148
|
activate it in one step.
|
|
149
149
|
|
|
150
|
+
> **Recommended: install from npm.** The package is published to
|
|
151
|
+
> [npm](https://www.npmjs.com/package/dsh-side-chat-plus) as
|
|
152
|
+
> `dsh-side-chat-plus`, so `dsh plugin add` needs no source checkout — the
|
|
153
|
+
> tarball ships the prebuilt `lib/` and is activated in one go.
|
|
154
|
+
|
|
155
|
+
### Install from npm
|
|
156
|
+
|
|
157
|
+
The built package is published to npm as [`dsh-side-chat-plus`](https://www.npmjs.com/package/dsh-side-chat-plus). Installed from the registry, the tarball ships the prebuilt `lib/` (plus `cordis.patch.yml` and `dsh.plugin.json`), so no source build is needed:
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
npx -p @deepseek-ai/dsh dsh plugin --profile web add dsh-side-chat-plus
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
`dsh plugin` reconciles the bundle into the profile's `dsh.profile.bundles`
|
|
164
|
+
layer list; the prebuilt `lib/` means nothing extra runs at install time.
|
|
165
|
+
Version falls out of the tagged release (see [CI and publishing](#ci-and-publishing)).
|
|
166
|
+
|
|
167
|
+
Restart `dsh web`, then hard-refresh the page (Ctrl/Cmd+Shift+R).
|
|
168
|
+
|
|
150
169
|
### Install from GitHub
|
|
151
170
|
|
|
152
171
|
```bash
|
|
@@ -175,22 +194,12 @@ silently change what runs.
|
|
|
175
194
|
|
|
176
195
|
Restart `dsh web`, then hard-refresh the page (Ctrl/Cmd+Shift+R).
|
|
177
196
|
|
|
178
|
-
### Install from npm
|
|
179
|
-
|
|
180
|
-
The built package is published to npm as [`dsh-side-chat-plus`](https://www.npmjs.com/package/dsh-side-chat-plus). Installed from the registry, the tarball ships the prebuilt `lib/` (plus `cordis.patch.yml` and `dsh.plugin.json`), so no source build is needed:
|
|
181
|
-
|
|
182
|
-
```bash
|
|
183
|
-
npx -p @deepseek-ai/dsh dsh plugin --profile web add dsh-side-chat-plus
|
|
184
|
-
```
|
|
185
|
-
|
|
186
|
-
Version falls out of the tagged release (see below).
|
|
187
|
-
|
|
188
197
|
### Install from a local checkout
|
|
189
198
|
|
|
190
199
|
From the directory that contains this checkout:
|
|
191
200
|
|
|
192
201
|
```bash
|
|
193
|
-
npx -p @deepseek-ai/dsh dsh plugin --profile web add ./dsh-side-chat
|
|
202
|
+
npx -p @deepseek-ai/dsh dsh plugin --profile web add ./dsh-side-chat-plus
|
|
194
203
|
```
|
|
195
204
|
|
|
196
205
|
pnpm links the checkout and `dsh` activates the bundle the same way.
|
package/README.zh.md
CHANGED
|
@@ -105,6 +105,24 @@ DSH web 从当前 profile 加载外部插件。本包是一个 **bundle**:它
|
|
|
105
105
|
其中的 `insert` 条目用于挂载插件。正是这个声明让 `dsh plugin add` 能一步完成
|
|
106
106
|
「安装 + 激活」。
|
|
107
107
|
|
|
108
|
+
> **推荐:从 npm 安装。** 本包已发布到 [npm](https://www.npmjs.com/package/dsh-side-chat-plus),
|
|
109
|
+
> 名为 `dsh-side-chat-plus`,因此 `dsh plugin add` 无需源码 checkout——tarball 自带预构建的
|
|
110
|
+
> `lib/`,安装即激活。
|
|
111
|
+
|
|
112
|
+
### 从 npm 安装
|
|
113
|
+
|
|
114
|
+
构建好的包已发布到 npm,名为 [`dsh-side-chat-plus`](https://www.npmjs.com/package/dsh-side-chat-plus)。
|
|
115
|
+
从 registry 安装时,tarball 自带预构建的 `lib/`(以及 `cordis.patch.yml`、`dsh.plugin.json`),无需源码构建:
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
npx -p @deepseek-ai/dsh dsh plugin --profile web add dsh-side-chat-plus
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
`dsh plugin` 会把 bundle 对账进该 profile 的 `dsh.profile.bundles` 层列表;预构建的 `lib/`
|
|
122
|
+
意味着安装时无需额外运行任何构建。版本号随打出的 tag 确定(见 [CI 与发布](#ci-与发布))。
|
|
123
|
+
|
|
124
|
+
重启 `dsh web`,然后在浏览器中强制刷新页面(Ctrl/Cmd+Shift+R)。
|
|
125
|
+
|
|
108
126
|
### 从 GitHub 安装
|
|
109
127
|
|
|
110
128
|
```bash
|
|
@@ -131,23 +149,12 @@ allowBuilds:
|
|
|
131
149
|
|
|
132
150
|
重启 `dsh web`,然后在浏览器中强制刷新页面(Ctrl/Cmd+Shift+R)。
|
|
133
151
|
|
|
134
|
-
### 从 npm 安装
|
|
135
|
-
|
|
136
|
-
构建好的包已发布到 npm,名为 [`dsh-side-chat-plus`](https://www.npmjs.com/package/dsh-side-chat-plus)。
|
|
137
|
-
从 registry 安装时,tarball 自带预构建的 `lib/`(以及 `cordis.patch.yml`、`dsh.plugin.json`),无需源码构建:
|
|
138
|
-
|
|
139
|
-
```bash
|
|
140
|
-
npx -p @deepseek-ai/dsh dsh plugin --profile web add dsh-side-chat-plus
|
|
141
|
-
```
|
|
142
|
-
|
|
143
|
-
版本号随打出的 tag 确定(见下文发布说明)。
|
|
144
|
-
|
|
145
152
|
### 从本地 checkout 安装
|
|
146
153
|
|
|
147
154
|
在包含本项目 checkout 的目录下执行:
|
|
148
155
|
|
|
149
156
|
```bash
|
|
150
|
-
npx -p @deepseek-ai/dsh dsh plugin --profile web add ./dsh-side-chat
|
|
157
|
+
npx -p @deepseek-ai/dsh dsh plugin --profile web add ./dsh-side-chat-plus
|
|
151
158
|
```
|
|
152
159
|
|
|
153
160
|
pnpm 会链接该 checkout,`dsh` 以同样方式激活这个 bundle。
|
package/dsh.plugin.json
CHANGED
package/lib/client-registry.js
CHANGED
|
@@ -20,14 +20,14 @@ window.__ModuleLoader__.load({
|
|
|
20
20
|
document.head.appendChild(tag);
|
|
21
21
|
}
|
|
22
22
|
var AttachmentRail_module_css_default = {
|
|
23
|
-
"
|
|
24
|
-
"
|
|
23
|
+
"thumbnail": "Nb9OEG_thumbnail",
|
|
24
|
+
"remove": "Nb9OEG_remove",
|
|
25
25
|
"root": "Nb9OEG_root",
|
|
26
|
-
"arrowRight": "Nb9OEG_arrowRight",
|
|
27
26
|
"arrowLeft": "Nb9OEG_arrowLeft",
|
|
28
|
-
"thumbnail": "Nb9OEG_thumbnail",
|
|
29
27
|
"arrow": "Nb9OEG_arrow",
|
|
30
|
-
"
|
|
28
|
+
"rail": "Nb9OEG_rail",
|
|
29
|
+
"arrowRight": "Nb9OEG_arrowRight",
|
|
30
|
+
"item": "Nb9OEG_item"
|
|
31
31
|
};
|
|
32
32
|
//#endregion
|
|
33
33
|
//#region src/client/attachments/AttachmentRail.tsx
|
|
@@ -173,11 +173,11 @@ window.__ModuleLoader__.load({
|
|
|
173
173
|
document.head.appendChild(tag);
|
|
174
174
|
}
|
|
175
175
|
var DropOverlay_module_css_default = {
|
|
176
|
-
"title": "i9bHbW_title",
|
|
177
|
-
"illustration": "i9bHbW_illustration",
|
|
178
|
-
"wrap": "i9bHbW_wrap",
|
|
179
176
|
"mask": "i9bHbW_mask",
|
|
180
|
-
"
|
|
177
|
+
"wrap": "i9bHbW_wrap",
|
|
178
|
+
"desc": "i9bHbW_desc",
|
|
179
|
+
"title": "i9bHbW_title",
|
|
180
|
+
"illustration": "i9bHbW_illustration"
|
|
181
181
|
};
|
|
182
182
|
//#endregion
|
|
183
183
|
//#region src/client/attachments/DropOverlay.tsx
|
|
@@ -320,10 +320,10 @@ window.__ModuleLoader__.load({
|
|
|
320
320
|
document.head.appendChild(tag);
|
|
321
321
|
}
|
|
322
322
|
var ImageLightbox_module_css_default = {
|
|
323
|
-
"backdrop": "IiCsRq_backdrop",
|
|
324
323
|
"mask": "IiCsRq_mask",
|
|
325
|
-
"
|
|
326
|
-
"image": "IiCsRq_image"
|
|
324
|
+
"backdrop": "IiCsRq_backdrop",
|
|
325
|
+
"image": "IiCsRq_image",
|
|
326
|
+
"close": "IiCsRq_close"
|
|
327
327
|
};
|
|
328
328
|
//#endregion
|
|
329
329
|
//#region src/client/attachments/ImageLightbox.tsx
|
|
@@ -388,10 +388,10 @@ window.__ModuleLoader__.load({
|
|
|
388
388
|
document.head.appendChild(tag);
|
|
389
389
|
}
|
|
390
390
|
var MessageImage_module_css_default = {
|
|
391
|
-
"
|
|
392
|
-
"gallery": "HNfuSq_gallery",
|
|
391
|
+
"frame": "HNfuSq_frame",
|
|
393
392
|
"loading": "HNfuSq_loading",
|
|
394
|
-
"
|
|
393
|
+
"gallery": "HNfuSq_gallery",
|
|
394
|
+
"error": "HNfuSq_error"
|
|
395
395
|
};
|
|
396
396
|
//#endregion
|
|
397
397
|
//#region src/client/attachments/MessageImage.tsx
|
|
@@ -739,99 +739,99 @@ window.__ModuleLoader__.load({
|
|
|
739
739
|
document.head.appendChild(tag);
|
|
740
740
|
}
|
|
741
741
|
var client_module_css_default = {
|
|
742
|
-
"
|
|
743
|
-
"
|
|
744
|
-
"
|
|
745
|
-
"
|
|
746
|
-
"
|
|
747
|
-
"
|
|
748
|
-
"
|
|
749
|
-
"messageAssistant": "LU9nbG_messageAssistant",
|
|
750
|
-
"settingsRowText": "LU9nbG_settingsRowText",
|
|
751
|
-
"panelRunningDot": "LU9nbG_panelRunningDot",
|
|
752
|
-
"settingsRowTitle": "LU9nbG_settingsRowTitle",
|
|
753
|
-
"messageUser": "LU9nbG_messageUser",
|
|
754
|
-
"panelListItemRemove": "LU9nbG_panelListItemRemove",
|
|
755
|
-
"panelRunningClock": "LU9nbG_panelRunningClock",
|
|
756
|
-
"modelSelect": "LU9nbG_modelSelect",
|
|
742
|
+
"panelIconButton": "LU9nbG_panelIconButton",
|
|
743
|
+
"panel": "LU9nbG_panel",
|
|
744
|
+
"questionOptionDesc": "LU9nbG_questionOptionDesc",
|
|
745
|
+
"messageUserText": "LU9nbG_messageUserText",
|
|
746
|
+
"modelSelectEffort": "LU9nbG_modelSelectEffort",
|
|
747
|
+
"modelSelectLabel": "LU9nbG_modelSelectLabel",
|
|
748
|
+
"modelGroups": "LU9nbG_modelGroups",
|
|
757
749
|
"panelHeader": "LU9nbG_panelHeader",
|
|
758
|
-
"
|
|
750
|
+
"panelEmpty": "LU9nbG_panelEmpty",
|
|
751
|
+
"panelListActions": "LU9nbG_panelListActions",
|
|
752
|
+
"collapsedHandle": "LU9nbG_collapsedHandle",
|
|
753
|
+
"panelLookup": "LU9nbG_panelLookup",
|
|
754
|
+
"modelSelectTrigger": "LU9nbG_modelSelectTrigger",
|
|
755
|
+
"chevronOpen": "LU9nbG_chevronOpen",
|
|
756
|
+
"panelTitle": "LU9nbG_panelTitle",
|
|
757
|
+
"modelCell": "LU9nbG_modelCell",
|
|
758
|
+
"questionItem": "LU9nbG_questionItem",
|
|
759
|
+
"panelListDeleteAll": "LU9nbG_panelListDeleteAll",
|
|
759
760
|
"settingsBringOptionActive": "LU9nbG_settingsBringOptionActive",
|
|
760
|
-
"
|
|
761
|
-
"
|
|
762
|
-
"
|
|
761
|
+
"panelListItemActive": "LU9nbG_panelListItemActive",
|
|
762
|
+
"panelAttachmentRail": "LU9nbG_panelAttachmentRail",
|
|
763
|
+
"panelTranscript": "LU9nbG_panelTranscript",
|
|
763
764
|
"panelRunningPulse": "LU9nbG_panelRunningPulse",
|
|
764
|
-
"
|
|
765
|
-
"
|
|
766
|
-
"
|
|
767
|
-
"
|
|
765
|
+
"modelGroup": "LU9nbG_modelGroup",
|
|
766
|
+
"modelEmpty": "LU9nbG_modelEmpty",
|
|
767
|
+
"questionHeaderText": "LU9nbG_questionHeaderText",
|
|
768
|
+
"questionDeleteAll": "LU9nbG_questionDeleteAll",
|
|
769
|
+
"messageUser": "LU9nbG_messageUser",
|
|
768
770
|
"modelOptionSelected": "LU9nbG_modelOptionSelected",
|
|
769
|
-
"
|
|
770
|
-
"
|
|
771
|
-
"
|
|
772
|
-
"
|
|
771
|
+
"panelListItemRemove": "LU9nbG_panelListItemRemove",
|
|
772
|
+
"questionToggle": "LU9nbG_questionToggle",
|
|
773
|
+
"reasoningSummary": "LU9nbG_reasoningSummary",
|
|
774
|
+
"panelComposer": "LU9nbG_panelComposer",
|
|
773
775
|
"panelTextarea": "LU9nbG_panelTextarea",
|
|
774
|
-
"
|
|
775
|
-
"modelSelectMenu": "LU9nbG_modelSelectMenu",
|
|
776
|
-
"questionBringButton": "LU9nbG_questionBringButton",
|
|
777
|
-
"panelToolbar": "LU9nbG_panelToolbar",
|
|
778
|
-
"modelCell": "LU9nbG_modelCell",
|
|
779
|
-
"panelError": "LU9nbG_panelError",
|
|
776
|
+
"panelResize": "LU9nbG_panelResize",
|
|
780
777
|
"panelAttachmentText": "LU9nbG_panelAttachmentText",
|
|
778
|
+
"questionFabDot": "LU9nbG_questionFabDot",
|
|
779
|
+
"modelCellLabel": "LU9nbG_modelCellLabel",
|
|
780
|
+
"modelName": "LU9nbG_modelName",
|
|
781
|
+
"panelList": "LU9nbG_panelList",
|
|
782
|
+
"settingsRow": "LU9nbG_settingsRow",
|
|
783
|
+
"settingsRowTitle": "LU9nbG_settingsRowTitle",
|
|
784
|
+
"questionOption": "LU9nbG_questionOption",
|
|
785
|
+
"modelSelect": "LU9nbG_modelSelect",
|
|
786
|
+
"settingsSection": "LU9nbG_settingsSection",
|
|
787
|
+
"modelCellValue": "LU9nbG_modelCellValue",
|
|
788
|
+
"settingsRowDesc": "LU9nbG_settingsRowDesc",
|
|
789
|
+
"selectionButton": "LU9nbG_selectionButton",
|
|
790
|
+
"panelAttachment": "LU9nbG_panelAttachment",
|
|
791
|
+
"panelHeaderActions": "LU9nbG_panelHeaderActions",
|
|
792
|
+
"questionDelete": "LU9nbG_questionDelete",
|
|
793
|
+
"reasoningBody": "LU9nbG_reasoningBody",
|
|
794
|
+
"questionBlock": "LU9nbG_questionBlock",
|
|
795
|
+
"panelAttachmentRemove": "LU9nbG_panelAttachmentRemove",
|
|
781
796
|
"modelCellChevron": "LU9nbG_modelCellChevron",
|
|
782
|
-
"
|
|
797
|
+
"modelCheck": "LU9nbG_modelCheck",
|
|
798
|
+
"questionOptionLabel": "LU9nbG_questionOptionLabel",
|
|
799
|
+
"panelFooter": "LU9nbG_panelFooter",
|
|
783
800
|
"modelDescription": "LU9nbG_modelDescription",
|
|
784
|
-
"panelTranscript": "LU9nbG_panelTranscript",
|
|
785
|
-
"settingsSection": "LU9nbG_settingsSection",
|
|
786
|
-
"questionOption": "LU9nbG_questionOption",
|
|
787
|
-
"modelCellLabel": "LU9nbG_modelCellLabel",
|
|
788
|
-
"chevronOpen": "LU9nbG_chevronOpen",
|
|
789
801
|
"panelListItem": "LU9nbG_panelListItem",
|
|
790
|
-
"
|
|
802
|
+
"settingsToggle": "LU9nbG_settingsToggle",
|
|
791
803
|
"questionOptionText": "LU9nbG_questionOptionText",
|
|
792
|
-
"questionFabDot": "LU9nbG_questionFabDot",
|
|
793
|
-
"questionToggle": "LU9nbG_questionToggle",
|
|
794
|
-
"panelLookup": "LU9nbG_panelLookup",
|
|
795
804
|
"settingsBringOption": "LU9nbG_settingsBringOption",
|
|
796
|
-
"
|
|
797
|
-
"
|
|
798
|
-
"
|
|
799
|
-
"questionDetail": "LU9nbG_questionDetail",
|
|
800
|
-
"questionHeader": "LU9nbG_questionHeader",
|
|
801
|
-
"questionOptionLabel": "LU9nbG_questionOptionLabel",
|
|
802
|
-
"panelListItemRow": "LU9nbG_panelListItemRow",
|
|
805
|
+
"panelRunningDot": "LU9nbG_panelRunningDot",
|
|
806
|
+
"messageActions": "LU9nbG_messageActions",
|
|
807
|
+
"panelListItemLabel": "LU9nbG_panelListItemLabel",
|
|
803
808
|
"questionFab": "LU9nbG_questionFab",
|
|
804
809
|
"messageInsertButton": "LU9nbG_messageInsertButton",
|
|
805
|
-
"
|
|
806
|
-
"
|
|
807
|
-
"
|
|
808
|
-
"
|
|
809
|
-
"
|
|
810
|
-
"
|
|
811
|
-
"
|
|
812
|
-
"
|
|
813
|
-
"questionDelete": "LU9nbG_questionDelete",
|
|
814
|
-
"modelOptionCopy": "LU9nbG_modelOptionCopy",
|
|
815
|
-
"questionItem": "LU9nbG_questionItem",
|
|
816
|
-
"selectionButton": "LU9nbG_selectionButton",
|
|
817
|
-
"panelDispose": "LU9nbG_panelDispose",
|
|
818
|
-
"collapsedHandle": "LU9nbG_collapsedHandle",
|
|
819
|
-
"questionBody": "LU9nbG_questionBody",
|
|
820
|
-
"panelAttachmentRemove": "LU9nbG_panelAttachmentRemove",
|
|
821
|
-
"panelList": "LU9nbG_panelList",
|
|
822
|
-
"panelIconButton": "LU9nbG_panelIconButton",
|
|
823
|
-
"panelListActions": "LU9nbG_panelListActions",
|
|
824
|
-
"modelCheck": "LU9nbG_modelCheck",
|
|
825
|
-
"panelEmpty": "LU9nbG_panelEmpty",
|
|
826
|
-
"modelGroups": "LU9nbG_modelGroups",
|
|
827
|
-
"modelEmpty": "LU9nbG_modelEmpty",
|
|
810
|
+
"settingsBringMode": "LU9nbG_settingsBringMode",
|
|
811
|
+
"questionHeader": "LU9nbG_questionHeader",
|
|
812
|
+
"settingsRowText": "LU9nbG_settingsRowText",
|
|
813
|
+
"questionDetail": "LU9nbG_questionDetail",
|
|
814
|
+
"panelListItemDot": "LU9nbG_panelListItemDot",
|
|
815
|
+
"modelOption": "LU9nbG_modelOption",
|
|
816
|
+
"panelError": "LU9nbG_panelError",
|
|
817
|
+
"questionBringButton": "LU9nbG_questionBringButton",
|
|
828
818
|
"settingsPromptInput": "LU9nbG_settingsPromptInput",
|
|
829
|
-
"
|
|
819
|
+
"questionBody": "LU9nbG_questionBody",
|
|
820
|
+
"selectionMenu": "LU9nbG_selectionMenu",
|
|
821
|
+
"panelToolbar": "LU9nbG_panelToolbar",
|
|
822
|
+
"primary": "LU9nbG_primary",
|
|
823
|
+
"modelSelectMenu": "LU9nbG_modelSelectMenu",
|
|
824
|
+
"questionBlockActions": "LU9nbG_questionBlockActions",
|
|
825
|
+
"messageAssistant": "LU9nbG_messageAssistant",
|
|
826
|
+
"panelListItemRow": "LU9nbG_panelListItemRow",
|
|
830
827
|
"questionItemCollapsed": "LU9nbG_questionItemCollapsed",
|
|
831
|
-
"
|
|
832
|
-
"
|
|
833
|
-
"
|
|
834
|
-
"
|
|
828
|
+
"panelDispose": "LU9nbG_panelDispose",
|
|
829
|
+
"panelClose": "LU9nbG_panelClose",
|
|
830
|
+
"modelGroupTitle": "LU9nbG_modelGroupTitle",
|
|
831
|
+
"modelOptionCopy": "LU9nbG_modelOptionCopy",
|
|
832
|
+
"questionHeaderActions": "LU9nbG_questionHeaderActions",
|
|
833
|
+
"panelRunning": "LU9nbG_panelRunning",
|
|
834
|
+
"panelRunningClock": "LU9nbG_panelRunningClock"
|
|
835
835
|
};
|
|
836
836
|
//#endregion
|
|
837
837
|
//#region \0dsh-css:D:\code\DSH-side-chat\src\client\layout.css.mjs
|
package/lib/client.js
CHANGED
|
@@ -21,13 +21,13 @@ window.__ModuleLoader__.load({
|
|
|
21
21
|
}
|
|
22
22
|
var AttachmentRail_module_css_default = {
|
|
23
23
|
"arrow": "Nb9OEG_arrow",
|
|
24
|
-
"arrowRight": "Nb9OEG_arrowRight",
|
|
25
|
-
"root": "Nb9OEG_root",
|
|
26
|
-
"rail": "Nb9OEG_rail",
|
|
27
|
-
"arrowLeft": "Nb9OEG_arrowLeft",
|
|
28
|
-
"item": "Nb9OEG_item",
|
|
29
24
|
"thumbnail": "Nb9OEG_thumbnail",
|
|
30
|
-
"
|
|
25
|
+
"arrowLeft": "Nb9OEG_arrowLeft",
|
|
26
|
+
"rail": "Nb9OEG_rail",
|
|
27
|
+
"remove": "Nb9OEG_remove",
|
|
28
|
+
"root": "Nb9OEG_root",
|
|
29
|
+
"arrowRight": "Nb9OEG_arrowRight",
|
|
30
|
+
"item": "Nb9OEG_item"
|
|
31
31
|
};
|
|
32
32
|
//#endregion
|
|
33
33
|
//#region src/client/attachments/AttachmentRail.tsx
|
|
@@ -173,11 +173,11 @@ window.__ModuleLoader__.load({
|
|
|
173
173
|
document.head.appendChild(tag);
|
|
174
174
|
}
|
|
175
175
|
var DropOverlay_module_css_default = {
|
|
176
|
-
"illustration": "i9bHbW_illustration",
|
|
177
|
-
"mask": "i9bHbW_mask",
|
|
178
176
|
"title": "i9bHbW_title",
|
|
179
|
-
"
|
|
180
|
-
"
|
|
177
|
+
"mask": "i9bHbW_mask",
|
|
178
|
+
"illustration": "i9bHbW_illustration",
|
|
179
|
+
"wrap": "i9bHbW_wrap",
|
|
180
|
+
"desc": "i9bHbW_desc"
|
|
181
181
|
};
|
|
182
182
|
//#endregion
|
|
183
183
|
//#region src/client/attachments/DropOverlay.tsx
|
|
@@ -320,10 +320,10 @@ window.__ModuleLoader__.load({
|
|
|
320
320
|
document.head.appendChild(tag);
|
|
321
321
|
}
|
|
322
322
|
var ImageLightbox_module_css_default = {
|
|
323
|
-
"close": "IiCsRq_close",
|
|
324
323
|
"mask": "IiCsRq_mask",
|
|
325
|
-
"
|
|
326
|
-
"
|
|
324
|
+
"image": "IiCsRq_image",
|
|
325
|
+
"close": "IiCsRq_close",
|
|
326
|
+
"backdrop": "IiCsRq_backdrop"
|
|
327
327
|
};
|
|
328
328
|
//#endregion
|
|
329
329
|
//#region src/client/attachments/ImageLightbox.tsx
|
|
@@ -388,10 +388,10 @@ window.__ModuleLoader__.load({
|
|
|
388
388
|
document.head.appendChild(tag);
|
|
389
389
|
}
|
|
390
390
|
var MessageImage_module_css_default = {
|
|
391
|
-
"frame": "HNfuSq_frame",
|
|
392
|
-
"loading": "HNfuSq_loading",
|
|
393
391
|
"error": "HNfuSq_error",
|
|
394
|
-
"gallery": "HNfuSq_gallery"
|
|
392
|
+
"gallery": "HNfuSq_gallery",
|
|
393
|
+
"frame": "HNfuSq_frame",
|
|
394
|
+
"loading": "HNfuSq_loading"
|
|
395
395
|
};
|
|
396
396
|
//#endregion
|
|
397
397
|
//#region src/client/attachments/MessageImage.tsx
|
|
@@ -739,99 +739,99 @@ window.__ModuleLoader__.load({
|
|
|
739
739
|
document.head.appendChild(tag);
|
|
740
740
|
}
|
|
741
741
|
var client_module_css_default = {
|
|
742
|
-
"
|
|
743
|
-
"
|
|
744
|
-
"
|
|
745
|
-
"
|
|
746
|
-
"
|
|
747
|
-
"
|
|
742
|
+
"modelCheck": "LU9nbG_modelCheck",
|
|
743
|
+
"questionItemCollapsed": "LU9nbG_questionItemCollapsed",
|
|
744
|
+
"panelError": "LU9nbG_panelError",
|
|
745
|
+
"panelHeaderActions": "LU9nbG_panelHeaderActions",
|
|
746
|
+
"questionItem": "LU9nbG_questionItem",
|
|
747
|
+
"panelRunningClock": "LU9nbG_panelRunningClock",
|
|
748
748
|
"modelSelectEffort": "LU9nbG_modelSelectEffort",
|
|
749
|
+
"selectionButton": "LU9nbG_selectionButton",
|
|
750
|
+
"panelClose": "LU9nbG_panelClose",
|
|
751
|
+
"questionHeader": "LU9nbG_questionHeader",
|
|
752
|
+
"settingsRowText": "LU9nbG_settingsRowText",
|
|
753
|
+
"modelSelectMenu": "LU9nbG_modelSelectMenu",
|
|
749
754
|
"questionDetail": "LU9nbG_questionDetail",
|
|
750
|
-
"reasoningBody": "LU9nbG_reasoningBody",
|
|
751
|
-
"panelRunningDot": "LU9nbG_panelRunningDot",
|
|
752
|
-
"questionBlockActions": "LU9nbG_questionBlockActions",
|
|
753
|
-
"questionItem": "LU9nbG_questionItem",
|
|
754
|
-
"questionOptionText": "LU9nbG_questionOptionText",
|
|
755
|
-
"panelFooter": "LU9nbG_panelFooter",
|
|
756
755
|
"modelOptionSelected": "LU9nbG_modelOptionSelected",
|
|
757
|
-
"
|
|
758
|
-
"
|
|
756
|
+
"panelLookup": "LU9nbG_panelLookup",
|
|
757
|
+
"questionHeaderText": "LU9nbG_questionHeaderText",
|
|
758
|
+
"reasoningSummary": "LU9nbG_reasoningSummary",
|
|
759
|
+
"panelAttachmentRemove": "LU9nbG_panelAttachmentRemove",
|
|
760
|
+
"primary": "LU9nbG_primary",
|
|
761
|
+
"questionToggle": "LU9nbG_questionToggle",
|
|
762
|
+
"settingsRowDesc": "LU9nbG_settingsRowDesc",
|
|
763
|
+
"panelListActions": "LU9nbG_panelListActions",
|
|
764
|
+
"settingsToggle": "LU9nbG_settingsToggle",
|
|
759
765
|
"settingsBringOptionActive": "LU9nbG_settingsBringOptionActive",
|
|
760
|
-
"
|
|
761
|
-
"
|
|
762
|
-
"
|
|
766
|
+
"questionBringButton": "LU9nbG_questionBringButton",
|
|
767
|
+
"modelOptionCopy": "LU9nbG_modelOptionCopy",
|
|
768
|
+
"panelAttachmentRail": "LU9nbG_panelAttachmentRail",
|
|
769
|
+
"modelCellLabel": "LU9nbG_modelCellLabel",
|
|
770
|
+
"modelGroups": "LU9nbG_modelGroups",
|
|
771
|
+
"questionHeaderActions": "LU9nbG_questionHeaderActions",
|
|
772
|
+
"settingsBringMode": "LU9nbG_settingsBringMode",
|
|
773
|
+
"modelSelectTrigger": "LU9nbG_modelSelectTrigger",
|
|
774
|
+
"panelListItemRemove": "LU9nbG_panelListItemRemove",
|
|
775
|
+
"panelEmpty": "LU9nbG_panelEmpty",
|
|
776
|
+
"modelName": "LU9nbG_modelName",
|
|
777
|
+
"questionOption": "LU9nbG_questionOption",
|
|
778
|
+
"questionFab": "LU9nbG_questionFab",
|
|
779
|
+
"panelListItemLabel": "LU9nbG_panelListItemLabel",
|
|
763
780
|
"panelListDeleteAll": "LU9nbG_panelListDeleteAll",
|
|
781
|
+
"modelEmpty": "LU9nbG_modelEmpty",
|
|
782
|
+
"settingsRowTitle": "LU9nbG_settingsRowTitle",
|
|
764
783
|
"panelListItemDot": "LU9nbG_panelListItemDot",
|
|
765
|
-
"panelEmpty": "LU9nbG_panelEmpty",
|
|
766
|
-
"panelListActions": "LU9nbG_panelListActions",
|
|
767
|
-
"questionItemCollapsed": "LU9nbG_questionItemCollapsed",
|
|
768
|
-
"modelCellLabel": "LU9nbG_modelCellLabel",
|
|
769
|
-
"panelDispose": "LU9nbG_panelDispose",
|
|
770
|
-
"questionToggle": "LU9nbG_questionToggle",
|
|
771
|
-
"panelAttachmentRemove": "LU9nbG_panelAttachmentRemove",
|
|
772
|
-
"panelHeaderActions": "LU9nbG_panelHeaderActions",
|
|
773
784
|
"questionFabDot": "LU9nbG_questionFabDot",
|
|
774
|
-
"
|
|
775
|
-
"
|
|
776
|
-
"
|
|
777
|
-
"
|
|
785
|
+
"panelAttachment": "LU9nbG_panelAttachment",
|
|
786
|
+
"panelIconButton": "LU9nbG_panelIconButton",
|
|
787
|
+
"messageAssistant": "LU9nbG_messageAssistant",
|
|
788
|
+
"panelAttachmentText": "LU9nbG_panelAttachmentText",
|
|
778
789
|
"questionOptionLabel": "LU9nbG_questionOptionLabel",
|
|
779
|
-
"
|
|
790
|
+
"modelSelect": "LU9nbG_modelSelect",
|
|
791
|
+
"settingsPromptInput": "LU9nbG_settingsPromptInput",
|
|
792
|
+
"reasoningBody": "LU9nbG_reasoningBody",
|
|
780
793
|
"panelComposer": "LU9nbG_panelComposer",
|
|
781
|
-
"
|
|
782
|
-
"
|
|
783
|
-
"messageUser": "LU9nbG_messageUser",
|
|
784
|
-
"modelGroupTitle": "LU9nbG_modelGroupTitle",
|
|
785
|
-
"modelCell": "LU9nbG_modelCell",
|
|
786
|
-
"modelOption": "LU9nbG_modelOption",
|
|
787
|
-
"settingsBringMode": "LU9nbG_settingsBringMode",
|
|
794
|
+
"modelCellChevron": "LU9nbG_modelCellChevron",
|
|
795
|
+
"settingsSection": "LU9nbG_settingsSection",
|
|
788
796
|
"questionDeleteAll": "LU9nbG_questionDeleteAll",
|
|
789
|
-
"
|
|
797
|
+
"collapsedHandle": "LU9nbG_collapsedHandle",
|
|
798
|
+
"panelListItemRow": "LU9nbG_panelListItemRow",
|
|
790
799
|
"panelTextarea": "LU9nbG_panelTextarea",
|
|
791
|
-
"
|
|
792
|
-
"
|
|
793
|
-
"
|
|
794
|
-
"
|
|
795
|
-
"
|
|
796
|
-
"
|
|
797
|
-
"questionBringButton": "LU9nbG_questionBringButton",
|
|
798
|
-
"modelSelectTrigger": "LU9nbG_modelSelectTrigger",
|
|
800
|
+
"questionBody": "LU9nbG_questionBody",
|
|
801
|
+
"questionBlock": "LU9nbG_questionBlock",
|
|
802
|
+
"modelSelectLabel": "LU9nbG_modelSelectLabel",
|
|
803
|
+
"messageActions": "LU9nbG_messageActions",
|
|
804
|
+
"questionOptionDesc": "LU9nbG_questionOptionDesc",
|
|
805
|
+
"panelFooter": "LU9nbG_panelFooter",
|
|
799
806
|
"panelList": "LU9nbG_panelList",
|
|
807
|
+
"panelDispose": "LU9nbG_panelDispose",
|
|
808
|
+
"modelDescription": "LU9nbG_modelDescription",
|
|
809
|
+
"settingsRow": "LU9nbG_settingsRow",
|
|
800
810
|
"panelResize": "LU9nbG_panelResize",
|
|
811
|
+
"questionOptionText": "LU9nbG_questionOptionText",
|
|
801
812
|
"panelTitle": "LU9nbG_panelTitle",
|
|
802
|
-
"
|
|
803
|
-
"
|
|
804
|
-
"
|
|
805
|
-
"
|
|
813
|
+
"panelHeader": "LU9nbG_panelHeader",
|
|
814
|
+
"modelGroupTitle": "LU9nbG_modelGroupTitle",
|
|
815
|
+
"chevronOpen": "LU9nbG_chevronOpen",
|
|
816
|
+
"panel": "LU9nbG_panel",
|
|
817
|
+
"panelRunning": "LU9nbG_panelRunning",
|
|
818
|
+
"panelRunningDot": "LU9nbG_panelRunningDot",
|
|
819
|
+
"modelCellValue": "LU9nbG_modelCellValue",
|
|
820
|
+
"messageUserText": "LU9nbG_messageUserText",
|
|
806
821
|
"selectionMenu": "LU9nbG_selectionMenu",
|
|
807
|
-
"
|
|
808
|
-
"
|
|
809
|
-
"modelGroup": "LU9nbG_modelGroup",
|
|
810
|
-
"modelOptionCopy": "LU9nbG_modelOptionCopy",
|
|
811
|
-
"questionBlock": "LU9nbG_questionBlock",
|
|
812
|
-
"questionOptionDesc": "LU9nbG_questionOptionDesc",
|
|
813
|
-
"questionHeader": "LU9nbG_questionHeader",
|
|
822
|
+
"panelTranscript": "LU9nbG_panelTranscript",
|
|
823
|
+
"panelListItem": "LU9nbG_panelListItem",
|
|
814
824
|
"questionDelete": "LU9nbG_questionDelete",
|
|
815
|
-
"questionFab": "LU9nbG_questionFab",
|
|
816
|
-
"panelToolbar": "LU9nbG_panelToolbar",
|
|
817
|
-
"primary": "LU9nbG_primary",
|
|
818
|
-
"panelAttachmentRail": "LU9nbG_panelAttachmentRail",
|
|
819
|
-
"panelAttachmentText": "LU9nbG_panelAttachmentText",
|
|
820
|
-
"settingsRowDesc": "LU9nbG_settingsRowDesc",
|
|
821
|
-
"questionBody": "LU9nbG_questionBody",
|
|
822
|
-
"panelRunningClock": "LU9nbG_panelRunningClock",
|
|
823
|
-
"chevronOpen": "LU9nbG_chevronOpen",
|
|
824
825
|
"panelListItemActive": "LU9nbG_panelListItemActive",
|
|
825
|
-
"
|
|
826
|
-
"
|
|
827
|
-
"
|
|
828
|
-
"
|
|
829
|
-
"
|
|
830
|
-
"
|
|
831
|
-
"
|
|
832
|
-
"
|
|
833
|
-
"
|
|
834
|
-
"settingsToggle": "LU9nbG_settingsToggle"
|
|
826
|
+
"panelToolbar": "LU9nbG_panelToolbar",
|
|
827
|
+
"questionBlockActions": "LU9nbG_questionBlockActions",
|
|
828
|
+
"messageUser": "LU9nbG_messageUser",
|
|
829
|
+
"modelCell": "LU9nbG_modelCell",
|
|
830
|
+
"modelGroup": "LU9nbG_modelGroup",
|
|
831
|
+
"modelOption": "LU9nbG_modelOption",
|
|
832
|
+
"settingsBringOption": "LU9nbG_settingsBringOption",
|
|
833
|
+
"messageInsertButton": "LU9nbG_messageInsertButton",
|
|
834
|
+
"panelRunningPulse": "LU9nbG_panelRunningPulse"
|
|
835
835
|
};
|
|
836
836
|
//#endregion
|
|
837
837
|
//#region \0dsh-css:D:\code\DSH-side-chat\src\client\layout.css.mjs
|
package/package.json
CHANGED
|
@@ -1,9 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-side-chat-plus",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "侧边聊天 Plus (Side chat Plus) — DSH web plugin: select text in a conversation and ask it in a per-session side chat (hidden ordinary session, own right-side panel, inherits model/effort/permissions, lookup toggle).",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/heartmove/dsh-side-chat.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/heartmove/dsh-side-chat#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/heartmove/dsh-side-chat/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"dsh",
|
|
17
|
+
"deepseek",
|
|
18
|
+
"plugin",
|
|
19
|
+
"side-chat",
|
|
20
|
+
"sidechat"
|
|
21
|
+
],
|
|
7
22
|
"main": "lib/index.js",
|
|
8
23
|
"types": "lib/types/index.d.ts",
|
|
9
24
|
"exports": {
|