email-builder-online 1.0.0
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/LICENSE +21 -0
- package/README.md +10 -0
- package/dist/Figtree-Italic-VariableFont_wght-CBHUHBUZ.ttf +0 -0
- package/dist/Figtree-VariableFont_wght-WXG3MWME.ttf +0 -0
- package/dist/index.cjs +19143 -0
- package/dist/index.css +1050 -0
- package/dist/index.d.cts +15 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +19211 -0
- package/package.json +100 -0
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface EmailBuilderProps {
|
|
4
|
+
primaryColor?: string;
|
|
5
|
+
secondaryColor?: string;
|
|
6
|
+
galleryImages?: boolean;
|
|
7
|
+
freeMode?: boolean;
|
|
8
|
+
darkMode?: boolean;
|
|
9
|
+
heightContent?: string;
|
|
10
|
+
stickyHeader?: boolean;
|
|
11
|
+
disableSticky?: boolean;
|
|
12
|
+
}
|
|
13
|
+
declare const EmailBuilder: React.FC<EmailBuilderProps>;
|
|
14
|
+
|
|
15
|
+
export { type EmailBuilderProps, EmailBuilder as default };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface EmailBuilderProps {
|
|
4
|
+
primaryColor?: string;
|
|
5
|
+
secondaryColor?: string;
|
|
6
|
+
galleryImages?: boolean;
|
|
7
|
+
freeMode?: boolean;
|
|
8
|
+
darkMode?: boolean;
|
|
9
|
+
heightContent?: string;
|
|
10
|
+
stickyHeader?: boolean;
|
|
11
|
+
disableSticky?: boolean;
|
|
12
|
+
}
|
|
13
|
+
declare const EmailBuilder: React.FC<EmailBuilderProps>;
|
|
14
|
+
|
|
15
|
+
export { type EmailBuilderProps, EmailBuilder as default };
|