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 CHANGED
@@ -10,6 +10,32 @@ declare enum IntegrationService {
10
10
  MSCAL = "microsoft_calendar",
11
11
  AJIRA = "atlassian_jira"
12
12
  }
13
+ declare enum BaseIconName {
14
+ SEARCH = "search",
15
+ EXTERNAL_LINK = "external_link",
16
+ THUMBS_DOWN = "thumbs_down",
17
+ THUMBS_UP = "thumbs_up",
18
+ THUMBS_DOWN_SOLID = "thumbs_down_solid",
19
+ THUMBS_UP_SOLID = "thumbs_up_solid",
20
+ ADD = "add",
21
+ GEAR = "gear",
22
+ LOGOUT = "logout",
23
+ CHECKBOX = "checkbox",
24
+ QUEUE = "queue",
25
+ MAIL = "mail",
26
+ FIRE = "fire",
27
+ ALERT = "alert",
28
+ CHECK = "check",
29
+ LEFT_ARROW = "left_arrow",
30
+ RIGHT_ARROW = "right_arrow",
31
+ EXPAND = "expand"
32
+ }
33
+ declare enum ColorVariants {
34
+ RED = "#FF7E71",
35
+ YELLOW = "#FFD481",
36
+ GREEN = "#E8FE99",
37
+ OUTLINED = "none"
38
+ }
13
39
  declare enum EventType {
14
40
  EMAIL = "email",
15
41
  MESSAGE = "message",
@@ -48,4 +74,6 @@ type EventData = {
48
74
  };
49
75
  declare function EventCard({ eventType, eventData, groupUrgency, groupUrgencyText, groupSummary, }: Props): react_jsx_runtime.JSX.Element;
50
76
 
51
- export { EventCard, NavBar, PreviewCard };
77
+ type IconSize = 16 | 20 | 24 | 36;
78
+
79
+ export { BaseIconName, ColorVariants, EventCard, EventType, type IconSize, IntegrationService, NavBar, PreviewCard, UrgencyLevel };
package/dist/index.d.ts CHANGED
@@ -10,6 +10,32 @@ declare enum IntegrationService {
10
10
  MSCAL = "microsoft_calendar",
11
11
  AJIRA = "atlassian_jira"
12
12
  }
13
+ declare enum BaseIconName {
14
+ SEARCH = "search",
15
+ EXTERNAL_LINK = "external_link",
16
+ THUMBS_DOWN = "thumbs_down",
17
+ THUMBS_UP = "thumbs_up",
18
+ THUMBS_DOWN_SOLID = "thumbs_down_solid",
19
+ THUMBS_UP_SOLID = "thumbs_up_solid",
20
+ ADD = "add",
21
+ GEAR = "gear",
22
+ LOGOUT = "logout",
23
+ CHECKBOX = "checkbox",
24
+ QUEUE = "queue",
25
+ MAIL = "mail",
26
+ FIRE = "fire",
27
+ ALERT = "alert",
28
+ CHECK = "check",
29
+ LEFT_ARROW = "left_arrow",
30
+ RIGHT_ARROW = "right_arrow",
31
+ EXPAND = "expand"
32
+ }
33
+ declare enum ColorVariants {
34
+ RED = "#FF7E71",
35
+ YELLOW = "#FFD481",
36
+ GREEN = "#E8FE99",
37
+ OUTLINED = "none"
38
+ }
13
39
  declare enum EventType {
14
40
  EMAIL = "email",
15
41
  MESSAGE = "message",
@@ -48,4 +74,6 @@ type EventData = {
48
74
  };
49
75
  declare function EventCard({ eventType, eventData, groupUrgency, groupUrgencyText, groupSummary, }: Props): react_jsx_runtime.JSX.Element;
50
76
 
51
- export { EventCard, NavBar, PreviewCard };
77
+ type IconSize = 16 | 20 | 24 | 36;
78
+
79
+ export { BaseIconName, ColorVariants, EventCard, EventType, type IconSize, IntegrationService, NavBar, PreviewCard, UrgencyLevel };
package/dist/index.js CHANGED
@@ -30,15 +30,72 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
30
30
  // src/index.ts
31
31
  var index_exports = {};
32
32
  __export(index_exports, {
33
+ BaseIconName: () => BaseIconName,
34
+ ColorVariants: () => ColorVariants,
33
35
  EventCard: () => EventCard,
36
+ EventType: () => EventType,
37
+ IntegrationService: () => IntegrationService,
34
38
  NavBar: () => NavBar,
35
- PreviewCard: () => PreviewCard
39
+ PreviewCard: () => PreviewCard,
40
+ UrgencyLevel: () => UrgencyLevel
36
41
  });
37
42
  module.exports = __toCommonJS(index_exports);
38
43
 
39
44
  // src/components/organisms/preview_card/preview_card.tsx
40
45
  var import_react = require("react");
41
46
 
47
+ // src/types/global.ts
48
+ var IntegrationService = /* @__PURE__ */ ((IntegrationService5) => {
49
+ IntegrationService5["SLACK"] = "slack";
50
+ IntegrationService5["GMAIL"] = "google_mail";
51
+ IntegrationService5["GCAL"] = "google_calendar";
52
+ IntegrationService5["MSTEAMS"] = "microsoft_teams";
53
+ IntegrationService5["MSMAIL"] = "microsoft_mail";
54
+ IntegrationService5["MSCAL"] = "microsoft_calendar";
55
+ IntegrationService5["AJIRA"] = "atlassian_jira";
56
+ return IntegrationService5;
57
+ })(IntegrationService || {});
58
+ var BaseIconName = /* @__PURE__ */ ((BaseIconName2) => {
59
+ BaseIconName2["SEARCH"] = "search";
60
+ BaseIconName2["EXTERNAL_LINK"] = "external_link";
61
+ BaseIconName2["THUMBS_DOWN"] = "thumbs_down";
62
+ BaseIconName2["THUMBS_UP"] = "thumbs_up";
63
+ BaseIconName2["THUMBS_DOWN_SOLID"] = "thumbs_down_solid";
64
+ BaseIconName2["THUMBS_UP_SOLID"] = "thumbs_up_solid";
65
+ BaseIconName2["ADD"] = "add";
66
+ BaseIconName2["GEAR"] = "gear";
67
+ BaseIconName2["LOGOUT"] = "logout";
68
+ BaseIconName2["CHECKBOX"] = "checkbox";
69
+ BaseIconName2["QUEUE"] = "queue";
70
+ BaseIconName2["MAIL"] = "mail";
71
+ BaseIconName2["FIRE"] = "fire";
72
+ BaseIconName2["ALERT"] = "alert";
73
+ BaseIconName2["CHECK"] = "check";
74
+ BaseIconName2["LEFT_ARROW"] = "left_arrow";
75
+ BaseIconName2["RIGHT_ARROW"] = "right_arrow";
76
+ BaseIconName2["EXPAND"] = "expand";
77
+ return BaseIconName2;
78
+ })(BaseIconName || {});
79
+ var ColorVariants = /* @__PURE__ */ ((ColorVariants5) => {
80
+ ColorVariants5["RED"] = "#FF7E71";
81
+ ColorVariants5["YELLOW"] = "#FFD481";
82
+ ColorVariants5["GREEN"] = "#E8FE99";
83
+ ColorVariants5["OUTLINED"] = "none";
84
+ return ColorVariants5;
85
+ })(ColorVariants || {});
86
+ var EventType = /* @__PURE__ */ ((EventType2) => {
87
+ EventType2["EMAIL"] = "email";
88
+ EventType2["MESSAGE"] = "message";
89
+ EventType2["TICKET"] = "ticket";
90
+ return EventType2;
91
+ })(EventType || {});
92
+ var UrgencyLevel = /* @__PURE__ */ ((UrgencyLevel4) => {
93
+ UrgencyLevel4["HIGH"] = "high";
94
+ UrgencyLevel4["MEDIUM"] = "medium";
95
+ UrgencyLevel4["LOW"] = "low";
96
+ return UrgencyLevel4;
97
+ })(UrgencyLevel || {});
98
+
42
99
  // src/components/atoms/icons/brand_icons/brand_icon.tsx
43
100
  var import_tailwind_merge = require("tailwind-merge");
44
101
  var import_clsx = __toESM(require("clsx"));
@@ -4611,8 +4668,13 @@ function EventCard({
4611
4668
  }
4612
4669
  // Annotate the CommonJS export names for ESM import in node:
4613
4670
  0 && (module.exports = {
4671
+ BaseIconName,
4672
+ ColorVariants,
4614
4673
  EventCard,
4674
+ EventType,
4675
+ IntegrationService,
4615
4676
  NavBar,
4616
- PreviewCard
4677
+ PreviewCard,
4678
+ UrgencyLevel
4617
4679
  });
4618
4680
  //# sourceMappingURL=index.js.map