qt-ui-kit 1.0.25 → 1.0.26
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/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -14873,9 +14873,9 @@ function formatCustomRelative(date) {
|
|
|
14873
14873
|
return `Tomorrow @ ${format(date, "h:mm a")}`;
|
|
14874
14874
|
}
|
|
14875
14875
|
if (isSameWeek(date, now, { weekStartsOn: 1 })) {
|
|
14876
|
-
return `${format(date, "
|
|
14876
|
+
return `${format(date, "EEE")} @ ${format(date, "h:mm a")}`;
|
|
14877
14877
|
}
|
|
14878
|
-
return `${format(date, "
|
|
14878
|
+
return `${format(date, "EEE, do MMMM")} @ ${format(date, "h:mm a")}`;
|
|
14879
14879
|
}
|
|
14880
14880
|
|
|
14881
14881
|
// src/components/molecules/text_content/sender_source_row/sender_source_row.tsx
|