@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/cordis.patch.yml CHANGED
@@ -9,4 +9,4 @@
9
9
  # /plugins/<id>/client.js) load in the web GUI.
10
10
  - insert:
11
11
  - id: group-chat
12
- name: @roaming-ai/dsh-group-chat
12
+ name: "@roaming-ai/dsh-group-chat"
package/lib/client.js CHANGED
@@ -1,5 +1,5 @@
1
1
  window.__ModuleLoader__.load({
2
- id: "dsh-group-chat",
2
+ id: "@roaming-ai/dsh-group-chat",
3
3
  factory: (require) => {
4
4
  var module = { exports: {} };
5
5
  var exports = module.exports;
@@ -285,7 +285,7 @@ window.__ModuleLoader__.load({
285
285
  if (typeof document === "undefined") return;
286
286
  if (document.querySelector("style[data-plugin-css=" + JSON.stringify(TAG_ID) + "]") === null) {
287
287
  const tag = document.createElement("style");
288
- tag.dataset.plugin = "dsh-group-chat";
288
+ tag.dataset.plugin = "@roaming-ai/dsh-group-chat";
289
289
  tag.dataset.pluginCss = TAG_ID;
290
290
  tag.textContent = CSS;
291
291
  document.head.appendChild(tag);