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.js
CHANGED
|
@@ -14900,9 +14900,9 @@ function formatCustomRelative(date) {
|
|
|
14900
14900
|
return `Tomorrow @ ${format(date, "h:mm a")}`;
|
|
14901
14901
|
}
|
|
14902
14902
|
if (isSameWeek(date, now, { weekStartsOn: 1 })) {
|
|
14903
|
-
return `${format(date, "
|
|
14903
|
+
return `${format(date, "EEE")} @ ${format(date, "h:mm a")}`;
|
|
14904
14904
|
}
|
|
14905
|
-
return `${format(date, "
|
|
14905
|
+
return `${format(date, "EEE, do MMMM")} @ ${format(date, "h:mm a")}`;
|
|
14906
14906
|
}
|
|
14907
14907
|
|
|
14908
14908
|
// src/components/molecules/text_content/sender_source_row/sender_source_row.tsx
|