qt-ui-kit 1.0.23 → 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.d.mts +93 -7
- package/dist/index.d.ts +93 -7
- package/dist/index.js +12 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -11214,6 +11214,7 @@ var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
|
11214
11214
|
EventType2["EMAIL"] = "email";
|
|
11215
11215
|
EventType2["MESSAGE"] = "message";
|
|
11216
11216
|
EventType2["TICKET"] = "ticket";
|
|
11217
|
+
EventType2["CALENDAR"] = "calendar";
|
|
11217
11218
|
return EventType2;
|
|
11218
11219
|
})(EventType || {});
|
|
11219
11220
|
var UrgencyLevel = /* @__PURE__ */ ((UrgencyLevel4) => {
|
|
@@ -14872,9 +14873,9 @@ function formatCustomRelative(date) {
|
|
|
14872
14873
|
return `Tomorrow @ ${format(date, "h:mm a")}`;
|
|
14873
14874
|
}
|
|
14874
14875
|
if (isSameWeek(date, now, { weekStartsOn: 1 })) {
|
|
14875
|
-
return `${format(date, "
|
|
14876
|
+
return `${format(date, "EEE")} @ ${format(date, "h:mm a")}`;
|
|
14876
14877
|
}
|
|
14877
|
-
return `${format(date, "
|
|
14878
|
+
return `${format(date, "EEE, do MMMM")} @ ${format(date, "h:mm a")}`;
|
|
14878
14879
|
}
|
|
14879
14880
|
|
|
14880
14881
|
// src/components/molecules/text_content/sender_source_row/sender_source_row.tsx
|
|
@@ -16372,6 +16373,13 @@ function SearchBar() {
|
|
|
16372
16373
|
] });
|
|
16373
16374
|
}
|
|
16374
16375
|
|
|
16376
|
+
// src/types/events.ts
|
|
16377
|
+
var EventState = /* @__PURE__ */ ((EventState2) => {
|
|
16378
|
+
EventState2["NEW"] = "new";
|
|
16379
|
+
EventState2["READ"] = "read";
|
|
16380
|
+
return EventState2;
|
|
16381
|
+
})(EventState || {});
|
|
16382
|
+
|
|
16375
16383
|
// src/util/mockdata.ts
|
|
16376
16384
|
var fakeMessages = [
|
|
16377
16385
|
{
|
|
@@ -16469,6 +16477,7 @@ export {
|
|
|
16469
16477
|
ColorVariants,
|
|
16470
16478
|
EmailBody,
|
|
16471
16479
|
EventCard,
|
|
16480
|
+
EventState,
|
|
16472
16481
|
EventType,
|
|
16473
16482
|
NavBar as FilterBar,
|
|
16474
16483
|
IntegrationService,
|