@convokitapp/vue-ui 0.4.0 → 0.4.1
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 +6 -0
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.1
|
|
4
|
+
|
|
5
|
+
- Describe a confirmed outgoing message without readers as `Sent` instead of
|
|
6
|
+
`Delivered` in the default receipt text and status icon label. ConvoKit does
|
|
7
|
+
not report recipient delivery; pending and read states are unchanged.
|
|
8
|
+
|
|
3
9
|
## 0.4.0
|
|
4
10
|
|
|
5
11
|
- Reconcile private inbox invalidations automatically, retaining filters and
|
package/dist/index.cjs
CHANGED
|
@@ -951,13 +951,13 @@ var MessageListView = (0, import_vue5.defineComponent)({
|
|
|
951
951
|
...mediaNodes,
|
|
952
952
|
(0, import_vue5.h)("span", { class: "ckui-message-time" }, [
|
|
953
953
|
isPending ? "Sending\u2026" : props.formatTime(message.createdAt),
|
|
954
|
-
isCurrentUser && !isPending ? readerIds.size > 0 ? (0, import_vue5.h)(import_vue4.CheckCheck, { size: 14, "aria-label": "Read" }) : (0, import_vue5.h)(import_vue4.Check, { size: 14, "aria-label": "
|
|
954
|
+
isCurrentUser && !isPending ? readerIds.size > 0 ? (0, import_vue5.h)(import_vue4.CheckCheck, { size: 14, "aria-label": "Read" }) : (0, import_vue5.h)(import_vue4.Check, { size: 14, "aria-label": "Sent" }) : null
|
|
955
955
|
])
|
|
956
956
|
]),
|
|
957
957
|
isCurrentUser && !isPending ? slots["read-receipt"]?.(receiptSlotProps) ?? (0, import_vue5.h)("div", {
|
|
958
958
|
class: partClass("receipt", currentAppearance, "ckui-read-receipt"),
|
|
959
959
|
style: partStyle("receipt", currentAppearance)
|
|
960
|
-
}, readerIds.size > 0 ? `Read by ${readerIds.size}` : "
|
|
960
|
+
}, readerIds.size > 0 ? `Read by ${readerIds.size}` : "Sent") : null
|
|
961
961
|
])
|
|
962
962
|
]);
|
|
963
963
|
};
|