2 Commits

Author SHA1 Message Date
maaz519 804754ea42 fix(messenger): SDK 0.1.11 — composer stops stretching send/attach buttons
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-25 17:22:27 +05:30
maaz519 43d803d73f fix(messenger): SDK 0.1.10 — readable code chips, no raw markers in previews
Picks up the code-chip contrast fix (inline code was invisible on your own
bubbles) and stripMarkup(). Also applies stripMarkup to the notification toast,
which had the same problem — a formatted message toasted as "~crazy~".

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-25 17:07:15 +05:30
3 changed files with 8 additions and 7 deletions
+4 -4
View File
@@ -12,7 +12,7 @@
"@huggingface/transformers": "^4.2.0",
"@imgly/background-removal": "^1.7.0",
"@insignia/iios-kernel-client": "^0.1.4",
"@insignia/iios-messaging-ui": "^0.1.9",
"@insignia/iios-messaging-ui": "^0.1.11",
"@photo-gallery/sdk": "file:./vendor/photo-gallery-sdk",
"@tensorflow-models/coco-ssd": "^2.2.3",
"@tensorflow/tfjs": "^4.22.0",
@@ -1087,9 +1087,9 @@
}
},
"node_modules/@insignia/iios-messaging-ui": {
"version": "0.1.9",
"resolved": "https://git.lynkedup.cloud/api/packages/insignia/npm/%40insignia%2Fiios-messaging-ui/-/0.1.9/iios-messaging-ui-0.1.9.tgz",
"integrity": "sha512-9kHCoYHkz1rsqJGI9l1JLQOEickUE7ujuEihM0Wx+TYowir25WTN+j5ukf04Tse3ZmyMEtgd2BNE1zmKgNGD6Q==",
"version": "0.1.11",
"resolved": "https://git.lynkedup.cloud/api/packages/insignia/npm/%40insignia%2Fiios-messaging-ui/-/0.1.11/iios-messaging-ui-0.1.11.tgz",
"integrity": "sha512-S49fXgEK/sp97R49S7XSI0+Pjpy5V+nxPtOdLQOxXeGks/5ao4qvc89cI0GANCSjeCL+QmXspDVY0s5g2OxzNA==",
"peerDependencies": {
"@insignia/iios-kernel-client": "*",
"react": ">=18",
+1 -1
View File
@@ -14,7 +14,7 @@
"@huggingface/transformers": "^4.2.0",
"@imgly/background-removal": "^1.7.0",
"@insignia/iios-kernel-client": "^0.1.4",
"@insignia/iios-messaging-ui": "^0.1.9",
"@insignia/iios-messaging-ui": "^0.1.11",
"@photo-gallery/sdk": "file:./vendor/photo-gallery-sdk",
"@tensorflow-models/coco-ssd": "^2.2.3",
"@tensorflow/tfjs": "^4.22.0",
@@ -7,7 +7,7 @@
import { useEffect, useMemo, useRef } from "react";
import { useAppShell, useAuth } from "@abe-kap/appshell-sdk/react";
import type { MessagingAdapter } from "@insignia/iios-messaging-ui";
import { stripMarkup, type MessagingAdapter } from "@insignia/iios-messaging-ui";
import { isShellConfigured } from "@/lib/appshell";
import { useRealtime } from "@/lib/realtime";
import { CrmMessagingAdapter, type DataDoor } from "@/lib/crm-messaging-adapter";
@@ -39,7 +39,8 @@ export function NotificationCenter({ active, onNavigate }: { active: string; onN
toast.push({
tone: "info",
title: "New message",
desc: message.text?.slice(0, 90) || "You have a new message",
// Toasts are plain text, so drop the formatting markers rather than show "~crazy~".
desc: (message.text ? stripMarkup(message.text).slice(0, 90) : "") || "You have a new message",
onClick: () => onNavigate("messenger", threadId),
});
});