@trycourier/react-designer 0.0.4 → 0.0.5
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/README.md +81 -17
- package/dist/cjs/index.js +23 -23
- package/dist/cjs/index.js.map +3 -3
- package/dist/components/TemplateEditor/index.d.ts +1 -0
- package/dist/esm/index.js +23 -23
- package/dist/esm/index.js.map +3 -3
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ export declare const SMSChannel: import("react").MemoExoticComponent<import("rea
|
|
|
13
13
|
export declare const PushChannel: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<import("./Channels").PushProps & import("react").RefAttributes<HTMLDivElement>>>;
|
|
14
14
|
export declare const InboxChannel: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<import("./Channels").InboxProps & import("react").RefAttributes<HTMLDivElement>>>;
|
|
15
15
|
export { EmailEditorContainer, EmailEditorMain, type EmailEditorProps, type InboxEditorProps, type PushEditorProps, type SMSEditorProps, } from "./Channels";
|
|
16
|
+
export type { ChannelType } from "@/store";
|
|
16
17
|
export type { ElementalContent } from "@/types";
|
|
17
18
|
export { ChannelRootContainer, EditorSidebar } from "./Layout";
|
|
18
19
|
export { InboxEditor, PushEditor, SMSEditor } from "./Channels";
|