qt-ui-kit 1.0.8 → 1.0.9
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 +29 -1
- package/dist/index.d.ts +29 -1
- package/dist/index.js +64 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +58 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,58 @@
|
|
|
1
1
|
// src/components/organisms/preview_card/preview_card.tsx
|
|
2
2
|
import { useState } from "react";
|
|
3
3
|
|
|
4
|
+
// src/types/global.ts
|
|
5
|
+
var IntegrationService = /* @__PURE__ */ ((IntegrationService5) => {
|
|
6
|
+
IntegrationService5["SLACK"] = "slack";
|
|
7
|
+
IntegrationService5["GMAIL"] = "google_mail";
|
|
8
|
+
IntegrationService5["GCAL"] = "google_calendar";
|
|
9
|
+
IntegrationService5["MSTEAMS"] = "microsoft_teams";
|
|
10
|
+
IntegrationService5["MSMAIL"] = "microsoft_mail";
|
|
11
|
+
IntegrationService5["MSCAL"] = "microsoft_calendar";
|
|
12
|
+
IntegrationService5["AJIRA"] = "atlassian_jira";
|
|
13
|
+
return IntegrationService5;
|
|
14
|
+
})(IntegrationService || {});
|
|
15
|
+
var BaseIconName = /* @__PURE__ */ ((BaseIconName2) => {
|
|
16
|
+
BaseIconName2["SEARCH"] = "search";
|
|
17
|
+
BaseIconName2["EXTERNAL_LINK"] = "external_link";
|
|
18
|
+
BaseIconName2["THUMBS_DOWN"] = "thumbs_down";
|
|
19
|
+
BaseIconName2["THUMBS_UP"] = "thumbs_up";
|
|
20
|
+
BaseIconName2["THUMBS_DOWN_SOLID"] = "thumbs_down_solid";
|
|
21
|
+
BaseIconName2["THUMBS_UP_SOLID"] = "thumbs_up_solid";
|
|
22
|
+
BaseIconName2["ADD"] = "add";
|
|
23
|
+
BaseIconName2["GEAR"] = "gear";
|
|
24
|
+
BaseIconName2["LOGOUT"] = "logout";
|
|
25
|
+
BaseIconName2["CHECKBOX"] = "checkbox";
|
|
26
|
+
BaseIconName2["QUEUE"] = "queue";
|
|
27
|
+
BaseIconName2["MAIL"] = "mail";
|
|
28
|
+
BaseIconName2["FIRE"] = "fire";
|
|
29
|
+
BaseIconName2["ALERT"] = "alert";
|
|
30
|
+
BaseIconName2["CHECK"] = "check";
|
|
31
|
+
BaseIconName2["LEFT_ARROW"] = "left_arrow";
|
|
32
|
+
BaseIconName2["RIGHT_ARROW"] = "right_arrow";
|
|
33
|
+
BaseIconName2["EXPAND"] = "expand";
|
|
34
|
+
return BaseIconName2;
|
|
35
|
+
})(BaseIconName || {});
|
|
36
|
+
var ColorVariants = /* @__PURE__ */ ((ColorVariants5) => {
|
|
37
|
+
ColorVariants5["RED"] = "#FF7E71";
|
|
38
|
+
ColorVariants5["YELLOW"] = "#FFD481";
|
|
39
|
+
ColorVariants5["GREEN"] = "#E8FE99";
|
|
40
|
+
ColorVariants5["OUTLINED"] = "none";
|
|
41
|
+
return ColorVariants5;
|
|
42
|
+
})(ColorVariants || {});
|
|
43
|
+
var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
44
|
+
EventType2["EMAIL"] = "email";
|
|
45
|
+
EventType2["MESSAGE"] = "message";
|
|
46
|
+
EventType2["TICKET"] = "ticket";
|
|
47
|
+
return EventType2;
|
|
48
|
+
})(EventType || {});
|
|
49
|
+
var UrgencyLevel = /* @__PURE__ */ ((UrgencyLevel4) => {
|
|
50
|
+
UrgencyLevel4["HIGH"] = "high";
|
|
51
|
+
UrgencyLevel4["MEDIUM"] = "medium";
|
|
52
|
+
UrgencyLevel4["LOW"] = "low";
|
|
53
|
+
return UrgencyLevel4;
|
|
54
|
+
})(UrgencyLevel || {});
|
|
55
|
+
|
|
4
56
|
// src/components/atoms/icons/brand_icons/brand_icon.tsx
|
|
5
57
|
import { twMerge } from "tailwind-merge";
|
|
6
58
|
import clsx from "clsx";
|
|
@@ -4572,8 +4624,13 @@ function EventCard({
|
|
|
4572
4624
|
);
|
|
4573
4625
|
}
|
|
4574
4626
|
export {
|
|
4627
|
+
BaseIconName,
|
|
4628
|
+
ColorVariants,
|
|
4575
4629
|
EventCard,
|
|
4630
|
+
EventType,
|
|
4631
|
+
IntegrationService,
|
|
4576
4632
|
NavBar,
|
|
4577
|
-
PreviewCard
|
|
4633
|
+
PreviewCard,
|
|
4634
|
+
UrgencyLevel
|
|
4578
4635
|
};
|
|
4579
4636
|
//# sourceMappingURL=index.mjs.map
|