@ai-matrx/messaging 0.10.4 → 0.11.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 +64 -0
- package/README.md +33 -0
- package/dist/index.cjs +102 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +101 -1
- package/dist/index.d.ts +101 -1
- package/dist/index.js +102 -13
- package/dist/index.js.map +1 -1
- package/dist/react.cjs +149 -16
- package/dist/react.cjs.map +1 -1
- package/dist/react.d.cts +126 -1
- package/dist/react.d.ts +126 -1
- package/dist/react.js +149 -16
- package/dist/react.js.map +1 -1
- package/dist/styles.css +7 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -675,6 +675,13 @@
|
|
|
675
675
|
|
|
676
676
|
/* ---------- Search + new-conversation ---------- */
|
|
677
677
|
|
|
678
|
+
/* THE ARCHIVED-ITEMS LAW's reveal, between the search row and the list. */
|
|
679
|
+
.mx-msg__list-archive {
|
|
680
|
+
display: flex;
|
|
681
|
+
justify-content: flex-start;
|
|
682
|
+
padding: 0 12px 8px;
|
|
683
|
+
}
|
|
684
|
+
|
|
678
685
|
.mx-msg__search {
|
|
679
686
|
padding: 8px 12px;
|
|
680
687
|
border-bottom: 1px solid var(--mx-msg-border);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-matrx/messaging",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.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",
|