@ai-matrx/messaging 0.9.0 → 0.10.0
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/CHANGELOG.md +40 -0
- package/README.md +23 -4
- package/dist/index.cjs +35 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +66 -34
- package/dist/index.d.ts +66 -34
- package/dist/index.js +35 -22
- package/dist/index.js.map +1 -1
- package/dist/react.cjs +75 -33
- package/dist/react.cjs.map +1 -1
- package/dist/react.d.cts +81 -35
- package/dist/react.d.ts +81 -35
- package/dist/react.js +75 -33
- package/dist/react.js.map +1 -1
- package/dist/styles.css +10 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -657,6 +657,16 @@
|
|
|
657
657
|
overflow-y: auto;
|
|
658
658
|
}
|
|
659
659
|
|
|
660
|
+
/* Named while the first chunk is still in flight — the one moment there is
|
|
661
|
+
genuinely nothing to show, so it says WHICH job is running instead of
|
|
662
|
+
miming an answer that has not started. */
|
|
663
|
+
.mx-msg__ai-output-label {
|
|
664
|
+
display: block;
|
|
665
|
+
margin-bottom: 6px;
|
|
666
|
+
color: var(--mx-msg-text-muted);
|
|
667
|
+
font-size: var(--mx-msg-font-size-sm);
|
|
668
|
+
}
|
|
669
|
+
|
|
660
670
|
/* ---------- Search + new-conversation ---------- */
|
|
661
671
|
|
|
662
672
|
.mx-msg__search {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-matrx/messaging",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Enterprise, AI-native in-app messaging for Matrx clients: direct/group/org conversations with atomic direct creation, an outbox that never loses a typed message, optimistic send with echo-safe reconciliation, Matrx entity references, actionable messages with idempotent receipts, agents as participants, and a drop-in polished React UI — all realtime on @ai-matrx/realtime.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|