@ai-matrx/messaging 0.10.2 → 0.10.4
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 +28 -0
- package/dist/index.cjs +12 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +12 -1
- package/dist/index.js.map +1 -1
- package/dist/react.cjs +13 -3
- package/dist/react.cjs.map +1 -1
- package/dist/react.js +13 -3
- package/dist/react.js.map +1 -1
- package/dist/styles.css +11 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -346,6 +346,12 @@
|
|
|
346
346
|
color: var(--mx-msg-danger);
|
|
347
347
|
}
|
|
348
348
|
|
|
349
|
+
.mx-msg__message-action {
|
|
350
|
+
min-width: 24px;
|
|
351
|
+
min-height: 24px;
|
|
352
|
+
font-size: 13px;
|
|
353
|
+
}
|
|
354
|
+
|
|
349
355
|
.mx-msg__reply-quote {
|
|
350
356
|
display: block;
|
|
351
357
|
border-left: 2px solid currentColor;
|
|
@@ -737,6 +743,11 @@
|
|
|
737
743
|
/* On a phone the two panes become ONE pane that swaps — a 340px sidebar beside
|
|
738
744
|
a thread on a 390px screen is the layout every chat app gets wrong once. */
|
|
739
745
|
@media (max-width: 768px) {
|
|
746
|
+
.mx-msg__message-action {
|
|
747
|
+
min-width: var(--mx-msg-touch-target);
|
|
748
|
+
min-height: var(--mx-msg-touch-target);
|
|
749
|
+
}
|
|
750
|
+
|
|
740
751
|
.mx-msg__list,
|
|
741
752
|
.mx-msg__thread {
|
|
742
753
|
width: 100%;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-matrx/messaging",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.4",
|
|
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",
|