@trycourier/react-designer 0.0.0-canary-20251016171912 → 0.0.0-canary-20251020101834
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/cjs/index.js +40 -40
- package/dist/cjs/index.js.map +3 -3
- package/dist/esm/index.js +40 -40
- package/dist/esm/index.js.map +3 -3
- package/dist/lib/testHelpers.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Editor } from "@tiptap/react";
|
|
2
|
+
import type { ElementalContent } from "@/types/elemental.types";
|
|
2
3
|
type ChannelType = "email" | "sms" | "push" | "inbox" | "slack" | "teams";
|
|
3
4
|
declare global {
|
|
4
5
|
interface Window {
|
|
@@ -13,6 +14,7 @@ declare global {
|
|
|
13
14
|
};
|
|
14
15
|
currentEditor: Editor | null;
|
|
15
16
|
activeChannel: "email" | "sms" | "push" | "inbox" | "slack" | "teams" | null;
|
|
17
|
+
templateEditorContent: ElementalContent | null | undefined;
|
|
16
18
|
};
|
|
17
19
|
}
|
|
18
20
|
}
|
package/package.json
CHANGED