@roaming-ai/dsh-group-chat 0.2.0 → 0.2.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@roaming-ai/dsh-group-chat",
3
3
  "description": "DSH 模型群聊:多模型角色群组对话面板。角色绑定不同 provider/model,群内共享对话记录;设置页支持启用/停用。",
4
- "version": "0.2.0",
4
+ "version": "0.2.2",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": "^22.19.0 || >=24.0.0"
@@ -309,7 +309,7 @@ export function injectStyles(): void {
309
309
  if (typeof document === 'undefined') return
310
310
  if (document.querySelector('style[data-plugin-css=' + JSON.stringify(TAG_ID) + ']') === null) {
311
311
  const tag = document.createElement('style')
312
- tag.dataset.plugin = 'dsh-group-chat'
312
+ tag.dataset.plugin = '@roaming-ai/dsh-group-chat'
313
313
  tag.dataset.pluginCss = TAG_ID
314
314
  tag.textContent = CSS
315
315
  document.head.appendChild(tag)