qt-ui-kit 1.0.120 → 1.0.121
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 +23 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -11389,17 +11389,17 @@ var MoreFilter = /* @__PURE__ */ ((MoreFilter3) => {
|
|
|
11389
11389
|
MoreFilter3["MORE"] = "more";
|
|
11390
11390
|
return MoreFilter3;
|
|
11391
11391
|
})(MoreFilter || {});
|
|
11392
|
-
var IntegrationService = /* @__PURE__ */ ((
|
|
11393
|
-
|
|
11394
|
-
|
|
11395
|
-
|
|
11396
|
-
|
|
11397
|
-
|
|
11398
|
-
|
|
11399
|
-
|
|
11400
|
-
|
|
11401
|
-
|
|
11402
|
-
return
|
|
11392
|
+
var IntegrationService = /* @__PURE__ */ ((IntegrationService3) => {
|
|
11393
|
+
IntegrationService3["SLACK"] = "slack";
|
|
11394
|
+
IntegrationService3["GMAIL"] = "google_mail";
|
|
11395
|
+
IntegrationService3["GCAL"] = "google_calendar";
|
|
11396
|
+
IntegrationService3["MSTEAMS"] = "microsoft_teams";
|
|
11397
|
+
IntegrationService3["MSMAIL"] = "microsoft_mail";
|
|
11398
|
+
IntegrationService3["MSCAL"] = "microsoft_calendar";
|
|
11399
|
+
IntegrationService3["AJIRA"] = "atlassian_jira";
|
|
11400
|
+
IntegrationService3["CLKUP"] = "clickup";
|
|
11401
|
+
IntegrationService3["ASANA"] = "asana";
|
|
11402
|
+
return IntegrationService3;
|
|
11403
11403
|
})(IntegrationService || {});
|
|
11404
11404
|
var BaseIconName = /* @__PURE__ */ ((BaseIconName2) => {
|
|
11405
11405
|
BaseIconName2["SEARCH"] = "search";
|
|
@@ -11424,12 +11424,12 @@ var BaseIconName = /* @__PURE__ */ ((BaseIconName2) => {
|
|
|
11424
11424
|
BaseIconName2["NOT_DONE"] = "not_done";
|
|
11425
11425
|
return BaseIconName2;
|
|
11426
11426
|
})(BaseIconName || {});
|
|
11427
|
-
var ColorVariants = /* @__PURE__ */ ((
|
|
11428
|
-
|
|
11429
|
-
|
|
11430
|
-
|
|
11431
|
-
|
|
11432
|
-
return
|
|
11427
|
+
var ColorVariants = /* @__PURE__ */ ((ColorVariants3) => {
|
|
11428
|
+
ColorVariants3["RED"] = "#FF7E71";
|
|
11429
|
+
ColorVariants3["YELLOW"] = "#FFD481";
|
|
11430
|
+
ColorVariants3["GREEN"] = "#E8FE99";
|
|
11431
|
+
ColorVariants3["OUTLINED"] = "none";
|
|
11432
|
+
return ColorVariants3;
|
|
11433
11433
|
})(ColorVariants || {});
|
|
11434
11434
|
var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
11435
11435
|
EventType2["EMAIL"] = "email";
|
|
@@ -16864,7 +16864,12 @@ function EmailBody({
|
|
|
16864
16864
|
<body>${safeText}</body>
|
|
16865
16865
|
</html>`,
|
|
16866
16866
|
sandbox: "allow-popups",
|
|
16867
|
-
style: {
|
|
16867
|
+
style: {
|
|
16868
|
+
border: 0,
|
|
16869
|
+
width: "100%",
|
|
16870
|
+
height: "500px",
|
|
16871
|
+
display: "block"
|
|
16872
|
+
},
|
|
16868
16873
|
title: "Email Content"
|
|
16869
16874
|
}
|
|
16870
16875
|
) })
|