strapi-plugin-magic-mail 3.0.1 → 3.0.2
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.0.2](https://github.com/Schero94/Magic-Mail/compare/v3.0.1...v3.0.2) (2026-07-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **admin:** make Test Mode option title and description readable ([ccb605c](https://github.com/Schero94/Magic-Mail/commit/ccb605c0998c4b5d05da309411adf81466b383cc))
|
|
7
|
+
|
|
1
8
|
## [3.0.1](https://github.com/Schero94/Magic-Mail/compare/v3.0.0...v3.0.1) (2026-07-11)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -2872,8 +2872,8 @@ const TestEmailModal = ({ account, onClose, onTest }) => {
|
|
|
2872
2872
|
children: /* @__PURE__ */ jsxRuntime.jsxs(designSystem.Flex, { alignItems: "center", gap: 3, children: [
|
|
2873
2873
|
/* @__PURE__ */ jsxRuntime.jsx(outline.PlayIcon, { style: { width: 20, height: 20, color: testMode === "direct" ? "var(--colors-primary600, #0284C7)" : "var(--colors-neutral600)", flexShrink: 0 } }),
|
|
2874
2874
|
/* @__PURE__ */ jsxRuntime.jsxs(designSystem.Box, { style: { flex: 1 }, children: [
|
|
2875
|
-
/* @__PURE__ */ jsxRuntime.jsx(designSystem.Typography, { fontWeight: "semiBold", style: { fontSize: "14px", color: testMode === "direct" ? "var(--colors-primary600, #075985)" : "var(--colors-neutral800)" }, children: "Direct Test" }),
|
|
2876
|
-
/* @__PURE__ */ jsxRuntime.jsx(designSystem.Typography, { variant: "pi", textColor: "neutral500", style: { fontSize: "12px" }, children: "Send directly through this account" })
|
|
2875
|
+
/* @__PURE__ */ jsxRuntime.jsx(designSystem.Typography, { tag: "div", fontWeight: "semiBold", style: { fontSize: "14px", color: testMode === "direct" ? "var(--colors-primary600, #075985)" : "var(--colors-neutral800)" }, children: "Direct Test" }),
|
|
2876
|
+
/* @__PURE__ */ jsxRuntime.jsx(designSystem.Typography, { tag: "div", variant: "pi", textColor: "neutral500", style: { fontSize: "12px", marginTop: "2px" }, children: "Send directly through this account" })
|
|
2877
2877
|
] })
|
|
2878
2878
|
] })
|
|
2879
2879
|
}
|
|
@@ -2886,8 +2886,8 @@ const TestEmailModal = ({ account, onClose, onTest }) => {
|
|
|
2886
2886
|
children: /* @__PURE__ */ jsxRuntime.jsxs(designSystem.Flex, { alignItems: "center", gap: 3, children: [
|
|
2887
2887
|
/* @__PURE__ */ jsxRuntime.jsx(outline.SparklesIcon, { style: { width: 20, height: 20, color: testMode === "strapi" ? "var(--colors-primary600, #0284C7)" : "var(--colors-neutral600)", flexShrink: 0 } }),
|
|
2888
2888
|
/* @__PURE__ */ jsxRuntime.jsxs(designSystem.Box, { style: { flex: 1 }, children: [
|
|
2889
|
-
/* @__PURE__ */ jsxRuntime.jsx(designSystem.Typography, { fontWeight: "semiBold", style: { fontSize: "14px", color: testMode === "strapi" ? "var(--colors-primary600, #075985)" : "var(--colors-neutral800)" }, children: "Strapi Service Test" }),
|
|
2890
|
-
/* @__PURE__ */ jsxRuntime.jsx(designSystem.Typography, { variant: "pi", textColor: "neutral500", style: { fontSize: "12px" }, children: "Verify MagicMail intercepts Strapi's email service" })
|
|
2889
|
+
/* @__PURE__ */ jsxRuntime.jsx(designSystem.Typography, { tag: "div", fontWeight: "semiBold", style: { fontSize: "14px", color: testMode === "strapi" ? "var(--colors-primary600, #075985)" : "var(--colors-neutral800)" }, children: "Strapi Service Test" }),
|
|
2890
|
+
/* @__PURE__ */ jsxRuntime.jsx(designSystem.Typography, { tag: "div", variant: "pi", textColor: "neutral500", style: { fontSize: "12px", marginTop: "2px" }, children: "Verify MagicMail intercepts Strapi's email service" })
|
|
2891
2891
|
] })
|
|
2892
2892
|
] })
|
|
2893
2893
|
}
|
|
@@ -2849,8 +2849,8 @@ const TestEmailModal = ({ account, onClose, onTest }) => {
|
|
|
2849
2849
|
children: /* @__PURE__ */ jsxs(Flex, { alignItems: "center", gap: 3, children: [
|
|
2850
2850
|
/* @__PURE__ */ jsx(PlayIcon, { style: { width: 20, height: 20, color: testMode === "direct" ? "var(--colors-primary600, #0284C7)" : "var(--colors-neutral600)", flexShrink: 0 } }),
|
|
2851
2851
|
/* @__PURE__ */ jsxs(Box, { style: { flex: 1 }, children: [
|
|
2852
|
-
/* @__PURE__ */ jsx(Typography, { fontWeight: "semiBold", style: { fontSize: "14px", color: testMode === "direct" ? "var(--colors-primary600, #075985)" : "var(--colors-neutral800)" }, children: "Direct Test" }),
|
|
2853
|
-
/* @__PURE__ */ jsx(Typography, { variant: "pi", textColor: "neutral500", style: { fontSize: "12px" }, children: "Send directly through this account" })
|
|
2852
|
+
/* @__PURE__ */ jsx(Typography, { tag: "div", fontWeight: "semiBold", style: { fontSize: "14px", color: testMode === "direct" ? "var(--colors-primary600, #075985)" : "var(--colors-neutral800)" }, children: "Direct Test" }),
|
|
2853
|
+
/* @__PURE__ */ jsx(Typography, { tag: "div", variant: "pi", textColor: "neutral500", style: { fontSize: "12px", marginTop: "2px" }, children: "Send directly through this account" })
|
|
2854
2854
|
] })
|
|
2855
2855
|
] })
|
|
2856
2856
|
}
|
|
@@ -2863,8 +2863,8 @@ const TestEmailModal = ({ account, onClose, onTest }) => {
|
|
|
2863
2863
|
children: /* @__PURE__ */ jsxs(Flex, { alignItems: "center", gap: 3, children: [
|
|
2864
2864
|
/* @__PURE__ */ jsx(SparklesIcon, { style: { width: 20, height: 20, color: testMode === "strapi" ? "var(--colors-primary600, #0284C7)" : "var(--colors-neutral600)", flexShrink: 0 } }),
|
|
2865
2865
|
/* @__PURE__ */ jsxs(Box, { style: { flex: 1 }, children: [
|
|
2866
|
-
/* @__PURE__ */ jsx(Typography, { fontWeight: "semiBold", style: { fontSize: "14px", color: testMode === "strapi" ? "var(--colors-primary600, #075985)" : "var(--colors-neutral800)" }, children: "Strapi Service Test" }),
|
|
2867
|
-
/* @__PURE__ */ jsx(Typography, { variant: "pi", textColor: "neutral500", style: { fontSize: "12px" }, children: "Verify MagicMail intercepts Strapi's email service" })
|
|
2866
|
+
/* @__PURE__ */ jsx(Typography, { tag: "div", fontWeight: "semiBold", style: { fontSize: "14px", color: testMode === "strapi" ? "var(--colors-primary600, #075985)" : "var(--colors-neutral800)" }, children: "Strapi Service Test" }),
|
|
2867
|
+
/* @__PURE__ */ jsx(Typography, { tag: "div", variant: "pi", textColor: "neutral500", style: { fontSize: "12px", marginTop: "2px" }, children: "Verify MagicMail intercepts Strapi's email service" })
|
|
2868
2868
|
] })
|
|
2869
2869
|
] })
|
|
2870
2870
|
}
|
package/dist/admin/index.js
CHANGED
|
@@ -50,7 +50,7 @@ const index = {
|
|
|
50
50
|
id: `${pluginId}.plugin.name`,
|
|
51
51
|
defaultMessage: "MagicMail"
|
|
52
52
|
},
|
|
53
|
-
Component: () => Promise.resolve().then(() => require("./App-
|
|
53
|
+
Component: () => Promise.resolve().then(() => require("./App-D0NeObv5.js")),
|
|
54
54
|
permissions: pluginPermissions
|
|
55
55
|
});
|
|
56
56
|
app.createSettingSection(
|
package/dist/admin/index.mjs
CHANGED
package/package.json
CHANGED